agora-appbuilder-core 3.0.8 → 3.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/package.json +1 -1
  2. package/template/_package-lock.json +28942 -34
  3. package/template/src/components/DeviceConfigure.tsx +5 -1
  4. package/template/agora-rn-uikit/.git/HEAD +0 -1
  5. package/template/agora-rn-uikit/.git/config +0 -16
  6. package/template/agora-rn-uikit/.git/description +0 -1
  7. package/template/agora-rn-uikit/.git/hooks/applypatch-msg.sample +0 -15
  8. package/template/agora-rn-uikit/.git/hooks/commit-msg.sample +0 -24
  9. package/template/agora-rn-uikit/.git/hooks/fsmonitor-watchman.sample +0 -174
  10. package/template/agora-rn-uikit/.git/hooks/post-update.sample +0 -8
  11. package/template/agora-rn-uikit/.git/hooks/pre-applypatch.sample +0 -14
  12. package/template/agora-rn-uikit/.git/hooks/pre-commit.sample +0 -49
  13. package/template/agora-rn-uikit/.git/hooks/pre-merge-commit.sample +0 -13
  14. package/template/agora-rn-uikit/.git/hooks/pre-push.sample +0 -53
  15. package/template/agora-rn-uikit/.git/hooks/pre-rebase.sample +0 -169
  16. package/template/agora-rn-uikit/.git/hooks/pre-receive.sample +0 -24
  17. package/template/agora-rn-uikit/.git/hooks/prepare-commit-msg.sample +0 -42
  18. package/template/agora-rn-uikit/.git/hooks/push-to-checkout.sample +0 -78
  19. package/template/agora-rn-uikit/.git/hooks/update.sample +0 -128
  20. package/template/agora-rn-uikit/.git/index +0 -0
  21. package/template/agora-rn-uikit/.git/info/exclude +0 -6
  22. package/template/agora-rn-uikit/.git/logs/HEAD +0 -2
  23. package/template/agora-rn-uikit/.git/logs/refs/heads/master +0 -1
  24. package/template/agora-rn-uikit/.git/logs/refs/heads/release/fpe-1.0.1 +0 -1
  25. package/template/agora-rn-uikit/.git/logs/refs/remotes/origin/HEAD +0 -1
  26. package/template/agora-rn-uikit/.git/objects/pack/pack-baa9cf4109c3e8528f39535764621cee252b2b77.idx +0 -0
  27. package/template/agora-rn-uikit/.git/objects/pack/pack-baa9cf4109c3e8528f39535764621cee252b2b77.pack +0 -0
  28. package/template/agora-rn-uikit/.git/packed-refs +0 -49
  29. package/template/agora-rn-uikit/.git/refs/heads/master +0 -1
  30. package/template/agora-rn-uikit/.git/refs/heads/release/fpe-1.0.1 +0 -1
  31. package/template/agora-rn-uikit/.git/refs/remotes/origin/HEAD +0 -1
  32. package/template/agora-rn-uikit/.gitignore +0 -63
  33. package/template/agora-rn-uikit/package-lock.json +0 -7612
  34. package/template/package-lock.json +0 -22543
  35. package/template/react-native-toast-message/.gitignore +0 -5
  36. package/template/react-native-toast-message/.npmignore +0 -5
  37. package/template/react-native-toast-message/package-lock.json +0 -10553
  38. package/template/src/.DS_Store +0 -0
  39. package/template/src/subComponents/.DS_Store +0 -0
@@ -1,78 +0,0 @@
1
- #!/bin/sh
2
-
3
- # An example hook script to update a checked-out tree on a git push.
4
- #
5
- # This hook is invoked by git-receive-pack(1) when it reacts to git
6
- # push and updates reference(s) in its repository, and when the push
7
- # tries to update the branch that is currently checked out and the
8
- # receive.denyCurrentBranch configuration variable is set to
9
- # updateInstead.
10
- #
11
- # By default, such a push is refused if the working tree and the index
12
- # of the remote repository has any difference from the currently
13
- # checked out commit; when both the working tree and the index match
14
- # the current commit, they are updated to match the newly pushed tip
15
- # of the branch. This hook is to be used to override the default
16
- # behaviour; however the code below reimplements the default behaviour
17
- # as a starting point for convenient modification.
18
- #
19
- # The hook receives the commit with which the tip of the current
20
- # branch is going to be updated:
21
- commit=$1
22
-
23
- # It can exit with a non-zero status to refuse the push (when it does
24
- # so, it must not modify the index or the working tree).
25
- die () {
26
- echo >&2 "$*"
27
- exit 1
28
- }
29
-
30
- # Or it can make any necessary changes to the working tree and to the
31
- # index to bring them to the desired state when the tip of the current
32
- # branch is updated to the new commit, and exit with a zero status.
33
- #
34
- # For example, the hook can simply run git read-tree -u -m HEAD "$1"
35
- # in order to emulate git fetch that is run in the reverse direction
36
- # with git push, as the two-tree form of git read-tree -u -m is
37
- # essentially the same as git switch or git checkout that switches
38
- # branches while keeping the local changes in the working tree that do
39
- # not interfere with the difference between the branches.
40
-
41
- # The below is a more-or-less exact translation to shell of the C code
42
- # for the default behaviour for git's push-to-checkout hook defined in
43
- # the push_to_deploy() function in builtin/receive-pack.c.
44
- #
45
- # Note that the hook will be executed from the repository directory,
46
- # not from the working tree, so if you want to perform operations on
47
- # the working tree, you will have to adapt your code accordingly, e.g.
48
- # by adding "cd .." or using relative paths.
49
-
50
- if ! git update-index -q --ignore-submodules --refresh
51
- then
52
- die "Up-to-date check failed"
53
- fi
54
-
55
- if ! git diff-files --quiet --ignore-submodules --
56
- then
57
- die "Working directory has unstaged changes"
58
- fi
59
-
60
- # This is a rough translation of:
61
- #
62
- # head_has_history() ? "HEAD" : EMPTY_TREE_SHA1_HEX
63
- if git cat-file -e HEAD 2>/dev/null
64
- then
65
- head=HEAD
66
- else
67
- head=$(git hash-object -t tree --stdin </dev/null)
68
- fi
69
-
70
- if ! git diff-index --quiet --cached --ignore-submodules $head --
71
- then
72
- die "Working directory has staged changes"
73
- fi
74
-
75
- if ! git read-tree -u -m "$commit"
76
- then
77
- die "Could not update working tree to new HEAD"
78
- fi
@@ -1,128 +0,0 @@
1
- #!/bin/sh
2
- #
3
- # An example hook script to block unannotated tags from entering.
4
- # Called by "git receive-pack" with arguments: refname sha1-old sha1-new
5
- #
6
- # To enable this hook, rename this file to "update".
7
- #
8
- # Config
9
- # ------
10
- # hooks.allowunannotated
11
- # This boolean sets whether unannotated tags will be allowed into the
12
- # repository. By default they won't be.
13
- # hooks.allowdeletetag
14
- # This boolean sets whether deleting tags will be allowed in the
15
- # repository. By default they won't be.
16
- # hooks.allowmodifytag
17
- # This boolean sets whether a tag may be modified after creation. By default
18
- # it won't be.
19
- # hooks.allowdeletebranch
20
- # This boolean sets whether deleting branches will be allowed in the
21
- # repository. By default they won't be.
22
- # hooks.denycreatebranch
23
- # This boolean sets whether remotely creating branches will be denied
24
- # in the repository. By default this is allowed.
25
- #
26
-
27
- # --- Command line
28
- refname="$1"
29
- oldrev="$2"
30
- newrev="$3"
31
-
32
- # --- Safety check
33
- if [ -z "$GIT_DIR" ]; then
34
- echo "Don't run this script from the command line." >&2
35
- echo " (if you want, you could supply GIT_DIR then run" >&2
36
- echo " $0 <ref> <oldrev> <newrev>)" >&2
37
- exit 1
38
- fi
39
-
40
- if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then
41
- echo "usage: $0 <ref> <oldrev> <newrev>" >&2
42
- exit 1
43
- fi
44
-
45
- # --- Config
46
- allowunannotated=$(git config --type=bool hooks.allowunannotated)
47
- allowdeletebranch=$(git config --type=bool hooks.allowdeletebranch)
48
- denycreatebranch=$(git config --type=bool hooks.denycreatebranch)
49
- allowdeletetag=$(git config --type=bool hooks.allowdeletetag)
50
- allowmodifytag=$(git config --type=bool hooks.allowmodifytag)
51
-
52
- # check for no description
53
- projectdesc=$(sed -e '1q' "$GIT_DIR/description")
54
- case "$projectdesc" in
55
- "Unnamed repository"* | "")
56
- echo "*** Project description file hasn't been set" >&2
57
- exit 1
58
- ;;
59
- esac
60
-
61
- # --- Check types
62
- # if $newrev is 0000...0000, it's a commit to delete a ref.
63
- zero=$(git hash-object --stdin </dev/null | tr '[0-9a-f]' '0')
64
- if [ "$newrev" = "$zero" ]; then
65
- newrev_type=delete
66
- else
67
- newrev_type=$(git cat-file -t $newrev)
68
- fi
69
-
70
- case "$refname","$newrev_type" in
71
- refs/tags/*,commit)
72
- # un-annotated tag
73
- short_refname=${refname##refs/tags/}
74
- if [ "$allowunannotated" != "true" ]; then
75
- echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2
76
- echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2
77
- exit 1
78
- fi
79
- ;;
80
- refs/tags/*,delete)
81
- # delete tag
82
- if [ "$allowdeletetag" != "true" ]; then
83
- echo "*** Deleting a tag is not allowed in this repository" >&2
84
- exit 1
85
- fi
86
- ;;
87
- refs/tags/*,tag)
88
- # annotated tag
89
- if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1
90
- then
91
- echo "*** Tag '$refname' already exists." >&2
92
- echo "*** Modifying a tag is not allowed in this repository." >&2
93
- exit 1
94
- fi
95
- ;;
96
- refs/heads/*,commit)
97
- # branch
98
- if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then
99
- echo "*** Creating a branch is not allowed in this repository" >&2
100
- exit 1
101
- fi
102
- ;;
103
- refs/heads/*,delete)
104
- # delete branch
105
- if [ "$allowdeletebranch" != "true" ]; then
106
- echo "*** Deleting a branch is not allowed in this repository" >&2
107
- exit 1
108
- fi
109
- ;;
110
- refs/remotes/*,commit)
111
- # tracking branch
112
- ;;
113
- refs/remotes/*,delete)
114
- # delete tracking branch
115
- if [ "$allowdeletebranch" != "true" ]; then
116
- echo "*** Deleting a tracking branch is not allowed in this repository" >&2
117
- exit 1
118
- fi
119
- ;;
120
- *)
121
- # Anything else (is there anything else?)
122
- echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2
123
- exit 1
124
- ;;
125
- esac
126
-
127
- # --- Finished
128
- exit 0
Binary file
@@ -1,6 +0,0 @@
1
- # git ls-files --others --exclude-from=.git/info/exclude
2
- # Lines that start with '#' are comments.
3
- # For a project mostly in C, the following would be a good set of
4
- # exclude patterns (uncomment them if you want to use them):
5
- # *.[oa]
6
- # *~
@@ -1,2 +0,0 @@
1
- 0000000000000000000000000000000000000000 2d1cd9f22ebaec4bc7544a7130f6ea0d6f15e948 nitte93 <nitte.tiwari1993@gmail.com> 1671711544 +0530 clone: from https://github.com/AgoraIO-Community/ReactNative-UIKit.git
2
- 2d1cd9f22ebaec4bc7544a7130f6ea0d6f15e948 603d85c859d27ffa57433ae46f06f726cd438376 nitte93 <nitte.tiwari1993@gmail.com> 1671711545 +0530 checkout: moving from master to release/fpe-1.0.1
@@ -1 +0,0 @@
1
- 0000000000000000000000000000000000000000 2d1cd9f22ebaec4bc7544a7130f6ea0d6f15e948 nitte93 <nitte.tiwari1993@gmail.com> 1671711544 +0530 clone: from https://github.com/AgoraIO-Community/ReactNative-UIKit.git
@@ -1 +0,0 @@
1
- 0000000000000000000000000000000000000000 603d85c859d27ffa57433ae46f06f726cd438376 nitte93 <nitte.tiwari1993@gmail.com> 1671711545 +0530 branch: Created from refs/remotes/origin/release/fpe-1.0.1
@@ -1 +0,0 @@
1
- 0000000000000000000000000000000000000000 2d1cd9f22ebaec4bc7544a7130f6ea0d6f15e948 nitte93 <nitte.tiwari1993@gmail.com> 1671711544 +0530 clone: from https://github.com/AgoraIO-Community/ReactNative-UIKit.git
@@ -1,49 +0,0 @@
1
- # pack-refs with: peeled fully-peeled sorted
2
- f27948778f3d89af8ae9f1e8d881682f6103c9be refs/remotes/origin/ab-dev-auto
3
- f27948778f3d89af8ae9f1e8d881682f6103c9be refs/remotes/origin/ab-dev-auto-backup
4
- 5afc287058113701261ded4dadbe139a33561adb refs/remotes/origin/active_speaker_detection
5
- 86f46813f35104a7ea35bf5459b6af4ce1690099 refs/remotes/origin/api_feedback_changes
6
- fd59daf4876e4eb142856957f9450ef5175f4e0f refs/remotes/origin/app-builder
7
- c60cde905c722aeaf8f25aeed2910a7b4d532cfa refs/remotes/origin/app-builder-dev
8
- 83064dc5031b9a88a170c6b91ee725ad072eadb1 refs/remotes/origin/bugfix/camera-green-light-on-precall
9
- 493c31b131d7babd62613fd522d22e66d1556560 refs/remotes/origin/bugfix/fix-types-rtcprops
10
- b2020fb3e8c0b39d1d39dfcf019849914bca467f refs/remotes/origin/bugfix/togglerole-should-be-children
11
- 3b0e1eacc7ac5cc0b9e4e9696166afeb2144f6fe refs/remotes/origin/dependabot/npm_and_yarn/decode-uri-component-0.2.2
12
- 5d4f38ae0a89b20275e2497a4e8f43b0ca2830e4 refs/remotes/origin/dev
13
- 4ec093e51924049e37d247d867a5482a9376a8cf refs/remotes/origin/docs
14
- 002960cf34f06ffd3e905e6de9865460f02bd910 refs/remotes/origin/feat/icon-tint
15
- 4d082ea4f18962f67e0087e3c1006286fee7b86d refs/remotes/origin/feature/audio_room
16
- 004ce4ac329bfd31f558c84933de92ed756569bd refs/remotes/origin/feature/audio_room_support
17
- 5fbe5a039fbca82c27a5be143d4b68f040860ea8 refs/remotes/origin/feature/core-new-uikit
18
- 82207f40106655312beafed4cfa790ac7c0f5471 refs/remotes/origin/feature/custom_layout
19
- ce7c971ae62c8fd92d180fa2fb7e5600b4a0a300 refs/remotes/origin/feature/fpe-internationlization
20
- dd04b6f873dae0d1290ccfd8bde9fe79bcaaaaa9 refs/remotes/origin/feature/fpe_changes
21
- ae785c2180b9f90ca951628d2c947ed2b70f332f refs/remotes/origin/feature/icon_renamed
22
- ce7c971ae62c8fd92d180fa2fb7e5600b4a0a300 refs/remotes/origin/feature/life_cycle_events
23
- 914a594a7d5ab3c8853f8b29440efb881237b33b refs/remotes/origin/feature/redesign/ui-kit
24
- 7c60e844f617d9c0faf6aa968fdf16b16d0e59ce refs/remotes/origin/feature/ui-kit/raise-hand
25
- 92ecf30336d7a7ebab7bc0ef5b9c23c277a4eac9 refs/remotes/origin/feedback/active_uids
26
- c2d966125f7fd50dea352d2a60caaba9846b20ef refs/remotes/origin/fix/geo_fencing_revert
27
- 84bbbd8d0d87296e728ee25ffd96736f10ef482f refs/remotes/origin/fix/low_audio_issue_voice_chat
28
- 58b5201385db04fd4947aee112e53b31d1dd9941 refs/remotes/origin/fix/screenshare_pinned_view
29
- 603d85c859d27ffa57433ae46f06f726cd438376 refs/remotes/origin/fix/swap_video
30
- bd0268fc74fa69e3084a3793913eecaf0b591f82 refs/remotes/origin/fix/voice_chat_audio_route
31
- d51519724e4c8ee234aaf1f0cf97fae72eafc5fa refs/remotes/origin/fpe_userlist_migration
32
- fd321c3fb732a0644dac707cf3f7866656e78b99 refs/remotes/origin/fpe_v1
33
- 2a6955df4af514b6a8d83ce9423a97594ac3789b refs/remotes/origin/geo_fencing_config
34
- 2d1cd9f22ebaec4bc7544a7130f6ea0d6f15e948 refs/remotes/origin/master
35
- b8c591fa4ece61d69d49d2d40120664803bff25b refs/remotes/origin/merge-refactor
36
- 2295420e38a5ab0fe094a36855ad8d360bd4f7fd refs/remotes/origin/merge-refactor-master
37
- 01ad019ae514b6502b64a30b357a20af49b8c8a5 refs/remotes/origin/refactor
38
- df687fbcea806702307a933b1d8e1da26753127f refs/remotes/origin/release/fpe-1.0.0
39
- 603d85c859d27ffa57433ae46f06f726cd438376 refs/remotes/origin/release/fpe-1.0.1
40
- 612364439bef5545d47070e9fc33c1fd14c30a76 refs/remotes/origin/release/uikit/blocker-fixes
41
- 24aa7a7c02d8b902c3aec7428212e45a839b4fb7 refs/remotes/origin/setparam
42
- ac8929fda04db3663a7c1eb9c71ca6a97728f0eb refs/remotes/origin/v2-legacy
43
- 277fbfcc3439cbb9883a916366ca938f2d717dfb refs/remotes/origin/v4
44
- 9be82459a37723a41ef20208182f2571b3291c44 refs/remotes/origin/v5
45
- d772da16c7f1299a7fc8427098aa1a63b9a79081 refs/remotes/origin/video-placeholder
46
- 95c82fdc763067c560fafa23d70cd29f8eecd98a refs/tags/v4.0.0
47
- 1b600832bdf6841d7573e5ed7e2f154e9c4a4398 refs/tags/v4.0.1
48
- 5265495803160555d4c7745b755abfdead7f98ee refs/tags/v4.0.2
49
- 2d1cd9f22ebaec4bc7544a7130f6ea0d6f15e948 refs/tags/v5.0.0
@@ -1 +0,0 @@
1
- 2d1cd9f22ebaec4bc7544a7130f6ea0d6f15e948
@@ -1 +0,0 @@
1
- 603d85c859d27ffa57433ae46f06f726cd438376
@@ -1 +0,0 @@
1
- ref: refs/remotes/origin/master
@@ -1,63 +0,0 @@
1
- # OSX
2
- #
3
- .DS_Store
4
-
5
- # Xcode
6
- #
7
- build/
8
- *.pbxuser
9
- !default.pbxuser
10
- *.mode1v3
11
- !default.mode1v3
12
- *.mode2v3
13
- !default.mode2v3
14
- *.perspectivev3
15
- !default.perspectivev3
16
- xcuserdata
17
- *.xccheckout
18
- *.moved-aside
19
- DerivedData
20
- *.hmap
21
- *.ipa
22
- *.xcuserstate
23
-
24
- # Android/IntelliJ
25
- #
26
- build/
27
- .idea
28
- .gradle
29
- local.properties
30
- *.iml
31
-
32
- # Visual Studio Code
33
- #
34
- .vscode/
35
-
36
- # node.js
37
- #
38
- node_modules/
39
- npm-debug.log
40
- yarn-error.log
41
-
42
- # BUCK
43
- buck-out/
44
- \.buckd/
45
- *.keystore
46
- !debug.keystore
47
-
48
- # fastlane
49
- #
50
- # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
51
- # screenshots whenever they are needed.
52
- # For more information about the recommended setup visit:
53
- # https://docs.fastlane.tools/best-practices/source-control/
54
-
55
- */fastlane/report.xml
56
- */fastlane/Preview.html
57
- */fastlane/screenshots
58
-
59
- # Bundle artifact
60
- *.jsbundle
61
-
62
- # CocoaPods
63
- /ios/Pods/