@superleapai/flow-ui 2.5.18 → 2.5.19
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/components/multiselect.js +70 -3
- package/components/select.js +87 -55
- package/core/flow.js +6 -2
- package/dist/superleap-flow.js +2229 -273
- package/dist/superleap-flow.js.map +1 -1
- package/dist/superleap-flow.min.js +2 -2
- package/index.d.ts +2 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -246,6 +246,7 @@ declare module "@superleapai/flow-ui" {
|
|
|
246
246
|
options: SelectOption[];
|
|
247
247
|
required?: boolean;
|
|
248
248
|
onChange?: (value: string) => void;
|
|
249
|
+
showSearch?: boolean;
|
|
249
250
|
disabled?: boolean;
|
|
250
251
|
helpText?: string;
|
|
251
252
|
}
|
|
@@ -301,6 +302,7 @@ declare module "@superleapai/flow-ui" {
|
|
|
301
302
|
options: SelectOption[];
|
|
302
303
|
required?: boolean;
|
|
303
304
|
onChange?: (values: string[]) => void;
|
|
305
|
+
showSearch?: boolean;
|
|
304
306
|
placeholder?: string;
|
|
305
307
|
helpText?: string;
|
|
306
308
|
variant?: "default" | "error" | "warning" | "borderless" | "inline";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superleapai/flow-ui",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.19",
|
|
4
4
|
"description": "A reusable design system for building multi-step forms with comprehensive UI components. Single file, clean globals, SDK included. Only FlowUI and SuperLeap exposed.",
|
|
5
5
|
"main": "dist/superleap-flow.min.js",
|
|
6
6
|
"types": "index.d.ts",
|