@knime/kds-components 0.29.2 → 0.29.3
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/CHANGELOG.md +7 -0
- package/dist/index.css +78 -0
- package/dist/index.js +81 -24
- package/dist/index.js.map +1 -1
- package/dist/src/accessories/ProgressBar/KdsProgressBar.vue.d.ts +27 -0
- package/dist/src/accessories/ProgressBar/KdsProgressBar.vue.d.ts.map +1 -0
- package/dist/src/accessories/ProgressBar/enums.d.ts +6 -0
- package/dist/src/accessories/ProgressBar/enums.d.ts.map +1 -0
- package/dist/src/accessories/ProgressBar/index.d.ts +4 -0
- package/dist/src/accessories/ProgressBar/index.d.ts.map +1 -0
- package/dist/src/accessories/ProgressBar/types.d.ts +37 -0
- package/dist/src/accessories/ProgressBar/types.d.ts.map +1 -0
- package/dist/src/accessories/index.d.ts +2 -0
- package/dist/src/accessories/index.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/index.css
CHANGED
|
@@ -311,6 +311,84 @@
|
|
|
311
311
|
}
|
|
312
312
|
}
|
|
313
313
|
|
|
314
|
+
.kds-progress-bar {
|
|
315
|
+
&[data-v-5fdfbce2] {
|
|
316
|
+
--progress-bar-background-color: var(--kds-color-surface-subtle);
|
|
317
|
+
--progress-bar-foreground-color: var(
|
|
318
|
+
--kds-color-background-primary-bold-initial
|
|
319
|
+
);
|
|
320
|
+
--progress-bar-radius: var(--kds-border-radius-container-pill);
|
|
321
|
+
--progress-bar-height: var(--kds-dimension-component-height-0-25x);
|
|
322
|
+
|
|
323
|
+
position: relative;
|
|
324
|
+
width: 100%;
|
|
325
|
+
height: var(--progress-bar-height);
|
|
326
|
+
overflow: hidden;
|
|
327
|
+
border-radius: var(--progress-bar-radius);
|
|
328
|
+
|
|
329
|
+
/* Firefox uses this to target the bar that represents the value of the progress element */
|
|
330
|
+
|
|
331
|
+
/* the following two rules need to stay separate, as otherwise it causes it not to be applied in Chrome correctly */
|
|
332
|
+
}
|
|
333
|
+
& .progress[data-v-5fdfbce2] {
|
|
334
|
+
display: block;
|
|
335
|
+
width: 100%;
|
|
336
|
+
height: var(--progress-bar-height);
|
|
337
|
+
padding: 0;
|
|
338
|
+
overflow: hidden;
|
|
339
|
+
appearance: none;
|
|
340
|
+
|
|
341
|
+
/* Firefox sets the background of the bar from here */
|
|
342
|
+
background-color: var(--progress-bar-background-color);
|
|
343
|
+
border: none;
|
|
344
|
+
border-radius: var(--progress-bar-radius);
|
|
345
|
+
}
|
|
346
|
+
& .progress[data-v-5fdfbce2]::-webkit-progress-bar {
|
|
347
|
+
background-color: var(--progress-bar-background-color);
|
|
348
|
+
}
|
|
349
|
+
& .progress[data-v-5fdfbce2]::-webkit-progress-value {
|
|
350
|
+
background-color: var(--progress-bar-foreground-color);
|
|
351
|
+
border-radius: var(--progress-bar-radius);
|
|
352
|
+
transition: width 0.5s;
|
|
353
|
+
}
|
|
354
|
+
& .progress[data-v-5fdfbce2]::-moz-progress-bar {
|
|
355
|
+
background-color: var(--progress-bar-foreground-color);
|
|
356
|
+
}
|
|
357
|
+
& .progress[data-v-5fdfbce2]:indeterminate {
|
|
358
|
+
background-color: var(--progress-bar-background-color);
|
|
359
|
+
background-image: none;
|
|
360
|
+
}
|
|
361
|
+
& .progress[data-v-5fdfbce2]:indeterminate::-webkit-progress-bar {
|
|
362
|
+
background-color: transparent;
|
|
363
|
+
}
|
|
364
|
+
& .progress[data-v-5fdfbce2]:indeterminate::-moz-progress-bar {
|
|
365
|
+
background-color: transparent;
|
|
366
|
+
}
|
|
367
|
+
& .indeterminate-bar[data-v-5fdfbce2] {
|
|
368
|
+
position: absolute;
|
|
369
|
+
inset-block: 0;
|
|
370
|
+
width: 35%;
|
|
371
|
+
pointer-events: none;
|
|
372
|
+
background-color: var(--progress-bar-foreground-color);
|
|
373
|
+
border-radius: var(--kds-border-radius-container-pill);
|
|
374
|
+
animation: move-indeterminate-5fdfbce2 1.5s linear infinite;
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
.kds-progress-bar-medium[data-v-5fdfbce2] {
|
|
378
|
+
--progress-bar-height: var(--kds-dimension-component-height-0-25x);
|
|
379
|
+
}
|
|
380
|
+
.kds-progress-bar-large[data-v-5fdfbce2] {
|
|
381
|
+
--progress-bar-height: var(--kds-dimension-component-height-0-75x);
|
|
382
|
+
}
|
|
383
|
+
@keyframes move-indeterminate-5fdfbce2 {
|
|
384
|
+
0% {
|
|
385
|
+
transform: translateX(-120%);
|
|
386
|
+
}
|
|
387
|
+
100% {
|
|
388
|
+
transform: translateX(320%);
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
|
|
314
392
|
.kds-color-swatch {
|
|
315
393
|
&[data-v-91e0130d] {
|
|
316
394
|
display: inline-block;
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent, createPropsRestProxy, ref, watch, computed, openBlock, createElementBlock, normalizeClass, createElementVNode, toDisplayString, Fragment, renderList, createBlock, normalizeStyle, createCommentVNode, shallowRef, markRaw, readonly, toRef, unref, resolveDynamicComponent, useTemplateRef, createVNode, withCtx, renderSlot,
|
|
1
|
+
import { defineComponent, createPropsRestProxy, ref, watch, computed, openBlock, createElementBlock, normalizeClass, createElementVNode, toDisplayString, Fragment, renderList, createBlock, normalizeStyle, createCommentVNode, shallowRef, markRaw, readonly, toRef, unref, resolveDynamicComponent, mergeProps, useTemplateRef, createVNode, withCtx, renderSlot, h as h$1, useSlots, getCurrentInstance, useModel, mergeModels, onMounted, onUnmounted, nextTick, useId, withModifiers, watchEffect, useAttrs, withKeys, isRef, getCurrentScope, onScopeDispose, defineAsyncComponent, toRefs, useCssVars, createSlots, normalizeProps, withDirectives, vShow, onBeforeUpdate, onBeforeUnmount, vModelText, createTextVNode, guardReactiveProps } from 'vue';
|
|
2
2
|
import { useLocalStorage, useDark, usePreferredDark, useResizeObserver, useMutationObserver, onClickOutside, useElementSize, useMousePressed, useVirtualList, useTemplateRefsList } from '@vueuse/core';
|
|
3
3
|
|
|
4
4
|
import './index.css';const kdsAvatarSize = {
|
|
@@ -9,14 +9,14 @@ import './index.css';const kdsAvatarSize = {
|
|
|
9
9
|
};
|
|
10
10
|
const kdsAvatarSizes = Object.values(kdsAvatarSize);
|
|
11
11
|
|
|
12
|
-
const _hoisted_1$
|
|
13
|
-
const _hoisted_2$
|
|
12
|
+
const _hoisted_1$15 = ["role", "title", "aria-hidden", "aria-label", "data-color"];
|
|
13
|
+
const _hoisted_2$G = ["src"];
|
|
14
14
|
const _hoisted_3$u = {
|
|
15
15
|
key: 1,
|
|
16
16
|
class: "kds-avatar-initials",
|
|
17
17
|
"aria-hidden": "true"
|
|
18
18
|
};
|
|
19
|
-
const _sfc_main$
|
|
19
|
+
const _sfc_main$1G = /* @__PURE__ */ defineComponent({
|
|
20
20
|
__name: "KdsAvatar",
|
|
21
21
|
props: {
|
|
22
22
|
initials: {},
|
|
@@ -80,10 +80,10 @@ const _sfc_main$1F = /* @__PURE__ */ defineComponent({
|
|
|
80
80
|
alt: "",
|
|
81
81
|
"aria-hidden": "true",
|
|
82
82
|
onError: onImageError
|
|
83
|
-
}, null, 40, _hoisted_2$
|
|
83
|
+
}, null, 40, _hoisted_2$G)) : (openBlock(), createElementBlock("div", _hoisted_3$u, [
|
|
84
84
|
createElementVNode("span", null, toDisplayString(displayedInitials.value), 1)
|
|
85
85
|
]))
|
|
86
|
-
], 10, _hoisted_1$
|
|
86
|
+
], 10, _hoisted_1$15);
|
|
87
87
|
};
|
|
88
88
|
}
|
|
89
89
|
});
|
|
@@ -96,16 +96,16 @@ const _export_sfc = (sfc, props) => {
|
|
|
96
96
|
return target;
|
|
97
97
|
};
|
|
98
98
|
|
|
99
|
-
const KdsAvatar = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
99
|
+
const KdsAvatar = /* @__PURE__ */ _export_sfc(_sfc_main$1G, [["__scopeId", "data-v-9e1a5abe"]]);
|
|
100
100
|
|
|
101
|
-
const _hoisted_1$
|
|
102
|
-
const _hoisted_2$
|
|
101
|
+
const _hoisted_1$14 = ["aria-label"];
|
|
102
|
+
const _hoisted_2$F = { class: "avatars" };
|
|
103
103
|
const _hoisted_3$t = {
|
|
104
104
|
key: 0,
|
|
105
105
|
class: "more-count",
|
|
106
106
|
"aria-hidden": "true"
|
|
107
107
|
};
|
|
108
|
-
const _sfc_main$
|
|
108
|
+
const _sfc_main$1F = /* @__PURE__ */ defineComponent({
|
|
109
109
|
__name: "KdsAvatarCounter",
|
|
110
110
|
props: {
|
|
111
111
|
moreCount: { default: 0 },
|
|
@@ -125,7 +125,7 @@ const _sfc_main$1E = /* @__PURE__ */ defineComponent({
|
|
|
125
125
|
role: "group",
|
|
126
126
|
"aria-label": ariaLabel.value
|
|
127
127
|
}, [
|
|
128
|
-
createElementVNode("div", _hoisted_2$
|
|
128
|
+
createElementVNode("div", _hoisted_2$F, [
|
|
129
129
|
(openBlock(true), createElementBlock(Fragment, null, renderList(__props.avatars, (avatar, index) => {
|
|
130
130
|
return openBlock(), createBlock(KdsAvatar, {
|
|
131
131
|
key: index,
|
|
@@ -140,12 +140,12 @@ const _sfc_main$1E = /* @__PURE__ */ defineComponent({
|
|
|
140
140
|
}), 128))
|
|
141
141
|
]),
|
|
142
142
|
__props.moreCount > 0 ? (openBlock(), createElementBlock("div", _hoisted_3$t, " +" + toDisplayString(__props.moreCount), 1)) : createCommentVNode("", true)
|
|
143
|
-
], 8, _hoisted_1$
|
|
143
|
+
], 8, _hoisted_1$14);
|
|
144
144
|
};
|
|
145
145
|
}
|
|
146
146
|
});
|
|
147
147
|
|
|
148
|
-
const KdsAvatarCounter = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
148
|
+
const KdsAvatarCounter = /* @__PURE__ */ _export_sfc(_sfc_main$1F, [["__scopeId", "data-v-1aef516d"]]);
|
|
149
149
|
|
|
150
150
|
const __variableDynamicImportRuntimeHelper = (glob$1, path$13, segs) => {
|
|
151
151
|
const v = glob$1[path$13];
|
|
@@ -202,7 +202,7 @@ function useIcon({
|
|
|
202
202
|
};
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
-
const _sfc_main$
|
|
205
|
+
const _sfc_main$1E = /* @__PURE__ */ defineComponent({
|
|
206
206
|
__name: "KdsIcon",
|
|
207
207
|
props: {
|
|
208
208
|
name: {},
|
|
@@ -232,7 +232,7 @@ const _sfc_main$1D = /* @__PURE__ */ defineComponent({
|
|
|
232
232
|
}
|
|
233
233
|
});
|
|
234
234
|
|
|
235
|
-
const KdsIcon = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
235
|
+
const KdsIcon = /* @__PURE__ */ _export_sfc(_sfc_main$1E, [["__scopeId", "data-v-bff4f419"]]);
|
|
236
236
|
|
|
237
237
|
const ID_TO_ICON_MAP = {
|
|
238
238
|
// Flow Variables
|
|
@@ -584,8 +584,8 @@ const kdsDataTypeSize = {
|
|
|
584
584
|
};
|
|
585
585
|
const kdsDataTypeSizes = Object.values(kdsDataTypeSize);
|
|
586
586
|
|
|
587
|
-
const _hoisted_1$
|
|
588
|
-
const _sfc_main$
|
|
587
|
+
const _hoisted_1$13 = ["title"];
|
|
588
|
+
const _sfc_main$1D = /* @__PURE__ */ defineComponent({
|
|
589
589
|
__name: "KdsDataType",
|
|
590
590
|
props: {
|
|
591
591
|
iconName: { default: "unknown-datatype" },
|
|
@@ -626,12 +626,12 @@ const _sfc_main$1C = /* @__PURE__ */ defineComponent({
|
|
|
626
626
|
"aria-hidden": "true",
|
|
627
627
|
focusable: "false"
|
|
628
628
|
}, null, 8, ["class"]))
|
|
629
|
-
], 10, _hoisted_1$
|
|
629
|
+
], 10, _hoisted_1$13);
|
|
630
630
|
};
|
|
631
631
|
}
|
|
632
632
|
});
|
|
633
633
|
|
|
634
|
-
const KdsDataType = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
634
|
+
const KdsDataType = /* @__PURE__ */ _export_sfc(_sfc_main$1D, [["__scopeId", "data-v-38e9537f"]]);
|
|
635
635
|
|
|
636
636
|
const kdsBadgeVariant = {
|
|
637
637
|
NEUTRAL: "neutral",
|
|
@@ -648,8 +648,8 @@ const kdsBadgeSize = {
|
|
|
648
648
|
};
|
|
649
649
|
const kdsBadgeSizes = Object.values(kdsBadgeSize);
|
|
650
650
|
|
|
651
|
-
const _hoisted_1$
|
|
652
|
-
const _sfc_main$
|
|
651
|
+
const _hoisted_1$12 = { class: "label-wrapper" };
|
|
652
|
+
const _sfc_main$1C = /* @__PURE__ */ defineComponent({
|
|
653
653
|
__name: "KdsBadge",
|
|
654
654
|
props: {
|
|
655
655
|
label: {},
|
|
@@ -671,13 +671,70 @@ const _sfc_main$1B = /* @__PURE__ */ defineComponent({
|
|
|
671
671
|
name: __props.leadingIcon,
|
|
672
672
|
size: sizeToIconSize[__props.size]
|
|
673
673
|
}, null, 8, ["name", "size"])) : createCommentVNode("", true),
|
|
674
|
-
createElementVNode("span", _hoisted_1$
|
|
674
|
+
createElementVNode("span", _hoisted_1$12, toDisplayString(__props.label), 1)
|
|
675
|
+
], 2);
|
|
676
|
+
};
|
|
677
|
+
}
|
|
678
|
+
});
|
|
679
|
+
|
|
680
|
+
const KdsBadge = /* @__PURE__ */ _export_sfc(_sfc_main$1C, [["__scopeId", "data-v-df64f7cf"]]);
|
|
681
|
+
|
|
682
|
+
const kdsProgressBarSize = {
|
|
683
|
+
MEDIUM: "medium",
|
|
684
|
+
LARGE: "large"
|
|
685
|
+
};
|
|
686
|
+
const kdsProgressBarSizes = Object.values(kdsProgressBarSize);
|
|
687
|
+
|
|
688
|
+
const _hoisted_1$11 = ["title", "aria-label"];
|
|
689
|
+
const _hoisted_2$E = {
|
|
690
|
+
key: 0,
|
|
691
|
+
class: "indeterminate-bar",
|
|
692
|
+
"aria-hidden": "true"
|
|
693
|
+
};
|
|
694
|
+
const _sfc_main$1B = /* @__PURE__ */ defineComponent({
|
|
695
|
+
__name: "KdsProgressBar",
|
|
696
|
+
props: {
|
|
697
|
+
size: { default: () => kdsProgressBarSize.MEDIUM },
|
|
698
|
+
title: { default: "" },
|
|
699
|
+
percentage: { default: 0 },
|
|
700
|
+
indeterminate: { type: Boolean, default: false }
|
|
701
|
+
},
|
|
702
|
+
setup(__props) {
|
|
703
|
+
const progressValue = computed(() => {
|
|
704
|
+
if (Number.isNaN(__props.percentage)) {
|
|
705
|
+
return 0;
|
|
706
|
+
}
|
|
707
|
+
return Math.min(Math.max(__props.percentage, 0), 100);
|
|
708
|
+
});
|
|
709
|
+
const title = computed(() => {
|
|
710
|
+
const customTitle = (__props.title ?? "").trim();
|
|
711
|
+
if (customTitle) {
|
|
712
|
+
return customTitle;
|
|
713
|
+
}
|
|
714
|
+
return __props.indeterminate ? "Loading" : `Progress: ${progressValue.value}%`;
|
|
715
|
+
});
|
|
716
|
+
return (_ctx, _cache) => {
|
|
717
|
+
return openBlock(), createElementBlock("div", {
|
|
718
|
+
class: normalizeClass([
|
|
719
|
+
"kds-progress-bar",
|
|
720
|
+
{
|
|
721
|
+
"kds-progress-bar-large": __props.size === unref(kdsProgressBarSize).LARGE,
|
|
722
|
+
"kds-progress-bar-medium": __props.size !== unref(kdsProgressBarSize).LARGE
|
|
723
|
+
}
|
|
724
|
+
])
|
|
725
|
+
}, [
|
|
726
|
+
createElementVNode("progress", mergeProps({
|
|
727
|
+
title: title.value,
|
|
728
|
+
"aria-label": title.value,
|
|
729
|
+
class: "progress"
|
|
730
|
+
}, __props.indeterminate ? {} : { value: progressValue.value, max: 100 }), null, 16, _hoisted_1$11),
|
|
731
|
+
__props.indeterminate ? (openBlock(), createElementBlock("span", _hoisted_2$E)) : createCommentVNode("", true)
|
|
675
732
|
], 2);
|
|
676
733
|
};
|
|
677
734
|
}
|
|
678
735
|
});
|
|
679
736
|
|
|
680
|
-
const
|
|
737
|
+
const KdsProgressBar = /* @__PURE__ */ _export_sfc(_sfc_main$1B, [["__scopeId", "data-v-5fdfbce2"]]);
|
|
681
738
|
|
|
682
739
|
const kdsColorSwatchType = {
|
|
683
740
|
LEARNER: "learner",
|
|
@@ -26006,5 +26063,5 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
26006
26063
|
|
|
26007
26064
|
const KdsDescription = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-ed6ba7bb"]]);
|
|
26008
26065
|
|
|
26009
|
-
export { KdsAccordion, KdsAvatar, KdsAvatarCounter, KdsBadge, KdsBreadcrumb, _sfc_main$1s as KdsButton, _sfc_main$h as KdsCard, _sfc_main$10 as KdsCheckbox, KdsCheckboxGroup, KdsClickableCard, _sfc_main$S as KdsColorInput, KdsColorSwatch, _sfc_main$1c as KdsContextMenu, KdsDataType, _sfc_main$L as KdsDateInput, _sfc_main$J as KdsDateTimeFormatInput, KdsDescription, KdsDivider, KdsDonutChart, _sfc_main$z as KdsDropdown, KdsDynamicModalProvider, KdsEmptyState, KdsFileExplorer, KdsIcon, KdsInfoToggleButton, KdsInlineMessage, _sfc_main$C as KdsIntervalInput, KdsLabel, KdsLink, _sfc_main$1r as KdsLinkButton, KdsLinkCard, KdsListContainer, KdsLiveStatus, KdsLoadingSkeleton, KdsLoadingSpinner, _sfc_main$1d as KdsMenu, _sfc_main$1h as KdsMenuButton, KdsMissingValueIcon, KdsModal, KdsModalLayout, _sfc_main$w as KdsMultiSelectDropdown, KdsNavItem, KdsNavigation, _sfc_main$V as KdsNumberInput, KdsPanel, _sfc_main$R as KdsPasswordInput, _sfc_main$I as KdsPatternInput, KdsPopover, KdsPreviewList, KdsProgressButton, KdsRadioButton, KdsRadioButtonGroup, KdsResponsiveButtonGroup, KdsSearchInput, KdsSelectableCard, KdsSortableListBox, KdsSplitButton, KdsSubText, KdsTabBar, KdsTextInput, KdsTextarea, _sfc_main$E as KdsTimeInput, _sfc_main$1p as KdsToggleButton, KdsTwinList, _sfc_main$Q as KdsUsernameInput, KdsValueSwitch, KdsVariableToggleButton, kdsAvatarSize, kdsAvatarSizes, kdsBadgeSize, kdsBadgeSizes, kdsBadgeVariant, kdsBadgeVariants, kdsButtonSize, kdsButtonSizes, kdsButtonVariant, kdsButtonVariants, kdsCardVariant, kdsCardVariants, kdsCheckboxGroupAlignment, kdsCheckboxGroupAlignments, kdsCheckboxValue, kdsCheckboxValues, kdsColorSwatchSize, kdsColorSwatchSizes, kdsColorSwatchType, kdsColorSwatchTypes, kdsDarkModeType, kdsDarkModeTypes, kdsDataTypeSize, kdsDataTypeSizes, kdsDateFormatCategories, kdsDateFormatCategory, kdsFileExplorerDraggingAnimationMode, kdsFileExplorerDraggingAnimationModes, kdsFileExplorerSize, kdsFileExplorerSizes, kdsIconName, iconNames as kdsIconNames, kdsIconSize, kdsIconSizes, kdsInlineMessageVariant, kdsInlineMessageVariants, kdsIntervalDirectionalities, kdsIntervalDirectionality, kdsIntervalInputFormat, kdsIntervalInputFormats, kdsLiveStatusSize, kdsLiveStatusSizes, kdsLiveStatusStatus, kdsLiveStatusStatuses, kdsLoadingSkeletonVariant, kdsLoadingSkeletonVariants, kdsLoadingSpinnerVariant, kdsLoadingSpinnerVariants, kdsModalClosedBy, kdsModalClosedByOptions, kdsModalHeight, kdsModalHeightSizes, kdsModalVariant, kdsModalVariants, kdsModalWidth, kdsModalWidthSizes, kdsPanelBodyOverflow, kdsPanelBodyOverflows, kdsPanelBodyVariant, kdsPanelBodyVariants, kdsPasswordInputAutocomplete, kdsPasswordInputAutocompletes, kdsPasswordInputVariant, kdsPasswordInputVariants, kdsPopoverPlacement, kdsPopoverPlacements, kdsPopoverRole, kdsPopoverRoles, kdsPopoverType, kdsPopoverTypes, kdsProgressButtonState, kdsProgressButtonStates, kdsRadioButtonGroupAlignment, kdsRadioButtonGroupAlignments, kdsResponsiveButtonGroupAlignment, kdsResponsiveButtonGroupAlignments, kdsTabBarSize, kdsTabBarSizes, kdsTemporalType, kdsTemporalTypes, kdsTimeInputGranularities, kdsTimeInputGranularity, kdsToggleButtonVariant, kdsToggleButtonVariants, kdsTwinListSearchMode, kdsTwinListSearchModes, kdsTypeIconName, typeIconNames as kdsTypeIconNames, kdsUsernameInputAutocomplete, kdsUsernameInputAutocompletes, kdsValueSwitchSize, kdsValueSwitchSizes, kdsValueSwitchVariant, kdsValueSwitchVariants, useKdsDarkMode, useKdsDynamicModal, useKdsIsTruncated, useKdsLegacyMode };
|
|
26066
|
+
export { KdsAccordion, KdsAvatar, KdsAvatarCounter, KdsBadge, KdsBreadcrumb, _sfc_main$1s as KdsButton, _sfc_main$h as KdsCard, _sfc_main$10 as KdsCheckbox, KdsCheckboxGroup, KdsClickableCard, _sfc_main$S as KdsColorInput, KdsColorSwatch, _sfc_main$1c as KdsContextMenu, KdsDataType, _sfc_main$L as KdsDateInput, _sfc_main$J as KdsDateTimeFormatInput, KdsDescription, KdsDivider, KdsDonutChart, _sfc_main$z as KdsDropdown, KdsDynamicModalProvider, KdsEmptyState, KdsFileExplorer, KdsIcon, KdsInfoToggleButton, KdsInlineMessage, _sfc_main$C as KdsIntervalInput, KdsLabel, KdsLink, _sfc_main$1r as KdsLinkButton, KdsLinkCard, KdsListContainer, KdsLiveStatus, KdsLoadingSkeleton, KdsLoadingSpinner, _sfc_main$1d as KdsMenu, _sfc_main$1h as KdsMenuButton, KdsMissingValueIcon, KdsModal, KdsModalLayout, _sfc_main$w as KdsMultiSelectDropdown, KdsNavItem, KdsNavigation, _sfc_main$V as KdsNumberInput, KdsPanel, _sfc_main$R as KdsPasswordInput, _sfc_main$I as KdsPatternInput, KdsPopover, KdsPreviewList, KdsProgressBar, KdsProgressButton, KdsRadioButton, KdsRadioButtonGroup, KdsResponsiveButtonGroup, KdsSearchInput, KdsSelectableCard, KdsSortableListBox, KdsSplitButton, KdsSubText, KdsTabBar, KdsTextInput, KdsTextarea, _sfc_main$E as KdsTimeInput, _sfc_main$1p as KdsToggleButton, KdsTwinList, _sfc_main$Q as KdsUsernameInput, KdsValueSwitch, KdsVariableToggleButton, kdsAvatarSize, kdsAvatarSizes, kdsBadgeSize, kdsBadgeSizes, kdsBadgeVariant, kdsBadgeVariants, kdsButtonSize, kdsButtonSizes, kdsButtonVariant, kdsButtonVariants, kdsCardVariant, kdsCardVariants, kdsCheckboxGroupAlignment, kdsCheckboxGroupAlignments, kdsCheckboxValue, kdsCheckboxValues, kdsColorSwatchSize, kdsColorSwatchSizes, kdsColorSwatchType, kdsColorSwatchTypes, kdsDarkModeType, kdsDarkModeTypes, kdsDataTypeSize, kdsDataTypeSizes, kdsDateFormatCategories, kdsDateFormatCategory, kdsFileExplorerDraggingAnimationMode, kdsFileExplorerDraggingAnimationModes, kdsFileExplorerSize, kdsFileExplorerSizes, kdsIconName, iconNames as kdsIconNames, kdsIconSize, kdsIconSizes, kdsInlineMessageVariant, kdsInlineMessageVariants, kdsIntervalDirectionalities, kdsIntervalDirectionality, kdsIntervalInputFormat, kdsIntervalInputFormats, kdsLiveStatusSize, kdsLiveStatusSizes, kdsLiveStatusStatus, kdsLiveStatusStatuses, kdsLoadingSkeletonVariant, kdsLoadingSkeletonVariants, kdsLoadingSpinnerVariant, kdsLoadingSpinnerVariants, kdsModalClosedBy, kdsModalClosedByOptions, kdsModalHeight, kdsModalHeightSizes, kdsModalVariant, kdsModalVariants, kdsModalWidth, kdsModalWidthSizes, kdsPanelBodyOverflow, kdsPanelBodyOverflows, kdsPanelBodyVariant, kdsPanelBodyVariants, kdsPasswordInputAutocomplete, kdsPasswordInputAutocompletes, kdsPasswordInputVariant, kdsPasswordInputVariants, kdsPopoverPlacement, kdsPopoverPlacements, kdsPopoverRole, kdsPopoverRoles, kdsPopoverType, kdsPopoverTypes, kdsProgressBarSize, kdsProgressBarSizes, kdsProgressButtonState, kdsProgressButtonStates, kdsRadioButtonGroupAlignment, kdsRadioButtonGroupAlignments, kdsResponsiveButtonGroupAlignment, kdsResponsiveButtonGroupAlignments, kdsTabBarSize, kdsTabBarSizes, kdsTemporalType, kdsTemporalTypes, kdsTimeInputGranularities, kdsTimeInputGranularity, kdsToggleButtonVariant, kdsToggleButtonVariants, kdsTwinListSearchMode, kdsTwinListSearchModes, kdsTypeIconName, typeIconNames as kdsTypeIconNames, kdsUsernameInputAutocomplete, kdsUsernameInputAutocompletes, kdsValueSwitchSize, kdsValueSwitchSizes, kdsValueSwitchVariant, kdsValueSwitchVariants, useKdsDarkMode, useKdsDynamicModal, useKdsIsTruncated, useKdsLegacyMode };
|
|
26010
26067
|
//# sourceMappingURL=index.js.map
|