@rockshin/tao-ui 0.0.3 → 0.0.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/components/breadcrumb/breadcrumb.css +2 -979
- package/dist/components/button/button.css +2 -979
- package/dist/components/checkbox/checkbox.css +3 -979
- package/dist/components/collapsible/collapsible.css +2 -979
- package/dist/components/context-menu/context-menu.css +1 -1144
- package/dist/components/date-picker/date-picker.css +22 -1188
- package/dist/components/drawer/drawer.css +27 -1007
- package/dist/components/dropdown/dropdown.css +0 -978
- package/dist/components/form-field/form.css +4 -980
- package/dist/components/input/input.css +0 -1176
- package/dist/components/menu/menu.css +3 -980
- package/dist/components/modal/modal.css +5 -982
- package/dist/components/pagination/pagination.css +4 -980
- package/dist/components/radio/radio.css +4 -980
- package/dist/components/scroll-area/scroll-area.css +11 -984
- package/dist/components/select/mobile-select.css +2 -979
- package/dist/components/select/select.css +8 -1181
- package/dist/components/spinner/spinner.css +3 -990
- package/dist/components/splitter/splitter.css +7 -981
- package/dist/components/switch/switch.css +8 -984
- package/dist/components/table/table.css +13 -995
- package/dist/components/tabs/tabs.css +4 -980
- package/dist/components/tag/tag.css +6 -980
- package/dist/components/textarea/textarea.css +0 -1176
- package/dist/index.d.ts +32 -30
- package/dist/index.js +2 -0
- package/dist/layouts/stack/layout.css +0 -978
- package/dist/theme/control.css +10 -1000
- package/dist/theme/theme.css +71 -902
- package/package.json +1 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,30 +1,32 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export {
|
|
4
|
-
export {
|
|
5
|
-
export {
|
|
6
|
-
export {
|
|
7
|
-
export {
|
|
8
|
-
export {
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
12
|
-
export {
|
|
13
|
-
export {
|
|
14
|
-
export {
|
|
15
|
-
export {
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
18
|
-
export {
|
|
19
|
-
export {
|
|
20
|
-
export {
|
|
21
|
-
export {
|
|
22
|
-
export {
|
|
23
|
-
export {
|
|
24
|
-
export {
|
|
25
|
-
export { type
|
|
26
|
-
export {
|
|
27
|
-
export {
|
|
28
|
-
export {
|
|
29
|
-
export {
|
|
30
|
-
export {
|
|
1
|
+
import "./theme/theme.css";
|
|
2
|
+
import "./theme/control.css";
|
|
3
|
+
export { Breadcrumb, type BreadcrumbItemType, type BreadcrumbProps, type BreadcrumbSemanticPart, } from "./components/breadcrumb/breadcrumb";
|
|
4
|
+
export { Button, type ButtonProps, type ButtonSemanticPart, } from "./components/button/button";
|
|
5
|
+
export { Checkbox, CheckboxGroup, type CheckboxGroupProps, type CheckboxOptionType, type CheckboxProps, type CheckboxSemanticPart, } from "./components/checkbox/checkbox";
|
|
6
|
+
export { Collapsible, type CollapsibleContentProps, type CollapsibleProps, type CollapsibleSemanticPart, type CollapsibleTriggerProps, } from "./components/collapsible/collapsible";
|
|
7
|
+
export { ContextMenu, type ContextMenuProps, type ContextMenuSemanticPart, } from "./components/context-menu/context-menu";
|
|
8
|
+
export { DatePicker, type DatePickerProps, } from "./components/date-picker/date-picker";
|
|
9
|
+
export { RangePicker, type RangePickerProps, } from "./components/date-picker/range-picker";
|
|
10
|
+
export { Drawer, type DrawerPlacement, type DrawerProps, type DrawerResizableConfig, type DrawerSemanticPart, type DrawerSize, } from "./components/drawer/drawer";
|
|
11
|
+
export { Dropdown, type DropdownButtonProps, type DropdownPlacement, type DropdownProps, type DropdownSemanticPart, type DropdownTrigger, type MenuDividerType, type MenuGroupType, type MenuItem, type MenuItemType, type MenuProps, } from "./components/dropdown/dropdown";
|
|
12
|
+
export { FormActions, type FormActionsProps, type FormActionsSemanticPart, } from "./components/form-actions/form-actions";
|
|
13
|
+
export { FormField, type FormFieldProps, type FormFieldSemanticPart, } from "./components/form-field/form-field";
|
|
14
|
+
export { FormSection, type FormSectionProps, type FormSectionSemanticPart, } from "./components/form-section/form-section";
|
|
15
|
+
export { Input, type InputProps, type InputSemanticPart, } from "./components/input/input";
|
|
16
|
+
export { type ConfirmType, Modal, type ModalFooterRender, type ModalFuncProps, type ModalFuncReturn, type ModalHookApi, type ModalProps, type ModalSemanticPart, } from "./components/modal";
|
|
17
|
+
export { Pagination, type PaginationProps, type PaginationSemanticPart, } from "./components/pagination/pagination";
|
|
18
|
+
export { Radio, RadioGroup, type RadioGroupProps, type RadioOptionType, type RadioProps, type RadioSemanticPart, } from "./components/radio/radio";
|
|
19
|
+
export { ScrollArea, type ScrollAreaProps, type ScrollAreaSemanticPart, type ScrollAreaType, } from "./components/scroll-area/scroll-area";
|
|
20
|
+
export { ChevronsUpDownIcon, Select, type SelectOption, type SelectPlacement, type SelectProps, type SelectSemanticPart, } from "./components/select/select";
|
|
21
|
+
export { Spinner, type SpinnerProps, type SpinnerSemanticPart, } from "./components/spinner/spinner";
|
|
22
|
+
export { Splitter, type SplitterPanelProps, type SplitterProps, type SplitterSemanticPart, } from "./components/splitter/splitter";
|
|
23
|
+
export { Switch, type SwitchProps, type SwitchSemanticPart, } from "./components/switch/switch";
|
|
24
|
+
export { type SorterResult, type SortOrder, Table, type TableColumn, type TableFilterItem, type TablePagination, type TableProps, type TableRowSelection, type TableSemanticPart, } from "./components/table/table";
|
|
25
|
+
export { type TabItem, Tabs, type TabsProps, type TabsSemanticPart, } from "./components/tabs/tabs";
|
|
26
|
+
export { CheckableTag, type CheckableTagProps, Tag, type TagColor, type TagProps, type TagSemanticPart, type TagVariant, } from "./components/tag/tag";
|
|
27
|
+
export { type AutoSizeOptions, Textarea, type TextareaProps, type TextareaSemanticPart, } from "./components/textarea/textarea";
|
|
28
|
+
export { FormLayout, type FormLayoutProps, } from "./layouts/form-layout/form-layout";
|
|
29
|
+
export { Stack, type StackProps } from "./layouts/stack/stack";
|
|
30
|
+
export { type FormatOptions, NumberInput, type NumberInputProps, type PadDecimalsOnBlur, type UseNumberInputOptions, type UseNumberInputReturn, useNumberInput, } from "./number-input";
|
|
31
|
+
export { TaoPortalScope, TaoProvider, type TaoProviderProps, type TaoSeedToken, type TaoSize, type TaoThemeConfig, type TaoVariant, useTaoConfig, } from "./provider/tao-provider";
|
|
32
|
+
export { cx, type SemanticClassNames, type SemanticStyles, } from "./utils/semantic";
|
package/dist/index.js
CHANGED