@sellmate/design-system-vue 1.9.0 → 1.11.0
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.d.ts +1 -0
- package/dist/components.js +29 -0
- package/lib/components.ts +32 -0
- package/package.json +2 -2
package/dist/components.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export declare const SdCallout: StencilVueComponent<JSX.SdCallout>;
|
|
|
9
9
|
export declare const SdCard: StencilVueComponent<JSX.SdCard>;
|
|
10
10
|
export declare const SdCheckbox: StencilVueComponent<JSX.SdCheckbox, JSX.SdCheckbox["value"]>;
|
|
11
11
|
export declare const SdChip: StencilVueComponent<JSX.SdChip, JSX.SdChip["value"]>;
|
|
12
|
+
export declare const SdChipInput: StencilVueComponent<JSX.SdChipInput, JSX.SdChipInput["values"]>;
|
|
12
13
|
export declare const SdCircleProgress: StencilVueComponent<JSX.SdCircleProgress>;
|
|
13
14
|
export declare const SdConfirmModal: StencilVueComponent<JSX.SdConfirmModal>;
|
|
14
15
|
export declare const SdDateBox: StencilVueComponent<JSX.SdDateBox>;
|
package/dist/components.js
CHANGED
|
@@ -108,6 +108,33 @@ export const SdChip = /*@__PURE__*/ defineContainer('sd-chip', undefined, [
|
|
|
108
108
|
'sdFocus',
|
|
109
109
|
'sdBlur'
|
|
110
110
|
], 'value', 'sdUpdate', undefined);
|
|
111
|
+
export const SdChipInput = /*@__PURE__*/ defineContainer('sd-chip-input', undefined, [
|
|
112
|
+
'values',
|
|
113
|
+
'errors',
|
|
114
|
+
'size',
|
|
115
|
+
'disabled',
|
|
116
|
+
'placeholder',
|
|
117
|
+
'name',
|
|
118
|
+
'rules',
|
|
119
|
+
'error',
|
|
120
|
+
'useReset',
|
|
121
|
+
'label',
|
|
122
|
+
'labelWidth',
|
|
123
|
+
'hint',
|
|
124
|
+
'errorMessage',
|
|
125
|
+
'width',
|
|
126
|
+
'status',
|
|
127
|
+
'icon',
|
|
128
|
+
'labelTooltip',
|
|
129
|
+
'labelTooltipProps',
|
|
130
|
+
'sdUpdate',
|
|
131
|
+
'sdFocus',
|
|
132
|
+
'sdBlur'
|
|
133
|
+
], [
|
|
134
|
+
'sdUpdate',
|
|
135
|
+
'sdFocus',
|
|
136
|
+
'sdBlur'
|
|
137
|
+
], 'values', 'sdUpdate', undefined);
|
|
111
138
|
export const SdCircleProgress = /*@__PURE__*/ defineContainer('sd-circle-progress', undefined, [
|
|
112
139
|
'indeterminate',
|
|
113
140
|
'value',
|
|
@@ -314,6 +341,7 @@ export const SdGhostButton = /*@__PURE__*/ defineContainer('sd-ghost-button', un
|
|
|
314
341
|
'size',
|
|
315
342
|
'intent',
|
|
316
343
|
'ariaLabel',
|
|
344
|
+
'tooltipLabel',
|
|
317
345
|
'disabled',
|
|
318
346
|
'sdClick'
|
|
319
347
|
], [
|
|
@@ -651,6 +679,7 @@ export const SdTabs = /*@__PURE__*/ defineContainer('sd-tabs', undefined, [
|
|
|
651
679
|
'tabs',
|
|
652
680
|
'size',
|
|
653
681
|
'isSub',
|
|
682
|
+
'vertical',
|
|
654
683
|
'sdUpdate'
|
|
655
684
|
], [
|
|
656
685
|
'sdUpdate'
|
package/lib/components.ts
CHANGED
|
@@ -136,6 +136,36 @@ export const SdChip: StencilVueComponent<JSX.SdChip, JSX.SdChip["value"]> = /*@_
|
|
|
136
136
|
'value', 'sdUpdate', undefined);
|
|
137
137
|
|
|
138
138
|
|
|
139
|
+
export const SdChipInput: StencilVueComponent<JSX.SdChipInput, JSX.SdChipInput["values"]> = /*@__PURE__*/ defineContainer<JSX.SdChipInput, JSX.SdChipInput["values"]>('sd-chip-input', undefined, [
|
|
140
|
+
'values',
|
|
141
|
+
'errors',
|
|
142
|
+
'size',
|
|
143
|
+
'disabled',
|
|
144
|
+
'placeholder',
|
|
145
|
+
'name',
|
|
146
|
+
'rules',
|
|
147
|
+
'error',
|
|
148
|
+
'useReset',
|
|
149
|
+
'label',
|
|
150
|
+
'labelWidth',
|
|
151
|
+
'hint',
|
|
152
|
+
'errorMessage',
|
|
153
|
+
'width',
|
|
154
|
+
'status',
|
|
155
|
+
'icon',
|
|
156
|
+
'labelTooltip',
|
|
157
|
+
'labelTooltipProps',
|
|
158
|
+
'sdUpdate',
|
|
159
|
+
'sdFocus',
|
|
160
|
+
'sdBlur'
|
|
161
|
+
], [
|
|
162
|
+
'sdUpdate',
|
|
163
|
+
'sdFocus',
|
|
164
|
+
'sdBlur'
|
|
165
|
+
],
|
|
166
|
+
'values', 'sdUpdate', undefined);
|
|
167
|
+
|
|
168
|
+
|
|
139
169
|
export const SdCircleProgress: StencilVueComponent<JSX.SdCircleProgress> = /*@__PURE__*/ defineContainer<JSX.SdCircleProgress>('sd-circle-progress', undefined, [
|
|
140
170
|
'indeterminate',
|
|
141
171
|
'value',
|
|
@@ -371,6 +401,7 @@ export const SdGhostButton: StencilVueComponent<JSX.SdGhostButton> = /*@__PURE__
|
|
|
371
401
|
'size',
|
|
372
402
|
'intent',
|
|
373
403
|
'ariaLabel',
|
|
404
|
+
'tooltipLabel',
|
|
374
405
|
'disabled',
|
|
375
406
|
'sdClick'
|
|
376
407
|
], [
|
|
@@ -765,6 +796,7 @@ export const SdTabs: StencilVueComponent<JSX.SdTabs, JSX.SdTabs["value"]> = /*@_
|
|
|
765
796
|
'tabs',
|
|
766
797
|
'size',
|
|
767
798
|
'isSub',
|
|
799
|
+
'vertical',
|
|
768
800
|
'sdUpdate'
|
|
769
801
|
], [
|
|
770
802
|
'sdUpdate'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sellmate/design-system-vue",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"description": "Design System - Vue Component Wrappers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vue",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"vue": "^3.4.38"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@sellmate/design-system": "^1.
|
|
50
|
+
"@sellmate/design-system": "^1.11.0",
|
|
51
51
|
"@stencil/vue-output-target": "^0.11.8"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|