tango-ui-cw 1.1.0 → 1.2.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/README.md +6 -0
- package/dist/component/CSSFab/index.d.ts +6 -0
- package/dist/component/TBanner/index.d.ts +1 -0
- package/dist/component/TButton/index.d.ts +2 -0
- package/dist/component/TCard/index.d.ts +40 -0
- package/dist/component/TColorPicker/index.d.ts +1 -0
- package/dist/component/TDate/index.d.ts +1 -0
- package/dist/component/TDatePicker/index.d.ts +6 -1
- package/dist/component/TDrawer/index.d.ts +1 -0
- package/dist/component/TInput/index.d.ts +34 -4
- package/dist/component/TLayout/index.d.ts +3 -0
- package/dist/component/TLine/index.d.ts +3 -0
- package/dist/component/TMark/index.d.ts +3 -0
- package/dist/component/TModal/index.d.ts +59 -4
- package/dist/component/TNotice/index.d.ts +18 -1
- package/dist/component/TSearch/index.d.ts +15 -1
- package/dist/component/TSpace/index.d.ts +3 -0
- package/dist/component/TTable/index.d.ts +41 -0
- package/dist/component/TTooltip/index.d.ts +3 -0
- package/dist/component/TUpload/index.d.ts +33 -4
- package/dist/component/index.d.ts +39 -18
- package/dist/index.cjs +26 -8
- package/dist/index.js +3255 -2233
- package/dist/providers/NoticeProvider/NoticeProvider.d.ts +31 -7
- package/dist/styles/base.css +30 -0
- package/dist/styles/global.css +30 -0
- package/dist/styles/style.css +1 -1
- package/dist/styles/utilities.css +1 -1
- package/package.json +1 -1
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
export {
|
|
2
2
|
Button,
|
|
3
3
|
MaterialButton,
|
|
4
|
+
type MaterialButtonSlotNames,
|
|
4
5
|
type MaterialButtonLocaleText,
|
|
5
6
|
type MaterialButtonProps,
|
|
6
7
|
type MaterialButtonSize,
|
|
7
8
|
type MaterialButtonVariant,
|
|
9
|
+
type ButtonSlotNames,
|
|
8
10
|
type ButtonI18nKey,
|
|
9
11
|
type ButtonLocaleText,
|
|
10
12
|
type ButtonProps,
|
|
@@ -16,6 +18,7 @@ export {
|
|
|
16
18
|
|
|
17
19
|
export {
|
|
18
20
|
Banner,
|
|
21
|
+
type BannerSlotNames,
|
|
19
22
|
type BannerI18nKey,
|
|
20
23
|
type BannerLevel,
|
|
21
24
|
type BannerLocaleText,
|
|
@@ -26,6 +29,7 @@ export {
|
|
|
26
29
|
|
|
27
30
|
export {
|
|
28
31
|
ColorPicker,
|
|
32
|
+
type ColorPickerSlotNames,
|
|
29
33
|
type ColorPickerFormat,
|
|
30
34
|
type ColorPickerI18nKey,
|
|
31
35
|
type ColorPickerLocaleText,
|
|
@@ -36,6 +40,7 @@ export {
|
|
|
36
40
|
} from "./TColorPicker";
|
|
37
41
|
export {
|
|
38
42
|
DateDisplay,
|
|
43
|
+
type DateSlotNames,
|
|
39
44
|
type DateI18nKey,
|
|
40
45
|
type DateLocaleText,
|
|
41
46
|
type DateProps,
|
|
@@ -44,6 +49,7 @@ export {
|
|
|
44
49
|
} from "./TDate";
|
|
45
50
|
export {
|
|
46
51
|
DatePicker,
|
|
52
|
+
type DatePickerSlotNames,
|
|
47
53
|
type DatePickerI18nKey,
|
|
48
54
|
type DatePickerLocaleText,
|
|
49
55
|
type DatePickerProps,
|
|
@@ -52,6 +58,7 @@ export {
|
|
|
52
58
|
} from "./TDatePicker";
|
|
53
59
|
export {
|
|
54
60
|
Drawer,
|
|
61
|
+
type DrawerSlotNames,
|
|
55
62
|
type DrawerFooterButton,
|
|
56
63
|
type DrawerI18nKey,
|
|
57
64
|
type DrawerLocaleText,
|
|
@@ -62,9 +69,12 @@ export {
|
|
|
62
69
|
export {
|
|
63
70
|
Input,
|
|
64
71
|
MaterialInput,
|
|
72
|
+
type MaterialInputSlotNames,
|
|
65
73
|
type MaterialInputLocaleText,
|
|
66
74
|
type MaterialInputProps,
|
|
67
75
|
type MaterialInputSize,
|
|
76
|
+
type InputSlotNames,
|
|
77
|
+
type InputLocaleText,
|
|
68
78
|
type InputProps,
|
|
69
79
|
type InputSize,
|
|
70
80
|
type InputStatus,
|
|
@@ -78,6 +88,7 @@ export {
|
|
|
78
88
|
Sider,
|
|
79
89
|
Content,
|
|
80
90
|
Toc,
|
|
91
|
+
type LayoutSlotNames,
|
|
81
92
|
type LayoutProps,
|
|
82
93
|
type LayoutHeaderProps,
|
|
83
94
|
type LayoutFooterProps,
|
|
@@ -85,33 +96,38 @@ export {
|
|
|
85
96
|
type LayoutContentProps,
|
|
86
97
|
type LayoutTocProps,
|
|
87
98
|
} from "./TLayout";
|
|
99
|
+
export { default as TangoLayout } from "./TLayout";
|
|
88
100
|
export {
|
|
89
101
|
default as Line,
|
|
102
|
+
type LineSlotNames,
|
|
90
103
|
type LineProps,
|
|
91
104
|
} from "./TLine";
|
|
105
|
+
export { default as TangoLine } from "./TLine";
|
|
92
106
|
|
|
93
107
|
export {
|
|
94
108
|
default as Mark,
|
|
109
|
+
type MarkSlotNames,
|
|
95
110
|
type MarkColor,
|
|
96
111
|
type MarkProps,
|
|
97
112
|
} from "./TMark";
|
|
113
|
+
export { default as TangoMark } from "./TMark";
|
|
98
114
|
export {
|
|
99
115
|
Modal,
|
|
116
|
+
type ModalSlotNames,
|
|
100
117
|
type ModalFooterButton,
|
|
101
118
|
type ModalI18nKey,
|
|
102
119
|
type ModalLocaleText,
|
|
103
120
|
type ModalProps,
|
|
121
|
+
type ModalStaticConfig,
|
|
122
|
+
type ModalStaticResult,
|
|
104
123
|
default as TangoModal,
|
|
105
124
|
} from "./TModal";
|
|
106
|
-
export {
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
type NoticeVariant,
|
|
110
|
-
type NoticeProps,
|
|
111
|
-
default as TangoNotice,
|
|
112
|
-
} from "./TNotice";
|
|
125
|
+
export { default as Notice } from "./TNotice";
|
|
126
|
+
export { default as TangoNotice } from "./TNotice";
|
|
127
|
+
export type { NoticeSlotNames, NoticeType, NoticeVariant, NoticeProps, NoticeCallOptions, NoticePlacement } from "./TNotice";
|
|
113
128
|
export {
|
|
114
129
|
Search,
|
|
130
|
+
type SearchSlotNames,
|
|
115
131
|
type SearchI18nKey,
|
|
116
132
|
type SearchLocaleText,
|
|
117
133
|
type SearchProps,
|
|
@@ -120,28 +136,33 @@ export {
|
|
|
120
136
|
} from "./TSearch";
|
|
121
137
|
export {
|
|
122
138
|
default as Space,
|
|
139
|
+
type SpaceSlotNames,
|
|
123
140
|
type SpaceProps,
|
|
124
141
|
type SpaceType,
|
|
125
142
|
type SxSlotValue,
|
|
126
143
|
type SxValue,
|
|
127
144
|
} from "./TSpace";
|
|
145
|
+
export { default as TangoSpace } from "./TSpace";
|
|
128
146
|
export {
|
|
129
147
|
default as Table,
|
|
148
|
+
type TableSlotNames,
|
|
130
149
|
type TableColumn,
|
|
131
150
|
type TableLocaleText,
|
|
132
151
|
type TablePagination,
|
|
133
152
|
type TableProps,
|
|
134
153
|
} from "./TTable";
|
|
135
|
-
export {
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
} from "./
|
|
141
|
-
export {
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
} from "./
|
|
154
|
+
export { default as TangoTable } from "./TTable";
|
|
155
|
+
export { default as Tooltip } from "./TTooltip";
|
|
156
|
+
export { default as TangoTooltip } from "./TTooltip";
|
|
157
|
+
export type { TooltipSlotNames, TooltipPlacement, TooltipProps } from "./TTooltip";
|
|
158
|
+
export { default as Upload } from "./TUpload";
|
|
159
|
+
export { default as TangoUpload } from "./TUpload";
|
|
160
|
+
export type { UploadSlotNames, UploadProps, UploadLocaleText, UploadI18nKey } from "./TUpload";
|
|
161
|
+
// added by clayw on 20260624: Upload 拖拽上传新增 draggable/dragPlaceholder/dragActivePlaceholder/localeText props
|
|
162
|
+
|
|
163
|
+
export { default as Card } from "./TCard";
|
|
164
|
+
export { default as TangoCard } from "./TCard";
|
|
165
|
+
export type { CardSlotNames, CardProps } from "./TCard";
|
|
166
|
+
// added by clayw on 20260624
|
|
146
167
|
|
|
147
168
|
export * from "./CSSFab";
|