-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from opensrc0/main
feat(whatsapp share): whatsapp share component has been added successfully
- Loading branch information
Showing
14 changed files
with
249 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
|
||
|
||
```mermaid | ||
graph TD; | ||
FaceDetector--->FaceDetectorClose; | ||
FaceDetector--->FaceDetectorFacing; | ||
FaceDetector--->FaceDetectorFlash; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,12 @@ | ||
|
||
|
||
```mermaid | ||
graph TD; | ||
Scanner--->CameraClick; | ||
Scanner--->CameraClose; | ||
Scanner--->CameraFacing; | ||
Scanner--->CameraFlash; | ||
Scanner--->CameraScanBox; | ||
Scanner--->PhoneGallery; | ||
Scanner--->StartCamera; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
## 1. Happy Flow | ||
#### a) Passing child | ||
|
||
|
||
|
||
|
||
## 2. Success: successCb callBack Fn along with success msg | ||
|
||
|
||
|
||
|
||
|
||
> [!Note] | ||
> **successCb** will get an object contains the property **msgType**, **msg**, **data** | ||
## 3. Failure: failureCb callBack Fn along with failure msg | ||
|
||
|
||
|
||
|
||
|
||
> [!Note] | ||
> **failureCb** will get an object contains the property **msgType**, **msg** | ||
> [!Important] | ||
Failure can happend due to multiple reasons, due to that reason **failureMsg** is an object having different kind of error property according to the error can occur in component | ||
|
||
## 4. Failure: Device don't support the feature and you want to hide the feauture from User | ||
|
||
|
||
|
||
|
||
|
||
> [!Note] | ||
> if **showForever** props value is false, feature will be hidden in case of unSupported by the device | ||
## 5. Combine with all props | ||
|
||
|
||
|
||
|
||
|
||
|
Oops, something went wrong.