@sellmate/design-system-vue 1.0.71 → 1.0.73

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.
@@ -26,6 +26,7 @@ export declare const SdGhostButton: StencilVueComponent<JSX.SdGhostButton>;
26
26
  export declare const SdGuide: StencilVueComponent<JSX.SdGuide>;
27
27
  export declare const SdIcon: StencilVueComponent<JSX.SdIcon>;
28
28
  export declare const SdInput: StencilVueComponent<JSX.SdInput, JSX.SdInput["value"]>;
29
+ export declare const SdLinearProgress: StencilVueComponent<JSX.SdLinearProgress>;
29
30
  export declare const SdLoadingContainer: StencilVueComponent<JSX.SdLoadingContainer>;
30
31
  export declare const SdLoadingModal: StencilVueComponent<JSX.SdLoadingModal>;
31
32
  export declare const SdModalContainer: StencilVueComponent<JSX.SdModalContainer>;
@@ -124,7 +124,8 @@ export const SdChip = /*@__PURE__*/ defineContainer('sd-chip', undefined, [
124
124
  export const SdCircleProgress = /*@__PURE__*/ defineContainer('sd-circle-progress', undefined, [
125
125
  'indeterminate',
126
126
  'value',
127
- 'type'
127
+ 'type',
128
+ 'label'
128
129
  ]);
129
130
  export const SdConfirmModal = /*@__PURE__*/ defineContainer('sd-confirm-modal', undefined, [
130
131
  'type',
@@ -389,6 +390,12 @@ export const SdInput = /*@__PURE__*/ defineContainer('sd-input', undefined, [
389
390
  'sdFocus',
390
391
  'sdBlur'
391
392
  ], 'value', 'sdUpdate', undefined);
393
+ export const SdLinearProgress = /*@__PURE__*/ defineContainer('sd-linear-progress', undefined, [
394
+ 'indeterminate',
395
+ 'value',
396
+ 'type',
397
+ 'label'
398
+ ]);
392
399
  export const SdLoadingContainer = /*@__PURE__*/ defineContainer('sd-loading-container', undefined);
393
400
  export const SdLoadingModal = /*@__PURE__*/ defineContainer('sd-loading-modal', undefined, [
394
401
  'state',
package/lib/components.ts CHANGED
@@ -151,7 +151,8 @@ export const SdChip: StencilVueComponent<JSX.SdChip, JSX.SdChip["value"]> = /*@_
151
151
  export const SdCircleProgress: StencilVueComponent<JSX.SdCircleProgress> = /*@__PURE__*/ defineContainer<JSX.SdCircleProgress>('sd-circle-progress', undefined, [
152
152
  'indeterminate',
153
153
  'value',
154
- 'type'
154
+ 'type',
155
+ 'label'
155
156
  ]);
156
157
 
157
158
 
@@ -454,6 +455,14 @@ export const SdInput: StencilVueComponent<JSX.SdInput, JSX.SdInput["value"]> = /
454
455
  'value', 'sdUpdate', undefined);
455
456
 
456
457
 
458
+ export const SdLinearProgress: StencilVueComponent<JSX.SdLinearProgress> = /*@__PURE__*/ defineContainer<JSX.SdLinearProgress>('sd-linear-progress', undefined, [
459
+ 'indeterminate',
460
+ 'value',
461
+ 'type',
462
+ 'label'
463
+ ]);
464
+
465
+
457
466
  export const SdLoadingContainer: StencilVueComponent<JSX.SdLoadingContainer> = /*@__PURE__*/ defineContainer<JSX.SdLoadingContainer>('sd-loading-container', undefined);
458
467
 
459
468
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellmate/design-system-vue",
3
- "version": "1.0.71",
3
+ "version": "1.0.73",
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.71",
48
+ "@sellmate/design-system": "^1.0.73",
49
49
  "@stencil/vue-output-target": "^0.11.8"
50
50
  },
51
51
  "peerDependencies": {