@sellmate/design-system-vue 1.0.35 → 1.0.37

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>;
@@ -489,7 +489,6 @@ export const SdSelectV2 = /*@__PURE__*/ defineContainer('sd-select-v2', undefine
489
489
  'value',
490
490
  'options',
491
491
  'placeholder',
492
- 'width',
493
492
  'maxDropdownWidth',
494
493
  'dropdownHeight',
495
494
  'disabled',
@@ -501,12 +500,13 @@ export const SdSelectV2 = /*@__PURE__*/ defineContainer('sd-select-v2', undefine
501
500
  'icon',
502
501
  'labelTooltip',
503
502
  'labelTooltipProps',
503
+ 'emitValue',
504
504
  'sdUpdate',
505
505
  'sdDropDownShow'
506
506
  ], [
507
507
  'sdUpdate',
508
508
  'sdDropDownShow'
509
- ]);
509
+ ], 'value', 'sdUpdate', undefined);
510
510
  export const SdSelectV2ListItem = /*@__PURE__*/ defineContainer('sd-select-v2-list-item', undefined, [
511
511
  'option',
512
512
  'depth',
@@ -530,6 +530,7 @@ export const SdSelectV2Listbox = /*@__PURE__*/ defineContainer('sd-select-v2-lis
530
530
  'name',
531
531
  'options',
532
532
  'value',
533
+ 'emitValue',
533
534
  'triggerWidth',
534
535
  'maxWidth',
535
536
  'maxHeight',
package/lib/components.ts CHANGED
@@ -573,12 +573,11 @@ 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',
580
580
  'placeholder',
581
- 'width',
582
581
  'maxDropdownWidth',
583
582
  'dropdownHeight',
584
583
  'disabled',
@@ -590,12 +589,14 @@ export const SdSelectV2: StencilVueComponent<JSX.SdSelectV2> = /*@__PURE__*/ def
590
589
  'icon',
591
590
  'labelTooltip',
592
591
  'labelTooltipProps',
592
+ 'emitValue',
593
593
  'sdUpdate',
594
594
  'sdDropDownShow'
595
595
  ], [
596
596
  'sdUpdate',
597
597
  'sdDropDownShow'
598
- ]);
598
+ ],
599
+ 'value', 'sdUpdate', undefined);
599
600
 
600
601
 
601
602
  export const SdSelectV2ListItem: StencilVueComponent<JSX.SdSelectV2ListItem> = /*@__PURE__*/ defineContainer<JSX.SdSelectV2ListItem>('sd-select-v2-list-item', undefined, [
@@ -625,6 +626,7 @@ export const SdSelectV2Listbox: StencilVueComponent<JSX.SdSelectV2Listbox> = /*@
625
626
  'name',
626
627
  'options',
627
628
  'value',
629
+ 'emitValue',
628
630
  'triggerWidth',
629
631
  'maxWidth',
630
632
  '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.37",
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.37",
49
49
  "@stencil/vue-output-target": "^0.11.8"
50
50
  },
51
51
  "peerDependencies": {