@epam/ai-dial-ui-kit 0.12.0-dev.8 → 0.12.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/CHANGELOG.md +9 -0
- package/dist/JsonEditor-ClTI8-LY.cjs +1 -0
- package/dist/{JsonEditor-C5I5sYht.js → JsonEditor-DjEsE74s.js} +3 -4
- package/dist/MarkdownEditor-BMApEDVP.cjs +1 -0
- package/dist/MarkdownEditor-DlKjo9LA.js +35 -0
- package/dist/components-manifest.json +442 -3
- package/dist/dial-ui-kit.cjs.js +1 -1
- package/dist/dial-ui-kit.es.js +137 -126
- package/dist/{index-CwuDpFCz.cjs → index-Bl2M9QgI.cjs} +31 -31
- package/dist/{index-BB-aX52k.js → index-bLYIiSd_.js} +12664 -11833
- package/dist/index.css +2 -2
- package/dist/migration-guides/0.12.0/legacy-typography-classes-removal.md +57 -0
- package/dist/migration-guides/README.md +1 -0
- package/dist/src/components/Accordion/Accordion.d.ts +56 -0
- package/dist/src/components/Analytics/Bar/Bar.d.ts +81 -0
- package/dist/src/components/Analytics/Bar/utils.d.ts +20 -0
- package/dist/src/components/Analytics/Bar/utils.spec.d.ts +1 -0
- package/dist/src/components/Analytics/BarGroup/BarGroup.d.ts +89 -0
- package/dist/src/components/Analytics/Card/Card.d.ts +80 -0
- package/dist/src/components/Analytics/ErrorTag/ErrorTag.d.ts +21 -0
- package/dist/src/components/Analytics/Histogram/Histogram.d.ts +56 -0
- package/dist/src/components/Analytics/Histogram/utils.d.ts +39 -0
- package/dist/src/components/Analytics/Histogram/utils.spec.d.ts +1 -0
- package/dist/src/components/Analytics/index.d.ts +13 -0
- package/dist/src/components/Breadcrumb/BreadcrumbItem.d.ts +1 -0
- package/dist/src/components/Breadcrumb/constants.d.ts +2 -3
- package/dist/src/components/ConfirmationPopup/constants.d.ts +1 -1
- package/dist/src/components/Dropdown/Dropdown.d.ts +2 -0
- package/dist/src/components/FileManager/FileManager.d.ts +2 -0
- package/dist/src/components/FileManager/errors.d.ts +3 -0
- package/dist/src/components/FileManager/hooks/use-file-upload.d.ts +2 -1
- package/dist/src/components/FileManager/hooks/use-folder-creation.d.ts +1 -0
- package/dist/src/components/FileManager/hooks/use-item-renaming.d.ts +1 -0
- package/dist/src/components/InfoButton/constants.d.ts +1 -1
- package/dist/src/components/RadioGroup/RadioGroup.d.ts +2 -0
- package/dist/src/components/RadioGroupPopupField/RadioGroupPopupField.d.ts +1 -0
- package/dist/src/components/SchemaRenderer/SchemaRenderer.d.ts +1 -0
- package/dist/src/components/SchemaRenderer/components/SchemaAdditionalPropertiesEditor.d.ts +20 -0
- package/dist/src/components/SchemaRenderer/context.d.ts +3 -0
- package/dist/src/components/SchemaRenderer/types.d.ts +14 -0
- package/dist/src/components/SegmentedControl/SegmentedControl.d.ts +39 -0
- package/dist/src/components/SegmentedControl/constants.d.ts +5 -0
- package/dist/src/components/Select/Select.d.ts +3 -0
- package/dist/src/components/Slider/Slider.d.ts +3 -0
- package/dist/src/components/Tab/Tab.d.ts +4 -0
- package/dist/src/components/Tabs/Tabs.d.ts +7 -1
- package/dist/src/index.d.ts +20 -1
- package/dist/src/models/analytics.d.ts +15 -0
- package/dist/src/models/segmented-control.d.ts +7 -0
- package/dist/src/models/select.d.ts +6 -0
- package/dist/src/types/analytics.d.ts +4 -0
- package/dist/src/types/tab.d.ts +4 -0
- package/package.json +1 -1
- package/dist/JsonEditor-BJZNbUaI.cjs +0 -1
- package/dist/MarkdownEditor-V1kWnFFC.js +0 -36
- package/dist/MarkdownEditor-_e6afNxe.cjs +0 -1
- package/dist/editor-Ba3vCFHk.cjs +0 -1
- package/dist/editor-Cu1dRT39.js +0 -4
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.12.0
|
|
3
|
-
"generatedAt": "2026-
|
|
2
|
+
"version": "0.12.0",
|
|
3
|
+
"generatedAt": "2026-07-21T10:01:28.722Z",
|
|
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",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"setupNotes": "## Next.js Integration\n1. Install the package and peer dependencies that are not currently in your project\n``` bash\nnpm install @epam/ai-dial-ui-kit\nnpm install react react-dom @tabler/icons-react classnames\nnpm install @floating-ui/react monaco-editor @monaco-editor/react\n```\n\n2. Import style in the root layout of the project:\n\n```tsx\n// app/layout.tsx\nimport \"@epam/ai-dial-ui-kit/styles.css\";\n```\n\n3. Usage example\n\n```tsx\n// app/page.tsx\n\"use client\";\nimport { DialPrimaryButton } from \"@epam/ai-dial-ui-kit\";\n\nexport default function Home() {\n return (\n <div className=\"w-full h-full flex flex-col gap-3 items-center justify-center\">\n <h1>Test library</h1>\n <DialPrimaryButton onClick={() => alert('Hello AI DIAL!')} />\n </div>\n );\n}\n```\nSee \"🎨 Theming & Customization\" section in README."
|
|
22
22
|
},
|
|
23
|
-
"styles": "# Typography CSS Utility Classes\n\n## Design-system-compliant classes (`dial-*-text`)\n\nUse these by default. They follow the design system type scale.\n\n| Class
|
|
23
|
+
"styles": "# Typography CSS Utility Classes\n\n## Design-system-compliant classes (`dial-*-text`)\n\nUse these by default. They follow the design system type scale.\n\n| Class | Weight | Size / Line-height |\n| --------------------------------- | -------- | ----------------------- |\n| `.dial-display1-text` | semibold | 32px / 48px |\n| `.dial-display2-text` | semibold | 28px / 40px |\n| `.dial-h1-text` | semibold | 22px / 32px |\n| `.dial-h2-text` | semibold | 20px / 28px |\n| `.dial-h3-text` | semibold | 18px / 26px |\n| `.dial-body-text` | normal | 16px / 24px |\n| `.dial-body-semi-text` | semibold | 16px / 24px |\n| `.dial-body-paragraph-text` | normal | 16px / 26px |\n| `.dial-body-paragraph-semi-text` | semibold | 16px / 26px |\n| `.dial-small-text` | normal | 14px / 20px |\n| `.dial-small-semi-text` | semibold | 14px / 20px |\n| `.dial-small-paragraph-text` | normal | 14px / 24px |\n| `.dial-small-paragraph-semi-text` | semibold | 14px / 24px |\n| `.dial-tiny-text` | normal | 12px / 16px |\n| `.dial-tiny-semi-text` | semibold | 12px / 16px |\n| `.dial-caption-text` | normal | 10px / 12px |\n| `.dial-caption-semi-text` | semibold | 10px / 12px |\n| `.dial-code-text` | normal | 14px / 20px (monospace) |\n\n## Legacy classes (avoid in new code)\n\nClasses like `dial-h1`, `dial-h2`, `dial-body`, `dial-small*`, `dial-tiny*`, `dial-caption` are legacy. They can be used in legacy projects if user explicidly specify they need legacy typography.\n\n## Raw SCSS source\n",
|
|
24
24
|
"theming": "# Theming & CSS Variable Tokens\n\nAI DIAL UI Kit uses CSS custom properties (variables) for theming.\nDark and light themes are switched by setting different values for these variables on `:root` or a theme wrapper element.\n\n## Usage in Tailwind\n\nThe Tailwind config maps CSS variables to utility classes.\nUse these classes in your components:\n\n```tsx\n// Backgrounds\n<div className=\"bg-layer-0\" /> // darkest background\n<div className=\"bg-layer-1\" /> // main content area\n<div className=\"bg-layer-2\" /> // elevated panels\n\n// Text\n<span className=\"text-primary\" /> // main text color\n<span className=\"text-secondary\" /> // muted text\n<span className=\"text-error\" /> // error state\n\n// Borders\n<div className=\"border border-primary\" /> // standard border\n<div className=\"border border-error\" /> // error border\n```\n\n## Override CSS Variables\n\n```css\n:root {\n --bg-layer-0: #000000;\n --bg-layer-1: #0c101d;\n --bg-layer-2: #161b2d;\n --bg-layer-3: #1d2439;\n --text-primary: #eef1f7;\n --text-secondary: #9fa6bd;\n --text-error: #f76464;\n --stroke-primary: #696e7c;\n --controls-bg-accent-primary: #3664e2;\n /* ... see tailwind.config.js for full list */\n}\n```\n\n## Token Reference\n\n\n### backgroundsColors\n| Tailwind class suffix | CSS variable | Default value |\n|---|---|---|\n| `layer-0` | `var(--bg-layer-0)` | `#000000` |\n| `layer-1` | `var(--bg-layer-1)` | `#0C101D` |\n| `layer-2` | `var(--bg-layer-2)` | `#161B2D` |\n| `layer-3` | `var(--bg-layer-3)` | `#1D2439` |\n| `layer-4` | `var(--bg-layer-4)` | `#242C42` |\n| `accent-primary-alpha` | `var(--bg-accent-primary-alpha)` | `#7DA4FF26` |\n| `accent-secondary-alpha` | `var(--bg-accent-secondary-alpha)` | `#37BABC2E` |\n| `accent-tertiary-alpha` | `var(--bg-accent-tertiary-alpha)` | `#A972FF2E` |\n| `model-icon` | `var(--bg-model-icon)` | `#FFFFFF` |\n| `accent-primary` | `var(--bg-accent-primary)` | `#5C8DEA` |\n| `accent-secondary` | `var(--bg-accent-secondary)` | `#37BABC` |\n| `accent-tertiary` | `var(--bg-accent-tertiary)` | `#A972FF` |\n| `red-400` | `var(--bg-red-400)` | `#F76464` |\n| `orange-400` | `var(--bg-orange-400)` | `#D97C27` |\n| `orange-800` | `var(--bg-orange-800)` | `#B25500` |\n\n### controlsBgColors\n| Tailwind class suffix | CSS variable | Default value |\n|---|---|---|\n| `controls-accent-primary` | `var(--controls-bg-accent-primary)` | `#3664E2` |\n| `controls-accent-primary-hover` | `var(--controls-bg-accent-primary-hover)` | `#2656D9` |\n| `controls-accent-primary-active` | `var(--controls-bg-accent-primary-active)` | `#124ACE` |\n| `controls-accent-primary-alpha-active` | `var(--controls-bg-accent-primary-alpha-active)` | `#7DA4FF4D` |\n| `controls-accent-secondary-alpha-active` | `var(--controls-bg-accent-secondary-alpha-active)` | `#37BABC5C` |\n| `controls-accent-tertiary-alpha-active` | `var(--controls-bg-accent-tertiary-alpha-active)` | `#A972FF5C` |\n| `controls-error` | `var(--controls-bg-error)` | `#CC4545` |\n| `controls-error-hover` | `var(--controls-bg-error-hover)` | `#BF3939` |\n| `controls-error-active` | `var(--controls-bg-error-active)` | `#AE2F2F` |\n| `controls-error-alpha-hover` | `var(--controls-bg-alpha-hover)` | `#F764642E` |\n| `controls-error-alpha-active` | `var(--controls-bg-error-alpha-active)` | `#F764645C` |\n| `controls-disable-accent` | `var(--controls-bg-disable-accent)` | `#696E7C` |\n| `controls-disable` | `var(--controls-bg-disable)` | `#242C42` |\n| `controls-neutral-hover` | `var(--controls-bg-neutral-hover)` | `#242C42` |\n| `controls-neutral-active` | `var(--controls-bg-neutral-active)` | `#575F73` |\n| `controls-accent-success-alpha-hover` | `var(--controls-bg-accent-success-alpha-hover)` | `#37BABC2E` |\n| `controls-accent-success-alpha-active` | `var(--controls-bg-accent-success-alpha-active)` | `#37BABC5C` |\n| `controls-accent` | `var(--controls-bg-accent)` | `#5C8DEA` |\n| `controls-accent-hover` | `var(--controls-bg-accent-hover)` | `#4878D2` |\n| `controls-accent-alpha` | `var(--controls-bg-accent-alpha)` | `#5C8DEA2B` |\n| `controls-enable-primary` | `var(--controls-enable-primary)` | `#FCFCFC` |\n\n### borderColors\n| Tailwind class suffix | CSS variable | Default value |\n|---|---|---|\n| `accent-primary` | `var(--stroke-accent-primary)` | `#7DA4FF` |\n| `accent-secondary` | `var(--stroke-accent-secondary)` | `#37BABC` |\n| `accent-tertiary` | `var(--stroke-accent-tertiary)` | `#A972FF` |\n| `controls-accent` | `var(--controls-bg-accent)` | `#5C8DEA` |\n| `accent-primary-hover` | `var(--stroke-accent-primary-hover)` | `#4878d2` |\n| `red-900` | `var(--red-900)` | `#402027` |\n\n### textColors\n| Tailwind class suffix | CSS variable | Default value |\n|---|---|---|\n| `warning-icon` | `var(--text-warning-icon)` | `#EEC840` |\n| `accent-primary` | `var(--text-accent-primary)` | `#7DA4FF` |\n| `accent-secondary` | `var(--text-accent-secondary)` | `#37BABC` |\n| `accent-tertiary` | `var(--text-accent-tertiary)` | `#A972FF` |\n| `controls-disable` | `var(--controls-text-disable)` | `#0C101D` |\n\n### controlsTextColors\n| Tailwind class suffix | CSS variable | Default value |\n|---|---|---|\n| `controls-permanent` | `var(--controls-text-permanent)` | `#FCFCFC` |\n| `controls-accent-disable` | `var(--controls-text-accent-disable)` | `#242C42` |\n| `controls-primary-disable` | `var(--controls-text-primary-disable)` | `#7C8293` |\n| `controls-secondary-disable` | `var(--controls-text-secondary-disable)` | `#575F73` |\n| `controls-neutral` | `var(--controls-text-neutral)` | `#FCFCFC` |\n| `controls-accent-primary-hover` | `var(--controls-text-accent-primary-hover)` | `#3664E2` |\n| `controls-accent-primary-active` | `var(--controls-text-accent-primary-active)` | `#124ACE` |\n| `controls-primary` | `var(--controls-primary)` | `#FCFCFC` |\n| `controls-disable` | `var(--controls-text-disable)` | `#575F73` |",
|
|
25
25
|
"components": [
|
|
26
26
|
{
|
|
@@ -84,6 +84,84 @@
|
|
|
84
84
|
],
|
|
85
85
|
"sourceFile": "components/Label/Label.tsx"
|
|
86
86
|
},
|
|
87
|
+
{
|
|
88
|
+
"name": "DialAccordion",
|
|
89
|
+
"category": "Layout",
|
|
90
|
+
"description": "A collapsible panel that toggles its content when the header is clicked.\naliases: Collapse|Disclosure|ExpandablePanel\n\nWorks as a controlled component when `expanded` is provided, otherwise it manages\nits own state from `defaultExpanded`. The header shows a chevron that rotates when\nexpanded, a title, and an optional description.",
|
|
91
|
+
"props": [
|
|
92
|
+
{
|
|
93
|
+
"name": "title",
|
|
94
|
+
"type": "ReactNode",
|
|
95
|
+
"required": true,
|
|
96
|
+
"description": "Title rendered in the header."
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"name": "description",
|
|
100
|
+
"type": "ReactNode",
|
|
101
|
+
"required": false,
|
|
102
|
+
"description": "Optional secondary text rendered under the title."
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"name": "children",
|
|
106
|
+
"type": "ReactNode",
|
|
107
|
+
"required": false,
|
|
108
|
+
"description": "Content revealed when expanded."
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "expanded",
|
|
112
|
+
"type": "boolean",
|
|
113
|
+
"required": false,
|
|
114
|
+
"description": "Controlled expanded state."
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "defaultExpanded",
|
|
118
|
+
"type": "boolean",
|
|
119
|
+
"required": false,
|
|
120
|
+
"defaultValue": "false",
|
|
121
|
+
"description": "Initial expanded state when uncontrolled."
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "disabled",
|
|
125
|
+
"type": "boolean",
|
|
126
|
+
"required": false,
|
|
127
|
+
"description": "Disables toggling."
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "nonCollapsible",
|
|
131
|
+
"type": "boolean",
|
|
132
|
+
"required": false,
|
|
133
|
+
"description": "Renders the panel permanently expanded without a chevron or toggle."
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "onToggle",
|
|
137
|
+
"type": "(expanded: boolean) => void",
|
|
138
|
+
"required": false,
|
|
139
|
+
"description": "Fired when the header is clicked. Receives the next expanded state."
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "className",
|
|
143
|
+
"type": "string",
|
|
144
|
+
"required": false,
|
|
145
|
+
"description": "Additional CSS classes for the outer container."
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"name": "headerClassName",
|
|
149
|
+
"type": "string",
|
|
150
|
+
"required": false,
|
|
151
|
+
"description": "Additional CSS classes for the header button."
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
"name": "contentClassName",
|
|
155
|
+
"type": "string",
|
|
156
|
+
"required": false,
|
|
157
|
+
"description": "Additional CSS classes for the content region."
|
|
158
|
+
}
|
|
159
|
+
],
|
|
160
|
+
"examples": [
|
|
161
|
+
"<DialAccordion title=\"Advanced settings\" description=\"Optional configuration\">\n <p>Panel content</p>\n</DialAccordion>"
|
|
162
|
+
],
|
|
163
|
+
"sourceFile": "components/Accordion/Accordion.tsx"
|
|
164
|
+
},
|
|
87
165
|
{
|
|
88
166
|
"name": "DialIcon",
|
|
89
167
|
"category": "Data Display",
|
|
@@ -520,6 +598,12 @@
|
|
|
520
598
|
"required": true,
|
|
521
599
|
"description": "Layout direction of radios: row or column"
|
|
522
600
|
},
|
|
601
|
+
{
|
|
602
|
+
"name": "labelDescription",
|
|
603
|
+
"type": "string",
|
|
604
|
+
"required": false,
|
|
605
|
+
"description": "Optional description rendered by `DialFormItem`"
|
|
606
|
+
},
|
|
523
607
|
{
|
|
524
608
|
"name": "onChange",
|
|
525
609
|
"type": "(radioId: string) => void",
|
|
@@ -631,6 +715,12 @@
|
|
|
631
715
|
"defaultValue": "false",
|
|
632
716
|
"description": "Disables interaction"
|
|
633
717
|
},
|
|
718
|
+
{
|
|
719
|
+
"name": "labelProps",
|
|
720
|
+
"type": "DialLabelProps",
|
|
721
|
+
"required": false,
|
|
722
|
+
"description": "Props forwarded to DialLabel rendered above the slider"
|
|
723
|
+
},
|
|
634
724
|
{
|
|
635
725
|
"name": "labels",
|
|
636
726
|
"type": "[string, string] | [string, string, string]",
|
|
@@ -1668,6 +1758,13 @@
|
|
|
1668
1758
|
"defaultValue": "TabOrientation.Horizontal",
|
|
1669
1759
|
"description": "Layout direction of the tabs. Uses the enum."
|
|
1670
1760
|
},
|
|
1761
|
+
{
|
|
1762
|
+
"name": "view",
|
|
1763
|
+
"type": "TabView",
|
|
1764
|
+
"required": false,
|
|
1765
|
+
"defaultValue": "TabView.Default",
|
|
1766
|
+
"description": "Visual style of the tabs. Uses the enum.\n`Inline` renders a compact segmented control where the active tab is marked with a\nleading check icon. The inline view is not responsive and ignores overflow/dropdown logic."
|
|
1767
|
+
},
|
|
1671
1768
|
{
|
|
1672
1769
|
"name": "className",
|
|
1673
1770
|
"type": "string",
|
|
@@ -1703,6 +1800,16 @@
|
|
|
1703
1800
|
"type": "string",
|
|
1704
1801
|
"required": false,
|
|
1705
1802
|
"description": "Optional CSS class applied to tab in non small-screed mode."
|
|
1803
|
+
},
|
|
1804
|
+
{
|
|
1805
|
+
"name": "inlineContainerClassName",
|
|
1806
|
+
"type": "string",
|
|
1807
|
+
"required": false
|
|
1808
|
+
},
|
|
1809
|
+
{
|
|
1810
|
+
"name": "inlineTabClassName",
|
|
1811
|
+
"type": "string",
|
|
1812
|
+
"required": false
|
|
1706
1813
|
}
|
|
1707
1814
|
],
|
|
1708
1815
|
"examples": [
|
|
@@ -1806,6 +1913,11 @@
|
|
|
1806
1913
|
"type": "boolean",
|
|
1807
1914
|
"required": false
|
|
1808
1915
|
},
|
|
1916
|
+
{
|
|
1917
|
+
"name": "isFirst",
|
|
1918
|
+
"type": "boolean",
|
|
1919
|
+
"required": false
|
|
1920
|
+
},
|
|
1809
1921
|
{
|
|
1810
1922
|
"name": "separator",
|
|
1811
1923
|
"type": "ReactNode",
|
|
@@ -2292,6 +2404,53 @@
|
|
|
2292
2404
|
],
|
|
2293
2405
|
"sourceFile": "components/Switch/Switch.tsx"
|
|
2294
2406
|
},
|
|
2407
|
+
{
|
|
2408
|
+
"name": "DialSegmentedControl",
|
|
2409
|
+
"category": "Form",
|
|
2410
|
+
"description": "A single-select control for switching between a small set of mutually exclusive,\nequally-sized options (e.g. view switchers).\naliases: SegmentedButton|ViewSwitcher\n\nRenders a horizontal group of segments where every option is always visible and\nequally sized. Supports 2 or more segments, optional per-option icons, and\nkeyboard navigation (Arrow keys, Home, End).",
|
|
2411
|
+
"props": [
|
|
2412
|
+
{
|
|
2413
|
+
"name": "options",
|
|
2414
|
+
"type": "SegmentedControlOption<T>[]",
|
|
2415
|
+
"required": true,
|
|
2416
|
+
"description": "Segments to render. Each option needs a unique `value` and may include a `label`, `icon`, and `disabled` flag."
|
|
2417
|
+
},
|
|
2418
|
+
{
|
|
2419
|
+
"name": "value",
|
|
2420
|
+
"type": "T",
|
|
2421
|
+
"required": true,
|
|
2422
|
+
"description": "The currently selected option `value`."
|
|
2423
|
+
},
|
|
2424
|
+
{
|
|
2425
|
+
"name": "onChange",
|
|
2426
|
+
"type": "(value: T) => void",
|
|
2427
|
+
"required": true,
|
|
2428
|
+
"description": "Callback fired with the selected option `value`."
|
|
2429
|
+
},
|
|
2430
|
+
{
|
|
2431
|
+
"name": "disabled",
|
|
2432
|
+
"type": "boolean",
|
|
2433
|
+
"required": false,
|
|
2434
|
+
"description": "Disables the entire control when set."
|
|
2435
|
+
},
|
|
2436
|
+
{
|
|
2437
|
+
"name": "className",
|
|
2438
|
+
"type": "string",
|
|
2439
|
+
"required": false,
|
|
2440
|
+
"description": "Additional classes applied to the container."
|
|
2441
|
+
},
|
|
2442
|
+
{
|
|
2443
|
+
"name": "ariaLabel",
|
|
2444
|
+
"type": "string",
|
|
2445
|
+
"required": false,
|
|
2446
|
+
"description": "Accessible label for the control (applied to the `tablist`)."
|
|
2447
|
+
}
|
|
2448
|
+
],
|
|
2449
|
+
"examples": [
|
|
2450
|
+
"<DialSegmentedControl\n ariaLabel=\"View\"\n value={view}\n onChange={setView}\n options={[\n { value: 'list', label: 'List' },\n { value: 'grid', label: 'Grid' },\n ]}\n/>"
|
|
2451
|
+
],
|
|
2452
|
+
"sourceFile": "components/SegmentedControl/SegmentedControl.tsx"
|
|
2453
|
+
},
|
|
2295
2454
|
{
|
|
2296
2455
|
"name": "DialPopup",
|
|
2297
2456
|
"category": "Overlay",
|
|
@@ -3026,6 +3185,13 @@
|
|
|
3026
3185
|
"defaultValue": "false",
|
|
3027
3186
|
"description": "Show a search field in the overlay header."
|
|
3028
3187
|
},
|
|
3188
|
+
{
|
|
3189
|
+
"name": "searchSize",
|
|
3190
|
+
"type": "ElementSize",
|
|
3191
|
+
"required": false,
|
|
3192
|
+
"defaultValue": "ElementSize.Standard",
|
|
3193
|
+
"description": "Size of the overlay search input when `searchable` is enabled."
|
|
3194
|
+
},
|
|
3029
3195
|
{
|
|
3030
3196
|
"name": "searchPlaceholder",
|
|
3031
3197
|
"type": "string",
|
|
@@ -3358,6 +3524,16 @@
|
|
|
3358
3524
|
"type": "string",
|
|
3359
3525
|
"required": false
|
|
3360
3526
|
},
|
|
3527
|
+
{
|
|
3528
|
+
"name": "overlayContentClassName",
|
|
3529
|
+
"type": "string",
|
|
3530
|
+
"required": false
|
|
3531
|
+
},
|
|
3532
|
+
{
|
|
3533
|
+
"name": "separatorClassName",
|
|
3534
|
+
"type": "string",
|
|
3535
|
+
"required": false
|
|
3536
|
+
},
|
|
3361
3537
|
{
|
|
3362
3538
|
"name": "listClassName",
|
|
3363
3539
|
"type": "string",
|
|
@@ -3743,6 +3919,12 @@
|
|
|
3743
3919
|
"required": false,
|
|
3744
3920
|
"description": "Callback fired when files are uploaded"
|
|
3745
3921
|
},
|
|
3922
|
+
{
|
|
3923
|
+
"name": "prepareUploadFileName",
|
|
3924
|
+
"type": "(name: string) => string",
|
|
3925
|
+
"required": false,
|
|
3926
|
+
"description": "Optional mapper applied to each uploaded item's name before conflict resolution runs and before `onUploadFiles`/`onUploadArchive` are called. Use it to sanitize or normalize names (e.g. stripping forbidden symbols). Conflict detection is performed against the mapped names, so renames take place before the conflict check."
|
|
3927
|
+
},
|
|
3746
3928
|
{
|
|
3747
3929
|
"name": "onValidateUpload",
|
|
3748
3930
|
"type": "(\n files: DialUploadFileItem[],\n existingFiles: DialFile[],\n destinationFolder: string,\n ) => FileUploadValidationResult | Promise<FileUploadValidationResult>",
|
|
@@ -3960,6 +4142,178 @@
|
|
|
3960
4142
|
],
|
|
3961
4143
|
"sourceFile": "components/FileManager/components/DestinationFolderPopup/DestinationFolderPopup.tsx"
|
|
3962
4144
|
},
|
|
4145
|
+
{
|
|
4146
|
+
"name": "DialFoldersTree",
|
|
4147
|
+
"category": "Data Display",
|
|
4148
|
+
"description": "DialFoldersTree — A hierarchical folder tree component with nested expand/collapse support, selection highlighting,\nand optional file display.\n\nProvides a fully interactive, recursive folder structure with:\n- Expandable and collapsible items\n- Optional file visibility\n- Loading state indicators for specific paths\n- Inline renaming support for folders or files\n- Multi-item selection highlighting\n- Context menu integration via `DialDropdown`\n- Recursive rendering with indentation and icons\n- Customizable empty state (title, description, and icon)",
|
|
4149
|
+
"props": [
|
|
4150
|
+
{
|
|
4151
|
+
"name": "items",
|
|
4152
|
+
"type": "DialFile[]",
|
|
4153
|
+
"required": true,
|
|
4154
|
+
"description": "Array of folder and file nodes to display in the tree."
|
|
4155
|
+
},
|
|
4156
|
+
{
|
|
4157
|
+
"name": "expandedPaths",
|
|
4158
|
+
"type": "Set<string>",
|
|
4159
|
+
"required": false,
|
|
4160
|
+
"description": "Set of folder paths that should be expanded."
|
|
4161
|
+
},
|
|
4162
|
+
{
|
|
4163
|
+
"name": "loadingPaths",
|
|
4164
|
+
"type": "Set<string>",
|
|
4165
|
+
"required": false,
|
|
4166
|
+
"defaultValue": "new Set()",
|
|
4167
|
+
"description": "Set of folder paths currently loading (shows spinner or placeholder)."
|
|
4168
|
+
},
|
|
4169
|
+
{
|
|
4170
|
+
"name": "loadedPaths",
|
|
4171
|
+
"type": "Set<string>",
|
|
4172
|
+
"required": false,
|
|
4173
|
+
"defaultValue": "new Set()",
|
|
4174
|
+
"description": "Set of folder paths that have loaded."
|
|
4175
|
+
},
|
|
4176
|
+
{
|
|
4177
|
+
"name": "sharedByMePaths",
|
|
4178
|
+
"type": "Set<string>",
|
|
4179
|
+
"required": false,
|
|
4180
|
+
"defaultValue": "new Set()",
|
|
4181
|
+
"description": "Set of items paths that the user has shared with others. Enables UI indicators (icons/badges)."
|
|
4182
|
+
},
|
|
4183
|
+
{
|
|
4184
|
+
"name": "selectedPath",
|
|
4185
|
+
"type": "string",
|
|
4186
|
+
"required": false,
|
|
4187
|
+
"description": "Path representing the currently selected folder or file."
|
|
4188
|
+
},
|
|
4189
|
+
{
|
|
4190
|
+
"name": "renamedPath",
|
|
4191
|
+
"type": "string",
|
|
4192
|
+
"required": false,
|
|
4193
|
+
"description": "Path of the folder or file currently being edited."
|
|
4194
|
+
},
|
|
4195
|
+
{
|
|
4196
|
+
"name": "createdFolderPath",
|
|
4197
|
+
"type": "string | null",
|
|
4198
|
+
"required": false,
|
|
4199
|
+
"description": "Optional Path of the new created folder."
|
|
4200
|
+
},
|
|
4201
|
+
{
|
|
4202
|
+
"name": "showFiles",
|
|
4203
|
+
"type": "boolean",
|
|
4204
|
+
"required": false,
|
|
4205
|
+
"defaultValue": "false",
|
|
4206
|
+
"description": "Whether to show files in addition to folders."
|
|
4207
|
+
},
|
|
4208
|
+
{
|
|
4209
|
+
"name": "rootItemPath",
|
|
4210
|
+
"type": "string",
|
|
4211
|
+
"required": false,
|
|
4212
|
+
"description": "Path of the folder to treat as the custom root node (no context menu, special label)."
|
|
4213
|
+
},
|
|
4214
|
+
{
|
|
4215
|
+
"name": "rootItemLabel",
|
|
4216
|
+
"type": "string",
|
|
4217
|
+
"required": false,
|
|
4218
|
+
"description": "Label to display for the root node instead of its actual name."
|
|
4219
|
+
},
|
|
4220
|
+
{
|
|
4221
|
+
"name": "emptyStateTitle",
|
|
4222
|
+
"type": "string",
|
|
4223
|
+
"required": false,
|
|
4224
|
+
"defaultValue": "'No Folders'",
|
|
4225
|
+
"description": "Title text displayed when there are no items."
|
|
4226
|
+
},
|
|
4227
|
+
{
|
|
4228
|
+
"name": "emptyStateDescription",
|
|
4229
|
+
"type": "string",
|
|
4230
|
+
"required": false,
|
|
4231
|
+
"description": "Optional description text for the empty state."
|
|
4232
|
+
},
|
|
4233
|
+
{
|
|
4234
|
+
"name": "emptyStateIcon",
|
|
4235
|
+
"type": "ReactNode",
|
|
4236
|
+
"required": false,
|
|
4237
|
+
"description": "Optional icon to display in the empty state."
|
|
4238
|
+
},
|
|
4239
|
+
{
|
|
4240
|
+
"name": "onItemClick",
|
|
4241
|
+
"type": "(item: DialFile) => void",
|
|
4242
|
+
"required": false,
|
|
4243
|
+
"description": "Callback fired when a folder or file is clicked (receives the corresponding `DialFile` node)."
|
|
4244
|
+
},
|
|
4245
|
+
{
|
|
4246
|
+
"name": "onRenameSave",
|
|
4247
|
+
"type": "(value: string) => void",
|
|
4248
|
+
"required": false,
|
|
4249
|
+
"description": "Callback fired when editing is confirmed with a valid name (receives the new name)."
|
|
4250
|
+
},
|
|
4251
|
+
{
|
|
4252
|
+
"name": "onRenameCancel",
|
|
4253
|
+
"type": "() => void",
|
|
4254
|
+
"required": false,
|
|
4255
|
+
"description": "Callback fired when editing is cancelled."
|
|
4256
|
+
},
|
|
4257
|
+
{
|
|
4258
|
+
"name": "onRenameValidate",
|
|
4259
|
+
"type": "(value: string, item: DialFile) => string | null",
|
|
4260
|
+
"required": false,
|
|
4261
|
+
"description": "Function to validate the new name during editing. Should return an error string or `null` if valid."
|
|
4262
|
+
},
|
|
4263
|
+
{
|
|
4264
|
+
"name": "onCreateFolderSave",
|
|
4265
|
+
"type": "(value: string) => void",
|
|
4266
|
+
"required": false,
|
|
4267
|
+
"description": "Optional Callback fired when create new folder is confirmed"
|
|
4268
|
+
},
|
|
4269
|
+
{
|
|
4270
|
+
"name": "onCreateFolderCancel",
|
|
4271
|
+
"type": "() => void",
|
|
4272
|
+
"required": false,
|
|
4273
|
+
"description": "Optional Callback fired when create new folder is cancelled"
|
|
4274
|
+
},
|
|
4275
|
+
{
|
|
4276
|
+
"name": "getContextMenuItems",
|
|
4277
|
+
"type": "(item: DialFile) => DropdownItem[]",
|
|
4278
|
+
"required": false,
|
|
4279
|
+
"description": "Function returning context menu items for a given node."
|
|
4280
|
+
},
|
|
4281
|
+
{
|
|
4282
|
+
"name": "areHiddenFilesVisible",
|
|
4283
|
+
"type": "boolean",
|
|
4284
|
+
"required": false,
|
|
4285
|
+
"defaultValue": "false",
|
|
4286
|
+
"description": "Whether hidden files (dotfiles) should be visible in the tree."
|
|
4287
|
+
},
|
|
4288
|
+
{
|
|
4289
|
+
"name": "onExpandedPathsChange",
|
|
4290
|
+
"type": "(expandedPaths: Set<string>) => void",
|
|
4291
|
+
"required": false
|
|
4292
|
+
},
|
|
4293
|
+
{
|
|
4294
|
+
"name": "forbiddenSymbolsRegExp",
|
|
4295
|
+
"type": "RegExp",
|
|
4296
|
+
"required": false,
|
|
4297
|
+
"description": "Optional RegExp used to validate folder and file names for forbidden characters."
|
|
4298
|
+
},
|
|
4299
|
+
{
|
|
4300
|
+
"name": "forbiddenSymbolsTooltip",
|
|
4301
|
+
"type": "ReactNode",
|
|
4302
|
+
"required": false,
|
|
4303
|
+
"description": "Optional tooltip content displayed when a name contains forbidden characters."
|
|
4304
|
+
},
|
|
4305
|
+
{
|
|
4306
|
+
"name": "newFolderDefaultName",
|
|
4307
|
+
"type": "string",
|
|
4308
|
+
"required": false,
|
|
4309
|
+
"description": "Optional new folder default name."
|
|
4310
|
+
}
|
|
4311
|
+
],
|
|
4312
|
+
"examples": [
|
|
4313
|
+
"// Basic usage with folders and files\nconst items: DialFile[] = [\n {\n path: '/documents',\n name: 'Documents',\n nodeType: DialFileNodeType.FOLDER,\n items: [\n {\n path: '/documents/file.txt',\n name: 'file.txt',\n nodeType: DialFileNodeType.FILE,\n },\n ],\n },\n];\n\n<DialFoldersTree items={items} showFiles />\n\n// With expanded and selected items\nconst expandedPaths = new Set(['/documents']);\n\n<DialFoldersTree\n items={items}\n expandedPaths={expandedPaths}\n selectedPath=\"/documents/file.txt\"\n onItemClick={(item) => console.log('Clicked:', item.path)}\n/>\n\n// With inline renaming and validation\n<DialFoldersTree\n items={items}\n renamedPath=\"/documents\"\n onRenameValidate={(value) => (value.trim() ? null : 'Name cannot be empty')}\n onRenameSave={(newValue) => console.log('Saved new name:', newValue)}\n onRenameCancel={() => console.log('Edit cancelled')}\n/>\n\n// With custom empty state and context menu\nconst getContextMenuItems = (item: DialFile): DropdownItem[] => [\n { key: 'rename', label: 'Rename' },\n { key: 'delete', label: 'Delete', danger: true },\n];\n\n<DialFoldersTree\n items={[]}\n emptyStateTitle=\"No Content\"\n emptyStateDescription=\"Upload files or create a new folder to get started.\"\n emptyStateIcon={<IconFolderPlus />}\n getContextMenuItems={getContextMenuItems}\n/>"
|
|
4314
|
+
],
|
|
4315
|
+
"sourceFile": "components/FileManager/components/FoldersTree/FoldersTree.tsx"
|
|
4316
|
+
},
|
|
3963
4317
|
{
|
|
3964
4318
|
"name": "DialSchemaRenderer",
|
|
3965
4319
|
"category": "Name",
|
|
@@ -4086,6 +4440,40 @@
|
|
|
4086
4440
|
}
|
|
4087
4441
|
],
|
|
4088
4442
|
"types": [
|
|
4443
|
+
{
|
|
4444
|
+
"name": "AnalyticsBarColorStop",
|
|
4445
|
+
"kind": "interface",
|
|
4446
|
+
"members": [
|
|
4447
|
+
{
|
|
4448
|
+
"name": "from",
|
|
4449
|
+
"value": "number"
|
|
4450
|
+
},
|
|
4451
|
+
{
|
|
4452
|
+
"name": "to",
|
|
4453
|
+
"value": "number"
|
|
4454
|
+
},
|
|
4455
|
+
{
|
|
4456
|
+
"name": "color",
|
|
4457
|
+
"value": "string"
|
|
4458
|
+
}
|
|
4459
|
+
],
|
|
4460
|
+
"sourceFile": "models/analytics.ts"
|
|
4461
|
+
},
|
|
4462
|
+
{
|
|
4463
|
+
"name": "AnalyticsCardCompareItem",
|
|
4464
|
+
"kind": "interface",
|
|
4465
|
+
"members": [
|
|
4466
|
+
{
|
|
4467
|
+
"name": "title",
|
|
4468
|
+
"value": "ReactNode"
|
|
4469
|
+
},
|
|
4470
|
+
{
|
|
4471
|
+
"name": "value",
|
|
4472
|
+
"value": "ReactNode"
|
|
4473
|
+
}
|
|
4474
|
+
],
|
|
4475
|
+
"sourceFile": "models/analytics.ts"
|
|
4476
|
+
},
|
|
4089
4477
|
{
|
|
4090
4478
|
"name": "FileManagerGridRow",
|
|
4091
4479
|
"kind": "interface",
|
|
@@ -4429,6 +4817,21 @@
|
|
|
4429
4817
|
],
|
|
4430
4818
|
"sourceFile": "types/tab.ts"
|
|
4431
4819
|
},
|
|
4820
|
+
{
|
|
4821
|
+
"name": "TabView",
|
|
4822
|
+
"kind": "enum",
|
|
4823
|
+
"members": [
|
|
4824
|
+
{
|
|
4825
|
+
"name": "Default",
|
|
4826
|
+
"value": "'default'"
|
|
4827
|
+
},
|
|
4828
|
+
{
|
|
4829
|
+
"name": "Inline",
|
|
4830
|
+
"value": "'inline'"
|
|
4831
|
+
}
|
|
4832
|
+
],
|
|
4833
|
+
"sourceFile": "types/tab.ts"
|
|
4834
|
+
},
|
|
4432
4835
|
{
|
|
4433
4836
|
"name": "DialBreadcrumbPathItem",
|
|
4434
4837
|
"kind": "interface",
|
|
@@ -4802,6 +5205,10 @@
|
|
|
4802
5205
|
"name": "label",
|
|
4803
5206
|
"value": "string"
|
|
4804
5207
|
},
|
|
5208
|
+
{
|
|
5209
|
+
"name": "labelNode?",
|
|
5210
|
+
"value": "ReactNode"
|
|
5211
|
+
},
|
|
4805
5212
|
{
|
|
4806
5213
|
"name": "description?",
|
|
4807
5214
|
"value": "string"
|
|
@@ -4821,6 +5228,29 @@
|
|
|
4821
5228
|
],
|
|
4822
5229
|
"sourceFile": "models/select.ts"
|
|
4823
5230
|
},
|
|
5231
|
+
{
|
|
5232
|
+
"name": "SegmentedControlOption",
|
|
5233
|
+
"kind": "interface",
|
|
5234
|
+
"members": [
|
|
5235
|
+
{
|
|
5236
|
+
"name": "value",
|
|
5237
|
+
"value": "T"
|
|
5238
|
+
},
|
|
5239
|
+
{
|
|
5240
|
+
"name": "label?",
|
|
5241
|
+
"value": "ReactNode"
|
|
5242
|
+
},
|
|
5243
|
+
{
|
|
5244
|
+
"name": "icon?",
|
|
5245
|
+
"value": "ReactNode"
|
|
5246
|
+
},
|
|
5247
|
+
{
|
|
5248
|
+
"name": "disabled?",
|
|
5249
|
+
"value": "boolean"
|
|
5250
|
+
}
|
|
5251
|
+
],
|
|
5252
|
+
"sourceFile": "models/segmented-control.ts"
|
|
5253
|
+
},
|
|
4824
5254
|
{
|
|
4825
5255
|
"name": "TabModel",
|
|
4826
5256
|
"kind": "interface",
|
|
@@ -5236,6 +5666,10 @@
|
|
|
5236
5666
|
{
|
|
5237
5667
|
"name": "'dial:resource'?",
|
|
5238
5668
|
"value": "boolean"
|
|
5669
|
+
},
|
|
5670
|
+
{
|
|
5671
|
+
"name": "acceptableResourceTypes?",
|
|
5672
|
+
"value": "string[]"
|
|
5239
5673
|
}
|
|
5240
5674
|
],
|
|
5241
5675
|
"sourceFile": "components/SchemaRenderer/types.ts"
|
|
@@ -5257,6 +5691,11 @@
|
|
|
5257
5691
|
}
|
|
5258
5692
|
],
|
|
5259
5693
|
"hooks": [
|
|
5694
|
+
{
|
|
5695
|
+
"name": "AnalyticsCardVariant",
|
|
5696
|
+
"sourceFile": "types/analytics.ts",
|
|
5697
|
+
"signature": "enum AnalyticsCardVariant { Default = 'default', Compact = 'compact' }"
|
|
5698
|
+
},
|
|
5260
5699
|
{
|
|
5261
5700
|
"name": "useDialFileManagerTabs",
|
|
5262
5701
|
"sourceFile": "components/FileManager/hooks/use-file-manager-tabs.tsx",
|
package/dist/dial-ui-kit.cjs.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("./index-Bl2M9QgI.cjs");exports.AnalyticsCardVariant=a.AnalyticsCardVariant;exports.BASE_ICON_PROPS=a.BASE_ICON_PROPS;exports.BASE_ICON_SIZE=a.BASE_ICON_SIZE;exports.ButtonAppearance=a.ButtonAppearance;exports.ButtonVariant=a.ButtonVariant;exports.ConfirmationPopupVariant=a.ConfirmationPopupVariant;exports.DEFAULT_ANALYTICS_BAR_COLOR_MAP=a.DEFAULT_ANALYTICS_BAR_COLOR_MAP;exports.DIAL_ICON_SIZE=a.DIAL_ICON_SIZE;exports.DialAccordion=a.DialAccordion;exports.DialAnalyticsBar=a.DialAnalyticsBar;exports.DialAnalyticsBarGroup=a.DialAnalyticsBarGroup;exports.DialAnalyticsCard=a.DialAnalyticsCard;exports.DialAnalyticsErrorTag=a.DialAnalyticsErrorTag;exports.DialAnalyticsHistogram=a.DialAnalyticsHistogram;exports.DialAutocompleteInputValue=a.DialAutocompleteInputValue;exports.DialBreadcrumb=a.DialBreadcrumb;exports.DialBreadcrumbItem=a.DialBreadcrumbItem;exports.DialButton=a.DialButton;exports.DialButtonDropdown=a.DialButtonDropdown;exports.DialCaptionText=a.DialCaptionText;exports.DialCheckbox=a.DialCheckbox;exports.DialCloseButton=a.DialCloseButton;exports.DialCollapsibleSidebar=a.DialCollapsibleSidebar;exports.DialConditionalResizableContainer=a.DialConditionalResizableContainer;exports.DialConfirmationPopup=a.DialConfirmationPopup;exports.DialDangerButton=a.DialDangerButton;exports.DialDangerIconButton=a.DialDangerIconButton;exports.DialDestinationFolderPopup=a.DialDestinationFolderPopup;exports.DialDraggableItem=a.DialDraggableItem;exports.DialDropdown=a.DialDropdown;exports.DialDropdownIcon=a.DialDropdownIcon;exports.DialEllipsisTooltip=a.DialEllipsisTooltip;exports.DialErrorText=a.DialErrorText;exports.DialFabButton=a.DialFabButton;exports.DialFileIcon=a.DialFileIcon;exports.DialFileManager=a.DialFileManager;exports.DialFileManagerActions=a.DialFileManagerActions;exports.DialFileManagerTabs=a.DialFileManagerTabs;exports.DialFileName=a.DialFileName;exports.DialFileNodeType=a.DialFileNodeType;exports.DialFilePermission=a.DialFilePermission;exports.DialFileResourceType=a.DialFileResourceType;exports.DialFolderName=a.DialFolderName;exports.DialFoldersTree=a.DialFoldersTree;exports.DialFormItem=a.DialFormItem;exports.DialFormPopup=a.DialFormPopup;exports.DialGhostButton=a.DialGhostButton;exports.DialGhostIconButton=a.DialGhostIconButton;exports.DialGrid=a.DialGrid;exports.DialIcon=a.DialIcon;exports.DialIconButton=a.DialIconButton;exports.DialInput=a.DialInput;exports.DialInputPopup=a.DialInputPopup;exports.DialItemType=a.DialItemType;exports.DialLabel=a.DialLabel;exports.DialLabelledText=a.DialLabelledText;exports.DialLinkButton=a.DialLinkButton;exports.DialLoadFileArea=a.DialLoadFileArea;exports.DialLoadFileAreaField=a.DialLoadFileAreaField;exports.DialLoader=a.DialLoader;exports.DialNeutralButton=a.DialNeutralButton;exports.DialNeutralIconButton=a.DialNeutralIconButton;exports.DialNoDataContent=a.DialNoDataContent;exports.DialNotification=a.DialNotification;exports.DialNumberInput=a.DialNumberInput;exports.DialPagination=a.DialPagination;exports.DialPasswordInput=a.DialPasswordInput;exports.DialPopup=a.DialPopup;exports.DialPrimaryButton=a.DialPrimaryButton;exports.DialPrimaryIconButton=a.DialPrimaryIconButton;exports.DialProgressBar=a.DialProgressBar;exports.DialProgressBarSize=a.DialProgressBarSize;exports.DialRadioButton=a.DialRadioButton;exports.DialRadioGroup=a.DialRadioGroup;exports.DialRadioGroupPopupField=a.DialRadioGroupPopupField;exports.DialRemoveButton=a.DialRemoveButton;exports.DialResizableContainer=a.DialResizableContainer;exports.DialRoundedButton=a.DialRoundedButton;exports.DialSchemaRenderer=a.DialSchemaRenderer;exports.DialSearch=a.DialSearch;exports.DialSecondaryIconButton=a.DialSecondaryIconButton;exports.DialSegmentedControl=a.DialSegmentedControl;exports.DialSelect=a.DialSelect;exports.DialSelectField=a.DialSelectField;exports.DialSharedEntityIndicator=a.DialSharedEntityIndicator;exports.DialSkeleton=a.DialSkeleton;exports.DialSkeletonAvatarShape=a.DialSkeletonAvatarShape;exports.DialSkeletonAvatarSize=a.DialSkeletonAvatarSize;exports.DialSkeletonVariant=a.DialSkeletonVariant;exports.DialSlider=a.DialSlider;exports.DialSpinner=a.DialSpinner;exports.DialSteps=a.DialSteps;exports.DialSuccessIconButton=a.DialSuccessIconButton;exports.DialSwitch=a.DialSwitch;exports.DialTabs=a.DialTabs;exports.DialTag=a.DialTag;exports.DialTagInput=a.DialTagInput;exports.DialTertiaryIconButton=a.DialTertiaryIconButton;exports.DialTextarea=a.DialTextarea;exports.DialTooltip=a.DialTooltip;exports.DropdownItemType=a.DropdownItemType;exports.DropdownTrigger=a.DropdownTrigger;exports.DropdownType=a.DropdownType;exports.ElementSize=a.ElementSize;exports.FileManagerColumnKey=a.FileManagerColumnKey;exports.FileManagerProvider=a.FileManagerProvider;exports.FlexibleActionsDirection=a.FlexibleActionsDirection;exports.FormItemOrientation=a.FormItemOrientation;exports.GridSelectionMode=a.GridSelectionMode;exports.JsonSchemaType=a.JsonSchemaType;exports.LazyDialJsonEditor=a.LazyDialJsonEditor;exports.LazyDialMarkdownEditor=a.LazyDialMarkdownEditor;exports.NAME_COLUMN=a.NAME_COLUMN;exports.NOT_ALLOWED_SPACES=a.NOT_ALLOWED_SPACES;exports.NOT_ALLOWED_SPACES_REGEXP=a.NOT_ALLOWED_SPACES_REGEXP;exports.NOT_ALLOWED_SYMBOLS=a.NOT_ALLOWED_SYMBOLS;exports.NOT_ALLOWED_SYMBOLS_REGEXP=a.NOT_ALLOWED_SYMBOLS_REGEXP;exports.NotificationVariant=a.NotificationVariant;exports.PopupSize=a.PopupSize;exports.RadioGroupOrientation=a.RadioGroupOrientation;exports.ResizableContainerSide=a.ResizableContainerSide;exports.SIZE_COLUMN=a.SIZE_COLUMN;exports.SchemaDisplayMode=a.SchemaDisplayMode;exports.SchemaOrientation=a.SchemaOrientation;exports.SchemaRendererVariant=a.SchemaRendererVariant;exports.SelectSize=a.SelectSize;exports.SelectVariant=a.SelectVariant;exports.StepStatus=a.StepStatus;exports.TabOrientation=a.TabOrientation;exports.TabView=a.TabView;exports.UPDATED_AT_COLUMN=a.UPDATED_AT_COLUMN;exports.mergeClasses=a.mergeClasses;exports.useDialFileManagerTabs=a.useDialFileManagerTabs;exports.useEditableItem=a.useEditableItem;exports.useFileManagerContext=a.useFileManagerContext;exports.wrapInRootFolder=a.wrapInRootFolder;
|