@superleapai/flow-ui 2.5.4 → 2.5.6
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/card-select.js +1 -1
- package/components/date-time-picker/date-time-picker.js +145 -13
- package/components/popover.js +31 -16
- package/components/select.js +9 -2
- package/components/time-picker.js +70 -17
- package/core/flow.js +9 -1
- package/dist/output.css +1 -1
- package/dist/superleap-flow.min.js +2 -2
- package/index.d.ts +6 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -251,6 +251,10 @@ declare module "@superleapai/flow-ui" {
|
|
|
251
251
|
onChange?: (value: string) => void;
|
|
252
252
|
disabled?: boolean;
|
|
253
253
|
use24Hour?: boolean;
|
|
254
|
+
/** 'default' | 'small' | 'large' */
|
|
255
|
+
size?: "default" | "small" | "large";
|
|
256
|
+
/** 'default' | 'error' | 'warning' | 'success' | 'borderless' | 'inline' */
|
|
257
|
+
variant?: "default" | "error" | "warning" | "success" | "borderless" | "inline";
|
|
254
258
|
helpText?: string;
|
|
255
259
|
}
|
|
256
260
|
|
|
@@ -265,6 +269,8 @@ declare module "@superleapai/flow-ui" {
|
|
|
265
269
|
hourCycle?: 12 | 24;
|
|
266
270
|
granularity?: "day" | "hour" | "minute" | "second";
|
|
267
271
|
size?: "small" | "default" | "large";
|
|
272
|
+
/** 'default' | 'error' | 'warning' | 'success' | 'borderless' | 'inline' */
|
|
273
|
+
variant?: "default" | "error" | "warning" | "success" | "borderless" | "inline";
|
|
268
274
|
fromDate?: Date;
|
|
269
275
|
toDate?: Date;
|
|
270
276
|
helpText?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superleapai/flow-ui",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.6",
|
|
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",
|