@sellmate/design-system-vue 1.0.47 → 1.0.49

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.
@@ -3,7 +3,7 @@
3
3
  /* auto-generated vue proxies */
4
4
  import { defineContainer } from '@stencil/vue-output-target/runtime';
5
5
  export const SdActionModal = /*@__PURE__*/ defineContainer('sd-action-modal', undefined, [
6
- 'title',
6
+ 'modalTitle',
7
7
  'buttonLabel',
8
8
  'sdClose',
9
9
  'sdOk'
@@ -270,6 +270,7 @@ export const SdLoadingSpinner = /*@__PURE__*/ defineContainer('sd-loading-spinne
270
270
  ]);
271
271
  export const SdModalContainer = /*@__PURE__*/ defineContainer('sd-modal-container', undefined);
272
272
  export const SdNumberInput = /*@__PURE__*/ defineContainer('sd-number-input', undefined, [
273
+ 'size',
273
274
  'min',
274
275
  'max',
275
276
  'step',
@@ -286,6 +287,8 @@ export const SdNumberInput = /*@__PURE__*/ defineContainer('sd-number-input', un
286
287
  'status',
287
288
  'hint',
288
289
  'errorMessage',
290
+ 'inputPrefix',
291
+ 'inputSuffix',
289
292
  'inputClass',
290
293
  'readonly',
291
294
  'inputStyle',
package/lib/components.ts CHANGED
@@ -9,7 +9,7 @@ import type { JSX } from '@sellmate/design-system';
9
9
 
10
10
 
11
11
  export const SdActionModal: StencilVueComponent<JSX.SdActionModal> = /*@__PURE__*/ defineContainer<JSX.SdActionModal>('sd-action-modal', undefined, [
12
- 'title',
12
+ 'modalTitle',
13
13
  'buttonLabel',
14
14
  'sdClose',
15
15
  'sdOk'
@@ -326,6 +326,7 @@ export const SdModalContainer: StencilVueComponent<JSX.SdModalContainer> = /*@__
326
326
 
327
327
 
328
328
  export const SdNumberInput: StencilVueComponent<JSX.SdNumberInput, JSX.SdNumberInput["value"]> = /*@__PURE__*/ defineContainer<JSX.SdNumberInput, JSX.SdNumberInput["value"]>('sd-number-input', undefined, [
329
+ 'size',
329
330
  'min',
330
331
  'max',
331
332
  'step',
@@ -342,6 +343,8 @@ export const SdNumberInput: StencilVueComponent<JSX.SdNumberInput, JSX.SdNumberI
342
343
  'status',
343
344
  'hint',
344
345
  'errorMessage',
346
+ 'inputPrefix',
347
+ 'inputSuffix',
345
348
  'inputClass',
346
349
  'readonly',
347
350
  'inputStyle',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellmate/design-system-vue",
3
- "version": "1.0.47",
3
+ "version": "1.0.49",
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.47",
48
+ "@sellmate/design-system": "^1.0.49",
49
49
  "@stencil/vue-output-target": "^0.11.8"
50
50
  },
51
51
  "peerDependencies": {