@svgrid/grid 2.1.0 → 2.1.2

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.
Files changed (64) hide show
  1. package/dist/FlexRender.svelte +96 -96
  2. package/dist/GridFooter.svelte +178 -178
  3. package/dist/SvGrid.css +2377 -2377
  4. package/dist/SvGrid.svelte +2764 -2764
  5. package/dist/SvGridBoard.svelte +2281 -2281
  6. package/dist/SvGridDropdown.svelte +666 -666
  7. package/dist/cdn/svgrid.js +2 -2
  8. package/dist/cdn/svgrid.svelte-external.js +2 -2
  9. package/package.json +92 -92
  10. package/src/FlexRender.svelte +96 -96
  11. package/src/GridFooter.svelte +178 -178
  12. package/src/SvGrid.controller.svelte.ts +2553 -2553
  13. package/src/SvGrid.css +2377 -2377
  14. package/src/SvGrid.svelte +2764 -2764
  15. package/src/SvGrid.types.ts +944 -944
  16. package/src/SvGridBoard.svelte +2281 -2281
  17. package/src/SvGridDropdown.svelte +666 -666
  18. package/src/a11y.contract.test.ts +49 -49
  19. package/src/a11y.test.ts +59 -59
  20. package/src/a11y.ts +61 -61
  21. package/src/build-api.ts +798 -798
  22. package/src/cell-formatting.ts +169 -169
  23. package/src/cell-render.ts +469 -469
  24. package/src/collaboration.test.ts +104 -104
  25. package/src/collaboration.ts +167 -167
  26. package/src/core.performance.test.ts +30 -30
  27. package/src/core.ts +1111 -1111
  28. package/src/createGrid.svelte.ts +42 -42
  29. package/src/createGrid.test.ts +10 -10
  30. package/src/createGridState.svelte.ts +17 -17
  31. package/src/editing.test.ts +859 -859
  32. package/src/editing.ts +675 -675
  33. package/src/export-data-api.test.ts +126 -126
  34. package/src/export-format.test.ts +107 -107
  35. package/src/export-format.ts +598 -598
  36. package/src/flex-render.ts +3 -3
  37. package/src/index.ts +463 -463
  38. package/src/keyboard.test.ts +59 -59
  39. package/src/keyboard.ts +97 -97
  40. package/src/menus.ts +582 -582
  41. package/src/merge-objects.ts +48 -48
  42. package/src/render-component.ts +28 -28
  43. package/src/selection.test.ts +754 -754
  44. package/src/selection.ts +600 -600
  45. package/src/server-data-source.test.ts +289 -289
  46. package/src/server-data-source.ts +413 -413
  47. package/src/sparkline.test.ts +68 -68
  48. package/src/sparkline.ts +169 -169
  49. package/src/spreadsheet.test.ts +489 -489
  50. package/src/spreadsheet.ts +304 -304
  51. package/src/static-functions.ts +11 -11
  52. package/src/subscribe.ts +38 -38
  53. package/src/svgrid-wrapper.types.ts +439 -439
  54. package/src/svgrid.behavior.test.ts +706 -706
  55. package/src/svgrid.features.test.ts +157 -157
  56. package/src/svgrid.new-features.wrapper.test.ts +251 -251
  57. package/src/svgrid.wrapper.test.ts +40 -40
  58. package/src/themes/index.ts +159 -159
  59. package/src/virtualization/column-virtualizer.test.ts +27 -27
  60. package/src/virtualization/column-virtualizer.ts +30 -30
  61. package/src/virtualization/svelte-virtualizer.svelte.ts +26 -26
  62. package/src/virtualization/types.ts +30 -30
  63. package/src/virtualization/virtualizer.test.ts +47 -47
  64. package/src/virtualization/virtualizer.ts +296 -296
package/src/index.ts CHANGED
@@ -1,463 +1,463 @@
1
- export { formatNumericWithConfig, resolveDatePattern } from './cell-formatting'
2
- export {
3
- coerceExportDate,
4
- formatValueForExport,
5
- projectGridRows,
6
- toExcelNumFmt,
7
- valueForExcel,
8
- serializeDelimited,
9
- serializeJson,
10
- serializeMarkdown,
11
- serializeHtml,
12
- serializeXml,
13
- downloadTextFile,
14
- downloadBlobFile,
15
- copyTextToClipboard,
16
- type GridExportOptions,
17
- type GridExportScope,
18
- type GridExportColumn,
19
- type GridClipboardOptions,
20
- type GridClipboardFormat,
21
- type SerializeProgress,
22
- type SerializeOptions,
23
- type CsvOptions,
24
- } from './export-format'
25
-
26
- export {
27
- columnFilteringFeature,
28
- columnGroupingFeature,
29
- createCoreRowModel,
30
- createExpandedRowModel,
31
- createFilteredRowModel,
32
- createGroupedRowModel,
33
- createPaginatedRowModel,
34
- createSortedRowModel,
35
- applyGroupAggregate,
36
- filterFns,
37
- rowExpandingFeature,
38
- rowPaginationFeature,
39
- rowSelectionFeature,
40
- rowSortingFeature,
41
- sortFns,
42
- tableFeatures,
43
- type Cell,
44
- type CellContext,
45
- type CellSpanParams,
46
- type ValueParserParams,
47
- type EditorContext,
48
- type CellData,
49
- type ActiveCellState,
50
- type CellFormatConfig,
51
- type CellFormatter,
52
- type Column,
53
- type ColumnDef,
54
- type ColumnDefTemplate,
55
- type GroupAggregator,
56
- type Header,
57
- type HeaderContext,
58
- type HeaderGroup,
59
- type Row,
60
- type RowData,
61
- type SortingState,
62
- type SvGrid as SvGridInstance,
63
- type SvGridOptions,
64
- type TableFeatures,
65
- type Updater,
66
- } from './core'
67
-
68
- export { createGrid, createSvGrid, type SvelteGrid } from './createGrid.svelte'
69
- export { createGridState, createSvGridState } from './createGridState.svelte'
70
- export { subscribeGrid, subscribeSvGrid } from './subscribe'
71
- export { default as SvGrid } from './SvGrid.svelte'
72
- export { default as SvGridBoard } from './SvGridBoard.svelte'
73
- export type { BoardConfig, BoardLane, BoardCardMoveEvent, BoardCardCommitEvent, BoardLayout, BoardSubtask, BoardComment, BoardMenuContext, BoardLaneMenuContext, BoardDrawerConfig } from './SvGrid.types'
74
- export { default as SvGridDropdown } from './SvGridDropdown.svelte'
75
- export { default as SvCalendar, type CalendarValue, type CalendarPreset, type CalendarAnimation } from './SvCalendar.svelte'
76
- export { matchesRecurrence, expandRecurrence, type RecurrenceRule, type RecurrenceFreq } from './recurrence'
77
- export { default as SvTimePicker, type TimeValue } from './SvTimePicker.svelte'
78
- export { default as SvDateTimePicker, type DateTimeValue } from './SvDateTimePicker.svelte'
79
- export { default as SvDateRangeInput, type DateRangeValue } from './SvDateRangeInput.svelte'
80
- export { default as SvButtonGroup, type ButtonGroupItem, type ButtonGroupMode, type ButtonGroupValue } from './SvButtonGroup.svelte'
81
- // UI kit - shared editor contract (common props + a11y wiring for every editor)
82
- export {
83
- editorAria,
84
- editorErrorId,
85
- editorHintId,
86
- nextEditorId,
87
- resolveMessages,
88
- type SvEditorProps,
89
- type EditorSize,
90
- type EditorDir,
91
- type EditorAriaState,
92
- } from './editor-contract'
93
- // UI kit - editor interaction surface (commit/cancel/close for grid-cell use)
94
- export { type EditorInteraction } from './editor-contract'
95
- // UI kit - shared a11y primitives (focus trap, scroll lock, dismissable layers, live region)
96
- export {
97
- FOCUSABLE_SELECTOR,
98
- getFocusable,
99
- createFocusTrap,
100
- type FocusTrap,
101
- type FocusTrapOptions,
102
- } from './a11y/focus-trap'
103
- export { lockScroll, scrollLockDepth } from './a11y/scroll-lock'
104
- export {
105
- createDismissableLayer,
106
- dismissableDepth,
107
- type DismissableLayer,
108
- type DismissableOptions,
109
- } from './a11y/dismissable'
110
- export { announce, type AnnounceOptions } from './a11y/live-region'
111
- // UI kit - custom cell-editor registry (register any component as a grid editor)
112
- export {
113
- registerCellEditor,
114
- getCellEditor,
115
- hasCellEditor,
116
- unregisterCellEditor,
117
- registeredCellEditorTypes,
118
- defaultEditorProps,
119
- resolveEditorProps,
120
- type CellEditorContext,
121
- type CellEditorRegistration,
122
- } from './editor-registry'
123
- export { registerBuiltinEditors } from './builtin-editors'
124
- // UI kit - shared field chrome (label + hint + error + direction wrapper)
125
- export { default as SvField } from './SvField.svelte'
126
- // UI kit - headless cores (state + prop-getters you render yourself, like createSvGrid)
127
- export {
128
- createListbox,
129
- toSelectedArray,
130
- type Listbox,
131
- type ListboxConfig,
132
- type ListboxValue,
133
- type ListboxRootProps,
134
- type OptionProps,
135
- } from './createListbox.svelte'
136
- // Selection family cores
137
- export { createCombobox, type Combobox, type ComboboxConfig, type ComboboxValue } from './createCombobox.svelte'
138
- export { createDropdownList, type DropdownList, type DropdownListConfig, type DropdownValue } from './createDropdownList.svelte'
139
- export { createAutocomplete, type Autocomplete, type AutocompleteConfig } from './createAutocomplete.svelte'
140
- export { createTagsInput, type TagsInput, type TagsInputConfig } from './createTagsInput.svelte'
141
- export { createCountryInput, type CountryInput, type CountryInputConfig } from './createCountryInput.svelte'
142
- // Text-input family cores
143
- export { createNumberInput, type NumberInputConfig, type NumberInputCore } from './createNumberInput.svelte'
144
- export { createMaskedInput, type MaskedInputConfig, type MaskedInputCore } from './createMaskedInput.svelte'
145
- export { createPhoneInput, type PhoneInputConfig, type PhoneInputCore, type PhoneParts } from './createPhoneInput.svelte'
146
- export { createColorInput, normalizeHex, type ColorInputConfig, type ColorInputCore } from './createColorInput.svelte'
147
- export { createPasswordInput, passwordStrength, STRENGTH_LABELS, type PasswordInputConfig, type PasswordInputCore } from './createPasswordInput.svelte'
148
- // Buttons & toggles family cores
149
- export { createToggle, type Toggle, type ToggleConfig, type ToggleButtonProps } from './createToggle.svelte'
150
- export { createSwitch, type Switch, type SwitchConfig, type SwitchProps } from './createSwitch.svelte'
151
- export { createCheckbox, type Checkbox, type CheckboxConfig, type CheckboxBoxProps } from './createCheckbox.svelte'
152
- export { createRadioGroup, type RadioGroup, type RadioGroupConfig, type RadioProps, type RadioGroupProps } from './createRadioGroup.svelte'
153
- export { createRating, type Rating, type RatingConfig, type RatingFill, type RatingRootProps, type RatingStarProps } from './createRating.svelte'
154
- // Date & time family cores
155
- export { createCalendar, normalizeCalendarValue, type Calendar, type CalendarConfig, type CalendarDayState, type CalendarNavDir, type CalendarNameFormat, type DisplayMode } from './createCalendar.svelte'
156
- export { createTimePicker, parseTimeValue, type TimePicker, type TimePickerConfig, type TimeSelection, type TimeFormat, type DialTick } from './createTimePicker.svelte'
157
- export { createDateTimePicker, type DateTimePicker, type DateTimePickerConfig, type DropDownDisplayMode, type DateTimeTab } from './createDateTimePicker.svelte'
158
- // Layout & range family cores
159
- export { createTabs, type Tabs, type TabsConfig, type TabsOrientation, type TabsActivation } from './createTabs.svelte'
160
- export { createTree, treeDescendantIds, treeCheckState, moveTreeNode, sortTreeNodes, treeContains, type Tree, type TreeConfig, type TreeRow, type CheckState, type TreeDropPosition } from './createTree.svelte'
161
- export { createSlider, type Slider, type SliderConfig, type SliderValue, type SliderOrientation, type SliderThumb, type SliderPoint } from './createSlider.svelte'
162
- export { createGauge, type Gauge, type GaugeConfig, type GaugePoint } from './createGauge.svelte'
163
- export { createButtonGroup, toGroupArray, type ButtonGroup, type ButtonGroupConfig } from './createButtonGroup.svelte'
164
- // UI kit - Group B (buttons & toggles)
165
- export { default as SvButton } from './SvButton.svelte'
166
- export { default as SvRepeatButton } from './SvRepeatButton.svelte'
167
- export { default as SvToggleButton } from './SvToggleButton.svelte'
168
- export { default as SvSwitchButton } from './SvSwitchButton.svelte'
169
- export { default as SvCheckBox } from './SvCheckBox.svelte'
170
- export { default as SvRadioGroup, type RadioOption } from './SvRadioGroup.svelte'
171
- export { default as SvRating } from './SvRating.svelte'
172
- // UI kit - Group C (text inputs)
173
- export { default as SvTextInput } from './SvTextInput.svelte'
174
- export { default as SvTextArea } from './SvTextArea.svelte'
175
- export { default as SvOtpInput } from './SvOtpInput.svelte'
176
- export { sanitizeOtp, otpCells, isOtpComplete } from './otp'
177
- export { default as SvDurationInput } from './SvDurationInput.svelte'
178
- export { parseDuration, formatDuration } from './duration'
179
- export { default as SvNumberInput } from './SvNumberInput.svelte'
180
- export { default as SvPasswordInput } from './SvPasswordInput.svelte'
181
- export { default as SvMaskedInput } from './SvMaskedInput.svelte'
182
- export { default as SvPhoneInput } from './SvPhoneInput.svelte'
183
- export { default as SvColorInput } from './SvColorInput.svelte'
184
- export { applyMask, unmask, isMaskComplete } from './datetime/mask'
185
- export { COUNTRIES, COUNTRY_BY_CODE, flagEmoji, phoneDigitsValid, PHONE_NATIONAL_LENGTHS, type Country } from './countries'
186
- // UI kit - Group D (selection overlays)
187
- export { default as SvListBox } from './SvListBox.svelte'
188
- export { default as SvDropDownList } from './SvDropDownList.svelte'
189
- export { default as SvComboBox } from './SvComboBox.svelte'
190
- export { default as SvAutoComplete } from './SvAutoComplete.svelte'
191
- export { default as SvTagsInput } from './SvTagsInput.svelte'
192
- export { default as SvMultiSelect, type MultiSelectOption } from './SvMultiSelect.svelte'
193
- export { debounce, type Debounced } from './debounce'
194
- export { default as SvTreeSelect, type TreeSelectNode } from './SvTreeSelect.svelte'
195
- export { flattenVisible, findNodePath, branchValues, type FlatRow } from './tree-select'
196
- export { default as SvGridSelect, type GridSelectColumn } from './SvGridSelect.svelte'
197
- export { filterGridRows } from './grid-select'
198
- export { default as SvCountryInput } from './SvCountryInput.svelte'
199
- export {
200
- filterOptions,
201
- groupOptions,
202
- hasGroups,
203
- nextTypeaheadIndex,
204
- createTypeaheadBuffer,
205
- isTypeaheadKey,
206
- type ListOption,
207
- type IndexedOption,
208
- type OptionGroup,
209
- } from './list-option'
210
- export { virtualRange, scrollToIndex, type VirtualRange, type VirtualParams } from './virtual'
211
- // UI kit - Group E (range & feedback)
212
- export { default as SvSlider } from './SvSlider.svelte'
213
- export { default as SvGauge } from './SvGauge.svelte'
214
- // UI kit - Group F (composite / layout)
215
- export { default as SvTabs, type TabItem } from './SvTabs.svelte'
216
- export { default as SvTree, type TreeNode as SvTreeNode } from './SvTree.svelte'
217
- export { default as SvAccordion, type AccordionItem, type AccordionExpandMode } from './SvAccordion.svelte'
218
- export { createAccordion, type Accordion, type AccordionConfig } from './createAccordion.svelte'
219
- export { default as SvSplitter, type SplitterOrientation } from './SvSplitter.svelte'
220
- export { createSplitter, type Splitter, type SplitterConfig, type SplitterPoint } from './createSplitter.svelte'
221
- export { default as SvFileUpload, type FileRejection, type FileRejectReason } from './SvFileUpload.svelte'
222
- export { createFileUpload, fileMatchesAccept, type FileUpload, type FileUploadConfig } from './createFileUpload.svelte'
223
- // UI kit - overlays (popover / tooltip / modal), sharing the popover.ts positioning + animation
224
- export { default as SvPopover } from './SvPopover.svelte'
225
- export { default as SvTooltip } from './SvTooltip.svelte'
226
- export { default as SvModal } from './SvModal.svelte'
227
- export { default as SvDrawer } from './SvDrawer.svelte'
228
- export type DrawerSide = 'right' | 'left' | 'top' | 'bottom'
229
- export { default as SvToaster } from './SvToaster.svelte'
230
- export { default as SvBadge } from './SvBadge.svelte'
231
- export { default as SvSkeleton } from './SvSkeleton.svelte'
232
- export { default as SvCard } from './SvCard.svelte'
233
- export { default as SvAlert } from './SvAlert.svelte'
234
- export { default as SvEmptyState } from './SvEmptyState.svelte'
235
- export { default as SvDivider } from './SvDivider.svelte'
236
- export { default as SvChip } from './SvChip.svelte'
237
- export { default as SvStat } from './SvStat.svelte'
238
- export { default as SvTimeline, type TimelineItem } from './SvTimeline.svelte'
239
- export { default as SvSparkline } from './SvSparkline.svelte'
240
- export { default as SvScrollArea } from './SvScrollArea.svelte'
241
- export { default as SvAvatarGroup } from './SvAvatarGroup.svelte'
242
- export { default as SvCommand, type CommandItem } from './SvCommand.svelte'
243
- export { fuzzyScore, fuzzyMatch } from './fuzzy'
244
- export { default as SvRichText, type RichTextTool } from './SvRichText.svelte'
245
- export { default as SvCarousel } from './SvCarousel.svelte'
246
- export { default as SvTour, type TourStep } from './SvTour.svelte'
247
- export { default as SvPagination } from './SvPagination.svelte'
248
- export { paginationRange, type PaginationItem, type PaginationRangeOptions } from './paginate'
249
- export { default as SvBreadcrumb, type BreadcrumbItem } from './SvBreadcrumb.svelte'
250
- export { default as SvStepper, type StepItem } from './SvStepper.svelte'
251
- export { default as SvAvatar } from './SvAvatar.svelte'
252
- export { avatarInitials, avatarColorHue } from './avatar'
253
- export { default as SvContextMenu } from './SvContextMenu.svelte'
254
- export {
255
- toast,
256
- dismissToast,
257
- clearToasts,
258
- pauseToast,
259
- resumeToast,
260
- toastStore,
261
- type Toast,
262
- type ToastVariant,
263
- type ToastOptions,
264
- type ToastFn,
265
- } from './toast-store.svelte'
266
- export { default as SvMenu, type MenuItem } from './SvMenu.svelte'
267
- export { default as SvNavPane, type NavItem, type NavSection, type NavModule } from './SvNavPane.svelte'
268
- export { default as SvProgress } from './SvProgress.svelte'
269
- export { default as SvCircularProgress } from './SvCircularProgress.svelte'
270
- export { popIn } from './popover'
271
- export { default as SvForm, type FormField, type FormFieldType } from './SvForm.svelte'
272
- export { rules, runRules, isEmptyValue, type Validator, type RuleOptions, type CompareOp } from './validators'
273
- export { anchoredRect, portalToBody, PANEL_THEME_VARS, type AnchoredRect } from './popover'
274
- export {
275
- toDate, startOfDay, addDays, addMonths, addYears, clampDate, isSameDay,
276
- monthMatrix, isoWeek, decadeRange, withTime, snapMinute, type DateLike,
277
- } from './datetime/date-core'
278
- export { formatDate, parseDate, tokenizeMask } from './datetime/date-format'
279
- export {
280
- selectDate, rangeDays, isSelected, isMultiSelectMode, emptySelection,
281
- type SelectionMode, type SelectionState,
282
- } from './datetime/date-selection'
283
- export {
284
- isDisabledDay, isOutOfRange, isRestricted, isImportant, type RestrictOptions,
285
- } from './datetime/date-restrict'
286
- export { default as FlexRender } from './FlexRender.svelte'
287
- export { renderComponent, renderSnippet } from './render-component'
288
- export { default as SvGridChart } from './SvGridChart.svelte'
289
- export {
290
- buildChart,
291
- rowsToChartSpec,
292
- niceScale,
293
- niceLogScale,
294
- linearTrend,
295
- simpleMovingAverage,
296
- exponentialMovingAverage,
297
- computeOverlay,
298
- buildLinePath,
299
- sampleGradient,
300
- pickContrastText,
301
- DEFAULT_PALETTE,
302
- type ChartType,
303
- type ChartSpec,
304
- type ChartSeries,
305
- type ChartGeometry,
306
- type ChartBar,
307
- type ChartLine,
308
- type ChartLinePoint,
309
- type ChartPieSlice,
310
- type ChartSelection,
311
- type ChartReferenceLine,
312
- type ChartRefLineGeo,
313
- type ChartRefLineGeoV,
314
- type ChartScatterDot,
315
- type ScatterPoint,
316
- type NiceScale,
317
- type SeriesOverlay,
318
- type SeriesPattern,
319
- type ChartAnnotation,
320
- type ChartHeatmapCell,
321
- type ChartFunnelSegment,
322
- type ChartRadarSeries,
323
- type ChartRadarAxis,
324
- type ChartTreemapCell,
325
- type ChartCalendarCell,
326
- type ChartGaugeLayout,
327
- type ChartSankeyNode,
328
- type ChartSankeyLink,
329
- type TreeNode,
330
- } from './chart'
331
- export {
332
- chartToSvgString,
333
- downloadChartSvg,
334
- chartToPngBlob,
335
- downloadChartPng,
336
- type ChartExportOptions,
337
- } from './chart-export'
338
- export {
339
- buildSparkline,
340
- toSparklineValues,
341
- type SparklineConfig,
342
- type SparklineType,
343
- type SparklineGeometry,
344
- } from './sparkline'
345
- export {
346
- spreadsheetLayout,
347
- spansToMerges,
348
- type SpanColumn,
349
- type SpreadsheetActionOptions,
350
- type MergeSpec,
351
- type CellBorderSpec,
352
- type BorderSpec,
353
- } from './spreadsheet'
354
- export { rowResize, type RowResizeOptions } from './row-resize'
355
- export { rowDropZone, type RowDragEndEvent, type RowDropZoneOptions } from './row-drag'
356
- export { resolveColumnTypes, inferCellDataType, type CellDataType } from './column-types'
357
- export {
358
- computeColumnGroupMeta,
359
- hiddenLeavesForCollapse,
360
- type ColumnGroupMeta,
361
- type ColumnGroupShow,
362
- } from './column-groups'
363
- export {
364
- createHyperFormulaSheet,
365
- type HyperFormulaSheet,
366
- type HyperFormulaSheetConfig,
367
- type HyperFormulaInstance,
368
- } from './hyperformula-adapter'
369
- export {
370
- createCollaboration,
371
- broadcastChannelTransport,
372
- type CollabUser,
373
- type CollabCell,
374
- type CollabPresence,
375
- type CollabMessage,
376
- type CollabTransport,
377
- type Collaboration,
378
- } from './collaboration'
379
- export {
380
- createServerDataSource,
381
- type ServerDataSource,
382
- type ServerRequest,
383
- type ServerResult,
384
- type ServerController,
385
- type ServerState,
386
- type ServerSortModel,
387
- type ServerFilterModel,
388
- type ServerAggregation,
389
- type ServerGroupRow,
390
- type ServerLeafRow,
391
- type ServerMoreRow,
392
- type ServerFooterRow,
393
- type ServerSkeletonRow,
394
- type ServerDisplayRow,
395
- } from './server-data-source'
396
- export {
397
- createServerGroupModel,
398
- serverGroupRows,
399
- serverGroupNav,
400
- type ServerGroupController,
401
- type ServerGroupControllerOptions,
402
- type ServerGroupState,
403
- type ServerGroupGridRow,
404
- } from './server-group-model'
405
- export { default as SvGroupCell } from './SvGroupCell.svelte'
406
- export { default as SvRowGroupPanel } from './SvRowGroupPanel.svelte'
407
- export {
408
- createNamedViews,
409
- memoryViews,
410
- localStorageViews,
411
- attachAutoSavedView,
412
- type SavedView,
413
- type ViewStorage,
414
- type NamedViews,
415
- type AutoSavedViewOptions,
416
- } from './named-views'
417
- export {
418
- resolveCellFormat,
419
- computeColumnStat,
420
- lerpColor,
421
- contrastText,
422
- type ConditionalFormat,
423
- type ConditionalFormatSpec,
424
- type ColorScaleFormat,
425
- type DataBarFormat,
426
- type IconSetFormat,
427
- type RuleFormat,
428
- type ResolvedCellFormat,
429
- } from './conditional-formatting'
430
- export { getKeyboardIntent, getNextActiveCell, type GridKeyboardIntent } from './keyboard'
431
- export { createVirtualizer } from './virtualization/virtualizer'
432
- export { createSvelteVirtualizer } from './virtualization/svelte-virtualizer.svelte'
433
- export { createColumnVirtualizer } from './virtualization/column-virtualizer'
434
- export type { VirtualItem, VirtualizerOptions, VirtualizerState } from './virtualization/types'
435
- export type { SvGridApi, SvGridFilterOperator, SvGridWrapperProps } from './svgrid-wrapper.types'
436
- export {
437
- parseEditorValue,
438
- normalizeEditorOptions,
439
- type CellEditorType,
440
- type CellEditorOption,
441
- } from './editors/cell-editors'
442
- export {
443
- applyExcelFilter,
444
- normalizeForFilter,
445
- type ExcelFilter,
446
- type ExcelFilterOperator,
447
- type ExcelFilterOptions,
448
- } from './filtering/excel-filters'
449
- export {
450
- getGridCellDomId,
451
- getGridCellA11yProps,
452
- getGridHeaderA11yProps,
453
- getGridRootA11yProps,
454
- getGridRowA11yProps,
455
- type GridCellA11yInput,
456
- type GridColumnA11yInput,
457
- type GridSortDirection,
458
- } from './a11y'
459
-
460
- /**
461
- * Compatibility alias for teams migrating from `createTable`.
462
- */
463
- export { createSvGrid as createTable } from './createGrid.svelte'
1
+ export { formatNumericWithConfig, resolveDatePattern } from './cell-formatting'
2
+ export {
3
+ coerceExportDate,
4
+ formatValueForExport,
5
+ projectGridRows,
6
+ toExcelNumFmt,
7
+ valueForExcel,
8
+ serializeDelimited,
9
+ serializeJson,
10
+ serializeMarkdown,
11
+ serializeHtml,
12
+ serializeXml,
13
+ downloadTextFile,
14
+ downloadBlobFile,
15
+ copyTextToClipboard,
16
+ type GridExportOptions,
17
+ type GridExportScope,
18
+ type GridExportColumn,
19
+ type GridClipboardOptions,
20
+ type GridClipboardFormat,
21
+ type SerializeProgress,
22
+ type SerializeOptions,
23
+ type CsvOptions,
24
+ } from './export-format'
25
+
26
+ export {
27
+ columnFilteringFeature,
28
+ columnGroupingFeature,
29
+ createCoreRowModel,
30
+ createExpandedRowModel,
31
+ createFilteredRowModel,
32
+ createGroupedRowModel,
33
+ createPaginatedRowModel,
34
+ createSortedRowModel,
35
+ applyGroupAggregate,
36
+ filterFns,
37
+ rowExpandingFeature,
38
+ rowPaginationFeature,
39
+ rowSelectionFeature,
40
+ rowSortingFeature,
41
+ sortFns,
42
+ tableFeatures,
43
+ type Cell,
44
+ type CellContext,
45
+ type CellSpanParams,
46
+ type ValueParserParams,
47
+ type EditorContext,
48
+ type CellData,
49
+ type ActiveCellState,
50
+ type CellFormatConfig,
51
+ type CellFormatter,
52
+ type Column,
53
+ type ColumnDef,
54
+ type ColumnDefTemplate,
55
+ type GroupAggregator,
56
+ type Header,
57
+ type HeaderContext,
58
+ type HeaderGroup,
59
+ type Row,
60
+ type RowData,
61
+ type SortingState,
62
+ type SvGrid as SvGridInstance,
63
+ type SvGridOptions,
64
+ type TableFeatures,
65
+ type Updater,
66
+ } from './core'
67
+
68
+ export { createGrid, createSvGrid, type SvelteGrid } from './createGrid.svelte'
69
+ export { createGridState, createSvGridState } from './createGridState.svelte'
70
+ export { subscribeGrid, subscribeSvGrid } from './subscribe'
71
+ export { default as SvGrid } from './SvGrid.svelte'
72
+ export { default as SvGridBoard } from './SvGridBoard.svelte'
73
+ export type { BoardConfig, BoardLane, BoardCardMoveEvent, BoardCardCommitEvent, BoardLayout, BoardSubtask, BoardComment, BoardMenuContext, BoardLaneMenuContext, BoardDrawerConfig } from './SvGrid.types'
74
+ export { default as SvGridDropdown } from './SvGridDropdown.svelte'
75
+ export { default as SvCalendar, type CalendarValue, type CalendarPreset, type CalendarAnimation } from './SvCalendar.svelte'
76
+ export { matchesRecurrence, expandRecurrence, type RecurrenceRule, type RecurrenceFreq } from './recurrence'
77
+ export { default as SvTimePicker, type TimeValue } from './SvTimePicker.svelte'
78
+ export { default as SvDateTimePicker, type DateTimeValue } from './SvDateTimePicker.svelte'
79
+ export { default as SvDateRangeInput, type DateRangeValue } from './SvDateRangeInput.svelte'
80
+ export { default as SvButtonGroup, type ButtonGroupItem, type ButtonGroupMode, type ButtonGroupValue } from './SvButtonGroup.svelte'
81
+ // UI kit - shared editor contract (common props + a11y wiring for every editor)
82
+ export {
83
+ editorAria,
84
+ editorErrorId,
85
+ editorHintId,
86
+ nextEditorId,
87
+ resolveMessages,
88
+ type SvEditorProps,
89
+ type EditorSize,
90
+ type EditorDir,
91
+ type EditorAriaState,
92
+ } from './editor-contract'
93
+ // UI kit - editor interaction surface (commit/cancel/close for grid-cell use)
94
+ export { type EditorInteraction } from './editor-contract'
95
+ // UI kit - shared a11y primitives (focus trap, scroll lock, dismissable layers, live region)
96
+ export {
97
+ FOCUSABLE_SELECTOR,
98
+ getFocusable,
99
+ createFocusTrap,
100
+ type FocusTrap,
101
+ type FocusTrapOptions,
102
+ } from './a11y/focus-trap'
103
+ export { lockScroll, scrollLockDepth } from './a11y/scroll-lock'
104
+ export {
105
+ createDismissableLayer,
106
+ dismissableDepth,
107
+ type DismissableLayer,
108
+ type DismissableOptions,
109
+ } from './a11y/dismissable'
110
+ export { announce, type AnnounceOptions } from './a11y/live-region'
111
+ // UI kit - custom cell-editor registry (register any component as a grid editor)
112
+ export {
113
+ registerCellEditor,
114
+ getCellEditor,
115
+ hasCellEditor,
116
+ unregisterCellEditor,
117
+ registeredCellEditorTypes,
118
+ defaultEditorProps,
119
+ resolveEditorProps,
120
+ type CellEditorContext,
121
+ type CellEditorRegistration,
122
+ } from './editor-registry'
123
+ export { registerBuiltinEditors } from './builtin-editors'
124
+ // UI kit - shared field chrome (label + hint + error + direction wrapper)
125
+ export { default as SvField } from './SvField.svelte'
126
+ // UI kit - headless cores (state + prop-getters you render yourself, like createSvGrid)
127
+ export {
128
+ createListbox,
129
+ toSelectedArray,
130
+ type Listbox,
131
+ type ListboxConfig,
132
+ type ListboxValue,
133
+ type ListboxRootProps,
134
+ type OptionProps,
135
+ } from './createListbox.svelte'
136
+ // Selection family cores
137
+ export { createCombobox, type Combobox, type ComboboxConfig, type ComboboxValue } from './createCombobox.svelte'
138
+ export { createDropdownList, type DropdownList, type DropdownListConfig, type DropdownValue } from './createDropdownList.svelte'
139
+ export { createAutocomplete, type Autocomplete, type AutocompleteConfig } from './createAutocomplete.svelte'
140
+ export { createTagsInput, type TagsInput, type TagsInputConfig } from './createTagsInput.svelte'
141
+ export { createCountryInput, type CountryInput, type CountryInputConfig } from './createCountryInput.svelte'
142
+ // Text-input family cores
143
+ export { createNumberInput, type NumberInputConfig, type NumberInputCore } from './createNumberInput.svelte'
144
+ export { createMaskedInput, type MaskedInputConfig, type MaskedInputCore } from './createMaskedInput.svelte'
145
+ export { createPhoneInput, type PhoneInputConfig, type PhoneInputCore, type PhoneParts } from './createPhoneInput.svelte'
146
+ export { createColorInput, normalizeHex, type ColorInputConfig, type ColorInputCore } from './createColorInput.svelte'
147
+ export { createPasswordInput, passwordStrength, STRENGTH_LABELS, type PasswordInputConfig, type PasswordInputCore } from './createPasswordInput.svelte'
148
+ // Buttons & toggles family cores
149
+ export { createToggle, type Toggle, type ToggleConfig, type ToggleButtonProps } from './createToggle.svelte'
150
+ export { createSwitch, type Switch, type SwitchConfig, type SwitchProps } from './createSwitch.svelte'
151
+ export { createCheckbox, type Checkbox, type CheckboxConfig, type CheckboxBoxProps } from './createCheckbox.svelte'
152
+ export { createRadioGroup, type RadioGroup, type RadioGroupConfig, type RadioProps, type RadioGroupProps } from './createRadioGroup.svelte'
153
+ export { createRating, type Rating, type RatingConfig, type RatingFill, type RatingRootProps, type RatingStarProps } from './createRating.svelte'
154
+ // Date & time family cores
155
+ export { createCalendar, normalizeCalendarValue, type Calendar, type CalendarConfig, type CalendarDayState, type CalendarNavDir, type CalendarNameFormat, type DisplayMode } from './createCalendar.svelte'
156
+ export { createTimePicker, parseTimeValue, type TimePicker, type TimePickerConfig, type TimeSelection, type TimeFormat, type DialTick } from './createTimePicker.svelte'
157
+ export { createDateTimePicker, type DateTimePicker, type DateTimePickerConfig, type DropDownDisplayMode, type DateTimeTab } from './createDateTimePicker.svelte'
158
+ // Layout & range family cores
159
+ export { createTabs, type Tabs, type TabsConfig, type TabsOrientation, type TabsActivation } from './createTabs.svelte'
160
+ export { createTree, treeDescendantIds, treeCheckState, moveTreeNode, sortTreeNodes, treeContains, type Tree, type TreeConfig, type TreeRow, type CheckState, type TreeDropPosition } from './createTree.svelte'
161
+ export { createSlider, type Slider, type SliderConfig, type SliderValue, type SliderOrientation, type SliderThumb, type SliderPoint } from './createSlider.svelte'
162
+ export { createGauge, type Gauge, type GaugeConfig, type GaugePoint } from './createGauge.svelte'
163
+ export { createButtonGroup, toGroupArray, type ButtonGroup, type ButtonGroupConfig } from './createButtonGroup.svelte'
164
+ // UI kit - Group B (buttons & toggles)
165
+ export { default as SvButton } from './SvButton.svelte'
166
+ export { default as SvRepeatButton } from './SvRepeatButton.svelte'
167
+ export { default as SvToggleButton } from './SvToggleButton.svelte'
168
+ export { default as SvSwitchButton } from './SvSwitchButton.svelte'
169
+ export { default as SvCheckBox } from './SvCheckBox.svelte'
170
+ export { default as SvRadioGroup, type RadioOption } from './SvRadioGroup.svelte'
171
+ export { default as SvRating } from './SvRating.svelte'
172
+ // UI kit - Group C (text inputs)
173
+ export { default as SvTextInput } from './SvTextInput.svelte'
174
+ export { default as SvTextArea } from './SvTextArea.svelte'
175
+ export { default as SvOtpInput } from './SvOtpInput.svelte'
176
+ export { sanitizeOtp, otpCells, isOtpComplete } from './otp'
177
+ export { default as SvDurationInput } from './SvDurationInput.svelte'
178
+ export { parseDuration, formatDuration } from './duration'
179
+ export { default as SvNumberInput } from './SvNumberInput.svelte'
180
+ export { default as SvPasswordInput } from './SvPasswordInput.svelte'
181
+ export { default as SvMaskedInput } from './SvMaskedInput.svelte'
182
+ export { default as SvPhoneInput } from './SvPhoneInput.svelte'
183
+ export { default as SvColorInput } from './SvColorInput.svelte'
184
+ export { applyMask, unmask, isMaskComplete } from './datetime/mask'
185
+ export { COUNTRIES, COUNTRY_BY_CODE, flagEmoji, phoneDigitsValid, PHONE_NATIONAL_LENGTHS, type Country } from './countries'
186
+ // UI kit - Group D (selection overlays)
187
+ export { default as SvListBox } from './SvListBox.svelte'
188
+ export { default as SvDropDownList } from './SvDropDownList.svelte'
189
+ export { default as SvComboBox } from './SvComboBox.svelte'
190
+ export { default as SvAutoComplete } from './SvAutoComplete.svelte'
191
+ export { default as SvTagsInput } from './SvTagsInput.svelte'
192
+ export { default as SvMultiSelect, type MultiSelectOption } from './SvMultiSelect.svelte'
193
+ export { debounce, type Debounced } from './debounce'
194
+ export { default as SvTreeSelect, type TreeSelectNode } from './SvTreeSelect.svelte'
195
+ export { flattenVisible, findNodePath, branchValues, type FlatRow } from './tree-select'
196
+ export { default as SvGridSelect, type GridSelectColumn } from './SvGridSelect.svelte'
197
+ export { filterGridRows } from './grid-select'
198
+ export { default as SvCountryInput } from './SvCountryInput.svelte'
199
+ export {
200
+ filterOptions,
201
+ groupOptions,
202
+ hasGroups,
203
+ nextTypeaheadIndex,
204
+ createTypeaheadBuffer,
205
+ isTypeaheadKey,
206
+ type ListOption,
207
+ type IndexedOption,
208
+ type OptionGroup,
209
+ } from './list-option'
210
+ export { virtualRange, scrollToIndex, type VirtualRange, type VirtualParams } from './virtual'
211
+ // UI kit - Group E (range & feedback)
212
+ export { default as SvSlider } from './SvSlider.svelte'
213
+ export { default as SvGauge } from './SvGauge.svelte'
214
+ // UI kit - Group F (composite / layout)
215
+ export { default as SvTabs, type TabItem } from './SvTabs.svelte'
216
+ export { default as SvTree, type TreeNode as SvTreeNode } from './SvTree.svelte'
217
+ export { default as SvAccordion, type AccordionItem, type AccordionExpandMode } from './SvAccordion.svelte'
218
+ export { createAccordion, type Accordion, type AccordionConfig } from './createAccordion.svelte'
219
+ export { default as SvSplitter, type SplitterOrientation } from './SvSplitter.svelte'
220
+ export { createSplitter, type Splitter, type SplitterConfig, type SplitterPoint } from './createSplitter.svelte'
221
+ export { default as SvFileUpload, type FileRejection, type FileRejectReason } from './SvFileUpload.svelte'
222
+ export { createFileUpload, fileMatchesAccept, type FileUpload, type FileUploadConfig } from './createFileUpload.svelte'
223
+ // UI kit - overlays (popover / tooltip / modal), sharing the popover.ts positioning + animation
224
+ export { default as SvPopover } from './SvPopover.svelte'
225
+ export { default as SvTooltip } from './SvTooltip.svelte'
226
+ export { default as SvModal } from './SvModal.svelte'
227
+ export { default as SvDrawer } from './SvDrawer.svelte'
228
+ export type DrawerSide = 'right' | 'left' | 'top' | 'bottom'
229
+ export { default as SvToaster } from './SvToaster.svelte'
230
+ export { default as SvBadge } from './SvBadge.svelte'
231
+ export { default as SvSkeleton } from './SvSkeleton.svelte'
232
+ export { default as SvCard } from './SvCard.svelte'
233
+ export { default as SvAlert } from './SvAlert.svelte'
234
+ export { default as SvEmptyState } from './SvEmptyState.svelte'
235
+ export { default as SvDivider } from './SvDivider.svelte'
236
+ export { default as SvChip } from './SvChip.svelte'
237
+ export { default as SvStat } from './SvStat.svelte'
238
+ export { default as SvTimeline, type TimelineItem } from './SvTimeline.svelte'
239
+ export { default as SvSparkline } from './SvSparkline.svelte'
240
+ export { default as SvScrollArea } from './SvScrollArea.svelte'
241
+ export { default as SvAvatarGroup } from './SvAvatarGroup.svelte'
242
+ export { default as SvCommand, type CommandItem } from './SvCommand.svelte'
243
+ export { fuzzyScore, fuzzyMatch } from './fuzzy'
244
+ export { default as SvRichText, type RichTextTool } from './SvRichText.svelte'
245
+ export { default as SvCarousel } from './SvCarousel.svelte'
246
+ export { default as SvTour, type TourStep } from './SvTour.svelte'
247
+ export { default as SvPagination } from './SvPagination.svelte'
248
+ export { paginationRange, type PaginationItem, type PaginationRangeOptions } from './paginate'
249
+ export { default as SvBreadcrumb, type BreadcrumbItem } from './SvBreadcrumb.svelte'
250
+ export { default as SvStepper, type StepItem } from './SvStepper.svelte'
251
+ export { default as SvAvatar } from './SvAvatar.svelte'
252
+ export { avatarInitials, avatarColorHue } from './avatar'
253
+ export { default as SvContextMenu } from './SvContextMenu.svelte'
254
+ export {
255
+ toast,
256
+ dismissToast,
257
+ clearToasts,
258
+ pauseToast,
259
+ resumeToast,
260
+ toastStore,
261
+ type Toast,
262
+ type ToastVariant,
263
+ type ToastOptions,
264
+ type ToastFn,
265
+ } from './toast-store.svelte'
266
+ export { default as SvMenu, type MenuItem } from './SvMenu.svelte'
267
+ export { default as SvNavPane, type NavItem, type NavSection, type NavModule } from './SvNavPane.svelte'
268
+ export { default as SvProgress } from './SvProgress.svelte'
269
+ export { default as SvCircularProgress } from './SvCircularProgress.svelte'
270
+ export { popIn } from './popover'
271
+ export { default as SvForm, type FormField, type FormFieldType } from './SvForm.svelte'
272
+ export { rules, runRules, isEmptyValue, type Validator, type RuleOptions, type CompareOp } from './validators'
273
+ export { anchoredRect, portalToBody, PANEL_THEME_VARS, type AnchoredRect } from './popover'
274
+ export {
275
+ toDate, startOfDay, addDays, addMonths, addYears, clampDate, isSameDay,
276
+ monthMatrix, isoWeek, decadeRange, withTime, snapMinute, type DateLike,
277
+ } from './datetime/date-core'
278
+ export { formatDate, parseDate, tokenizeMask } from './datetime/date-format'
279
+ export {
280
+ selectDate, rangeDays, isSelected, isMultiSelectMode, emptySelection,
281
+ type SelectionMode, type SelectionState,
282
+ } from './datetime/date-selection'
283
+ export {
284
+ isDisabledDay, isOutOfRange, isRestricted, isImportant, type RestrictOptions,
285
+ } from './datetime/date-restrict'
286
+ export { default as FlexRender } from './FlexRender.svelte'
287
+ export { renderComponent, renderSnippet } from './render-component'
288
+ export { default as SvGridChart } from './SvGridChart.svelte'
289
+ export {
290
+ buildChart,
291
+ rowsToChartSpec,
292
+ niceScale,
293
+ niceLogScale,
294
+ linearTrend,
295
+ simpleMovingAverage,
296
+ exponentialMovingAverage,
297
+ computeOverlay,
298
+ buildLinePath,
299
+ sampleGradient,
300
+ pickContrastText,
301
+ DEFAULT_PALETTE,
302
+ type ChartType,
303
+ type ChartSpec,
304
+ type ChartSeries,
305
+ type ChartGeometry,
306
+ type ChartBar,
307
+ type ChartLine,
308
+ type ChartLinePoint,
309
+ type ChartPieSlice,
310
+ type ChartSelection,
311
+ type ChartReferenceLine,
312
+ type ChartRefLineGeo,
313
+ type ChartRefLineGeoV,
314
+ type ChartScatterDot,
315
+ type ScatterPoint,
316
+ type NiceScale,
317
+ type SeriesOverlay,
318
+ type SeriesPattern,
319
+ type ChartAnnotation,
320
+ type ChartHeatmapCell,
321
+ type ChartFunnelSegment,
322
+ type ChartRadarSeries,
323
+ type ChartRadarAxis,
324
+ type ChartTreemapCell,
325
+ type ChartCalendarCell,
326
+ type ChartGaugeLayout,
327
+ type ChartSankeyNode,
328
+ type ChartSankeyLink,
329
+ type TreeNode,
330
+ } from './chart'
331
+ export {
332
+ chartToSvgString,
333
+ downloadChartSvg,
334
+ chartToPngBlob,
335
+ downloadChartPng,
336
+ type ChartExportOptions,
337
+ } from './chart-export'
338
+ export {
339
+ buildSparkline,
340
+ toSparklineValues,
341
+ type SparklineConfig,
342
+ type SparklineType,
343
+ type SparklineGeometry,
344
+ } from './sparkline'
345
+ export {
346
+ spreadsheetLayout,
347
+ spansToMerges,
348
+ type SpanColumn,
349
+ type SpreadsheetActionOptions,
350
+ type MergeSpec,
351
+ type CellBorderSpec,
352
+ type BorderSpec,
353
+ } from './spreadsheet'
354
+ export { rowResize, type RowResizeOptions } from './row-resize'
355
+ export { rowDropZone, type RowDragEndEvent, type RowDropZoneOptions } from './row-drag'
356
+ export { resolveColumnTypes, inferCellDataType, type CellDataType } from './column-types'
357
+ export {
358
+ computeColumnGroupMeta,
359
+ hiddenLeavesForCollapse,
360
+ type ColumnGroupMeta,
361
+ type ColumnGroupShow,
362
+ } from './column-groups'
363
+ export {
364
+ createHyperFormulaSheet,
365
+ type HyperFormulaSheet,
366
+ type HyperFormulaSheetConfig,
367
+ type HyperFormulaInstance,
368
+ } from './hyperformula-adapter'
369
+ export {
370
+ createCollaboration,
371
+ broadcastChannelTransport,
372
+ type CollabUser,
373
+ type CollabCell,
374
+ type CollabPresence,
375
+ type CollabMessage,
376
+ type CollabTransport,
377
+ type Collaboration,
378
+ } from './collaboration'
379
+ export {
380
+ createServerDataSource,
381
+ type ServerDataSource,
382
+ type ServerRequest,
383
+ type ServerResult,
384
+ type ServerController,
385
+ type ServerState,
386
+ type ServerSortModel,
387
+ type ServerFilterModel,
388
+ type ServerAggregation,
389
+ type ServerGroupRow,
390
+ type ServerLeafRow,
391
+ type ServerMoreRow,
392
+ type ServerFooterRow,
393
+ type ServerSkeletonRow,
394
+ type ServerDisplayRow,
395
+ } from './server-data-source'
396
+ export {
397
+ createServerGroupModel,
398
+ serverGroupRows,
399
+ serverGroupNav,
400
+ type ServerGroupController,
401
+ type ServerGroupControllerOptions,
402
+ type ServerGroupState,
403
+ type ServerGroupGridRow,
404
+ } from './server-group-model'
405
+ export { default as SvGroupCell } from './SvGroupCell.svelte'
406
+ export { default as SvRowGroupPanel } from './SvRowGroupPanel.svelte'
407
+ export {
408
+ createNamedViews,
409
+ memoryViews,
410
+ localStorageViews,
411
+ attachAutoSavedView,
412
+ type SavedView,
413
+ type ViewStorage,
414
+ type NamedViews,
415
+ type AutoSavedViewOptions,
416
+ } from './named-views'
417
+ export {
418
+ resolveCellFormat,
419
+ computeColumnStat,
420
+ lerpColor,
421
+ contrastText,
422
+ type ConditionalFormat,
423
+ type ConditionalFormatSpec,
424
+ type ColorScaleFormat,
425
+ type DataBarFormat,
426
+ type IconSetFormat,
427
+ type RuleFormat,
428
+ type ResolvedCellFormat,
429
+ } from './conditional-formatting'
430
+ export { getKeyboardIntent, getNextActiveCell, type GridKeyboardIntent } from './keyboard'
431
+ export { createVirtualizer } from './virtualization/virtualizer'
432
+ export { createSvelteVirtualizer } from './virtualization/svelte-virtualizer.svelte'
433
+ export { createColumnVirtualizer } from './virtualization/column-virtualizer'
434
+ export type { VirtualItem, VirtualizerOptions, VirtualizerState } from './virtualization/types'
435
+ export type { SvGridApi, SvGridFilterOperator, SvGridWrapperProps } from './svgrid-wrapper.types'
436
+ export {
437
+ parseEditorValue,
438
+ normalizeEditorOptions,
439
+ type CellEditorType,
440
+ type CellEditorOption,
441
+ } from './editors/cell-editors'
442
+ export {
443
+ applyExcelFilter,
444
+ normalizeForFilter,
445
+ type ExcelFilter,
446
+ type ExcelFilterOperator,
447
+ type ExcelFilterOptions,
448
+ } from './filtering/excel-filters'
449
+ export {
450
+ getGridCellDomId,
451
+ getGridCellA11yProps,
452
+ getGridHeaderA11yProps,
453
+ getGridRootA11yProps,
454
+ getGridRowA11yProps,
455
+ type GridCellA11yInput,
456
+ type GridColumnA11yInput,
457
+ type GridSortDirection,
458
+ } from './a11y'
459
+
460
+ /**
461
+ * Compatibility alias for teams migrating from `createTable`.
462
+ */
463
+ export { createSvGrid as createTable } from './createGrid.svelte'