@sellmate/design-system-vue 1.0.40 → 1.0.41

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.
@@ -1,6 +1,7 @@
1
1
  import { type StencilVueComponent } from '@stencil/vue-output-target/runtime';
2
2
  import type { JSX } from '@sellmate/design-system';
3
3
  export declare const SdBadge: StencilVueComponent<JSX.SdBadge>;
4
+ export declare const SdBarcodeInput: StencilVueComponent<JSX.SdBarcodeInput, JSX.SdBarcodeInput["value"]>;
4
5
  export declare const SdButton: StencilVueComponent<JSX.SdButton>;
5
6
  export declare const SdButtonV2: StencilVueComponent<JSX.SdButtonV2>;
6
7
  export declare const SdCalendar: StencilVueComponent<JSX.SdCalendar>;
@@ -20,7 +21,6 @@ export declare const SdIcon: StencilVueComponent<JSX.SdIcon>;
20
21
  export declare const SdInput: StencilVueComponent<JSX.SdInput, JSX.SdInput["value"]>;
21
22
  export declare const SdLoadingSpinner: StencilVueComponent<JSX.SdLoadingSpinner>;
22
23
  export declare const SdModalContainer: StencilVueComponent<JSX.SdModalContainer>;
23
- export declare const SdNoticeModal: StencilVueComponent<JSX.SdNoticeModal>;
24
24
  export declare const SdNumberInput: StencilVueComponent<JSX.SdNumberInput, JSX.SdNumberInput["value"]>;
25
25
  export declare const SdPagination: StencilVueComponent<JSX.SdPagination, JSX.SdPagination["currentPage"]>;
26
26
  export declare const SdPopover: StencilVueComponent<JSX.SdPopover>;
@@ -6,6 +6,37 @@ export const SdBadge = /*@__PURE__*/ defineContainer('sd-badge', undefined, [
6
6
  'color',
7
7
  'label'
8
8
  ]);
9
+ export const SdBarcodeInput = /*@__PURE__*/ defineContainer('sd-barcode-input', undefined, [
10
+ 'value',
11
+ 'size',
12
+ 'addonLabel',
13
+ 'placeholder',
14
+ 'disabled',
15
+ 'clearable',
16
+ 'width',
17
+ 'rules',
18
+ 'autoFocus',
19
+ 'status',
20
+ 'hint',
21
+ 'errorMessage',
22
+ 'inputClass',
23
+ 'readonly',
24
+ 'error',
25
+ 'focused',
26
+ 'hovered',
27
+ 'label',
28
+ 'icon',
29
+ 'labelTooltip',
30
+ 'labelTooltipProps',
31
+ 'inputStyle',
32
+ 'sdUpdate',
33
+ 'sdFocus',
34
+ 'sdBlur'
35
+ ], [
36
+ 'sdUpdate',
37
+ 'sdFocus',
38
+ 'sdBlur'
39
+ ], 'value', 'sdUpdate', undefined);
9
40
  export const SdButton = /*@__PURE__*/ defineContainer('sd-button', undefined, [
10
41
  'variant',
11
42
  'size',
@@ -227,23 +258,6 @@ export const SdLoadingSpinner = /*@__PURE__*/ defineContainer('sd-loading-spinne
227
258
  'color'
228
259
  ]);
229
260
  export const SdModalContainer = /*@__PURE__*/ defineContainer('sd-modal-container', undefined);
230
- export const SdNoticeModal = /*@__PURE__*/ defineContainer('sd-notice-modal', undefined, [
231
- 'modalTitle',
232
- 'titleClass',
233
- 'topMessage',
234
- 'bottomMessage',
235
- 'mainButtonLabel',
236
- 'subButtonLabel',
237
- 'tagPreset',
238
- 'tagLabel',
239
- 'slotLabel',
240
- 'tagContents',
241
- 'sdClose',
242
- 'sdConfirm'
243
- ], [
244
- 'sdClose',
245
- 'sdConfirm'
246
- ]);
247
261
  export const SdNumberInput = /*@__PURE__*/ defineContainer('sd-number-input', undefined, [
248
262
  'min',
249
263
  'max',
package/lib/components.ts CHANGED
@@ -14,6 +14,40 @@ export const SdBadge: StencilVueComponent<JSX.SdBadge> = /*@__PURE__*/ defineCon
14
14
  ]);
15
15
 
16
16
 
17
+ export const SdBarcodeInput: StencilVueComponent<JSX.SdBarcodeInput, JSX.SdBarcodeInput["value"]> = /*@__PURE__*/ defineContainer<JSX.SdBarcodeInput, JSX.SdBarcodeInput["value"]>('sd-barcode-input', undefined, [
18
+ 'value',
19
+ 'size',
20
+ 'addonLabel',
21
+ 'placeholder',
22
+ 'disabled',
23
+ 'clearable',
24
+ 'width',
25
+ 'rules',
26
+ 'autoFocus',
27
+ 'status',
28
+ 'hint',
29
+ 'errorMessage',
30
+ 'inputClass',
31
+ 'readonly',
32
+ 'error',
33
+ 'focused',
34
+ 'hovered',
35
+ 'label',
36
+ 'icon',
37
+ 'labelTooltip',
38
+ 'labelTooltipProps',
39
+ 'inputStyle',
40
+ 'sdUpdate',
41
+ 'sdFocus',
42
+ 'sdBlur'
43
+ ], [
44
+ 'sdUpdate',
45
+ 'sdFocus',
46
+ 'sdBlur'
47
+ ],
48
+ 'value', 'sdUpdate', undefined);
49
+
50
+
17
51
  export const SdButton: StencilVueComponent<JSX.SdButton> = /*@__PURE__*/ defineContainer<JSX.SdButton>('sd-button', undefined, [
18
52
  'variant',
19
53
  'size',
@@ -278,25 +312,6 @@ export const SdLoadingSpinner: StencilVueComponent<JSX.SdLoadingSpinner> = /*@__
278
312
  export const SdModalContainer: StencilVueComponent<JSX.SdModalContainer> = /*@__PURE__*/ defineContainer<JSX.SdModalContainer>('sd-modal-container', undefined);
279
313
 
280
314
 
281
- export const SdNoticeModal: StencilVueComponent<JSX.SdNoticeModal> = /*@__PURE__*/ defineContainer<JSX.SdNoticeModal>('sd-notice-modal', undefined, [
282
- 'modalTitle',
283
- 'titleClass',
284
- 'topMessage',
285
- 'bottomMessage',
286
- 'mainButtonLabel',
287
- 'subButtonLabel',
288
- 'tagPreset',
289
- 'tagLabel',
290
- 'slotLabel',
291
- 'tagContents',
292
- 'sdClose',
293
- 'sdConfirm'
294
- ], [
295
- 'sdClose',
296
- 'sdConfirm'
297
- ]);
298
-
299
-
300
315
  export const SdNumberInput: StencilVueComponent<JSX.SdNumberInput, JSX.SdNumberInput["value"]> = /*@__PURE__*/ defineContainer<JSX.SdNumberInput, JSX.SdNumberInput["value"]>('sd-number-input', undefined, [
301
316
  'min',
302
317
  'max',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellmate/design-system-vue",
3
- "version": "1.0.40",
3
+ "version": "1.0.41",
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.40",
48
+ "@sellmate/design-system": "^1.0.41",
49
49
  "@stencil/vue-output-target": "^0.11.8"
50
50
  },
51
51
  "peerDependencies": {