@ceed/ads 1.41.2 → 1.41.3-next.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/components/Autocomplete/Autocomplete.d.ts +4 -4
- package/dist/components/Autocomplete/index.d.ts +2 -1
- package/dist/components/DataTable/components.d.ts +1 -1
- package/dist/components/DataTable/hooks.d.ts +6 -7
- package/dist/components/DataTable/types.d.ts +7 -0
- package/dist/components/DataTable/utils.d.ts +5 -0
- package/dist/components/IconMenuButton/IconMenuButton.d.ts +6 -5
- package/dist/components/IconMenuButton/index.d.ts +2 -1
- package/dist/components/Modal/Modal.d.ts +1 -4
- package/dist/components/Select/Select.d.ts +3 -4
- package/dist/components/Textarea/Textarea.d.ts +1 -4
- package/dist/components/Textarea/index.d.ts +2 -1
- package/dist/components/data-display/DataTable.md +4 -0
- package/dist/components/inputs/DatePicker.md +1 -1
- package/dist/components/inputs/DateRangePicker.md +1 -1
- package/dist/index.browser.js +6 -6
- package/dist/index.browser.js.map +4 -4
- package/dist/index.cjs +795 -712
- package/dist/index.js +259 -176
- package/dist/libs/slot-props.d.ts +22 -0
- package/framer/index.js +1 -1
- package/package.json +7 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ceed/ads",
|
|
3
|
-
"version": "1.41.2",
|
|
3
|
+
"version": "1.41.3-next.2",
|
|
4
4
|
"description": "UI tool for Ecube Labs front-end developers",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Ecube Labs",
|
|
@@ -26,6 +26,9 @@
|
|
|
26
26
|
"import": "./dist/index.browser.js"
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public"
|
|
31
|
+
},
|
|
29
32
|
"scripts": {
|
|
30
33
|
"generate:dist-llms": "node ../../scripts/generate-llms-txt.mjs --input ./stories --output ./dist --project-name \"@ceed/ads Component Guide\"",
|
|
31
34
|
"generate:storybook-llms": "node ../../scripts/generate-llms-txt.mjs --input ./stories --output ./storybook-static --project-name \"@ceed/ads Component Guide\"",
|
|
@@ -65,6 +68,7 @@
|
|
|
65
68
|
"@chromatic-com/storybook": "^5.0.1",
|
|
66
69
|
"@ecubelabs/tsconfig": "^1.0.0",
|
|
67
70
|
"@mui/material": "^5.15.10",
|
|
71
|
+
"@semantic-release/npm": "^13.1.5",
|
|
68
72
|
"@storybook/addon-a11y": "^10.2.19",
|
|
69
73
|
"@storybook/addon-docs": "^10.2.19",
|
|
70
74
|
"@storybook/addon-links": "^10.2.19",
|
|
@@ -86,8 +90,7 @@
|
|
|
86
90
|
"playwright": "^1.55.1",
|
|
87
91
|
"react": "^18.2.0",
|
|
88
92
|
"react-dom": "^18.2.0",
|
|
89
|
-
"semantic-release": "^
|
|
90
|
-
"semantic-release-yarn": "^3.0.2",
|
|
93
|
+
"semantic-release": "^25.0.9",
|
|
91
94
|
"storybook": "^10.2.19",
|
|
92
95
|
"turbo": "^2.9.14",
|
|
93
96
|
"typescript": "^5.3.3",
|
|
@@ -99,4 +102,4 @@
|
|
|
99
102
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
100
103
|
},
|
|
101
104
|
"packageManager": "yarn@4.1.0"
|
|
102
|
-
}
|
|
105
|
+
}
|