@db-ux/wc-core-components 3.0.3 → 3.0.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.
@@ -3420,6 +3420,7 @@
3420
3420
  {
3421
3421
  "name": "width",
3422
3422
  "fieldName": "width",
3423
+ "default": "\"fixed\"",
3423
3424
  "type": {
3424
3425
  "text": "\"fixed\" | \"auto\" | \"full\" | string"
3425
3426
  },
@@ -8852,6 +8853,7 @@
8852
8853
  {
8853
8854
  "name": "show-clear-selection",
8854
8855
  "fieldName": "showClearSelection",
8856
+ "default": "true",
8855
8857
  "type": {
8856
8858
  "text": "boolean"
8857
8859
  },
@@ -8866,6 +8868,7 @@
8866
8868
  {
8867
8869
  "name": "clear-selection-text",
8868
8870
  "fieldName": "clearSelectionText",
8871
+ "default": "\"Clear selection\"",
8869
8872
  "type": {
8870
8873
  "text": "string"
8871
8874
  },
@@ -988,7 +988,10 @@
988
988
  {
989
989
  "name": "width",
990
990
  "description": "Changes the behavior of the dropdown with.\nDefault: fixed 328px\nFull: Based on the size of the form-field\nAuto: Based on the size of the largest list item",
991
- "value": { "type": "\"fixed\" | \"auto\" | \"full\" | string" }
991
+ "value": {
992
+ "type": "\"fixed\" | \"auto\" | \"full\" | string",
993
+ "default": "\"fixed\""
994
+ }
992
995
  }
993
996
  ],
994
997
  "slots": [{ "name": "children", "description": "default slot" }],
@@ -2182,12 +2185,12 @@
2182
2185
  {
2183
2186
  "name": "show-clear-selection",
2184
2187
  "description": "Show clear selection button (default:true). Hide it if you have very small inputs e.g. in tables.",
2185
- "value": { "type": "boolean" }
2188
+ "value": { "type": "boolean", "default": "true" }
2186
2189
  },
2187
2190
  {
2188
2191
  "name": "clear-selection-text",
2189
2192
  "description": "Label for the clear selection button",
2190
- "value": { "type": "string" }
2193
+ "value": { "type": "string", "default": "\"Clear selection\"" }
2191
2194
  },
2192
2195
  {
2193
2196
  "name": "placeholder",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/wc-core-components",
3
- "version": "3.0.3",
3
+ "version": "3.0.4",
4
4
  "description": "Stencil components for @db-ux/core-components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -29,7 +29,7 @@
29
29
  "start": "stencil build --watch"
30
30
  },
31
31
  "devDependencies": {
32
- "@custom-elements-manifest/analyzer": "0.10.4",
32
+ "@custom-elements-manifest/analyzer": "0.10.5",
33
33
  "@stencil/core": "4.36.2",
34
34
  "cem-plugin-expanded-types": "1.4.0",
35
35
  "custom-element-jet-brains-integration": "1.7.0",
@@ -41,8 +41,9 @@
41
41
  "access": "public"
42
42
  },
43
43
  "web-types": "./dist/web-types.json",
44
+ "customElements": "dist/custom-elements.json",
44
45
  "dependencies": {
45
- "@db-ux/core-components": "3.0.3",
46
- "@db-ux/core-foundations": "3.0.3"
46
+ "@db-ux/core-components": "3.0.4",
47
+ "@db-ux/core-foundations": "3.0.4"
47
48
  }
48
49
  }