@sellmate/design-system-vue 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.
- package/dist/components.js +24 -3
- package/lib/components.ts +24 -3
- package/package.json +2 -2
package/dist/components.js
CHANGED
|
@@ -273,6 +273,12 @@ export const SdInput = /*@__PURE__*/ defineContainer('sd-input', undefined, [
|
|
|
273
273
|
'width',
|
|
274
274
|
'rules',
|
|
275
275
|
'autoFocus',
|
|
276
|
+
'autocomplete',
|
|
277
|
+
'maxlength',
|
|
278
|
+
'minlength',
|
|
279
|
+
'inputmode',
|
|
280
|
+
'enterkeyhint',
|
|
281
|
+
'spellcheck',
|
|
276
282
|
'status',
|
|
277
283
|
'hint',
|
|
278
284
|
'errorMessage',
|
|
@@ -665,13 +671,28 @@ export const SdTextLink = /*@__PURE__*/ defineContainer('sd-text-link', undefine
|
|
|
665
671
|
]);
|
|
666
672
|
export const SdTextarea = /*@__PURE__*/ defineContainer('sd-textarea', undefined, [
|
|
667
673
|
'value',
|
|
668
|
-
'
|
|
674
|
+
'placeholder',
|
|
669
675
|
'disabled',
|
|
676
|
+
'readonly',
|
|
670
677
|
'autoFocus',
|
|
671
678
|
'textareaClass',
|
|
672
|
-
'
|
|
679
|
+
'textareaStyle',
|
|
673
680
|
'maxLength',
|
|
674
|
-
'
|
|
681
|
+
'rows',
|
|
682
|
+
'spellcheck',
|
|
683
|
+
'width',
|
|
684
|
+
'label',
|
|
685
|
+
'addonLabel',
|
|
686
|
+
'hint',
|
|
687
|
+
'errorMessage',
|
|
688
|
+
'icon',
|
|
689
|
+
'labelTooltip',
|
|
690
|
+
'labelTooltipProps',
|
|
691
|
+
'rules',
|
|
692
|
+
'error',
|
|
693
|
+
'status',
|
|
694
|
+
'focused',
|
|
695
|
+
'hovered',
|
|
675
696
|
'sdUpdate',
|
|
676
697
|
'sdFocus',
|
|
677
698
|
'sdBlur'
|
package/lib/components.ts
CHANGED
|
@@ -324,6 +324,12 @@ export const SdInput: StencilVueComponent<JSX.SdInput, JSX.SdInput["value"]> = /
|
|
|
324
324
|
'width',
|
|
325
325
|
'rules',
|
|
326
326
|
'autoFocus',
|
|
327
|
+
'autocomplete',
|
|
328
|
+
'maxlength',
|
|
329
|
+
'minlength',
|
|
330
|
+
'inputmode',
|
|
331
|
+
'enterkeyhint',
|
|
332
|
+
'spellcheck',
|
|
327
333
|
'status',
|
|
328
334
|
'hint',
|
|
329
335
|
'errorMessage',
|
|
@@ -781,13 +787,28 @@ export const SdTextLink: StencilVueComponent<JSX.SdTextLink> = /*@__PURE__*/ def
|
|
|
781
787
|
|
|
782
788
|
export const SdTextarea: StencilVueComponent<JSX.SdTextarea, JSX.SdTextarea["value"]> = /*@__PURE__*/ defineContainer<JSX.SdTextarea, JSX.SdTextarea["value"]>('sd-textarea', undefined, [
|
|
783
789
|
'value',
|
|
784
|
-
'
|
|
790
|
+
'placeholder',
|
|
785
791
|
'disabled',
|
|
792
|
+
'readonly',
|
|
786
793
|
'autoFocus',
|
|
787
794
|
'textareaClass',
|
|
788
|
-
'
|
|
795
|
+
'textareaStyle',
|
|
789
796
|
'maxLength',
|
|
790
|
-
'
|
|
797
|
+
'rows',
|
|
798
|
+
'spellcheck',
|
|
799
|
+
'width',
|
|
800
|
+
'label',
|
|
801
|
+
'addonLabel',
|
|
802
|
+
'hint',
|
|
803
|
+
'errorMessage',
|
|
804
|
+
'icon',
|
|
805
|
+
'labelTooltip',
|
|
806
|
+
'labelTooltipProps',
|
|
807
|
+
'rules',
|
|
808
|
+
'error',
|
|
809
|
+
'status',
|
|
810
|
+
'focused',
|
|
811
|
+
'hovered',
|
|
791
812
|
'sdUpdate',
|
|
792
813
|
'sdFocus',
|
|
793
814
|
'sdBlur'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sellmate/design-system-vue",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.55",
|
|
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.
|
|
48
|
+
"@sellmate/design-system": "^1.0.55",
|
|
49
49
|
"@stencil/vue-output-target": "^0.11.8"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|