@jho951/ui-components 0.1.0 → 0.1.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.
- package/dist/assert/index.d.ts +1 -1
- package/dist/assert/index.js +1 -1
- package/dist/chunk-77SPUDR2.js +1036 -0
- package/dist/{chunk-Q55QXUNN.js → chunk-HW6ZBRLQ.js} +5 -2
- package/dist/chunk-KLEL7SOM.js +23 -0
- package/dist/index.css +673 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +31 -3
- package/dist/lib/index.js +1 -1
- package/dist/ui/index.css +673 -1
- package/dist/ui/index.d.ts +183 -3
- package/dist/ui/index.js +31 -3
- package/package.json +2 -8
- package/LICENSE +0 -21
- package/README.md +0 -37
- package/dist/arrow-2URCOGMX.svg +0 -11
- package/dist/chunk-PLGHTHAJ.js +0 -23
- package/dist/chunk-SOIXNSFH.js +0 -493
- package/dist/close-JPE5H3ZO.svg +0 -10
- package/dist/required-TPNMLA3A.svg +0 -7
- package/dist/spinner-GIDMICZO.svg +0 -24
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { Arrow, ArrowDirection, ArrowProps, BUTTON_SIZES, BUTTON_VARIANTS, BackDrop, BackDropProps, BaseButtonProps, Button, ButtonProps, ButtonSize, ButtonVariant, Card, CardComponent, CardProps, CardSectionType, Checkbox, CheckboxProps, DIRECTION_MAP, Divider, Form, FormCardProps, FormProps, Icon, IconData, IconElement, IconName, IconProps, IconRegistry, IconSource, Label, LabelProps, LabelVariant, Modal, ModalProps, SectionProps, Spinner, SpinnerProps, SvgTag, Tag, TagColor, TagProps, Textarea, TextareaProps, createCardSection, extractSvgInner, extractViewBox, getAriaProps, getRegistryIcon, isExternalSvgPath, resolveIconSrc, useInlineSvg } from './ui/index.js';
|
|
1
|
+
export { Accordion, AccordionItem, AccordionProps, Alert, AlertProps, AlertVariant, Arrow, ArrowDirection, ArrowProps, Avatar, AvatarProps, AvatarShape, AvatarSize, BUTTON_SIZES, BUTTON_VARIANTS, BackDrop, BackDropProps, Badge, BadgeProps, BadgeSize, BadgeVariant, BaseButtonProps, Breadcrumb, BreadcrumbItem, BreadcrumbProps, Button, ButtonProps, ButtonSize, ButtonVariant, Card, CardComponent, CardProps, CardSectionType, Checkbox, CheckboxProps, DIRECTION_MAP, Divider, Dropdown, DropdownAlign, DropdownItem, DropdownProps, DropdownSize, Form, FormCardProps, FormProps, Icon, IconData, IconElement, IconName, IconProps, IconRegistry, IconSource, Input, InputProps, InputSize, Label, LabelProps, LabelVariant, Modal, ModalProps, Pagination, PaginationProps, SectionProps, Select, SelectOption, SelectProps, SelectSize, Skeleton, SkeletonProps, Spinner, SpinnerProps, SvgTag, TabItem, Table, TableAlign, TableColumn, TableProps, Tabs, TabsProps, Tag, TagColor, TagProps, Textarea, TextareaProps, Toast, ToastProps, ToastVariant, Tooltip, TooltipPosition, TooltipProps, createCardSection, extractSvgInner, extractViewBox, getAriaProps, getRegistryIcon, isExternalSvgPath, resolveIconSrc, useInlineSvg } from './ui/index.js';
|
|
2
2
|
export { SVG_ASSETS } from './assert/index.js';
|
|
3
3
|
export { MOD, cn, deepFreeze, ensurePortalRoot, generateId } from './lib/index.js';
|
|
4
4
|
export { useScrollDetect, useScrollLock, useScrollSyncIndex, useScrollThresholdReached, useScrollY } from './hook/index.js';
|
package/dist/index.js
CHANGED
|
@@ -1,21 +1,35 @@
|
|
|
1
1
|
import "./chunk-DZ3NPY6X.js";
|
|
2
2
|
import {
|
|
3
|
+
Accordion,
|
|
4
|
+
Alert,
|
|
3
5
|
Arrow,
|
|
6
|
+
Avatar,
|
|
4
7
|
BUTTON_SIZES,
|
|
5
8
|
BUTTON_VARIANTS,
|
|
6
9
|
BackDrop,
|
|
10
|
+
Badge,
|
|
11
|
+
Breadcrumb,
|
|
7
12
|
Button,
|
|
8
13
|
Card,
|
|
9
14
|
Checkbox,
|
|
10
15
|
DIRECTION_MAP,
|
|
11
16
|
Divider,
|
|
17
|
+
Dropdown,
|
|
12
18
|
Form,
|
|
13
19
|
Icon,
|
|
20
|
+
Input,
|
|
14
21
|
Label,
|
|
15
22
|
Modal,
|
|
23
|
+
Pagination,
|
|
24
|
+
Select,
|
|
25
|
+
Skeleton,
|
|
16
26
|
Spinner,
|
|
27
|
+
Table,
|
|
28
|
+
Tabs,
|
|
17
29
|
Tag,
|
|
18
30
|
Textarea,
|
|
31
|
+
Toast,
|
|
32
|
+
Tooltip,
|
|
19
33
|
createCardSection,
|
|
20
34
|
extractSvgInner,
|
|
21
35
|
extractViewBox,
|
|
@@ -24,10 +38,10 @@ import {
|
|
|
24
38
|
isExternalSvgPath,
|
|
25
39
|
resolveIconSrc,
|
|
26
40
|
useInlineSvg
|
|
27
|
-
} from "./chunk-
|
|
41
|
+
} from "./chunk-77SPUDR2.js";
|
|
28
42
|
import {
|
|
29
43
|
SVG_ASSETS
|
|
30
|
-
} from "./chunk-
|
|
44
|
+
} from "./chunk-KLEL7SOM.js";
|
|
31
45
|
import {
|
|
32
46
|
useScrollDetect,
|
|
33
47
|
useScrollLock,
|
|
@@ -41,26 +55,40 @@ import {
|
|
|
41
55
|
deepFreeze,
|
|
42
56
|
ensurePortalRoot,
|
|
43
57
|
generateId
|
|
44
|
-
} from "./chunk-
|
|
58
|
+
} from "./chunk-HW6ZBRLQ.js";
|
|
45
59
|
export {
|
|
60
|
+
Accordion,
|
|
61
|
+
Alert,
|
|
46
62
|
Arrow,
|
|
63
|
+
Avatar,
|
|
47
64
|
BUTTON_SIZES,
|
|
48
65
|
BUTTON_VARIANTS,
|
|
49
66
|
BackDrop,
|
|
67
|
+
Badge,
|
|
68
|
+
Breadcrumb,
|
|
50
69
|
Button,
|
|
51
70
|
Card,
|
|
52
71
|
Checkbox,
|
|
53
72
|
DIRECTION_MAP,
|
|
54
73
|
Divider,
|
|
74
|
+
Dropdown,
|
|
55
75
|
Form,
|
|
56
76
|
Icon,
|
|
77
|
+
Input,
|
|
57
78
|
Label,
|
|
58
79
|
MOD,
|
|
59
80
|
Modal,
|
|
81
|
+
Pagination,
|
|
60
82
|
SVG_ASSETS,
|
|
83
|
+
Select,
|
|
84
|
+
Skeleton,
|
|
61
85
|
Spinner,
|
|
86
|
+
Table,
|
|
87
|
+
Tabs,
|
|
62
88
|
Tag,
|
|
63
89
|
Textarea,
|
|
90
|
+
Toast,
|
|
91
|
+
Tooltip,
|
|
64
92
|
cn,
|
|
65
93
|
createCardSection,
|
|
66
94
|
deepFreeze,
|