@cas-smartdesign/combo-box 7.2.11 → 7.4.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/dist/combo-box-with-externals.js +12 -12
- package/dist/combo-box-with-externals.js.map +3 -3
- package/dist/combo-box.d.ts +7 -0
- package/dist/combo-box.mjs +93 -54
- package/dist/combo-box.mjs.map +1 -1
- package/dist/docs/2_basic-examples.js +1 -1
- package/dist/docs/6_validation_example.js +1 -1
- package/dist/docs/doc.mjs +93 -74
- package/package.json +4 -3
- package/readme.md +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cas-smartdesign/combo-box",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.4.0",
|
|
4
4
|
"description": "A combo-box element with the look and feel of the SmartDesign inputs & list item layouts",
|
|
5
5
|
"main": "dist/combo-box-with-externals.js",
|
|
6
6
|
"module": "dist/combo-box.mjs",
|
|
@@ -9,8 +9,9 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@popperjs/core": "^2.11.8",
|
|
11
11
|
"lit": "^2.8.0",
|
|
12
|
-
"@cas-smartdesign/
|
|
13
|
-
"@cas-smartdesign/lit-input": "^7.
|
|
12
|
+
"@cas-smartdesign/image-tools": "^3.0.2",
|
|
13
|
+
"@cas-smartdesign/lit-input": "^7.3.0",
|
|
14
|
+
"@cas-smartdesign/virtual-list": "^6.2.4",
|
|
14
15
|
"@cas-smartdesign/list-item": "^7.2.4"
|
|
15
16
|
},
|
|
16
17
|
"devDependencies": {
|
package/readme.md
CHANGED
|
@@ -22,6 +22,8 @@ _(in addition to lit-input)_
|
|
|
22
22
|
- Used for in memory filtering if set. The property of the item which is checked against the filter text. It is preferred to `inMemoryFilter`.
|
|
23
23
|
- `has-value` **_boolean (default=false)_**
|
|
24
24
|
- Present if the input field has any text in it.
|
|
25
|
+
- `show-icon` **_boolean (default=false)_**
|
|
26
|
+
- Defines if the currently icon of the selected or active item is shown as a prefix element.
|
|
25
27
|
|
|
26
28
|
## Properties
|
|
27
29
|
|