@superleapai/flow-ui 2.5.15 → 2.5.16
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/date-time-picker/date-time-picker.js +52 -23
- package/core/flow.js +24 -12
- 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 +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -261,7 +261,7 @@ declare module "@superleapai/flow-ui" {
|
|
|
261
261
|
export interface DateTimePickerConfig {
|
|
262
262
|
label: string;
|
|
263
263
|
fieldId: string;
|
|
264
|
-
value?: Date | string | null;
|
|
264
|
+
value?: Date | string | number | null;
|
|
265
265
|
placeholder?: string;
|
|
266
266
|
required?: boolean;
|
|
267
267
|
onChange?: (date: Date | undefined) => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superleapai/flow-ui",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.16",
|
|
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",
|