@sellmate/design-system-react 1.0.54 → 1.0.56

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.
@@ -9,10 +9,7 @@ import { createComponent } from '@stencil/react-output-target/ssr';
9
9
  export const serializeShadowRoot = { default: "declarative-shadow-dom" };
10
10
  export const SdActionModal = /*@__PURE__*/ createComponent({
11
11
  tagName: 'sd-action-modal',
12
- properties: {
13
- modalTitle: 'modal-title',
14
- buttonLabel: 'button-label'
15
- },
12
+ properties: { modalTitle: 'modal-title' },
16
13
  hydrateModule: import('@sellmate/design-system/hydrate'),
17
14
  clientModule: clientComponents.SdActionModal,
18
15
  serializeShadowRoot,
@@ -736,13 +733,25 @@ export const SdTextarea = /*@__PURE__*/ createComponent({
736
733
  tagName: 'sd-textarea',
737
734
  properties: {
738
735
  value: 'value',
739
- name: 'name',
736
+ placeholder: 'placeholder',
740
737
  disabled: 'disabled',
738
+ readonly: 'readonly',
741
739
  autoFocus: 'auto-focus',
742
740
  textareaClass: 'textarea-class',
743
- helpText: 'help-text',
744
741
  maxLength: 'max-length',
745
- placeholder: 'placeholder'
742
+ rows: 'rows',
743
+ spellcheck: 'spellcheck',
744
+ width: 'width',
745
+ label: 'label',
746
+ addonLabel: 'addon-label',
747
+ hint: 'hint',
748
+ errorMessage: 'error-message',
749
+ labelTooltip: 'label-tooltip',
750
+ error: 'error',
751
+ status: 'status',
752
+ focused: 'focused',
753
+ hovered: 'hovered',
754
+ rules: 'rules'
746
755
  },
747
756
  hydrateModule: import('@sellmate/design-system/hydrate'),
748
757
  clientModule: clientComponents.SdTextarea,
@@ -74,10 +74,7 @@ export type SdActionModalEvents = {
74
74
 
75
75
  export const SdActionModal: StencilReactComponent<SdActionModalElement, SdActionModalEvents> = /*@__PURE__*/ createComponent<SdActionModalElement, SdActionModalEvents>({
76
76
  tagName: 'sd-action-modal',
77
- properties: {
78
- modalTitle: 'modal-title',
79
- buttonLabel: 'button-label'
80
- },
77
+ properties: { modalTitle: 'modal-title' },
81
78
  hydrateModule: import('@sellmate/design-system/hydrate') as Promise<HydrateModule>,
82
79
  clientModule: clientComponents.SdActionModal as ReactWebComponent<SdActionModalElement, SdActionModalEvents>,
83
80
  serializeShadowRoot,
@@ -1025,13 +1022,25 @@ export const SdTextarea: StencilReactComponent<SdTextareaElement, SdTextareaEven
1025
1022
  tagName: 'sd-textarea',
1026
1023
  properties: {
1027
1024
  value: 'value',
1028
- name: 'name',
1025
+ placeholder: 'placeholder',
1029
1026
  disabled: 'disabled',
1027
+ readonly: 'readonly',
1030
1028
  autoFocus: 'auto-focus',
1031
1029
  textareaClass: 'textarea-class',
1032
- helpText: 'help-text',
1033
1030
  maxLength: 'max-length',
1034
- placeholder: 'placeholder'
1031
+ rows: 'rows',
1032
+ spellcheck: 'spellcheck',
1033
+ width: 'width',
1034
+ label: 'label',
1035
+ addonLabel: 'addon-label',
1036
+ hint: 'hint',
1037
+ errorMessage: 'error-message',
1038
+ labelTooltip: 'label-tooltip',
1039
+ error: 'error',
1040
+ status: 'status',
1041
+ focused: 'focused',
1042
+ hovered: 'hovered',
1043
+ rules: 'rules'
1035
1044
  },
1036
1045
  hydrateModule: import('@sellmate/design-system/hydrate') as Promise<HydrateModule>,
1037
1046
  clientModule: clientComponents.SdTextarea as ReactWebComponent<SdTextareaElement, SdTextareaEvents>,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellmate/design-system-react",
3
- "version": "1.0.54",
3
+ "version": "1.0.56",
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.54",
57
+ "@sellmate/design-system": "^1.0.56",
58
58
  "@stencil/react-output-target": "^1.2.0"
59
59
  },
60
60
  "peerDependencies": {