@4alldigital/foundation-ui--gamma 1.50.0 → 1.50.2
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/dist/foundation-ui.css +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/dist/types/lib/components/index.d.ts +1 -0
- package/dist/types/lib/context/Amplify/index.d.ts +27 -0
- package/dist/types/lib/context/App/index.d.ts +4 -0
- package/dist/types/lib/context/index.d.ts +3 -1
- package/dist/types/lib/index.d.ts +1 -0
- package/dist/types/lib/utils/index.d.ts +1 -0
- package/package.json +11 -11
|
@@ -101,6 +101,7 @@ export type { Props as ChipProps } from './Chip/Chip.types';
|
|
|
101
101
|
export type { Props as AvatarProps } from './Avatar/Avatar.types';
|
|
102
102
|
export type { Props as OTPInputProps } from './OTPInput/OTPInput.types';
|
|
103
103
|
export type { Props as HeroProps } from './Hero/Hero.types';
|
|
104
|
+
export { SPACING } from './Hero/Hero.types';
|
|
104
105
|
export type { Props as HtmlContentProps } from './HtmlContent/HtmlContent.types';
|
|
105
106
|
export type { Props as CardGridProps } from './CardGrid/CardGrid.types';
|
|
106
107
|
export type { Props as ScreenProps } from './Screen/Screen.types';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface AmplifyContextProps {
|
|
3
|
+
config: {
|
|
4
|
+
region?: string;
|
|
5
|
+
userPoolId?: string;
|
|
6
|
+
userPoolWebClientId?: string;
|
|
7
|
+
signUpVerificationMethod?: string;
|
|
8
|
+
oauth: {
|
|
9
|
+
domain?: string;
|
|
10
|
+
scope?: string[];
|
|
11
|
+
redirectSignIn?: string;
|
|
12
|
+
redirectSignOut?: string;
|
|
13
|
+
responseType?: string;
|
|
14
|
+
};
|
|
15
|
+
cookieStorage: {
|
|
16
|
+
domain?: string;
|
|
17
|
+
secure?: boolean;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
export declare const AmplifyContext: React.Context<AmplifyContextProps>;
|
|
22
|
+
interface AmplifyProviderProps {
|
|
23
|
+
children: React.ReactNode;
|
|
24
|
+
value: AmplifyContextProps;
|
|
25
|
+
}
|
|
26
|
+
export declare const AmplifyProvider: ({ children, value }: AmplifyProviderProps) => React.ReactElement;
|
|
27
|
+
export default AmplifyProvider;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export * from './Theme';
|
|
2
2
|
export { default as ThemeProvider } from './Theme';
|
|
3
3
|
export * from './App';
|
|
4
|
-
export { default as
|
|
4
|
+
export { default as AppProvider } from './App';
|
|
5
|
+
export * from './Amplify';
|
|
6
|
+
export { default as AmplifyProvider } from './Amplify';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@4alldigital/foundation-ui--gamma",
|
|
3
|
-
"version": "1.50.
|
|
3
|
+
"version": "1.50.2",
|
|
4
4
|
"description": "Foundation UI Component library with GAMMA theme. ",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "bf9b74fe845974b4878d21cc60d75e9e934be0c7",
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@elastic/datemath": "^5.0.3",
|
|
45
45
|
"@elastic/react-search-ui": "^1.21.5",
|
|
@@ -53,16 +53,16 @@
|
|
|
53
53
|
"@tailwindcss/aspect-ratio": "^0.4.2",
|
|
54
54
|
"@tailwindcss/container-queries": "^0.1.1",
|
|
55
55
|
"@tailwindcss/forms": "^0.5.7",
|
|
56
|
-
"@tailwindcss/typography": "^0.5.
|
|
56
|
+
"@tailwindcss/typography": "^0.5.14",
|
|
57
57
|
"classnames": "^2.5.1",
|
|
58
58
|
"date-fns": "^3.6.0",
|
|
59
59
|
"date-input-polyfill": "^2.14.0",
|
|
60
60
|
"filter-invalid-dom-props": "^3.0.1",
|
|
61
|
-
"framer-motion": "^11.3.
|
|
61
|
+
"framer-motion": "^11.3.28",
|
|
62
62
|
"history": "^5.3.0",
|
|
63
63
|
"html-react-parser": "^5.1.12",
|
|
64
64
|
"iso8601-duration": "^2.1.2",
|
|
65
|
-
"libphonenumber-js": "^1.11.
|
|
65
|
+
"libphonenumber-js": "^1.11.7",
|
|
66
66
|
"next": "^14.2.5",
|
|
67
67
|
"rc-pagination": "^4.2.0",
|
|
68
68
|
"react": "^18.3.1",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"react-content-loader": "^7.0.2",
|
|
72
72
|
"react-device-detect": "^2.2.3",
|
|
73
73
|
"react-dom": "^18.3.1",
|
|
74
|
-
"react-hook-form": "^7.52.
|
|
74
|
+
"react-hook-form": "^7.52.2",
|
|
75
75
|
"react-hover-video-player": "^10.0.2",
|
|
76
76
|
"react-otp-input": "^3.1.1",
|
|
77
77
|
"react-player": "^2.16.0",
|
|
@@ -80,18 +80,18 @@
|
|
|
80
80
|
"react-tabs": "^6.0.2",
|
|
81
81
|
"react-toastify": "^10.0.5",
|
|
82
82
|
"slick-carousel": "^1.8.1",
|
|
83
|
-
"tailwind-merge": "^2.
|
|
84
|
-
"tailwindcss": "^3.4.
|
|
83
|
+
"tailwind-merge": "^2.5.2",
|
|
84
|
+
"tailwindcss": "^3.4.10",
|
|
85
85
|
"typescript": "^5.5.4",
|
|
86
|
-
"video.js": "8.
|
|
86
|
+
"video.js": "8.17.3"
|
|
87
87
|
},
|
|
88
88
|
"bugs": {
|
|
89
89
|
"url": "https://github.com/4AllDigital/foundation-ui/issues"
|
|
90
90
|
},
|
|
91
91
|
"homepage": "https://github.com/4AllDigital/foundation-ui#readme",
|
|
92
92
|
"devDependencies": {
|
|
93
|
-
"@types/react-slick": "^0",
|
|
94
|
-
"@types/slick-carousel": "^1",
|
|
93
|
+
"@types/react-slick": "^0.23.13",
|
|
94
|
+
"@types/slick-carousel": "^1.6.40",
|
|
95
95
|
"moment": "^2.30.1"
|
|
96
96
|
}
|
|
97
97
|
}
|