@validationcloud/fractal-ui 1.11.0 → 1.13.0
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", "billing", "bracket", "check", "chevron-vertical", "chevron", "circle-fill", "circle-stroke", "clock", "close", "cog", "collapse", "copy", "documents", "enter", "exclamation", "faucet", "filter", "help-center", "home", "info", "intercom", "link", "more", "minus", "node", "patch", "plus", "processing", "radio-empty", "radio-full", "resize", "search", "step-indicator", "subgraphs", "sync-problem", "thumb", "wallet", "wallet-connected", "wallet-disconnected", "wrench"];
|
|
1
|
+
export declare const iconIds: readonly ["arrow-narrow", "arrow", "banknote", "billing", "bracket", "check", "chevron-vertical", "chevron", "circle-fill", "circle-stroke", "clock", "close", "cog", "collapse", "copy", "documents", "enter", "exclamation", "faucet", "fire", "filter", "help-center", "home", "info", "intercom", "link", "more", "minus", "node", "patch", "plus", "processing", "radio-empty", "radio-full", "resize", "search", "step-indicator", "subgraphs", "sync-problem", "thumb", "wallet", "wallet-connected", "wallet-disconnected", "wrench"];
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
type Side = 'left' | 'right' | 'top' | 'bottom';
|
|
3
|
+
export declare const PagePadding: React.ForwardRefExoticComponent<{
|
|
4
|
+
/**
|
|
5
|
+
* Which sides should receive padding.
|
|
6
|
+
* • Omit ⇒ all sides get padding (default behavior)
|
|
7
|
+
* • Pass specific sides ⇒ only those sides get padding
|
|
8
|
+
* • Pass [] ⇒ no padding
|
|
9
|
+
*/
|
|
10
|
+
readonly sides?: Side[];
|
|
11
|
+
} & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
12
|
+
asChild?: boolean;
|
|
13
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { StoryObj } from '@storybook/react';
|
|
2
|
+
declare const meta: {
|
|
3
|
+
component: import('react').ForwardRefExoticComponent<{
|
|
4
|
+
readonly sides?: ("bottom" | "left" | "right" | "top")[];
|
|
5
|
+
} & Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
6
|
+
asChild?: boolean;
|
|
7
|
+
} & import('react').RefAttributes<HTMLDivElement>>;
|
|
8
|
+
};
|
|
9
|
+
export default meta;
|
|
10
|
+
type Story = StoryObj<typeof meta>;
|
|
11
|
+
export declare const Example: Story;
|
|
12
|
+
export declare const LayoutExample: Story;
|