formica-ui-lib 1.0.256 → 1.0.258
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/componentProps/molecules/searchcombobox/SearchComboboxProps.d.ts +2 -0
- package/dist/componentProps/templates/admin/marketreadiness/MarketReadinessTemplateProps.d.ts +2 -0
- package/dist/index.cjs +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +164 -139
- package/dist/tailwind.css +1 -1
- package/package.json +1 -1
|
@@ -17,6 +17,7 @@ export interface SearchComboboxSubmitPayload {
|
|
|
17
17
|
export interface SearchComboboxClearPayload {
|
|
18
18
|
value: string;
|
|
19
19
|
}
|
|
20
|
+
export type SearchComboboxValueStatus = "default" | "inactive";
|
|
20
21
|
export interface SearchComboboxProps {
|
|
21
22
|
id?: string;
|
|
22
23
|
name?: string;
|
|
@@ -30,6 +31,7 @@ export interface SearchComboboxProps {
|
|
|
30
31
|
readOnly?: boolean;
|
|
31
32
|
clearLabel?: string;
|
|
32
33
|
controlSize?: SearchBarControlSize;
|
|
34
|
+
valueStatus?: SearchComboboxValueStatus;
|
|
33
35
|
onQueryChange?: (payload: SearchComboboxQueryChangePayload) => void;
|
|
34
36
|
onOptionSelect?: (payload: SearchComboboxSelectPayload) => void;
|
|
35
37
|
onSearchSubmit?: (payload: SearchComboboxSubmitPayload) => void;
|
package/dist/componentProps/templates/admin/marketreadiness/MarketReadinessTemplateProps.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ export interface MarketReadinessVariantOptionsProps {
|
|
|
66
66
|
export interface MarketReadinessSkuListItem {
|
|
67
67
|
id: string;
|
|
68
68
|
sku: string;
|
|
69
|
+
isForSale: boolean;
|
|
69
70
|
partNumber?: string;
|
|
70
71
|
grade: string;
|
|
71
72
|
finish: string;
|
|
@@ -125,6 +126,7 @@ export interface MarketReadinessSkuEditor {
|
|
|
125
126
|
export interface MarketReadinessSampleListItem {
|
|
126
127
|
id: string;
|
|
127
128
|
sku: string;
|
|
129
|
+
isSampleable: boolean;
|
|
128
130
|
sourceIdentifier?: string;
|
|
129
131
|
finish: string;
|
|
130
132
|
size: string;
|