@sellmate/design-system-react 1.0.74 → 1.0.76
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.
|
@@ -766,6 +766,9 @@ export const SdSelectV2 = /*@__PURE__*/ createComponent({
|
|
|
766
766
|
labelTooltip: 'label-tooltip',
|
|
767
767
|
emitValue: 'emit-value',
|
|
768
768
|
width: 'width',
|
|
769
|
+
useSearch: 'use-search',
|
|
770
|
+
allSelectedLabel: 'all-selected-label',
|
|
771
|
+
useSelectAll: 'use-select-all',
|
|
769
772
|
name: 'name',
|
|
770
773
|
options: 'options',
|
|
771
774
|
rules: 'rules'
|
|
@@ -799,6 +802,8 @@ export const SdSelectV2Listbox = /*@__PURE__*/ createComponent({
|
|
|
799
802
|
type: 'type',
|
|
800
803
|
value: 'value',
|
|
801
804
|
emitValue: 'emit-value',
|
|
805
|
+
useSearch: 'use-search',
|
|
806
|
+
useSelectAll: 'use-select-all',
|
|
802
807
|
triggerWidth: 'trigger-width',
|
|
803
808
|
maxWidth: 'max-width',
|
|
804
809
|
maxHeight: 'max-height',
|
|
@@ -896,7 +901,9 @@ export const SdTd = /*@__PURE__*/ createComponent({
|
|
|
896
901
|
properties: {
|
|
897
902
|
field: 'field',
|
|
898
903
|
rowKey: 'row-key',
|
|
899
|
-
align: 'align'
|
|
904
|
+
align: 'align',
|
|
905
|
+
rowspan: 'rowspan',
|
|
906
|
+
colspan: 'colspan'
|
|
900
907
|
},
|
|
901
908
|
hydrateModule: import('@sellmate/design-system/hydrate'),
|
|
902
909
|
clientModule: clientComponents.SdTd,
|
|
@@ -645,8 +645,7 @@ export const SdLoadingModal: StencilReactComponent<SdLoadingModalElement, SdLoad
|
|
|
645
645
|
useButton: 'use-button',
|
|
646
646
|
buttonLabel: 'button-label',
|
|
647
647
|
width: 'width',
|
|
648
|
-
height: 'height'
|
|
649
|
-
},
|
|
648
|
+
height: 'height'},
|
|
650
649
|
hydrateModule: import('@sellmate/design-system/hydrate') as Promise<HydrateModule>,
|
|
651
650
|
clientModule: clientComponents.SdLoadingModal as ReactWebComponent<SdLoadingModalElement, SdLoadingModalEvents>,
|
|
652
651
|
serializeShadowRoot,
|
|
@@ -1053,6 +1052,9 @@ export const SdSelectV2: StencilReactComponent<SdSelectV2Element, SdSelectV2Even
|
|
|
1053
1052
|
labelTooltip: 'label-tooltip',
|
|
1054
1053
|
emitValue: 'emit-value',
|
|
1055
1054
|
width: 'width',
|
|
1055
|
+
useSearch: 'use-search',
|
|
1056
|
+
allSelectedLabel: 'all-selected-label',
|
|
1057
|
+
useSelectAll: 'use-select-all',
|
|
1056
1058
|
name: 'name',
|
|
1057
1059
|
options: 'options',
|
|
1058
1060
|
rules: 'rules'},
|
|
@@ -1097,6 +1099,8 @@ export const SdSelectV2Listbox: StencilReactComponent<SdSelectV2ListboxElement,
|
|
|
1097
1099
|
type: 'type',
|
|
1098
1100
|
value: 'value',
|
|
1099
1101
|
emitValue: 'emit-value',
|
|
1102
|
+
useSearch: 'use-search',
|
|
1103
|
+
useSelectAll: 'use-select-all',
|
|
1100
1104
|
triggerWidth: 'trigger-width',
|
|
1101
1105
|
maxWidth: 'max-width',
|
|
1102
1106
|
maxHeight: 'max-height',
|
|
@@ -1229,7 +1233,9 @@ export const SdTd: StencilReactComponent<SdTdElement, SdTdEvents> = /*@__PURE__*
|
|
|
1229
1233
|
properties: {
|
|
1230
1234
|
field: 'field',
|
|
1231
1235
|
rowKey: 'row-key',
|
|
1232
|
-
align: 'align'
|
|
1236
|
+
align: 'align',
|
|
1237
|
+
rowspan: 'rowspan',
|
|
1238
|
+
colspan: 'colspan'
|
|
1233
1239
|
},
|
|
1234
1240
|
hydrateModule: import('@sellmate/design-system/hydrate') as Promise<HydrateModule>,
|
|
1235
1241
|
clientModule: clientComponents.SdTd as ReactWebComponent<SdTdElement, SdTdEvents>,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sellmate/design-system-react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.76",
|
|
4
4
|
"description": "Design System - React Component Wrappers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"dev": "tsc --watch"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@sellmate/design-system": "^1.0.
|
|
57
|
+
"@sellmate/design-system": "^1.0.76",
|
|
58
58
|
"@stencil/react-output-target": "^1.2.0"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|