@fluidattacks/design 1.2.24 → 1.2.26
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 +414 -198
- package/dist/design.mjs +4960 -4009
- package/dist/src/components/accordion/types.d.ts +11 -11
- package/dist/src/components/button/types.d.ts +6 -6
- package/dist/src/components/checkbox/types.d.ts +5 -5
- package/dist/src/components/cloud-image/types.d.ts +5 -5
- package/dist/src/components/container/types.d.ts +4 -4
- package/dist/src/components/content-card/event-date/index.d.ts +5 -0
- package/dist/src/components/content-card/index.d.ts +3 -0
- package/dist/src/components/content-card/styles.d.ts +2 -0
- package/dist/src/components/content-card/types.d.ts +37 -0
- package/dist/src/components/icon/types.d.ts +9 -9
- package/dist/src/components/inputs/fields/phone/index.d.ts +3 -0
- package/dist/src/components/inputs/fields/phone/styles.d.ts +6 -0
- package/dist/src/components/inputs/fields/text-input/index.d.ts +3 -0
- package/dist/src/components/inputs/index.d.ts +4 -0
- package/dist/src/components/inputs/label/index.d.ts +3 -0
- package/dist/src/components/inputs/outline-container/index.d.ts +4 -0
- package/dist/src/components/inputs/styles.d.ts +3 -0
- package/dist/src/components/inputs/types.d.ts +48 -0
- package/dist/src/components/language-selector/types.d.ts +9 -9
- package/dist/src/components/logo/types.d.ts +2 -2
- package/dist/src/components/logo-carousel/types.d.ts +2 -2
- package/dist/src/components/message-banner/types.d.ts +7 -7
- package/dist/src/components/notification-sign/types.d.ts +3 -3
- package/dist/src/components/progress-bar/types.d.ts +2 -2
- package/dist/src/components/radio-button/types.d.ts +3 -3
- package/dist/src/components/search-bar/types.d.ts +7 -7
- package/dist/src/components/tabs/types.d.ts +11 -11
- package/dist/src/components/toggle-buttons/types.d.ts +3 -3
- package/dist/src/components/tooltip/types.d.ts +8 -8
- package/dist/src/components/typography/types.d.ts +3 -1
- package/dist/src/index.d.ts +1 -0
- package/package.json +28 -27
package/package.json
CHANGED
|
@@ -3,7 +3,6 @@
|
|
|
3
3
|
"bugs": {
|
|
4
4
|
"url": "https://gitlab.com/fluidattacks/universe/issues"
|
|
5
5
|
},
|
|
6
|
-
"description": "Fluidattacks core components library",
|
|
7
6
|
"dependencies": {
|
|
8
7
|
"@cloudinary/react": "1.13.0",
|
|
9
8
|
"@cloudinary/url-gen": "1.21.0",
|
|
@@ -11,28 +10,26 @@
|
|
|
11
10
|
"@fortawesome/react-fontawesome": "0.2.2",
|
|
12
11
|
"react": "18.2.0",
|
|
13
12
|
"react-dom": "18.2.0",
|
|
13
|
+
"react-international-phone": "4.3.0",
|
|
14
14
|
"react-tooltip": "5.28.0",
|
|
15
15
|
"styled-components": "6.1.13"
|
|
16
16
|
},
|
|
17
|
-
"
|
|
18
|
-
"@floating-ui/react-dom": "2.1.2",
|
|
19
|
-
"react-router-dom": "6.27.0"
|
|
20
|
-
},
|
|
17
|
+
"description": "Fluidattacks core components library",
|
|
21
18
|
"devDependencies": {
|
|
22
|
-
"@storybook/addon-a11y": "8.3
|
|
23
|
-
"@storybook/addon-essentials": "8.3
|
|
24
|
-
"@storybook/addon-interactions": "8.3
|
|
25
|
-
"@storybook/addon-links": "8.3
|
|
26
|
-
"@storybook/addon-viewport": "8.3
|
|
27
|
-
"@storybook/blocks": "8.3
|
|
28
|
-
"@storybook/react": "8.3
|
|
29
|
-
"@storybook/react-vite": "8.3
|
|
30
|
-
"@storybook/test": "8.3
|
|
19
|
+
"@storybook/addon-a11y": "8.4.3",
|
|
20
|
+
"@storybook/addon-essentials": "8.4.3",
|
|
21
|
+
"@storybook/addon-interactions": "8.4.3",
|
|
22
|
+
"@storybook/addon-links": "8.4.3",
|
|
23
|
+
"@storybook/addon-viewport": "8.4.3",
|
|
24
|
+
"@storybook/blocks": "8.4.3",
|
|
25
|
+
"@storybook/react": "8.4.3",
|
|
26
|
+
"@storybook/react-vite": "8.4.3",
|
|
27
|
+
"@storybook/test": "8.4.3",
|
|
31
28
|
"@types/react": "18.2.0",
|
|
32
29
|
"@types/react-dom": "18.2.0",
|
|
33
30
|
"@vitejs/plugin-react-swc": "3.7.1",
|
|
34
31
|
"autoprefixer": "10.4.20",
|
|
35
|
-
"eslint": "9.
|
|
32
|
+
"eslint": "9.14.0",
|
|
36
33
|
"eslint-config-prettier": "9.1.0",
|
|
37
34
|
"eslint-import-resolver-typescript": "3.6.3",
|
|
38
35
|
"eslint-plugin-functional": "7.0.2",
|
|
@@ -43,19 +40,24 @@
|
|
|
43
40
|
"eslint-plugin-project-structure": "3.0.1",
|
|
44
41
|
"eslint-plugin-react": "7.37.0",
|
|
45
42
|
"eslint-plugin-react-hooks": "5.0.0",
|
|
46
|
-
"postcss": "8.4.
|
|
47
|
-
"postcss-styled-syntax": "0.
|
|
43
|
+
"postcss": "8.4.49",
|
|
44
|
+
"postcss-styled-syntax": "0.7.0",
|
|
48
45
|
"remark-gfm": "4.0.0",
|
|
49
|
-
"storybook": "8.3
|
|
46
|
+
"storybook": "8.4.3",
|
|
50
47
|
"stylelint": "16.10.0",
|
|
51
48
|
"stylelint-config-standard": "36.0.1",
|
|
52
|
-
"tailwindcss": "3.4.
|
|
49
|
+
"tailwindcss": "3.4.15",
|
|
53
50
|
"typescript": "5.6.3",
|
|
54
|
-
"typescript-eslint": "8.
|
|
51
|
+
"typescript-eslint": "8.14.0",
|
|
55
52
|
"vite": "5.4.10",
|
|
56
53
|
"vite-plugin-css-injected-by-js": "3.5.2",
|
|
57
54
|
"vite-plugin-dts": "4.3.0"
|
|
58
55
|
},
|
|
56
|
+
"eslintConfig": {
|
|
57
|
+
"extends": [
|
|
58
|
+
"plugin:storybook/recommended"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
59
61
|
"files": [
|
|
60
62
|
"README.md",
|
|
61
63
|
"dist"
|
|
@@ -69,8 +71,11 @@
|
|
|
69
71
|
"license": "MPL-2.0",
|
|
70
72
|
"main": "dist/design.js",
|
|
71
73
|
"module": "dist/design.mjs",
|
|
72
|
-
"types": "dist/src/index.d.ts",
|
|
73
74
|
"name": "@fluidattacks/design",
|
|
75
|
+
"optionalDependencies": {
|
|
76
|
+
"@floating-ui/react-dom": "2.1.2",
|
|
77
|
+
"react-router-dom": "6.28.0"
|
|
78
|
+
},
|
|
74
79
|
"publishConfig": {
|
|
75
80
|
"access": "public"
|
|
76
81
|
},
|
|
@@ -85,10 +90,6 @@
|
|
|
85
90
|
"preview": "vite preview",
|
|
86
91
|
"storybook": "storybook dev"
|
|
87
92
|
},
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"extends": [
|
|
91
|
-
"plugin:storybook/recommended"
|
|
92
|
-
]
|
|
93
|
-
}
|
|
93
|
+
"types": "dist/src/index.d.ts",
|
|
94
|
+
"version": "1.2.26"
|
|
94
95
|
}
|