@wix/headless-stores 0.0.61 → 0.0.64
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/cjs/dist/react/Choice.d.ts +36 -18
- package/cjs/dist/react/Choice.js +14 -63
- package/cjs/dist/react/Option.d.ts +30 -12
- package/cjs/dist/react/Option.js +5 -49
- package/cjs/dist/react/Product.d.ts +107 -0
- package/cjs/dist/react/Product.js +120 -2
- package/cjs/dist/react/core/Product.d.ts +40 -0
- package/cjs/dist/react/core/Product.js +33 -0
- package/cjs/dist/react/core/ProductListFilters.js +4 -0
- package/cjs/dist/services/products-list-service.js +25 -17
- package/dist/react/Choice.d.ts +36 -18
- package/dist/react/Choice.js +14 -63
- package/dist/react/Option.d.ts +30 -12
- package/dist/react/Option.js +5 -49
- package/dist/react/Product.d.ts +107 -0
- package/dist/react/Product.js +120 -2
- package/dist/react/core/Product.d.ts +40 -0
- package/dist/react/core/Product.js +33 -0
- package/dist/react/core/ProductListFilters.js +4 -0
- package/dist/services/products-list-service.js +25 -17
- package/package.json +5 -5
|
@@ -155,3 +155,36 @@ export function Slug(props) {
|
|
|
155
155
|
slug,
|
|
156
156
|
});
|
|
157
157
|
}
|
|
158
|
+
/**
|
|
159
|
+
* Headless component for product ribbon display
|
|
160
|
+
*
|
|
161
|
+
* @component
|
|
162
|
+
* @example
|
|
163
|
+
* ```tsx
|
|
164
|
+
* import { Product } from '@wix/stores/components';
|
|
165
|
+
*
|
|
166
|
+
* function ProductRibbonDisplay() {
|
|
167
|
+
* return (
|
|
168
|
+
* <Product.Ribbon>
|
|
169
|
+
* {({ ribbon, hasRibbon }) => (
|
|
170
|
+
* hasRibbon ? (
|
|
171
|
+
* <span className="ribbon-badge">
|
|
172
|
+
* {ribbon}
|
|
173
|
+
* </span>
|
|
174
|
+
* ) : null
|
|
175
|
+
* )}
|
|
176
|
+
* </Product.Ribbon>
|
|
177
|
+
* );
|
|
178
|
+
* }
|
|
179
|
+
* ```
|
|
180
|
+
*/
|
|
181
|
+
export function Ribbon(props) {
|
|
182
|
+
const service = useService(ProductServiceDefinition);
|
|
183
|
+
const product = service.product.get();
|
|
184
|
+
const ribbon = product.ribbon?.name || null;
|
|
185
|
+
const hasRibbon = !!ribbon;
|
|
186
|
+
return props.children({
|
|
187
|
+
ribbon,
|
|
188
|
+
hasRibbon,
|
|
189
|
+
});
|
|
190
|
+
}
|
|
@@ -52,6 +52,10 @@ function buildSearchFilterData(availableOptions, availableInventoryStatuses, ava
|
|
|
52
52
|
? name.toLowerCase()
|
|
53
53
|
: name;
|
|
54
54
|
},
|
|
55
|
+
valueBgColorFormatter: (value) => {
|
|
56
|
+
const choice = option.choices.find((c) => c.id === value);
|
|
57
|
+
return choice?.colorCode || null;
|
|
58
|
+
},
|
|
55
59
|
})),
|
|
56
60
|
// Inventory status - use actual search field name
|
|
57
61
|
{
|
|
@@ -323,15 +323,7 @@ export const ProductListService = implementService.withConfig()(ProductsListServ
|
|
|
323
323
|
}
|
|
324
324
|
try {
|
|
325
325
|
isLoadingSignal.set(true);
|
|
326
|
-
const
|
|
327
|
-
? {
|
|
328
|
-
cursorPaging: {
|
|
329
|
-
cursor: searchOptions.cursorPaging.cursor,
|
|
330
|
-
limit: searchOptions.cursorPaging.limit,
|
|
331
|
-
},
|
|
332
|
-
}
|
|
333
|
-
: searchOptions;
|
|
334
|
-
const result = await fetchProducts(affectiveSearchOptions);
|
|
326
|
+
const result = await fetchProducts(searchOptions);
|
|
335
327
|
productsSignal.set(result.products ?? []);
|
|
336
328
|
pagingMetadataSignal.set(result.pagingMetadata);
|
|
337
329
|
}
|
|
@@ -344,6 +336,29 @@ export const ProductListService = implementService.withConfig()(ProductsListServ
|
|
|
344
336
|
});
|
|
345
337
|
}
|
|
346
338
|
firstRun = false;
|
|
339
|
+
const loadMoreCursor = async (count) => {
|
|
340
|
+
const affectiveSearchOptions = {
|
|
341
|
+
cursorPaging: {
|
|
342
|
+
cursor: pagingMetadataSignal.get().cursors?.next,
|
|
343
|
+
limit: DEFAULT_QUERY_LIMIT || count,
|
|
344
|
+
},
|
|
345
|
+
};
|
|
346
|
+
try {
|
|
347
|
+
isLoadingSignal.set(true);
|
|
348
|
+
const result = await fetchProducts(affectiveSearchOptions);
|
|
349
|
+
productsSignal.set([
|
|
350
|
+
...productsSignal.get(),
|
|
351
|
+
...(result.products ?? []),
|
|
352
|
+
]);
|
|
353
|
+
pagingMetadataSignal.set(result.pagingMetadata);
|
|
354
|
+
}
|
|
355
|
+
catch (error) {
|
|
356
|
+
errorSignal.set(error instanceof Error ? error.message : 'Unknown error');
|
|
357
|
+
}
|
|
358
|
+
finally {
|
|
359
|
+
isLoadingSignal.set(false);
|
|
360
|
+
}
|
|
361
|
+
};
|
|
347
362
|
return {
|
|
348
363
|
products: productsSignal,
|
|
349
364
|
searchOptions: searchOptionsSignal,
|
|
@@ -391,14 +406,7 @@ export const ProductListService = implementService.withConfig()(ProductsListServ
|
|
|
391
406
|
isLoading: isLoadingSignal,
|
|
392
407
|
error: errorSignal,
|
|
393
408
|
loadMore: (count) => {
|
|
394
|
-
|
|
395
|
-
searchOptionsSignal.set({
|
|
396
|
-
...currentOptions,
|
|
397
|
-
cursorPaging: {
|
|
398
|
-
cursor: pagingMetadataSignal.get().cursors?.next,
|
|
399
|
-
limit: currentOptions.cursorPaging?.limit ?? 0 + count,
|
|
400
|
-
},
|
|
401
|
-
});
|
|
409
|
+
loadMoreCursor(count);
|
|
402
410
|
},
|
|
403
411
|
hasMoreProducts: signalsService.computed(() => pagingMetadataSignal.get().hasNext ?? false),
|
|
404
412
|
};
|
package/dist/react/Choice.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { AsChildChildren } from '@wix/headless-utils/react';
|
|
3
3
|
/**
|
|
4
4
|
* Choice data interface
|
|
5
5
|
*/
|
|
@@ -67,10 +67,16 @@ export declare const Root: React.ForwardRefExoticComponent<RootProps & React.Ref
|
|
|
67
67
|
/**
|
|
68
68
|
* Props for Choice Text component
|
|
69
69
|
*/
|
|
70
|
-
export interface TextProps
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
70
|
+
export interface TextProps {
|
|
71
|
+
/** Whether to render as a child component */
|
|
72
|
+
asChild?: boolean;
|
|
73
|
+
/** Custom render function when using asChild */
|
|
74
|
+
children?: AsChildChildren<{
|
|
75
|
+
id: string;
|
|
76
|
+
value: string;
|
|
77
|
+
}>;
|
|
78
|
+
/** CSS classes to apply to the default element */
|
|
79
|
+
className?: string;
|
|
74
80
|
}
|
|
75
81
|
/**
|
|
76
82
|
* Text-based choice button.
|
|
@@ -105,11 +111,17 @@ export declare const Text: React.ForwardRefExoticComponent<TextProps & React.Ref
|
|
|
105
111
|
/**
|
|
106
112
|
* Props for Choice Color component
|
|
107
113
|
*/
|
|
108
|
-
export interface ColorProps
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
114
|
+
export interface ColorProps {
|
|
115
|
+
/** Whether to render as a child component */
|
|
116
|
+
asChild?: boolean;
|
|
117
|
+
/** Custom render function when using asChild */
|
|
118
|
+
children?: AsChildChildren<{
|
|
119
|
+
colorCode: string;
|
|
120
|
+
name: string;
|
|
121
|
+
id: string;
|
|
122
|
+
}>;
|
|
123
|
+
/** CSS classes to apply to the default element */
|
|
124
|
+
className?: string;
|
|
113
125
|
}
|
|
114
126
|
/**
|
|
115
127
|
* Color swatch choice.
|
|
@@ -148,14 +160,20 @@ export declare const Color: React.ForwardRefExoticComponent<ColorProps & React.R
|
|
|
148
160
|
/**
|
|
149
161
|
* Props for Choice FreeText component
|
|
150
162
|
*/
|
|
151
|
-
export interface FreeTextProps extends
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
163
|
+
export interface FreeTextProps extends Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, 'children'> {
|
|
164
|
+
/** Whether to render as a child component */
|
|
165
|
+
asChild?: boolean;
|
|
166
|
+
/** Custom render function when using asChild */
|
|
167
|
+
children?: AsChildChildren<{
|
|
168
|
+
minCharCount?: number;
|
|
169
|
+
maxCharCount?: number;
|
|
170
|
+
defaultAddedPrice?: string | null;
|
|
171
|
+
title?: string;
|
|
172
|
+
value?: string;
|
|
173
|
+
onChange?: (e: React.ChangeEvent<HTMLTextAreaElement>) => void;
|
|
174
|
+
}>;
|
|
175
|
+
/** CSS classes to apply to the default element */
|
|
176
|
+
className?: string;
|
|
159
177
|
}
|
|
160
178
|
/**
|
|
161
179
|
* Provides a free text input for variant selection.
|
package/dist/react/Choice.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import { renderAsChild } from '../utils/index.js';
|
|
4
3
|
import { FreeText as FreeTextPrimitive } from './core/ProductModifiers.js';
|
|
4
|
+
import { AsChildSlot } from '@wix/headless-utils/react';
|
|
5
5
|
var TestIds;
|
|
6
6
|
(function (TestIds) {
|
|
7
7
|
TestIds["choiceRoot"] = "choice-root";
|
|
@@ -91,24 +91,7 @@ export const Text = React.forwardRef((props, ref) => {
|
|
|
91
91
|
if (!isVisible)
|
|
92
92
|
return null;
|
|
93
93
|
const choiceId = choice?.choiceId || '';
|
|
94
|
-
|
|
95
|
-
'data-testid': TestIds.choiceText,
|
|
96
|
-
'data-selected': isSelected ? 'true' : 'false',
|
|
97
|
-
disabled: !isInStock && !isPreOrderEnabled,
|
|
98
|
-
onClick: select,
|
|
99
|
-
};
|
|
100
|
-
if (asChild) {
|
|
101
|
-
const rendered = renderAsChild({
|
|
102
|
-
children,
|
|
103
|
-
props: { id: choiceId, value },
|
|
104
|
-
ref,
|
|
105
|
-
content: value,
|
|
106
|
-
attributes,
|
|
107
|
-
});
|
|
108
|
-
if (rendered)
|
|
109
|
-
return rendered;
|
|
110
|
-
}
|
|
111
|
-
return (_jsx("button", { className: className, ...attributes, ref: ref, children: value }));
|
|
94
|
+
return (_jsx(AsChildSlot, { ref: ref, asChild: asChild, className: className, "data-testid": TestIds.choiceText, "data-selected": isSelected ? 'true' : 'false', disabled: !isInStock && !isPreOrderEnabled, onClick: select, customElement: children, customElementProps: { id: choiceId, value }, content: value, children: _jsx("button", { children: value }) }));
|
|
112
95
|
});
|
|
113
96
|
/**
|
|
114
97
|
* Color swatch choice.
|
|
@@ -157,28 +140,11 @@ export const Color = React.forwardRef((props, ref) => {
|
|
|
157
140
|
if (!isVisible)
|
|
158
141
|
return null;
|
|
159
142
|
const { colorCode, choiceId } = choice;
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
};
|
|
166
|
-
if (asChild) {
|
|
167
|
-
const rendered = renderAsChild({
|
|
168
|
-
children,
|
|
169
|
-
props: {
|
|
170
|
-
colorCode: colorCode || '',
|
|
171
|
-
name: value,
|
|
172
|
-
id: choiceId || '',
|
|
173
|
-
},
|
|
174
|
-
ref,
|
|
175
|
-
content: null,
|
|
176
|
-
attributes,
|
|
177
|
-
});
|
|
178
|
-
if (rendered)
|
|
179
|
-
return rendered;
|
|
180
|
-
}
|
|
181
|
-
return (_jsx("button", { className: className, ...attributes, ref: ref, style: { backgroundColor: colorCode }, title: value }));
|
|
143
|
+
return (_jsx(AsChildSlot, { ref: ref, asChild: asChild, className: className, "data-testid": TestIds.choiceColor, "data-selected": isSelected ? 'true' : 'false', disabled: !isInStock && !isPreOrderEnabled, onClick: select, customElement: children, customElementProps: {
|
|
144
|
+
colorCode: colorCode || '',
|
|
145
|
+
name: value,
|
|
146
|
+
id: choiceId || '',
|
|
147
|
+
}, children: _jsx("button", { style: { backgroundColor: colorCode }, title: value }) }));
|
|
182
148
|
});
|
|
183
149
|
/**
|
|
184
150
|
* Provides a free text input for variant selection.
|
|
@@ -226,10 +192,6 @@ export const FreeText = React.forwardRef((props, ref) => {
|
|
|
226
192
|
// Don't render if not visible (handled by ProductVariantSelector in Root)
|
|
227
193
|
if (!isVisible)
|
|
228
194
|
return null;
|
|
229
|
-
const attributes = {
|
|
230
|
-
'data-testid': TestIds.choiceFreetext,
|
|
231
|
-
'data-selected': isSelected ? 'true' : 'false',
|
|
232
|
-
};
|
|
233
195
|
return (_jsx(FreeTextPrimitive, { modifier: choice, children: ({ value, setText, placeholder, maxChars }) => {
|
|
234
196
|
const handleChange = (e) => {
|
|
235
197
|
setText(e.target.value);
|
|
@@ -237,23 +199,12 @@ export const FreeText = React.forwardRef((props, ref) => {
|
|
|
237
199
|
onValueChange(e.target.value);
|
|
238
200
|
}
|
|
239
201
|
};
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
title: choice?.name || undefined,
|
|
248
|
-
onChange: handleChange,
|
|
249
|
-
},
|
|
250
|
-
ref,
|
|
251
|
-
content: null,
|
|
252
|
-
attributes,
|
|
253
|
-
});
|
|
254
|
-
if (rendered)
|
|
255
|
-
return rendered;
|
|
256
|
-
}
|
|
257
|
-
return (_jsx("textarea", { ref: ref, className: className, placeholder: placeholder, rows: 3, value: value, maxLength: maxChars, ...attributes, onChange: handleChange }));
|
|
202
|
+
return (_jsx(AsChildSlot, { ref: ref, asChild: asChild, className: className, "data-testid": TestIds.choiceFreetext, "data-selected": isSelected ? 'true' : 'false', customElement: children, customElementProps: {
|
|
203
|
+
minCharCount: choice?.minCharCount,
|
|
204
|
+
maxCharCount: choice?.maxCharCount,
|
|
205
|
+
defaultAddedPrice: choice?.addedPrice || undefined,
|
|
206
|
+
title: choice?.name || undefined,
|
|
207
|
+
onChange: handleChange,
|
|
208
|
+
}, children: _jsx("textarea", { placeholder: placeholder, rows: 3, value: value, maxLength: maxChars, onChange: handleChange }) }));
|
|
258
209
|
} }));
|
|
259
210
|
});
|
package/dist/react/Option.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import { AsChildChildren } from '@wix/headless-utils/react';
|
|
3
3
|
export interface Option {
|
|
4
4
|
name: string;
|
|
5
5
|
choices?: any[];
|
|
@@ -10,11 +10,17 @@ export interface Option {
|
|
|
10
10
|
/**
|
|
11
11
|
* Root props with asChild support
|
|
12
12
|
*/
|
|
13
|
-
export interface RootProps
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
export interface RootProps {
|
|
14
|
+
/** Whether to render as a child component */
|
|
15
|
+
asChild?: boolean;
|
|
16
|
+
/** Custom render function when using asChild */
|
|
17
|
+
children?: AsChildChildren<{
|
|
18
|
+
option: Option;
|
|
19
|
+
onValueChange?: (value: string) => void;
|
|
20
|
+
allowedTypes?: ('color' | 'text' | 'free-text')[];
|
|
21
|
+
}>;
|
|
22
|
+
/** CSS classes to apply to the default element */
|
|
23
|
+
className?: string;
|
|
18
24
|
option: Option;
|
|
19
25
|
onValueChange?: (value: string) => void;
|
|
20
26
|
allowedTypes?: ('color' | 'text' | 'free-text')[];
|
|
@@ -105,9 +111,15 @@ export declare const OptionContext: React.Context<any>;
|
|
|
105
111
|
/**
|
|
106
112
|
* Props for Option Name component
|
|
107
113
|
*/
|
|
108
|
-
export interface NameProps
|
|
109
|
-
|
|
110
|
-
|
|
114
|
+
export interface NameProps {
|
|
115
|
+
/** Whether to render as a child component */
|
|
116
|
+
asChild?: boolean;
|
|
117
|
+
/** Custom render function when using asChild */
|
|
118
|
+
children?: AsChildChildren<{
|
|
119
|
+
name: string;
|
|
120
|
+
}>;
|
|
121
|
+
/** CSS classes to apply to the default element */
|
|
122
|
+
className?: string;
|
|
111
123
|
}
|
|
112
124
|
/**
|
|
113
125
|
* Displays the option name.
|
|
@@ -136,9 +148,15 @@ export declare const Name: React.ForwardRefExoticComponent<NameProps & React.Ref
|
|
|
136
148
|
/**
|
|
137
149
|
* Props for Option MandatoryIndicator component
|
|
138
150
|
*/
|
|
139
|
-
export interface MandatoryIndicatorProps
|
|
140
|
-
|
|
141
|
-
|
|
151
|
+
export interface MandatoryIndicatorProps {
|
|
152
|
+
/** Whether to render as a child component */
|
|
153
|
+
asChild?: boolean;
|
|
154
|
+
/** Custom render function when using asChild */
|
|
155
|
+
children?: AsChildChildren<{
|
|
156
|
+
mandatory: boolean;
|
|
157
|
+
}>;
|
|
158
|
+
/** CSS classes to apply to the default element */
|
|
159
|
+
className?: string;
|
|
142
160
|
}
|
|
143
161
|
/**
|
|
144
162
|
* Displays the mandatory indicator (asterisk) when the option is required.
|
package/dist/react/Option.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import { renderAsChild } from '../utils/index.js';
|
|
4
3
|
import * as Choice from './Choice.js';
|
|
5
4
|
import * as ProductModifiersPrimitive from './core/ProductModifiers.js';
|
|
6
5
|
import * as ProductVariantSelectorPrimitive from './core/ProductVariantSelector.js';
|
|
6
|
+
import { AsChildSlot } from '@wix/headless-utils/react';
|
|
7
7
|
var TestIds;
|
|
8
8
|
(function (TestIds) {
|
|
9
9
|
TestIds["optionRoot"] = "option-root";
|
|
@@ -93,7 +93,7 @@ var TestIds;
|
|
|
93
93
|
* ```
|
|
94
94
|
*/
|
|
95
95
|
export const Root = React.forwardRef((props, ref) => {
|
|
96
|
-
const { asChild, children, option, onValueChange, allowedTypes } = props;
|
|
96
|
+
const { asChild, children, option, onValueChange, allowedTypes, className } = props;
|
|
97
97
|
// Determine the option type based on the option name and available choices
|
|
98
98
|
const getOptionType = () => {
|
|
99
99
|
if (option.type === 'FREE_TEXT') {
|
|
@@ -113,23 +113,7 @@ export const Root = React.forwardRef((props, ref) => {
|
|
|
113
113
|
allowedTypes,
|
|
114
114
|
mandatory: option?.mandatory || false,
|
|
115
115
|
};
|
|
116
|
-
|
|
117
|
-
'data-testid': TestIds.optionRoot,
|
|
118
|
-
'data-type': optionType,
|
|
119
|
-
};
|
|
120
|
-
const content = (_jsx(OptionContext.Provider, { value: contextValue, children: typeof children === 'function' ? null : children }));
|
|
121
|
-
if (asChild) {
|
|
122
|
-
const rendered = renderAsChild({
|
|
123
|
-
children,
|
|
124
|
-
props: { option, onValueChange, allowedTypes },
|
|
125
|
-
ref,
|
|
126
|
-
content,
|
|
127
|
-
attributes,
|
|
128
|
-
});
|
|
129
|
-
if (rendered)
|
|
130
|
-
return rendered;
|
|
131
|
-
}
|
|
132
|
-
return (_jsx("div", { ...attributes, ref: ref, children: content }));
|
|
116
|
+
return (_jsx(OptionContext.Provider, { value: contextValue, children: _jsx(AsChildSlot, { ref: ref, asChild: asChild, className: className, "data-testid": TestIds.optionRoot, "data-type": optionType, customElement: children, customElementProps: { option, onValueChange, allowedTypes }, children: _jsx("div", { children: React.isValidElement(children) ? children : null }) }) }));
|
|
133
117
|
});
|
|
134
118
|
// Create a context to pass option data down
|
|
135
119
|
export const OptionContext = React.createContext(null);
|
|
@@ -162,21 +146,7 @@ export const Name = React.forwardRef((props, ref) => {
|
|
|
162
146
|
if (!optionData)
|
|
163
147
|
return null;
|
|
164
148
|
const name = optionData.name || '';
|
|
165
|
-
|
|
166
|
-
'data-testid': TestIds.optionName,
|
|
167
|
-
};
|
|
168
|
-
if (asChild) {
|
|
169
|
-
const rendered = renderAsChild({
|
|
170
|
-
children,
|
|
171
|
-
props: { name },
|
|
172
|
-
ref,
|
|
173
|
-
content: name,
|
|
174
|
-
attributes,
|
|
175
|
-
});
|
|
176
|
-
if (rendered)
|
|
177
|
-
return rendered;
|
|
178
|
-
}
|
|
179
|
-
return (_jsx("div", { className: className, ...attributes, ref: ref, children: name }));
|
|
149
|
+
return (_jsx(AsChildSlot, { ref: ref, asChild: asChild, className: className, "data-testid": TestIds.optionName, customElement: children, customElementProps: { name }, content: name, children: _jsx("div", { children: name }) }));
|
|
180
150
|
});
|
|
181
151
|
/**
|
|
182
152
|
* Displays the mandatory indicator (asterisk) when the option is required.
|
|
@@ -205,21 +175,7 @@ export const MandatoryIndicator = React.forwardRef((props, ref) => {
|
|
|
205
175
|
// Don't render anything if not mandatory
|
|
206
176
|
if (!mandatory)
|
|
207
177
|
return null;
|
|
208
|
-
|
|
209
|
-
'data-testid': TestIds.optionMandatoryIndicator,
|
|
210
|
-
};
|
|
211
|
-
if (asChild) {
|
|
212
|
-
const rendered = renderAsChild({
|
|
213
|
-
children,
|
|
214
|
-
props: { mandatory },
|
|
215
|
-
ref,
|
|
216
|
-
content: '*',
|
|
217
|
-
attributes,
|
|
218
|
-
});
|
|
219
|
-
if (rendered)
|
|
220
|
-
return rendered;
|
|
221
|
-
}
|
|
222
|
-
return (_jsx("span", { className: className, ...attributes, ref: ref, children: "*" }));
|
|
178
|
+
return (_jsx(AsChildSlot, { ref: ref, asChild: asChild, className: className, "data-testid": TestIds.optionMandatoryIndicator, customElement: children, customElementProps: { mandatory }, content: '*', children: _jsx("span", { children: "*" }) }));
|
|
223
179
|
});
|
|
224
180
|
/**
|
|
225
181
|
* Container for the list items with empty state support.
|
package/dist/react/Product.d.ts
CHANGED
|
@@ -282,6 +282,113 @@ export interface RawProps {
|
|
|
282
282
|
* ```
|
|
283
283
|
*/
|
|
284
284
|
export declare const Raw: React.ForwardRefExoticComponent<RawProps & React.RefAttributes<HTMLElement>>;
|
|
285
|
+
/**
|
|
286
|
+
* Props for Product Ribbon component
|
|
287
|
+
*/
|
|
288
|
+
export interface RibbonProps {
|
|
289
|
+
/** Whether to render as a child component */
|
|
290
|
+
asChild?: boolean;
|
|
291
|
+
/** Custom render function when using asChild */
|
|
292
|
+
children?: AsChildChildren<{
|
|
293
|
+
ribbon: string | null;
|
|
294
|
+
}>;
|
|
295
|
+
/** CSS classes to apply to the default element */
|
|
296
|
+
className?: string;
|
|
297
|
+
}
|
|
298
|
+
/**
|
|
299
|
+
* Displays the product ribbon with customizable rendering following the documented API.
|
|
300
|
+
*
|
|
301
|
+
* @component
|
|
302
|
+
* @example
|
|
303
|
+
* ```tsx
|
|
304
|
+
* // Default usage
|
|
305
|
+
* <Product.Ribbon className="absolute top-2 left-2 bg-red-500 text-white px-2 py-1 text-xs rounded" />
|
|
306
|
+
*
|
|
307
|
+
* // asChild with primitive
|
|
308
|
+
* <Product.Ribbon asChild>
|
|
309
|
+
* <span className="ribbon-badge" />
|
|
310
|
+
* </Product.Ribbon>
|
|
311
|
+
*
|
|
312
|
+
* // asChild with react component
|
|
313
|
+
* <Product.Ribbon asChild>
|
|
314
|
+
* {React.forwardRef(({ribbon, ...props}, ref) => (
|
|
315
|
+
* <div ref={ref} {...props} className="ribbon-badge">
|
|
316
|
+
* {ribbon}
|
|
317
|
+
* </div>
|
|
318
|
+
* ))}
|
|
319
|
+
* </Product.Ribbon>
|
|
320
|
+
* ```
|
|
321
|
+
*/
|
|
322
|
+
export declare const Ribbon: React.ForwardRefExoticComponent<RibbonProps & React.RefAttributes<HTMLElement>>;
|
|
323
|
+
/**
|
|
324
|
+
* Props for Product Stock component
|
|
325
|
+
*/
|
|
326
|
+
export interface StockProps {
|
|
327
|
+
/** Whether to render as a child component */
|
|
328
|
+
asChild?: boolean;
|
|
329
|
+
/** Custom render function when using asChild */
|
|
330
|
+
children?: AsChildChildren<{
|
|
331
|
+
status: 'in-stock' | 'limited-stock' | 'out-of-stock';
|
|
332
|
+
label: string;
|
|
333
|
+
}>;
|
|
334
|
+
/** CSS classes to apply to the default element */
|
|
335
|
+
className?: string;
|
|
336
|
+
/** Custom labels for different stock states */
|
|
337
|
+
labels?: {
|
|
338
|
+
/** Label for in stock state */
|
|
339
|
+
inStock?: string;
|
|
340
|
+
/** Label for limited stock state (when quantity is low) */
|
|
341
|
+
limitedStock?: string;
|
|
342
|
+
/** Label for out of stock state */
|
|
343
|
+
outOfStock?: string;
|
|
344
|
+
};
|
|
345
|
+
}
|
|
346
|
+
/**
|
|
347
|
+
* Displays the product stock status with customizable rendering and labels following the documented API.
|
|
348
|
+
*
|
|
349
|
+
* @component
|
|
350
|
+
* @example
|
|
351
|
+
* ```tsx
|
|
352
|
+
* // Default usage
|
|
353
|
+
* <Product.Stock
|
|
354
|
+
* className="stock-indicator"
|
|
355
|
+
* labels={{
|
|
356
|
+
* inStock: 'In Stock',
|
|
357
|
+
* limitedStock: 'Limited Stock',
|
|
358
|
+
* outOfStock: 'Out of Stock'
|
|
359
|
+
* }}
|
|
360
|
+
* />
|
|
361
|
+
*
|
|
362
|
+
* // asChild with primitive
|
|
363
|
+
* <Product.Stock asChild>
|
|
364
|
+
* <div className="stock-status" />
|
|
365
|
+
* </Product.Stock>
|
|
366
|
+
*
|
|
367
|
+
* // asChild with react component
|
|
368
|
+
* <Product.Stock
|
|
369
|
+
* labels={{
|
|
370
|
+
* inStock: 'Available',
|
|
371
|
+
* limitedStock: 'Low Stock',
|
|
372
|
+
* outOfStock: 'Sold Out'
|
|
373
|
+
* }}
|
|
374
|
+
* asChild
|
|
375
|
+
* >
|
|
376
|
+
* {React.forwardRef(({status, label, ...props}, ref) => (
|
|
377
|
+
* <div
|
|
378
|
+
* ref={ref}
|
|
379
|
+
* {...props}
|
|
380
|
+
* className="flex items-center gap-1 data-[state='in-stock']:text-green-600 data-[state='limited-stock']:text-yellow-600 data-[state='out-of-stock']:text-red-600"
|
|
381
|
+
* >
|
|
382
|
+
* <div className="w-2 h-2 rounded-full data-[state='in-stock']:bg-green-500 data-[state='limited-stock']:bg-yellow-500 data-[state='out-of-stock']:bg-red-500" />
|
|
383
|
+
* <span className="text-xs font-medium">
|
|
384
|
+
* {label}
|
|
385
|
+
* </span>
|
|
386
|
+
* </div>
|
|
387
|
+
* ))}
|
|
388
|
+
* </Product.Stock>
|
|
389
|
+
* ```
|
|
390
|
+
*/
|
|
391
|
+
export declare const Stock: React.ForwardRefExoticComponent<StockProps & React.RefAttributes<HTMLElement>>;
|
|
285
392
|
/**
|
|
286
393
|
* Props for Product Variants container
|
|
287
394
|
*/
|