@vritti/quantum-ui 0.1.18 → 0.1.20

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.
@@ -25,6 +25,8 @@ export declare const OnboardingProvider: default_2.FC<OnboardingProviderProps>;
25
25
 
26
26
  declare interface OnboardingProviderProps {
27
27
  children: default_2.ReactNode;
28
+ onboardingToken?: string;
29
+ onUnauthorized?: () => void;
28
30
  }
29
31
 
30
32
  export declare const useOnboarding: () => OnboardingContextType;
package/dist/Form.d.ts CHANGED
@@ -105,7 +105,7 @@ export declare function FieldGroup({ className, ...props }: React.ComponentProps
105
105
  <div
106
106
  data-slot="field-group"
107
107
  className={cn(
108
- "group/field-group @container/field-group flex w-full flex-col gap-4 data-[slot=checkbox-group]:gap-3 [&>[data-slot=field-group]]:gap-4",
108
+ "group/field-group @container/field-group flex w-full flex-col gap-2 data-[slot=checkbox-group]:gap-1 [&>[data-slot=field-group]]:gap-2",
109
109
  className
110
110
  )}
111
111
  {...props}
package/dist/Form.js CHANGED
@@ -1,8 +1,8 @@
1
1
  import { jsx, jsxs } from 'react/jsx-runtime';
2
2
  import React__default from 'react';
3
- import { C as Checkbox } from './Checkbox.js';
4
3
  import { c as FieldError } from './field.js';
5
4
  import { c as cn } from './utils.js';
5
+ import { C as Checkbox } from './Checkbox.js';
6
6
 
7
7
  var isCheckBoxInput = (element) => element.type === 'checkbox';
8
8