@lax-wp/design-system 0.3.54 → 0.3.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.
- package/dist/components/forms/select-field/SelectField.d.ts +4 -0
- package/dist/index.es.js +2408 -2396
- package/dist/index.umd.js +31 -31
- package/package.json +1 -1
|
@@ -129,8 +129,12 @@ export interface SelectFieldProps extends Omit<SelectProps, 'onChange'> {
|
|
|
129
129
|
enablePopper: boolean;
|
|
130
130
|
userId: string;
|
|
131
131
|
}>;
|
|
132
|
+
/** Whether the required indicator shows as conditional (yellow instead of red) */
|
|
133
|
+
isRequiredConditional?: boolean;
|
|
132
134
|
/** Translation function */
|
|
133
135
|
t?: (key: string) => string;
|
|
136
|
+
/** Whether this is a live field */
|
|
137
|
+
isLiveField?: boolean;
|
|
134
138
|
}
|
|
135
139
|
/**
|
|
136
140
|
* SelectField component - A feature-rich select dropdown with multi-select, tags, search, and more
|