@validationcloud/fractal-ui 1.26.0 → 1.27.1

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.
@@ -1 +1 @@
1
- export declare const iconIds: readonly ["arrow-narrow", "arrow", "banknote", "bar-chart", "billing", "bracket", "check", "chevron-vertical", "chevron", "circle-fill", "circle-stroke", "clock", "close", "cog", "collapse", "copy", "documents", "download", "enter", "exclamation", "faucet", "fire", "filter", "help-center", "home", "info", "intercom", "link", "menu", "more", "minus", "node", "patch", "plus", "processing", "radio-empty", "radio-full", "resize", "search", "share", "sparkles", "step-indicator", "subgraphs", "sync-problem", "thumb", "wallet", "wallet-connected", "wallet-disconnected", "wrench"];
1
+ export declare const iconIds: readonly ["arrow-narrow", "arrow", "banknote", "bar-chart", "billing", "bracket", "check", "chevron-vertical", "chevron", "circle-fill", "circle-stroke", "clock", "close", "cog", "collapse", "copy", "documents", "download", "enter", "exclamation", "faucet", "fire", "filter", "help-center", "home", "info", "intercom", "link", "menu", "more", "minus", "node", "patch", "plus", "processing", "radio-empty", "radio-full", "resize", "search", "share", "sparkles", "step-indicator", "subgraphs", "sync-problem", "trash", "thumb", "wallet", "wallet-connected", "wallet-disconnected", "wrench"];
@@ -4,6 +4,7 @@ type TextInputProps = {
4
4
  disablePasswordManagers?: boolean;
5
5
  rightAccessory?: React.ReactNode;
6
6
  errorState?: boolean;
7
+ containerClassName?: string;
7
8
  } & React.InputHTMLAttributes<HTMLInputElement>;
8
- export declare const TextInput: ({ variant, disablePasswordManagers, rightAccessory, errorState, className, ...props }: TextInputProps) => import("react/jsx-runtime").JSX.Element;
9
+ export declare const TextInput: ({ variant, disablePasswordManagers, rightAccessory, errorState, className, containerClassName, ...props }: TextInputProps) => import("react/jsx-runtime").JSX.Element;
9
10
  export {};
@@ -1,10 +1,11 @@
1
1
  import { StoryObj } from '@storybook/react-vite';
2
2
  declare const meta: {
3
- component: ({ variant, disablePasswordManagers, rightAccessory, errorState, className, ...props }: {
3
+ component: ({ variant, disablePasswordManagers, rightAccessory, errorState, className, containerClassName, ...props }: {
4
4
  variant?: "outlined" | "filled";
5
5
  disablePasswordManagers?: boolean;
6
6
  rightAccessory?: React.ReactNode;
7
7
  errorState?: boolean;
8
+ containerClassName?: string;
8
9
  } & import('react').InputHTMLAttributes<HTMLInputElement>) => import("react/jsx-runtime").JSX.Element;
9
10
  args: {
10
11
  disabled: false;
@@ -22,3 +23,4 @@ export declare const ErrorState: Story;
22
23
  export declare const ErrorStateFilled: Story;
23
24
  export declare const Disabled: Story;
24
25
  export declare const DisabledFilled: Story;
26
+ export declare const WithContainerClassName: Story;