@sellmate/design-system-react 1.0.75 → 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,
|
|
@@ -1052,6 +1052,9 @@ export const SdSelectV2: StencilReactComponent<SdSelectV2Element, SdSelectV2Even
|
|
|
1052
1052
|
labelTooltip: 'label-tooltip',
|
|
1053
1053
|
emitValue: 'emit-value',
|
|
1054
1054
|
width: 'width',
|
|
1055
|
+
useSearch: 'use-search',
|
|
1056
|
+
allSelectedLabel: 'all-selected-label',
|
|
1057
|
+
useSelectAll: 'use-select-all',
|
|
1055
1058
|
name: 'name',
|
|
1056
1059
|
options: 'options',
|
|
1057
1060
|
rules: 'rules'},
|
|
@@ -1096,6 +1099,8 @@ export const SdSelectV2Listbox: StencilReactComponent<SdSelectV2ListboxElement,
|
|
|
1096
1099
|
type: 'type',
|
|
1097
1100
|
value: 'value',
|
|
1098
1101
|
emitValue: 'emit-value',
|
|
1102
|
+
useSearch: 'use-search',
|
|
1103
|
+
useSelectAll: 'use-select-all',
|
|
1099
1104
|
triggerWidth: 'trigger-width',
|
|
1100
1105
|
maxWidth: 'max-width',
|
|
1101
1106
|
maxHeight: 'max-height',
|
|
@@ -1228,7 +1233,9 @@ export const SdTd: StencilReactComponent<SdTdElement, SdTdEvents> = /*@__PURE__*
|
|
|
1228
1233
|
properties: {
|
|
1229
1234
|
field: 'field',
|
|
1230
1235
|
rowKey: 'row-key',
|
|
1231
|
-
align: 'align'
|
|
1236
|
+
align: 'align',
|
|
1237
|
+
rowspan: 'rowspan',
|
|
1238
|
+
colspan: 'colspan'
|
|
1232
1239
|
},
|
|
1233
1240
|
hydrateModule: import('@sellmate/design-system/hydrate') as Promise<HydrateModule>,
|
|
1234
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": {
|