@sellmate/design-system-react 1.0.41 → 1.0.43
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.
- package/dist/components/components.d.ts +1 -1
- package/dist/components/components.js +1 -1
- package/dist/components/components.server.d.ts +1 -1
- package/dist/components/components.server.js +2 -2
- package/lib/components/components.server.ts +3 -3
- package/lib/components/components.ts +2 -2
- package/package.json +2 -2
|
@@ -87,7 +87,7 @@ export type SdCheckboxEvents = {
|
|
|
87
87
|
export declare const SdCheckbox: StencilReactComponent<SdCheckboxElement, SdCheckboxEvents>;
|
|
88
88
|
export type SdConfirmModalEvents = {
|
|
89
89
|
onSdClose: EventName<CustomEvent<void>>;
|
|
90
|
-
|
|
90
|
+
onSdOk: EventName<CustomEvent<void>>;
|
|
91
91
|
};
|
|
92
92
|
export declare const SdConfirmModal: StencilReactComponent<SdConfirmModalElement, SdConfirmModalEvents>;
|
|
93
93
|
export type SdDateBoxEvents = {
|
|
@@ -89,7 +89,7 @@ export type SdCheckboxEvents = {
|
|
|
89
89
|
export declare const SdCheckbox: StencilReactComponent<SdCheckboxElement, SdCheckboxEvents>;
|
|
90
90
|
export type SdConfirmModalEvents = {
|
|
91
91
|
onSdClose: EventName<CustomEvent<void>>;
|
|
92
|
-
|
|
92
|
+
onSdOk: EventName<CustomEvent<void>>;
|
|
93
93
|
};
|
|
94
94
|
export declare const SdConfirmModal: StencilReactComponent<SdConfirmModalElement, SdConfirmModalEvents>;
|
|
95
95
|
export type SdDateBoxEvents = {
|
|
@@ -407,7 +407,7 @@ export const SdRadioButtonGroup = /*@__PURE__*/ createComponent({
|
|
|
407
407
|
size: 'size',
|
|
408
408
|
disabled: 'disabled',
|
|
409
409
|
name: 'name',
|
|
410
|
-
|
|
410
|
+
options: 'options'
|
|
411
411
|
},
|
|
412
412
|
hydrateModule: import('@sellmate/design-system/hydrate'),
|
|
413
413
|
clientModule: clientComponents.SdRadioButtonGroup,
|
|
@@ -420,7 +420,7 @@ export const SdRadioGroup = /*@__PURE__*/ createComponent({
|
|
|
420
420
|
direction: 'direction',
|
|
421
421
|
disabled: 'disabled',
|
|
422
422
|
groupName: 'group-name',
|
|
423
|
-
|
|
423
|
+
options: 'options'
|
|
424
424
|
},
|
|
425
425
|
hydrateModule: import('@sellmate/design-system/hydrate'),
|
|
426
426
|
clientModule: clientComponents.SdRadioGroup,
|
|
@@ -195,7 +195,7 @@ export const SdCheckbox: StencilReactComponent<SdCheckboxElement, SdCheckboxEven
|
|
|
195
195
|
|
|
196
196
|
export type SdConfirmModalEvents = {
|
|
197
197
|
onSdClose: EventName<CustomEvent<void>>,
|
|
198
|
-
|
|
198
|
+
onSdOk: EventName<CustomEvent<void>>
|
|
199
199
|
};
|
|
200
200
|
|
|
201
201
|
export const SdConfirmModal: StencilReactComponent<SdConfirmModalElement, SdConfirmModalEvents> = /*@__PURE__*/ createComponent<SdConfirmModalElement, SdConfirmModalEvents>({
|
|
@@ -581,7 +581,7 @@ export const SdRadioButtonGroup: StencilReactComponent<SdRadioButtonGroupElement
|
|
|
581
581
|
size: 'size',
|
|
582
582
|
disabled: 'disabled',
|
|
583
583
|
name: 'name',
|
|
584
|
-
|
|
584
|
+
options: 'options'
|
|
585
585
|
},
|
|
586
586
|
hydrateModule: import('@sellmate/design-system/hydrate') as Promise<HydrateModule>,
|
|
587
587
|
clientModule: clientComponents.SdRadioButtonGroup as ReactWebComponent<SdRadioButtonGroupElement, SdRadioButtonGroupEvents>,
|
|
@@ -597,7 +597,7 @@ export const SdRadioGroup: StencilReactComponent<SdRadioGroupElement, SdRadioGro
|
|
|
597
597
|
direction: 'direction',
|
|
598
598
|
disabled: 'disabled',
|
|
599
599
|
groupName: 'group-name',
|
|
600
|
-
|
|
600
|
+
options: 'options'
|
|
601
601
|
},
|
|
602
602
|
hydrateModule: import('@sellmate/design-system/hydrate') as Promise<HydrateModule>,
|
|
603
603
|
clientModule: clientComponents.SdRadioGroup as ReactWebComponent<SdRadioGroupElement, SdRadioGroupEvents>,
|
|
@@ -156,7 +156,7 @@ export const SdCheckbox: StencilReactComponent<SdCheckboxElement, SdCheckboxEven
|
|
|
156
156
|
|
|
157
157
|
export type SdConfirmModalEvents = {
|
|
158
158
|
onSdClose: EventName<CustomEvent<void>>,
|
|
159
|
-
|
|
159
|
+
onSdOk: EventName<CustomEvent<void>>
|
|
160
160
|
};
|
|
161
161
|
|
|
162
162
|
export const SdConfirmModal: StencilReactComponent<SdConfirmModalElement, SdConfirmModalEvents> = /*@__PURE__*/ createComponent<SdConfirmModalElement, SdConfirmModalEvents>({
|
|
@@ -166,7 +166,7 @@ export const SdConfirmModal: StencilReactComponent<SdConfirmModalElement, SdConf
|
|
|
166
166
|
react: React,
|
|
167
167
|
events: {
|
|
168
168
|
onSdClose: 'sdClose',
|
|
169
|
-
|
|
169
|
+
onSdOk: 'sdOk'
|
|
170
170
|
} as SdConfirmModalEvents,
|
|
171
171
|
defineCustomElement: defineSdConfirmModal
|
|
172
172
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sellmate/design-system-react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.43",
|
|
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.
|
|
57
|
+
"@sellmate/design-system": "^1.0.43",
|
|
58
58
|
"@stencil/react-output-target": "^1.2.0"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|