@iris-ui-kit/vue 0.2.36 → 0.2.38
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/admin.cjs +1 -1
- package/dist/admin.cjs.map +1 -1
- package/dist/admin.js +3 -3
- package/dist/chunk-5Q3JCKNE.js +380 -0
- package/dist/chunk-5Q3JCKNE.js.map +1 -0
- package/dist/{chunk-FZI5BGWH.js → chunk-IFRH33BT.js} +5 -5
- package/dist/chunk-IFRH33BT.js.map +1 -0
- package/dist/{chunk-S43IHHBU.js → chunk-U635XRYU.js} +27 -8
- package/dist/chunk-U635XRYU.js.map +1 -0
- package/dist/grid.cjs +398 -0
- package/dist/grid.cjs.map +1 -0
- package/dist/grid.d.cts +184 -0
- package/dist/grid.d.ts +184 -0
- package/dist/grid.js +4 -0
- package/dist/grid.js.map +1 -0
- package/dist/index.cjs +1858 -386
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +123 -30
- package/dist/index.d.ts +123 -30
- package/dist/index.js +1456 -386
- package/dist/index.js.map +1 -1
- package/dist/layouts.d.cts +2 -2
- package/dist/layouts.d.ts +2 -2
- package/dist/motion.cjs +24 -5
- package/dist/motion.cjs.map +1 -1
- package/dist/motion.d.cts +1 -1
- package/dist/motion.d.ts +1 -1
- package/dist/motion.js +1 -1
- package/package.json +7 -2
- package/dist/chunk-FZI5BGWH.js.map +0 -1
- package/dist/chunk-S43IHHBU.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { ShallowRef, Ref, VNode, PropType, ComputedRef, InjectionKey } from 'vue
|
|
|
3
3
|
import * as _iris_ui_kit_core from '@iris-ui-kit/core';
|
|
4
4
|
import { ReadonlyStore, Store, RealtimeHandlers, RealtimeOptions, RealtimeStatus, ResilientFetcherOptions, ResilientFetcher, DisposableScope, Variant, Size, Placement, FloatingMachine, TableViewConfig, TableTab, AuditLogEntry, TableNamedView, TableViewSnapshot, SpreadsheetXmlOptions } from '@iris-ui-kit/core';
|
|
5
5
|
export { AdminPreferences, AdminPreferencesState, Align, DataSourceConfig, DataSourceController, DataSourceMode, DataSourceMutateOptions, DataSourceQuery, DataSourceState, DataViewColumn, FloatingEvent, FloatingMachine, FloatingState, GroupedViewConfig, GroupedViewState, GroupedViewStore, IrisHsva, PageItem as IrisPageItem, IrisRgba, Machine, MachineConfig, MachineEvent, MachineState, MutateOptions, NavNode, Placement, ResourceController, ResourceControllerConfig, ResourceQuery, ResourceState, RowMutateOptions, Side, Size, StateNode, Store, TabItem, TabsNav, TabsNavConfig, TabsNavState, Transition, Variant, addDays, addMonths, buildMonthMatrix, clamp01, clampDate, composeEventHandlers, createAdminPreferences, createClientDataSource, createClientFetcher, createDataSource, createFloatingMachine, createGroupedView, createMachine, createResourceController, createStore, createTabsNav, endOfMonth, filterNavByAccess, findNavNode, findNavPath, firstLeaf, flattenNav, formatLocalISO, formatMonthYear, generateId, getPageRange, getWeekdayNames, hexToRgba, hsvToRgb, hsvaToRgba, isBranch, isClosable, isOutOfRange, isSameDay, isSameMonth, localStorageAdminPreferencesStorage, mergeProps, nodeAllowsRoles, parseCsv, rgbToHex, rgbToHsv, rgbaToHsva, startOfDay, startOfMonth, visibleNav } from '@iris-ui-kit/core';
|
|
6
|
+
export { UseGridClipboardOptions, UseGridClipboardResult, UseGridColumnsOptions, UseGridColumnsResult, UseGridCoreOptions, UseGridEditingOptions, UseGridEditingResult, UseGridExpansionOptions, UseGridExpansionResult, UseGridFilteringOptions, UseGridFilteringResult, UseGridPaginationOptions, UseGridPaginationResult, UseGridRangeOptions, UseGridRangeResult, UseGridRowsOptions, UseGridRowsResult, UseGridSelectionOptions, UseGridSelectionResult, UseGridSortingOptions, UseGridSortingResult, UseGridVirtualOptions, UseGridVirtualResult, useGridClipboard, useGridColumns, useGridCore, useGridEditing, useGridExpansion, useGridFiltering, useGridPagination, useGridRange, useGridRows, useGridSelection, useGridSorting, useGridVirtual } from './grid.js';
|
|
6
7
|
export { IrisThemeContext, IrisThemeKey, ThemeProvider, UseThemeReturn, useColorScheme, useDirection, useTheme, useThemeContext } from './theme.js';
|
|
7
8
|
export { ApplySkinResult, LoadSkinOptions, ResolvedSkin, Skin, SkinBootScriptConfig, SkinCatalog, SkinCatalogConfig, SkinEngine, SkinEngineConfig, SkinError, SkinErrorCode, SkinLookup, SkinManifest, SkinManifestEntry, SkinMode, SkinPatch, SkinRegistry, SkinResolutionError, SkinStorage, SkinTokenOverrides, applySkin, builtinSkins, createSkinCatalog, createSkinEngine, createSkinRegistry, darkSkin, lightSkin, loadSkin, localStorageSkinStorage, memorySkinStorage, renderSkinStyle, resolveSkin, skinBootScript, skinError, skinToCssEntries, validateSkin } from '@iris-ui-kit/skins';
|
|
8
9
|
export { IrisSkinContext, IrisSkinKey, SkinProvider, UseSkinReturn, useSkin, useSkinContext } from './skins.js';
|
|
@@ -28,6 +29,7 @@ export { IrisDashboardCardSpec, IrisDashboardNavItem, IrisDashboardTemplate, Iri
|
|
|
28
29
|
export { IrisClickOutside, IrisCompose, IrisHotkey, IrisLongPress, IrisMovable, IrisMovableBounds, IrisMovablePosition, IrisResizable, IrisResizableHandle, IrisResizableSize, IrisSortable, SORTABLE_ITEM_ATTR } from './behaviors.js';
|
|
29
30
|
export { ApplyThemeResult, ThemeStore, ThemeStoreConfig, applyTheme, createThemeStore, getCssVar, toCssVarName } from '@iris-ui-kit/theme';
|
|
30
31
|
export { ALL_TOKEN_NAMES, AnyToken, COLOR_TOKENS, ColorToken, IrisTheme, IrisThemeColors, IrisThemeRadii, IrisThemeSpacing, IrisThemeType, RADII_TOKENS, RadiusToken, SPACING_TOKENS, SpacingToken, darkTheme, lightTheme } from '@iris-ui-kit/tokens';
|
|
32
|
+
export { GridColumnPin, GridCore, GridFeature, GridRowsCommitOptions } from '@iris-ui-kit/core/grid';
|
|
31
33
|
|
|
32
34
|
/**
|
|
33
35
|
* Bridge a framework-agnostic `@iris-ui-kit/core` store into a Vue ref — updates on
|
|
@@ -1088,6 +1090,7 @@ declare const IrisTextarea: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
1088
1090
|
onFocus?: ((_event: FocusEvent) => any) | undefined;
|
|
1089
1091
|
"onUpdate:modelValue"?: ((_value: string) => any) | undefined;
|
|
1090
1092
|
}>, {
|
|
1093
|
+
rows: number;
|
|
1091
1094
|
size: Size;
|
|
1092
1095
|
id: string;
|
|
1093
1096
|
invalid: boolean;
|
|
@@ -1096,7 +1099,6 @@ declare const IrisTextarea: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
1096
1099
|
placeholder: string;
|
|
1097
1100
|
readonly: boolean;
|
|
1098
1101
|
ariaDescribedby: string;
|
|
1099
|
-
rows: number;
|
|
1100
1102
|
autosize: boolean;
|
|
1101
1103
|
maxRows: number;
|
|
1102
1104
|
maxLength: number;
|
|
@@ -1356,9 +1358,9 @@ declare const IrisOtpInput: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
1356
1358
|
"onUpdate:modelValue"?: ((_value: string) => any) | undefined;
|
|
1357
1359
|
onComplete?: ((_value: string) => any) | undefined;
|
|
1358
1360
|
}>, {
|
|
1361
|
+
length: number;
|
|
1359
1362
|
size: IrisOtpInputSize;
|
|
1360
1363
|
type: IrisOtpInputType;
|
|
1361
|
-
length: number;
|
|
1362
1364
|
id: string;
|
|
1363
1365
|
mask: boolean;
|
|
1364
1366
|
invalid: boolean;
|
|
@@ -1636,6 +1638,7 @@ declare const IrisCombobox: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
1636
1638
|
"onUpdate:modelValue"?: ((_value: string) => any) | undefined;
|
|
1637
1639
|
onCommit?: ((_text: string) => any) | undefined;
|
|
1638
1640
|
}>, {
|
|
1641
|
+
virtual: boolean;
|
|
1639
1642
|
size: IrisComboboxSize;
|
|
1640
1643
|
id: string;
|
|
1641
1644
|
invalid: boolean;
|
|
@@ -1644,7 +1647,6 @@ declare const IrisCombobox: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
1644
1647
|
modelValue: string;
|
|
1645
1648
|
placeholder: string;
|
|
1646
1649
|
ariaDescribedby: string;
|
|
1647
|
-
virtual: boolean;
|
|
1648
1650
|
emptyText: string;
|
|
1649
1651
|
allowCommit: boolean;
|
|
1650
1652
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
@@ -1910,8 +1912,8 @@ declare const IrisSwitch: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
1910
1912
|
onChange?: ((_value: boolean) => any) | undefined;
|
|
1911
1913
|
"onUpdate:modelValue"?: ((_value: boolean) => any) | undefined;
|
|
1912
1914
|
}>, {
|
|
1913
|
-
size: Size;
|
|
1914
1915
|
name: string;
|
|
1916
|
+
size: Size;
|
|
1915
1917
|
id: string;
|
|
1916
1918
|
invalid: boolean;
|
|
1917
1919
|
disabled: boolean;
|
|
@@ -2027,8 +2029,8 @@ declare const IrisCheckbox: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
2027
2029
|
"onUpdate:modelValue"?: ((_value: boolean) => any) | undefined;
|
|
2028
2030
|
}>, {
|
|
2029
2031
|
value: string | number;
|
|
2030
|
-
size: Size;
|
|
2031
2032
|
name: string;
|
|
2033
|
+
size: Size;
|
|
2032
2034
|
id: string;
|
|
2033
2035
|
invalid: boolean;
|
|
2034
2036
|
ariaLabel: string;
|
|
@@ -2093,8 +2095,8 @@ declare const IrisRadioGroup: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
2093
2095
|
}>> & Readonly<{
|
|
2094
2096
|
"onUpdate:modelValue"?: ((_value: string | number | boolean) => any) | undefined;
|
|
2095
2097
|
}>, {
|
|
2096
|
-
size: Size;
|
|
2097
2098
|
name: string;
|
|
2099
|
+
size: Size;
|
|
2098
2100
|
disabled: boolean;
|
|
2099
2101
|
modelValue: string | number | boolean | null;
|
|
2100
2102
|
defaultValue: string | number | boolean | null;
|
|
@@ -2428,16 +2430,16 @@ declare const IrisSelect: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
2428
2430
|
"onUpdate:modelValue"?: ((_value: unknown) => any) | undefined;
|
|
2429
2431
|
onValueChange?: ((_value: unknown) => any) | undefined;
|
|
2430
2432
|
}>, {
|
|
2433
|
+
multiple: boolean;
|
|
2434
|
+
virtual: boolean;
|
|
2431
2435
|
size: Size;
|
|
2432
2436
|
id: string;
|
|
2433
2437
|
invalid: boolean;
|
|
2434
|
-
multiple: boolean;
|
|
2435
2438
|
disabled: boolean;
|
|
2436
2439
|
placement: Placement;
|
|
2437
2440
|
teleport: string | false | HTMLElement;
|
|
2438
2441
|
placeholder: string;
|
|
2439
2442
|
ariaDescribedby: string;
|
|
2440
|
-
virtual: boolean;
|
|
2441
2443
|
defaultValue: undefined;
|
|
2442
2444
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
2443
2445
|
|
|
@@ -2596,8 +2598,8 @@ declare const IrisAvatar: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
2596
2598
|
default: string;
|
|
2597
2599
|
};
|
|
2598
2600
|
}>> & Readonly<{}>, {
|
|
2599
|
-
size: IrisAvatarSize;
|
|
2600
2601
|
name: string;
|
|
2602
|
+
size: IrisAvatarSize;
|
|
2601
2603
|
fallback: string;
|
|
2602
2604
|
src: string;
|
|
2603
2605
|
alt: string;
|
|
@@ -2737,8 +2739,8 @@ declare const IrisIcon: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
2737
2739
|
default: () => IrisIconRegistry;
|
|
2738
2740
|
};
|
|
2739
2741
|
}>> & Readonly<{}>, {
|
|
2740
|
-
size: string | number;
|
|
2741
2742
|
fill: boolean;
|
|
2743
|
+
size: string | number;
|
|
2742
2744
|
title: string;
|
|
2743
2745
|
strokeWidth: number;
|
|
2744
2746
|
registry: IrisIconRegistry;
|
|
@@ -3160,8 +3162,8 @@ declare const IrisPagination: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
3160
3162
|
}>> & Readonly<{
|
|
3161
3163
|
"onUpdate:modelValue"?: ((_value: number) => any) | undefined;
|
|
3162
3164
|
}>, {
|
|
3163
|
-
size: IrisPaginationSize;
|
|
3164
3165
|
pageSize: number;
|
|
3166
|
+
size: IrisPaginationSize;
|
|
3165
3167
|
disabled: boolean;
|
|
3166
3168
|
modelValue: number;
|
|
3167
3169
|
siblingCount: number;
|
|
@@ -3840,8 +3842,8 @@ declare const IrisKbd: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
3840
3842
|
default: string;
|
|
3841
3843
|
};
|
|
3842
3844
|
}>> & Readonly<{}>, {
|
|
3843
|
-
size: IrisKbdSize;
|
|
3844
3845
|
keys: string | string[];
|
|
3846
|
+
size: IrisKbdSize;
|
|
3845
3847
|
separator: string;
|
|
3846
3848
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
3847
3849
|
|
|
@@ -4244,6 +4246,10 @@ interface IrisTableSortState {
|
|
|
4244
4246
|
key: string;
|
|
4245
4247
|
direction: IrisTableSortDirection;
|
|
4246
4248
|
}
|
|
4249
|
+
/** External row sets available to cross-table formula references. */
|
|
4250
|
+
interface IrisTableFormulaTables<Row extends Record<string, unknown> = Record<string, unknown>> {
|
|
4251
|
+
[table: string]: Row[];
|
|
4252
|
+
}
|
|
4247
4253
|
type IrisTableViewConfig = TableViewConfig;
|
|
4248
4254
|
type IrisTableViewSnapshot = TableViewSnapshot;
|
|
4249
4255
|
type IrisTableNamedView = TableNamedView<IrisTableViewSnapshot>;
|
|
@@ -4390,15 +4396,18 @@ interface IrisTableColumn<Row = Record<string, unknown>> {
|
|
|
4390
4396
|
/** Path inside the row to read the default cell value from. Defaults to `key`. */
|
|
4391
4397
|
dataIndex?: keyof Row | string;
|
|
4392
4398
|
/**
|
|
4393
|
-
* Single-line cell formula (batch EK, iris 独有 — vxe has no computed
|
|
4399
|
+
* Single-line cell formula (batch EK/GB, iris 独有 — vxe has no computed
|
|
4394
4400
|
* columns; the closest is a display-only formatter). Evaluated by the core
|
|
4395
4401
|
* `evaluateFormula` parser against each row: field refs + `+ - * / %` +
|
|
4396
4402
|
* whitelist functions SUM/AVG/MIN/MAX/COUNT (case-insensitive), optional
|
|
4397
4403
|
* leading `=`. The COMPUTED value feeds every data consumer — cell render,
|
|
4398
4404
|
* sorting, filtering, summary, range copy and CSV export (all via the
|
|
4399
|
-
* `getCellValue` choke point).
|
|
4400
|
-
*
|
|
4401
|
-
*
|
|
4405
|
+
* `getCellValue` choke point). Cross-table refs read
|
|
4406
|
+
* `formulaTables[table][0][field]`; missing tables/fields fail closed to
|
|
4407
|
+
* null. Replace the `formulaTables` object when referenced rows change;
|
|
4408
|
+
* in-place nested mutation may remain memoized. An `editable` formula column
|
|
4409
|
+
* is DISPLAY-ONLY: inline editing and row mode ignore it. Overrides
|
|
4410
|
+
* `dataIndex`.
|
|
4402
4411
|
*/
|
|
4403
4412
|
formula?: string;
|
|
4404
4413
|
/** Format the masked display value; copyWithFormat uses this string. */
|
|
@@ -4610,6 +4619,14 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4610
4619
|
readonly type: BooleanConstructor;
|
|
4611
4620
|
readonly default: false;
|
|
4612
4621
|
};
|
|
4622
|
+
readonly pinnedColumns: {
|
|
4623
|
+
readonly type: vue.PropType<Record<string, "left" | "right" | null>>;
|
|
4624
|
+
readonly default: undefined;
|
|
4625
|
+
};
|
|
4626
|
+
readonly columnPinMenu: {
|
|
4627
|
+
readonly type: BooleanConstructor;
|
|
4628
|
+
readonly default: false;
|
|
4629
|
+
};
|
|
4613
4630
|
readonly onColumnPinnedChange: {
|
|
4614
4631
|
readonly type: vue.PropType<(key: string, side: "left" | "right" | null) => void>;
|
|
4615
4632
|
readonly default: undefined;
|
|
@@ -4626,6 +4643,10 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4626
4643
|
readonly type: BooleanConstructor;
|
|
4627
4644
|
readonly default: false;
|
|
4628
4645
|
};
|
|
4646
|
+
readonly formulaTables: {
|
|
4647
|
+
readonly type: vue.PropType<IrisTableFormulaTables<Record<string, unknown>>>;
|
|
4648
|
+
readonly default: undefined;
|
|
4649
|
+
};
|
|
4629
4650
|
readonly exportNames: {
|
|
4630
4651
|
readonly type: vue.PropType<Array<{
|
|
4631
4652
|
key: string;
|
|
@@ -4657,6 +4678,10 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4657
4678
|
readonly type: BooleanConstructor;
|
|
4658
4679
|
readonly default: false;
|
|
4659
4680
|
};
|
|
4681
|
+
readonly scrollToTop: {
|
|
4682
|
+
readonly type: BooleanConstructor;
|
|
4683
|
+
readonly default: false;
|
|
4684
|
+
};
|
|
4660
4685
|
readonly importPreview: {
|
|
4661
4686
|
readonly type: BooleanConstructor;
|
|
4662
4687
|
readonly default: false;
|
|
@@ -4681,6 +4706,14 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4681
4706
|
readonly type: vue.PropType<IrisTableClipConfig>;
|
|
4682
4707
|
readonly default: undefined;
|
|
4683
4708
|
};
|
|
4709
|
+
readonly searchHighlight: {
|
|
4710
|
+
readonly type: StringConstructor;
|
|
4711
|
+
readonly default: "";
|
|
4712
|
+
};
|
|
4713
|
+
readonly undo: {
|
|
4714
|
+
readonly type: BooleanConstructor;
|
|
4715
|
+
readonly default: false;
|
|
4716
|
+
};
|
|
4684
4717
|
readonly renderDetail: {
|
|
4685
4718
|
readonly type: vue.PropType<IrisTableRenderDetail<Record<string, unknown>>>;
|
|
4686
4719
|
readonly default: undefined;
|
|
@@ -4721,6 +4754,14 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4721
4754
|
readonly type: vue.PropType<IrisTableColumnVisibility>;
|
|
4722
4755
|
readonly default: undefined;
|
|
4723
4756
|
};
|
|
4757
|
+
readonly columnOrder: {
|
|
4758
|
+
readonly type: vue.PropType<string[]>;
|
|
4759
|
+
readonly default: undefined;
|
|
4760
|
+
};
|
|
4761
|
+
readonly columnFade: {
|
|
4762
|
+
readonly type: BooleanConstructor;
|
|
4763
|
+
readonly default: false;
|
|
4764
|
+
};
|
|
4724
4765
|
readonly filters: {
|
|
4725
4766
|
readonly type: vue.PropType<Record<string, string>>;
|
|
4726
4767
|
readonly default: undefined;
|
|
@@ -4729,6 +4770,10 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4729
4770
|
readonly type: vue.PropType<IrisTableFilterValues>;
|
|
4730
4771
|
readonly default: undefined;
|
|
4731
4772
|
};
|
|
4773
|
+
readonly recentFilters: {
|
|
4774
|
+
readonly type: BooleanConstructor;
|
|
4775
|
+
readonly default: false;
|
|
4776
|
+
};
|
|
4732
4777
|
readonly onFilterValuesChange: {
|
|
4733
4778
|
readonly type: vue.PropType<(next: IrisTableFilterValues) => void>;
|
|
4734
4779
|
readonly default: undefined;
|
|
@@ -4810,6 +4855,8 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4810
4855
|
'update:columnWidths': (_value: IrisTableColumnWidths) => true;
|
|
4811
4856
|
/** Controlled columnVisibility channel (parent owns the map). */
|
|
4812
4857
|
'update:columnVisibility': (_value: IrisTableColumnVisibility) => true;
|
|
4858
|
+
/** Controlled top-level column-order proposal channel. */
|
|
4859
|
+
'update:columnOrder': (_value: string[] | undefined) => true;
|
|
4813
4860
|
rowClick: (_row: Record<string, unknown>, _index: number) => true;
|
|
4814
4861
|
rowDblclick: (_row: Record<string, unknown>, _index: number) => true;
|
|
4815
4862
|
cellEdit: (_payload: IrisTableCellEditEvent<Record<string, unknown>>) => true;
|
|
@@ -4880,6 +4927,14 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4880
4927
|
readonly type: BooleanConstructor;
|
|
4881
4928
|
readonly default: false;
|
|
4882
4929
|
};
|
|
4930
|
+
readonly pinnedColumns: {
|
|
4931
|
+
readonly type: vue.PropType<Record<string, "left" | "right" | null>>;
|
|
4932
|
+
readonly default: undefined;
|
|
4933
|
+
};
|
|
4934
|
+
readonly columnPinMenu: {
|
|
4935
|
+
readonly type: BooleanConstructor;
|
|
4936
|
+
readonly default: false;
|
|
4937
|
+
};
|
|
4883
4938
|
readonly onColumnPinnedChange: {
|
|
4884
4939
|
readonly type: vue.PropType<(key: string, side: "left" | "right" | null) => void>;
|
|
4885
4940
|
readonly default: undefined;
|
|
@@ -4896,6 +4951,10 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4896
4951
|
readonly type: BooleanConstructor;
|
|
4897
4952
|
readonly default: false;
|
|
4898
4953
|
};
|
|
4954
|
+
readonly formulaTables: {
|
|
4955
|
+
readonly type: vue.PropType<IrisTableFormulaTables<Record<string, unknown>>>;
|
|
4956
|
+
readonly default: undefined;
|
|
4957
|
+
};
|
|
4899
4958
|
readonly exportNames: {
|
|
4900
4959
|
readonly type: vue.PropType<Array<{
|
|
4901
4960
|
key: string;
|
|
@@ -4927,6 +4986,10 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4927
4986
|
readonly type: BooleanConstructor;
|
|
4928
4987
|
readonly default: false;
|
|
4929
4988
|
};
|
|
4989
|
+
readonly scrollToTop: {
|
|
4990
|
+
readonly type: BooleanConstructor;
|
|
4991
|
+
readonly default: false;
|
|
4992
|
+
};
|
|
4930
4993
|
readonly importPreview: {
|
|
4931
4994
|
readonly type: BooleanConstructor;
|
|
4932
4995
|
readonly default: false;
|
|
@@ -4951,6 +5014,14 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4951
5014
|
readonly type: vue.PropType<IrisTableClipConfig>;
|
|
4952
5015
|
readonly default: undefined;
|
|
4953
5016
|
};
|
|
5017
|
+
readonly searchHighlight: {
|
|
5018
|
+
readonly type: StringConstructor;
|
|
5019
|
+
readonly default: "";
|
|
5020
|
+
};
|
|
5021
|
+
readonly undo: {
|
|
5022
|
+
readonly type: BooleanConstructor;
|
|
5023
|
+
readonly default: false;
|
|
5024
|
+
};
|
|
4954
5025
|
readonly renderDetail: {
|
|
4955
5026
|
readonly type: vue.PropType<IrisTableRenderDetail<Record<string, unknown>>>;
|
|
4956
5027
|
readonly default: undefined;
|
|
@@ -4991,6 +5062,14 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4991
5062
|
readonly type: vue.PropType<IrisTableColumnVisibility>;
|
|
4992
5063
|
readonly default: undefined;
|
|
4993
5064
|
};
|
|
5065
|
+
readonly columnOrder: {
|
|
5066
|
+
readonly type: vue.PropType<string[]>;
|
|
5067
|
+
readonly default: undefined;
|
|
5068
|
+
};
|
|
5069
|
+
readonly columnFade: {
|
|
5070
|
+
readonly type: BooleanConstructor;
|
|
5071
|
+
readonly default: false;
|
|
5072
|
+
};
|
|
4994
5073
|
readonly filters: {
|
|
4995
5074
|
readonly type: vue.PropType<Record<string, string>>;
|
|
4996
5075
|
readonly default: undefined;
|
|
@@ -4999,6 +5078,10 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
4999
5078
|
readonly type: vue.PropType<IrisTableFilterValues>;
|
|
5000
5079
|
readonly default: undefined;
|
|
5001
5080
|
};
|
|
5081
|
+
readonly recentFilters: {
|
|
5082
|
+
readonly type: BooleanConstructor;
|
|
5083
|
+
readonly default: false;
|
|
5084
|
+
};
|
|
5002
5085
|
readonly onFilterValuesChange: {
|
|
5003
5086
|
readonly type: vue.PropType<(next: IrisTableFilterValues) => void>;
|
|
5004
5087
|
readonly default: undefined;
|
|
@@ -5075,12 +5158,14 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
5075
5158
|
onMultiSortChange?: ((_value: IrisTableSortState[]) => any) | undefined;
|
|
5076
5159
|
"onUpdate:columnWidths"?: ((_value: IrisTableColumnWidths) => any) | undefined;
|
|
5077
5160
|
"onUpdate:columnVisibility"?: ((_value: IrisTableColumnVisibility) => any) | undefined;
|
|
5161
|
+
"onUpdate:columnOrder"?: ((_value: string[] | undefined) => any) | undefined;
|
|
5078
5162
|
onRowClick?: ((_row: Record<string, unknown>, _index: number) => any) | undefined;
|
|
5079
5163
|
onRowDblclick?: ((_row: Record<string, unknown>, _index: number) => any) | undefined;
|
|
5080
5164
|
onCellEdit?: ((_payload: IrisTableCellEditEvent<Record<string, unknown>>) => any) | undefined;
|
|
5081
5165
|
onExpandedRowsChange?: ((_keys: (string | number)[]) => any) | undefined;
|
|
5082
5166
|
}>, {
|
|
5083
5167
|
readonly sort: IrisTableSortState | null;
|
|
5168
|
+
readonly selection: (string | number)[];
|
|
5084
5169
|
readonly data: Record<string, unknown>[];
|
|
5085
5170
|
readonly pattern: boolean;
|
|
5086
5171
|
readonly error: boolean;
|
|
@@ -5088,8 +5173,10 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
5088
5173
|
readonly filters: Record<string, string>;
|
|
5089
5174
|
readonly toolbar: IrisTableToolbarConfig;
|
|
5090
5175
|
readonly density: IrisTableDensity;
|
|
5176
|
+
readonly undo: boolean;
|
|
5177
|
+
readonly onDataChange: (rows: Array<Record<string, unknown>>) => void;
|
|
5091
5178
|
readonly formConfig: IrisTableFormConfig;
|
|
5092
|
-
readonly selectable: "
|
|
5179
|
+
readonly selectable: "single" | "none" | "multi";
|
|
5093
5180
|
readonly proxyConfig: IrisTableProxyConfig<Record<string, unknown>>;
|
|
5094
5181
|
readonly rowKey: string;
|
|
5095
5182
|
readonly seq: boolean;
|
|
@@ -5111,10 +5198,13 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
5111
5198
|
readonly onActiveViewChange: (key: string | null) => void;
|
|
5112
5199
|
readonly tableTabs: _iris_ui_kit_core.TableTab[];
|
|
5113
5200
|
readonly pinnedDrag: boolean;
|
|
5201
|
+
readonly pinnedColumns: Record<string, "left" | "right" | null>;
|
|
5202
|
+
readonly columnPinMenu: boolean;
|
|
5114
5203
|
readonly onColumnPinnedChange: (key: string, side: "left" | "right" | null) => void;
|
|
5115
5204
|
readonly onPinnedCountChange: (count: number) => void;
|
|
5116
5205
|
readonly autoDetectTypes: boolean;
|
|
5117
5206
|
readonly responsive: boolean;
|
|
5207
|
+
readonly formulaTables: IrisTableFormulaTables<Record<string, unknown>>;
|
|
5118
5208
|
readonly exportNames: {
|
|
5119
5209
|
key: string;
|
|
5120
5210
|
ref: () => Array<Record<string, unknown>>;
|
|
@@ -5123,12 +5213,14 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
5123
5213
|
readonly columnWidths: IrisTableColumnWidths;
|
|
5124
5214
|
readonly virtualScroll: IrisTableVirtualOptions;
|
|
5125
5215
|
readonly printable: boolean;
|
|
5216
|
+
readonly scrollToTop: boolean;
|
|
5126
5217
|
readonly importPreview: boolean;
|
|
5127
5218
|
readonly onRetry: (() => void) | undefined;
|
|
5128
5219
|
readonly columnVirtualization: boolean;
|
|
5129
5220
|
readonly keyboardNavigation: boolean;
|
|
5130
5221
|
readonly cellRange: boolean;
|
|
5131
5222
|
readonly clipConfig: IrisTableClipConfig;
|
|
5223
|
+
readonly searchHighlight: string;
|
|
5132
5224
|
readonly renderDetail: IrisTableRenderDetail<Record<string, unknown>>;
|
|
5133
5225
|
readonly rowExpandable: IrisTableRowExpandable<Record<string, unknown>>;
|
|
5134
5226
|
readonly defaultExpandedRowKeys: (string | number)[];
|
|
@@ -5136,7 +5228,10 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
5136
5228
|
readonly treeSelectionCascade: boolean;
|
|
5137
5229
|
readonly auditLog: boolean;
|
|
5138
5230
|
readonly columnVisibility: IrisTableColumnVisibility;
|
|
5231
|
+
readonly columnOrder: string[];
|
|
5232
|
+
readonly columnFade: boolean;
|
|
5139
5233
|
readonly filterValues: IrisTableFilterValues;
|
|
5234
|
+
readonly recentFilters: boolean;
|
|
5140
5235
|
readonly onFilterValuesChange: (next: IrisTableFilterValues) => void;
|
|
5141
5236
|
readonly contextMenu: IrisTableContextMenuConfig<Record<string, unknown>>;
|
|
5142
5237
|
readonly lazyLoad: (row: Record<string, unknown>, load: (children: Array<Record<string, unknown>>) => void) => void;
|
|
@@ -5144,8 +5239,6 @@ declare const IrisTable: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
5144
5239
|
readonly spanMethod: (params: IrisTableSpanMethodParams) => IrisTableSpan | null;
|
|
5145
5240
|
readonly columnDrag: IrisTableColumnDrag<Record<string, unknown>>;
|
|
5146
5241
|
readonly rowDrag: IrisTableRowDrag<Record<string, unknown>>;
|
|
5147
|
-
readonly onDataChange: (rows: Array<Record<string, unknown>>) => void;
|
|
5148
|
-
readonly selection: (string | number)[];
|
|
5149
5242
|
readonly defaultSelection: (string | number)[];
|
|
5150
5243
|
readonly defaultSort: IrisTableSortState | null;
|
|
5151
5244
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
@@ -5990,12 +6083,12 @@ declare const IrisTree: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
5990
6083
|
"onUpdate:selected"?: ((_value: string[]) => any) | undefined;
|
|
5991
6084
|
onCheckedChange?: ((_checked: string[]) => any) | undefined;
|
|
5992
6085
|
}>, {
|
|
6086
|
+
defaultExpanded: string[];
|
|
5993
6087
|
error: boolean;
|
|
5994
6088
|
loading: boolean;
|
|
5995
6089
|
expanded: string[];
|
|
5996
6090
|
ariaLabel: string;
|
|
5997
6091
|
selected: string[];
|
|
5998
|
-
defaultExpanded: string[];
|
|
5999
6092
|
defaultSelected: string[];
|
|
6000
6093
|
selectionMode: IrisTreeSelectionMode;
|
|
6001
6094
|
checkable: boolean;
|
|
@@ -6287,10 +6380,10 @@ declare const IrisDescriptions: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
6287
6380
|
default: boolean;
|
|
6288
6381
|
};
|
|
6289
6382
|
}>> & Readonly<{}>, {
|
|
6383
|
+
columns: number;
|
|
6290
6384
|
items: IrisDescriptionsItem[];
|
|
6291
6385
|
layout: IrisDescriptionsLayout;
|
|
6292
6386
|
bordered: boolean;
|
|
6293
|
-
columns: number;
|
|
6294
6387
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
6295
6388
|
|
|
6296
6389
|
interface IrisTransferItem {
|
|
@@ -6387,10 +6480,10 @@ declare const IrisTransfer: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
6387
6480
|
}>> & Readonly<{
|
|
6388
6481
|
"onUpdate:modelValue"?: ((_values: string[]) => any) | undefined;
|
|
6389
6482
|
}>, {
|
|
6483
|
+
virtual: IrisTransferVirtualOptions;
|
|
6390
6484
|
disabled: boolean;
|
|
6391
6485
|
options: IrisTransferItem[];
|
|
6392
6486
|
modelValue: string[];
|
|
6393
|
-
virtual: IrisTransferVirtualOptions;
|
|
6394
6487
|
titles: string[];
|
|
6395
6488
|
searchable: boolean;
|
|
6396
6489
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
@@ -6712,6 +6805,7 @@ declare const IrisTreeSelect: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
6712
6805
|
}>> & Readonly<{
|
|
6713
6806
|
"onUpdate:modelValue"?: ((_value: string) => any) | undefined;
|
|
6714
6807
|
}>, {
|
|
6808
|
+
defaultExpanded: string[];
|
|
6715
6809
|
size: IrisTreeSelectSize;
|
|
6716
6810
|
id: string;
|
|
6717
6811
|
invalid: boolean;
|
|
@@ -6720,7 +6814,6 @@ declare const IrisTreeSelect: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
6720
6814
|
modelValue: string;
|
|
6721
6815
|
placeholder: string;
|
|
6722
6816
|
ariaDescribedby: string;
|
|
6723
|
-
defaultExpanded: string[];
|
|
6724
6817
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
6725
6818
|
|
|
6726
6819
|
interface IrisMentionOption {
|
|
@@ -6836,6 +6929,8 @@ declare const IrisMentions: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
6836
6929
|
}>> & Readonly<{
|
|
6837
6930
|
"onUpdate:modelValue"?: ((_value: string) => any) | undefined;
|
|
6838
6931
|
}>, {
|
|
6932
|
+
rows: number;
|
|
6933
|
+
virtual: boolean;
|
|
6839
6934
|
id: string;
|
|
6840
6935
|
invalid: boolean;
|
|
6841
6936
|
disabled: boolean;
|
|
@@ -6844,8 +6939,6 @@ declare const IrisMentions: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
6844
6939
|
placeholder: string;
|
|
6845
6940
|
ariaDescribedby: string;
|
|
6846
6941
|
prefix: string;
|
|
6847
|
-
rows: number;
|
|
6848
|
-
virtual: boolean;
|
|
6849
6942
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
6850
6943
|
|
|
6851
6944
|
type IrisCascaderSize = 'sm' | 'md' | 'lg';
|
|
@@ -6949,6 +7042,7 @@ declare const IrisCascader: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
6949
7042
|
}>> & Readonly<{
|
|
6950
7043
|
"onUpdate:modelValue"?: ((_path: string[]) => any) | undefined;
|
|
6951
7044
|
}>, {
|
|
7045
|
+
virtual: boolean;
|
|
6952
7046
|
size: IrisCascaderSize;
|
|
6953
7047
|
id: string;
|
|
6954
7048
|
invalid: boolean;
|
|
@@ -6958,7 +7052,6 @@ declare const IrisCascader: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
6958
7052
|
modelValue: string[];
|
|
6959
7053
|
placeholder: string;
|
|
6960
7054
|
ariaDescribedby: string;
|
|
6961
|
-
virtual: boolean;
|
|
6962
7055
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
6963
7056
|
|
|
6964
7057
|
type IrisSegmentedSize = 'sm' | 'md' | 'lg';
|
|
@@ -7981,8 +8074,8 @@ declare const IrisMasonry: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
7981
8074
|
default: number;
|
|
7982
8075
|
};
|
|
7983
8076
|
}>> & Readonly<{}>, {
|
|
7984
|
-
gap: number;
|
|
7985
8077
|
columns: number;
|
|
8078
|
+
gap: number;
|
|
7986
8079
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
7987
8080
|
|
|
7988
8081
|
/**
|
|
@@ -8383,9 +8476,9 @@ declare const IrisFileUpload: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
8383
8476
|
reason: "size" | "count" | "type";
|
|
8384
8477
|
}[]) => any) | undefined;
|
|
8385
8478
|
}>, {
|
|
8479
|
+
multiple: boolean;
|
|
8386
8480
|
id: string;
|
|
8387
8481
|
label: string;
|
|
8388
|
-
multiple: boolean;
|
|
8389
8482
|
disabled: boolean;
|
|
8390
8483
|
modelValue: IrisFileUploadFile[];
|
|
8391
8484
|
accept: string;
|
|
@@ -8619,8 +8712,8 @@ declare const IrisCommandPalette: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
8619
8712
|
onSelect?: ((_item: IrisCommandItem) => any) | undefined;
|
|
8620
8713
|
"onUpdate:open"?: ((_value: boolean) => any) | undefined;
|
|
8621
8714
|
}>, {
|
|
8622
|
-
open: boolean;
|
|
8623
8715
|
filter: (query: string, item: IrisCommandItem) => number | null;
|
|
8716
|
+
open: boolean;
|
|
8624
8717
|
placeholder: string;
|
|
8625
8718
|
emptyText: string;
|
|
8626
8719
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
@@ -8852,4 +8945,4 @@ declare const IrisDateRangePicker: vue.DefineComponent<vue.ExtractPropTypes<{
|
|
|
8852
8945
|
weekStartsOn: number;
|
|
8853
8946
|
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
|
|
8854
8947
|
|
|
8855
|
-
export { type AccordionContext, AccordionContextKey, type DialogContext, DialogContextKey, type DragState, type DrawerContext, DrawerContextKey, type DropdownContext, DropdownContextKey, IrisAccordion, IrisAccordionItem, type IrisAccordionValue, IrisAffix, IrisAlert, type IrisAlertTone, IrisAnchor, type IrisAnchorItem, IrisAspectRatio, IrisAvatar, type IrisAvatarShape, type IrisAvatarSize, IrisBackTop, IrisBadge, type IrisBadgeSize, type IrisBadgeTone, type IrisBadgeVariant, IrisBanner, type IrisBannerTone, IrisBreadcrumb, IrisBreadcrumbItem, IrisButton, type IrisButtonProps, type IrisButtonSize, type IrisButtonType, type IrisButtonVariant, IrisCalendar, IrisCard, type IrisCardPadding, type IrisCardVariant, IrisCarousel, IrisCascader, type IrisCascaderNode, type IrisCascaderSize, IrisCheckbox, type IrisCheckboxSize, type IrisCheckboxValue, IrisChip, type IrisChipSize, type IrisChipTone, type IrisChipVariant, IrisColorPicker, IrisCombobox, type IrisComboboxOption, type IrisComboboxSize, type IrisCommandItem, IrisCommandPalette, IrisCopyButton, type IrisCopyButtonSize, IrisCountdown, type IrisCountdownSize, IrisDatePicker, type IrisDateRange, IrisDateRangePicker, IrisDescriptions, type IrisDescriptionsItem, type IrisDescriptionsLayout, IrisDialog, IrisDialogClose, IrisDialogContent, IrisDialogDescription, IrisDialogTitle, IrisDialogTrigger, IrisDivider, type IrisDividerOrientation, type IrisDividerSpacing, IrisDragger, type IrisDraggerPosition, IrisDrawer, IrisDrawerClose, IrisDrawerContent, type IrisDrawerSide, IrisDrawerTitle, IrisDrawerTrigger, IrisDropdown, IrisDropdownItem, IrisDropdownMenu, IrisDropdownSeparator, IrisDropdownTrigger, IrisEmptyState, IrisFieldset, IrisFileUpload, type IrisFileUploadFile, IrisFloatButton, type IrisFloatButtonAction, type IrisFloatButtonShape, IrisFormField, IrisGauge, type IrisGaugeStatus, IrisIcon, IrisImage, IrisInput, type IrisInputSize, type IrisInputType, IrisKbd, type IrisKbdSize, IrisList, type IrisListItem, IrisMarquee, type IrisMarqueeDirection, IrisMasonry, type IrisMentionOption, IrisMentions, IrisMenu, IrisMenuContent, IrisMenuItem, IrisMenuSeparator, IrisMenuSub, IrisMenuTrigger, IrisNumberInput, type IrisNumberInputSize, IrisOtpInput, type IrisOtpInputSize, type IrisOtpInputType, IrisPagination, type IrisPaginationSize, IrisPasswordInput, type IrisPasswordInputSize, IrisPopover, IrisPopoverContent, IrisPopoverTrigger, IrisProgress, IrisProgressCircle, type IrisProgressCircleStatus, type IrisProgressSize, type IrisProgressTone, IrisRadio, IrisRadioGroup, type IrisRadioSize, IrisRangeSlider, type IrisRangeSliderValue, IrisRating, type IrisRatingSize, IrisResizer, type IrisResizerHandle, type IrisResizerSize, IrisResult, type IrisResultStatus, IrisRibbon, type IrisRibbonPlacement, IrisScrollArea, type IrisScrollAreaAxis, IrisSegmented, type IrisSegmentedOption, type IrisSegmentedSize, IrisSelect, type IrisListItem as IrisSelectItem, type IrisSelectProps, type IrisSelectSize, IrisSkeleton, type IrisSkeletonShape, IrisSlider, type IrisSliderOrientation, IrisSlot, IrisSpinner, type IrisSpinnerSize, IrisSplitButton, type IrisSplitButtonAction, type IrisSplitButtonSize, type IrisSplitButtonVariant, IrisSplitter, type IrisSplitterOrientation, IrisStatistic, type IrisStatisticSize, type IrisStatisticTrend, type IrisStepStatus, IrisStepper, type IrisStepperOrientation, IrisStepperStep, IrisSwitch, type IrisSwitchSize, IrisTable, type IrisTableAggregateOp, type IrisTableCellEditEvent, type IrisTableClipConfig, type IrisTableColumn, type IrisTableColumnDrag, type IrisTableColumnVisibility, type IrisTableColumnWidths, type IrisTableContextMenuConfig, type IrisTableContextMenuParams, type IrisTableEditor, type IrisTableExpose, type IrisTableFilterOption, type IrisTableFilterValues, type IrisTableFormConfig, type IrisTableFormField, type IrisTableNamedView, type IrisTableProps, type IrisTableProxyConfig, type IrisTableProxyInfo, type IrisTableProxyQueryParams, type IrisTableRenderDetail, type IrisTableRowDrag, type IrisTableRowExpandable, type IrisTableSortDirection, type IrisTableSortState, type IrisTableSpan, type IrisTableSpanMethodParams, type IrisTableTab, type IrisTableToolbarBatch, type IrisTableToolbarButton, type IrisTableToolbarConfig, type IrisTableViewConfig, type IrisTableViewSnapshot, type IrisTableVirtualOptions, IrisTabs, IrisTabsContent, IrisTabsList, type IrisTabsOrientation, IrisTabsTrigger, IrisTagInput, IrisTextarea, type IrisTextareaSize, IrisTimePicker, type IrisTimePickerFormat, type IrisTimeValue, IrisTimeline, type IrisTimelineItem, type IrisTimelineVariant, type IrisToast, type IrisToastInput, type IrisToastPosition, type IrisToastVariant, IrisToastViewport, IrisToggleGroup, IrisToggleGroupItem, type IrisToggleGroupOrientation, type IrisToggleGroupType, type IrisToggleGroupVariant, IrisToolbar, type IrisToolbarOrientation, IrisTooltip, IrisTour, type IrisTourStep, IrisTransfer, type IrisTransferItem, type IrisTransferVirtualOptions, IrisTree, type IrisTreeNode, IrisTreeSelect, type IrisTreeSelectNode, type IrisTreeSelectSize, type IrisTreeSelectionMode, IrisVirtualScroll, type IrisVirtualScrollAlign, type IrisVirtualScrollExposed, IrisVisuallyHidden, IrisWatermark, type MenuContext, MenuContextKey, type PopoverContext, PopoverContextKey, type StepperContext, StepperContextKey, type TabsContext, TabsContextKey, type ToggleGroupContext, ToggleGroupContextKey, type UseDragOptions, type UseToastReturn, __PROGRESS_STYLE_ID, __SKELETON_STYLE_ID, __SPINNER_STYLE_ID, __resetProgressStyles, __resetSkeletonStyles, __resetSpinnerStyles, clearToasts, composeRefs, defaultFilter, dismissToast, downloadCsv, downloadExcel, exportCsv, exportExcel, findFirstElement, formatBytes, formatRemaining, getToasts, mergeSlotProps, pushToast, subscribeToasts, useDisposableScope, useDrag, useReconnectingSource, useResilientFetcher, useStore, useStoreSelector, useToast };
|
|
8948
|
+
export { type AccordionContext, AccordionContextKey, type DialogContext, DialogContextKey, type DragState, type DrawerContext, DrawerContextKey, type DropdownContext, DropdownContextKey, IrisAccordion, IrisAccordionItem, type IrisAccordionValue, IrisAffix, IrisAlert, type IrisAlertTone, IrisAnchor, type IrisAnchorItem, IrisAspectRatio, IrisAvatar, type IrisAvatarShape, type IrisAvatarSize, IrisBackTop, IrisBadge, type IrisBadgeSize, type IrisBadgeTone, type IrisBadgeVariant, IrisBanner, type IrisBannerTone, IrisBreadcrumb, IrisBreadcrumbItem, IrisButton, type IrisButtonProps, type IrisButtonSize, type IrisButtonType, type IrisButtonVariant, IrisCalendar, IrisCard, type IrisCardPadding, type IrisCardVariant, IrisCarousel, IrisCascader, type IrisCascaderNode, type IrisCascaderSize, IrisCheckbox, type IrisCheckboxSize, type IrisCheckboxValue, IrisChip, type IrisChipSize, type IrisChipTone, type IrisChipVariant, IrisColorPicker, IrisCombobox, type IrisComboboxOption, type IrisComboboxSize, type IrisCommandItem, IrisCommandPalette, IrisCopyButton, type IrisCopyButtonSize, IrisCountdown, type IrisCountdownSize, IrisDatePicker, type IrisDateRange, IrisDateRangePicker, IrisDescriptions, type IrisDescriptionsItem, type IrisDescriptionsLayout, IrisDialog, IrisDialogClose, IrisDialogContent, IrisDialogDescription, IrisDialogTitle, IrisDialogTrigger, IrisDivider, type IrisDividerOrientation, type IrisDividerSpacing, IrisDragger, type IrisDraggerPosition, IrisDrawer, IrisDrawerClose, IrisDrawerContent, type IrisDrawerSide, IrisDrawerTitle, IrisDrawerTrigger, IrisDropdown, IrisDropdownItem, IrisDropdownMenu, IrisDropdownSeparator, IrisDropdownTrigger, IrisEmptyState, IrisFieldset, IrisFileUpload, type IrisFileUploadFile, IrisFloatButton, type IrisFloatButtonAction, type IrisFloatButtonShape, IrisFormField, IrisGauge, type IrisGaugeStatus, IrisIcon, IrisImage, IrisInput, type IrisInputSize, type IrisInputType, IrisKbd, type IrisKbdSize, IrisList, type IrisListItem, IrisMarquee, type IrisMarqueeDirection, IrisMasonry, type IrisMentionOption, IrisMentions, IrisMenu, IrisMenuContent, IrisMenuItem, IrisMenuSeparator, IrisMenuSub, IrisMenuTrigger, IrisNumberInput, type IrisNumberInputSize, IrisOtpInput, type IrisOtpInputSize, type IrisOtpInputType, IrisPagination, type IrisPaginationSize, IrisPasswordInput, type IrisPasswordInputSize, IrisPopover, IrisPopoverContent, IrisPopoverTrigger, IrisProgress, IrisProgressCircle, type IrisProgressCircleStatus, type IrisProgressSize, type IrisProgressTone, IrisRadio, IrisRadioGroup, type IrisRadioSize, IrisRangeSlider, type IrisRangeSliderValue, IrisRating, type IrisRatingSize, IrisResizer, type IrisResizerHandle, type IrisResizerSize, IrisResult, type IrisResultStatus, IrisRibbon, type IrisRibbonPlacement, IrisScrollArea, type IrisScrollAreaAxis, IrisSegmented, type IrisSegmentedOption, type IrisSegmentedSize, IrisSelect, type IrisListItem as IrisSelectItem, type IrisSelectProps, type IrisSelectSize, IrisSkeleton, type IrisSkeletonShape, IrisSlider, type IrisSliderOrientation, IrisSlot, IrisSpinner, type IrisSpinnerSize, IrisSplitButton, type IrisSplitButtonAction, type IrisSplitButtonSize, type IrisSplitButtonVariant, IrisSplitter, type IrisSplitterOrientation, IrisStatistic, type IrisStatisticSize, type IrisStatisticTrend, type IrisStepStatus, IrisStepper, type IrisStepperOrientation, IrisStepperStep, IrisSwitch, type IrisSwitchSize, IrisTable, type IrisTableAggregateOp, type IrisTableCellEditEvent, type IrisTableClipConfig, type IrisTableColumn, type IrisTableColumnDrag, type IrisTableColumnVisibility, type IrisTableColumnWidths, type IrisTableContextMenuConfig, type IrisTableContextMenuParams, type IrisTableEditor, type IrisTableExpose, type IrisTableFilterOption, type IrisTableFilterValues, type IrisTableFormConfig, type IrisTableFormField, type IrisTableFormulaTables, type IrisTableNamedView, type IrisTableProps, type IrisTableProxyConfig, type IrisTableProxyInfo, type IrisTableProxyQueryParams, type IrisTableRenderDetail, type IrisTableRowDrag, type IrisTableRowExpandable, type IrisTableSortDirection, type IrisTableSortState, type IrisTableSpan, type IrisTableSpanMethodParams, type IrisTableTab, type IrisTableToolbarBatch, type IrisTableToolbarButton, type IrisTableToolbarConfig, type IrisTableViewConfig, type IrisTableViewSnapshot, type IrisTableVirtualOptions, IrisTabs, IrisTabsContent, IrisTabsList, type IrisTabsOrientation, IrisTabsTrigger, IrisTagInput, IrisTextarea, type IrisTextareaSize, IrisTimePicker, type IrisTimePickerFormat, type IrisTimeValue, IrisTimeline, type IrisTimelineItem, type IrisTimelineVariant, type IrisToast, type IrisToastInput, type IrisToastPosition, type IrisToastVariant, IrisToastViewport, IrisToggleGroup, IrisToggleGroupItem, type IrisToggleGroupOrientation, type IrisToggleGroupType, type IrisToggleGroupVariant, IrisToolbar, type IrisToolbarOrientation, IrisTooltip, IrisTour, type IrisTourStep, IrisTransfer, type IrisTransferItem, type IrisTransferVirtualOptions, IrisTree, type IrisTreeNode, IrisTreeSelect, type IrisTreeSelectNode, type IrisTreeSelectSize, type IrisTreeSelectionMode, IrisVirtualScroll, type IrisVirtualScrollAlign, type IrisVirtualScrollExposed, IrisVisuallyHidden, IrisWatermark, type MenuContext, MenuContextKey, type PopoverContext, PopoverContextKey, type StepperContext, StepperContextKey, type TabsContext, TabsContextKey, type ToggleGroupContext, ToggleGroupContextKey, type UseDragOptions, type UseToastReturn, __PROGRESS_STYLE_ID, __SKELETON_STYLE_ID, __SPINNER_STYLE_ID, __resetProgressStyles, __resetSkeletonStyles, __resetSpinnerStyles, clearToasts, composeRefs, defaultFilter, dismissToast, downloadCsv, downloadExcel, exportCsv, exportExcel, findFirstElement, formatBytes, formatRemaining, getToasts, mergeSlotProps, pushToast, subscribeToasts, useDisposableScope, useDrag, useReconnectingSource, useResilientFetcher, useStore, useStoreSelector, useToast };
|