linkedunion-design-kit 1.9.2 → 1.9.4
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/app/layout.jsx +13 -0
- package/dist/app/page.jsx +25 -0
- package/dist/build/types/app/layout.d.ts +12 -0
- package/dist/build/types/app/layout.js +22 -0
- package/dist/build/types/app/page.d.ts +12 -0
- package/dist/build/types/app/page.js +22 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/src/components/Accordion/Accordion.stories.jsx +33 -0
- package/dist/src/components/Accordion/accordion.jsx +59 -0
- package/dist/src/components/Alerts/Alert/alert.jsx +152 -0
- package/dist/src/components/Alerts/Alert/alert.stories.jsx +344 -0
- package/dist/src/components/Alerts/AlertDialog/alert-dialog.jsx +170 -0
- package/dist/src/components/Alerts/AlertDialog/alert-dialog.stories.jsx +552 -0
- package/dist/src/components/AppIcons/AndroidIcon.jsx +24 -0
- package/dist/src/components/AppIcons/AppIcon.jsx +29 -0
- package/dist/src/components/AppIcons/AppIcon.stories.jsx +223 -0
- package/dist/src/components/AppIcons/AppleIcon.jsx +31 -0
- package/dist/src/components/AppIcons/PlayStoreIcon.jsx +29 -0
- package/dist/src/components/Avatar/Avatar/Avatar.jsx +45 -0
- package/dist/src/components/Avatar/Avatar/Avatar.stories.jsx +95 -0
- package/dist/src/components/Avatar/Avatar/Avatar.test.jsx +9 -0
- package/dist/src/components/Avatar/AvatarGroup/AvatarGroup.jsx +17 -0
- package/dist/src/components/Avatar/AvatarGroup/AvatarGroup.stories.jsx +32 -0
- package/dist/src/components/Avatar/StatusIndicator/StatusIndicator.jsx +20 -0
- package/dist/src/components/Avatar/StatusIndicator/StatusIndicator.stories.jsx +50 -0
- package/dist/src/components/Badge/Badge.jsx +54 -0
- package/dist/src/components/Badge/Badge.stories.jsx +201 -0
- package/dist/src/components/Button/Button/Button.d.ts +7 -6
- package/dist/src/components/Button/Button/Button.js +32 -9
- package/dist/src/components/Button/Button/Button.jsx +101 -0
- package/dist/src/components/Button/Button/Button.stories.jsx +283 -0
- package/dist/src/components/Button/Button/Button.test.jsx +73 -0
- package/dist/src/components/Button/IconButton/IconButton.jsx +63 -0
- package/dist/src/components/Button/IconButton/IconButton.stories.jsx +128 -0
- package/dist/src/components/Button/IconButton/IconButton.test.jsx +28 -0
- package/dist/src/components/Button/index.js +3 -3
- package/dist/src/components/Card/MultipleNews/MultiNews.jsx +80 -0
- package/dist/src/components/Card/MultipleNews/MultiNews.stories.jsx +104 -0
- package/dist/src/components/Card/PostByCategory/PostByCategory.jsx +60 -0
- package/dist/src/components/Card/PostByCategory/PostByCategory.stories.jsx +106 -0
- package/dist/src/components/Card/SinglePost/SinglePost.jsx +26 -0
- package/dist/src/components/Card/SinglePost/SinglePost.stories.jsx +68 -0
- package/dist/src/components/Card/card.jsx +36 -0
- package/dist/src/components/Card/contactProfile/ContactProfile.jsx +60 -0
- package/dist/src/components/Card/contactProfile/ContactProfile.stories.jsx +103 -0
- package/dist/src/components/Card/photoAlbum/PhotoAlbum.jsx +41 -0
- package/dist/src/components/Card/photoAlbum/PhotoAlbum.stories.jsx +69 -0
- package/dist/src/components/Card/photoGallery/PhotoGallery.jsx +17 -0
- package/dist/src/components/Card/photoGallery/PhotoGallery.stories.jsx +39 -0
- package/dist/src/components/Checkbox/checkbox.jsx +47 -0
- package/dist/src/components/Checkbox/checkbox.stories.jsx +113 -0
- package/dist/src/components/ColorPicker/ColorPicker.jsx +67 -0
- package/dist/src/components/ColorPicker/ColorPicker.stories.jsx +138 -0
- package/dist/src/components/Colors/color.jsx +5 -0
- package/dist/src/components/Colors/color.stories.jsx +20 -0
- package/dist/src/components/Colors/color.test.jsx +23 -0
- package/dist/src/components/Dropdown/Combobox/Combobox.jsx +198 -0
- package/dist/src/components/Dropdown/Combobox/Combobox.stories.jsx +289 -0
- package/dist/src/components/Dropdown/Combobox/utils/renderBadge.jsx +7 -0
- package/dist/src/components/Dropdown/DropdownMenu/DropdownMenu.jsx +102 -0
- package/dist/src/components/Dropdown/DropdownMenu/DropdownMenu.stories.jsx +464 -0
- package/dist/src/components/Dropdown/DropdownMenu/SelectAllSection.jsx +19 -0
- package/dist/src/components/Dropdown/Select.stories.jsx +201 -0
- package/dist/src/components/Dropdown/select.jsx +93 -0
- package/dist/src/components/Icons/LUIcon.jsx +41 -0
- package/dist/src/components/Icons/LUIcon.test.jsx +308 -0
- package/dist/src/components/Icons/stories/IconDropdown.jsx +67 -0
- package/dist/src/components/Icons/stories/IconGallery.jsx +77 -0
- package/dist/src/components/Icons/stories/InteractiveIconSelector.jsx +86 -0
- package/dist/src/components/Icons/stories/LUIcon.stories.jsx +108 -0
- package/dist/src/components/ImageUploader/ImageUploader.stories.jsx +50 -0
- package/dist/src/components/ImageUploader/imageUploader.jsx +94 -0
- package/dist/src/components/Images/LuImage.jsx +19 -0
- package/dist/src/components/Images/LuImage.stories.jsx +154 -0
- package/dist/src/components/Images/LuImage.test.jsx +44 -0
- package/dist/src/components/Input/Input.stories.jsx +250 -0
- package/dist/src/components/Input/input.jsx +110 -0
- package/dist/src/components/Label/Label.jsx +32 -0
- package/dist/src/components/Label/Label.stories.jsx +30 -0
- package/dist/src/components/Pagination/pagination.d.ts +33 -0
- package/dist/src/components/Pagination/pagination.js +68 -0
- package/dist/src/components/Pagination/pagination.jsx +68 -0
- package/dist/src/components/Pagination/pagination.stories.d.ts +74 -0
- package/dist/src/components/Pagination/pagination.stories.js +168 -0
- package/dist/src/components/Pagination/pagination.stories.jsx +114 -0
- package/dist/src/components/RadioGroup/RadioGroup.stories.jsx +146 -0
- package/dist/src/components/RadioGroup/radio-group.jsx +49 -0
- package/dist/src/components/Skeleton/skeleton.d.ts +117 -0
- package/dist/src/components/Skeleton/skeleton.js +140 -0
- package/dist/src/components/Skeleton/skeleton.stories.d.ts +153 -0
- package/dist/src/components/Skeleton/skeleton.stories.js +404 -0
- package/dist/src/components/Slider/Slider.stories.jsx +159 -0
- package/dist/src/components/Slider/slider.jsx +31 -0
- package/dist/src/components/SweetAlert/SweetAlert.jsx +147 -0
- package/dist/src/components/SweetAlert/SweetAlert.stories.jsx +505 -0
- package/dist/src/components/Switch/Switch.stories.jsx +66 -0
- package/dist/src/components/Switch/switch.jsx +61 -0
- package/dist/src/components/Table/Table.d.ts +26 -0
- package/dist/src/components/Table/Table.js +186 -0
- package/dist/src/components/Table/Table.jsx +221 -0
- package/dist/src/components/Table/Table.stories.d.ts +51 -0
- package/dist/src/components/Table/Table.stories.js +408 -0
- package/dist/src/components/Table/Table.stories.jsx +652 -0
- package/dist/src/components/Table/index.d.ts +20 -0
- package/dist/src/components/Table/index.js +20 -0
- package/dist/src/components/Tabs/Tabs.stories.jsx +29 -0
- package/dist/src/components/Tabs/tabs.jsx +32 -0
- package/dist/src/components/Title/Title.jsx +8 -0
- package/dist/src/components/Title/Title.stories.jsx +37 -0
- package/dist/src/components/Title/Title.test.jsx +24 -0
- package/dist/src/components/ToolTip/Tooltip.jsx +18 -0
- package/dist/src/components/ToolTip/Tooltip.stories.jsx +25 -0
- package/dist/src/components/Typography/Body/Body.stories.jsx +34 -0
- package/dist/src/components/Typography/Body/body.jsx +52 -0
- package/dist/src/components/Typography/Caption/Caption.stories.jsx +24 -0
- package/dist/src/components/Typography/Caption/caption.jsx +25 -0
- package/dist/src/components/Typography/Display/Display.stories.jsx +24 -0
- package/dist/src/components/Typography/Display/display.jsx +39 -0
- package/dist/src/components/Typography/Heading/Heading.stories.jsx +37 -0
- package/dist/src/components/Typography/Heading/heading.jsx +53 -0
- package/dist/src/components/ui/avatar.d.ts +3 -10
- package/dist/src/components/ui/avatar.js +12 -27
- package/dist/src/components/ui/avatar.jsx +27 -0
- package/dist/src/components/ui/button.d.ts +10 -0
- package/dist/src/components/ui/button.js +56 -0
- package/dist/src/components/ui/button.jsx +45 -0
- package/dist/src/components/ui/collapsible.d.ts +5 -0
- package/dist/src/components/ui/collapsible.js +5 -0
- package/dist/src/components/ui/collapsible.jsx +5 -0
- package/dist/src/components/ui/command.jsx +67 -0
- package/dist/src/components/ui/dialog.jsx +66 -0
- package/dist/src/components/ui/popover.jsx +33 -0
- package/dist/src/components/ui/tooltip.jsx +38 -0
- package/dist/src/components/ui/typography.jsx +56 -0
- package/dist/src/utils/colors.js +11 -11
- package/dist/src/utils/iconList.d.ts +4 -0
- package/dist/src/utils/iconList.js +4 -0
- package/dist/styles/global.css +209 -67
- package/package.json +1 -1
- package/dist/src/components/Avatar/Avatar/Avatar1.stories.d.ts +0 -17
- package/dist/src/components/Avatar/Avatar/Avatar1.stories.js +0 -68
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
13
|
+
var t = {};
|
|
14
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
15
|
+
t[p] = s[p];
|
|
16
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
17
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
18
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
19
|
+
t[p[i]] = s[p[i]];
|
|
20
|
+
}
|
|
21
|
+
return t;
|
|
22
|
+
};
|
|
23
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
24
|
+
import { cn } from "../../lib/utils";
|
|
25
|
+
import { avatarSize } from "../Avatar/Avatar";
|
|
26
|
+
import { buttonStyles } from "../Button";
|
|
27
|
+
import { tableBodySize } from "../Table";
|
|
28
|
+
import { comboboxSizes } from "../Dropdown/Combobox";
|
|
29
|
+
import { iconSize as LUIconSizes } from "../Icons";
|
|
30
|
+
import { checkboxSize } from "../Checkbox/checkbox";
|
|
31
|
+
import { size as SwitchSizes } from "../Switch/switch";
|
|
32
|
+
import LUIcon from "../Icons/LUIcon";
|
|
33
|
+
// Base Skeleton Component
|
|
34
|
+
function Skeleton(_a) {
|
|
35
|
+
var className = _a.className, props = __rest(_a, ["className"]);
|
|
36
|
+
return (_jsx("div", __assign({ className: cn("animate-pulse rounded-md bg-gray-100", className) }, props)));
|
|
37
|
+
}
|
|
38
|
+
function ButtonSkeleton(_a) {
|
|
39
|
+
var _b = _a.size, size = _b === void 0 ? "md" : _b, className = _a.className, props = __rest(_a, ["size", "className"]);
|
|
40
|
+
return (_jsx(Skeleton, __assign({ className: cn(buttonStyles.size[size], "inline-block min-w-32", className) }, props)));
|
|
41
|
+
}
|
|
42
|
+
export var InputSkeletonSize = {
|
|
43
|
+
sm: "h-9",
|
|
44
|
+
md: "h-11",
|
|
45
|
+
lg: "h-12",
|
|
46
|
+
};
|
|
47
|
+
function InputSkeleton(_a) {
|
|
48
|
+
var _b = _a.size, size = _b === void 0 ? "md" : _b, className = _a.className, props = __rest(_a, ["size", "className"]);
|
|
49
|
+
return (_jsx(Skeleton, __assign({ className: cn(InputSkeletonSize[size], "w-full rounded-md", className) }, props)));
|
|
50
|
+
}
|
|
51
|
+
function AvatarSkeleton(_a) {
|
|
52
|
+
var _b = _a.size, size = _b === void 0 ? "md" : _b, className = _a.className, props = __rest(_a, ["size", "className"]);
|
|
53
|
+
return (_jsx(Skeleton, __assign({ className: cn(avatarSize[size], "rounded-full", className) }, props)));
|
|
54
|
+
}
|
|
55
|
+
export var BadgeSkeletonSize = {
|
|
56
|
+
sm: "h-5 w-12",
|
|
57
|
+
md: "h-6 w-16",
|
|
58
|
+
lg: "h-7 w-28",
|
|
59
|
+
};
|
|
60
|
+
function BadgeSkeleton(_a) {
|
|
61
|
+
var _b = _a.size, size = _b === void 0 ? "md" : _b, className = _a.className, props = __rest(_a, ["size", "className"]);
|
|
62
|
+
return (_jsx(Skeleton, __assign({ className: cn(BadgeSkeletonSize[size], "rounded-full", className) }, props)));
|
|
63
|
+
}
|
|
64
|
+
function CardSkeleton(_a) {
|
|
65
|
+
var className = _a.className, props = __rest(_a, ["className"]);
|
|
66
|
+
return (_jsx(Skeleton, __assign({ className: cn("h-48 w-full rounded-lg", className) }, props)));
|
|
67
|
+
}
|
|
68
|
+
function TableRowSkeleton(_a) {
|
|
69
|
+
var _b = _a.columns, columns = _b === void 0 ? 4 : _b, _c = _a.size, size = _c === void 0 ? "md" : _c, className = _a.className, props = __rest(_a, ["columns", "size", "className"]);
|
|
70
|
+
return (_jsx("div", __assign({ className: cn("flex gap-4", className) }, props, { children: Array.from({ length: columns }).map(function (_, i) { return (_jsx(Skeleton, { className: cn(tableBodySize[size], "flex-1") }, i)); }) })));
|
|
71
|
+
}
|
|
72
|
+
function CheckboxSkeleton(_a) {
|
|
73
|
+
var className = _a.className, _b = _a.size, size = _b === void 0 ? "md" : _b, props = __rest(_a, ["className", "size"]);
|
|
74
|
+
return _jsx(Skeleton, __assign({ className: cn(checkboxSize[size], className) }, props));
|
|
75
|
+
}
|
|
76
|
+
function SwitchSkeleton(_a) {
|
|
77
|
+
var className = _a.className, _b = _a.size, size = _b === void 0 ? "md" : _b, props = __rest(_a, ["className", "size"]);
|
|
78
|
+
return _jsx(Skeleton, __assign({ className: cn(SwitchSizes[size], className) }, props));
|
|
79
|
+
}
|
|
80
|
+
function SelectSkeleton(_a) {
|
|
81
|
+
var _b = _a.size, size = _b === void 0 ? "md" : _b, className = _a.className, props = __rest(_a, ["size", "className"]);
|
|
82
|
+
return (_jsx(Skeleton, __assign({ className: cn(comboboxSizes[size], "w-full rounded-md", className) }, props)));
|
|
83
|
+
}
|
|
84
|
+
function IconSkeleton(_a) {
|
|
85
|
+
var _b = _a.size, size = _b === void 0 ? "md" : _b, className = _a.className, props = __rest(_a, ["size", "className"]);
|
|
86
|
+
return (_jsx(Skeleton, __assign({ className: cn(LUIconSizes[size], "rounded", className) }, props)));
|
|
87
|
+
}
|
|
88
|
+
// Text/Typography Skeleton
|
|
89
|
+
export var TextSkeletonSize = {
|
|
90
|
+
xs: "h-3",
|
|
91
|
+
sm: "h-3.5",
|
|
92
|
+
md: "h-4",
|
|
93
|
+
lg: "h-[1.125rem]",
|
|
94
|
+
xl: "h-5",
|
|
95
|
+
};
|
|
96
|
+
function TextSkeleton(_a) {
|
|
97
|
+
var _b = _a.lines, lines = _b === void 0 ? 1 : _b, _c = _a.size, size = _c === void 0 ? "md" : _c, className = _a.className, props = __rest(_a, ["lines", "size", "className"]);
|
|
98
|
+
if (lines === 1) {
|
|
99
|
+
return (_jsx(Skeleton, __assign({ className: cn(TextSkeletonSize[size], "w-full", className) }, props)));
|
|
100
|
+
}
|
|
101
|
+
return (_jsx("div", __assign({ className: cn("space-y-2", className) }, props, { children: Array.from({ length: lines }).map(function (_, i) { return (_jsx(Skeleton, { className: cn(TextSkeletonSize[size], i === lines - 1 ? "w-3/4" : "w-full") }, i)); }) })));
|
|
102
|
+
}
|
|
103
|
+
// Heading Skeleton
|
|
104
|
+
// Matches Heading component sizes: h1=text-5xl, h2=text-4xl, h3=text-3xl, h4=text-2xl, h5=text-xl, h6=text-lg
|
|
105
|
+
export var HeadingSkeletonSize = {
|
|
106
|
+
h1: "h-12", // text-5xl = 48px
|
|
107
|
+
h2: "h-10", // text-4xl = 36px
|
|
108
|
+
h3: "h-8", // text-3xl = 30px
|
|
109
|
+
h4: "h-7", // text-2xl = 24px
|
|
110
|
+
h5: "h-6", // text-xl = 20px
|
|
111
|
+
h6: "h-[1.125rem]", // text-lg = 18px
|
|
112
|
+
};
|
|
113
|
+
function HeadingSkeleton(_a) {
|
|
114
|
+
var _b = _a.size, size = _b === void 0 ? "h2" : _b, className = _a.className, props = __rest(_a, ["size", "className"]);
|
|
115
|
+
return (_jsx(Skeleton, __assign({ className: cn(HeadingSkeletonSize[size], "w-3/4", className) }, props)));
|
|
116
|
+
}
|
|
117
|
+
function ImageSkeleton(_a) {
|
|
118
|
+
var _b = _a.aspectRatio, aspectRatio = _b === void 0 ? "square" : _b, className = _a.className, _c = _a.isIcon, isIcon = _c === void 0 ? true : _c, props = __rest(_a, ["aspectRatio", "className", "isIcon"]);
|
|
119
|
+
var aspectClasses = {
|
|
120
|
+
square: "aspect-square",
|
|
121
|
+
video: "aspect-video",
|
|
122
|
+
portrait: "aspect-[3/4]",
|
|
123
|
+
};
|
|
124
|
+
return (_jsx(Skeleton, __assign({ className: cn("relative w-full overflow-hidden", aspectClasses[aspectRatio], className) }, props, { children: isIcon && (_jsx("div", { className: "absolute inset-0 flex items-center justify-center", children: _jsx(LUIcon, { icon: "image", className: cn("text-gray-400 opacity-60 w-1/3 h-1/3 ") }) })) })));
|
|
125
|
+
}
|
|
126
|
+
// Attach all variants as properties
|
|
127
|
+
Skeleton.Button = ButtonSkeleton;
|
|
128
|
+
Skeleton.Input = InputSkeleton;
|
|
129
|
+
Skeleton.Avatar = AvatarSkeleton;
|
|
130
|
+
Skeleton.Badge = BadgeSkeleton;
|
|
131
|
+
Skeleton.Card = CardSkeleton;
|
|
132
|
+
Skeleton.TableRow = TableRowSkeleton;
|
|
133
|
+
Skeleton.Checkbox = CheckboxSkeleton;
|
|
134
|
+
Skeleton.Switch = SwitchSkeleton;
|
|
135
|
+
Skeleton.Select = SelectSkeleton;
|
|
136
|
+
Skeleton.Icon = IconSkeleton;
|
|
137
|
+
Skeleton.Text = TextSkeleton;
|
|
138
|
+
Skeleton.Heading = HeadingSkeleton;
|
|
139
|
+
Skeleton.Image = ImageSkeleton;
|
|
140
|
+
export { Skeleton };
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
import { Meta } from "@storybook/react";
|
|
2
|
+
interface SkeletonStoryArgs {
|
|
3
|
+
className?: string;
|
|
4
|
+
variant?: "default" | "button" | "input" | "avatar" | "badge" | "card" | "tableRow" | "checkbox" | "switch" | "select" | "icon" | "text" | "heading" | "image";
|
|
5
|
+
size?: string;
|
|
6
|
+
columns?: number;
|
|
7
|
+
lines?: number;
|
|
8
|
+
aspectRatio?: "square" | "video" | "portrait";
|
|
9
|
+
isIcon?: boolean;
|
|
10
|
+
}
|
|
11
|
+
declare const meta: Meta<SkeletonStoryArgs>;
|
|
12
|
+
export default meta;
|
|
13
|
+
export declare const Default: import("@storybook/core/csf").AnnotatedStoryFn<import("@storybook/react").ReactRenderer, SkeletonStoryArgs>;
|
|
14
|
+
export declare const ButtonSkeletons: {
|
|
15
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
parameters: {
|
|
17
|
+
docs: {
|
|
18
|
+
description: {
|
|
19
|
+
story: string;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
export declare const InputSkeletons: {
|
|
25
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
26
|
+
parameters: {
|
|
27
|
+
docs: {
|
|
28
|
+
description: {
|
|
29
|
+
story: string;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export declare const AvatarSkeletons: {
|
|
35
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
36
|
+
parameters: {
|
|
37
|
+
docs: {
|
|
38
|
+
description: {
|
|
39
|
+
story: string;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
export declare const BadgeSkeletons: {
|
|
45
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
46
|
+
parameters: {
|
|
47
|
+
docs: {
|
|
48
|
+
description: {
|
|
49
|
+
story: string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
export declare const CardSkeleton: {
|
|
55
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
56
|
+
parameters: {
|
|
57
|
+
docs: {
|
|
58
|
+
description: {
|
|
59
|
+
story: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
export declare const TableRowSkeletons: {
|
|
65
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
66
|
+
parameters: {
|
|
67
|
+
docs: {
|
|
68
|
+
description: {
|
|
69
|
+
story: string;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
export declare const FormElementsSkeletons: {
|
|
75
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
76
|
+
parameters: {
|
|
77
|
+
docs: {
|
|
78
|
+
description: {
|
|
79
|
+
story: string;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
export declare const IconSkeletons: {
|
|
85
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
86
|
+
parameters: {
|
|
87
|
+
docs: {
|
|
88
|
+
description: {
|
|
89
|
+
story: string;
|
|
90
|
+
};
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
export declare const TextSkeletons: {
|
|
95
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
96
|
+
parameters: {
|
|
97
|
+
docs: {
|
|
98
|
+
description: {
|
|
99
|
+
story: string;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
export declare const HeadingSkeletons: {
|
|
105
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
106
|
+
parameters: {
|
|
107
|
+
docs: {
|
|
108
|
+
description: {
|
|
109
|
+
story: string;
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
export declare const ImageSkeletons: {
|
|
115
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
116
|
+
parameters: {
|
|
117
|
+
docs: {
|
|
118
|
+
description: {
|
|
119
|
+
story: string;
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
export declare const CompleteCardExample: {
|
|
125
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
126
|
+
parameters: {
|
|
127
|
+
docs: {
|
|
128
|
+
description: {
|
|
129
|
+
story: string;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
export declare const CompleteFormExample: {
|
|
135
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
136
|
+
parameters: {
|
|
137
|
+
docs: {
|
|
138
|
+
description: {
|
|
139
|
+
story: string;
|
|
140
|
+
};
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
};
|
|
144
|
+
export declare const AllVariants: {
|
|
145
|
+
(): import("react/jsx-runtime").JSX.Element;
|
|
146
|
+
parameters: {
|
|
147
|
+
docs: {
|
|
148
|
+
description: {
|
|
149
|
+
story: string;
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
};
|