@epam/ai-dial-ui-kit 0.11.0-dev.8 → 0.11.1
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 +62 -0
- package/dist/{JsonEditor-O9rhy9nC.cjs → JsonEditor-DXjZmR_y.cjs} +1 -1
- package/dist/{JsonEditor-wn-pI9Zq.js → JsonEditor-DmQjahdQ.js} +1 -1
- package/dist/{MarkdownEditor-CTu9xh7q.js → MarkdownEditor-BRvU8Bbp.js} +1 -1
- package/dist/{MarkdownEditor-BKIxg06_.cjs → MarkdownEditor-CN5ZmbT1.cjs} +1 -1
- package/dist/components-manifest.json +176 -52
- package/dist/dial-ui-kit.cjs.js +1 -1
- package/dist/dial-ui-kit.es.js +47 -47
- package/dist/index-C2evxw2N.cjs +71 -0
- package/dist/{index-B3R7eB3W.js → index-DpHRAg-m.js} +10372 -10004
- package/dist/index.css +2 -2
- package/dist/mcp-server.cjs +115 -0
- package/dist/migration-guides/0.11.0/dropdown-menu-prop-flatten.md +78 -0
- package/dist/migration-guides/README.md +21 -0
- package/dist/migration-guides/_template.md +54 -0
- package/dist/src/components/Breadcrumb/constants.d.ts +3 -3
- package/dist/src/components/ConfirmationPopup/constants.d.ts +1 -1
- package/dist/src/components/Dropdown/Dropdown.d.ts +6 -9
- package/dist/src/components/DropdownIcon/DropdownIcon.d.ts +4 -5
- package/dist/src/components/FileManager/FileManager.d.ts +4 -0
- package/dist/src/components/FileManager/FileManagerContext.d.ts +3 -0
- package/dist/src/components/FileManager/components/DestinationFolderPopup/DestinationFolderPopup.d.ts +5 -0
- package/dist/src/components/FileManager/utils.d.ts +1 -0
- package/dist/src/components/Input/Button/InputButton.d.ts +1 -0
- package/dist/src/components/LoadFileArea/FilledDropZone.d.ts +14 -0
- package/dist/src/components/Notification/Notification.d.ts +6 -4
- package/dist/src/components/Notification/constants.d.ts +1 -1
- package/dist/src/components/Pagination/utils.d.ts +5 -1
- package/dist/src/components/Search/Search.d.ts +2 -0
- package/dist/src/components/Search/constants.d.ts +8 -16
- package/dist/src/components/Skeleton/Skeleton.d.ts +4 -0
- package/dist/src/components/Slider/Slider.d.ts +53 -0
- package/dist/src/components/Tag/Tag.d.ts +17 -27
- package/dist/src/hooks/use-editable-item.d.ts +4 -0
- package/dist/src/index.d.ts +2 -1
- package/dist/src/types/size.d.ts +2 -1
- package/package.json +17 -15
- package/dist/index-B2c6-Mza.cjs +0 -71
- package/dist/src/components/Tag/constants.d.ts +0 -3
- package/dist/src/types/tag.d.ts +0 -3
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `@epam/ai-dial-ui-kit` are documented here.
|
|
4
|
+
|
|
5
|
+
This file follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) conventions.
|
|
6
|
+
Versions match the git tags on the `development` branch.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## [Unreleased]
|
|
11
|
+
|
|
12
|
+
_No unreleased changes yet._
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## [0.11.0]
|
|
17
|
+
|
|
18
|
+
### Breaking Changes
|
|
19
|
+
|
|
20
|
+
- **`DialDropdown` — `menu` prop removed, flat props added** — The nested `menu: { items, onClick, header, footer }` prop has been replaced with four top-level props: `items`, `onItemClick`, `menuHeader`, `menuFooter`. `DropdownMenuProps` is no longer exported. `DialDropdownIcon` is updated the same way — its `menu` prop is gone; pass `items` (and optionally `onItemClick`, `menuHeader`, `menuFooter`) directly.
|
|
21
|
+
See [migration guide](migration-guides/0.11.0/dropdown-menu-prop-flatten.md).
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## [0.10.0]
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
## Format guide
|
|
30
|
+
|
|
31
|
+
Each version section may contain these subsections (only include non-empty ones):
|
|
32
|
+
|
|
33
|
+
### Breaking Changes
|
|
34
|
+
|
|
35
|
+
> What changed, what it changed **from → to**, and **why**.
|
|
36
|
+
> Every breaking change must have a corresponding migration guide linked below.
|
|
37
|
+
|
|
38
|
+
- **`ComponentName` prop renamed** — `oldProp` → `newProp` to align with HTML semantics. See [migration guide](migration-guides/0.x.0/component-name-prop-rename.md).
|
|
39
|
+
|
|
40
|
+
### Added
|
|
41
|
+
|
|
42
|
+
- Short description of new feature or component.
|
|
43
|
+
|
|
44
|
+
### Changed
|
|
45
|
+
|
|
46
|
+
- Backwards-compatible changes to existing behavior or API.
|
|
47
|
+
|
|
48
|
+
### Deprecated
|
|
49
|
+
|
|
50
|
+
- Features that will be removed in a future version; include the planned removal version.
|
|
51
|
+
|
|
52
|
+
### Removed
|
|
53
|
+
|
|
54
|
+
- Features removed in this release (non-breaking removals, e.g. internal APIs).
|
|
55
|
+
|
|
56
|
+
### Fixed
|
|
57
|
+
|
|
58
|
+
- Bug fixes.
|
|
59
|
+
|
|
60
|
+
### Security
|
|
61
|
+
|
|
62
|
+
- Vulnerability patches.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const l=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const l=require("./index-C2evxw2N.cjs"),o=require("./editor-Ba3vCFHk.cjs"),u=require("@monaco-editor/react"),c={[o.EditorThemes.dark]:{base:"vs-dark",inherit:!1,rules:[{token:"string.key.json",foreground:"#37BABC"},{token:"string.value.json",foreground:"#5C8DEA"},{token:"number",foreground:"#D97C27"},{token:"keyword.json",foreground:"#F4CE46"},{token:"delimiter",foreground:"#EEF1F7"},{token:"delimiter.bracket.json",foreground:"#A972FF"},{token:"delimiter.parenthesis",foreground:"#A972FF"}],colors:{"editor.foreground":"#F76464","editor.background":"#161B2D","editorCursor.foreground":"#EEF1F7","editor.selectionBackground":"#5C8DEA2B","editorLineNumber.foreground":"#242C42","scrollbarSlider.background":"#242C42","scrollbarSlider.hoverBackground":"#242C42","scrollbarSlider.activeBackground":"#242C42"}},[o.EditorThemes.light]:{base:"vs",inherit:!1,rules:[{token:"string.key.json",foreground:"#009D9F"},{token:"string.value.json",foreground:"#2764D9"},{token:"number",foreground:"#B25500"},{token:"keyword.json",foreground:"#3F3D25"},{token:"delimiter",foreground:"#161B2D"},{token:"delimiter.bracket.json",foreground:"#7E39EC"},{token:"delimiter.parenthesis",foreground:"#7E39EC"}],colors:{"editor.foreground":"#AE2F2F","editor.background":"#EEF1F7","editorCursor.foreground":"#161B2D","editor.selectionBackground":"#5C8DEA2B","editorLineNumber.foreground":"#242C42","scrollbarSlider.background":"#242C42","scrollbarSlider.hoverBackground":"#242C42","scrollbarSlider.activeBackground":"#242C42"}}},g=({value:t,onChange:n,onValidateJSON:i,options:s,currentTheme:e,themesConfig:d=c})=>{function a(r){r?.editor?.defineTheme(e,d[e]),r.languages.json.jsonDefaults.setDiagnosticsOptions({validate:!0,enableSchemaRequest:!1,schemas:[{uri:"http://custom-schema/object-required.json",fileMatch:["*"],schema:{type:"object",description:"Top-level value must be an object",additionalProperties:!0}}]})}return l.jsxRuntimeExports.jsx(u.Editor,{beforeMount:a,height:"100%",defaultLanguage:"json",value:t,onChange:n,theme:e,onValidate:i,options:{minimap:{enabled:!1},formatOnType:!0,formatOnPaste:!0,selectOnLineNumbers:!1,automaticLayout:!0,scrollBeyondLastLine:!1,wordWrap:"on",smoothScrolling:!0,overviewRulerLanes:0,scrollbar:{horizontal:"hidden",verticalScrollbarSize:4,verticalSliderSize:4},...s??{}}})};exports.DialJsonEditor=g;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-C2evxw2N.cjs"),c=require("@uiw/react-md-editor"),x=require("./editor-Ba3vCFHk.cjs"),m=({value:t,onChange:r,height:s=300,preview:i="edit",theme:n=x.EditorThemes.dark,className:d,placeholder:o})=>{const a=o!==void 0&&!t;return e.jsxRuntimeExports.jsxs("div",{"data-color-mode":n,className:e.mergeClasses("relative",d),children:[e.jsxRuntimeExports.jsx(c,{value:t,onChange:l=>r?.(l||""),height:s,preview:i}),a&&e.jsxRuntimeExports.jsx("div",{className:"pointer-events-none absolute left-0 top-8 px-2 dial-small-text text-secondary opacity-40",children:o})]})};exports.DialMarkdownEditor=m;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.11.
|
|
3
|
-
"generatedAt": "2026-
|
|
2
|
+
"version": "0.11.1",
|
|
3
|
+
"generatedAt": "2026-06-20T10:48:37.843Z",
|
|
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",
|
|
@@ -152,6 +152,13 @@
|
|
|
152
152
|
"defaultValue": "2",
|
|
153
153
|
"description": "Stroke width of the icon displayed in the alert"
|
|
154
154
|
},
|
|
155
|
+
{
|
|
156
|
+
"name": "textClassName",
|
|
157
|
+
"type": "string",
|
|
158
|
+
"required": false,
|
|
159
|
+
"defaultValue": "'flex-col'",
|
|
160
|
+
"description": "Additional CSS classes applied to the message text"
|
|
161
|
+
},
|
|
155
162
|
{
|
|
156
163
|
"name": "onClose",
|
|
157
164
|
"type": "(e: MouseEvent<HTMLButtonElement>) => void",
|
|
@@ -160,7 +167,7 @@
|
|
|
160
167
|
}
|
|
161
168
|
],
|
|
162
169
|
"examples": [
|
|
163
|
-
"<
|
|
170
|
+
"<DialNotification\n variant={NotificationVariant.Info}\n message=\"This is an info alert.\"\n/>\n\n<DialNotification\n variant={NotificationVariant.Success}\n title=\"Saved\"\n message=\"Changes saved successfully.\"\n/>\n\n<DialNotification\n variant={NotificationVariant.Error}\n closable\n message=\"Something went wrong.\"\n onClose={(e) => console.log('closed', e)}\n/>\n\n<DialNotification\n variant={NotificationVariant.Loading}\n title=\"Processing\"\n message=\"Please wait...\"\n/>"
|
|
164
171
|
],
|
|
165
172
|
"sourceFile": "components/Notification/Notification.tsx"
|
|
166
173
|
},
|
|
@@ -217,7 +224,7 @@
|
|
|
217
224
|
"name": "size",
|
|
218
225
|
"type": "number",
|
|
219
226
|
"required": false,
|
|
220
|
-
"defaultValue": "
|
|
227
|
+
"defaultValue": "40"
|
|
221
228
|
},
|
|
222
229
|
{
|
|
223
230
|
"name": "className",
|
|
@@ -585,6 +592,93 @@
|
|
|
585
592
|
],
|
|
586
593
|
"sourceFile": "components/RadioGroup/RadioGroup.tsx"
|
|
587
594
|
},
|
|
595
|
+
{
|
|
596
|
+
"name": "DialSlider",
|
|
597
|
+
"category": "Form",
|
|
598
|
+
"description": "A range slider with a custom thumb showing the current value and optional labels.\naliases: RangeInput|TemperatureSlider",
|
|
599
|
+
"props": [
|
|
600
|
+
{
|
|
601
|
+
"name": "value",
|
|
602
|
+
"type": "number",
|
|
603
|
+
"required": true,
|
|
604
|
+
"description": "Current slider value"
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"name": "min",
|
|
608
|
+
"type": "number",
|
|
609
|
+
"required": false,
|
|
610
|
+
"defaultValue": "0",
|
|
611
|
+
"description": "Minimum value"
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"name": "max",
|
|
615
|
+
"type": "number",
|
|
616
|
+
"required": false,
|
|
617
|
+
"defaultValue": "1",
|
|
618
|
+
"description": "Maximum value"
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"name": "step",
|
|
622
|
+
"type": "number",
|
|
623
|
+
"required": false,
|
|
624
|
+
"defaultValue": "0.1",
|
|
625
|
+
"description": "Step increment"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"name": "disabled",
|
|
629
|
+
"type": "boolean",
|
|
630
|
+
"required": false,
|
|
631
|
+
"defaultValue": "false",
|
|
632
|
+
"description": "Disables interaction"
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
"name": "labels",
|
|
636
|
+
"type": "[string, string] | [string, string, string]",
|
|
637
|
+
"required": false,
|
|
638
|
+
"description": "2 or 3 strings rendered below the track (start, [middle,] end)"
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
"name": "formatValue",
|
|
642
|
+
"type": "(value: number) => string",
|
|
643
|
+
"required": false,
|
|
644
|
+
"description": "Custom value formatter for the thumb display"
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
"name": "onChange",
|
|
648
|
+
"type": "(value: number) => void",
|
|
649
|
+
"required": false,
|
|
650
|
+
"description": "Callback fired with the new value on interaction"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"name": "trackClassName",
|
|
654
|
+
"type": "string",
|
|
655
|
+
"required": false,
|
|
656
|
+
"description": "Additional CSS classes for the track bar"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"name": "fillClassName",
|
|
660
|
+
"type": "string",
|
|
661
|
+
"required": false,
|
|
662
|
+
"description": "Additional CSS classes for the fill portion of the track"
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"name": "thumbClassName",
|
|
666
|
+
"type": "string",
|
|
667
|
+
"required": false,
|
|
668
|
+
"description": "Additional CSS classes for the thumb circle"
|
|
669
|
+
},
|
|
670
|
+
{
|
|
671
|
+
"name": "labelsClassName",
|
|
672
|
+
"type": "string",
|
|
673
|
+
"required": false,
|
|
674
|
+
"description": "Additional CSS classes for the labels row"
|
|
675
|
+
}
|
|
676
|
+
],
|
|
677
|
+
"examples": [
|
|
678
|
+
"<DialSlider\n value={0.5}\n min={0}\n max={1}\n step={0.1}\n labels={['Precise', 'Neutral', 'Creative']}\n aria-label=\"Temperature\"\n onChange={(v) => console.log(v)}\n/>"
|
|
679
|
+
],
|
|
680
|
+
"sourceFile": "components/Slider/Slider.tsx"
|
|
681
|
+
},
|
|
588
682
|
{
|
|
589
683
|
"name": "DialNoDataContent",
|
|
590
684
|
"category": "Feedback",
|
|
@@ -755,51 +849,46 @@
|
|
|
755
849
|
},
|
|
756
850
|
{
|
|
757
851
|
"name": "DialTag",
|
|
758
|
-
"category": "
|
|
759
|
-
"description": "A
|
|
852
|
+
"category": "Tag",
|
|
853
|
+
"description": "A compact label element used for selections, filters, or categories.",
|
|
760
854
|
"props": [
|
|
761
855
|
{
|
|
762
|
-
"name": "
|
|
856
|
+
"name": "label",
|
|
763
857
|
"type": "string",
|
|
764
|
-
"required": true
|
|
765
|
-
"description": "The text label displayed inside the tag."
|
|
858
|
+
"required": true
|
|
766
859
|
},
|
|
767
860
|
{
|
|
768
861
|
"name": "className",
|
|
769
862
|
"type": "string",
|
|
770
|
-
"required": false
|
|
771
|
-
"description": "Optional additional CSS classes applied to the tag container."
|
|
772
|
-
},
|
|
773
|
-
{
|
|
774
|
-
"name": "remove",
|
|
775
|
-
"type": "(event: MouseEvent<HTMLButtonElement>) => void",
|
|
776
|
-
"required": false,
|
|
777
|
-
"description": "Optional callback invoked when the remove button is clicked.\n If not provided, the remove button will not be rendered."
|
|
863
|
+
"required": false
|
|
778
864
|
},
|
|
779
865
|
{
|
|
780
|
-
"name": "
|
|
781
|
-
"type": "
|
|
782
|
-
"required": false
|
|
783
|
-
"defaultValue": "TagVariant.Default",
|
|
784
|
-
"description": "Visual style of the tag. Uses the enum."
|
|
866
|
+
"name": "selected",
|
|
867
|
+
"type": "boolean",
|
|
868
|
+
"required": false
|
|
785
869
|
},
|
|
786
870
|
{
|
|
787
|
-
"name": "
|
|
871
|
+
"name": "icon",
|
|
788
872
|
"type": "ReactNode",
|
|
789
|
-
"required": false
|
|
790
|
-
"description": "Optional icon or element to display before the tag text."
|
|
873
|
+
"required": false
|
|
791
874
|
},
|
|
792
875
|
{
|
|
793
|
-
"name": "
|
|
876
|
+
"name": "closable",
|
|
794
877
|
"type": "boolean",
|
|
795
|
-
"required": false
|
|
796
|
-
|
|
797
|
-
|
|
878
|
+
"required": false
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
"name": "onClick",
|
|
882
|
+
"type": "(event: MouseEvent<HTMLDivElement>) => void",
|
|
883
|
+
"required": false
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
"name": "onRemove",
|
|
887
|
+
"type": "(event: MouseEvent<HTMLButtonElement>) => void",
|
|
888
|
+
"required": false
|
|
798
889
|
}
|
|
799
890
|
],
|
|
800
|
-
"examples": [
|
|
801
|
-
"<DialTag\n tag=\"React\"\n variant={TagVariant.Default}\n remove={() => console.log('Tag removed')}\n/>"
|
|
802
|
-
],
|
|
891
|
+
"examples": [],
|
|
803
892
|
"sourceFile": "components/Tag/Tag.tsx"
|
|
804
893
|
},
|
|
805
894
|
{
|
|
@@ -1376,6 +1465,18 @@
|
|
|
1376
1465
|
"type": "string | number",
|
|
1377
1466
|
"required": false,
|
|
1378
1467
|
"description": "Height of the skeleton"
|
|
1468
|
+
},
|
|
1469
|
+
{
|
|
1470
|
+
"name": "overlay",
|
|
1471
|
+
"type": "ReactNode",
|
|
1472
|
+
"required": false,
|
|
1473
|
+
"description": "Content to overlay on top of the skeleton (e.g., a spinner)"
|
|
1474
|
+
},
|
|
1475
|
+
{
|
|
1476
|
+
"name": "color",
|
|
1477
|
+
"type": "string",
|
|
1478
|
+
"required": false,
|
|
1479
|
+
"description": "Custom background color for the skeleton elements (overrides the default token)"
|
|
1379
1480
|
}
|
|
1380
1481
|
],
|
|
1381
1482
|
"examples": [
|
|
@@ -2583,6 +2684,12 @@
|
|
|
2583
2684
|
"category": "Elements",
|
|
2584
2685
|
"description": "A search input component with a customizable placeholder, icons, flexible props, and the ability\naliases: SearchField|QueryInput\n\nto clear the input value via a clear button. Supports multiple sizes for flexible layouts.",
|
|
2585
2686
|
"props": [
|
|
2687
|
+
{
|
|
2688
|
+
"name": "withoutBorder",
|
|
2689
|
+
"type": "boolean",
|
|
2690
|
+
"required": false,
|
|
2691
|
+
"description": "If true, the search input will be rendered without a border."
|
|
2692
|
+
},
|
|
2586
2693
|
{
|
|
2587
2694
|
"name": "size",
|
|
2588
2695
|
"type": "ElementSize",
|
|
@@ -3168,8 +3275,23 @@
|
|
|
3168
3275
|
"required": true
|
|
3169
3276
|
},
|
|
3170
3277
|
{
|
|
3171
|
-
"name": "
|
|
3172
|
-
"type": "
|
|
3278
|
+
"name": "items",
|
|
3279
|
+
"type": "DropdownItem[]",
|
|
3280
|
+
"required": false
|
|
3281
|
+
},
|
|
3282
|
+
{
|
|
3283
|
+
"name": "onItemClick",
|
|
3284
|
+
"type": "(info: { key: string; domEvent: MouseEvent }) => void",
|
|
3285
|
+
"required": false
|
|
3286
|
+
},
|
|
3287
|
+
{
|
|
3288
|
+
"name": "menuHeader",
|
|
3289
|
+
"type": "ReactNode | (() => ReactNode)",
|
|
3290
|
+
"required": false
|
|
3291
|
+
},
|
|
3292
|
+
{
|
|
3293
|
+
"name": "menuFooter",
|
|
3294
|
+
"type": "ReactNode | (() => ReactNode)",
|
|
3173
3295
|
"required": false
|
|
3174
3296
|
},
|
|
3175
3297
|
{
|
|
@@ -3290,12 +3412,6 @@
|
|
|
3290
3412
|
"category": "Dropdown",
|
|
3291
3413
|
"description": "A compact icon trigger with a dropdown menu.\naliases: ModelPicker|IconMenu|AvatarDropdown",
|
|
3292
3414
|
"props": [
|
|
3293
|
-
{
|
|
3294
|
-
"name": "menu",
|
|
3295
|
-
"type": "DropdownMenuProps",
|
|
3296
|
-
"required": true,
|
|
3297
|
-
"description": "Dropdown menu definition."
|
|
3298
|
-
},
|
|
3299
3415
|
{
|
|
3300
3416
|
"name": "icon",
|
|
3301
3417
|
"type": "ReactNode",
|
|
@@ -3349,7 +3465,7 @@
|
|
|
3349
3465
|
}
|
|
3350
3466
|
],
|
|
3351
3467
|
"examples": [
|
|
3352
|
-
"<DialDropdownIcon\n ariaLabel=\"Select model\"\n icon={<IconBrandOpenai size={18} />}\n
|
|
3468
|
+
"<DialDropdownIcon\n ariaLabel=\"Select model\"\n icon={<IconBrandOpenai size={18} />}\n items={items}\n/>"
|
|
3353
3469
|
],
|
|
3354
3470
|
"sourceFile": "components/DropdownIcon/DropdownIcon.tsx"
|
|
3355
3471
|
},
|
|
@@ -3797,11 +3913,26 @@
|
|
|
3797
3913
|
"type": "boolean",
|
|
3798
3914
|
"required": false
|
|
3799
3915
|
},
|
|
3916
|
+
{
|
|
3917
|
+
"name": "showCreateFolderButtonInDestinationPopup",
|
|
3918
|
+
"type": "boolean",
|
|
3919
|
+
"required": false
|
|
3920
|
+
},
|
|
3800
3921
|
{
|
|
3801
3922
|
"name": "autoSelectUploadedItems",
|
|
3802
3923
|
"type": "boolean",
|
|
3803
3924
|
"required": false,
|
|
3804
3925
|
"description": "When true, automatically selects newly uploaded or created items (files, archives, folders) after they appear in the current directory. Useful in attach flows where the user expects immediate selection feedback."
|
|
3926
|
+
},
|
|
3927
|
+
{
|
|
3928
|
+
"name": "maxNewFolderDepth",
|
|
3929
|
+
"type": "number",
|
|
3930
|
+
"required": false
|
|
3931
|
+
},
|
|
3932
|
+
{
|
|
3933
|
+
"name": "onNewFolderDepthExceeded",
|
|
3934
|
+
"type": "() => void",
|
|
3935
|
+
"required": false
|
|
3805
3936
|
}
|
|
3806
3937
|
],
|
|
3807
3938
|
"examples": [
|
|
@@ -4265,20 +4396,13 @@
|
|
|
4265
4396
|
{
|
|
4266
4397
|
"name": "Standard",
|
|
4267
4398
|
"value": "'standard'"
|
|
4268
|
-
}
|
|
4269
|
-
],
|
|
4270
|
-
"sourceFile": "types/size.ts"
|
|
4271
|
-
},
|
|
4272
|
-
{
|
|
4273
|
-
"name": "TagVariant",
|
|
4274
|
-
"kind": "enum",
|
|
4275
|
-
"members": [
|
|
4399
|
+
},
|
|
4276
4400
|
{
|
|
4277
|
-
"name": "
|
|
4278
|
-
"value": "'
|
|
4401
|
+
"name": "Large",
|
|
4402
|
+
"value": "'large'"
|
|
4279
4403
|
}
|
|
4280
4404
|
],
|
|
4281
|
-
"sourceFile": "types/
|
|
4405
|
+
"sourceFile": "types/size.ts"
|
|
4282
4406
|
},
|
|
4283
4407
|
{
|
|
4284
4408
|
"name": "TabOrientation",
|
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-C2evxw2N.cjs");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.DIAL_ICON_SIZE=a.DIAL_ICON_SIZE;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.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.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.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;
|
package/dist/dial-ui-kit.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { B as s, a as e, b as l, c as o, C as t, D as n, d as D, e as r, f as u, g as p, h as S, i as d, k as c, l as I, n as m, o as B, p as b, q as T, r as F, s as E, t as P, u as C, v as L, w as O, x as
|
|
1
|
+
import { B as s, a as e, b as l, c as o, C as t, D as n, d as D, e as r, f as u, g as p, h as S, i as d, k as c, l as I, n as m, o as B, p as b, q as T, r as F, s as E, t as P, u as C, v as L, w as O, x as A, y as N, z as _, A as g, E as M, F as R, G as y, H as h, I as w, J as z, K as G, L as x, M as k, N as V, O as f, P as v, Q as U, R as W, S as Z, T as J, U as X, V as Y, W as K, X as q, Y as H, Z as Q, _ as $, $ as j, a0 as aa, a1 as ia, a2 as sa, a3 as ea, a4 as la, a5 as oa, a6 as ta, a7 as na, a8 as Da, a9 as ra, aa as ua, ab as pa, ac as Sa, ad as da, ae as ca, af as Ia, ag as ma, ah as Ba, ai as ba, aj as Ta, ak as Fa, al as Ea, am as Pa, an as Ca, ao as La, ap as Oa, aq as Aa, ar as Na, as as _a, at as ga, au as Ma, av as Ra, aw as ya, ax as ha, ay as wa, az as za, aA as Ga, aB as xa, aC as ka, aD as Va, aE as fa, aF as va, aG as Ua, aH as Wa, aI as Za, aJ as Ja, aK as Xa, aL as Ya, aM as Ka, aN as qa, aO as Ha, aP as Qa, aQ as $a, aR as ja, aS as ai, aT as ii, aU as si, aV as ei, aW as li, aX as oi, aY as ti, aZ as ni, a_ as Di, a$ as ri, b0 as ui, b1 as pi, b2 as Si, b3 as di, m as ci, b4 as Ii, b5 as mi, b6 as Bi, b7 as bi } from "./index-DpHRAg-m.js";
|
|
2
2
|
export {
|
|
3
3
|
s as BASE_ICON_PROPS,
|
|
4
4
|
e as BASE_ICON_SIZE,
|
|
@@ -24,10 +24,10 @@ export {
|
|
|
24
24
|
C as DialDropdown,
|
|
25
25
|
L as DialDropdownIcon,
|
|
26
26
|
O as DialEllipsisTooltip,
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
A as DialErrorText,
|
|
28
|
+
N as DialFabButton,
|
|
29
|
+
_ as DialFileIcon,
|
|
30
|
+
g as DialFileManager,
|
|
31
31
|
M as DialFileManagerActions,
|
|
32
32
|
R as DialFileManagerTabs,
|
|
33
33
|
y as DialFileName,
|
|
@@ -36,8 +36,8 @@ export {
|
|
|
36
36
|
z as DialFileResourceType,
|
|
37
37
|
G as DialFolderName,
|
|
38
38
|
x as DialFormItem,
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
k as DialFormPopup,
|
|
40
|
+
V as DialGhostButton,
|
|
41
41
|
f as DialGhostIconButton,
|
|
42
42
|
v as DialGrid,
|
|
43
43
|
U as DialIcon,
|
|
@@ -78,47 +78,47 @@ export {
|
|
|
78
78
|
Ca as DialSkeleton,
|
|
79
79
|
La as DialSkeletonAvatarShape,
|
|
80
80
|
Oa as DialSkeletonAvatarSize,
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
Ma as
|
|
86
|
-
Ra as
|
|
87
|
-
ya as
|
|
88
|
-
ha as
|
|
89
|
-
wa as
|
|
90
|
-
za as
|
|
91
|
-
Ga as
|
|
92
|
-
xa as
|
|
81
|
+
Aa as DialSkeletonVariant,
|
|
82
|
+
Na as DialSlider,
|
|
83
|
+
_a as DialSpinner,
|
|
84
|
+
ga as DialSteps,
|
|
85
|
+
Ma as DialSuccessIconButton,
|
|
86
|
+
Ra as DialSwitch,
|
|
87
|
+
ya as DialTabs,
|
|
88
|
+
ha as DialTag,
|
|
89
|
+
wa as DialTagInput,
|
|
90
|
+
za as DialTertiaryIconButton,
|
|
91
|
+
Ga as DialTextarea,
|
|
92
|
+
xa as DialTooltip,
|
|
93
|
+
ka as DropdownItemType,
|
|
93
94
|
Va as DropdownTrigger,
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
Si as TagVariant,
|
|
95
|
+
fa as DropdownType,
|
|
96
|
+
va as ElementSize,
|
|
97
|
+
Ua as FileManagerColumnKey,
|
|
98
|
+
Wa as FileManagerProvider,
|
|
99
|
+
Za as FlexibleActionsDirection,
|
|
100
|
+
Ja as FormItemOrientation,
|
|
101
|
+
Xa as GridSelectionMode,
|
|
102
|
+
Ya as JsonSchemaType,
|
|
103
|
+
Ka as LazyDialJsonEditor,
|
|
104
|
+
qa as LazyDialMarkdownEditor,
|
|
105
|
+
Ha as NAME_COLUMN,
|
|
106
|
+
Qa as NOT_ALLOWED_SPACES,
|
|
107
|
+
$a as NOT_ALLOWED_SPACES_REGEXP,
|
|
108
|
+
ja as NOT_ALLOWED_SYMBOLS,
|
|
109
|
+
ai as NOT_ALLOWED_SYMBOLS_REGEXP,
|
|
110
|
+
ii as NotificationVariant,
|
|
111
|
+
si as PopupSize,
|
|
112
|
+
ei as RadioGroupOrientation,
|
|
113
|
+
li as ResizableContainerSide,
|
|
114
|
+
oi as SIZE_COLUMN,
|
|
115
|
+
ti as SchemaDisplayMode,
|
|
116
|
+
ni as SchemaOrientation,
|
|
117
|
+
Di as SchemaRendererVariant,
|
|
118
|
+
ri as SelectSize,
|
|
119
|
+
ui as SelectVariant,
|
|
120
|
+
pi as StepStatus,
|
|
121
|
+
Si as TabOrientation,
|
|
122
122
|
di as UPDATED_AT_COLUMN,
|
|
123
123
|
ci as mergeClasses,
|
|
124
124
|
Ii as useDialFileManagerTabs,
|