@descope-ui/descope-combo-box 0.0.4 → 0.0.6

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 CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.0.6](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-combo-box-0.0.5...@descope-ui/descope-combo-box-0.0.6) (2025-03-03)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `@descope-ui/common` updated to version `0.0.6`
10
+ * `@descope-ui/theme-globals` updated to version `0.0.6`
11
+ * `@descope-ui/theme-input-wrapper` updated to version `0.0.6`
12
+ ## [0.0.5](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-combo-box-0.0.4...@descope-ui/descope-combo-box-0.0.5) (2025-02-26)
13
+
14
+ ### Dependency Updates
15
+
16
+ * `@descope-ui/theme-globals` updated to version `0.0.5`
17
+ * `@descope-ui/theme-input-wrapper` updated to version `0.0.5`
18
+ * `@descope-ui/common` updated to version `0.0.5`
5
19
  ## [0.0.4](https://github.com/descope/web-components-ui/compare/@descope-ui/descope-combo-box-0.0.3...@descope-ui/descope-combo-box-0.0.4) (2025-02-17)
6
20
 
7
21
  ### Dependency Updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@descope-ui/descope-combo-box",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "exports": {
5
5
  ".": {
6
6
  "import": "./src/component/index.js"
@@ -19,9 +19,9 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "@vaadin/combo-box": "24.3.4",
22
- "@descope-ui/common": "0.0.4",
23
- "@descope-ui/theme-globals": "0.0.4",
24
- "@descope-ui/theme-input-wrapper": "0.0.4"
22
+ "@descope-ui/common": "0.0.6",
23
+ "@descope-ui/theme-globals": "0.0.6",
24
+ "@descope-ui/theme-input-wrapper": "0.0.6"
25
25
  },
26
26
  "publishConfig": {
27
27
  "link-workspace-packages": false
@@ -87,7 +87,7 @@ const Template = ({
87
87
  .replace(/\n/g, '')}
88
88
  </script>`;
89
89
 
90
- return withForm(`
90
+ return `
91
91
  <descope-combo-box
92
92
  clear-button-visible
93
93
  data='${(itemsSource === 'attr' && serializedData) || ''}'
@@ -124,12 +124,13 @@ const Template = ({
124
124
  ${itemsSource === 'prop' ? dataFromPropScript : ''}
125
125
  ${overrideRenderItem ? overrideRenderItemScript : ''}
126
126
  ${overrideRenderer ? overrideRendererScript : ''}
127
- `);
127
+ `;
128
128
  };
129
129
 
130
130
  export default {
131
131
  component: componentName,
132
132
  title: 'descope-combo-box',
133
+ decorators: [withForm],
133
134
  argTypes: {
134
135
  ...labelControl,
135
136
  ...placeholderControl,