@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.
@@ -0,0 +1,184 @@
1
+ import { ShallowRef, ComputedRef } from 'vue';
2
+ import { GridClipboardFeatureOptions, GridCore, GridClipboardModel, GridEditingFeatureOptions, GridEditingKey, GridEditingValidation, GridEditingCommit, GridEditingModel, GridRangeChange, GridRangeModel, GridColumnPin, GridColumnsModel, GridColumnsState, GridFeature, GridExpansionKey, GridFilterValues, GridFilteringModel, GridPaginationChange, GridPaginationModel, GridPaginationState, GridRowKey, GridRowsTransaction, GridRowsModel, SelectionKey, SelectionMode, SelectionModel, SortState, GridSortingModel, GridVirtualRangeChange, GridVirtualModel, VirtualizerState } from '@iris-ui-kit/core/grid';
3
+ export { GridColumnPin, GridCore, GridFeature, GridRowsCommitOptions } from '@iris-ui-kit/core/grid';
4
+ import { TableCopyFormat, TableClipboardRange, CellEditState, CellRangeState, CellRange, ExpansionModel } from '@iris-ui-kit/core';
5
+
6
+ type UseGridClipboardOptions<Row extends Record<string, unknown>> = GridClipboardFeatureOptions<Row>;
7
+ interface UseGridClipboardResult<Row extends Record<string, unknown>> {
8
+ core: GridCore<Row>;
9
+ model: GridClipboardModel;
10
+ serialize(format?: TableCopyFormat, copyWithFormat?: boolean): string | null;
11
+ paste(text: string, range?: TableClipboardRange): boolean;
12
+ }
13
+ /** Installs clipboard pure logic while leaving system clipboard I/O in Vue. */
14
+ declare function useGridClipboard<Row extends Record<string, unknown> = Record<string, unknown>>(core: GridCore<Row>, options: UseGridClipboardOptions<Row>): UseGridClipboardResult<Row>;
15
+
16
+ interface UseGridEditingOptions<Row extends Record<string, unknown>> extends Omit<GridEditingFeatureOptions<Row>, 'onStateChange' | 'onCommit'> {
17
+ onStateChange?: (state: CellEditState<GridEditingKey>) => void;
18
+ onValidation?: (validation: GridEditingValidation) => void;
19
+ onCommit?: (commit: GridEditingCommit<Row>) => void;
20
+ }
21
+ interface UseGridEditingResult<Row extends Record<string, unknown>> {
22
+ core: GridCore<Row>;
23
+ model: GridEditingModel;
24
+ state: Readonly<ShallowRef<CellEditState<GridEditingKey>>>;
25
+ startCellEdit(rowKey: GridEditingKey, columnKey: string, initialDraft?: unknown): boolean;
26
+ setCellDraft(value: unknown): void;
27
+ cancelCellEdit(): void;
28
+ commitCellEdit(value?: unknown): boolean;
29
+ isCellEditing(rowKey: GridEditingKey, columnKey: string): boolean;
30
+ }
31
+ /** Installs the framework-independent editing feature and bridges its state into Vue. */
32
+ declare function useGridEditing<Row extends Record<string, unknown>>(core: GridCore<Row>, options: UseGridEditingOptions<Row>): UseGridEditingResult<Row>;
33
+
34
+ interface UseGridRangeOptions {
35
+ onChange?: (change: GridRangeChange) => void;
36
+ }
37
+ interface UseGridRangeResult {
38
+ model: GridRangeModel;
39
+ state: Readonly<ShallowRef<CellRangeState>>;
40
+ range: ComputedRef<CellRange | null>;
41
+ }
42
+ /** Installs the range feature and bridges its controller snapshot into Vue. */
43
+ declare function useGridRange<Row extends Record<string, unknown> = Record<string, unknown>>(core: GridCore<Row>, options?: UseGridRangeOptions): UseGridRangeResult;
44
+
45
+ interface UseGridCoreOptions<Row extends Record<string, unknown>> {
46
+ readonly features?: readonly GridFeature<Row>[];
47
+ }
48
+ /** Vue lifecycle bridge for one framework-independent Grid Core instance. */
49
+ declare function useGridCore<Row extends Record<string, unknown> = Record<string, unknown>>(options?: UseGridCoreOptions<Row>): GridCore<Row>;
50
+ interface UseGridSelectionOptions<K extends SelectionKey = string> {
51
+ mode?: SelectionMode;
52
+ value?: K[];
53
+ defaultValue?: K[];
54
+ onChange?: (keys: K[]) => void;
55
+ getKeys?: () => readonly K[];
56
+ }
57
+ interface UseGridSelectionResult<K extends SelectionKey = string> {
58
+ model: SelectionModel<K>;
59
+ selection: ComputedRef<K[]>;
60
+ controlled: ComputedRef<boolean>;
61
+ }
62
+ declare function useGridSelection<Row extends Record<string, unknown> = Record<string, unknown>, K extends SelectionKey = string>(core: GridCore<Row>, options?: UseGridSelectionOptions<K>): UseGridSelectionResult<K>;
63
+ interface UseGridExpansionOptions<K extends GridExpansionKey = string> {
64
+ mode?: 'single' | 'multiple';
65
+ defaultValue?: K[];
66
+ onChange?: (keys: K[]) => void;
67
+ getKeys?: () => readonly K[];
68
+ }
69
+ interface UseGridExpansionResult<K extends GridExpansionKey = string> {
70
+ model: ExpansionModel<K>;
71
+ expandedKeys: ShallowRef<K[]>;
72
+ }
73
+ declare function useGridExpansion<Row extends Record<string, unknown> = Record<string, unknown>, K extends GridExpansionKey = string>(core: GridCore<Row>, options?: UseGridExpansionOptions<K>): UseGridExpansionResult<K>;
74
+ interface UseGridRowsOptions<Row extends Record<string, unknown>, Meta = unknown> {
75
+ /** Copy the initial seed before the rows feature stores it (default true). */
76
+ cloneDefaultRows?: boolean;
77
+ rowKeyField?: string;
78
+ getRowKey?: (row: Row, index: number) => GridRowKey | undefined;
79
+ /** Read nested rows when the source is a tree; omitted keeps flat-row semantics. */
80
+ getChildren?: (row: Row) => readonly Row[] | undefined;
81
+ /** Replace nested rows immutably when `getChildren` is not a direct property. */
82
+ setChildren?: (row: Row, children: Row[]) => Row;
83
+ onBeforeRowsChange?: (transaction: GridRowsTransaction<Row, Meta>) => void;
84
+ onRowsChange?: (transaction: GridRowsTransaction<Row, Meta>) => void;
85
+ }
86
+ interface UseGridRowsResult<Row extends Record<string, unknown>, Meta = unknown> {
87
+ model: GridRowsModel<Row, Meta>;
88
+ rows: ShallowRef<Row[]>;
89
+ }
90
+ declare function useGridRows<Row extends Record<string, unknown> = Record<string, unknown>, Meta = unknown>(core: GridCore<Row>, initialRows: readonly Row[], options?: UseGridRowsOptions<Row, Meta>): UseGridRowsResult<Row, Meta>;
91
+ interface UseGridColumnsOptions {
92
+ visibility?: Record<string, boolean>;
93
+ defaultVisibility?: Record<string, boolean>;
94
+ onVisibilityChange?: (value: Record<string, boolean>) => void;
95
+ order?: string[];
96
+ defaultOrder?: string[];
97
+ orderControlled?: boolean;
98
+ onOrderChange?: (value: string[] | undefined) => void;
99
+ widths?: Record<string, number>;
100
+ defaultWidths?: Record<string, number>;
101
+ onWidthsChange?: (value: Record<string, number>) => void;
102
+ pinned?: Record<string, GridColumnPin>;
103
+ defaultPinned?: Record<string, GridColumnPin>;
104
+ onPinnedChange?: (key: string, side: GridColumnPin) => void;
105
+ }
106
+ interface UseGridColumnsResult {
107
+ model: GridColumnsModel;
108
+ state: ShallowRef<GridColumnsState>;
109
+ setVisibility(value: Record<string, boolean>): void;
110
+ toggleVisibility(key: string): void;
111
+ setOrder(value: string[] | undefined): void;
112
+ clearOrder(): void;
113
+ setWidth(key: string, width: number): void;
114
+ setWidths(value: Record<string, number>): void;
115
+ resetWidths(): void;
116
+ setPinned(key: string, side: GridColumnPin): void;
117
+ }
118
+ declare function useGridColumns<Row extends Record<string, unknown> = Record<string, unknown>>(core: GridCore<Row>, options?: UseGridColumnsOptions): UseGridColumnsResult;
119
+ interface UseGridPaginationOptions {
120
+ page?: number;
121
+ defaultPage?: number;
122
+ pageSize?: number;
123
+ defaultPageSize?: number;
124
+ total?: number;
125
+ defaultTotal?: number;
126
+ onChange?: (change: GridPaginationChange) => void;
127
+ }
128
+ interface UseGridPaginationResult {
129
+ model: GridPaginationModel;
130
+ pagination: ShallowRef<GridPaginationState>;
131
+ setPage(page: number): void;
132
+ setPageSize(pageSize: number): void;
133
+ setPagination(page: number, pageSize: number): void;
134
+ }
135
+ declare function useGridPagination<Row extends Record<string, unknown> = Record<string, unknown>>(core: GridCore<Row>, options?: UseGridPaginationOptions): UseGridPaginationResult;
136
+ interface UseGridSortingOptions {
137
+ mode?: 'single' | 'multiple';
138
+ sort?: SortState | null;
139
+ defaultSort?: SortState | null;
140
+ onSortChange?: (sort: SortState | null) => void;
141
+ multiSortState?: SortState[];
142
+ defaultMultiSort?: SortState[];
143
+ onMultiSortChange?: (sorts: SortState[]) => void;
144
+ }
145
+ interface UseGridSortingResult {
146
+ model: GridSortingModel;
147
+ sort: ComputedRef<SortState | null>;
148
+ multiSort: ComputedRef<SortState[]>;
149
+ cycleSort(key: string): void;
150
+ setSort(sort: SortState | null): void;
151
+ cycleMultiSort(key: string): void;
152
+ setMultiSort(sorts: SortState[]): void;
153
+ }
154
+ declare function useGridSorting<Row extends Record<string, unknown> = Record<string, unknown>>(core: GridCore<Row>, options?: UseGridSortingOptions): UseGridSortingResult;
155
+ interface UseGridFilteringOptions {
156
+ filters?: Record<string, string>;
157
+ defaultFilters?: Record<string, string>;
158
+ onFiltersChange?: (filters: Record<string, string>) => void;
159
+ filterValues?: GridFilterValues;
160
+ defaultFilterValues?: GridFilterValues;
161
+ onFilterValuesChange?: (values: GridFilterValues) => void;
162
+ }
163
+ interface UseGridFilteringResult {
164
+ model: GridFilteringModel;
165
+ filters: ComputedRef<Record<string, string>>;
166
+ filterValues: ComputedRef<GridFilterValues>;
167
+ }
168
+ declare function useGridFiltering<Row extends Record<string, unknown> = Record<string, unknown>>(core: GridCore<Row>, options?: UseGridFilteringOptions): UseGridFilteringResult;
169
+ interface UseGridVirtualOptions<Item> {
170
+ items: readonly Item[];
171
+ estimateSize: number | ((index: number) => number);
172
+ viewportSize?: number;
173
+ scrollOffset?: number;
174
+ buffer?: number;
175
+ getItemKey?: (item: Item, index: number) => string | number;
176
+ onRangeChange?: (change: GridVirtualRangeChange) => void;
177
+ }
178
+ interface UseGridVirtualResult {
179
+ model: GridVirtualModel;
180
+ state: ShallowRef<VirtualizerState>;
181
+ }
182
+ declare function useGridVirtual<Row extends Record<string, unknown> = Record<string, unknown>, Item = Row>(core: GridCore<Row>, options: UseGridVirtualOptions<Item>): UseGridVirtualResult;
183
+
184
+ export { type UseGridClipboardOptions, type UseGridClipboardResult, type UseGridColumnsOptions, type UseGridColumnsResult, type UseGridCoreOptions, type UseGridEditingOptions, type UseGridEditingResult, type UseGridExpansionOptions, type UseGridExpansionResult, type UseGridFilteringOptions, type UseGridFilteringResult, type UseGridPaginationOptions, type UseGridPaginationResult, type UseGridRangeOptions, type UseGridRangeResult, type UseGridRowsOptions, type UseGridRowsResult, type UseGridSelectionOptions, type UseGridSelectionResult, type UseGridSortingOptions, type UseGridSortingResult, type UseGridVirtualOptions, type UseGridVirtualResult, useGridClipboard, useGridColumns, useGridCore, useGridEditing, useGridExpansion, useGridFiltering, useGridPagination, useGridRange, useGridRows, useGridSelection, useGridSorting, useGridVirtual };
package/dist/grid.d.ts ADDED
@@ -0,0 +1,184 @@
1
+ import { ShallowRef, ComputedRef } from 'vue';
2
+ import { GridClipboardFeatureOptions, GridCore, GridClipboardModel, GridEditingFeatureOptions, GridEditingKey, GridEditingValidation, GridEditingCommit, GridEditingModel, GridRangeChange, GridRangeModel, GridColumnPin, GridColumnsModel, GridColumnsState, GridFeature, GridExpansionKey, GridFilterValues, GridFilteringModel, GridPaginationChange, GridPaginationModel, GridPaginationState, GridRowKey, GridRowsTransaction, GridRowsModel, SelectionKey, SelectionMode, SelectionModel, SortState, GridSortingModel, GridVirtualRangeChange, GridVirtualModel, VirtualizerState } from '@iris-ui-kit/core/grid';
3
+ export { GridColumnPin, GridCore, GridFeature, GridRowsCommitOptions } from '@iris-ui-kit/core/grid';
4
+ import { TableCopyFormat, TableClipboardRange, CellEditState, CellRangeState, CellRange, ExpansionModel } from '@iris-ui-kit/core';
5
+
6
+ type UseGridClipboardOptions<Row extends Record<string, unknown>> = GridClipboardFeatureOptions<Row>;
7
+ interface UseGridClipboardResult<Row extends Record<string, unknown>> {
8
+ core: GridCore<Row>;
9
+ model: GridClipboardModel;
10
+ serialize(format?: TableCopyFormat, copyWithFormat?: boolean): string | null;
11
+ paste(text: string, range?: TableClipboardRange): boolean;
12
+ }
13
+ /** Installs clipboard pure logic while leaving system clipboard I/O in Vue. */
14
+ declare function useGridClipboard<Row extends Record<string, unknown> = Record<string, unknown>>(core: GridCore<Row>, options: UseGridClipboardOptions<Row>): UseGridClipboardResult<Row>;
15
+
16
+ interface UseGridEditingOptions<Row extends Record<string, unknown>> extends Omit<GridEditingFeatureOptions<Row>, 'onStateChange' | 'onCommit'> {
17
+ onStateChange?: (state: CellEditState<GridEditingKey>) => void;
18
+ onValidation?: (validation: GridEditingValidation) => void;
19
+ onCommit?: (commit: GridEditingCommit<Row>) => void;
20
+ }
21
+ interface UseGridEditingResult<Row extends Record<string, unknown>> {
22
+ core: GridCore<Row>;
23
+ model: GridEditingModel;
24
+ state: Readonly<ShallowRef<CellEditState<GridEditingKey>>>;
25
+ startCellEdit(rowKey: GridEditingKey, columnKey: string, initialDraft?: unknown): boolean;
26
+ setCellDraft(value: unknown): void;
27
+ cancelCellEdit(): void;
28
+ commitCellEdit(value?: unknown): boolean;
29
+ isCellEditing(rowKey: GridEditingKey, columnKey: string): boolean;
30
+ }
31
+ /** Installs the framework-independent editing feature and bridges its state into Vue. */
32
+ declare function useGridEditing<Row extends Record<string, unknown>>(core: GridCore<Row>, options: UseGridEditingOptions<Row>): UseGridEditingResult<Row>;
33
+
34
+ interface UseGridRangeOptions {
35
+ onChange?: (change: GridRangeChange) => void;
36
+ }
37
+ interface UseGridRangeResult {
38
+ model: GridRangeModel;
39
+ state: Readonly<ShallowRef<CellRangeState>>;
40
+ range: ComputedRef<CellRange | null>;
41
+ }
42
+ /** Installs the range feature and bridges its controller snapshot into Vue. */
43
+ declare function useGridRange<Row extends Record<string, unknown> = Record<string, unknown>>(core: GridCore<Row>, options?: UseGridRangeOptions): UseGridRangeResult;
44
+
45
+ interface UseGridCoreOptions<Row extends Record<string, unknown>> {
46
+ readonly features?: readonly GridFeature<Row>[];
47
+ }
48
+ /** Vue lifecycle bridge for one framework-independent Grid Core instance. */
49
+ declare function useGridCore<Row extends Record<string, unknown> = Record<string, unknown>>(options?: UseGridCoreOptions<Row>): GridCore<Row>;
50
+ interface UseGridSelectionOptions<K extends SelectionKey = string> {
51
+ mode?: SelectionMode;
52
+ value?: K[];
53
+ defaultValue?: K[];
54
+ onChange?: (keys: K[]) => void;
55
+ getKeys?: () => readonly K[];
56
+ }
57
+ interface UseGridSelectionResult<K extends SelectionKey = string> {
58
+ model: SelectionModel<K>;
59
+ selection: ComputedRef<K[]>;
60
+ controlled: ComputedRef<boolean>;
61
+ }
62
+ declare function useGridSelection<Row extends Record<string, unknown> = Record<string, unknown>, K extends SelectionKey = string>(core: GridCore<Row>, options?: UseGridSelectionOptions<K>): UseGridSelectionResult<K>;
63
+ interface UseGridExpansionOptions<K extends GridExpansionKey = string> {
64
+ mode?: 'single' | 'multiple';
65
+ defaultValue?: K[];
66
+ onChange?: (keys: K[]) => void;
67
+ getKeys?: () => readonly K[];
68
+ }
69
+ interface UseGridExpansionResult<K extends GridExpansionKey = string> {
70
+ model: ExpansionModel<K>;
71
+ expandedKeys: ShallowRef<K[]>;
72
+ }
73
+ declare function useGridExpansion<Row extends Record<string, unknown> = Record<string, unknown>, K extends GridExpansionKey = string>(core: GridCore<Row>, options?: UseGridExpansionOptions<K>): UseGridExpansionResult<K>;
74
+ interface UseGridRowsOptions<Row extends Record<string, unknown>, Meta = unknown> {
75
+ /** Copy the initial seed before the rows feature stores it (default true). */
76
+ cloneDefaultRows?: boolean;
77
+ rowKeyField?: string;
78
+ getRowKey?: (row: Row, index: number) => GridRowKey | undefined;
79
+ /** Read nested rows when the source is a tree; omitted keeps flat-row semantics. */
80
+ getChildren?: (row: Row) => readonly Row[] | undefined;
81
+ /** Replace nested rows immutably when `getChildren` is not a direct property. */
82
+ setChildren?: (row: Row, children: Row[]) => Row;
83
+ onBeforeRowsChange?: (transaction: GridRowsTransaction<Row, Meta>) => void;
84
+ onRowsChange?: (transaction: GridRowsTransaction<Row, Meta>) => void;
85
+ }
86
+ interface UseGridRowsResult<Row extends Record<string, unknown>, Meta = unknown> {
87
+ model: GridRowsModel<Row, Meta>;
88
+ rows: ShallowRef<Row[]>;
89
+ }
90
+ declare function useGridRows<Row extends Record<string, unknown> = Record<string, unknown>, Meta = unknown>(core: GridCore<Row>, initialRows: readonly Row[], options?: UseGridRowsOptions<Row, Meta>): UseGridRowsResult<Row, Meta>;
91
+ interface UseGridColumnsOptions {
92
+ visibility?: Record<string, boolean>;
93
+ defaultVisibility?: Record<string, boolean>;
94
+ onVisibilityChange?: (value: Record<string, boolean>) => void;
95
+ order?: string[];
96
+ defaultOrder?: string[];
97
+ orderControlled?: boolean;
98
+ onOrderChange?: (value: string[] | undefined) => void;
99
+ widths?: Record<string, number>;
100
+ defaultWidths?: Record<string, number>;
101
+ onWidthsChange?: (value: Record<string, number>) => void;
102
+ pinned?: Record<string, GridColumnPin>;
103
+ defaultPinned?: Record<string, GridColumnPin>;
104
+ onPinnedChange?: (key: string, side: GridColumnPin) => void;
105
+ }
106
+ interface UseGridColumnsResult {
107
+ model: GridColumnsModel;
108
+ state: ShallowRef<GridColumnsState>;
109
+ setVisibility(value: Record<string, boolean>): void;
110
+ toggleVisibility(key: string): void;
111
+ setOrder(value: string[] | undefined): void;
112
+ clearOrder(): void;
113
+ setWidth(key: string, width: number): void;
114
+ setWidths(value: Record<string, number>): void;
115
+ resetWidths(): void;
116
+ setPinned(key: string, side: GridColumnPin): void;
117
+ }
118
+ declare function useGridColumns<Row extends Record<string, unknown> = Record<string, unknown>>(core: GridCore<Row>, options?: UseGridColumnsOptions): UseGridColumnsResult;
119
+ interface UseGridPaginationOptions {
120
+ page?: number;
121
+ defaultPage?: number;
122
+ pageSize?: number;
123
+ defaultPageSize?: number;
124
+ total?: number;
125
+ defaultTotal?: number;
126
+ onChange?: (change: GridPaginationChange) => void;
127
+ }
128
+ interface UseGridPaginationResult {
129
+ model: GridPaginationModel;
130
+ pagination: ShallowRef<GridPaginationState>;
131
+ setPage(page: number): void;
132
+ setPageSize(pageSize: number): void;
133
+ setPagination(page: number, pageSize: number): void;
134
+ }
135
+ declare function useGridPagination<Row extends Record<string, unknown> = Record<string, unknown>>(core: GridCore<Row>, options?: UseGridPaginationOptions): UseGridPaginationResult;
136
+ interface UseGridSortingOptions {
137
+ mode?: 'single' | 'multiple';
138
+ sort?: SortState | null;
139
+ defaultSort?: SortState | null;
140
+ onSortChange?: (sort: SortState | null) => void;
141
+ multiSortState?: SortState[];
142
+ defaultMultiSort?: SortState[];
143
+ onMultiSortChange?: (sorts: SortState[]) => void;
144
+ }
145
+ interface UseGridSortingResult {
146
+ model: GridSortingModel;
147
+ sort: ComputedRef<SortState | null>;
148
+ multiSort: ComputedRef<SortState[]>;
149
+ cycleSort(key: string): void;
150
+ setSort(sort: SortState | null): void;
151
+ cycleMultiSort(key: string): void;
152
+ setMultiSort(sorts: SortState[]): void;
153
+ }
154
+ declare function useGridSorting<Row extends Record<string, unknown> = Record<string, unknown>>(core: GridCore<Row>, options?: UseGridSortingOptions): UseGridSortingResult;
155
+ interface UseGridFilteringOptions {
156
+ filters?: Record<string, string>;
157
+ defaultFilters?: Record<string, string>;
158
+ onFiltersChange?: (filters: Record<string, string>) => void;
159
+ filterValues?: GridFilterValues;
160
+ defaultFilterValues?: GridFilterValues;
161
+ onFilterValuesChange?: (values: GridFilterValues) => void;
162
+ }
163
+ interface UseGridFilteringResult {
164
+ model: GridFilteringModel;
165
+ filters: ComputedRef<Record<string, string>>;
166
+ filterValues: ComputedRef<GridFilterValues>;
167
+ }
168
+ declare function useGridFiltering<Row extends Record<string, unknown> = Record<string, unknown>>(core: GridCore<Row>, options?: UseGridFilteringOptions): UseGridFilteringResult;
169
+ interface UseGridVirtualOptions<Item> {
170
+ items: readonly Item[];
171
+ estimateSize: number | ((index: number) => number);
172
+ viewportSize?: number;
173
+ scrollOffset?: number;
174
+ buffer?: number;
175
+ getItemKey?: (item: Item, index: number) => string | number;
176
+ onRangeChange?: (change: GridVirtualRangeChange) => void;
177
+ }
178
+ interface UseGridVirtualResult {
179
+ model: GridVirtualModel;
180
+ state: ShallowRef<VirtualizerState>;
181
+ }
182
+ declare function useGridVirtual<Row extends Record<string, unknown> = Record<string, unknown>, Item = Row>(core: GridCore<Row>, options: UseGridVirtualOptions<Item>): UseGridVirtualResult;
183
+
184
+ export { type UseGridClipboardOptions, type UseGridClipboardResult, type UseGridColumnsOptions, type UseGridColumnsResult, type UseGridCoreOptions, type UseGridEditingOptions, type UseGridEditingResult, type UseGridExpansionOptions, type UseGridExpansionResult, type UseGridFilteringOptions, type UseGridFilteringResult, type UseGridPaginationOptions, type UseGridPaginationResult, type UseGridRangeOptions, type UseGridRangeResult, type UseGridRowsOptions, type UseGridRowsResult, type UseGridSelectionOptions, type UseGridSelectionResult, type UseGridSortingOptions, type UseGridSortingResult, type UseGridVirtualOptions, type UseGridVirtualResult, useGridClipboard, useGridColumns, useGridCore, useGridEditing, useGridExpansion, useGridFiltering, useGridPagination, useGridRange, useGridRows, useGridSelection, useGridSorting, useGridVirtual };
package/dist/grid.js ADDED
@@ -0,0 +1,4 @@
1
+ export { useGridClipboard, useGridColumns, useGridCore, useGridEditing, useGridExpansion, useGridFiltering, useGridPagination, useGridRange, useGridRows, useGridSelection, useGridSorting, useGridVirtual } from './chunk-5Q3JCKNE.js';
2
+ import './chunk-75GSYEJS.js';
3
+ //# sourceMappingURL=grid.js.map
4
+ //# sourceMappingURL=grid.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"grid.js"}