@svgrid/grid 2.2.25 → 2.2.27

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 (218) hide show
  1. package/README.md +199 -145
  2. package/dist/FlexRender.svelte +96 -96
  3. package/dist/GridFooter.svelte +179 -179
  4. package/dist/GridMenus.svelte +734 -728
  5. package/dist/SvAutoComplete.svelte +165 -165
  6. package/dist/SvCalendar.svelte +503 -503
  7. package/dist/SvCarousel.svelte +141 -141
  8. package/dist/SvCheckBox.svelte +101 -101
  9. package/dist/SvColorInput.svelte +181 -181
  10. package/dist/SvComboBox.svelte +275 -275
  11. package/dist/SvContextMenu.svelte +116 -116
  12. package/dist/SvCountryInput.svelte +160 -160
  13. package/dist/SvDrawer.svelte +250 -250
  14. package/dist/SvDropDownList.svelte +374 -374
  15. package/dist/SvDurationInput.svelte +126 -126
  16. package/dist/SvField.svelte +293 -293
  17. package/dist/SvForm.svelte +437 -437
  18. package/dist/SvGrid.css +2723 -2719
  19. package/dist/SvGrid.svelte +3333 -3333
  20. package/dist/SvGridChart.svelte +1724 -1724
  21. package/dist/SvGridChartPanel.svelte +485 -485
  22. package/dist/SvGridChartView.svelte +70 -70
  23. package/dist/SvGridDropdown.svelte +696 -696
  24. package/dist/SvGridSelect.svelte +259 -259
  25. package/dist/SvGroupCell.svelte +109 -109
  26. package/dist/SvListBox.svelte +287 -287
  27. package/dist/SvMaskedInput.svelte +122 -122
  28. package/dist/SvMenu.svelte +124 -124
  29. package/dist/SvMenuList.svelte +146 -146
  30. package/dist/SvMultiSelect.svelte +281 -281
  31. package/dist/SvNumberInput.svelte +168 -168
  32. package/dist/SvOtpInput.svelte +158 -158
  33. package/dist/SvPasswordInput.svelte +151 -151
  34. package/dist/SvPhoneInput.svelte +131 -131
  35. package/dist/SvPopover.svelte +197 -197
  36. package/dist/SvRadioGroup.svelte +107 -107
  37. package/dist/SvRowGroupPanel.svelte +170 -170
  38. package/dist/SvScrollArea.svelte +61 -61
  39. package/dist/SvSlider.svelte +200 -200
  40. package/dist/SvSwitchButton.svelte +107 -107
  41. package/dist/SvTagsInput.svelte +112 -112
  42. package/dist/SvTextInput.svelte +147 -147
  43. package/dist/SvTimePicker.svelte +245 -245
  44. package/dist/SvToaster.svelte +159 -159
  45. package/dist/SvToggleButton.svelte +85 -85
  46. package/dist/SvTooltip.svelte +161 -161
  47. package/dist/SvTour.svelte +204 -204
  48. package/dist/SvTree.svelte +437 -437
  49. package/dist/SvTreeSelect.svelte +233 -233
  50. package/dist/a11y/dismissable.d.ts +11 -0
  51. package/dist/a11y/dismissable.js +21 -0
  52. package/dist/ai.js +3 -3
  53. package/dist/cdn/GridMenus-BzxEYNtW.js +421 -0
  54. package/dist/cdn/GridMenus-Dr-nGEXn.js +417 -0
  55. package/dist/cdn/{SvDateTimePicker-CYC7gRER.js → SvDateTimePicker-B1sDc9Pz.js} +451 -444
  56. package/dist/cdn/{SvDateTimePicker-DtQKd4Ns.js → SvDateTimePicker-Bh0FTs1E.js} +114 -107
  57. package/dist/cdn/{SvGridChart-BhnFdLd0.js → SvGridChart-BKQsO5fZ.js} +1 -1
  58. package/dist/cdn/{SvGridChart-BcLCYvw9.js → SvGridChart-Bgk4hDs8.js} +1 -1
  59. package/dist/cdn/{SvGridChartPanel-DvjwxLvK.js → SvGridChartPanel-DSkHIQDd.js} +1 -1
  60. package/dist/cdn/{SvGridChartPanel-Cmx9DHAS.js → SvGridChartPanel-DkCc2Z7b.js} +1 -1
  61. package/dist/cdn/{SvGridChartView-B40DTJSX.js → SvGridChartView-BrbVaELm.js} +1 -1
  62. package/dist/cdn/{SvGridChartView-PwqI4s02.js → SvGridChartView-i9rWvSKg.js} +1 -1
  63. package/dist/cdn/{SvGridDropdown-hpnHvOGt.js → SvGridDropdown-CGxxopQ4.js} +1 -1
  64. package/dist/cdn/{SvGridDropdown-DjALc_4f.js → SvGridDropdown-D08sVmAy.js} +1 -1
  65. package/dist/cdn/{src-DysW9qbk.js → src-Cw8d9U8j.js} +5753 -5753
  66. package/dist/cdn/{src-bYfr_7aR.js → src-cgs1wcUS.js} +8102 -8102
  67. package/dist/cdn/svgrid.js +9 -9
  68. package/dist/cdn/svgrid.svelte-external.js +9 -9
  69. package/dist/chart-export.js +8 -8
  70. package/dist/index.d.ts +1 -1
  71. package/dist/index.js +1 -1
  72. package/package.json +30 -13
  73. package/src/FlexRender.svelte +96 -96
  74. package/src/GridFooter.svelte +179 -179
  75. package/src/GridMenus.svelte +734 -728
  76. package/src/SvAutoComplete.svelte +165 -165
  77. package/src/SvCalendar.svelte +503 -503
  78. package/src/SvCalendar.test.ts +226 -226
  79. package/src/SvCarousel.svelte +141 -141
  80. package/src/SvCheckBox.svelte +101 -101
  81. package/src/SvColorInput.svelte +181 -181
  82. package/src/SvComboBox.svelte +275 -275
  83. package/src/SvContextMenu.svelte +116 -116
  84. package/src/SvCountryInput.svelte +160 -160
  85. package/src/SvDrawer.svelte +250 -250
  86. package/src/SvDropDownList.svelte +374 -374
  87. package/src/SvDurationInput.svelte +126 -126
  88. package/src/SvField.svelte +293 -293
  89. package/src/SvForm.svelte +437 -437
  90. package/src/SvForm.test.ts +411 -411
  91. package/src/SvGrid.controller.svelte.ts +3239 -3239
  92. package/src/SvGrid.css +2723 -2719
  93. package/src/SvGrid.svelte +3333 -3333
  94. package/src/SvGrid.types.ts +1613 -1613
  95. package/src/SvGridChart.svelte +1724 -1724
  96. package/src/SvGridChartPanel.svelte +485 -485
  97. package/src/SvGridChartView.svelte +70 -70
  98. package/src/SvGridDropdown.svelte +696 -696
  99. package/src/SvGridSelect.svelte +259 -259
  100. package/src/SvGroupCell.svelte +109 -109
  101. package/src/SvListBox.svelte +287 -287
  102. package/src/SvMaskedInput.svelte +122 -122
  103. package/src/SvMenu.svelte +124 -124
  104. package/src/SvMenu.test.ts +97 -97
  105. package/src/SvMenuList.svelte +146 -146
  106. package/src/SvMultiSelect.svelte +281 -281
  107. package/src/SvNumberInput.svelte +168 -168
  108. package/src/SvOtpInput.svelte +158 -158
  109. package/src/SvPasswordInput.svelte +151 -151
  110. package/src/SvPhoneInput.svelte +131 -131
  111. package/src/SvPopover.svelte +197 -197
  112. package/src/SvRadioGroup.svelte +107 -107
  113. package/src/SvRowGroupPanel.svelte +170 -170
  114. package/src/SvScrollArea.svelte +61 -61
  115. package/src/SvSlider.svelte +200 -200
  116. package/src/SvSwitchButton.svelte +107 -107
  117. package/src/SvTagsInput.svelte +112 -112
  118. package/src/SvTextInput.svelte +147 -147
  119. package/src/SvTimePicker.svelte +245 -245
  120. package/src/SvToaster.svelte +159 -159
  121. package/src/SvToaster.test.ts +95 -95
  122. package/src/SvToggleButton.svelte +85 -85
  123. package/src/SvTooltip.svelte +161 -161
  124. package/src/SvTour.svelte +204 -204
  125. package/src/SvTree.svelte +437 -437
  126. package/src/SvTreeSelect.svelte +233 -233
  127. package/src/a11y/dismissable.test.ts +119 -95
  128. package/src/a11y/dismissable.ts +114 -94
  129. package/src/a11y.contract.test.ts +49 -49
  130. package/src/a11y.test.ts +59 -59
  131. package/src/a11y.ts +61 -61
  132. package/src/ai.test.ts +502 -502
  133. package/src/ai.ts +1391 -1391
  134. package/src/build-api.coverage.test.ts +633 -633
  135. package/src/build-api.ts +895 -895
  136. package/src/builtin-editors.grid.test.ts +85 -85
  137. package/src/cell-formatting.ts +169 -169
  138. package/src/cell-render.ts +469 -469
  139. package/src/chart-export.ts +201 -201
  140. package/src/chart-view.svelte.ts +36 -36
  141. package/src/chart.ts +2296 -2296
  142. package/src/collaboration.test.ts +104 -104
  143. package/src/collaboration.ts +167 -167
  144. package/src/core.performance.test.ts +30 -30
  145. package/src/core.ts +1111 -1111
  146. package/src/createAutocomplete.svelte.ts +132 -132
  147. package/src/createCombobox.svelte.ts +191 -191
  148. package/src/createCountryInput.svelte.ts +157 -157
  149. package/src/createDropdownList.svelte.ts +168 -168
  150. package/src/createForm.svelte.ts +386 -386
  151. package/src/createGrid.svelte.ts +42 -42
  152. package/src/createGrid.test.ts +10 -10
  153. package/src/createGridState.svelte.ts +17 -17
  154. package/src/createMenu.svelte.ts +225 -225
  155. package/src/createPopoverSelect.svelte.ts +213 -213
  156. package/src/createSlider.svelte.ts +191 -191
  157. package/src/createTooltip.svelte.ts +144 -144
  158. package/src/createTree.svelte.ts +319 -319
  159. package/src/editing.test.ts +859 -859
  160. package/src/editing.ts +675 -675
  161. package/src/editor-contract.ts +157 -157
  162. package/src/export-data-api.test.ts +126 -126
  163. package/src/export-format.test.ts +107 -107
  164. package/src/export-format.ts +598 -598
  165. package/src/filter-operators.ts +157 -157
  166. package/src/flex-render.ts +3 -3
  167. package/src/form-field.ts +127 -127
  168. package/src/index.ts +713 -712
  169. package/src/js-scroller.svelte.ts +173 -173
  170. package/src/keyboard.test.ts +59 -59
  171. package/src/keyboard.ts +97 -97
  172. package/src/list-nav.test.ts +49 -49
  173. package/src/list-nav.ts +29 -29
  174. package/src/list-option.test.ts +56 -56
  175. package/src/list-option.ts +172 -172
  176. package/src/menus.test.ts +700 -700
  177. package/src/menus.ts +652 -652
  178. package/src/merge-objects.ts +48 -48
  179. package/src/overlays.test.ts +90 -90
  180. package/src/render-component.ts +28 -28
  181. package/src/scheduler-model.test.ts +562 -562
  182. package/src/scheduler-model.ts +872 -872
  183. package/src/selection.test.ts +754 -754
  184. package/src/selection.ts +600 -600
  185. package/src/server-data-source.test.ts +289 -289
  186. package/src/server-data-source.ts +413 -413
  187. package/src/sparkline.test.ts +68 -68
  188. package/src/sparkline.ts +169 -169
  189. package/src/spreadsheet.test.ts +489 -489
  190. package/src/spreadsheet.ts +312 -312
  191. package/src/static-functions.ts +11 -11
  192. package/src/subscribe.ts +38 -38
  193. package/src/svgrid-wrapper.types.ts +524 -524
  194. package/src/svgrid.behavior.test.ts +706 -706
  195. package/src/svgrid.charting.test.ts +534 -534
  196. package/src/svgrid.features.test.ts +157 -157
  197. package/src/svgrid.filter-menu-scroll.test.ts +102 -0
  198. package/src/svgrid.new-features.wrapper.test.ts +251 -251
  199. package/src/svgrid.wrapper.test.ts +40 -40
  200. package/src/test-setup.ts +62 -62
  201. package/src/themes/index.ts +215 -215
  202. package/src/toast-store.svelte.ts +246 -246
  203. package/src/toast-store.test.ts +147 -147
  204. package/src/ui-buttons.test.ts +144 -144
  205. package/src/ui-inputs.test.ts +118 -118
  206. package/src/ui-range.test.ts +70 -70
  207. package/src/ui-selection.test.ts +155 -155
  208. package/src/ui-tier1.test.ts +142 -142
  209. package/src/virtual.test.ts +88 -88
  210. package/src/virtualization/column-virtualizer.test.ts +27 -27
  211. package/src/virtualization/column-virtualizer.ts +30 -30
  212. package/src/virtualization/svelte-virtualizer.svelte.ts +26 -26
  213. package/src/virtualization/types.ts +30 -30
  214. package/src/virtualization/virtualizer.test.ts +47 -47
  215. package/src/virtualization/virtualizer.ts +296 -296
  216. package/themes/ember.css +71 -71
  217. package/dist/cdn/GridMenus-GfCAHgkZ.js +0 -420
  218. package/dist/cdn/GridMenus-GiVNSeDU.js +0 -416
@@ -1,374 +1,374 @@
1
- <script lang="ts">
2
- /**
3
- * SvDropDownList - a single-select dropdown (trigger button + portalled list,
4
- * no typing). Parity: Smart `smart-drop-down-list`. Controlled via `value` +
5
- * `onChange`. Popover escapes scroll clipping via popover.ts.
6
- *
7
- * One styled renderer over the headless `createDropdownList` core (state +
8
- * keyboard + ARIA); only portal/measure/scroll render concerns live here.
9
- */
10
- import { anchoredRect, portalToBody, popIn, type AnchoredRect } from './popover'
11
- import { startPanelResize } from './panel-resize'
12
- import { createDismissableLayer } from './a11y/dismissable'
13
- import { groupOptions, normalizeOptions, flattenForVirtual, type ListOption, type IndexedOption, type RowHeight } from './list-option'
14
- import { createSvelteVirtualizer } from './virtualization/svelte-virtualizer.svelte'
15
- import { createJsScroller } from './js-scroller.svelte'
16
- import SvField from './SvField.svelte'
17
- import { nextEditorId, type SvEditorProps } from './editor-contract'
18
- import { createDropdownList } from './createDropdownList.svelte'
19
- import { untrack, type Snippet } from 'svelte'
20
-
21
- type Props = SvEditorProps & {
22
- options: ReadonlyArray<ListOption>
23
- value?: string | number | null
24
- onChange?: (value: string | number) => void
25
- placeholder?: string
26
- autoOpen?: boolean
27
- /** Window the option list (render only visible) for large sets. */
28
- virtual?: boolean
29
- /** Option height in px - a number, or a per-option function for variable
30
- * heights. Must match the rendered row height. Default 34. */
31
- rowHeight?: RowHeight
32
- /** Height (px) of a group heading row when virtualized + grouped. Default 28. */
33
- groupHeaderHeight?: number
34
- /** Max options shown before the panel scrolls (native-select behaviour). Default 8. */
35
- maxRows?: number
36
- /** Show a bottom drag grip so the user can resize the open panel's height
37
- * (only while it opens downward). Off by default. */
38
- resizable?: boolean
39
- /** Custom render for each option (receives the ListOption). */
40
- item?: Snippet<[ListOption]>
41
- /** Content pinned above the option list. */
42
- header?: Snippet
43
- /** Content pinned below the option list. */
44
- footer?: Snippet
45
- /** Shown when there are no options. */
46
- noData?: Snippet
47
- }
48
-
49
- let {
50
- options,
51
- value = null,
52
- onChange,
53
- placeholder = 'Select…',
54
- disabled = false,
55
- readonly = false,
56
- name,
57
- size = 'md',
58
- ariaLabel,
59
- invalid = false,
60
- required = false,
61
- error,
62
- label,
63
- hint,
64
- dir,
65
- id,
66
- autoOpen = false,
67
- virtual = false,
68
- rowHeight = 34,
69
- groupHeaderHeight = 28,
70
- maxRows = 8,
71
- resizable = false,
72
- item,
73
- header,
74
- footer,
75
- noData,
76
- }: Props = $props()
77
-
78
- const autoId = nextEditorId('sv-ddl')
79
- const uid = $derived(id ?? autoId)
80
-
81
- // Tolerate primitive / partial options - normalize so labels render + keys are stable.
82
- const norm = $derived(normalizeOptions(options))
83
-
84
- // Virtualization windows the option list (grouped lists too, via the shared
85
- // virtualizer + a flattened header/option model with per-row sizes).
86
- const useVirtual = $derived(virtual)
87
- let viewportH = $state(0)
88
- const rowHeightBase = $derived(typeof rowHeight === 'number' ? rowHeight : 34)
89
- const flat = $derived(flattenForVirtual(norm, { rowHeight, groupHeaderHeight }))
90
- const uniform = $derived(!flat.hasGroups && typeof rowHeight === 'number')
91
- const estimateSize = $derived(uniform ? rowHeightBase : (i: number) => flat.sizeAt(i))
92
-
93
- // Generous overscan buffers fast flings; effective viewport never 0 (see SvListBox).
94
- const OVERSCAN = 20
95
- const effViewport = $derived(viewportH > 0 ? viewportH : Math.max(1, maxRows * rowHeightBase))
96
-
97
- // Seed with the initial (untracked) values so the first paint of the open panel
98
- // renders a full window; the effects below keep it synced.
99
- const virtualizer = createSvelteVirtualizer(
100
- untrack(() => ({ count: flat.entries.length, estimateSize, overscan: OVERSCAN, viewportHeight: effViewport })),
101
- )
102
- // untrack keeps the virtualizer's internal `version` write out of these
103
- // effects' dependencies, so they re-run only on their real inputs.
104
- $effect(() => {
105
- const count = flat.entries.length
106
- const es = estimateSize
107
- untrack(() => virtualizer.setOptions({ count, estimateSize: es }))
108
- })
109
- $effect(() => {
110
- const vh = effViewport
111
- untrack(() => virtualizer.setViewportHeight(vh))
112
- })
113
- const vItems = $derived.by(() => {
114
- virtualizer.version
115
- return virtualizer.getVirtualItems()
116
- })
117
- const totalSize = $derived.by(() => {
118
- virtualizer.version
119
- return virtualizer.getTotalSize()
120
- })
121
- // JS-driven scroll (see SvListBox / js-scroller): no native scroll, so a fast
122
- // thumb-drag never flashes the empty panel.
123
- const scroller = createJsScroller({
124
- virtualizer,
125
- totalSize: () => totalSize,
126
- viewport: () => effViewport,
127
- lineStep: () => rowHeightBase,
128
- })
129
-
130
- let triggerEl = $state<HTMLButtonElement | null>(null)
131
- let panelEl = $state<HTMLDivElement | null>(null)
132
- let rect = $state<AnchoredRect>({ top: 0, left: 0, width: 0, openUpward: false, maxHeight: 0, availHeight: 0 })
133
- // User-chosen panel height (px) once they drag the resize grip; null = auto.
134
- let userHeight = $state<number | null>(null)
135
- // Effective height cap: the user's drag if any (clamped to the viewport
136
- // ceiling), otherwise the comfortable bounds-aware height.
137
- const panelMaxH = $derived(
138
- resizable && userHeight != null ? Math.min(userHeight, rect.availHeight) : rect.maxHeight,
139
- )
140
- const showGrip = $derived(resizable && !rect.openUpward)
141
-
142
- // The virtual panel uses NO native scroll, so its rows are absolutely
143
- // positioned and can't size the panel. Give it an explicit height (content up
144
- // to `maxRows`, capped by the resized / bounds-aware ceiling) so the flex
145
- // viewport (`.sv-ddl__vp`) has a definite height to fill.
146
- const virtualPanelH = $derived(
147
- Math.min(
148
- Math.min(totalSize, Math.max(rowHeightBase, maxRows * rowHeightBase)) + 8,
149
- rect.maxHeight || Number.POSITIVE_INFINITY,
150
- resizable && userHeight != null ? panelMaxH : Number.POSITIVE_INFINITY,
151
- ),
152
- )
153
-
154
- const ddl = createDropdownList({
155
- options: () => norm,
156
- value: () => value,
157
- onChange: (v) => onChange?.(v),
158
- disabled: () => disabled,
159
- readonly: () => readonly,
160
- ariaLabel: () => ariaLabel,
161
- focusTrigger: () => triggerEl?.focus(),
162
- id: () => uid,
163
- invalid: () => invalid,
164
- required: () => required,
165
- error: () => error,
166
- hint: () => hint,
167
- })
168
-
169
- const selected = $derived(ddl.selected)
170
-
171
- function updatePos() {
172
- if (!triggerEl) return
173
- // When the user has resized, anchor to THAT height so the flip decision and
174
- // upward top stay correct; otherwise size to the content up to `maxRows` items
175
- // (native-select behaviour: no scrollbar until the list exceeds the cap). The
176
- // +PANEL_CHROME budgets the panel's own padding (8) + border (2) so a list
177
- // that exactly fills `maxRows` is not clipped by the border-box max-height.
178
- const PANEL_CHROME = 10
179
- const estimatedHeight =
180
- resizable && userHeight != null ? userHeight : Math.min(norm.length, maxRows) * rowHeightBase + PANEL_CHROME
181
- rect = anchoredRect(triggerEl.getBoundingClientRect(), { estimatedHeight })
182
- }
183
-
184
- function startResize(e: PointerEvent) {
185
- if (!panelEl) return
186
- startPanelResize(e, {
187
- startHeight: panelEl.clientHeight,
188
- min: 96,
189
- max: () => rect.availHeight,
190
- onHeight: (h) => {
191
- userHeight = h
192
- updatePos()
193
- },
194
- })
195
- }
196
-
197
- $effect(() => {
198
- if (!ddl.open) return
199
- updatePos()
200
- const rp = () => updatePos()
201
- window.addEventListener('scroll', rp, true); window.addEventListener('resize', rp)
202
- // Outside-pointer dismissal via the shared layer stack (Escape stays with
203
- // the core keyboard handler). Because this layer is pushed ON TOP, a
204
- // dropdown opened inside a dialog/drawer closes itself first and never
205
- // dismisses the dialog underneath it.
206
- const layer = createDismissableLayer({
207
- element: () => [triggerEl, panelEl],
208
- onDismiss: () => ddl.close(),
209
- closeOnEscape: false,
210
- })
211
- layer.activate()
212
- return () => { window.removeEventListener('scroll', rp, true); window.removeEventListener('resize', rp); layer.release() }
213
- })
214
- // Keep the active option scrolled into view (render concern) - via the scroller
215
- // (virtual) or scrollIntoView (native non-virtual).
216
- $effect(() => {
217
- if (!ddl.open) return
218
- const i = ddl.activeIndex
219
- if (useVirtual) {
220
- const flatIdx = flat.optionFlatIndex[i]
221
- if (flatIdx == null) return
222
- untrack(() => scroller.ensureIndexVisible(flatIdx))
223
- } else {
224
- queueMicrotask(() => panelEl?.querySelector<HTMLElement>(`[data-idx="${i}"]`)?.scrollIntoView({ block: 'nearest' }))
225
- }
226
- })
227
- function focusOpen(node: HTMLButtonElement) { if (autoOpen) { node.focus(); ddl.openPanel() } }
228
- </script>
229
-
230
- <SvField id={uid} {label} {hint} {error} {required} {dir}>
231
- <button
232
- bind:this={triggerEl}
233
- class="sv-ddl sv-ddl--{size}"
234
- class:is-open={ddl.open}
235
- class:is-disabled={disabled}
236
- class:is-invalid={invalid}
237
- {...ddl.triggerProps()}
238
- use:focusOpen
239
- >
240
- <span class="sv-ddl__value" class:is-placeholder={!selected}>{#if selected?.color}<span class="sv-ddl__swatch" style:background={selected.color}></span>{/if}{selected?.label ?? placeholder}</span>
241
- <svg class="sv-ddl__chev" viewBox="0 0 24 24" width="15" height="15" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="m6 9 6 6 6-6" /></svg>
242
- </button>
243
- </SvField>
244
-
245
- {#snippet optRow(opt: IndexedOption, h?: number, top?: number)}
246
- <!-- svelte-ignore a11y_click_events_have_key_events a11y_interactive_supports_focus -->
247
- <div class="sv-ddl__opt" style:height={h != null ? `${h}px` : undefined} style:transform={top == null ? undefined : `translateY(${top}px)`} class:is-active={ddl.isActive(opt.index)} class:is-selected={ddl.isSelected(opt)} class:is-disabled={opt.disabled} {...ddl.optionProps(opt.index)}>
248
- {#if item}{@render item(opt)}{:else}{#if opt.color}<span class="sv-ddl__swatch" style:background={opt.color}></span>{/if}{opt.label}{/if}
249
- </div>
250
- {/snippet}
251
-
252
- {#if ddl.open}
253
- <div bind:this={panelEl} class="sv-ddl__panel" class:is-virtual={useVirtual} class:is-resizable={showGrip} use:portalToBody use:popIn={{ up: rect.openUpward }} style:--sv-row-h={`${rowHeightBase}px`} style:position="fixed" style:top={`${rect.top}px`} style:left={`${rect.left}px`} style:min-width={`${rect.width}px`} style:max-height={`${panelMaxH}px`} style:height={useVirtual ? `${virtualPanelH}px` : resizable && userHeight != null ? `${panelMaxH}px` : undefined} onwheel={useVirtual ? scroller.onWheel : undefined} {...ddl.listboxProps()}>
254
- {#if header}<div class="sv-ddl__header">{@render header()}</div>{/if}
255
- {#if !norm.length}
256
- {#if noData}{@render noData()}{:else}<div class="sv-ddl__empty">No options</div>{/if}
257
- {:else if useVirtual}
258
- <!-- JS-driven scroller: one clipped viewport holds the windowed rows (moved
259
- by scrollOffset) + a custom scrollbar. No native scroll = no async gap
260
- = no blank flash on a fast thumb-drag. -->
261
- <!-- svelte-ignore a11y_no_static_element_interactions -->
262
- <div class="sv-ddl__vp" bind:clientHeight={viewportH} onpointerdown={scroller.onContentDown} onpointermove={scroller.onContentMove} onpointerup={scroller.onContentUp} onpointercancel={scroller.onContentUp}>
263
- {#each vItems as vi (vi.key)}
264
- {@const entry = flat.entries[vi.index]}
265
- {#if entry?.type === 'group'}
266
- <div class="sv-ddl__group-label sv-ddl__group-label--abs" aria-hidden="true" style:height={`${vi.size}px`} style:transform={`translateY(${vi.start - scroller.scrollOffset}px)`}>{entry.label}</div>
267
- {:else if entry}
268
- {@render optRow(entry.opt, vi.size, vi.start - scroller.scrollOffset)}
269
- {/if}
270
- {/each}
271
- {#if scroller.maxOffset > 0}
272
- <!-- svelte-ignore a11y_no_static_element_interactions -->
273
- <div class="sv-ddl__sb" onpointerdown={scroller.onTrackDown} aria-hidden="true">
274
- <div class="sv-ddl__thumb" class:is-dragging={scroller.dragging} style:height={`${scroller.thumbH}px`} style:transform={`translateY(${scroller.thumbTop}px)`} onpointerdown={scroller.onThumbDown} onpointermove={scroller.onThumbMove} onpointerup={scroller.onThumbUp} onpointercancel={scroller.onThumbUp}></div>
275
- </div>
276
- {/if}
277
- </div>
278
- {:else}
279
- {#each groupOptions(norm) as g (g.group ?? '')}
280
- {#if g.group != null}
281
- <div class="sv-ddl__group" role="group" aria-label={g.group}>
282
- <div class="sv-ddl__group-label" aria-hidden="true">{g.group}</div>
283
- {#each g.options as opt (opt.index)}
284
- {@render optRow(opt)}
285
- {/each}
286
- </div>
287
- {:else}
288
- {#each g.options as opt (opt.index)}
289
- {@render optRow(opt)}
290
- {/each}
291
- {/if}
292
- {/each}
293
- {/if}
294
- {#if footer}<div class="sv-ddl__footer">{@render footer()}</div>{/if}
295
- {#if showGrip}
296
- <!-- svelte-ignore a11y_no_static_element_interactions -->
297
- <div class="sv-ddl__grip" onpointerdown={startResize} title="Drag to resize" aria-hidden="true">
298
- <span class="sv-ddl__grip-dots"></span>
299
- </div>
300
- {/if}
301
- </div>
302
- {/if}
303
- {#if name}<input type="hidden" {name} value={value ?? ''} />{/if}
304
-
305
- <style>
306
- .sv-ddl {
307
- --_accent: var(--sg-accent, #2563eb);
308
- display: inline-flex; align-items: center; justify-content: space-between; gap: 8px; width: 200px;
309
- background: var(--sg-input-bg, #fff); color: var(--sg-fg, #0f172a); font: inherit; text-align: start;
310
- border: 1px solid var(--sg-input-border, var(--sg-border, #cbd5e1)); border-radius: var(--sg-radius, 8px);
311
- padding: 0 10px; cursor: pointer;
312
- }
313
- .sv-ddl--sm { height: 28px; font-size: 12px; }
314
- .sv-ddl--md { height: 34px; font-size: 13px; }
315
- .sv-ddl--lg { height: 40px; font-size: 15px; }
316
- .sv-ddl.is-open, .sv-ddl:focus-visible { border-color: var(--_accent); box-shadow: 0 0 0 2px color-mix(in srgb, var(--_accent) 22%, transparent); outline: none; }
317
- .sv-ddl.is-invalid { border-color: var(--sg-danger, #dc2626); }
318
- .sv-ddl.is-invalid.is-open, .sv-ddl.is-invalid:focus-visible { box-shadow: 0 0 0 2px color-mix(in srgb, var(--sg-danger, #dc2626) 22%, transparent); }
319
- .sv-ddl.is-disabled { opacity: 0.6; cursor: not-allowed; }
320
- .sv-ddl__value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
321
- .sv-ddl__value.is-placeholder { color: var(--sg-muted, #94a3b8); }
322
- .sv-ddl__chev { color: var(--sg-muted, #64748b); flex: none; }
323
-
324
- :global(.sv-ddl__panel) {
325
- box-sizing: border-box; z-index: 2147483647; max-height: 288px; overflow-y: auto; padding: 4px;
326
- background: var(--sg-bg, #fff); color: var(--sg-fg, #0f172a);
327
- border: 1px solid var(--sg-border, #e2e8f0); border-radius: 10px; box-shadow: 0 16px 48px -12px rgba(15,23,42,0.35);
328
- }
329
- /* Virtual panel: a flex column (header / JS-driven viewport / footer / grip)
330
- with NO native scroll - the viewport moves its rows by `scrollOffset`. */
331
- :global(.sv-ddl__panel.is-virtual) { display: flex; flex-direction: column; overflow: hidden; }
332
- :global(.sv-ddl__vp) { position: relative; flex: 1 1 auto; min-height: 0; overflow: hidden; touch-action: none; }
333
- :global(.sv-ddl__panel.is-virtual .sv-ddl__opt), :global(.sv-ddl__group-label--abs) { position: absolute; left: 0; right: 0; top: 0; }
334
- :global(.sv-ddl__sb) { position: absolute; top: 0; right: 1px; bottom: 0; width: 10px; z-index: 2; }
335
- :global(.sv-ddl__thumb) {
336
- position: absolute; left: 2px; right: 2px; top: 0; min-height: 24px; border-radius: 4px;
337
- background: color-mix(in srgb, currentColor 26%, transparent); cursor: default; touch-action: none;
338
- }
339
- :global(.sv-ddl__thumb:hover), :global(.sv-ddl__thumb.is-dragging) { background: color-mix(in srgb, currentColor 42%, transparent); }
340
- :global(.sv-ddl__opt) { box-sizing: border-box; flex: none; display: flex; align-items: center; padding: 7px 10px; border-radius: 6px; cursor: pointer; font-size: 13px; }
341
- /* Color swatch shown before an option's label (option.color) - in both the
342
- trigger value and the portalled panel options. */
343
- :global(.sv-ddl__swatch) {
344
- display: inline-block; flex: none; width: 10px; height: 10px; border-radius: 3px;
345
- margin-inline-end: 8px; vertical-align: middle;
346
- box-shadow: inset 0 0 0 1px color-mix(in srgb, #000 18%, transparent);
347
- }
348
- /* Bottom resize grip: a row of dots ("····") the user drags to resize the
349
- panel. Sticky so it stays pinned at the panel's bottom while options scroll. */
350
- :global(.sv-ddl__panel.is-resizable) { padding-bottom: 0; }
351
- :global(.sv-ddl__grip) {
352
- position: sticky; bottom: 0; z-index: 1; margin: 2px -4px -4px; height: 15px;
353
- display: flex; align-items: center; justify-content: center; cursor: ns-resize;
354
- background: var(--sg-bg, #fff); border-top: 1px solid var(--sg-border, #e2e8f0);
355
- border-radius: 0 0 10px 10px; touch-action: none;
356
- }
357
- :global(.sv-ddl__grip-dots) {
358
- width: 26px; height: 4px; color: var(--sg-muted, #94a3b8); opacity: 0.6;
359
- background-image: radial-gradient(currentColor 1px, transparent 1.6px);
360
- background-size: 6px 4px; background-position: center; background-repeat: repeat-x;
361
- }
362
- :global(.sv-ddl__grip:hover .sv-ddl__grip-dots) { opacity: 1; }
363
- :global(.sv-ddl__opt.is-active) { background: var(--sg-row-hover-bg, #f1f5f9); }
364
- :global(.sv-ddl__opt.is-selected) { color: var(--sg-accent, #2563eb); font-weight: 600; }
365
- :global(.sv-ddl__opt.is-disabled) { opacity: 0.4; cursor: not-allowed; }
366
- :global(.sv-ddl__group-label) {
367
- box-sizing: border-box; padding: 8px 10px 3px; font-size: 10.5px; font-weight: 700;
368
- text-transform: uppercase; letter-spacing: 0.04em; color: var(--sg-muted, #94a3b8);
369
- display: flex; align-items: flex-end;
370
- }
371
- :global(.sv-ddl__empty) { padding: 12px 12px; font-size: 13px; color: var(--sg-muted, #64748b); text-align: center; }
372
- :global(.sv-ddl__header) { padding: 8px 10px; border-bottom: 1px solid var(--sg-border, #e2e8f0); font-size: 12.5px; color: var(--sg-muted, #64748b); }
373
- :global(.sv-ddl__footer) { padding: 8px 10px; border-top: 1px solid var(--sg-border, #e2e8f0); font-size: 12.5px; }
374
- </style>
1
+ <script lang="ts">
2
+ /**
3
+ * SvDropDownList - a single-select dropdown (trigger button + portalled list,
4
+ * no typing). Parity: Smart `smart-drop-down-list`. Controlled via `value` +
5
+ * `onChange`. Popover escapes scroll clipping via popover.ts.
6
+ *
7
+ * One styled renderer over the headless `createDropdownList` core (state +
8
+ * keyboard + ARIA); only portal/measure/scroll render concerns live here.
9
+ */
10
+ import { anchoredRect, portalToBody, popIn, type AnchoredRect } from './popover'
11
+ import { startPanelResize } from './panel-resize'
12
+ import { createDismissableLayer } from './a11y/dismissable'
13
+ import { groupOptions, normalizeOptions, flattenForVirtual, type ListOption, type IndexedOption, type RowHeight } from './list-option'
14
+ import { createSvelteVirtualizer } from './virtualization/svelte-virtualizer.svelte'
15
+ import { createJsScroller } from './js-scroller.svelte'
16
+ import SvField from './SvField.svelte'
17
+ import { nextEditorId, type SvEditorProps } from './editor-contract'
18
+ import { createDropdownList } from './createDropdownList.svelte'
19
+ import { untrack, type Snippet } from 'svelte'
20
+
21
+ type Props = SvEditorProps & {
22
+ options: ReadonlyArray<ListOption>
23
+ value?: string | number | null
24
+ onChange?: (value: string | number) => void
25
+ placeholder?: string
26
+ autoOpen?: boolean
27
+ /** Window the option list (render only visible) for large sets. */
28
+ virtual?: boolean
29
+ /** Option height in px - a number, or a per-option function for variable
30
+ * heights. Must match the rendered row height. Default 34. */
31
+ rowHeight?: RowHeight
32
+ /** Height (px) of a group heading row when virtualized + grouped. Default 28. */
33
+ groupHeaderHeight?: number
34
+ /** Max options shown before the panel scrolls (native-select behaviour). Default 8. */
35
+ maxRows?: number
36
+ /** Show a bottom drag grip so the user can resize the open panel's height
37
+ * (only while it opens downward). Off by default. */
38
+ resizable?: boolean
39
+ /** Custom render for each option (receives the ListOption). */
40
+ item?: Snippet<[ListOption]>
41
+ /** Content pinned above the option list. */
42
+ header?: Snippet
43
+ /** Content pinned below the option list. */
44
+ footer?: Snippet
45
+ /** Shown when there are no options. */
46
+ noData?: Snippet
47
+ }
48
+
49
+ let {
50
+ options,
51
+ value = null,
52
+ onChange,
53
+ placeholder = 'Select…',
54
+ disabled = false,
55
+ readonly = false,
56
+ name,
57
+ size = 'md',
58
+ ariaLabel,
59
+ invalid = false,
60
+ required = false,
61
+ error,
62
+ label,
63
+ hint,
64
+ dir,
65
+ id,
66
+ autoOpen = false,
67
+ virtual = false,
68
+ rowHeight = 34,
69
+ groupHeaderHeight = 28,
70
+ maxRows = 8,
71
+ resizable = false,
72
+ item,
73
+ header,
74
+ footer,
75
+ noData,
76
+ }: Props = $props()
77
+
78
+ const autoId = nextEditorId('sv-ddl')
79
+ const uid = $derived(id ?? autoId)
80
+
81
+ // Tolerate primitive / partial options - normalize so labels render + keys are stable.
82
+ const norm = $derived(normalizeOptions(options))
83
+
84
+ // Virtualization windows the option list (grouped lists too, via the shared
85
+ // virtualizer + a flattened header/option model with per-row sizes).
86
+ const useVirtual = $derived(virtual)
87
+ let viewportH = $state(0)
88
+ const rowHeightBase = $derived(typeof rowHeight === 'number' ? rowHeight : 34)
89
+ const flat = $derived(flattenForVirtual(norm, { rowHeight, groupHeaderHeight }))
90
+ const uniform = $derived(!flat.hasGroups && typeof rowHeight === 'number')
91
+ const estimateSize = $derived(uniform ? rowHeightBase : (i: number) => flat.sizeAt(i))
92
+
93
+ // Generous overscan buffers fast flings; effective viewport never 0 (see SvListBox).
94
+ const OVERSCAN = 20
95
+ const effViewport = $derived(viewportH > 0 ? viewportH : Math.max(1, maxRows * rowHeightBase))
96
+
97
+ // Seed with the initial (untracked) values so the first paint of the open panel
98
+ // renders a full window; the effects below keep it synced.
99
+ const virtualizer = createSvelteVirtualizer(
100
+ untrack(() => ({ count: flat.entries.length, estimateSize, overscan: OVERSCAN, viewportHeight: effViewport })),
101
+ )
102
+ // untrack keeps the virtualizer's internal `version` write out of these
103
+ // effects' dependencies, so they re-run only on their real inputs.
104
+ $effect(() => {
105
+ const count = flat.entries.length
106
+ const es = estimateSize
107
+ untrack(() => virtualizer.setOptions({ count, estimateSize: es }))
108
+ })
109
+ $effect(() => {
110
+ const vh = effViewport
111
+ untrack(() => virtualizer.setViewportHeight(vh))
112
+ })
113
+ const vItems = $derived.by(() => {
114
+ virtualizer.version
115
+ return virtualizer.getVirtualItems()
116
+ })
117
+ const totalSize = $derived.by(() => {
118
+ virtualizer.version
119
+ return virtualizer.getTotalSize()
120
+ })
121
+ // JS-driven scroll (see SvListBox / js-scroller): no native scroll, so a fast
122
+ // thumb-drag never flashes the empty panel.
123
+ const scroller = createJsScroller({
124
+ virtualizer,
125
+ totalSize: () => totalSize,
126
+ viewport: () => effViewport,
127
+ lineStep: () => rowHeightBase,
128
+ })
129
+
130
+ let triggerEl = $state<HTMLButtonElement | null>(null)
131
+ let panelEl = $state<HTMLDivElement | null>(null)
132
+ let rect = $state<AnchoredRect>({ top: 0, left: 0, width: 0, openUpward: false, maxHeight: 0, availHeight: 0 })
133
+ // User-chosen panel height (px) once they drag the resize grip; null = auto.
134
+ let userHeight = $state<number | null>(null)
135
+ // Effective height cap: the user's drag if any (clamped to the viewport
136
+ // ceiling), otherwise the comfortable bounds-aware height.
137
+ const panelMaxH = $derived(
138
+ resizable && userHeight != null ? Math.min(userHeight, rect.availHeight) : rect.maxHeight,
139
+ )
140
+ const showGrip = $derived(resizable && !rect.openUpward)
141
+
142
+ // The virtual panel uses NO native scroll, so its rows are absolutely
143
+ // positioned and can't size the panel. Give it an explicit height (content up
144
+ // to `maxRows`, capped by the resized / bounds-aware ceiling) so the flex
145
+ // viewport (`.sv-ddl__vp`) has a definite height to fill.
146
+ const virtualPanelH = $derived(
147
+ Math.min(
148
+ Math.min(totalSize, Math.max(rowHeightBase, maxRows * rowHeightBase)) + 8,
149
+ rect.maxHeight || Number.POSITIVE_INFINITY,
150
+ resizable && userHeight != null ? panelMaxH : Number.POSITIVE_INFINITY,
151
+ ),
152
+ )
153
+
154
+ const ddl = createDropdownList({
155
+ options: () => norm,
156
+ value: () => value,
157
+ onChange: (v) => onChange?.(v),
158
+ disabled: () => disabled,
159
+ readonly: () => readonly,
160
+ ariaLabel: () => ariaLabel,
161
+ focusTrigger: () => triggerEl?.focus(),
162
+ id: () => uid,
163
+ invalid: () => invalid,
164
+ required: () => required,
165
+ error: () => error,
166
+ hint: () => hint,
167
+ })
168
+
169
+ const selected = $derived(ddl.selected)
170
+
171
+ function updatePos() {
172
+ if (!triggerEl) return
173
+ // When the user has resized, anchor to THAT height so the flip decision and
174
+ // upward top stay correct; otherwise size to the content up to `maxRows` items
175
+ // (native-select behaviour: no scrollbar until the list exceeds the cap). The
176
+ // +PANEL_CHROME budgets the panel's own padding (8) + border (2) so a list
177
+ // that exactly fills `maxRows` is not clipped by the border-box max-height.
178
+ const PANEL_CHROME = 10
179
+ const estimatedHeight =
180
+ resizable && userHeight != null ? userHeight : Math.min(norm.length, maxRows) * rowHeightBase + PANEL_CHROME
181
+ rect = anchoredRect(triggerEl.getBoundingClientRect(), { estimatedHeight })
182
+ }
183
+
184
+ function startResize(e: PointerEvent) {
185
+ if (!panelEl) return
186
+ startPanelResize(e, {
187
+ startHeight: panelEl.clientHeight,
188
+ min: 96,
189
+ max: () => rect.availHeight,
190
+ onHeight: (h) => {
191
+ userHeight = h
192
+ updatePos()
193
+ },
194
+ })
195
+ }
196
+
197
+ $effect(() => {
198
+ if (!ddl.open) return
199
+ updatePos()
200
+ const rp = () => updatePos()
201
+ window.addEventListener('scroll', rp, true); window.addEventListener('resize', rp)
202
+ // Outside-pointer dismissal via the shared layer stack (Escape stays with
203
+ // the core keyboard handler). Because this layer is pushed ON TOP, a
204
+ // dropdown opened inside a dialog/drawer closes itself first and never
205
+ // dismisses the dialog underneath it.
206
+ const layer = createDismissableLayer({
207
+ element: () => [triggerEl, panelEl],
208
+ onDismiss: () => ddl.close(),
209
+ closeOnEscape: false,
210
+ })
211
+ layer.activate()
212
+ return () => { window.removeEventListener('scroll', rp, true); window.removeEventListener('resize', rp); layer.release() }
213
+ })
214
+ // Keep the active option scrolled into view (render concern) - via the scroller
215
+ // (virtual) or scrollIntoView (native non-virtual).
216
+ $effect(() => {
217
+ if (!ddl.open) return
218
+ const i = ddl.activeIndex
219
+ if (useVirtual) {
220
+ const flatIdx = flat.optionFlatIndex[i]
221
+ if (flatIdx == null) return
222
+ untrack(() => scroller.ensureIndexVisible(flatIdx))
223
+ } else {
224
+ queueMicrotask(() => panelEl?.querySelector<HTMLElement>(`[data-idx="${i}"]`)?.scrollIntoView({ block: 'nearest' }))
225
+ }
226
+ })
227
+ function focusOpen(node: HTMLButtonElement) { if (autoOpen) { node.focus(); ddl.openPanel() } }
228
+ </script>
229
+
230
+ <SvField id={uid} {label} {hint} {error} {required} {dir}>
231
+ <button
232
+ bind:this={triggerEl}
233
+ class="sv-ddl sv-ddl--{size}"
234
+ class:is-open={ddl.open}
235
+ class:is-disabled={disabled}
236
+ class:is-invalid={invalid}
237
+ {...ddl.triggerProps()}
238
+ use:focusOpen
239
+ >
240
+ <span class="sv-ddl__value" class:is-placeholder={!selected}>{#if selected?.color}<span class="sv-ddl__swatch" style:background={selected.color}></span>{/if}{selected?.label ?? placeholder}</span>
241
+ <svg class="sv-ddl__chev" viewBox="0 0 24 24" width="15" height="15" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="m6 9 6 6 6-6" /></svg>
242
+ </button>
243
+ </SvField>
244
+
245
+ {#snippet optRow(opt: IndexedOption, h?: number, top?: number)}
246
+ <!-- svelte-ignore a11y_click_events_have_key_events a11y_interactive_supports_focus -->
247
+ <div class="sv-ddl__opt" style:height={h != null ? `${h}px` : undefined} style:transform={top == null ? undefined : `translateY(${top}px)`} class:is-active={ddl.isActive(opt.index)} class:is-selected={ddl.isSelected(opt)} class:is-disabled={opt.disabled} {...ddl.optionProps(opt.index)}>
248
+ {#if item}{@render item(opt)}{:else}{#if opt.color}<span class="sv-ddl__swatch" style:background={opt.color}></span>{/if}{opt.label}{/if}
249
+ </div>
250
+ {/snippet}
251
+
252
+ {#if ddl.open}
253
+ <div bind:this={panelEl} class="sv-ddl__panel" class:is-virtual={useVirtual} class:is-resizable={showGrip} use:portalToBody use:popIn={{ up: rect.openUpward }} style:--sv-row-h={`${rowHeightBase}px`} style:position="fixed" style:top={`${rect.top}px`} style:left={`${rect.left}px`} style:min-width={`${rect.width}px`} style:max-height={`${panelMaxH}px`} style:height={useVirtual ? `${virtualPanelH}px` : resizable && userHeight != null ? `${panelMaxH}px` : undefined} onwheel={useVirtual ? scroller.onWheel : undefined} {...ddl.listboxProps()}>
254
+ {#if header}<div class="sv-ddl__header">{@render header()}</div>{/if}
255
+ {#if !norm.length}
256
+ {#if noData}{@render noData()}{:else}<div class="sv-ddl__empty">No options</div>{/if}
257
+ {:else if useVirtual}
258
+ <!-- JS-driven scroller: one clipped viewport holds the windowed rows (moved
259
+ by scrollOffset) + a custom scrollbar. No native scroll = no async gap
260
+ = no blank flash on a fast thumb-drag. -->
261
+ <!-- svelte-ignore a11y_no_static_element_interactions -->
262
+ <div class="sv-ddl__vp" bind:clientHeight={viewportH} onpointerdown={scroller.onContentDown} onpointermove={scroller.onContentMove} onpointerup={scroller.onContentUp} onpointercancel={scroller.onContentUp}>
263
+ {#each vItems as vi (vi.key)}
264
+ {@const entry = flat.entries[vi.index]}
265
+ {#if entry?.type === 'group'}
266
+ <div class="sv-ddl__group-label sv-ddl__group-label--abs" aria-hidden="true" style:height={`${vi.size}px`} style:transform={`translateY(${vi.start - scroller.scrollOffset}px)`}>{entry.label}</div>
267
+ {:else if entry}
268
+ {@render optRow(entry.opt, vi.size, vi.start - scroller.scrollOffset)}
269
+ {/if}
270
+ {/each}
271
+ {#if scroller.maxOffset > 0}
272
+ <!-- svelte-ignore a11y_no_static_element_interactions -->
273
+ <div class="sv-ddl__sb" onpointerdown={scroller.onTrackDown} aria-hidden="true">
274
+ <div class="sv-ddl__thumb" class:is-dragging={scroller.dragging} style:height={`${scroller.thumbH}px`} style:transform={`translateY(${scroller.thumbTop}px)`} onpointerdown={scroller.onThumbDown} onpointermove={scroller.onThumbMove} onpointerup={scroller.onThumbUp} onpointercancel={scroller.onThumbUp}></div>
275
+ </div>
276
+ {/if}
277
+ </div>
278
+ {:else}
279
+ {#each groupOptions(norm) as g (g.group ?? '')}
280
+ {#if g.group != null}
281
+ <div class="sv-ddl__group" role="group" aria-label={g.group}>
282
+ <div class="sv-ddl__group-label" aria-hidden="true">{g.group}</div>
283
+ {#each g.options as opt (opt.index)}
284
+ {@render optRow(opt)}
285
+ {/each}
286
+ </div>
287
+ {:else}
288
+ {#each g.options as opt (opt.index)}
289
+ {@render optRow(opt)}
290
+ {/each}
291
+ {/if}
292
+ {/each}
293
+ {/if}
294
+ {#if footer}<div class="sv-ddl__footer">{@render footer()}</div>{/if}
295
+ {#if showGrip}
296
+ <!-- svelte-ignore a11y_no_static_element_interactions -->
297
+ <div class="sv-ddl__grip" onpointerdown={startResize} title="Drag to resize" aria-hidden="true">
298
+ <span class="sv-ddl__grip-dots"></span>
299
+ </div>
300
+ {/if}
301
+ </div>
302
+ {/if}
303
+ {#if name}<input type="hidden" {name} value={value ?? ''} />{/if}
304
+
305
+ <style>
306
+ .sv-ddl {
307
+ --_accent: var(--sg-accent, #2563eb);
308
+ display: inline-flex; align-items: center; justify-content: space-between; gap: 8px; width: 200px;
309
+ background: var(--sg-input-bg, #fff); color: var(--sg-fg, #0f172a); font: inherit; text-align: start;
310
+ border: 1px solid var(--sg-input-border, var(--sg-border, #cbd5e1)); border-radius: var(--sg-radius, 8px);
311
+ padding: 0 10px; cursor: pointer;
312
+ }
313
+ .sv-ddl--sm { height: 28px; font-size: 12px; }
314
+ .sv-ddl--md { height: 34px; font-size: 13px; }
315
+ .sv-ddl--lg { height: 40px; font-size: 15px; }
316
+ .sv-ddl.is-open, .sv-ddl:focus-visible { border-color: var(--_accent); box-shadow: 0 0 0 2px color-mix(in srgb, var(--_accent) 22%, transparent); outline: none; }
317
+ .sv-ddl.is-invalid { border-color: var(--sg-danger, #dc2626); }
318
+ .sv-ddl.is-invalid.is-open, .sv-ddl.is-invalid:focus-visible { box-shadow: 0 0 0 2px color-mix(in srgb, var(--sg-danger, #dc2626) 22%, transparent); }
319
+ .sv-ddl.is-disabled { opacity: 0.6; cursor: not-allowed; }
320
+ .sv-ddl__value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
321
+ .sv-ddl__value.is-placeholder { color: var(--sg-muted, #94a3b8); }
322
+ .sv-ddl__chev { color: var(--sg-muted, #64748b); flex: none; }
323
+
324
+ :global(.sv-ddl__panel) {
325
+ box-sizing: border-box; z-index: 2147483647; max-height: 288px; overflow-y: auto; padding: 4px;
326
+ background: var(--sg-bg, #fff); color: var(--sg-fg, #0f172a);
327
+ border: 1px solid var(--sg-border, #e2e8f0); border-radius: 10px; box-shadow: 0 16px 48px -12px rgba(15,23,42,0.35);
328
+ }
329
+ /* Virtual panel: a flex column (header / JS-driven viewport / footer / grip)
330
+ with NO native scroll - the viewport moves its rows by `scrollOffset`. */
331
+ :global(.sv-ddl__panel.is-virtual) { display: flex; flex-direction: column; overflow: hidden; }
332
+ :global(.sv-ddl__vp) { position: relative; flex: 1 1 auto; min-height: 0; overflow: hidden; touch-action: none; }
333
+ :global(.sv-ddl__panel.is-virtual .sv-ddl__opt), :global(.sv-ddl__group-label--abs) { position: absolute; left: 0; right: 0; top: 0; }
334
+ :global(.sv-ddl__sb) { position: absolute; top: 0; right: 1px; bottom: 0; width: 10px; z-index: 2; }
335
+ :global(.sv-ddl__thumb) {
336
+ position: absolute; left: 2px; right: 2px; top: 0; min-height: 24px; border-radius: 4px;
337
+ background: color-mix(in srgb, currentColor 26%, transparent); cursor: default; touch-action: none;
338
+ }
339
+ :global(.sv-ddl__thumb:hover), :global(.sv-ddl__thumb.is-dragging) { background: color-mix(in srgb, currentColor 42%, transparent); }
340
+ :global(.sv-ddl__opt) { box-sizing: border-box; flex: none; display: flex; align-items: center; padding: 7px 10px; border-radius: 6px; cursor: pointer; font-size: 13px; }
341
+ /* Color swatch shown before an option's label (option.color) - in both the
342
+ trigger value and the portalled panel options. */
343
+ :global(.sv-ddl__swatch) {
344
+ display: inline-block; flex: none; width: 10px; height: 10px; border-radius: 3px;
345
+ margin-inline-end: 8px; vertical-align: middle;
346
+ box-shadow: inset 0 0 0 1px color-mix(in srgb, #000 18%, transparent);
347
+ }
348
+ /* Bottom resize grip: a row of dots ("····") the user drags to resize the
349
+ panel. Sticky so it stays pinned at the panel's bottom while options scroll. */
350
+ :global(.sv-ddl__panel.is-resizable) { padding-bottom: 0; }
351
+ :global(.sv-ddl__grip) {
352
+ position: sticky; bottom: 0; z-index: 1; margin: 2px -4px -4px; height: 15px;
353
+ display: flex; align-items: center; justify-content: center; cursor: ns-resize;
354
+ background: var(--sg-bg, #fff); border-top: 1px solid var(--sg-border, #e2e8f0);
355
+ border-radius: 0 0 10px 10px; touch-action: none;
356
+ }
357
+ :global(.sv-ddl__grip-dots) {
358
+ width: 26px; height: 4px; color: var(--sg-muted, #94a3b8); opacity: 0.6;
359
+ background-image: radial-gradient(currentColor 1px, transparent 1.6px);
360
+ background-size: 6px 4px; background-position: center; background-repeat: repeat-x;
361
+ }
362
+ :global(.sv-ddl__grip:hover .sv-ddl__grip-dots) { opacity: 1; }
363
+ :global(.sv-ddl__opt.is-active) { background: var(--sg-row-hover-bg, #f1f5f9); }
364
+ :global(.sv-ddl__opt.is-selected) { color: var(--sg-accent, #2563eb); font-weight: 600; }
365
+ :global(.sv-ddl__opt.is-disabled) { opacity: 0.4; cursor: not-allowed; }
366
+ :global(.sv-ddl__group-label) {
367
+ box-sizing: border-box; padding: 8px 10px 3px; font-size: 10.5px; font-weight: 700;
368
+ text-transform: uppercase; letter-spacing: 0.04em; color: var(--sg-muted, #94a3b8);
369
+ display: flex; align-items: flex-end;
370
+ }
371
+ :global(.sv-ddl__empty) { padding: 12px 12px; font-size: 13px; color: var(--sg-muted, #64748b); text-align: center; }
372
+ :global(.sv-ddl__header) { padding: 8px 10px; border-bottom: 1px solid var(--sg-border, #e2e8f0); font-size: 12.5px; color: var(--sg-muted, #64748b); }
373
+ :global(.sv-ddl__footer) { padding: 8px 10px; border-top: 1px solid var(--sg-border, #e2e8f0); font-size: 12.5px; }
374
+ </style>