@epam/ai-dial-ui-kit 0.10.0-dev.31 → 0.10.0-dev.34
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-manifest.json +51 -2
- package/dist/dial-ui-kit.cjs.js +34 -34
- package/dist/dial-ui-kit.es.js +622 -582
- package/dist/index.css +2 -2
- package/dist/src/components/Button/ButtonWrappers.d.ts +15 -0
- package/dist/src/components/Spinner/Spinner.d.ts +8 -0
- package/dist/src/index.d.ts +4 -1
- package/dist/src/utils/mobile.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.10.0-dev.
|
|
3
|
-
"generatedAt": "2026-05-
|
|
2
|
+
"version": "0.10.0-dev.34",
|
|
3
|
+
"generatedAt": "2026-05-13T15:42:20.065Z",
|
|
4
4
|
"kit": {
|
|
5
5
|
"name": "@epam/ai-dial-ui-kit",
|
|
6
6
|
"description": "A modern UI kit for building AI DIAL interfaces with React",
|
|
@@ -202,6 +202,38 @@
|
|
|
202
202
|
],
|
|
203
203
|
"sourceFile": "components/Loader/Loader.tsx"
|
|
204
204
|
},
|
|
205
|
+
{
|
|
206
|
+
"name": "DialSpinner",
|
|
207
|
+
"category": "Feedback",
|
|
208
|
+
"description": "",
|
|
209
|
+
"props": [
|
|
210
|
+
{
|
|
211
|
+
"name": "size",
|
|
212
|
+
"type": "number",
|
|
213
|
+
"required": false,
|
|
214
|
+
"defaultValue": "24"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"name": "className",
|
|
218
|
+
"type": "string",
|
|
219
|
+
"required": false
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"name": "fullWidth",
|
|
223
|
+
"type": "boolean",
|
|
224
|
+
"required": false,
|
|
225
|
+
"defaultValue": "false"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"name": "ariaLabel",
|
|
229
|
+
"type": "string",
|
|
230
|
+
"required": false,
|
|
231
|
+
"defaultValue": "'Loading'"
|
|
232
|
+
}
|
|
233
|
+
],
|
|
234
|
+
"examples": [],
|
|
235
|
+
"sourceFile": "components/Spinner/Spinner.tsx"
|
|
236
|
+
},
|
|
205
237
|
{
|
|
206
238
|
"name": "DialCheckbox",
|
|
207
239
|
"category": "Form",
|
|
@@ -1771,6 +1803,23 @@
|
|
|
1771
1803
|
],
|
|
1772
1804
|
"sourceFile": "components/Button/ButtonWrappers.tsx"
|
|
1773
1805
|
},
|
|
1806
|
+
{
|
|
1807
|
+
"name": "DialRoundedButton",
|
|
1808
|
+
"category": "Elements/Buttons",
|
|
1809
|
+
"description": "A pill-shaped neutral button with an optional selected state.",
|
|
1810
|
+
"props": [
|
|
1811
|
+
{
|
|
1812
|
+
"name": "selected",
|
|
1813
|
+
"type": "boolean",
|
|
1814
|
+
"required": false,
|
|
1815
|
+
"description": "Applies accent-primary tint and border when true"
|
|
1816
|
+
}
|
|
1817
|
+
],
|
|
1818
|
+
"examples": [
|
|
1819
|
+
"<DialRoundedButton label=\"Tag\" selected={isActive} onClick={handleClick} />"
|
|
1820
|
+
],
|
|
1821
|
+
"sourceFile": "components/Button/ButtonWrappers.tsx"
|
|
1822
|
+
},
|
|
1774
1823
|
{
|
|
1775
1824
|
"name": "DialErrorIconButton",
|
|
1776
1825
|
"category": "Elements/Buttons",
|