@aws-amplify/ui-react-core 2.1.14 → 2.1.15
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/package.json +10 -10
- package/dist/types/Authenticator/context/__tests__/AuthenticatorProvider.test.d.ts +0 -1
- package/dist/types/Authenticator/hooks/__mock__/components.d.ts +0 -7
- package/dist/types/Authenticator/hooks/__tests__/utils.spec.d.ts +0 -1
- package/dist/types/Authenticator/hooks/useAuthenticator/__tests__/useAuthenticator.spec.d.ts +0 -1
- package/dist/types/Authenticator/hooks/useAuthenticator/__tests__/utils.spec.d.ts +0 -1
- package/dist/types/Authenticator/hooks/useAuthenticatorInitMachine/__tests__/useAuthenticatorInitMachine.spec.d.ts +0 -1
- package/dist/types/Authenticator/hooks/useAuthenticatorRoute/__tests__/useAuthenticatorRoute.spec.d.ts +0 -1
- package/dist/types/Authenticator/hooks/useAuthenticatorRoute/__tests__/utils.spec.d.ts +0 -1
- package/dist/types/InAppMessaging/context/InAppMessagingProvider/__tests__/InAppMessagingProvider.spec.d.ts +0 -1
- package/dist/types/InAppMessaging/hooks/useInAppMessaging/__tests__/useInAppMessaging.spec.d.ts +0 -1
- package/dist/types/InAppMessaging/hooks/useMessage/__tests__/useMessage.spec.d.ts +0 -1
- package/dist/types/InAppMessaging/hooks/useMessage/__tests__/utils.spec.d.ts +0 -1
- package/dist/types/InAppMessaging/utils/__tests__/handleMessageAction.spec.d.ts +0 -1
- package/dist/types/__tests__/index.spec.d.ts +0 -1
- package/dist/types/components/RenderNothing/__tests__/RenderNothing.spec.d.ts +0 -1
- package/dist/types/hooks/__tests__/useHasValueUpdated.spec.d.ts +0 -1
- package/dist/types/hooks/__tests__/usePreviousValue.spec.d.ts +0 -1
- package/dist/types/utils/__tests__/index.spec.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/ui-react-core",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.15",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/esm/index.mjs",
|
|
6
6
|
"react-native": "dist/index.js",
|
|
@@ -19,16 +19,18 @@
|
|
|
19
19
|
],
|
|
20
20
|
"scripts": {
|
|
21
21
|
"clean": "rimraf dist node_modules",
|
|
22
|
-
"prebuild": "rimraf dist",
|
|
23
22
|
"build": "rollup --config",
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"test": "
|
|
28
|
-
"test:
|
|
23
|
+
"dev": "yarn build --watch",
|
|
24
|
+
"lint": "yarn typecheck && eslint src",
|
|
25
|
+
"prebuild": "rimraf dist",
|
|
26
|
+
"test": "yarn test:unit && yarn test:esm",
|
|
27
|
+
"test:esm": "node --input-type=module --eval 'import \"@aws-amplify/ui-react-core\"'",
|
|
28
|
+
"test:unit": "jest",
|
|
29
|
+
"test:unit:watch": "yarn test:unit --watch",
|
|
30
|
+
"typecheck": "tsc --noEmit"
|
|
29
31
|
},
|
|
30
32
|
"dependencies": {
|
|
31
|
-
"@aws-amplify/ui": "5.5.
|
|
33
|
+
"@aws-amplify/ui": "5.5.7",
|
|
32
34
|
"@xstate/react": "3.0.1",
|
|
33
35
|
"lodash": "4.17.21",
|
|
34
36
|
"xstate": "^4.33.6"
|
|
@@ -44,7 +46,6 @@
|
|
|
44
46
|
"@types/jest": "^26.0.23",
|
|
45
47
|
"@types/react": "^17.0.2",
|
|
46
48
|
"@types/react-dom": "^17.0.13",
|
|
47
|
-
"@types/react-native": "^0.63.45",
|
|
48
49
|
"@types/react-test-renderer": "^17.0.1",
|
|
49
50
|
"@typescript-eslint/eslint-plugin": "^5.6.0",
|
|
50
51
|
"@typescript-eslint/parser": "^5.6.0",
|
|
@@ -64,7 +65,6 @@
|
|
|
64
65
|
"rollup": "^2.70.0",
|
|
65
66
|
"rollup-plugin-node-externals": "^4.1.1",
|
|
66
67
|
"ts-jest": "^27.1.3",
|
|
67
|
-
"ts-node": "^10.2.1",
|
|
68
68
|
"typescript": "^4.3.2"
|
|
69
69
|
},
|
|
70
70
|
"sideEffects": false
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Defaults, Overrides } from '../types';
|
|
2
|
-
declare type DefaultComponents<P> = Defaults<P>;
|
|
3
|
-
export declare const DEFAULTS: DefaultComponents<{}>;
|
|
4
|
-
export declare const OVERRIDES: Overrides;
|
|
5
|
-
export declare const INVALID_SIGN_IN_OVERRIDES: Overrides;
|
|
6
|
-
export declare const INVALID_OVERRIDES: Overrides<{}, {}>;
|
|
7
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/types/Authenticator/hooks/useAuthenticator/__tests__/useAuthenticator.spec.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/dist/types/InAppMessaging/hooks/useInAppMessaging/__tests__/useInAppMessaging.spec.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|