@antsoo-lib/components 0.0.1 → 0.1.2
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/{akaza-components.mjs → index.mjs} +41660 -41662
- package/dist/index.umd.js +474 -0
- package/dist/src/components.d.ts +53 -53
- package/package.json +7 -10
- package/dist/akaza-components.umd.js +0 -474
package/dist/src/components.d.ts
CHANGED
|
@@ -1,18 +1,16 @@
|
|
|
1
1
|
export type { AffixProps } from './affix';
|
|
2
2
|
export { default as Affix } from './affix';
|
|
3
|
-
export type {
|
|
4
|
-
export { default as Alert } from './alert';
|
|
5
|
-
export type { AnchorLinkProps, AnchorProps } from './anchor';
|
|
3
|
+
export type { AnchorProps, AnchorLinkProps } from './anchor';
|
|
6
4
|
export { default as Anchor, AnchorLink } from './anchor';
|
|
7
|
-
export type { AppProps } from './app';
|
|
8
|
-
export { default as App } from './app';
|
|
9
5
|
export type { AutoCompleteProps } from './auto-complete';
|
|
10
6
|
export { default as AutoComplete, AutoCompleteOptGroup, AutoCompleteOption } from './auto-complete';
|
|
7
|
+
export type { AlertProps } from './alert';
|
|
8
|
+
export { default as Alert } from './alert';
|
|
11
9
|
export type { AvatarProps } from './avatar';
|
|
12
10
|
export { default as Avatar, AvatarGroup } from './avatar';
|
|
13
11
|
export type { BadgeProps } from './badge';
|
|
14
12
|
export { default as Badge, BadgeRibbon } from './badge';
|
|
15
|
-
export type {
|
|
13
|
+
export type { BreadcrumbProps, BreadcrumbItemProps, BreadcrumbSeparatorProps } from './breadcrumb';
|
|
16
14
|
export { default as Breadcrumb, BreadcrumbItem, BreadcrumbSeparator } from './breadcrumb';
|
|
17
15
|
export type { ButtonProps } from './button';
|
|
18
16
|
export { default as Button, ButtonGroup } from './button';
|
|
@@ -20,58 +18,57 @@ export type { CalendarProps } from './calendar';
|
|
|
20
18
|
export { default as Calendar } from './calendar';
|
|
21
19
|
export type { CardProps } from './card';
|
|
22
20
|
export { default as Card, CardGrid, CardMeta } from './card';
|
|
21
|
+
export type { CollapseProps, CollapsePanelProps } from './collapse';
|
|
22
|
+
export { default as Collapse, CollapsePanel } from './collapse';
|
|
23
23
|
export type { CarouselProps } from './carousel';
|
|
24
24
|
export { default as Carousel } from './carousel';
|
|
25
25
|
export type { CascaderProps } from './cascader';
|
|
26
26
|
export { default as Cascader } from './cascader';
|
|
27
|
-
export type { CheckboxGroupProps, CheckboxOptionType
|
|
27
|
+
export type { CheckboxProps, CheckboxGroupProps, CheckboxOptionType } from './checkbox';
|
|
28
28
|
export { default as Checkbox, CheckboxGroup } from './checkbox';
|
|
29
29
|
export type { ColProps } from './col';
|
|
30
30
|
export { default as Col } from './col';
|
|
31
|
-
export type { CollapsePanelProps, CollapseProps } from './collapse';
|
|
32
|
-
export { default as Collapse, CollapsePanel } from './collapse';
|
|
33
31
|
export type { CommentProps } from './comment';
|
|
34
32
|
export { default as Comment } from './comment';
|
|
35
33
|
export type { ConfigProviderProps } from './config-provider';
|
|
36
34
|
export { default as ConfigProvider } from './config-provider';
|
|
37
35
|
export type { DatePickerProps } from './date-picker';
|
|
38
|
-
export { default as DatePicker, MonthPicker,
|
|
36
|
+
export { default as DatePicker, MonthPicker, WeekPicker, RangePicker, QuarterPicker, } from './date-picker';
|
|
39
37
|
export type { DescriptionsProps } from './descriptions';
|
|
40
38
|
export { default as Descriptions, DescriptionsItem } from './descriptions';
|
|
41
39
|
export type { DividerProps } from './divider';
|
|
42
40
|
export { default as Divider } from './divider';
|
|
43
|
-
export type { DrawerProps } from './drawer';
|
|
44
|
-
export { default as Drawer } from './drawer';
|
|
45
41
|
export type { DropdownProps } from './dropdown';
|
|
46
42
|
export { default as Dropdown, DropdownButton } from './dropdown';
|
|
43
|
+
export type { DrawerProps } from './drawer';
|
|
44
|
+
export { default as Drawer } from './drawer';
|
|
47
45
|
export type { EmptyProps } from './empty';
|
|
48
46
|
export { default as Empty } from './empty';
|
|
49
|
-
export type {
|
|
50
|
-
export { default as
|
|
51
|
-
export {
|
|
52
|
-
export type { BackTopProps, FloatButtonGroupProps, FloatButtonProps, } from './float-button/interface';
|
|
53
|
-
export type { FormInstance, FormItemInstance, FormItemProps, FormProps } from './form';
|
|
47
|
+
export type { FloatButtonProps, FloatButtonGroupProps, BackTopProps, } from './float-button/interface';
|
|
48
|
+
export { default as FloatButton, FloatButtonGroup, BackTop } from './float-button';
|
|
49
|
+
export type { FormProps, FormItemProps, FormInstance, FormItemInstance } from './form';
|
|
54
50
|
export { default as Form, FormItem, FormItemRest } from './form';
|
|
55
51
|
export { default as Grid } from './grid';
|
|
56
|
-
export type { ImageProps } from './image';
|
|
57
|
-
export { default as Image, ImagePreviewGroup } from './image';
|
|
58
52
|
export type { InputProps, TextAreaProps } from './input';
|
|
59
53
|
export { default as Input, InputGroup, InputPassword, InputSearch, Textarea } from './input';
|
|
54
|
+
export type { ImageProps } from './image';
|
|
55
|
+
export { default as Image, ImagePreviewGroup } from './image';
|
|
60
56
|
export type { InputNumberProps } from './input-number';
|
|
61
57
|
export { default as InputNumber } from './input-number';
|
|
62
58
|
export type { LayoutProps, SiderProps } from './layout';
|
|
63
|
-
export { default as Layout,
|
|
64
|
-
export type {
|
|
59
|
+
export { default as Layout, LayoutHeader, LayoutSider, LayoutFooter, LayoutContent } from './layout';
|
|
60
|
+
export type { ListProps, ListItemProps, ListItemMetaProps } from './list';
|
|
65
61
|
export { default as List, ListItem, ListItemMeta } from './list';
|
|
66
|
-
export { default as LocaleProvider } from './locale-provider';
|
|
67
|
-
export type { MentionsProps } from './mentions';
|
|
68
|
-
export { default as Mentions, MentionsOption } from './mentions';
|
|
69
|
-
export type { ItemType, MenuDividerProps, MenuItemProps, MenuMode, MenuProps, MenuTheme, SubMenuProps, } from './menu';
|
|
70
|
-
export { default as Menu, MenuDivider, MenuItem, MenuItemGroup, SubMenu } from './menu';
|
|
71
62
|
export type { MessageArgsProps } from './message';
|
|
72
63
|
export { default as message } from './message';
|
|
73
|
-
export type {
|
|
64
|
+
export type { MenuProps, MenuTheme, SubMenuProps, MenuItemProps, MenuMode, MenuDividerProps, ItemType, } from './menu';
|
|
65
|
+
export { default as Menu, MenuDivider, MenuItem, MenuItemGroup, SubMenu } from './menu';
|
|
66
|
+
export type { MentionsProps } from './mentions';
|
|
67
|
+
export { default as Mentions, MentionsOption } from './mentions';
|
|
68
|
+
export type { ModalProps, ModalFuncProps } from './modal';
|
|
74
69
|
export { default as Modal } from './modal';
|
|
70
|
+
export type { StatisticProps } from './statistic';
|
|
71
|
+
export { default as Statistic, StatisticCountdown } from './statistic';
|
|
75
72
|
export type { NotificationPlacement } from './notification';
|
|
76
73
|
export { default as notification } from './notification';
|
|
77
74
|
export type { PageHeaderProps } from './page-header';
|
|
@@ -84,9 +81,7 @@ export type { PopoverProps } from './popover';
|
|
|
84
81
|
export { default as Popover } from './popover';
|
|
85
82
|
export type { ProgressProps } from './progress';
|
|
86
83
|
export { default as Progress } from './progress';
|
|
87
|
-
export type {
|
|
88
|
-
export { default as QRCode } from './qrcode';
|
|
89
|
-
export type { RadioChangeEvent, RadioGroupProps, RadioProps } from './radio';
|
|
84
|
+
export type { RadioProps, RadioChangeEvent, RadioGroupProps } from './radio';
|
|
90
85
|
export { default as Radio, RadioButton, RadioGroup } from './radio';
|
|
91
86
|
export type { RateProps } from './rate';
|
|
92
87
|
export { default as Rate } from './rate';
|
|
@@ -94,47 +89,52 @@ export type { ResultProps } from './result';
|
|
|
94
89
|
export { default as Result } from './result';
|
|
95
90
|
export type { RowProps } from './row';
|
|
96
91
|
export { default as Row } from './row';
|
|
97
|
-
export type { SegmentedProps } from './segmented';
|
|
98
|
-
export { default as Segmented } from './segmented';
|
|
99
92
|
export type { SelectProps } from './select';
|
|
100
93
|
export { default as Select, SelectOptGroup, SelectOption } from './select';
|
|
101
|
-
export type {
|
|
102
|
-
export { default as Skeleton, SkeletonAvatar,
|
|
94
|
+
export type { SkeletonProps, SkeletonButtonProps, SkeletonInputProps, SkeletonImageProps, SkeletonAvatarProps, SkeletonTitleProps, } from './skeleton';
|
|
95
|
+
export { default as Skeleton, SkeletonButton, SkeletonAvatar, SkeletonInput, SkeletonImage, SkeletonTitle, } from './skeleton';
|
|
103
96
|
export type { SliderProps } from './slider';
|
|
104
97
|
export { default as Slider } from './slider';
|
|
105
98
|
export type { SpaceProps } from './space';
|
|
106
|
-
export {
|
|
99
|
+
export { default as Space, Compact } from './space';
|
|
107
100
|
export type { SpinProps } from './spin';
|
|
108
101
|
export { default as Spin } from './spin';
|
|
109
|
-
export type { StatisticProps } from './statistic';
|
|
110
|
-
export { default as Statistic, StatisticCountdown } from './statistic';
|
|
111
102
|
export type { StepProps, StepsProps } from './steps';
|
|
112
|
-
export {
|
|
103
|
+
export { default as Steps, Step } from './steps';
|
|
113
104
|
export type { SwitchProps } from './switch';
|
|
114
105
|
export { default as Switch } from './switch';
|
|
115
|
-
export type { ColumnGroupType as TableColumnGroupType,
|
|
116
|
-
export { default as Table, TableColumn, TableColumnGroup, TableSummary,
|
|
117
|
-
export type {
|
|
118
|
-
export {
|
|
106
|
+
export type { TableProps, TablePaginationConfig, ColumnGroupType as TableColumnGroupType, ColumnType as TableColumnType, ColumnProps as TableColumnProps, ColumnsType as TableColumnsType, } from './table';
|
|
107
|
+
export { default as Table, TableColumn, TableColumnGroup, TableSummary, TableSummaryRow, TableSummaryCell, } from './table';
|
|
108
|
+
export type { TransferProps } from './transfer';
|
|
109
|
+
export { default as Transfer } from './transfer';
|
|
110
|
+
export type { TreeProps, DirectoryTreeProps } from './tree';
|
|
111
|
+
export { default as Tree, TreeNode, DirectoryTree } from './tree';
|
|
112
|
+
export type { TreeSelectProps } from './tree-select';
|
|
113
|
+
export { default as TreeSelect, TreeSelectNode } from './tree-select';
|
|
114
|
+
export type { TabsProps, TabPaneProps } from './tabs';
|
|
115
|
+
export { default as Tabs, TabPane } from './tabs';
|
|
119
116
|
export type { TagProps } from './tag';
|
|
120
|
-
export {
|
|
117
|
+
export { default as Tag, CheckableTag } from './tag';
|
|
121
118
|
export type { TimePickerProps, TimeRangePickerProps } from './time-picker';
|
|
122
119
|
export { default as TimePicker, TimeRangePicker } from './time-picker';
|
|
123
|
-
export type {
|
|
120
|
+
export type { TimelineProps, TimelineItemProps } from './timeline';
|
|
124
121
|
export { default as Timeline, TimelineItem } from './timeline';
|
|
125
122
|
export type { TooltipProps } from './tooltip';
|
|
126
123
|
export { default as Tooltip } from './tooltip';
|
|
127
|
-
export type { TourProps, TourStepProps } from './tour';
|
|
128
|
-
export { default as Tour } from './tour';
|
|
129
|
-
export type { TransferProps } from './transfer';
|
|
130
|
-
export { default as Transfer } from './transfer';
|
|
131
|
-
export type { DirectoryTreeProps, TreeProps } from './tree';
|
|
132
|
-
export { DirectoryTree, default as Tree, TreeNode } from './tree';
|
|
133
|
-
export type { TreeSelectProps } from './tree-select';
|
|
134
|
-
export { default as TreeSelect, TreeSelectNode } from './tree-select';
|
|
135
124
|
export type { TypographyProps } from './typography';
|
|
136
125
|
export { default as Typography, TypographyLink, TypographyParagraph, TypographyText, TypographyTitle, } from './typography';
|
|
137
|
-
export type {
|
|
126
|
+
export type { UploadProps, UploadListProps, UploadChangeParam, UploadFile } from './upload';
|
|
138
127
|
export { default as Upload, UploadDragger } from './upload';
|
|
128
|
+
export { default as LocaleProvider } from './locale-provider';
|
|
139
129
|
export { default as Watermark } from './watermark';
|
|
140
130
|
export type { WatermarkProps } from './watermark';
|
|
131
|
+
export type { SegmentedProps } from './segmented';
|
|
132
|
+
export { default as Segmented } from './segmented';
|
|
133
|
+
export type { QRCodeProps } from './qrcode';
|
|
134
|
+
export { default as QRCode } from './qrcode';
|
|
135
|
+
export type { TourProps, TourStepProps } from './tour';
|
|
136
|
+
export { default as Tour } from './tour';
|
|
137
|
+
export type { AppProps } from './app';
|
|
138
|
+
export { default as App } from './app';
|
|
139
|
+
export type { FlexProps } from './flex';
|
|
140
|
+
export { default as Flex } from './flex';
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antsoo-lib/components",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
|
-
"access": "public"
|
|
6
|
+
"access": "public",
|
|
7
|
+
"registry": "https://registry.npmjs.com/"
|
|
7
8
|
},
|
|
8
|
-
"description": "
|
|
9
|
+
"description": "组件库 ✨",
|
|
9
10
|
"license": "MIT",
|
|
10
11
|
"exports": {
|
|
11
12
|
".": {
|
|
@@ -48,22 +49,18 @@
|
|
|
48
49
|
"throttle-debounce": "^5.0.2",
|
|
49
50
|
"vue-types": "^6.0.0",
|
|
50
51
|
"warning": "^4.0.0",
|
|
51
|
-
"@antsoo-lib/utils": "0.0
|
|
52
|
+
"@antsoo-lib/utils": "0.1.0"
|
|
52
53
|
},
|
|
53
54
|
"devDependencies": {
|
|
54
55
|
"@testing-library/jest-dom": "^6.9.1",
|
|
55
56
|
"@testing-library/vue": "^8.1.0",
|
|
56
57
|
"@types/lodash-es": "^4.17.12",
|
|
57
|
-
"@vitejs/plugin-vue": "^6.0.3",
|
|
58
|
-
"@vitejs/plugin-vue-jsx": "^5.1.3",
|
|
59
58
|
"@vue/test-utils": "^2.4.6",
|
|
60
59
|
"happy-dom": "^20.4.0",
|
|
61
|
-
"jsdom": "^27.4.0"
|
|
62
|
-
"vite": "^7.3.1",
|
|
63
|
-
"vite-plugin-dts": "^4.5.4"
|
|
60
|
+
"jsdom": "^27.4.0"
|
|
64
61
|
},
|
|
65
62
|
"scripts": {
|
|
66
|
-
"dev": "vite",
|
|
63
|
+
"dev": "vite build --watch",
|
|
67
64
|
"build": "vite build",
|
|
68
65
|
"preview": "vite preview"
|
|
69
66
|
}
|