@knime/kds-components 0.28.8 → 0.28.10

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 (55) hide show
  1. package/CHANGELOG.md +915 -0
  2. package/dist/{copy-DAYm6-mo.js → copy-D43FaHi-.js} +2 -2
  3. package/dist/copy-D43FaHi-.js.map +1 -0
  4. package/dist/duplicate-Mtq886XD.js +23 -0
  5. package/dist/duplicate-Mtq886XD.js.map +1 -0
  6. package/dist/folder-move-6L5NfoIs.js +23 -0
  7. package/dist/folder-move-6L5NfoIs.js.map +1 -0
  8. package/dist/index.css +182 -11
  9. package/dist/index.js +562 -464
  10. package/dist/index.js.map +1 -1
  11. package/dist/linked-component-BOb5aj87.js +23 -0
  12. package/dist/linked-component-BOb5aj87.js.map +1 -0
  13. package/dist/src/accessories/MissingValueIcon/KdsMissingValueIcon.vue.d.ts +7 -0
  14. package/dist/src/accessories/MissingValueIcon/KdsMissingValueIcon.vue.d.ts.map +1 -0
  15. package/dist/src/accessories/MissingValueIcon/index.d.ts +2 -0
  16. package/dist/src/accessories/MissingValueIcon/index.d.ts.map +1 -0
  17. package/dist/src/accessories/index.d.ts +1 -0
  18. package/dist/src/accessories/index.d.ts.map +1 -1
  19. package/dist/src/buttons/KdsMenuButton/KdsMenuButton.vue.d.ts +29 -19
  20. package/dist/src/buttons/KdsMenuButton/KdsMenuButton.vue.d.ts.map +1 -1
  21. package/dist/src/buttons/KdsSplitButton/KdsSplitButton.vue.d.ts +15 -15
  22. package/dist/src/containers/Menu/KdsMenu.vue.d.ts +30 -30
  23. package/dist/src/containers/MenuContainer/KdsMenuItem.vue.d.ts.map +1 -1
  24. package/dist/src/containers/MenuContainer/types.d.ts +5 -0
  25. package/dist/src/containers/MenuContainer/types.d.ts.map +1 -1
  26. package/dist/src/forms/_helper/InfoPopover/KdsInfoToggleButton.vue.d.ts +30 -30
  27. package/dist/src/forms/_helper/VariablePopover/KdsVariableToggleButton.vue.d.ts +30 -30
  28. package/dist/src/forms/inputs/ColorInput/KdsColorInput.vue.d.ts +15 -15
  29. package/dist/src/forms/inputs/DateInput/KdsDateInput.vue.d.ts +15 -15
  30. package/dist/src/forms/inputs/DateTimeFormatInput/KdsDateTimeFormatInput.vue.d.ts +15 -15
  31. package/dist/src/forms/inputs/IntervalInput/KdsIntervalInput.vue.d.ts +15 -15
  32. package/dist/src/forms/inputs/SearchInput/KdsSearchInput.vue.d.ts +15 -15
  33. package/dist/src/forms/inputs/TextInput/KdsTextInput.vue.d.ts +15 -15
  34. package/dist/src/forms/inputs/TimeInput/KdsTimeInput.vue.d.ts +15 -15
  35. package/dist/src/forms/selects/Dropdown/BaseDropdown.vue.d.ts +3 -1
  36. package/dist/src/forms/selects/Dropdown/BaseDropdown.vue.d.ts.map +1 -1
  37. package/dist/src/forms/selects/Dropdown/KdsDropdown.vue.d.ts +46 -16
  38. package/dist/src/forms/selects/Dropdown/KdsDropdown.vue.d.ts.map +1 -1
  39. package/dist/src/forms/selects/Dropdown/KdsMultiSelectDropdown.vue.d.ts +46 -16
  40. package/dist/src/forms/selects/Dropdown/KdsMultiSelectDropdown.vue.d.ts.map +1 -1
  41. package/dist/src/index.d.ts +2 -0
  42. package/dist/src/index.d.ts.map +1 -1
  43. package/dist/src/overlays/Modal/KdsModal.vue.d.ts +1 -1
  44. package/dist/src/overlays/index.d.ts +2 -0
  45. package/dist/src/overlays/index.d.ts.map +1 -1
  46. package/dist/src/patterns/ResponsiveButtonGroup/KdsResponsiveButtonGroup.vue.d.ts +30 -19
  47. package/dist/src/patterns/ResponsiveButtonGroup/KdsResponsiveButtonGroup.vue.d.ts.map +1 -1
  48. package/dist/src/richText/Description/KdsDescription.vue.d.ts +7 -0
  49. package/dist/src/richText/Description/KdsDescription.vue.d.ts.map +1 -0
  50. package/dist/src/richText/Description/index.d.ts +2 -0
  51. package/dist/src/richText/Description/index.d.ts.map +1 -0
  52. package/dist/src/richText/index.d.ts +3 -0
  53. package/dist/src/richText/index.d.ts.map +1 -0
  54. package/package.json +4 -3
  55. package/dist/copy-DAYm6-mo.js.map +0 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,915 @@
1
+ # @knime/kds-components
2
+
3
+ ## 0.28.10
4
+
5
+ ### Patch Changes
6
+
7
+ - 0fb46a2: KDS-559: add KdsDescription
8
+ - @knime/kds-styles@0.28.10
9
+
10
+ ## 0.28.9
11
+
12
+ ### Patch Changes
13
+
14
+ - 06e0f1a: - `KdsDropdown`/`KdsMultiSelectDropdown`: expose `focus` method
15
+ - `KdsMenuButton`: add possibility to open/close menu from outside
16
+ - export `KdsPopover` component
17
+ - add `KdsMissingValueIcon` component
18
+ - Updated dependencies [06e0f1a]
19
+ - @knime/kds-styles@0.28.9
20
+
21
+ ## 0.28.8
22
+
23
+ ### Patch Changes
24
+
25
+ - 1207cd4: Forward `FocusOptions` through `KdsFormFieldExpose.focus()` (and `BaseInput`) so callers can pass options like `{ preventScroll: true }` down to the native `HTMLInputElement.focus()` call.
26
+ - @knime/kds-styles@0.28.8
27
+
28
+ ## 0.28.7
29
+
30
+ ### Patch Changes
31
+
32
+ - 6b95f76: `KdsMenuContainer` (and components built on top of it like `KdsMenu`,
33
+ `KdsContextMenu`, `KdsMenuButton`) now supports rendering items as links via
34
+ a `to` prop on `KdsMenuItem`.
35
+
36
+ `KdsListItem`'s `role` prop now also accepts `"presentation"` to allow embedding it
37
+ inside a wrapping interactive element without ARIA conflicts.
38
+
39
+ - Updated dependencies [18e22a5]
40
+ - @knime/kds-styles@0.28.7
41
+
42
+ ## 0.28.6
43
+
44
+ ### Patch Changes
45
+
46
+ - c66d9ef: add `KdsBreadcrumb` component
47
+ - @knime/kds-styles@0.28.6
48
+
49
+ ## 0.28.5
50
+
51
+ ### Patch Changes
52
+
53
+ - 1982728: Use medium size for `KdsPanel` bottom buttons
54
+ - Updated dependencies [240a8cc]
55
+ - Updated dependencies [e0527c2]
56
+ - Updated dependencies [301bc01]
57
+ - @knime/kds-styles@0.28.5
58
+
59
+ ## 0.28.4
60
+
61
+ ### Patch Changes
62
+
63
+ - dbffc1f: `KdsIcon` and `KdsDataType` now expose a reactive `status` (`Readonly<ShallowRef<KdsIconStatus>>`, values: `"loading" | "loaded" | "error"`) via `defineExpose`. Access it via a template ref — `iconRef.value?.status.value` in scripts, auto-unwrapped in templates.
64
+ - e27c6e8: KDS-849: KdsNavigation: fixed click area and cleaned-up component
65
+ - @knime/kds-styles@0.28.4
66
+
67
+ ## 0.28.3
68
+
69
+ ### Patch Changes
70
+
71
+ - aa2bf07: KDS-558: KDSDonutChart - remove background offset
72
+ KDS-729: add card header min height
73
+ - 2823a28: `KdsAccordion`: use native `<details>`/`<summary>` elements and clean up redundant ARIA attributes. The component API and visual appearance are unchanged.
74
+ - @knime/kds-styles@0.28.3
75
+
76
+ ## 0.28.2
77
+
78
+ ### Patch Changes
79
+
80
+ - 05321fa: `KdsPanel`: Make `headline` optional, add padded/plain variants as well as overflow behaviour
81
+ - @knime/kds-styles@0.28.2
82
+
83
+ ## 0.28.1
84
+
85
+ ### Patch Changes
86
+
87
+ - 279a604: add optional `dataTestId` prop to all button components
88
+ - @knime/kds-styles@0.28.1
89
+
90
+ ## 0.28.0
91
+
92
+ ### Minor Changes
93
+
94
+ - bcede32: KDS-848: integrate header in card
95
+
96
+ BREAKING CHANGE: Removes the KdsContainerHeader as a public component. Now the cards offers a headline prop and two slots.
97
+
98
+ ### Patch Changes
99
+
100
+ - ccc6747: `KdsTimeInput`: remove time preview in picker
101
+ - @knime/kds-styles@0.28.0
102
+
103
+ ## 0.27.0
104
+
105
+ ### Minor Changes
106
+
107
+ - f79d32c: Add `KdsPanel`: a configurable panel layout with a required `headline` (string or `KdsButton` / `KdsMenuButton`) plus optional trailing `KdsButton` / `KdsToggleButton` / `KdsMenuButton` / `KdsValueSwitch` actions, default body slot, and optional footer with leading and trailing `KdsButton` actions. The footer is only rendered when relevant content is configured.
108
+
109
+ **Breaking change:** Remove `KdsPanelHeader` and `KdsPanelButtonBar`. Use `KdsPanel` instead and configure the header via the `headline` and `headlineTrailingActions` props and the footer via the `footerLeadingActions` and `footerTrailingActions` props.
110
+
111
+ ### Patch Changes
112
+
113
+ - e7a9740: add new `KdsAccordion` layout component with support for multi-item sections, optional controlled expansion via `v-model`, keyboard header navigation, and optional leading icons
114
+ - f79d32c: `KdsValueSwitch`: add `ariaLabel` prop forwarded to the underlying fieldset for an accessible name when no visible `label` is rendered.
115
+ - @knime/kds-styles@0.27.0
116
+
117
+ ## 0.26.2
118
+
119
+ ### Patch Changes
120
+
121
+ - adcdf37: NXT-4657: KdsAvatar: add background color for empty initials
122
+ - Updated dependencies [0d63f39]
123
+ - @knime/kds-styles@0.26.2
124
+
125
+ ## 0.26.1
126
+
127
+ ### Patch Changes
128
+
129
+ - 927c9c4: KdsPreviewList: Fix button width
130
+ - @knime/kds-styles@0.26.1
131
+
132
+ ## 0.26.0
133
+
134
+ ### Minor Changes
135
+
136
+ - 902f0d4: KDS-729: Split up KdsCardClickable in multiple components
137
+
138
+ BREAKING CHANGE: KdsCardClickable is now KdsClickableCard
139
+ - Split up the card into:
140
+ - KdsCard: just a static card
141
+ - KdsClickableCard: a card that has a button on the content, but supports interactive elements
142
+ - KdsLinkCard: same as clickable card but with a link (with nuxt support)
143
+ - KdsSelectableCard: same as clickable card but with a v-model for the selected state
144
+ - Adds a KdsContainerHeader that can be used as header for the card.
145
+ - Adds a KdsAvatarCounter that shows a list of avatars.
146
+ - Add support for auto coloring of KdsAvatar initials.
147
+
148
+ ### Patch Changes
149
+
150
+ - abb8547: Add `KdsPreviewList` component.
151
+ - Updated dependencies [2655181]
152
+ - @knime/kds-styles@0.26.0
153
+
154
+ ## 0.25.2
155
+
156
+ ### Patch Changes
157
+
158
+ - ad81a48: KdsListContainer keyboard nav - pass activeId even when undefined
159
+ - @knime/kds-styles@0.25.2
160
+
161
+ ## 0.25.1
162
+
163
+ ### Patch Changes
164
+
165
+ - 7d203c2: KdsDateInput: Clamp typed date to min/maxDate
166
+ - @knime/kds-styles@0.25.1
167
+
168
+ ## 0.25.0
169
+
170
+ ### Minor Changes
171
+
172
+ - 7f58ff0: Adjust keyboard navigation for list-like and menu-like components.
173
+
174
+ Introduces new focus strategy prop for internal usage. This controls the behavior of an "item"
175
+ container upon receiving focus in order to determine how to treat its items
176
+
177
+ ### Patch Changes
178
+
179
+ - f7b2f43: add `type="button"` to all buttons so they won't trigger a form submit
180
+ - @knime/kds-styles@0.25.0
181
+
182
+ ## 0.24.1
183
+
184
+ ### Patch Changes
185
+
186
+ - 6fb45ed: Add `KdsIntervalInput` component for ISO 8601 and human-readable interval input
187
+ - @knime/kds-styles@0.24.1
188
+
189
+ ## 0.24.0
190
+
191
+ ### Minor Changes
192
+
193
+ - e62a596: **BREAKING CHANGE:** `KdsDateInput` v-model type changed from `string` to `Temporal.PlainDate | null`. The `datePickerMin`/`datePickerMax` props have been renamed to `minDate`/`maxDate` and their types changed from `string` to `Temporal.PlainDate`. `temporal-polyfill` is shipped as a direct dependency of `@knime/kds-components`; consumers should import `Temporal` from the same `temporal-polyfill` package to ensure type compatibility and avoid duplicate polyfill instances.
194
+ - f33768e: - Add `KdsMenu` (dropdown with custom toggle slot) and `KdsContextMenu` (menu anchored to `{ x, y }`)
195
+ - `KdsMenuContainer` items gain `shortcut`, `badge`, and per-item `handler` support, plus a container-level `variant` prop
196
+ - `KdsPopover` supports `placement="custom"` with `customPlacementPosition`
197
+ - 6ee823d: Add `KdsTimeInput` component and remove the `placeholder` prop from the public `KdsDateInputProps` type.
198
+
199
+ ### Patch Changes
200
+
201
+ - 1b287be: add KdsNavigation and move ListItemDivider to accessories as KdsDivider
202
+ - @knime/kds-styles@0.24.0
203
+
204
+ ## 0.23.2
205
+
206
+ ### Patch Changes
207
+
208
+ - 4b13385: KDS-558: add donut chart
209
+ - Updated dependencies [4cc5fb7]
210
+ - Updated dependencies [4b13385]
211
+ - @knime/kds-styles@0.23.2
212
+
213
+ ## 0.23.1
214
+
215
+ ### Patch Changes
216
+
217
+ - 95a7bcb: `KdsMultiSelectDropdown`: hide search when there are less than 12 items
218
+ - 999bf3f: KDS-828: Do not shrink list items
219
+ - 29f0609: KDS-825: Add disabled state support to KdsEmptyState component
220
+ - 44d71b8: add secondary button to `KdsEmptyState`
221
+ - 7ef48e2: `KdsMultiSelectDropdown`: placeholder hint about the possibility to add values if `allowNewValues` is enabled
222
+ - @knime/kds-styles@0.23.1
223
+
224
+ ## 0.23.0
225
+
226
+ ### Minor Changes
227
+
228
+ - 2baec11: BREAKING CHANGES in `KdsSplitButton`:
229
+ - rename prop `alternativeActions` to `items`
230
+ - rename event `clickItem` to `itemClick`
231
+
232
+ ### Patch Changes
233
+
234
+ - 6d65dfc: Add KdsPanelHeader
235
+ - 3b5af0a: Add KdsPanelButtonBar
236
+ - ee5dd66: Add `KdsResponsiveButtonGroup`
237
+ - @knime/kds-styles@0.23.0
238
+
239
+ ## 0.22.3
240
+
241
+ ### Patch Changes
242
+
243
+ - c29a731: Add alpha support to color picker
244
+ - 5db8e0a: Add KdsSortableListBox
245
+ - adbdbde: Remove `KdsMultiSelectListBox` from public exports (internal use only)
246
+ - @knime/kds-styles@0.22.3
247
+
248
+ ## 0.22.2
249
+
250
+ ### Patch Changes
251
+
252
+ - 9c0a790: KDS-808: Fix multi-selection preservation in CEF 128 Shadow DOM blur→re-focus cycle
253
+ - 14a8b70: KDS-810: Implement deduplication for list items in KdsListContainer
254
+ - @knime/kds-styles@0.22.2
255
+
256
+ ## 0.22.1
257
+
258
+ ### Patch Changes
259
+
260
+ - 360e7fe: KDS-804: Hide search field in dropdowns with fewer than 12 options
261
+ - 38c334e: KDS-812: Add min-height to ListItem to ensure consistent item sizing
262
+ - 6918fb7: KDS-819: Close dropdown on item selection
263
+ - @knime/kds-styles@0.22.1
264
+
265
+ ## 0.22.0
266
+
267
+ ### Minor Changes
268
+
269
+ - 179febb: BREAKING CHANGE: Change KdsPatternInput so its v-model keeps the visible pattern text and the compiled regex string is emitted via the `update:regex` event.
270
+
271
+ Migrate v-model="regex" to @update:regex="regex = $event".
272
+
273
+ ### Patch Changes
274
+
275
+ - dcd74a8: Added KdsSplitButton component
276
+ - 3398e4e: Add `KdsLoadingSkeleton`
277
+ - a6aeb00: Fix KdsMenuButton keyboard focus handling and add a reusable internal menu container.
278
+ - 27e5a9a: Set download prop default to undefined
279
+ - 01f666c: SearchInput results popover width matches the input width
280
+ - 179febb: Add KdsTwinList component
281
+ - @knime/kds-styles@0.22.0
282
+
283
+ ## 0.21.0
284
+
285
+ ### Minor Changes
286
+
287
+ - 78beddc: Add `KdsLink`.
288
+
289
+ Also narrow `KdsLinkButton` navigation typing to string `to` values.
290
+
291
+ ### Patch Changes
292
+
293
+ - @knime/kds-styles@0.21.0
294
+
295
+ ## 0.20.1
296
+
297
+ ### Patch Changes
298
+
299
+ - f61036d: Deprecate use of internal KdsLabel and KdsSubText, use fieldset for CheckboxGroup, RadioGroup and ValueSwitch components
300
+ - c4364a1: Add suggestions headline to KdsTextInput
301
+ - @knime/kds-styles@0.20.1
302
+
303
+ ## 0.20.0
304
+
305
+ ### Minor Changes
306
+
307
+ - b441b9b: BREAKING CHANGE: Fix type emissions, this might surface previously hidden type errors for consumers
308
+
309
+ ### Patch Changes
310
+
311
+ - 072cb40: Add KdsMultiSelectListBox component
312
+ - @knime/kds-styles@0.20.0
313
+
314
+ ## 0.19.0
315
+
316
+ ### Minor Changes
317
+
318
+ - 4f46db6: Add KdsTabBar component for horizontal tab navigation with icon hiding on overflow
319
+
320
+ ### Patch Changes
321
+
322
+ - Updated dependencies [a6ff5a2]
323
+ - Updated dependencies [2448ae0]
324
+ - @knime/kds-styles@0.19.0
325
+
326
+ ## 0.18.4
327
+
328
+ ### Patch Changes
329
+
330
+ - Updated dependencies [d24f2f9]
331
+ - @knime/kds-styles@0.18.4
332
+
333
+ ## 0.18.3
334
+
335
+ ### Patch Changes
336
+
337
+ - c7e51c8: VariablePopover: Limit height
338
+ - Updated dependencies [522fb56]
339
+ - @knime/kds-styles@0.18.3
340
+
341
+ ## 0.18.2
342
+
343
+ ### Patch Changes
344
+
345
+ - 34d9375: Allow empty values in KdsDropdown and KdsMultiSelectDropdown
346
+ - 4634bd0: KdsLabel: Clicking between the label and input is now treated as a click on the label, avoiding an unclickable gap.
347
+ - f3abe32: KDS-805: useIcon: change from try/catch to .catch to avoid uncaught AbortError of import()
348
+ - c4e2073: KdsTextInput: Extend props by suggestions prop to have auto completion
349
+ - @knime/kds-styles@0.18.2
350
+
351
+ ## 0.18.1
352
+
353
+ ### Patch Changes
354
+
355
+ - 920024a: Add UsernameInput and PasswordInput components
356
+ - @knime/kds-styles@0.18.1
357
+
358
+ ## 0.18.0
359
+
360
+ ### Minor Changes
361
+
362
+ - 7ddea9a: BREAKING CHANGE: KdsSearchInput: Emit result-click with undefined when no result value is selected
363
+
364
+ ### Patch Changes
365
+
366
+ - fdf7787: KDS-768: Enhance KdsNumberInput component with pointer events for step buttons and keyboard support
367
+ - @knime/kds-styles@0.18.0
368
+
369
+ ## 0.17.2
370
+
371
+ ### Patch Changes
372
+
373
+ - f74783c: Add `results` and `resultsMaxHeight` props to `KdsSearchInput`
374
+ - @knime/kds-styles@0.17.2
375
+
376
+ ## 0.17.1
377
+
378
+ ### Patch Changes
379
+
380
+ - b426967: Export DateInput
381
+ - bf0687a: KdsMultiSelectDropdown: Show label when only one was selected
382
+ - @knime/kds-styles@0.17.1
383
+
384
+ ## 0.17.0
385
+
386
+ ### Minor Changes
387
+
388
+ - 4dc910c: BREAKING CHANGE: KdsDropdown now treats empty string as unselected instead of null.
389
+
390
+ ### Patch Changes
391
+
392
+ - a13647a: Add KdsDateTimeFormatInput component
393
+ - 7a27ed8: add KdsDateInput
394
+ - 1877bdd: Add new `KdsMultiSelectDropdown` form component.
395
+ - f421a2c: Kds 790 improve colors of live status
396
+ - Updated dependencies [f421a2c]
397
+ - @knime/kds-styles@0.17.0
398
+
399
+ ## 0.16.1
400
+
401
+ ### Patch Changes
402
+
403
+ - a0f4960: Add KdsMenuButton
404
+ - 7cec5ea: Allow opening the color picker by clicking the color swatch
405
+ - Updated dependencies [a0f4960]
406
+ - @knime/kds-styles@0.16.1
407
+
408
+ ## 0.16.0
409
+
410
+ ### Minor Changes
411
+
412
+ - ddc7917: Apply consistent naming convention for component props.
413
+
414
+ BREAKING CHANGE: The following component props have been renamed:
415
+ - `KdsBadge`: `icon` → `leadingIcon`
416
+ - `KdsInlineMessage`: `title` → `headline`
417
+ - `KdsInlineMessage`: `message` → `description`
418
+ - `KdsModal`: `icon` → `leadingIcon`
419
+ - `KdsModal`: `title` → `headline`
420
+
421
+ ### Patch Changes
422
+
423
+ - 38660e2: KdsEmptyState: Add loading spinner support
424
+ - 240843d: KdsDropdown, KdsListContainer: Add loading state
425
+ - @knime/kds-styles@0.16.0
426
+
427
+ ## 0.15.1
428
+
429
+ ### Patch Changes
430
+
431
+ - e324127: Add KdsInlineMessage
432
+ - @knime/kds-styles@0.15.1
433
+
434
+ ## 0.15.0
435
+
436
+ ### Minor Changes
437
+
438
+ - 8546ad7: BREAKING CHANGE: Removed required, readonly, and name props from all input fields
439
+
440
+ ### Patch Changes
441
+
442
+ - c054e1c: Add `disabled` prop to `KdsDataType` and `KdsIcon` components
443
+ - be6e1c5: Add KdsDropdown component
444
+ - 940ee0f: Fix slight misalignment of color swatch in color input
445
+ - @knime/kds-styles@0.15.0
446
+
447
+ ## 0.14.0
448
+
449
+ ### Minor Changes
450
+
451
+ - 89d3eb1: Add KDSColorInput with ColorPicker functionality
452
+
453
+ ### Patch Changes
454
+
455
+ - @knime/kds-styles@0.14.0
456
+
457
+ ## 0.13.2
458
+
459
+ ### Patch Changes
460
+
461
+ - Updated dependencies [3d9c68c]
462
+ - @knime/kds-styles@0.13.2
463
+
464
+ ## 0.13.1
465
+
466
+ ### Patch Changes
467
+
468
+ - 85b57f8: Add KdsBadge
469
+ - @knime/kds-styles@0.13.1
470
+
471
+ ## 0.13.0
472
+
473
+ ### Minor Changes
474
+
475
+ - 208eb81: Add kds.color.TextHighlight.background.default token
476
+
477
+ ### Patch Changes
478
+
479
+ - Updated dependencies [208eb81]
480
+ - @knime/kds-styles@0.13.0
481
+
482
+ ## 0.12.0
483
+
484
+ ### Minor Changes
485
+
486
+ - def0784: BREAKING CHANGE: KdsPopover is no longer exported
487
+
488
+ ### Patch Changes
489
+
490
+ - @knime/kds-styles@0.12.0
491
+
492
+ ## 0.11.0
493
+
494
+ ### Minor Changes
495
+
496
+ - f6168a5: BREAKING CHANGE: KdsEmptyState grouped button props. Previously, the component exposed multiple prefixed button props (for example `buttonVariant`, `buttonSize`, `buttonDisabled`, `buttonLeadingIcon`, `buttonTrailingIcon`, `buttonAriaLabel`, `buttonLabel`, `buttonTo`, `buttonTitle`, `buttonDestructive`, `buttonTarget`, `buttonRel`, `buttonDownload`). To migrate, replace these props with the new nested `button` prop as follows:
497
+ - `buttonVariant` → `button.variant`
498
+ - `buttonSize` → `button.size`
499
+ - `buttonDisabled` → `button.disabled`
500
+ - `buttonLeadingIcon` → `button.leadingIcon`
501
+ - `buttonTrailingIcon` → `button.trailingIcon`
502
+ - `buttonAriaLabel` → `button.ariaLabel`
503
+ - `buttonLabel` → `button.label`
504
+ - `buttonTo` → `button.to`
505
+ - `buttonTitle` → `button.title`
506
+ - `buttonDestructive` → `button.destructive`
507
+ - `buttonTarget` → `button.target`
508
+ - `buttonRel` → `button.rel`
509
+ - `buttonDownload` → `button.download`
510
+
511
+ Additionally, the helper types `PrefixedKdsButtonProps*` and `PrefixedKdsLinkButtonProps*` are no longer exported; if you relied on them, please inline the corresponding props in your own types or migrate to the new `KdsEmptyState` button prop shape.
512
+
513
+ - f7a8ce8: BREAKING CHANGE: Rename KdsCard to KdsCardClickable
514
+
515
+ ### Patch Changes
516
+
517
+ - a1ffdb4: KDS-659: Let the KdsModal body grow to fix modal full size does not take up all space
518
+ - @knime/kds-styles@0.11.0
519
+
520
+ ## 0.10.0
521
+
522
+ ### Minor Changes
523
+
524
+ - b2f685c: BREAKING CHANGE: KdsPopover needs an accessible name. Prop popoverAriaLabel is required
525
+
526
+ ### Patch Changes
527
+
528
+ - b2f685c: InfoPopover: Remove unintended line break rendering
529
+ - 5a8d642: KdsCheckbox and KdsRadioButton: Remove unwanted padding to align control with text
530
+ - @knime/kds-styles@0.10.0
531
+
532
+ ## 0.9.1
533
+
534
+ ### Patch Changes
535
+
536
+ - b999539: supply timeout for modal to clear active config on closed
537
+ - @knime/kds-styles@0.9.1
538
+
539
+ ## 0.9.0
540
+
541
+ ### Minor Changes
542
+
543
+ - 284f899: BREAKING CHANGES: Remove native (UA) default styling from `KdsPopover` so it is a purely positioned container. Swapped right and left `placement` values to align with other frameworks.
544
+ - When using the `content` prop, default KDS surface styling (background, radius, shadow, padding) is applied automatically.
545
+ - When using the default slot, no styling is applied - wrap your content with your own styled container.
546
+ - The `placement` prop values for right and left are swapped to be more intuitive. For example, old `bottom-right` becomes `bottom-left` and old `bottom-left` becomes `bottom-right`.
547
+
548
+ ### Patch Changes
549
+
550
+ - 72fbdc8: Expose focus for all input fields
551
+ - 284f899: KdsLabel: Add optional description prop
552
+ - 284f899: Wire `KdsVariableToggleButton` to open a flow-variable popover and add internal `VariablePopover` building block.
553
+ - @knime/kds-styles@0.9.0
554
+
555
+ ## 0.8.0
556
+
557
+ ### Minor Changes
558
+
559
+ - 8c5a7a8: KdsNumberInput: Hardcode en-US as locale to avoid localization problems
560
+ - 521d7f6: add KdsCard component
561
+
562
+ ### Patch Changes
563
+
564
+ - c47c4fb: Add KdsLiveStatus component
565
+ - 9fd5725: Export enums
566
+ - @knime/kds-styles@0.8.0
567
+
568
+ ## 0.7.0
569
+
570
+ ### Minor Changes
571
+
572
+ - 17173f0: Remove the KdsPopover built-in padding and the `paddingSize` prop (including its padding variants). KdsPopover now renders without padding by default; add any required padding via your own content or wrapper element.
573
+ - dd3ec59: KdsLoadingSpinner: rename style prop to variant
574
+
575
+ ### Patch Changes
576
+
577
+ - edd5591: Add KdsPopover component
578
+ - 28d3e52: Add KdsTextarea component
579
+ - 4e8626e: KdsSearchInput: expose focus method
580
+ - d91ed13: Add KdsColorSwatch and KdsAvatar components
581
+ - @knime/kds-styles@0.7.0
582
+
583
+ ## 0.6.7
584
+
585
+ ### Patch Changes
586
+
587
+ - 81dfa5a: Add KdsTextInput, KdsSearchInput, KdsNumberInput, KdsPatternInput
588
+ - Updated dependencies [22a6cad]
589
+ - @knime/kds-styles@0.6.7
590
+
591
+ ## 0.6.6
592
+
593
+ ### Patch Changes
594
+
595
+ - Updated dependencies [0454c56]
596
+ - @knime/kds-styles@0.6.6
597
+
598
+ ## 0.6.5
599
+
600
+ ### Patch Changes
601
+
602
+ - 2d2c5ec: KdsCheckboxGroup: Add error prop
603
+ - @knime/kds-styles@0.6.5
604
+
605
+ ## 0.6.4
606
+
607
+ ### Patch Changes
608
+
609
+ - Updated dependencies [73b16d3]
610
+ - @knime/kds-styles@0.6.4
611
+
612
+ ## 0.6.3
613
+
614
+ ### Patch Changes
615
+
616
+ - d6f2baa: Add KdsEmptyState component
617
+ - @knime/kds-styles@0.6.3
618
+
619
+ ## 0.6.2
620
+
621
+ ### Patch Changes
622
+
623
+ - 27f4733: Fix Checkbox taking unnecessary space when subtext is absent
624
+ - @knime/kds-styles@0.6.2
625
+
626
+ ## 0.6.1
627
+
628
+ ### Patch Changes
629
+
630
+ - 44d9726: Readd missing KdsDataType export
631
+ - @knime/kds-styles@0.6.1
632
+
633
+ ## 0.6.0
634
+
635
+ ### Minor Changes
636
+
637
+ - b92aa44: KdsCheckbox: Require title when no label is set
638
+ - b92aa44: Renamed ConfirmModalConfig doNotAskAgain helperText to subText and removed title
639
+
640
+ ### Patch Changes
641
+
642
+ - 8b25fa3: Add KdsInfoToggleButton component
643
+ - 8b25fa3: Add KdsVariableToggleButton
644
+ - e851b0c: Fix rendering of xsmall icons on non-HiDPI screens
645
+ - b92aa44: Add KdsCheckboxGroup component
646
+ - 810302b: Add KdsProgressButton component
647
+ - @knime/kds-styles@0.6.0
648
+
649
+ ## 0.5.10
650
+
651
+ ### Patch Changes
652
+
653
+ - 382c8d0: Remove undefined from RadioButtonGroup and ValueSwitch model emissions
654
+ - @knime/kds-styles@0.5.10
655
+
656
+ ## 0.5.9
657
+
658
+ ### Patch Changes
659
+
660
+ - a49aa87: Fix border for KdsValueSwitch
661
+ - Updated dependencies [a49aa87]
662
+ - @knime/kds-styles@0.5.9
663
+
664
+ ## 0.5.8
665
+
666
+ ### Patch Changes
667
+
668
+ - Updated dependencies [904359b]
669
+ - @knime/kds-styles@0.5.8
670
+
671
+ ## 0.5.7
672
+
673
+ ### Patch Changes
674
+
675
+ - 1bf37b9: Add KdsValueSwitch component
676
+ - @knime/kds-styles@0.5.7
677
+
678
+ ## 0.5.6
679
+
680
+ ### Patch Changes
681
+
682
+ - ca85c24: KDS-659: change kds modal body from grid to flex to avoid safari always full height bug
683
+ - Updated dependencies [80de341]
684
+ - Updated dependencies [eccfa4f]
685
+ - @knime/kds-styles@0.5.6
686
+
687
+ ## 0.5.5
688
+
689
+ ### Patch Changes
690
+
691
+ - c81ec62: Use default cursor for disabled states
692
+ - c69baf5: Add KdsRadioButton and KdsRadioButtonGroup components
693
+ - @knime/kds-styles@0.5.5
694
+
695
+ ## 0.5.4
696
+
697
+ ### Patch Changes
698
+
699
+ - cea2454: KDS-433: loading spinner add missing export
700
+ - @knime/kds-styles@0.5.4
701
+
702
+ ## 0.5.3
703
+
704
+ ### Patch Changes
705
+
706
+ - b18e89a: KDS-433: add LoadingSpinner
707
+ - Updated dependencies [b54fab7]
708
+ - @knime/kds-styles@0.5.3
709
+
710
+ ## 0.5.2
711
+
712
+ ### Patch Changes
713
+
714
+ - 345ee08: Require aria-labels for icon only buttons, add title as optional prop
715
+ - @knime/kds-styles@0.5.2
716
+
717
+ ## 0.5.1
718
+
719
+ ### Patch Changes
720
+
721
+ - fc72a47: Extend KdsModal API
722
+ - add overflow prop to KdsModal
723
+ - changed name of variant from default to padded
724
+ - allow update configuration from within a component passed to showByTemplate()
725
+ - add a context prop to config to send external data to the component rendered by showByTemplate()
726
+ - @knime/kds-styles@0.5.1
727
+
728
+ ## 0.5.0
729
+
730
+ ### Minor Changes
731
+
732
+ - 2224c3e: KDS-545: Add KdsToggleButton
733
+
734
+ ### Patch Changes
735
+
736
+ - @knime/kds-styles@0.5.0
737
+
738
+ ## 0.4.2
739
+
740
+ ### Patch Changes
741
+
742
+ - 80eb6aa: NXT-4191: KdsModal: use font-base-body-small instead of medium
743
+ - @knime/kds-styles@0.4.2
744
+
745
+ ## 0.4.1
746
+
747
+ ### Patch Changes
748
+
749
+ - 8a22ca1: Add show and hide animations to KdsModal
750
+ - @knime/kds-styles@0.4.1
751
+
752
+ ## 0.4.0
753
+
754
+ ### Patch Changes
755
+
756
+ - Updated dependencies [5bed877]
757
+ - @knime/kds-styles@0.4.0
758
+
759
+ ## 0.3.2
760
+
761
+ ### Patch Changes
762
+
763
+ - 437a201: fix build output missing types for useKdsDynamicModal
764
+ - @knime/kds-styles@0.3.2
765
+
766
+ ## 0.3.1
767
+
768
+ ### Patch Changes
769
+
770
+ - 9d430e5: KdsCheckbox: improve types by removing `generic="UNUSED"` as it caused issues with e.g. vue-test-utils
771
+ - @knime/kds-styles@0.3.1
772
+
773
+ ## 0.3.0
774
+
775
+ ### Minor Changes
776
+
777
+ - 02bba28: Improve dialog api for dynamic/programmatic dialog creation.
778
+
779
+ BREAKING CHANGE:
780
+ - KdsModal now has a `body` slot that is what before was the `default` slot. The new `default` is replacing everything so use `body` now.
781
+ - `useKdsConfirmDialog` has been renamed to `useKdsDynamicModal` and the `KdsConfirmDialog` became `KdsDynamicModalProvider`.
782
+
783
+ ### Patch Changes
784
+
785
+ - @knime/kds-styles@0.3.0
786
+
787
+ ## 0.2.1
788
+
789
+ ### Patch Changes
790
+
791
+ - a9d7db4: KdsModal: fix double close event
792
+ - @knime/kds-styles@0.2.1
793
+
794
+ ## 0.2.0
795
+
796
+ ### Minor Changes
797
+
798
+ - f5d429e: Add KdsModal components.
799
+
800
+ ### Patch Changes
801
+
802
+ - @knime/kds-styles@0.2.0
803
+
804
+ ## 0.1.1
805
+
806
+ ### Patch Changes
807
+
808
+ - Updated dependencies [e381c07]
809
+ - @knime/kds-styles@0.1.1
810
+
811
+ ## 0.1.0
812
+
813
+ ### Minor Changes
814
+
815
+ - 7531e8d: Renamed components, exported types and constants with a 'Kds' prefix.
816
+
817
+ In particular the following mapping needs to be made to update to this version:
818
+
819
+ ### Components:
820
+ - Button -> KdsButton
821
+ - LinkButton -> KdsLinkButton
822
+ - Checkbox -> KdsCheckbox
823
+ - Icon -> KdsIcon
824
+ - DataType -> KdsDataType
825
+
826
+ ### Utils:
827
+ - useDarkMode -> useKdsDarkMode
828
+ - useLegacyMode -> useKdsLegacyMode
829
+
830
+ ### Constants:
831
+ - sizes -> kdsSizes
832
+ - buttonVariants -> kdsButtonVariants
833
+ - iconSizes -> kdsIconSizes
834
+ - dataTypeSizes -> kdsDataTypeSizes
835
+ - iconNames -> kdsIconNames
836
+ - typeIconNames -> kdsTypeIconNames
837
+ - DARK_MODE_STORAGE_KEY -> KDS_DARK_MODE_STORAGE_KEY
838
+
839
+ ### Types:
840
+ - Size -> KdsSize
841
+ - ButtonVariant -> KdsButtonVariant
842
+ - ButtonProps -> KdsButtonProps
843
+ - LinkButtonProps -> KdsLinkButtonProps
844
+ - CheckboxProps -> KdsCheckboxProps
845
+ - IconSize -> KdsIconSize
846
+ - DataTypeSize -> KdsDataTypeSize
847
+ - IconName -> KdsIconName
848
+ - TypeIconName -> KdsTypeIconName
849
+ - DarkModeType -> KdsDarkModeType
850
+
851
+ ### Patch Changes
852
+
853
+ - @knime/kds-styles@0.1.0
854
+
855
+ ## 0.0.16
856
+
857
+ ### Patch Changes
858
+
859
+ - Updated dependencies [f43d7c8]
860
+ - @knime/kds-styles@0.0.16
861
+
862
+ ## 0.0.15
863
+
864
+ ### Patch Changes
865
+
866
+ - Updated dependencies [6273d5e]
867
+ - @knime/kds-styles@0.0.15
868
+
869
+ ## 0.0.14
870
+
871
+ ### Patch Changes
872
+
873
+ - 515b814: Add Checkbox component
874
+ - Updated dependencies [8469844]
875
+ - @knime/kds-styles@0.0.14
876
+
877
+ ## 0.0.13
878
+
879
+ ### Patch Changes
880
+
881
+ - Updated dependencies [a277ce1]
882
+ - @knime/kds-styles@0.0.13
883
+
884
+ ## 0.0.12
885
+
886
+ ### Patch Changes
887
+
888
+ - Updated dependencies [3c052ec]
889
+ - @knime/kds-styles@0.0.12
890
+
891
+ ## 0.0.11
892
+
893
+ ### Patch Changes
894
+
895
+ - Updated dependencies [9575244]
896
+ - @knime/kds-styles@0.0.11
897
+
898
+ ## 0.0.10
899
+
900
+ ### Patch Changes
901
+
902
+ - 16dfcf7: Improve button component API:
903
+ - Remove `icon` prop in favor of `leadingIcon`. Makes prop combinations of Button
904
+ easier to reason about.
905
+
906
+ - Updated dependencies [91a23d0]
907
+ - @knime/kds-styles@0.0.10
908
+
909
+ ## 0.0.9
910
+
911
+ ### Patch Changes
912
+
913
+ - 6dff857: Improved tokens
914
+ - Updated dependencies [6dff857]
915
+ - @knime/kds-styles@0.0.9