@sellmate/design-system-vue 1.0.39 → 1.0.40

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.
@@ -44,6 +44,7 @@ export declare const SdSelectV2Listbox: StencilVueComponent<JSX.SdSelectV2Listbo
44
44
  export declare const SdSelectV2Trigger: StencilVueComponent<JSX.SdSelectV2Trigger>;
45
45
  export declare const SdTabs: StencilVueComponent<JSX.SdTabs, JSX.SdTabs["value"]>;
46
46
  export declare const SdTag: StencilVueComponent<JSX.SdTag>;
47
+ export declare const SdTextLink: StencilVueComponent<JSX.SdTextLink>;
47
48
  export declare const SdTextarea: StencilVueComponent<JSX.SdTextarea, JSX.SdTextarea["value"]>;
48
49
  export declare const SdToast: StencilVueComponent<JSX.SdToast>;
49
50
  export declare const SdToastContainer: StencilVueComponent<JSX.SdToastContainer>;
@@ -136,6 +136,9 @@ export const SdField = /*@__PURE__*/ defineContainer('sd-field', undefined, [
136
136
  'hovered',
137
137
  'focused',
138
138
  'status',
139
+ 'hint',
140
+ 'errorMessage',
141
+ 'width',
139
142
  'label',
140
143
  'addonLabel',
141
144
  'icon',
@@ -200,6 +203,8 @@ export const SdInput = /*@__PURE__*/ defineContainer('sd-input', undefined, [
200
203
  'rules',
201
204
  'autoFocus',
202
205
  'status',
206
+ 'hint',
207
+ 'errorMessage',
203
208
  'inputClass',
204
209
  'readonly',
205
210
  'error',
@@ -254,6 +259,8 @@ export const SdNumberInput = /*@__PURE__*/ defineContainer('sd-number-input', un
254
259
  'rules',
255
260
  'autoFocus',
256
261
  'status',
262
+ 'hint',
263
+ 'errorMessage',
257
264
  'inputClass',
258
265
  'readonly',
259
266
  'inputStyle',
@@ -517,6 +524,8 @@ export const SdSelectV2 = /*@__PURE__*/ defineContainer('sd-select-v2', undefine
517
524
  'label',
518
525
  'addonLabel',
519
526
  'error',
527
+ 'hint',
528
+ 'errorMessage',
520
529
  'fieldName',
521
530
  'rules',
522
531
  'icon',
@@ -585,6 +594,17 @@ export const SdTag = /*@__PURE__*/ defineContainer('sd-tag', undefined, [
585
594
  'icon',
586
595
  'isLeft'
587
596
  ]);
597
+ export const SdTextLink = /*@__PURE__*/ defineContainer('sd-text-link', undefined, [
598
+ 'label',
599
+ 'icon',
600
+ 'iconColor',
601
+ 'useArrow',
602
+ 'underline',
603
+ 'disabled',
604
+ 'sdClick'
605
+ ], [
606
+ 'sdClick'
607
+ ]);
588
608
  export const SdTextarea = /*@__PURE__*/ defineContainer('sd-textarea', undefined, [
589
609
  'value',
590
610
  'name',
package/lib/components.ts CHANGED
@@ -167,6 +167,9 @@ export const SdField: StencilVueComponent<JSX.SdField> = /*@__PURE__*/ defineCon
167
167
  'hovered',
168
168
  'focused',
169
169
  'status',
170
+ 'hint',
171
+ 'errorMessage',
172
+ 'width',
170
173
  'label',
171
174
  'addonLabel',
172
175
  'icon',
@@ -244,6 +247,8 @@ export const SdInput: StencilVueComponent<JSX.SdInput, JSX.SdInput["value"]> = /
244
247
  'rules',
245
248
  'autoFocus',
246
249
  'status',
250
+ 'hint',
251
+ 'errorMessage',
247
252
  'inputClass',
248
253
  'readonly',
249
254
  'error',
@@ -307,6 +312,8 @@ export const SdNumberInput: StencilVueComponent<JSX.SdNumberInput, JSX.SdNumberI
307
312
  'rules',
308
313
  'autoFocus',
309
314
  'status',
315
+ 'hint',
316
+ 'errorMessage',
310
317
  'inputClass',
311
318
  'readonly',
312
319
  'inputStyle',
@@ -610,6 +617,8 @@ export const SdSelectV2: StencilVueComponent<JSX.SdSelectV2, JSX.SdSelectV2["val
610
617
  'label',
611
618
  'addonLabel',
612
619
  'error',
620
+ 'hint',
621
+ 'errorMessage',
613
622
  'fieldName',
614
623
  'rules',
615
624
  'icon',
@@ -694,6 +703,19 @@ export const SdTag: StencilVueComponent<JSX.SdTag> = /*@__PURE__*/ defineContain
694
703
  ]);
695
704
 
696
705
 
706
+ export const SdTextLink: StencilVueComponent<JSX.SdTextLink> = /*@__PURE__*/ defineContainer<JSX.SdTextLink>('sd-text-link', undefined, [
707
+ 'label',
708
+ 'icon',
709
+ 'iconColor',
710
+ 'useArrow',
711
+ 'underline',
712
+ 'disabled',
713
+ 'sdClick'
714
+ ], [
715
+ 'sdClick'
716
+ ]);
717
+
718
+
697
719
  export const SdTextarea: StencilVueComponent<JSX.SdTextarea, JSX.SdTextarea["value"]> = /*@__PURE__*/ defineContainer<JSX.SdTextarea, JSX.SdTextarea["value"]>('sd-textarea', undefined, [
698
720
  'value',
699
721
  'name',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellmate/design-system-vue",
3
- "version": "1.0.39",
3
+ "version": "1.0.40",
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.39",
48
+ "@sellmate/design-system": "^1.0.40",
49
49
  "@stencil/vue-output-target": "^0.11.8"
50
50
  },
51
51
  "peerDependencies": {