@sellmate/design-system-react 1.0.53 → 1.0.55
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.
|
@@ -309,6 +309,12 @@ export const SdInput = /*@__PURE__*/ createComponent({
|
|
|
309
309
|
clearable: 'clearable',
|
|
310
310
|
width: 'width',
|
|
311
311
|
autoFocus: 'auto-focus',
|
|
312
|
+
autocomplete: 'autocomplete',
|
|
313
|
+
maxlength: 'maxlength',
|
|
314
|
+
minlength: 'minlength',
|
|
315
|
+
inputmode: 'inputmode',
|
|
316
|
+
enterkeyhint: 'enterkeyhint',
|
|
317
|
+
spellcheck: 'spellcheck',
|
|
312
318
|
status: 'status',
|
|
313
319
|
hint: 'hint',
|
|
314
320
|
errorMessage: 'error-message',
|
|
@@ -730,13 +736,25 @@ export const SdTextarea = /*@__PURE__*/ createComponent({
|
|
|
730
736
|
tagName: 'sd-textarea',
|
|
731
737
|
properties: {
|
|
732
738
|
value: 'value',
|
|
733
|
-
|
|
739
|
+
placeholder: 'placeholder',
|
|
734
740
|
disabled: 'disabled',
|
|
741
|
+
readonly: 'readonly',
|
|
735
742
|
autoFocus: 'auto-focus',
|
|
736
743
|
textareaClass: 'textarea-class',
|
|
737
|
-
helpText: 'help-text',
|
|
738
744
|
maxLength: 'max-length',
|
|
739
|
-
|
|
745
|
+
rows: 'rows',
|
|
746
|
+
spellcheck: 'spellcheck',
|
|
747
|
+
width: 'width',
|
|
748
|
+
label: 'label',
|
|
749
|
+
addonLabel: 'addon-label',
|
|
750
|
+
hint: 'hint',
|
|
751
|
+
errorMessage: 'error-message',
|
|
752
|
+
labelTooltip: 'label-tooltip',
|
|
753
|
+
error: 'error',
|
|
754
|
+
status: 'status',
|
|
755
|
+
focused: 'focused',
|
|
756
|
+
hovered: 'hovered',
|
|
757
|
+
rules: 'rules'
|
|
740
758
|
},
|
|
741
759
|
hydrateModule: import('@sellmate/design-system/hydrate'),
|
|
742
760
|
clientModule: clientComponents.SdTextarea,
|
|
@@ -467,6 +467,12 @@ export const SdInput: StencilReactComponent<SdInputElement, SdInputEvents> = /*@
|
|
|
467
467
|
clearable: 'clearable',
|
|
468
468
|
width: 'width',
|
|
469
469
|
autoFocus: 'auto-focus',
|
|
470
|
+
autocomplete: 'autocomplete',
|
|
471
|
+
maxlength: 'maxlength',
|
|
472
|
+
minlength: 'minlength',
|
|
473
|
+
inputmode: 'inputmode',
|
|
474
|
+
enterkeyhint: 'enterkeyhint',
|
|
475
|
+
spellcheck: 'spellcheck',
|
|
470
476
|
status: 'status',
|
|
471
477
|
hint: 'hint',
|
|
472
478
|
errorMessage: 'error-message',
|
|
@@ -1019,13 +1025,25 @@ export const SdTextarea: StencilReactComponent<SdTextareaElement, SdTextareaEven
|
|
|
1019
1025
|
tagName: 'sd-textarea',
|
|
1020
1026
|
properties: {
|
|
1021
1027
|
value: 'value',
|
|
1022
|
-
|
|
1028
|
+
placeholder: 'placeholder',
|
|
1023
1029
|
disabled: 'disabled',
|
|
1030
|
+
readonly: 'readonly',
|
|
1024
1031
|
autoFocus: 'auto-focus',
|
|
1025
1032
|
textareaClass: 'textarea-class',
|
|
1026
|
-
helpText: 'help-text',
|
|
1027
1033
|
maxLength: 'max-length',
|
|
1028
|
-
|
|
1034
|
+
rows: 'rows',
|
|
1035
|
+
spellcheck: 'spellcheck',
|
|
1036
|
+
width: 'width',
|
|
1037
|
+
label: 'label',
|
|
1038
|
+
addonLabel: 'addon-label',
|
|
1039
|
+
hint: 'hint',
|
|
1040
|
+
errorMessage: 'error-message',
|
|
1041
|
+
labelTooltip: 'label-tooltip',
|
|
1042
|
+
error: 'error',
|
|
1043
|
+
status: 'status',
|
|
1044
|
+
focused: 'focused',
|
|
1045
|
+
hovered: 'hovered',
|
|
1046
|
+
rules: 'rules'
|
|
1029
1047
|
},
|
|
1030
1048
|
hydrateModule: import('@sellmate/design-system/hydrate') as Promise<HydrateModule>,
|
|
1031
1049
|
clientModule: clientComponents.SdTextarea as ReactWebComponent<SdTextareaElement, SdTextareaEvents>,
|
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.55",
|
|
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.55",
|
|
58
58
|
"@stencil/react-output-target": "^1.2.0"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|