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