@4alldigital/foundation-ui--gamma 1.56.3 → 1.57.0
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/Card/Card.types.d.ts +1 -1
- package/dist/types/lib/components/Carousel/Carousel.types.d.ts +3 -1
- package/dist/types/lib/components/PanelScroller/PanelScroller.d.ts +8 -0
- package/dist/types/lib/components/PanelScroller/PanelScroller.types.d.ts +8 -0
- package/dist/types/lib/components/PanelScroller/index.d.ts +1 -0
- package/dist/types/lib/components/index.d.ts +2 -0
- package/package.json +10 -10
|
@@ -14,7 +14,7 @@ export interface ImageData {
|
|
|
14
14
|
title?: string;
|
|
15
15
|
width?: number;
|
|
16
16
|
height?: number;
|
|
17
|
-
aspectRatio?: '16/10' | '16/9' | '4/3' | '1/1';
|
|
17
|
+
aspectRatio?: 'aspect-[16/10]' | 'aspect-[16/9]' | 'aspect-[4/3]' | 'aspect-[1/1]' | 'aspect-[3/4]' | 'aspect-[9/16]';
|
|
18
18
|
}
|
|
19
19
|
type ActionItem = {
|
|
20
20
|
count?: number;
|
|
@@ -2,7 +2,7 @@ import { Props as CardProps } from '../Card/Card.types';
|
|
|
2
2
|
export interface Props {
|
|
3
3
|
testID?: string;
|
|
4
4
|
data: CardProps[];
|
|
5
|
-
onPressCallback
|
|
5
|
+
onPressCallback?: (arg: any) => void;
|
|
6
6
|
count?: number;
|
|
7
7
|
isCentered?: boolean;
|
|
8
8
|
carouselOptions?: {
|
|
@@ -20,5 +20,7 @@ export interface Props {
|
|
|
20
20
|
slidesToShow: number;
|
|
21
21
|
};
|
|
22
22
|
}[];
|
|
23
|
+
easing?: string;
|
|
24
|
+
rtl?: boolean;
|
|
23
25
|
};
|
|
24
26
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './PanelScroller';
|
|
@@ -41,6 +41,7 @@ export { default as PanelProduct } from './PanelProduct';
|
|
|
41
41
|
export { default as PanelVideo } from './PanelVideo';
|
|
42
42
|
export { default as PanelIntro } from './PanelIntro';
|
|
43
43
|
export { default as PanelCustom } from './PanelCustom';
|
|
44
|
+
export { default as PanelScroller } from './PanelScroller';
|
|
44
45
|
export { default as CardGrid } from './CardGrid';
|
|
45
46
|
export { default as Screen } from './Screen';
|
|
46
47
|
export { default as Accordion } from './Accordion';
|
|
@@ -86,6 +87,7 @@ export type { Props as PanelProductProps } from './PanelProduct/PanelProduct.typ
|
|
|
86
87
|
export type { Props as PanelVideoProps } from './PanelVideo/PanelVideo.types';
|
|
87
88
|
export type { Props as PanelIntroProps } from './PanelIntro/PanelIntro.types';
|
|
88
89
|
export type { Props as PanelCustomProps } from './PanelCustom/PanelCustom.types';
|
|
90
|
+
export type { Props as PanelScrollerProps } from './PanelScroller/PanelScroller.types';
|
|
89
91
|
export type { Props as ShareProps } from './Share/Share.types';
|
|
90
92
|
export type { Props as TabsProps } from './Tabs/Tabs.types';
|
|
91
93
|
export type { Props as VisitUsProps } from './VisitUs/VisitUs.types';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@4alldigital/foundation-ui--gamma",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.57.0",
|
|
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": "41612a3086cb09d1b49fe1d99fb9928a685f494a",
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@elastic/datemath": "^5.0.3",
|
|
45
45
|
"@elastic/react-search-ui": "^1.21.5",
|
|
@@ -47,23 +47,23 @@
|
|
|
47
47
|
"@elastic/search-ui": "^1.21.5",
|
|
48
48
|
"@elastic/search-ui-app-search-connector": "^1.21.5",
|
|
49
49
|
"@elastic/search-ui-elasticsearch-connector": "^1.21.5",
|
|
50
|
-
"@headlessui/react": "^2.1.
|
|
50
|
+
"@headlessui/react": "^2.1.3",
|
|
51
51
|
"@heroicons/react": "^2.1.5",
|
|
52
52
|
"@iconify/react": "^5.0.2",
|
|
53
53
|
"@tailwindcss/aspect-ratio": "^0.4.2",
|
|
54
54
|
"@tailwindcss/container-queries": "^0.1.1",
|
|
55
|
-
"@tailwindcss/forms": "^0.5.
|
|
56
|
-
"@tailwindcss/typography": "^0.5.
|
|
55
|
+
"@tailwindcss/forms": "^0.5.8",
|
|
56
|
+
"@tailwindcss/typography": "^0.5.15",
|
|
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.31",
|
|
62
62
|
"history": "^5.3.0",
|
|
63
|
-
"html-react-parser": "^5.1.
|
|
63
|
+
"html-react-parser": "^5.1.15",
|
|
64
64
|
"iso8601-duration": "^2.1.2",
|
|
65
65
|
"libphonenumber-js": "^1.11.7",
|
|
66
|
-
"next": "^14.2.
|
|
66
|
+
"next": "^14.2.7",
|
|
67
67
|
"rc-pagination": "^4.2.0",
|
|
68
68
|
"react": "^18.3.1",
|
|
69
69
|
"react-burger-menu": "^3.0.9",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"react-content-loader": "^7.0.2",
|
|
73
73
|
"react-device-detect": "^2.2.3",
|
|
74
74
|
"react-dom": "^18.3.1",
|
|
75
|
-
"react-hook-form": "^7.
|
|
75
|
+
"react-hook-form": "^7.53.0",
|
|
76
76
|
"react-hover-video-player": "^10.0.2",
|
|
77
77
|
"react-modal": "^3.16.1",
|
|
78
78
|
"react-otp-input": "^3.1.1",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"tailwind-merge": "^2.5.2",
|
|
86
86
|
"tailwindcss": "^3.4.10",
|
|
87
87
|
"typescript": "^5.5.4",
|
|
88
|
-
"video.js": "8.17.
|
|
88
|
+
"video.js": "8.17.4"
|
|
89
89
|
},
|
|
90
90
|
"bugs": {
|
|
91
91
|
"url": "https://github.com/4AllDigital/foundation-ui/issues"
|