@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/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.4",
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",