@fluidattacks/design 1.2.23 → 1.2.24
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/design.js +130 -83
- package/dist/design.mjs +1616 -1533
- package/dist/src/components/logo-carousel/index.d.ts +3 -0
- package/dist/src/components/logo-carousel/styles.d.ts +4 -0
- package/dist/src/components/logo-carousel/types.d.ts +11 -0
- package/dist/src/components/logo-carousel/utils.d.ts +2 -0
- package/dist/src/index.d.ts +1 -0
- package/package.json +4 -4
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const ClientsContainer: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
2
|
+
declare const Rectangle: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').SVGProps<SVGRectElement>, never>> & string;
|
|
3
|
+
declare const SlideShow: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
4
|
+
export { ClientsContainer, Rectangle, SlideShow };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Logo carousel component props.
|
|
3
|
+
* @interface ILogoCarouselProps
|
|
4
|
+
* @property {boolean} [fusion] Define the fusion style in carousel.
|
|
5
|
+
* @property {string[]} [logos] The list of image logos to show.
|
|
6
|
+
*/
|
|
7
|
+
interface ILogoCarouselProps {
|
|
8
|
+
fusion?: boolean;
|
|
9
|
+
logos?: string[];
|
|
10
|
+
}
|
|
11
|
+
export type { ILogoCarouselProps };
|
package/dist/src/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export * from './components/container';
|
|
|
8
8
|
export * from './components/icon';
|
|
9
9
|
export * from './components/language-selector';
|
|
10
10
|
export * from './components/logo';
|
|
11
|
+
export * from './components/logo-carousel';
|
|
11
12
|
export * from './components/message-banner';
|
|
12
13
|
export * from './components/notification-sign';
|
|
13
14
|
export * from './components/progress-bar';
|
package/package.json
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@types/react-dom": "18.2.0",
|
|
33
33
|
"@vitejs/plugin-react-swc": "3.7.1",
|
|
34
34
|
"autoprefixer": "10.4.20",
|
|
35
|
-
"eslint": "9.
|
|
35
|
+
"eslint": "9.13.0",
|
|
36
36
|
"eslint-config-prettier": "9.1.0",
|
|
37
37
|
"eslint-import-resolver-typescript": "3.6.3",
|
|
38
38
|
"eslint-plugin-functional": "7.0.2",
|
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
"storybook": "8.3.6",
|
|
50
50
|
"stylelint": "16.10.0",
|
|
51
51
|
"stylelint-config-standard": "36.0.1",
|
|
52
|
-
"tailwindcss": "3.4.
|
|
52
|
+
"tailwindcss": "3.4.14",
|
|
53
53
|
"typescript": "5.6.3",
|
|
54
|
-
"typescript-eslint": "8.
|
|
54
|
+
"typescript-eslint": "8.12.2",
|
|
55
55
|
"vite": "5.4.10",
|
|
56
56
|
"vite-plugin-css-injected-by-js": "3.5.2",
|
|
57
57
|
"vite-plugin-dts": "4.3.0"
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"preview": "vite preview",
|
|
86
86
|
"storybook": "storybook dev"
|
|
87
87
|
},
|
|
88
|
-
"version": "1.2.
|
|
88
|
+
"version": "1.2.24",
|
|
89
89
|
"eslintConfig": {
|
|
90
90
|
"extends": [
|
|
91
91
|
"plugin:storybook/recommended"
|