@validationcloud/fractal-ui 1.28.0 → 1.29.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.
- package/dist/components/animated-loader/animated-loader.d.ts +4 -0
- package/dist/components/animated-loader/animated-loader.stories.d.ts +8 -0
- package/dist/components/protocol-logo/protocol-logo.stories.d.ts +5 -5
- package/dist/fractal-ui.js +95 -80
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
type AnimatedLoaderProps = {} & Omit<React.ComponentPropsWithoutRef<'img'>, 'src' | 'alt'>;
|
|
3
|
+
export declare function AnimatedLoader({ className, ...props }: AnimatedLoaderProps): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { AnimatedLoader } from './animated-loader';
|
|
3
|
+
declare const meta: {
|
|
4
|
+
component: typeof AnimatedLoader;
|
|
5
|
+
};
|
|
6
|
+
export default meta;
|
|
7
|
+
type Story = StoryObj<typeof meta>;
|
|
8
|
+
export declare const Example: Story;
|
|
@@ -33,6 +33,9 @@ declare const meta: {
|
|
|
33
33
|
mask?: string | undefined | undefined;
|
|
34
34
|
path?: string | undefined | undefined;
|
|
35
35
|
key?: import('react').Key | null | undefined;
|
|
36
|
+
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
37
|
+
height?: number | string | undefined | undefined;
|
|
38
|
+
width?: number | string | undefined | undefined;
|
|
36
39
|
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
37
40
|
className?: string | undefined | undefined;
|
|
38
41
|
id?: string | undefined | undefined;
|
|
@@ -265,15 +268,13 @@ declare const meta: {
|
|
|
265
268
|
onTransitionStart?: import('react').TransitionEventHandler<SVGSVGElement> | undefined;
|
|
266
269
|
onTransitionStartCapture?: import('react').TransitionEventHandler<SVGSVGElement> | undefined;
|
|
267
270
|
values?: string | undefined | undefined;
|
|
271
|
+
origin?: number | string | undefined | undefined;
|
|
268
272
|
type?: string | undefined | undefined;
|
|
269
|
-
height?: number | string | undefined | undefined;
|
|
270
273
|
max?: number | string | undefined | undefined;
|
|
271
274
|
media?: string | undefined | undefined;
|
|
272
275
|
method?: string | undefined | undefined;
|
|
273
276
|
min?: number | string | undefined | undefined;
|
|
274
277
|
target?: string | undefined | undefined;
|
|
275
|
-
width?: number | string | undefined | undefined;
|
|
276
|
-
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
277
278
|
accentHeight?: number | string | undefined | undefined;
|
|
278
279
|
accumulate?: "none" | "sum" | undefined | undefined;
|
|
279
280
|
additive?: "replace" | "sum" | undefined | undefined;
|
|
@@ -328,7 +329,7 @@ declare const meta: {
|
|
|
328
329
|
filterUnits?: number | string | undefined | undefined;
|
|
329
330
|
floodColor?: number | string | undefined | undefined;
|
|
330
331
|
floodOpacity?: number | string | undefined | undefined;
|
|
331
|
-
focusable?: (boolean | "true" | "false") |
|
|
332
|
+
focusable?: "auto" | (boolean | "true" | "false") | undefined;
|
|
332
333
|
fontFamily?: string | undefined | undefined;
|
|
333
334
|
fontSize?: number | string | undefined | undefined;
|
|
334
335
|
fontSizeAdjust?: number | string | undefined | undefined;
|
|
@@ -389,7 +390,6 @@ declare const meta: {
|
|
|
389
390
|
operator?: number | string | undefined | undefined;
|
|
390
391
|
orient?: number | string | undefined | undefined;
|
|
391
392
|
orientation?: number | string | undefined | undefined;
|
|
392
|
-
origin?: number | string | undefined | undefined;
|
|
393
393
|
overlinePosition?: number | string | undefined | undefined;
|
|
394
394
|
overlineThickness?: number | string | undefined | undefined;
|
|
395
395
|
paintOrder?: number | string | undefined | undefined;
|