@sellmate/design-system-vue 1.0.35 → 1.0.36

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.
@@ -35,7 +35,7 @@ export declare const SdSelectMultipleGroup: StencilVueComponent<JSX.SdSelectMult
35
35
  export declare const SdSelectOption: StencilVueComponent<JSX.SdSelectOption>;
36
36
  export declare const SdSelectOptionGroup: StencilVueComponent<JSX.SdSelectOptionGroup>;
37
37
  export declare const SdSelectSearchInput: StencilVueComponent<JSX.SdSelectSearchInput>;
38
- export declare const SdSelectV2: StencilVueComponent<JSX.SdSelectV2>;
38
+ export declare const SdSelectV2: StencilVueComponent<JSX.SdSelectV2, JSX.SdSelectV2["value"]>;
39
39
  export declare const SdSelectV2ListItem: StencilVueComponent<JSX.SdSelectV2ListItem>;
40
40
  export declare const SdSelectV2ListItemSearch: StencilVueComponent<JSX.SdSelectV2ListItemSearch>;
41
41
  export declare const SdSelectV2Listbox: StencilVueComponent<JSX.SdSelectV2Listbox>;
@@ -501,12 +501,13 @@ export const SdSelectV2 = /*@__PURE__*/ defineContainer('sd-select-v2', undefine
501
501
  'icon',
502
502
  'labelTooltip',
503
503
  'labelTooltipProps',
504
+ 'emitValue',
504
505
  'sdUpdate',
505
506
  'sdDropDownShow'
506
507
  ], [
507
508
  'sdUpdate',
508
509
  'sdDropDownShow'
509
- ]);
510
+ ], 'value', 'sdUpdate', undefined);
510
511
  export const SdSelectV2ListItem = /*@__PURE__*/ defineContainer('sd-select-v2-list-item', undefined, [
511
512
  'option',
512
513
  'depth',
@@ -530,6 +531,7 @@ export const SdSelectV2Listbox = /*@__PURE__*/ defineContainer('sd-select-v2-lis
530
531
  'name',
531
532
  'options',
532
533
  'value',
534
+ 'emitValue',
533
535
  'triggerWidth',
534
536
  'maxWidth',
535
537
  'maxHeight',
package/lib/components.ts CHANGED
@@ -573,7 +573,7 @@ export const SdSelectSearchInput: StencilVueComponent<JSX.SdSelectSearchInput> =
573
573
  ]);
574
574
 
575
575
 
576
- export const SdSelectV2: StencilVueComponent<JSX.SdSelectV2> = /*@__PURE__*/ defineContainer<JSX.SdSelectV2>('sd-select-v2', undefined, [
576
+ export const SdSelectV2: StencilVueComponent<JSX.SdSelectV2, JSX.SdSelectV2["value"]> = /*@__PURE__*/ defineContainer<JSX.SdSelectV2, JSX.SdSelectV2["value"]>('sd-select-v2', undefined, [
577
577
  'name',
578
578
  'value',
579
579
  'options',
@@ -590,12 +590,14 @@ export const SdSelectV2: StencilVueComponent<JSX.SdSelectV2> = /*@__PURE__*/ def
590
590
  'icon',
591
591
  'labelTooltip',
592
592
  'labelTooltipProps',
593
+ 'emitValue',
593
594
  'sdUpdate',
594
595
  'sdDropDownShow'
595
596
  ], [
596
597
  'sdUpdate',
597
598
  'sdDropDownShow'
598
- ]);
599
+ ],
600
+ 'value', 'sdUpdate', undefined);
599
601
 
600
602
 
601
603
  export const SdSelectV2ListItem: StencilVueComponent<JSX.SdSelectV2ListItem> = /*@__PURE__*/ defineContainer<JSX.SdSelectV2ListItem>('sd-select-v2-list-item', undefined, [
@@ -625,6 +627,7 @@ export const SdSelectV2Listbox: StencilVueComponent<JSX.SdSelectV2Listbox> = /*@
625
627
  'name',
626
628
  'options',
627
629
  'value',
630
+ 'emitValue',
628
631
  'triggerWidth',
629
632
  'maxWidth',
630
633
  'maxHeight',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellmate/design-system-vue",
3
- "version": "1.0.35",
3
+ "version": "1.0.36",
4
4
  "description": "Design System - Vue Component Wrappers",
5
5
  "keywords": [
6
6
  "vue",
@@ -45,7 +45,7 @@
45
45
  "vue": "^3.4.38"
46
46
  },
47
47
  "dependencies": {
48
- "@sellmate/design-system": "^1.0.35",
48
+ "@sellmate/design-system": "^1.0.36",
49
49
  "@stencil/vue-output-target": "^0.11.8"
50
50
  },
51
51
  "peerDependencies": {