@sellmate/design-system-react 1.0.47 → 1.0.48

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.
@@ -10,7 +10,7 @@ export const serializeShadowRoot = { default: "declarative-shadow-dom" };
10
10
  export const SdActionModal = /*@__PURE__*/ createComponent({
11
11
  tagName: 'sd-action-modal',
12
12
  properties: {
13
- title: 'title',
13
+ modalTitle: 'modal-title',
14
14
  buttonLabel: 'button-label'
15
15
  },
16
16
  hydrateModule: import('@sellmate/design-system/hydrate'),
@@ -314,6 +314,7 @@ export const SdModalContainer = /*@__PURE__*/ createComponent({
314
314
  export const SdNumberInput = /*@__PURE__*/ createComponent({
315
315
  tagName: 'sd-number-input',
316
316
  properties: {
317
+ size: 'size',
317
318
  min: 'min',
318
319
  max: 'max',
319
320
  step: 'step',
@@ -329,6 +330,8 @@ export const SdNumberInput = /*@__PURE__*/ createComponent({
329
330
  status: 'status',
330
331
  hint: 'hint',
331
332
  errorMessage: 'error-message',
333
+ inputPrefix: 'input-prefix',
334
+ inputSuffix: 'input-suffix',
332
335
  inputClass: 'input-class',
333
336
  readonly: 'readonly',
334
337
  error: 'error',
@@ -74,7 +74,7 @@ export type SdActionModalEvents = {
74
74
  export const SdActionModal: StencilReactComponent<SdActionModalElement, SdActionModalEvents> = /*@__PURE__*/ createComponent<SdActionModalElement, SdActionModalEvents>({
75
75
  tagName: 'sd-action-modal',
76
76
  properties: {
77
- title: 'title',
77
+ modalTitle: 'modal-title',
78
78
  buttonLabel: 'button-label'
79
79
  },
80
80
  hydrateModule: import('@sellmate/design-system/hydrate') as Promise<HydrateModule>,
@@ -478,6 +478,7 @@ export type SdNumberInputEvents = {
478
478
  export const SdNumberInput: StencilReactComponent<SdNumberInputElement, SdNumberInputEvents> = /*@__PURE__*/ createComponent<SdNumberInputElement, SdNumberInputEvents>({
479
479
  tagName: 'sd-number-input',
480
480
  properties: {
481
+ size: 'size',
481
482
  min: 'min',
482
483
  max: 'max',
483
484
  step: 'step',
@@ -493,6 +494,8 @@ export const SdNumberInput: StencilReactComponent<SdNumberInputElement, SdNumber
493
494
  status: 'status',
494
495
  hint: 'hint',
495
496
  errorMessage: 'error-message',
497
+ inputPrefix: 'input-prefix',
498
+ inputSuffix: 'input-suffix',
496
499
  inputClass: 'input-class',
497
500
  readonly: 'readonly',
498
501
  error: 'error',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellmate/design-system-react",
3
- "version": "1.0.47",
3
+ "version": "1.0.48",
4
4
  "description": "Design System - React Component Wrappers",
5
5
  "keywords": [
6
6
  "react",
@@ -54,7 +54,7 @@
54
54
  "dev": "tsc --watch"
55
55
  },
56
56
  "dependencies": {
57
- "@sellmate/design-system": "^1.0.47",
57
+ "@sellmate/design-system": "^1.0.48",
58
58
  "@stencil/react-output-target": "^1.2.0"
59
59
  },
60
60
  "peerDependencies": {