@authing/react-ui-components 3.0.2-beta.9 → 3.0.3-rc.5
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.
- package/lib/index.d.ts +300 -22
- package/lib/index.min.css +2 -2
- package/lib/index.min.js +1 -1
- package/lib/index.min.js.LICENSE.txt +10 -0
- package/package.json +16 -11
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
1
7
|
/*!
|
|
2
8
|
Copyright (c) 2017 Jed Watson.
|
|
3
9
|
Licensed under the MIT License (MIT), see
|
|
@@ -67,3 +73,7 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
|
67
73
|
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
68
74
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
69
75
|
*/
|
|
76
|
+
|
|
77
|
+
//! moment.js
|
|
78
|
+
|
|
79
|
+
//! moment.js locale configuration
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@authing/react-ui-components",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3-rc.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "lib/index.min.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -11,15 +11,18 @@
|
|
|
11
11
|
],
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"antd": "^4.8.0",
|
|
14
|
-
"authing-js-sdk": "4.
|
|
14
|
+
"authing-js-sdk": "4.23.18",
|
|
15
15
|
"face-api.js": "^0.22.2",
|
|
16
|
+
"fastclick": "^1.0.6",
|
|
16
17
|
"global": "^4.4.0",
|
|
17
18
|
"qs": "^6.9.4",
|
|
18
|
-
"react-
|
|
19
|
+
"react-responsive": "^9.0.0-beta.5",
|
|
20
|
+
"react-use": "^17.3.1",
|
|
21
|
+
"wildcard": "^1.1.2"
|
|
19
22
|
},
|
|
20
23
|
"peerDependencies": {
|
|
21
|
-
"react": "16.
|
|
22
|
-
"react-dom": "16.
|
|
24
|
+
"react": ">=16.9.0",
|
|
25
|
+
"react-dom": ">=16.9.0"
|
|
23
26
|
},
|
|
24
27
|
"scripts": {
|
|
25
28
|
"build": "node ./scripts/build.js",
|
|
@@ -29,14 +32,14 @@
|
|
|
29
32
|
"clear:lib": "rm -rf lib",
|
|
30
33
|
"log-tag": "node ./scripts/tag.js",
|
|
31
34
|
"pretty-quick": "pretty-quick",
|
|
32
|
-
"
|
|
33
|
-
"prestart": "npm run log-tag && npm run vegcrsion",
|
|
34
|
-
"preinstall": "npm run log-tag && npm run version",
|
|
35
|
+
"prestart": "npm run log-tag && npm run version && npm run generate-examples",
|
|
35
36
|
"prebuild:lib": "npm run log-tag && npm run version",
|
|
36
37
|
"prepare": "cd ../.. && husky install packages/react-components/.husky",
|
|
37
|
-
"pub": "
|
|
38
|
-
"start": "PORT=
|
|
39
|
-
"
|
|
38
|
+
"pub": "npm run build:lib && node ./scripts/publish.js",
|
|
39
|
+
"start": "PORT=1221 node ./scripts/start.js",
|
|
40
|
+
"vite": "vite",
|
|
41
|
+
"version": "node ./scripts/generate-version",
|
|
42
|
+
"generate-examples": "node ./scripts/generate-examples.js"
|
|
40
43
|
},
|
|
41
44
|
"publishConfig": {
|
|
42
45
|
"access": "public",
|
|
@@ -134,6 +137,7 @@
|
|
|
134
137
|
"@types/shortid": "^0.0.29",
|
|
135
138
|
"@typescript-eslint/eslint-plugin": "^4.5.0",
|
|
136
139
|
"@typescript-eslint/parser": "^4.5.0",
|
|
140
|
+
"@vitejs/plugin-react": "1.1.0",
|
|
137
141
|
"babel-eslint": "^10.1.0",
|
|
138
142
|
"babel-jest": "^26.6.0",
|
|
139
143
|
"babel-loader": "8.1.0",
|
|
@@ -203,6 +207,7 @@
|
|
|
203
207
|
"ts-pnp": "1.2.0",
|
|
204
208
|
"typescript": "^4.0.3",
|
|
205
209
|
"url-loader": "4.1.1",
|
|
210
|
+
"vite": "^2.6.14",
|
|
206
211
|
"web-vitals": "^0.2.4",
|
|
207
212
|
"webpack": "4.44.2",
|
|
208
213
|
"webpack-bundle-analyzer": "^4.1.0",
|