@sellmate/design-system-react 1.17.0 → 1.19.0
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 -0
- package/dist/components/components.js +2 -1
- package/dist/components/components.server.d.ts +1 -0
- package/dist/components/components.server.js +9 -3
- package/lib/components/components.server.ts +11 -4
- package/lib/components/components.ts +4 -2
- package/package.json +2 -2
|
@@ -108,6 +108,7 @@ export type SdChipInputEvents = {
|
|
|
108
108
|
onSdUpdate: EventName<SdChipInputCustomEvent<string[]>>;
|
|
109
109
|
onSdFocus: EventName<SdChipInputCustomEvent<void>>;
|
|
110
110
|
onSdBlur: EventName<SdChipInputCustomEvent<void>>;
|
|
111
|
+
onSdInput: EventName<SdChipInputCustomEvent<string>>;
|
|
111
112
|
};
|
|
112
113
|
export declare const SdChipInput: StencilReactComponent<SdChipInputElement, SdChipInputEvents, Components.SdChipInput>;
|
|
113
114
|
export type SdCircleProgressEvents = NonNullable<unknown>;
|
|
@@ -155,7 +155,8 @@ export const SdChipInput = /*@__PURE__*/ createComponent({
|
|
|
155
155
|
events: {
|
|
156
156
|
onSdUpdate: 'sdUpdate',
|
|
157
157
|
onSdFocus: 'sdFocus',
|
|
158
|
-
onSdBlur: 'sdBlur'
|
|
158
|
+
onSdBlur: 'sdBlur',
|
|
159
|
+
onSdInput: 'sdInput'
|
|
159
160
|
},
|
|
160
161
|
defineCustomElement: defineSdChipInput
|
|
161
162
|
});
|
|
@@ -110,6 +110,7 @@ export type SdChipInputEvents = {
|
|
|
110
110
|
onSdUpdate: EventName<SdChipInputCustomEvent<string[]>>;
|
|
111
111
|
onSdFocus: EventName<SdChipInputCustomEvent<void>>;
|
|
112
112
|
onSdBlur: EventName<SdChipInputCustomEvent<void>>;
|
|
113
|
+
onSdInput: EventName<SdChipInputCustomEvent<string>>;
|
|
113
114
|
};
|
|
114
115
|
export declare const SdChipInput: StencilReactComponent<SdChipInputElement, SdChipInputEvents, Components.SdChipInput>;
|
|
115
116
|
export type SdCircleProgressEvents = NonNullable<unknown>;
|
|
@@ -134,6 +134,10 @@ export const SdChipInput = /*@__PURE__*/ createComponent({
|
|
|
134
134
|
name: 'name',
|
|
135
135
|
error: 'error',
|
|
136
136
|
useReset: 'use-reset',
|
|
137
|
+
maxCount: 'max-count',
|
|
138
|
+
duplicateLabel: 'duplicate-label',
|
|
139
|
+
loadingSuggestions: 'loading-suggestions',
|
|
140
|
+
loadingRecommendedItems: 'loading-recommended-items',
|
|
137
141
|
label: 'label',
|
|
138
142
|
labelWidth: 'label-width',
|
|
139
143
|
hint: 'hint',
|
|
@@ -144,7 +148,9 @@ export const SdChipInput = /*@__PURE__*/ createComponent({
|
|
|
144
148
|
values: 'values',
|
|
145
149
|
errors: 'errors',
|
|
146
150
|
disabledChips: 'disabledChips',
|
|
147
|
-
rules: 'rules'
|
|
151
|
+
rules: 'rules',
|
|
152
|
+
suggestions: 'suggestions',
|
|
153
|
+
recommendedItems: 'recommendedItems'
|
|
148
154
|
},
|
|
149
155
|
hydrateModule: import('@sellmate/design-system/hydrate'),
|
|
150
156
|
clientModule: clientComponents.SdChipInput,
|
|
@@ -439,7 +445,7 @@ export const SdKeyValueTable = /*@__PURE__*/ createComponent({
|
|
|
439
445
|
tagName: 'sd-key-value-table',
|
|
440
446
|
properties: {
|
|
441
447
|
search: 'search',
|
|
442
|
-
|
|
448
|
+
radius: 'radius',
|
|
443
449
|
fields: 'fields'
|
|
444
450
|
},
|
|
445
451
|
hydrateModule: import('@sellmate/design-system/hydrate'),
|
|
@@ -716,7 +722,7 @@ export const SdTable = /*@__PURE__*/ createComponent({
|
|
|
716
722
|
width: 'width',
|
|
717
723
|
height: 'height',
|
|
718
724
|
stickyHeader: 'sticky-header',
|
|
719
|
-
|
|
725
|
+
radius: 'radius',
|
|
720
726
|
noDataLabel: 'no-data-label',
|
|
721
727
|
isLoading: 'is-loading',
|
|
722
728
|
useInternalPagination: 'use-internal-pagination',
|
|
@@ -239,7 +239,8 @@ export const SdChip: StencilReactComponent<SdChipElement, SdChipEvents, Componen
|
|
|
239
239
|
export type SdChipInputEvents = {
|
|
240
240
|
onSdUpdate: EventName<SdChipInputCustomEvent<string[]>>,
|
|
241
241
|
onSdFocus: EventName<SdChipInputCustomEvent<void>>,
|
|
242
|
-
onSdBlur: EventName<SdChipInputCustomEvent<void
|
|
242
|
+
onSdBlur: EventName<SdChipInputCustomEvent<void>>,
|
|
243
|
+
onSdInput: EventName<SdChipInputCustomEvent<string>>
|
|
243
244
|
};
|
|
244
245
|
|
|
245
246
|
export const SdChipInput: StencilReactComponent<SdChipInputElement, SdChipInputEvents, Components.SdChipInput> = /*@__PURE__*/ createComponent<SdChipInputElement, SdChipInputEvents, Components.SdChipInput>({
|
|
@@ -251,6 +252,10 @@ export const SdChipInput: StencilReactComponent<SdChipInputElement, SdChipInputE
|
|
|
251
252
|
name: 'name',
|
|
252
253
|
error: 'error',
|
|
253
254
|
useReset: 'use-reset',
|
|
255
|
+
maxCount: 'max-count',
|
|
256
|
+
duplicateLabel: 'duplicate-label',
|
|
257
|
+
loadingSuggestions: 'loading-suggestions',
|
|
258
|
+
loadingRecommendedItems: 'loading-recommended-items',
|
|
254
259
|
label: 'label',
|
|
255
260
|
labelWidth: 'label-width',
|
|
256
261
|
hint: 'hint',
|
|
@@ -261,7 +266,9 @@ export const SdChipInput: StencilReactComponent<SdChipInputElement, SdChipInputE
|
|
|
261
266
|
values: 'values',
|
|
262
267
|
errors: 'errors',
|
|
263
268
|
disabledChips: 'disabledChips',
|
|
264
|
-
rules: 'rules'
|
|
269
|
+
rules: 'rules',
|
|
270
|
+
suggestions: 'suggestions',
|
|
271
|
+
recommendedItems: 'recommendedItems'},
|
|
265
272
|
hydrateModule: import('@sellmate/design-system/hydrate') as Promise<HydrateModule>,
|
|
266
273
|
clientModule: clientComponents.SdChipInput as StencilReactComponent<SdChipInputElement, SdChipInputEvents, Components.SdChipInput>,
|
|
267
274
|
serializeShadowRoot
|
|
@@ -634,7 +641,7 @@ export const SdKeyValueTable: StencilReactComponent<SdKeyValueTableElement, SdKe
|
|
|
634
641
|
tagName: 'sd-key-value-table',
|
|
635
642
|
properties: {
|
|
636
643
|
search: 'search',
|
|
637
|
-
|
|
644
|
+
radius: 'radius',
|
|
638
645
|
fields: 'fields'},
|
|
639
646
|
hydrateModule: import('@sellmate/design-system/hydrate') as Promise<HydrateModule>,
|
|
640
647
|
clientModule: clientComponents.SdKeyValueTable as StencilReactComponent<SdKeyValueTableElement, SdKeyValueTableEvents, Components.SdKeyValueTable>,
|
|
@@ -981,7 +988,7 @@ export const SdTable: StencilReactComponent<SdTableElement, SdTableEvents, Compo
|
|
|
981
988
|
width: 'width',
|
|
982
989
|
height: 'height',
|
|
983
990
|
stickyHeader: 'sticky-header',
|
|
984
|
-
|
|
991
|
+
radius: 'radius',
|
|
985
992
|
noDataLabel: 'no-data-label',
|
|
986
993
|
isLoading: 'is-loading',
|
|
987
994
|
useInternalPagination: 'use-internal-pagination',
|
|
@@ -205,7 +205,8 @@ export const SdChip: StencilReactComponent<SdChipElement, SdChipEvents, Componen
|
|
|
205
205
|
export type SdChipInputEvents = {
|
|
206
206
|
onSdUpdate: EventName<SdChipInputCustomEvent<string[]>>,
|
|
207
207
|
onSdFocus: EventName<SdChipInputCustomEvent<void>>,
|
|
208
|
-
onSdBlur: EventName<SdChipInputCustomEvent<void
|
|
208
|
+
onSdBlur: EventName<SdChipInputCustomEvent<void>>,
|
|
209
|
+
onSdInput: EventName<SdChipInputCustomEvent<string>>
|
|
209
210
|
};
|
|
210
211
|
|
|
211
212
|
export const SdChipInput: StencilReactComponent<SdChipInputElement, SdChipInputEvents, Components.SdChipInput> = /*@__PURE__*/ createComponent<SdChipInputElement, SdChipInputEvents, Components.SdChipInput>({
|
|
@@ -216,7 +217,8 @@ export const SdChipInput: StencilReactComponent<SdChipInputElement, SdChipInputE
|
|
|
216
217
|
events: {
|
|
217
218
|
onSdUpdate: 'sdUpdate',
|
|
218
219
|
onSdFocus: 'sdFocus',
|
|
219
|
-
onSdBlur: 'sdBlur'
|
|
220
|
+
onSdBlur: 'sdBlur',
|
|
221
|
+
onSdInput: 'sdInput'
|
|
220
222
|
} as SdChipInputEvents,
|
|
221
223
|
defineCustomElement: defineSdChipInput
|
|
222
224
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sellmate/design-system-react",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.19.0",
|
|
4
4
|
"description": "Design System - React Component Wrappers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"typecheck": "tsc --noEmit"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@sellmate/design-system": "^1.
|
|
58
|
+
"@sellmate/design-system": "^1.19.0",
|
|
59
59
|
"@stencil/react-output-target": "^1.2.0"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|