@vaadin/multi-select-combo-box 24.4.0-dev.b3e1d14600 → 24.5.0-alpha1
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/package.json +13 -13
- package/src/lit/renderer-directives.d.ts +1 -1
- package/src/lit/renderer-directives.js +1 -1
- package/src/vaadin-multi-select-combo-box-chip.js +1 -1
- package/src/vaadin-multi-select-combo-box-container.js +1 -1
- package/src/vaadin-multi-select-combo-box-internal.js +34 -4
- package/src/vaadin-multi-select-combo-box-item.d.ts +1 -1
- package/src/vaadin-multi-select-combo-box-item.js +1 -1
- package/src/vaadin-multi-select-combo-box-overlay.d.ts +1 -1
- package/src/vaadin-multi-select-combo-box-overlay.js +1 -1
- package/src/vaadin-multi-select-combo-box-scroller.d.ts +1 -1
- package/src/vaadin-multi-select-combo-box-scroller.js +1 -1
- package/src/vaadin-multi-select-combo-box.d.ts +15 -1
- package/src/vaadin-multi-select-combo-box.js +66 -8
- package/theme/lumo/vaadin-multi-select-combo-box-chip-styles.d.ts +10 -0
- package/theme/lumo/vaadin-multi-select-combo-box-chip-styles.js +1 -1
- package/theme/lumo/vaadin-multi-select-combo-box-styles.d.ts +10 -0
- package/theme/lumo/vaadin-multi-select-combo-box-styles.js +1 -1
- package/theme/lumo/vaadin-multi-select-combo-box.d.ts +8 -0
- package/theme/lumo/vaadin-multi-select-combo-box.js +1 -1
- package/theme/material/vaadin-multi-select-combo-box-chip-styles.d.ts +8 -0
- package/theme/material/vaadin-multi-select-combo-box-chip-styles.js +1 -1
- package/theme/material/vaadin-multi-select-combo-box-styles.d.ts +9 -0
- package/theme/material/vaadin-multi-select-combo-box-styles.js +1 -1
- package/theme/material/vaadin-multi-select-combo-box.d.ts +8 -0
- package/theme/material/vaadin-multi-select-combo-box.js +1 -1
- package/web-types.json +835 -0
- package/web-types.lit.json +349 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/multi-select-combo-box",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.5.0-alpha1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,17 +38,17 @@
|
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@polymer/polymer": "^3.0.0",
|
|
41
|
-
"@vaadin/a11y-base": "24.
|
|
42
|
-
"@vaadin/combo-box": "24.
|
|
43
|
-
"@vaadin/component-base": "24.
|
|
44
|
-
"@vaadin/field-base": "24.
|
|
45
|
-
"@vaadin/input-container": "24.
|
|
46
|
-
"@vaadin/item": "24.
|
|
47
|
-
"@vaadin/lit-renderer": "24.
|
|
48
|
-
"@vaadin/overlay": "24.
|
|
49
|
-
"@vaadin/vaadin-lumo-styles": "24.
|
|
50
|
-
"@vaadin/vaadin-material-styles": "24.
|
|
51
|
-
"@vaadin/vaadin-themable-mixin": "24.
|
|
41
|
+
"@vaadin/a11y-base": "24.5.0-alpha1",
|
|
42
|
+
"@vaadin/combo-box": "24.5.0-alpha1",
|
|
43
|
+
"@vaadin/component-base": "24.5.0-alpha1",
|
|
44
|
+
"@vaadin/field-base": "24.5.0-alpha1",
|
|
45
|
+
"@vaadin/input-container": "24.5.0-alpha1",
|
|
46
|
+
"@vaadin/item": "24.5.0-alpha1",
|
|
47
|
+
"@vaadin/lit-renderer": "24.5.0-alpha1",
|
|
48
|
+
"@vaadin/overlay": "24.5.0-alpha1",
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "24.5.0-alpha1",
|
|
50
|
+
"@vaadin/vaadin-material-styles": "24.5.0-alpha1",
|
|
51
|
+
"@vaadin/vaadin-themable-mixin": "24.5.0-alpha1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@esm-bundle/chai": "^4.3.4",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"web-types.json",
|
|
61
61
|
"web-types.lit.json"
|
|
62
62
|
],
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "57806caac5468532a3b4e3dbdda730cd0fca193a"
|
|
64
64
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2017 -
|
|
3
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import type { DirectiveResult } from 'lit/directive.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 -
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 -
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { defineCustomElement } from '@vaadin/component-base/src/define.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 -
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import './vaadin-multi-select-combo-box-item.js';
|
|
@@ -60,6 +60,14 @@ class MultiSelectComboBoxInternal extends ComboBoxDataProviderMixin(ComboBoxMixi
|
|
|
60
60
|
notify: true,
|
|
61
61
|
},
|
|
62
62
|
|
|
63
|
+
/**
|
|
64
|
+
* When true, filter string isn't cleared after selecting an item.
|
|
65
|
+
*/
|
|
66
|
+
keepFilter: {
|
|
67
|
+
type: Boolean,
|
|
68
|
+
value: false,
|
|
69
|
+
},
|
|
70
|
+
|
|
63
71
|
/**
|
|
64
72
|
* When set to `true`, "loading" attribute is set
|
|
65
73
|
* on the host and the overlay element.
|
|
@@ -236,7 +244,7 @@ class MultiSelectComboBoxInternal extends ComboBoxDataProviderMixin(ComboBoxMixi
|
|
|
236
244
|
|
|
237
245
|
if (this.readonly) {
|
|
238
246
|
this.close();
|
|
239
|
-
} else {
|
|
247
|
+
} else if (this._hasValidInputValue()) {
|
|
240
248
|
// Keep selected item focused after committing on Enter.
|
|
241
249
|
const focusedItem = this._dropdownItems[this._focusedIndex];
|
|
242
250
|
this._commitValue();
|
|
@@ -268,6 +276,30 @@ class MultiSelectComboBoxInternal extends ComboBoxDataProviderMixin(ComboBoxMixi
|
|
|
268
276
|
super._onEscape(event);
|
|
269
277
|
}
|
|
270
278
|
|
|
279
|
+
/**
|
|
280
|
+
* Override from combo-box to ignore requests to clear the filter if the
|
|
281
|
+
* keepFilter option is enabled. Exceptions are when the dropdown is closed,
|
|
282
|
+
* so the filter is still cleared on cancel and focus out.
|
|
283
|
+
* @protected
|
|
284
|
+
* @override
|
|
285
|
+
*/
|
|
286
|
+
_clearFilter() {
|
|
287
|
+
if (!this.keepFilter || !this.opened) {
|
|
288
|
+
super._clearFilter();
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
/**
|
|
293
|
+
* Override method from combo-box to always clear the filter when reverting
|
|
294
|
+
* the input value, regardless of the keepFilter option.
|
|
295
|
+
* @override
|
|
296
|
+
* @protected
|
|
297
|
+
*/
|
|
298
|
+
_revertInputValueToValue() {
|
|
299
|
+
super._revertInputValueToValue();
|
|
300
|
+
this.filter = '';
|
|
301
|
+
}
|
|
302
|
+
|
|
271
303
|
/**
|
|
272
304
|
* @protected
|
|
273
305
|
* @override
|
|
@@ -381,8 +413,6 @@ class MultiSelectComboBoxInternal extends ComboBoxDataProviderMixin(ComboBoxMixi
|
|
|
381
413
|
* Override method inherited from the combo-box
|
|
382
414
|
* to not request data provider when read-only.
|
|
383
415
|
*
|
|
384
|
-
* @param {number}
|
|
385
|
-
* @return {boolean}
|
|
386
416
|
* @protected
|
|
387
417
|
* @override
|
|
388
418
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2018 -
|
|
3
|
+
* Copyright (c) 2018 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import type { ComboBoxDefaultItem, ComboBoxItemMixinClass } from '@vaadin/combo-box/src/vaadin-combo-box-item-mixin.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 -
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 -
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { ComboBoxOverlayMixin } from '@vaadin/combo-box/src/vaadin-combo-box-overlay-mixin.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 -
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 -
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { ComboBoxScrollerMixin } from '@vaadin/combo-box/src/vaadin-combo-box-scroller-mixin.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 -
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { html, PolymerElement } from '@polymer/polymer/polymer-element.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 -
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import type { DelegateFocusMixinClass } from '@vaadin/a11y-base/src/delegate-focus-mixin.js';
|
|
@@ -231,6 +231,14 @@ declare class MultiSelectComboBox<TItem = ComboBoxDefaultItem> extends HTMLEleme
|
|
|
231
231
|
*/
|
|
232
232
|
items: TItem[] | undefined;
|
|
233
233
|
|
|
234
|
+
/**
|
|
235
|
+
* A function used to generate CSS class names for dropdown
|
|
236
|
+
* items and selected chips based on the item. The return
|
|
237
|
+
* value should be the generated class name as a string, or
|
|
238
|
+
* multiple class names separated by whitespace characters.
|
|
239
|
+
*/
|
|
240
|
+
itemClassNameGenerator: (item: TItem) => string;
|
|
241
|
+
|
|
234
242
|
/**
|
|
235
243
|
* The item property used for a visual representation of the item.
|
|
236
244
|
* @attr {string} item-label-path
|
|
@@ -274,6 +282,12 @@ declare class MultiSelectComboBox<TItem = ComboBoxDefaultItem> extends HTMLEleme
|
|
|
274
282
|
*/
|
|
275
283
|
i18n: MultiSelectComboBoxI18n;
|
|
276
284
|
|
|
285
|
+
/**
|
|
286
|
+
* When true, filter string isn't cleared after selecting an item.
|
|
287
|
+
* @attr {boolean} keep-filter
|
|
288
|
+
*/
|
|
289
|
+
keepFilter: boolean;
|
|
290
|
+
|
|
277
291
|
/**
|
|
278
292
|
* True when loading items from the data provider, false otherwise.
|
|
279
293
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 -
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import './vaadin-multi-select-combo-box-chip.js';
|
|
@@ -180,9 +180,11 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
|
|
|
180
180
|
filtered-items="[[filteredItems]]"
|
|
181
181
|
selected-items="[[selectedItems]]"
|
|
182
182
|
selected-items-on-top="[[selectedItemsOnTop]]"
|
|
183
|
+
item-class-name-generator="[[itemClassNameGenerator]]"
|
|
183
184
|
top-group="[[_topGroup]]"
|
|
184
185
|
opened="{{opened}}"
|
|
185
186
|
renderer="[[renderer]]"
|
|
187
|
+
keep-filter="[[keepFilter]]"
|
|
186
188
|
theme$="[[_theme]]"
|
|
187
189
|
on-combo-box-item-selected="_onComboBoxItemSelected"
|
|
188
190
|
on-change="_onComboBoxChange"
|
|
@@ -278,6 +280,17 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
|
|
|
278
280
|
type: Array,
|
|
279
281
|
},
|
|
280
282
|
|
|
283
|
+
/**
|
|
284
|
+
* A function used to generate CSS class names for dropdown
|
|
285
|
+
* items and selected chips based on the item. The return
|
|
286
|
+
* value should be the generated class name as a string, or
|
|
287
|
+
* multiple class names separated by whitespace characters.
|
|
288
|
+
*/
|
|
289
|
+
itemClassNameGenerator: {
|
|
290
|
+
type: Object,
|
|
291
|
+
observer: '__itemClassNameGeneratorChanged',
|
|
292
|
+
},
|
|
293
|
+
|
|
281
294
|
/**
|
|
282
295
|
* The item property used for a visual representation of the item.
|
|
283
296
|
* @attr {string} item-label-path
|
|
@@ -342,6 +355,14 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
|
|
|
342
355
|
},
|
|
343
356
|
},
|
|
344
357
|
|
|
358
|
+
/**
|
|
359
|
+
* When true, filter string isn't cleared after selecting an item.
|
|
360
|
+
*/
|
|
361
|
+
keepFilter: {
|
|
362
|
+
type: Boolean,
|
|
363
|
+
value: false,
|
|
364
|
+
},
|
|
365
|
+
|
|
345
366
|
/**
|
|
346
367
|
* True when loading items from the data provider, false otherwise.
|
|
347
368
|
*/
|
|
@@ -752,6 +773,13 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
|
|
|
752
773
|
}
|
|
753
774
|
}
|
|
754
775
|
|
|
776
|
+
/** @private */
|
|
777
|
+
__itemClassNameGeneratorChanged(generator, oldGenerator) {
|
|
778
|
+
if (generator || oldGenerator) {
|
|
779
|
+
this.__updateChips();
|
|
780
|
+
}
|
|
781
|
+
}
|
|
782
|
+
|
|
755
783
|
/** @private */
|
|
756
784
|
_pageSizeChanged(pageSize, oldPageSize) {
|
|
757
785
|
if (Math.floor(pageSize) !== pageSize || pageSize <= 0) {
|
|
@@ -824,10 +852,27 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
|
|
|
824
852
|
return selectedItems.indexOf(item);
|
|
825
853
|
}
|
|
826
854
|
|
|
827
|
-
/**
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
855
|
+
/**
|
|
856
|
+
* Clear the internal combo box value and filter. Filter will not be cleared
|
|
857
|
+
* when the `keepFilter` option is enabled. Using `force` can enforce clearing
|
|
858
|
+
* the filter.
|
|
859
|
+
* @param {boolean} force overrides the keepFilter option
|
|
860
|
+
* @private
|
|
861
|
+
*/
|
|
862
|
+
__clearInternalValue(force = false) {
|
|
863
|
+
if (!this.keepFilter || force) {
|
|
864
|
+
// Clear both combo box value and filter.
|
|
865
|
+
this.filter = '';
|
|
866
|
+
this.$.comboBox.clear();
|
|
867
|
+
} else {
|
|
868
|
+
// Only clear combo box value. This effectively resets _lastCommittedValue
|
|
869
|
+
// which allows toggling the same item multiple times via keyboard.
|
|
870
|
+
this.$.comboBox.clear();
|
|
871
|
+
// Restore input to the filter value. Needed when items are
|
|
872
|
+
// navigated with keyboard, which overrides the input value
|
|
873
|
+
// with the item label.
|
|
874
|
+
this._inputElementValue = this.filter;
|
|
875
|
+
}
|
|
831
876
|
}
|
|
832
877
|
|
|
833
878
|
/** @private */
|
|
@@ -859,7 +904,7 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
|
|
|
859
904
|
const lastFilter = this._lastFilter;
|
|
860
905
|
// Do not unselect when manually typing and committing an already selected item.
|
|
861
906
|
if (lastFilter && lastFilter.toLowerCase() === itemLabel.toLowerCase()) {
|
|
862
|
-
this.
|
|
907
|
+
this.__clearInternalValue();
|
|
863
908
|
return;
|
|
864
909
|
}
|
|
865
910
|
|
|
@@ -872,7 +917,7 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
|
|
|
872
917
|
this.__updateSelection(itemsCopy);
|
|
873
918
|
|
|
874
919
|
// Suppress `value-changed` event.
|
|
875
|
-
this.
|
|
920
|
+
this.__clearInternalValue();
|
|
876
921
|
|
|
877
922
|
this.__announceItem(itemLabel, isSelected, itemsCopy.length);
|
|
878
923
|
}
|
|
@@ -908,6 +953,10 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
|
|
|
908
953
|
chip.label = label;
|
|
909
954
|
chip.setAttribute('title', label);
|
|
910
955
|
|
|
956
|
+
if (typeof this.itemClassNameGenerator === 'function') {
|
|
957
|
+
chip.className = this.itemClassNameGenerator(item);
|
|
958
|
+
}
|
|
959
|
+
|
|
911
960
|
chip.addEventListener('item-removed', (e) => this._onItemRemoved(e));
|
|
912
961
|
chip.addEventListener('mousedown', (e) => this._preventBlur(e));
|
|
913
962
|
|
|
@@ -1041,6 +1090,9 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
|
|
|
1041
1090
|
_onClearButtonTouchend(event) {
|
|
1042
1091
|
// Cancel the following click and focus events
|
|
1043
1092
|
event.preventDefault();
|
|
1093
|
+
// Prevent default combo box behavior which can otherwise unnecessarily
|
|
1094
|
+
// clear the input and filter
|
|
1095
|
+
event.stopPropagation();
|
|
1044
1096
|
|
|
1045
1097
|
this.clear();
|
|
1046
1098
|
}
|
|
@@ -1232,7 +1284,7 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
|
|
|
1232
1284
|
// Stop the original event
|
|
1233
1285
|
event.stopPropagation();
|
|
1234
1286
|
|
|
1235
|
-
this.
|
|
1287
|
+
this.__clearInternalValue(true);
|
|
1236
1288
|
|
|
1237
1289
|
this.dispatchEvent(
|
|
1238
1290
|
new CustomEvent('custom-value-set', {
|
|
@@ -1254,6 +1306,12 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
|
|
|
1254
1306
|
// and keep the overlay opened when clicking a chip.
|
|
1255
1307
|
event.preventDefault();
|
|
1256
1308
|
}
|
|
1309
|
+
|
|
1310
|
+
/**
|
|
1311
|
+
* Fired when the user sets a custom value.
|
|
1312
|
+
* @event custom-value-set
|
|
1313
|
+
* @param {string} detail the custom value
|
|
1314
|
+
*/
|
|
1257
1315
|
}
|
|
1258
1316
|
|
|
1259
1317
|
defineCustomElement(MultiSelectComboBox);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
import '@vaadin/vaadin-lumo-styles/color.js';
|
|
7
|
+
import '@vaadin/vaadin-lumo-styles/font-icons.js';
|
|
8
|
+
import '@vaadin/vaadin-lumo-styles/spacing.js';
|
|
9
|
+
import '@vaadin/vaadin-lumo-styles/style.js';
|
|
10
|
+
import '@vaadin/vaadin-lumo-styles/typography.js';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
import '@vaadin/input-container/theme/lumo/vaadin-input-container-styles.js';
|
|
7
|
+
import '@vaadin/vaadin-lumo-styles/color.js';
|
|
8
|
+
import '@vaadin/vaadin-lumo-styles/font-icons.js';
|
|
9
|
+
import '@vaadin/vaadin-lumo-styles/style.js';
|
|
10
|
+
import '@vaadin/vaadin-lumo-styles/typography.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 -
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import '@vaadin/input-container/theme/lumo/vaadin-input-container-styles.js';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
import './vaadin-multi-select-combo-box-chip-styles.js';
|
|
7
|
+
import './vaadin-multi-select-combo-box-styles.js';
|
|
8
|
+
import '../../src/vaadin-multi-select-combo-box.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 -
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import './vaadin-multi-select-combo-box-chip-styles.js';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
import '@vaadin/vaadin-material-styles/color.js';
|
|
7
|
+
import '@vaadin/vaadin-material-styles/font-icons.js';
|
|
8
|
+
import '@vaadin/vaadin-material-styles/typography.js';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
import '@vaadin/input-container/theme/material/vaadin-input-container-styles.js';
|
|
7
|
+
import '@vaadin/vaadin-material-styles/color.js';
|
|
8
|
+
import '@vaadin/vaadin-material-styles/font-icons.js';
|
|
9
|
+
import '@vaadin/vaadin-material-styles/typography.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 -
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import '@vaadin/input-container/theme/material/vaadin-input-container-styles.js';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
import './vaadin-multi-select-combo-box-chip-styles.js';
|
|
7
|
+
import './vaadin-multi-select-combo-box-styles.js';
|
|
8
|
+
import '../../src/vaadin-multi-select-combo-box.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2021 -
|
|
3
|
+
* Copyright (c) 2021 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import './vaadin-multi-select-combo-box-chip-styles.js';
|