@cas-smartdesign/combo-box 7.5.3 → 7.5.4
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 +21 -20
- package/dist/combo-box-with-externals.js.map +3 -3
- package/dist/docs/doc.mjs +43 -42
- package/package.json +5 -5
- package/readme.md +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cas-smartdesign/combo-box",
|
|
3
|
-
"version": "7.5.
|
|
3
|
+
"version": "7.5.4",
|
|
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,14 +9,14 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@popperjs/core": "^2.11.8",
|
|
11
11
|
"lit": "^3.3.1",
|
|
12
|
-
"@cas-smartdesign/
|
|
13
|
-
"@cas-smartdesign/list
|
|
12
|
+
"@cas-smartdesign/list-item": "^7.4.3",
|
|
13
|
+
"@cas-smartdesign/virtual-list": "^6.3.0",
|
|
14
14
|
"@cas-smartdesign/lit-input": "^7.4.2",
|
|
15
|
-
"@cas-smartdesign/
|
|
15
|
+
"@cas-smartdesign/image-tools": "^3.2.1"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@cas-smartdesign/field-validation-message": "^5.1.0",
|
|
19
18
|
"@cas-smartdesign/element-preview": "^0.3.0",
|
|
19
|
+
"@cas-smartdesign/field-validation-message": "^5.1.0",
|
|
20
20
|
"@cas-smartdesign/license-generator": "^1.7.0",
|
|
21
21
|
"@cas-smartdesign/styles": "^3.7.0"
|
|
22
22
|
},
|
package/readme.md
CHANGED
|
@@ -14,8 +14,8 @@ _(in addition to lit-input)_
|
|
|
14
14
|
- User may able to add custom value if it is set. Note that if the current value is such a custom one, then it's type is string.
|
|
15
15
|
- `trigger-only` **_boolean (default=false)_**
|
|
16
16
|
- Defines if the element after a selection event may clear its value.
|
|
17
|
-
- `null-setting-
|
|
18
|
-
-
|
|
17
|
+
- `null-setting-disallowed` **_boolean (default=false)_**
|
|
18
|
+
- Defines if using empty value is allowed via a clear button or just simply removing the text.
|
|
19
19
|
- `display-value-path` **_string (default=caption)_**
|
|
20
20
|
- The currently selected item's property to show in the input.
|
|
21
21
|
- `filter-property` **_string (default=null)_**
|
|
@@ -29,7 +29,7 @@ _(in addition to lit-input)_
|
|
|
29
29
|
|
|
30
30
|
_(in addition to lit-input)_
|
|
31
31
|
|
|
32
|
-
- `itemHeight`, `opened`, `allowCustomValue`, `
|
|
32
|
+
- `itemHeight`, `opened`, `allowCustomValue`, `nullSettingDisallowed`, `displayValuePath`, `filterProperty`, `triggerOnly`
|
|
33
33
|
- Reflects the corresponding attribute.
|
|
34
34
|
- `itemGenerator` **_ItemGenerator_**
|
|
35
35
|
- A function that renders the list items. Delegated to the list used in the dropdown. The default value is the one from the @cas-smartdesign/list-item.
|