@epam/ai-dial-ui-kit 0.14.0-dev.4 → 0.14.0-dev.5
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/README.md +1 -0
- package/dist/CHANGELOG.md +8 -0
- package/dist/{JsonEditor-CFkmn69x.js → JsonEditor-DrC6i27F.js} +1 -1
- package/dist/{JsonEditor-CPk58Te4.cjs → JsonEditor-dP4yDdgN.cjs} +1 -1
- package/dist/{MarkdownEditor-ALJ17x82.js → MarkdownEditor-BeNDQecT.js} +1 -1
- package/dist/{MarkdownEditor-CqMQgd-3.js → MarkdownEditor-CO-k9xZo.js} +1 -1
- package/dist/{MarkdownEditor-Cz2HKRcy.cjs → MarkdownEditor-CSgVi6EZ.cjs} +1 -1
- package/dist/{MarkdownEditor-DgPlyntV.cjs → MarkdownEditor-fskBDR5e.cjs} +1 -1
- package/dist/components-manifest.json +157 -11
- package/dist/dial-ui-kit.cjs.js +1 -1
- package/dist/dial-ui-kit.es.js +198 -196
- package/dist/{index-CBaBO6e_.cjs → index-DmEajFx0.cjs} +30 -30
- package/dist/{index-BnqboA_3.js → index-jMP1W9V6.js} +7052 -6964
- package/dist/index.css +1 -1
- package/dist/migration-guides/0.14.0/button-tooltip-2-0.md +111 -0
- package/dist/migration-guides/0.14.0/select-multiselect-option-row.md +99 -0
- package/dist/migration-guides/README.md +2 -0
- package/dist/src/components/New/Button/Button.d.ts +4 -3
- package/dist/src/components/New/Checkbox/Checkbox.d.ts +4 -0
- package/dist/src/components/New/Checkbox/CheckboxBox.d.ts +30 -0
- package/dist/src/components/New/Dropdown/constants.d.ts +2 -0
- package/dist/src/components/New/IconButton/IconButton.d.ts +4 -4
- package/dist/src/components/New/Popup/Popup.d.ts +48 -9
- package/dist/src/components/New/Popup/constants.d.ts +7 -0
- package/dist/src/components/New/Select/constants.d.ts +2 -2
- package/dist/src/components/New/Tag/Tag.d.ts +15 -0
- package/dist/src/components/New/Tooltip/constants.d.ts +6 -1
- package/dist/src/components/New/constants/overlay.d.ts +12 -3
- package/dist/src/index.d.ts +3 -0
- package/dist/src/models/dropdown.d.ts +10 -0
- package/dist/src/types/tag.d.ts +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -209,6 +209,7 @@ not AAA:
|
|
|
209
209
|
| `DialInfoButton`, `InfoButton` | 24×24 | Fixed small affordance, same overlap constraint as small variants |
|
|
210
210
|
| Standard 2.0 fields (`Input`, `Select`, `RadioGroupPopupField`) | 40px tall | The pointer target spans the full field width but stays 4px short of 44 vertically; the height is a shared form design token, not a per-control choice. `.dial-kit-input` clips its overflow, so the pseudo-element cannot grow the target either |
|
|
211
211
|
| `Tag` remove button | 16×16 rendered | Reaches 24×24 through `dial-kit-minimum-target`; a 44px target would overhang 14px per side and swallow the neighbouring tags of a `TagInput` row |
|
|
212
|
+
| Clickable `Tag` | 24px / 20px tall | A 44px target would overhang 10px per side and swallow the neighbouring chips of a filter row. The 24px tag already clears 24×24; the 20px one reaches it through `dial-kit-minimum-target` |
|
|
212
213
|
| `Radio` circle | 20×20 rendered | Reaches 24×24 through `dial-kit-minimum-target`; a 44px target would overhang 12px per side and swallow the adjacent label. Clicking the label selects the radio, so the practical target is wider |
|
|
213
214
|
| `Checkbox` box | 20×20 rendered | Reaches 24×24 through `dial-kit-minimum-target`; a 44px target would overhang 12px per side and swallow the adjacent label. Clicking the label toggles the checkbox, so the practical target is wider |
|
|
214
215
|
| `SegmentedControl` segment | 32px tall | Sits 4px from its neighbours inside a 40px track, so a 44px target would overhang 6px per side and swallow the adjacent segments; the segment is already wider than 24px on both axes |
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -15,8 +15,12 @@ Versions match the git tags on the `development` branch.
|
|
|
15
15
|
See [migration guide](migration-guides/0.14.0/control-color-token-rename.md).
|
|
16
16
|
- **Border token `hover-alpha` removed** — it held the same value as `accent-alpha` (`#2764D933`, blue-500 alpha-20) behind a second variable, so the accent border tint had two names and a theme had to set both to stay consistent. The three hover borders that used it (`Input`, `Tag`, `Calendar`) now use `border-accent-alpha`. Replace `border-hover-alpha` with `border-accent-alpha`; if your theme sets `--stroke-hover-alpha`, move that value to `--stroke-accent-alpha`.
|
|
17
17
|
See [migration guide](migration-guides/0.14.0/control-color-token-rename.md).
|
|
18
|
+
- **`Select` — a multi-select option is one control, not an option wrapping a checkbox** — the row was a `role="option"` wrapper around a real `<input type="checkbox">`, so one choice announced two states (`aria-selected` and `aria-checked`), most of the 40px row was inert, and the overlay's arrow keys could not reach it. It is now a single `option` carrying `aria-selected`, with the box drawn as a decorative element: the whole row selects, Enter and Space toggle it, and the arrow keys walk it as they already walked single-select options. No props change; code that addressed an option through `getByRole('checkbox')` has to ask for the `option` instead. Select All is still a real checkbox.
|
|
19
|
+
See [migration guide](migration-guides/0.14.0/select-multiselect-option-row.md).
|
|
18
20
|
- **Border tokens `focus-black` → `focus`, `focus-blue` → `accent-focus`** — 0.13.0 renamed `focus` to `focus-black` to name the token after its value; the focus tokens are now named after their role instead, matching `accent` / `accent-alpha` elsewhere in the border scale. `border-focus` / `outline-focus` / `divide-focus` / `stroke-focus` are back to the names they had in 0.12.x, and `focus-blue` becomes `accent-focus`. Both keep their variables (`--stroke-focus-black`, with `--stroke-focus` still in the fallback chain, and `--stroke-focus-blue`) and their colours.
|
|
19
21
|
See [migration guide](migration-guides/0.14.0/focus-border-token-role-naming.md).
|
|
22
|
+
- **`Button` and `IconButton` (2.0) — `tooltipProps` is the 2.0 `Tooltip`'s props** — both were still wrapping the 1.0 `DialTooltip`, so a 2.0 button revealed its tooltip in the 1.0 bubble. They now wrap the 2.0 `Tooltip` with `asChild`, which also moves the tooltip's `aria-describedby` from a wrapper `<span>` onto the button itself. `placement` takes the four-sided `TooltipPlacement` enum instead of the full floating-ui `Placement`, so an aligned value such as `'top-start'` no longer compiles, and the trigger `<span>` is gone: a `triggerClassName` now lands on the button, where the classes that used to centre or truncate the wrapper are redundant.
|
|
23
|
+
See [migration guide](migration-guides/0.14.0/button-tooltip-2-0.md).
|
|
20
24
|
|
|
21
25
|
### Changed
|
|
22
26
|
|
|
@@ -27,6 +31,7 @@ Versions match the git tags on the `development` branch.
|
|
|
27
31
|
Each blue layer now reads its own `--shadow-blue-500-alpha-20` / `-4` / `-8` variable so one theme value cannot flatten the ramp, falling back to `--shadow-blue-500` and then to the light default. `shadow` (the `DEFAULT`) and `--shadow-grey-1000` are unchanged.
|
|
28
32
|
|
|
29
33
|
- **2.0 components compose 2.0 tooltips** — `Popup`'s clipped title, `Input`'s disabled-field readout, `Highlight`, and the option labels of `Select` and its submenus were still built on `DialTooltip` / `DialEllipsisTooltip`, so a 2.0 surface revealed its text in the 1.0 bubble. They now use the 2.0 `Tooltip` / `EllipsisTooltip`: the inverted `bg-control-inverted` bubble with an arrow, and no element rendered at all when there is nothing to show. The popup title passes `triggerClassName="truncate"` because the 2.0 trigger no longer forces it. No props change.
|
|
34
|
+
- **Overlay rows follow the multiselect-list-item spec** — a selected row and a hovered row shared one tint (`control-accent-alpha-hover`), so a selected row lit up identically whether or not the pointer was on it, and a disabled row lit up too, since the hover rule applied to every row. Selected now takes the faint `control-accent-alpha` step at rest, hover keeps `control-accent-alpha-hover` for selected and unselected alike, and a disabled row drops both tints and moves from `text-secondary` to `text-control-disable-primary`. `Dropdown` and `Select` both read these from `constants/overlay`, so the whole 2.0 overlay family moves together.
|
|
30
35
|
- **`Select` composes the 2.0 `Checkbox` and `Tag`** — the multi-select options and the Select All row were 1.0 `DialCheckbox` (an 18px box on `before:` pseudo-borders) and the field's selection was rendered with 1.0 `DialTag`. Both are now their 2.0 counterparts, so an option gets the 20px box with the accent fill and the real `indeterminate` DOM property that Select All's mixed state needs to be drawn as mixed, and each tag is the 24px 2.0 pill whose remove button is named after the tag it removes ("Remove Option 1") instead of being reachable only by position. No props change.
|
|
31
36
|
|
|
32
37
|
### Fixed
|
|
@@ -46,8 +51,11 @@ Versions match the git tags on the `development` branch.
|
|
|
46
51
|
- **`SegmentedControl` (2.0)** — the generation 2.0 counterpart of `DialSegmentedControl`: pill segments on a sunken track, where the selected one lifts onto the raised surface with `shadow-xs` and an accent icon, and both states tint with accent-alpha on hover and press. It is a `radiogroup` of `radio` segments rather than 1.0's `tablist`/`tab`, which is the accurate role for a control that selects a value instead of revealing a panel; the group is a single tab stop and the arrow keys, `Home` and `End` move the selection, skipping disabled segments. `items` replaces `options` and takes a per-segment `aria-label` so an icon-only segment can still be named, and the group is named with `aria-label` rather than 1.0's `ariaLabel`.
|
|
47
52
|
- **`RadioGroup` (2.0)** — the generation 2.0 counterpart of `DialRadioGroup`: a `radiogroup` of 2.0 `Radio` options under one `Label`, with the group's own `caption` / `error` below them and an item's `content` revealed while that item is selected. `items` replaces `radioButtons` and takes `value` / `label` / `caption` / `content` / `disabled` per option (1.0's `id` / `name`), `value` replaces `activeRadioButton`, and the ten pass-through class props collapse to `optionsClassName`, `radioClassName` and `contentClassName`. The group is named through `aria-labelledby` pointing at the label element itself rather than 1.0's duplicated `aria-label`, so a `Label` caption's info button text stays out of the group's name, and selected content is mounted only while its option is selected instead of rendered and hidden.
|
|
48
53
|
- **`RadioGroupPopupField` (2.0)** — the generation 2.0 counterpart of `DialRadioGroupPopupField`, built from the 2.0 `Popup`, `RadioGroup` and buttons. The collapsed field is a real `<button>` carrying `dial-kit-input`, not 1.0's read-only input inside a button, so the button role, `Enter` / `Space` and the disabled treatment come from the element; it announces its label followed by its current value ("Status, Draft") instead of the fixed `open-popup` label 1.0 gave it. The in-popup selection is now a draft the component holds by default — seeded from `value` on every open, discarded on Cancel, and reported once through `onApply(value)` — so a consumer no longer has to thread `selectedRadioValue` and `onChangeRadioField` through their own state; pass `selectedValue` with `onSelectionChange` when `isValid` has to depend on the live selection.
|
|
54
|
+
- **`Dropdown` (2.0) — multiselect items** — a `DropdownItem` marked `selectable` renders as a multiselect row: a checkbox box before the label, the accent tint while `checked`, `role="menuitemcheckbox"` with the state on `aria-checked`, and a click that leaves the menu open so several rows can be toggled in one visit. Plain items in the same menu still close it on click, so a menu can mix filters with an action. The arrow keys walk the checkbox rows alongside the plain ones. `checked` stays in the caller's state, updated from the item's `onClick` or the menu's `onItemClick`.
|
|
55
|
+
- **`CheckboxBox` (2.0)** — the 20px box a checkbox draws, extracted from `Checkbox` so the two things that need it cannot drift apart. With `htmlFor` it is the `<label for>` that toggles an input, which is how `Checkbox` uses it; without it the box is a decorative `<span>` hidden from assistive technology, which is how a `menuitemcheckbox` row and a multi-select `Select` option use it. `Checkbox` also gains `boxClassName` for the box itself.
|
|
49
56
|
- **`Label` (2.0) — `containerClassName`** — the wrapper holding the `<label>` and its info button was unstylable, so a label used as a flex item could not be allowed to shrink and its text pushed the row wider instead of truncating. `Select`'s multi-select options need exactly that; the new prop applies classes to the wrapper, leaving `className` on the `<label>` as before.
|
|
50
57
|
- **`Radio` and `Checkbox` reach the 24×24 pointer target** — both controls render at 20px, so they take `dial-kit-minimum-target` for WCAG 2.5.8 (AA) and are listed in the README target-size exception table: a 44px enhanced target would overhang 12px per side and swallow the adjacent label.
|
|
58
|
+
- **`Tag` (2.0) — `TagAppearance.Selectable`** — the selectable tag of the design: no rim and no fill until it is selected, then the faint `control-accent-alpha` step, with one `control-accent-alpha-hover` tint shared by the selected and unselected states, so a selected chip cannot read as hovered at rest. It is a toggle rather than a plain button — the state rides on `aria-pressed`, where the outlined tag leaves the accent tint as its only carrier — and a clickable 20px chip takes `dial-kit-minimum-target` to reach the WCAG 2.5.8 minimum, which the 24px one already clears. The borderless chip keeps a transparent border box so both appearances stand the same height in a mixed row. `appearance` defaults to `TagAppearance.Outlined`, so every existing tag, `TagInput` and `MultiSelectTags` included, is unchanged.
|
|
51
59
|
|
|
52
60
|
---
|
|
53
61
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("./index-DmEajFx0.cjs"),l=require("@monaco-editor/react"),u={[r.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"}},[r.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"}}},c=({value:n,onChange:t,onValidateJSON:i,options:s,currentTheme:e,themesConfig:d=u})=>{function a(o){o?.editor?.defineTheme(e,d[e]),o.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 r.jsxRuntimeExports.jsx(l.Editor,{beforeMount:a,height:"100%",defaultLanguage:"json",value:n,onChange:t,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=c;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { j as e, D as z, E as g, m as u } from "./index-
|
|
1
|
+
import { j as e, D as z, E as g, m as u } from "./index-jMP1W9V6.js";
|
|
2
2
|
import { useMemo as r } from "react";
|
|
3
3
|
import h, { divider as i, group as p, heading1 as C, heading2 as E, heading3 as k, bold as L, italic as M, strikethrough as w, unorderedListCommand as b, orderedListCommand as N, quote as T, link as f, code as v, table as O, codeEdit as S, codeLive as _, codePreview as y, fullscreen as D } from "@uiw/react-md-editor";
|
|
4
4
|
import { IconTextSize as P, IconBold as A, IconItalic as R, IconStrikethrough as B, IconList as Z, IconListNumbers as q, IconQuote as F, IconLink as K, IconCode as Q, IconTable as W, IconPencil as G, IconLayoutColumns as H, IconEye as J, IconMaximize as U } from "@tabler/icons-react";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=require("./index-DmEajFx0.cjs"),x=require("react"),e=require("@uiw/react-md-editor"),t=require("@tabler/icons-react"),o=s.DIAL_ICON_SIZE.SM,i=(n,r)=>({...n,icon:r}),p=()=>[i(e.bold,s.jsxRuntimeExports.jsx(t.IconBold,{size:o})),i(e.italic,s.jsxRuntimeExports.jsx(t.IconItalic,{size:o})),i(e.strikethrough,s.jsxRuntimeExports.jsx(t.IconStrikethrough,{size:o})),e.divider,e.group([e.heading1,e.heading2,e.heading3],{name:"heading",groupName:"heading",icon:s.jsxRuntimeExports.jsx(t.IconTextSize,{size:o}),buttonProps:{"aria-label":"Text style",title:"Text style"}}),e.divider,i(e.unorderedListCommand,s.jsxRuntimeExports.jsx(t.IconList,{size:o})),i(e.orderedListCommand,s.jsxRuntimeExports.jsx(t.IconListNumbers,{size:o})),e.divider,i(e.quote,s.jsxRuntimeExports.jsx(t.IconQuote,{size:o})),i(e.link,s.jsxRuntimeExports.jsx(t.IconLink,{size:o})),i(e.code,s.jsxRuntimeExports.jsx(t.IconCode,{size:o})),e.divider,i(e.table,s.jsxRuntimeExports.jsx(t.IconTable,{size:o}))],I=()=>[i(e.codeEdit,s.jsxRuntimeExports.jsx(t.IconPencil,{size:o})),i(e.codeLive,s.jsxRuntimeExports.jsx(t.IconLayoutColumns,{size:o})),i(e.codePreview,s.jsxRuntimeExports.jsx(t.IconEye,{size:o})),e.divider,i(e.fullscreen,s.jsxRuntimeExports.jsx(t.IconMaximize,{size:o}))],R=({value:n,onChange:r,height:d=300,theme:c=s.EditorThemes.light,className:a,placeholder:m,defaultPreview:u="edit"})=>{const j=x.useMemo(()=>p(),[]),l=x.useMemo(()=>I(),[]);return s.jsxRuntimeExports.jsx("div",{"data-color-mode":c,className:s.mergeClasses("dial-kit-markdown-editor",a),children:s.jsxRuntimeExports.jsx(e,{value:n,onChange:E=>r?.(E||""),height:d,preview:u,commands:j,extraCommands:l,textareaProps:{placeholder:m}})})};exports.MarkdownEditor=R;
|
|
@@ -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-DmEajFx0.cjs"),c=require("@uiw/react-md-editor"),x=({value:t,onChange:s,height:r=300,preview:i="edit",theme:n=e.EditorThemes.dark,className:a,placeholder:o})=>{const d=o!==void 0&&!t;return e.jsxRuntimeExports.jsxs("div",{"data-color-mode":n,className:e.mergeClasses("relative",a),children:[e.jsxRuntimeExports.jsx(c,{value:t,onChange:l=>s?.(l||""),height:r,preview:i}),d&&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=x;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.14.0-dev.
|
|
3
|
-
"generatedAt": "2026-08-
|
|
2
|
+
"version": "0.14.0-dev.5",
|
|
3
|
+
"generatedAt": "2026-08-24T19:20:52.126Z",
|
|
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",
|
|
@@ -721,8 +721,9 @@
|
|
|
721
721
|
},
|
|
722
722
|
{
|
|
723
723
|
"name": "tooltipProps",
|
|
724
|
-
"type": "
|
|
725
|
-
"required": false
|
|
724
|
+
"type": "ButtonTooltipProps",
|
|
725
|
+
"required": false,
|
|
726
|
+
"description": "Props of the 2.0 wrapping the button"
|
|
726
727
|
},
|
|
727
728
|
{
|
|
728
729
|
"name": "href",
|
|
@@ -783,8 +784,9 @@
|
|
|
783
784
|
},
|
|
784
785
|
{
|
|
785
786
|
"name": "tooltipProps",
|
|
786
|
-
"type": "
|
|
787
|
-
"required": false
|
|
787
|
+
"type": "IconButtonTooltipProps",
|
|
788
|
+
"required": false,
|
|
789
|
+
"description": "Props of the 2.0 wrapping the button"
|
|
788
790
|
}
|
|
789
791
|
],
|
|
790
792
|
"examples": [
|
|
@@ -1550,7 +1552,7 @@
|
|
|
1550
1552
|
"name": "Popup",
|
|
1551
1553
|
"category": "Components_2_0",
|
|
1552
1554
|
"generation": "2.0",
|
|
1553
|
-
"description": "An accessible modal dialog using Floating UI.\naliases: Modal|Dialog\nDesign system 2.0\n\nRenders in a portal with a scrim overlay, focus management, a header with the\ntitle and close control, a scrollable body and an optional footer. Sections\nare separated by spacing rather than rules;
|
|
1555
|
+
"description": "An accessible modal dialog using Floating UI.\naliases: Modal|Dialog\nDesign system 2.0\n\nRenders in a portal with a scrim overlay, focus management, a header with the\ntitle and close control, a scrollable body and an optional footer. Sections\nare separated by spacing rather than rules; opt into a rule with\n`headerDivider` / `footerDivider`.\n\nThe header grows from the title alone: `onBack` prepends a back control,\n`headerActions` sits between the title and the close button.\n\nThe footer is declared as data, not markup: `mainButtons` and\n`additionalButtons` take and the popup renders the\ns itself, so spacing, order and the neutral default are the\nsame on every dialog. `additionalButtonsOnLeft` moves the secondary group to\nthe opposite edge. A `footer` node still wins over both, for the rare surface\nthat needs something other than a row of buttons.\n\nA string `header` names the dialog automatically. A `header` node cannot —\npass `ariaLabel` in that case, or the dialog opens unnamed.",
|
|
1554
1556
|
"props": [
|
|
1555
1557
|
{
|
|
1556
1558
|
"name": "open",
|
|
@@ -1617,7 +1619,13 @@
|
|
|
1617
1619
|
"name": "footer",
|
|
1618
1620
|
"type": "ReactNode",
|
|
1619
1621
|
"required": false,
|
|
1620
|
-
"description": "
|
|
1622
|
+
"description": "Custom footer node; overrides `mainButtons` and `additionalButtons`"
|
|
1623
|
+
},
|
|
1624
|
+
{
|
|
1625
|
+
"name": "footerClassName",
|
|
1626
|
+
"type": "string",
|
|
1627
|
+
"required": false,
|
|
1628
|
+
"description": "Additional CSS classes applied to the built-in footer container"
|
|
1621
1629
|
},
|
|
1622
1630
|
{
|
|
1623
1631
|
"name": "onClose",
|
|
@@ -1625,6 +1633,58 @@
|
|
|
1625
1633
|
"required": false,
|
|
1626
1634
|
"description": "Callback fired when the popup requests to close"
|
|
1627
1635
|
},
|
|
1636
|
+
{
|
|
1637
|
+
"name": "onBack",
|
|
1638
|
+
"type": "(e: MouseEvent<HTMLButtonElement>) => void",
|
|
1639
|
+
"required": false,
|
|
1640
|
+
"description": "Callback for the header back button; the button renders only when set"
|
|
1641
|
+
},
|
|
1642
|
+
{
|
|
1643
|
+
"name": "backAriaLabel",
|
|
1644
|
+
"type": "string",
|
|
1645
|
+
"required": false,
|
|
1646
|
+
"defaultValue": "'Back'",
|
|
1647
|
+
"description": "Accessible name of the back button"
|
|
1648
|
+
},
|
|
1649
|
+
{
|
|
1650
|
+
"name": "headerActions",
|
|
1651
|
+
"type": "ReactNode",
|
|
1652
|
+
"required": false,
|
|
1653
|
+
"description": "Controls rendered between the title and the close button"
|
|
1654
|
+
},
|
|
1655
|
+
{
|
|
1656
|
+
"name": "headerDivider",
|
|
1657
|
+
"type": "boolean",
|
|
1658
|
+
"required": false,
|
|
1659
|
+
"defaultValue": "false",
|
|
1660
|
+
"description": "Whether a rule is drawn under the header"
|
|
1661
|
+
},
|
|
1662
|
+
{
|
|
1663
|
+
"name": "mainButtons",
|
|
1664
|
+
"type": "ButtonProps[]",
|
|
1665
|
+
"required": false,
|
|
1666
|
+
"description": "Primary footer buttons, aligned to the trailing edge; each defaults to `ButtonVariant.Neutral`"
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
"name": "additionalButtons",
|
|
1670
|
+
"type": "ButtonProps[]",
|
|
1671
|
+
"required": false,
|
|
1672
|
+
"description": "Secondary footer buttons, next to `mainButtons` unless moved left"
|
|
1673
|
+
},
|
|
1674
|
+
{
|
|
1675
|
+
"name": "additionalButtonsOnLeft",
|
|
1676
|
+
"type": "boolean",
|
|
1677
|
+
"required": false,
|
|
1678
|
+
"defaultValue": "false",
|
|
1679
|
+
"description": "Whether `additionalButtons` sit on the leading edge"
|
|
1680
|
+
},
|
|
1681
|
+
{
|
|
1682
|
+
"name": "footerDivider",
|
|
1683
|
+
"type": "boolean",
|
|
1684
|
+
"required": false,
|
|
1685
|
+
"defaultValue": "false",
|
|
1686
|
+
"description": "Whether a rule is drawn above the footer"
|
|
1687
|
+
},
|
|
1628
1688
|
{
|
|
1629
1689
|
"name": "size",
|
|
1630
1690
|
"type": "PopupSize",
|
|
@@ -1662,7 +1722,7 @@
|
|
|
1662
1722
|
}
|
|
1663
1723
|
],
|
|
1664
1724
|
"examples": [
|
|
1665
|
-
"<Popup\n open\n header=\"Title\"\n size={PopupSize.Md}\n
|
|
1725
|
+
"<Popup\n open\n header=\"Title\"\n size={PopupSize.Md}\n onBack={() => setStep(step - 1)}\n headerActions={<InfoButton caption=\"What is this?\" />}\n additionalButtonsOnLeft\n additionalButtons={[\n {\n label: 'Back',\n variant: ButtonVariant.Primary,\n appearance: ButtonAppearance.Link,\n iconBefore: <IconArrowLeft />,\n onClick: goBack,\n },\n ]}\n mainButtons={[\n { label: 'Cancel', onClick: () => setOpen(false) },\n { label: 'Confirm', variant: ButtonVariant.Primary, onClick: submit },\n ]}\n onClose={() => setOpen(false)}\n>\n <div className=\"px-6 py-4\">Dialog content goes here…</div>\n</Popup>"
|
|
1666
1726
|
],
|
|
1667
1727
|
"sourceFile": "components/New/Popup/Popup.tsx"
|
|
1668
1728
|
},
|
|
@@ -2486,6 +2546,12 @@
|
|
|
2486
2546
|
"type": "string",
|
|
2487
2547
|
"required": false,
|
|
2488
2548
|
"description": "Caption text rendered below the label, and described by the checkbox"
|
|
2549
|
+
},
|
|
2550
|
+
{
|
|
2551
|
+
"name": "boxClassName",
|
|
2552
|
+
"type": "string",
|
|
2553
|
+
"required": false,
|
|
2554
|
+
"description": "Additional classes for the box itself. Use it to drop\nthe box's own focus ring where the container already draws one, as a\nmultiselect row does."
|
|
2489
2555
|
}
|
|
2490
2556
|
],
|
|
2491
2557
|
"examples": [
|
|
@@ -2493,6 +2559,56 @@
|
|
|
2493
2559
|
],
|
|
2494
2560
|
"sourceFile": "components/New/Checkbox/Checkbox.tsx"
|
|
2495
2561
|
},
|
|
2562
|
+
{
|
|
2563
|
+
"name": "CheckboxBox",
|
|
2564
|
+
"category": "Components_2_0",
|
|
2565
|
+
"generation": "2.0",
|
|
2566
|
+
"description": "The 20px box a checkbox draws — the square, its border, its fill and the\ncheck or dash inside.\nDesign system 2.0\n\nTwo things render it: , where it is the `<label for>` that\ntoggles the input next to it, and rows that only *look* like a checkbox —\na `menuitemcheckbox` in a dropdown, whose state lives on `aria-checked` and\nwhose whole row is the control. Passing `htmlFor` picks the first: the box\nbecomes a label with a pointer target of its own. Without it the box is a\ndecorative `<span>`, hidden from assistive technology, and the row around it\ncarries both the state and the pointer target.",
|
|
2567
|
+
"props": [
|
|
2568
|
+
{
|
|
2569
|
+
"name": "isSelected",
|
|
2570
|
+
"type": "boolean",
|
|
2571
|
+
"required": false,
|
|
2572
|
+
"defaultValue": "false",
|
|
2573
|
+
"description": "Whether the box is filled with a check"
|
|
2574
|
+
},
|
|
2575
|
+
{
|
|
2576
|
+
"name": "isIndeterminate",
|
|
2577
|
+
"type": "boolean",
|
|
2578
|
+
"required": false,
|
|
2579
|
+
"defaultValue": "false",
|
|
2580
|
+
"description": "Whether the box is filled with a dash; takes precedence over `isSelected`"
|
|
2581
|
+
},
|
|
2582
|
+
{
|
|
2583
|
+
"name": "invalid",
|
|
2584
|
+
"type": "boolean",
|
|
2585
|
+
"required": false,
|
|
2586
|
+
"defaultValue": "false",
|
|
2587
|
+
"description": "Paints the box with the error colour"
|
|
2588
|
+
},
|
|
2589
|
+
{
|
|
2590
|
+
"name": "disabled",
|
|
2591
|
+
"type": "boolean",
|
|
2592
|
+
"required": false,
|
|
2593
|
+
"defaultValue": "false",
|
|
2594
|
+
"description": "Greys the box out"
|
|
2595
|
+
},
|
|
2596
|
+
{
|
|
2597
|
+
"name": "htmlFor",
|
|
2598
|
+
"type": "string",
|
|
2599
|
+
"required": false,
|
|
2600
|
+
"description": "Id of the input this box labels; omit for a decorative box"
|
|
2601
|
+
},
|
|
2602
|
+
{
|
|
2603
|
+
"name": "className",
|
|
2604
|
+
"type": "string",
|
|
2605
|
+
"required": false,
|
|
2606
|
+
"description": "Additional classes for the box"
|
|
2607
|
+
}
|
|
2608
|
+
],
|
|
2609
|
+
"examples": [],
|
|
2610
|
+
"sourceFile": "components/New/Checkbox/CheckboxBox.tsx"
|
|
2611
|
+
},
|
|
2496
2612
|
{
|
|
2497
2613
|
"name": "ToggleIconButton",
|
|
2498
2614
|
"category": "Components_2_0",
|
|
@@ -2733,7 +2849,7 @@
|
|
|
2733
2849
|
"name": "Tag",
|
|
2734
2850
|
"category": "Components_2_0",
|
|
2735
2851
|
"generation": "2.0",
|
|
2736
|
-
"description": "A compact label element used for selections, filters, or categories.\naliases: Chip|Pill\nDesign system 2.0\n\nThe label truncates rather than wrapping, and carries a native `title` so the\nfull text stays reachable when it does.\n\nA tag with `onClick` becomes a `role=\"button\"` operable with Enter and Space.\nIts remove control is a real nested `<button>`, so keep the two roles apart in\nthe caller: a clickable tag that is also closable gives a screen reader two\nactions with no way to tell which one it landed on.",
|
|
2852
|
+
"description": "A compact label element used for selections, filters, or categories.\naliases: Chip|Pill\nDesign system 2.0\n\nThe label truncates rather than wrapping, and carries a native `title` so the\nfull text stays reachable when it does.\n\nA tag with `onClick` becomes a `role=\"button\"` operable with Enter and Space.\nIts remove control is a real nested `<button>`, so keep the two roles apart in\nthe caller: a clickable tag that is also closable gives a screen reader two\nactions with no way to tell which one it landed on.\n\n`TagAppearance.Selectable` is the filter chip of the 2.0 design: no rim and no\nfill until it is selected, one hover tint shared by both states, and the state\ncarried on `aria-pressed` rather than by the tint alone. Give it an `onClick` —\na selectable tag that cannot be activated is a colour and nothing else.",
|
|
2737
2853
|
"props": [
|
|
2738
2854
|
{
|
|
2739
2855
|
"name": "label",
|
|
@@ -2754,6 +2870,13 @@
|
|
|
2754
2870
|
"defaultValue": "ElementSize.Standard",
|
|
2755
2871
|
"description": "Tag height: standard is 24px, small is 20px."
|
|
2756
2872
|
},
|
|
2873
|
+
{
|
|
2874
|
+
"name": "appearance",
|
|
2875
|
+
"type": "TagAppearance",
|
|
2876
|
+
"required": false,
|
|
2877
|
+
"defaultValue": "TagAppearance.Outlined",
|
|
2878
|
+
"description": "`outlined` is the bordered chip; `selectable`\nis the borderless filter chip that tints when selected."
|
|
2879
|
+
},
|
|
2757
2880
|
{
|
|
2758
2881
|
"name": "selected",
|
|
2759
2882
|
"type": "boolean",
|
|
@@ -2789,7 +2912,7 @@
|
|
|
2789
2912
|
}
|
|
2790
2913
|
],
|
|
2791
2914
|
"examples": [
|
|
2792
|
-
"<Tag label=\"TypeScript\" />\n<Tag label=\"TypeScript\" closable onRemove={() => remove('TypeScript')} />\n<Tag label=\"Drafts\" selected onClick={() => toggle('Drafts')} />"
|
|
2915
|
+
"<Tag label=\"TypeScript\" />\n<Tag label=\"TypeScript\" closable onRemove={() => remove('TypeScript')} />\n<Tag label=\"Drafts\" selected onClick={() => toggle('Drafts')} />\n<Tag\n label=\"Drafts\"\n appearance={TagAppearance.Selectable}\n selected={isSelected}\n onClick={() => toggle('Drafts')}\n/>"
|
|
2793
2916
|
],
|
|
2794
2917
|
"sourceFile": "components/New/Tag/Tag.tsx"
|
|
2795
2918
|
},
|
|
@@ -8814,6 +8937,14 @@
|
|
|
8814
8937
|
"name": "danger?",
|
|
8815
8938
|
"value": "boolean"
|
|
8816
8939
|
},
|
|
8940
|
+
{
|
|
8941
|
+
"name": "selectable?",
|
|
8942
|
+
"value": "boolean"
|
|
8943
|
+
},
|
|
8944
|
+
{
|
|
8945
|
+
"name": "checked?",
|
|
8946
|
+
"value": "boolean"
|
|
8947
|
+
},
|
|
8817
8948
|
{
|
|
8818
8949
|
"name": "type?",
|
|
8819
8950
|
"value": "DropdownItemType"
|
|
@@ -9466,6 +9597,21 @@
|
|
|
9466
9597
|
"sourceFile": "components/New/Tabs/Tabs.tsx",
|
|
9467
9598
|
"description": "A single tab entry rendered by ."
|
|
9468
9599
|
},
|
|
9600
|
+
{
|
|
9601
|
+
"name": "TagAppearance",
|
|
9602
|
+
"kind": "enum",
|
|
9603
|
+
"members": [
|
|
9604
|
+
{
|
|
9605
|
+
"name": "Outlined",
|
|
9606
|
+
"value": "'outlined'"
|
|
9607
|
+
},
|
|
9608
|
+
{
|
|
9609
|
+
"name": "Selectable",
|
|
9610
|
+
"value": "'selectable'"
|
|
9611
|
+
}
|
|
9612
|
+
],
|
|
9613
|
+
"sourceFile": "types/tag.ts"
|
|
9614
|
+
},
|
|
9469
9615
|
{
|
|
9470
9616
|
"name": "TooltipContainerOptions",
|
|
9471
9617
|
"kind": "interface",
|
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-DmEajFx0.cjs");exports.Accordion=a.Accordion;exports.AnalyticsCardVariant=a.AnalyticsCardVariant;exports.BASE_ICON_PROPS=a.BASE_ICON_PROPS;exports.BASE_ICON_SIZE=a.BASE_ICON_SIZE;exports.Button=a.Button;exports.ButtonAppearance=a.ButtonAppearance;exports.ButtonDropdown=a.ButtonDropdown;exports.ButtonVariant=a.ButtonVariant;exports.Calendar=a.Calendar;exports.CalendarMode=a.CalendarMode;exports.CaptionText=a.CaptionText;exports.CardShell=a.CardShell;exports.Checkbox=a.Checkbox;exports.CheckboxBox=a.CheckboxBox;exports.CloseButton=a.CloseButton;exports.ConfirmationPopup=a.ConfirmationPopup;exports.ConfirmationPopupVariant=a.ConfirmationPopupVariant;exports.DEFAULT_ANALYTICS_BAR_COLOR_MAP=a.DEFAULT_ANALYTICS_BAR_COLOR_MAP;exports.DEFAULT_GRID_DATE_FORMAT_OPTIONS=a.DEFAULT_DATE_FORMAT_OPTIONS;exports.DEFAULT_GRID_DATE_LOCALE=a.DEFAULT_LOCALE;exports.DIAL_ICON_SIZE=a.DIAL_ICON_SIZE;exports.DangerButton=a.DangerButton;exports.DangerIconButton=a.DangerIconButton;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.DialDateCellRenderer=a.DialDateCellRenderer;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.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.DialRadioButton=a.DialRadioButton;exports.DialRadioGroup=a.DialRadioGroup;exports.DialRadioGroupPopupField=a.DialRadioGroupPopupField;exports.DialRemoveButton=a.DialRemoveButton;exports.DialResizableContainer=a.DialResizableContainer;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.DialSlider=a.DialSlider;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.DialTooltipContainer=a.DialTooltipContainer;exports.DialTooltipContent=a.DialTooltipContent;exports.DialTooltipTrigger=a.DialTooltipTrigger;exports.Dropdown=a.Dropdown;exports.DropdownItemType=a.DropdownItemType;exports.DropdownTrigger=a.DropdownTrigger;exports.DropdownType=a.DropdownType;exports.EDITABLE_CONTAINER_ATTRIBUTE=a.EDITABLE_CONTAINER_ATTRIBUTE;exports.EditorThemes=a.EditorThemes;exports.ElementSize=a.ElementSize;exports.EllipsisTooltip=a.EllipsisTooltip;exports.ErrorMessageNotification=a.ErrorMessageNotification;exports.ErrorText=a.ErrorText;exports.ErrorToastNotification=a.ErrorToastNotification;exports.FabButton=a.FabButton;exports.FileDropzone=a.FileDropzone;exports.FileManagerColumnKey=a.FileManagerColumnKey;exports.FileManagerProvider=a.FileManagerProvider;exports.FlexibleActionsDirection=a.FlexibleActionsDirection;exports.FolderPath=a.FolderPath;exports.FormItemOrientation=a.FormItemOrientation;exports.GeneralMessageNotification=a.GeneralMessageNotification;exports.GeneralToastNotification=a.GeneralToastNotification;exports.GhostButton=a.GhostButton;exports.GhostIconButton=a.GhostIconButton;exports.GridSelectionMode=a.GridSelectionMode;exports.Highlight=a.Highlight;exports.IconButton=a.IconButton;exports.InfoButton=a.InfoButton;exports.InfoMessageNotification=a.InfoMessageNotification;exports.InfoToastNotification=a.InfoToastNotification;exports.InlineSelect=a.InlineSelect;exports.InlineSelectTrigger=a.InlineSelectTrigger;exports.Input=a.Input;exports.JsonSchemaType=a.JsonSchemaType;exports.Label=a.Label;exports.LazyDialJsonEditor=a.LazyDialJsonEditor;exports.LazyDialMarkdownEditor=a.LazyDialMarkdownEditor;exports.LazyMarkdownEditor=a.LazyMarkdownEditor;exports.LinkButton=a.LinkButton;exports.LoadingMessageNotification=a.LoadingMessageNotification;exports.LoadingToastNotification=a.LoadingToastNotification;exports.MultiSelectTags=a.MultiSelectTags;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.NeutralButton=a.NeutralButton;exports.NeutralIconButton=a.NeutralIconButton;exports.Notification=a.Notification;exports.NotificationType=a.NotificationType;exports.NotificationVariant=a.NotificationVariant;exports.NumberInput=a.NumberInput;exports.OutlinedButton=a.OutlinedButton;exports.PasswordInput=a.PasswordInput;exports.Popup=a.Popup;exports.PopupSize=a.PopupSize;exports.PrimaryButton=a.PrimaryButton;exports.PrimaryIconButton=a.PrimaryIconButton;exports.ProgressBar=a.ProgressBar;exports.Radio=a.Radio;exports.RadioGroup=a.RadioGroup;exports.RadioGroupOrientation=a.RadioGroupOrientation;exports.RadioGroupPopupField=a.RadioGroupPopupField;exports.ResizableContainerSide=a.ResizableContainerSide;exports.SIZE_COLUMN=a.SIZE_COLUMN;exports.SchemaDisplayMode=a.SchemaDisplayMode;exports.SchemaOrientation=a.SchemaOrientation;exports.SchemaRendererVariant=a.SchemaRendererVariant;exports.ScreenResolution=a.ScreenResolution;exports.Search=a.Search;exports.SegmentedControl=a.SegmentedControl;exports.Select=a.Select;exports.SelectSize=a.SelectSize;exports.SelectVariant=a.SelectVariant;exports.Skeleton=a.Skeleton;exports.SkeletonAvatarShape=a.SkeletonAvatarShape;exports.SkeletonAvatarSize=a.SkeletonAvatarSize;exports.SkeletonVariant=a.SkeletonVariant;exports.Spinner=a.Spinner;exports.StaticIconButton=a.StaticIconButton;exports.StepStatus=a.StepStatus;exports.SuccessMessageNotification=a.SuccessMessageNotification;exports.SuccessToastNotification=a.SuccessToastNotification;exports.Switch=a.Switch;exports.TabOrientation=a.TabOrientation;exports.TabView=a.TabView;exports.Tabs=a.Tabs;exports.Tag=a.Tag;exports.TagAppearance=a.TagAppearance;exports.TagInput=a.TagInput;exports.Textarea=a.Textarea;exports.ToggleIconButton=a.ToggleIconButton;exports.Tooltip=a.Tooltip;exports.TooltipContainer=a.TooltipContainer;exports.TooltipContent=a.TooltipContent;exports.TooltipPlacement=a.TooltipPlacement;exports.TooltipTrigger=a.TooltipTrigger;exports.UPDATED_AT_COLUMN=a.UPDATED_AT_COLUMN;exports.WarningMessageNotification=a.WarningMessageNotification;exports.WarningToastNotification=a.WarningToastNotification;exports.convertGridDateToDate=a.convertToDate;exports.editableContainerProps=a.editableContainerProps;exports.matchesAccept=a.matchesAccept;exports.mergeClasses=a.mergeClasses;exports.useDialFileManagerTabs=a.useDialFileManagerTabs;exports.useEditableItem=a.useEditableItem;exports.useFileManagerContext=a.useFileManagerContext;exports.wrapInRootFolder=a.wrapInRootFolder;
|