@dt-frames/ui 2.0.0 → 2.0.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.
Files changed (220) hide show
  1. package/es/assets/data/icons/actions.d.ts +1 -0
  2. package/es/assets/data/icons/actions.ts +423 -0
  3. package/es/assets/data/icons/code.d.ts +1 -0
  4. package/es/assets/data/icons/code.ts +10 -0
  5. package/es/assets/data/icons/commuticate.d.ts +1 -0
  6. package/es/assets/data/icons/commuticate.ts +182 -0
  7. package/es/assets/data/icons/currency.d.ts +1 -0
  8. package/es/assets/data/icons/currency.ts +44 -0
  9. package/es/assets/data/icons/devices.d.ts +1 -0
  10. package/es/assets/data/icons/devices.ts +126 -0
  11. package/es/assets/data/icons/edit.d.ts +1 -0
  12. package/es/assets/data/icons/edit.ts +163 -0
  13. package/es/assets/data/icons/file.d.ts +1 -0
  14. package/es/assets/data/icons/file.ts +99 -0
  15. package/es/assets/data/icons/math.d.ts +1 -0
  16. package/es/assets/data/icons/math.ts +53 -0
  17. package/es/assets/data/icons/message.d.ts +1 -0
  18. package/es/assets/data/icons/message.ts +68 -0
  19. package/es/assets/data/icons/navigate.d.ts +1 -0
  20. package/es/assets/data/icons/navigate.ts +181 -0
  21. package/es/assets/data/icons/other.d.ts +1 -0
  22. package/es/assets/data/icons/other.ts +324 -0
  23. package/es/assets/data/index.d.ts +4 -0
  24. package/es/assets/data/index.ts +58 -0
  25. package/es/assets/icons/iconfont.css +7266 -0
  26. package/es/assets/icons/iconfont.eot +0 -0
  27. package/es/assets/icons/iconfont.svg +5445 -0
  28. package/es/assets/icons/iconfont.ttf +0 -0
  29. package/es/assets/icons/iconfont.woff +0 -0
  30. package/es/assets/icons/iconfont.woff2 +0 -0
  31. package/es/assets/imgs/header/avatar.png +0 -0
  32. package/es/assets/imgs/logo/logo.png +0 -0
  33. package/es/assets/imgs/table/empty.png +0 -0
  34. package/es/assets/locales/en.d.ts +101 -0
  35. package/es/assets/locales/en.ts +101 -0
  36. package/es/assets/locales/index.d.ts +2 -0
  37. package/es/assets/locales/index.ts +5 -0
  38. package/es/assets/locales/zh.d.ts +103 -0
  39. package/es/assets/locales/zh.ts +103 -0
  40. package/es/components/container/index.d.ts +93 -0
  41. package/es/components/container/index.js +288 -0
  42. package/es/components/container/index.less +64 -0
  43. package/es/components/container/src/components/bar.d.ts +14 -0
  44. package/es/components/container/src/components/scroll-bar.d.ts +70 -0
  45. package/es/components/container/src/hooks/scroll.d.ts +10 -0
  46. package/es/components/container/src/scroll-container.d.ts +76 -0
  47. package/es/components/container/src/slot-container.d.ts +18 -0
  48. package/es/components/container/src/types/scroll.type.d.ts +22 -0
  49. package/es/components/container/src/utils/scroll.d.ts +5 -0
  50. package/es/components/curd/index.d.ts +2 -0
  51. package/es/components/curd/index.js +3098 -0
  52. package/es/components/curd/src/components/Curd.d.ts +1451 -0
  53. package/es/components/curd/src/hooks/useCurd.d.ts +112 -0
  54. package/es/components/curd/src/props.d.ts +188 -0
  55. package/es/components/curd/src/types/curd.type.d.ts +19 -0
  56. package/es/components/drawer/index.d.ts +8041 -0
  57. package/es/components/drawer/index.js +837 -0
  58. package/es/components/drawer/index.less +10 -0
  59. package/es/components/drawer/src/components/DrawerFooter.d.ts +139 -0
  60. package/es/components/drawer/src/components/DrawerHeader.d.ts +13 -0
  61. package/es/components/drawer/src/hooks/useDrawer.d.ts +3 -0
  62. package/es/components/drawer/src/index.d.ts +8043 -0
  63. package/es/components/drawer/src/props.d.ts +64 -0
  64. package/es/components/drawer/src/types/index.type.d.ts +48 -0
  65. package/es/components/form/index.d.ts +3367 -0
  66. package/es/components/form/index.js +1895 -0
  67. package/es/components/form/index.less +141 -0
  68. package/es/components/form/src/components/FormButtons.d.ts +88 -0
  69. package/es/components/form/src/components/FormItem.d.ts +313 -0
  70. package/es/components/form/src/components/componentMap.d.ts +4 -0
  71. package/es/components/form/src/components/formIcon.d.ts +1231 -0
  72. package/es/components/form/src/components/formInputUseDialog.d.ts +911 -0
  73. package/es/components/form/src/components/index.d.ts +4 -0
  74. package/es/components/form/src/components/radioButton.d.ts +34 -0
  75. package/es/components/form/src/enums/index.d.ts +7 -0
  76. package/es/components/form/src/hooks/helper.d.ts +14 -0
  77. package/es/components/form/src/hooks/useForm.d.ts +6 -0
  78. package/es/components/form/src/hooks/useFormActions.d.ts +12 -0
  79. package/es/components/form/src/hooks/useFormEvent.d.ts +25 -0
  80. package/es/components/form/src/hooks/useFormValue.d.ts +3 -0
  81. package/es/components/form/src/hooks/useFormValues.d.ts +11 -0
  82. package/es/components/form/src/hooks/useLabelWidth.d.ts +22 -0
  83. package/es/components/form/src/index.d.ts +3113 -0
  84. package/es/components/form/src/props.d.ts +133 -0
  85. package/es/components/form/src/types/actions.type.d.ts +15 -0
  86. package/es/components/form/src/types/form.type.d.ts +70 -0
  87. package/es/components/icons/index.d.ts +3 -0
  88. package/es/components/icons/index.js +1969 -0
  89. package/es/components/icons/index.less +42 -0
  90. package/es/components/icons/src/pick-icon.d.ts +455 -0
  91. package/es/components/icons/src/svg-icon.d.ts +44 -0
  92. package/es/components/modal/index.d.ts +3 -0
  93. package/es/components/modal/index.js +1192 -0
  94. package/es/components/modal/index.less +54 -0
  95. package/es/components/modal/src/components/CloseIcon.d.ts +40 -0
  96. package/es/components/modal/src/components/Modal.d.ts +215 -0
  97. package/es/components/modal/src/components/ModalFooter.d.ts +139 -0
  98. package/es/components/modal/src/components/ModalWrap.d.ts +153 -0
  99. package/es/components/modal/src/hooks/useDrag.d.ts +7 -0
  100. package/es/components/modal/src/hooks/useFullScreen.d.ts +6 -0
  101. package/es/components/modal/src/hooks/useModal.d.ts +5 -0
  102. package/es/components/modal/src/index.d.ts +881 -0
  103. package/es/components/modal/src/props.d.ts +100 -0
  104. package/es/components/modal/src/types/modal.type.d.ts +17 -0
  105. package/es/components/source/hooks/useDownload.d.ts +8 -0
  106. package/es/components/source/hooks/useSource.d.ts +40 -0
  107. package/es/components/source/index.d.ts +2 -0
  108. package/es/components/source/index.js +331 -0
  109. package/es/components/source/types/source.type.d.ts +37 -0
  110. package/es/components/source/utils/index.d.ts +8 -0
  111. package/es/components/table/index.d.ts +3 -0
  112. package/es/components/table/index.js +4414 -0
  113. package/es/components/table/index.less +183 -0
  114. package/es/components/table/src/components/TableAction.d.ts +70 -0
  115. package/es/components/table/src/components/TableHeader.d.ts +1243 -0
  116. package/es/components/table/src/components/TableRender.d.ts +13 -0
  117. package/es/components/table/src/components/editTable/CellComponent.d.ts +22 -0
  118. package/es/components/table/src/components/editTable/EditTableCell.d.ts +93 -0
  119. package/es/components/table/src/components/editTable/componentMap.d.ts +4 -0
  120. package/es/components/table/src/components/editTable/index.d.ts +9 -0
  121. package/es/components/table/src/components/editTable/props.d.ts +27 -0
  122. package/es/components/table/src/components/tableSetting/Column.d.ts +69 -0
  123. package/es/components/table/src/components/tableSetting/Download.d.ts +1029 -0
  124. package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +995 -0
  125. package/es/components/table/src/components/tableSetting/Fullscreen.d.ts +22 -0
  126. package/es/components/table/src/components/tableSetting/index.d.ts +1137 -0
  127. package/es/components/table/src/hooks/useColumns.d.ts +14 -0
  128. package/es/components/table/src/hooks/useCustomRow.d.ts +20 -0
  129. package/es/components/table/src/hooks/useDataSource.d.ts +16 -0
  130. package/es/components/table/src/hooks/useHeader.d.ts +8 -0
  131. package/es/components/table/src/hooks/useHeaderCode.d.ts +3 -0
  132. package/es/components/table/src/hooks/useLoading.d.ts +6 -0
  133. package/es/components/table/src/hooks/usePagination.d.ts +122 -0
  134. package/es/components/table/src/hooks/useRow.d.ts +5 -0
  135. package/es/components/table/src/hooks/useRowSelection.d.ts +12 -0
  136. package/es/components/table/src/hooks/useTable.d.ts +9 -0
  137. package/es/components/table/src/hooks/useTableInstance.d.ts +16 -0
  138. package/es/components/table/src/hooks/useTableScroll.d.ts +13 -0
  139. package/es/components/table/src/index.d.ts +990 -0
  140. package/es/components/table/src/props.d.ts +244 -0
  141. package/es/components/table/src/types/actions.type.d.ts +22 -0
  142. package/es/components/table/src/types/header.type.d.ts +23 -0
  143. package/es/components/table/src/types/table.type.d.ts +92 -0
  144. package/es/directives/icon.d.ts +2 -0
  145. package/es/directives/index.d.ts +7 -0
  146. package/es/directives/index.js +2015 -0
  147. package/es/directives/permission.d.ts +2 -0
  148. package/es/global.d.ts +7 -0
  149. package/es/index.d.ts +1 -0
  150. package/es/index.js +3242 -0
  151. package/es/theme/index.d.ts +10 -0
  152. package/es/theme/index.js +3242 -0
  153. package/es/theme/index.less +603 -0
  154. package/es/theme/src/components/content/index.d.ts +27 -0
  155. package/es/theme/src/components/feature/back-top.d.ts +5 -0
  156. package/es/theme/src/components/feature/index.d.ts +7 -0
  157. package/es/theme/src/components/footer/index.d.ts +31 -0
  158. package/es/theme/src/components/header/components/bread-crumb.d.ts +6 -0
  159. package/es/theme/src/components/header/components/fullscreen.d.ts +5 -0
  160. package/es/theme/src/components/header/components/index.d.ts +11 -0
  161. package/es/theme/src/components/header/components/lang-picker.d.ts +23 -0
  162. package/es/theme/src/components/header/components/logo.d.ts +36 -0
  163. package/es/theme/src/components/header/components/menu-filter.d.ts +22 -0
  164. package/es/theme/src/components/header/components/notify.d.ts +23 -0
  165. package/es/theme/src/components/header/components/setting-theme.d.ts +222 -0
  166. package/es/theme/src/components/header/components/size.d.ts +282 -0
  167. package/es/theme/src/components/header/components/theme-drawer/feature.d.ts +138 -0
  168. package/es/theme/src/components/header/components/theme-drawer/index.d.ts +3 -0
  169. package/es/theme/src/components/header/components/theme-drawer/menu-type.d.ts +16 -0
  170. package/es/theme/src/components/header/components/theme-drawer/select.d.ts +58 -0
  171. package/es/theme/src/components/header/components/theme-drawer/switch.d.ts +49 -0
  172. package/es/theme/src/components/header/components/trigger.d.ts +10 -0
  173. package/es/theme/src/components/header/components/user-info.d.ts +36 -0
  174. package/es/theme/src/components/header/helper/change-theme.d.ts +13 -0
  175. package/es/theme/src/components/header/helper/menu-tree.d.ts +3 -0
  176. package/es/theme/src/components/header/index.d.ts +698 -0
  177. package/es/theme/src/components/header/multiple-header.d.ts +787 -0
  178. package/es/theme/src/components/sider/components/basic-menu/basic-menu-item.d.ts +62 -0
  179. package/es/theme/src/components/sider/components/basic-menu/basic-menu.d.ts +207 -0
  180. package/es/theme/src/components/sider/components/basic-menu/basic-sub-menu-item.d.ts +127 -0
  181. package/es/theme/src/components/sider/components/basic-menu/menu-item-content.d.ts +26 -0
  182. package/es/theme/src/components/sider/components/drag-bar.d.ts +14 -0
  183. package/es/theme/src/components/sider/components/layout-menu.d.ts +22 -0
  184. package/es/theme/src/components/sider/components/props.d.ts +69 -0
  185. package/es/theme/src/components/sider/components/sider-trigger.d.ts +18 -0
  186. package/es/theme/src/components/sider/helper/sider.d.ts +12 -0
  187. package/es/theme/src/components/sider/helper/split-menu.d.ts +10 -0
  188. package/es/theme/src/components/sider/index.d.ts +70 -0
  189. package/es/theme/src/components/tabs/components/TabContent.d.ts +6 -0
  190. package/es/theme/src/components/tabs/components/TabRedo.d.ts +21 -0
  191. package/es/theme/src/components/tabs/components/index.d.ts +3 -0
  192. package/es/theme/src/components/tabs/hooks/useMultifyTabs.d.ts +7 -0
  193. package/es/theme/src/components/tabs/hooks/useTabDropdown.d.ts +6 -0
  194. package/es/theme/src/components/tabs/index.d.ts +63 -0
  195. package/es/theme/src/components/tabs/types/tabs.type.d.ts +7 -0
  196. package/es/theme/src/enums/index.d.ts +1 -0
  197. package/es/theme/src/enums/theme.enum.d.ts +33 -0
  198. package/es/theme/src/hooks/index.d.ts +6 -0
  199. package/es/theme/src/hooks/useDragLine.d.ts +2 -0
  200. package/es/theme/src/hooks/useHeader.d.ts +25 -0
  201. package/es/theme/src/hooks/useMenu.d.ts +27 -0
  202. package/es/theme/src/hooks/useMultifyTab.d.ts +7 -0
  203. package/es/theme/src/hooks/useOpenKeys.d.ts +7 -0
  204. package/es/theme/src/hooks/useTheme.d.ts +9 -0
  205. package/es/theme/src/index.d.ts +1644 -0
  206. package/es/theme/src/setting/theme.setting.d.ts +2 -0
  207. package/es/theme/src/stores/index.d.ts +3 -0
  208. package/es/theme/src/stores/routeReuse.store.d.ts +23 -0
  209. package/es/theme/src/stores/theme.store.d.ts +15 -0
  210. package/es/theme/src/types/index.d.ts +3 -0
  211. package/es/theme/src/types/menu.type.d.ts +15 -0
  212. package/es/theme/src/types/theme.type.d.ts +60 -0
  213. package/es/utils/withInstall.d.ts +4 -0
  214. package/index.d.ts +10 -0
  215. package/index.js +34 -0
  216. package/package.json +1 -5
  217. package/tailwind.config.cjs +11 -0
  218. package/tsconfig.json +41 -0
  219. package/tsconfig.node.json +9 -0
  220. package/vite.config.ts +78 -0
@@ -0,0 +1,138 @@
1
+ import { unref } from 'vue';
2
+ import { ContentMode } from '../../../../../src/enums';
3
+ import { HandlerEnum } from '../../helper/change-theme';
4
+ declare const _sfc_main: import("vue").DefineComponent<{}, {
5
+ t: {
6
+ (key: string): string;
7
+ (key: string, locale: string): string;
8
+ (key: string, locale: string, list: unknown[]): string;
9
+ (key: string, locale: string, named: Record<string, unknown>): string;
10
+ (key: string, list: unknown[]): string;
11
+ (key: string, named: Record<string, unknown>): string;
12
+ };
13
+ getShowBread: import("vue").ComputedRef<boolean>;
14
+ getShowSearch: import("vue").ComputedRef<boolean>;
15
+ getShowUiSize: import("vue").ComputedRef<boolean>;
16
+ getShowNotice: import("vue").ComputedRef<boolean>;
17
+ getShowFullScreen: import("vue").ComputedRef<boolean>;
18
+ getShowLocale: import("vue").ComputedRef<boolean>;
19
+ getShowMultipleTab: import("vue").ComputedRef<boolean>;
20
+ getShowFooter: import("vue").ComputedRef<any>;
21
+ getContentMode: import("vue").ComputedRef<ContentMode>;
22
+ switchItems: {
23
+ title: string;
24
+ event: HandlerEnum;
25
+ def: import("vue").ComputedRef<any>;
26
+ }[];
27
+ selectItems: {
28
+ title: string;
29
+ event: HandlerEnum;
30
+ def: import("vue").ComputedRef<ContentMode>;
31
+ options: {
32
+ value: ContentMode;
33
+ label: string;
34
+ }[];
35
+ }[];
36
+ unref: typeof unref;
37
+ DtTSelect: import("vue").DefineComponent<{
38
+ event: {
39
+ type: import("vue").PropType<HandlerEnum>;
40
+ };
41
+ disabled: {
42
+ type: BooleanConstructor;
43
+ };
44
+ title: {
45
+ type: StringConstructor;
46
+ };
47
+ def: {
48
+ type: import("vue").PropType<string | number>;
49
+ };
50
+ initValue: {
51
+ type: import("vue").PropType<string | number>;
52
+ };
53
+ options: {
54
+ type: import("vue").PropType<import("ant-design-vue/es/select").DefaultOptionType[]>;
55
+ default: () => any[];
56
+ };
57
+ }, {
58
+ props: any;
59
+ getBindValue: import("vue").ComputedRef<{
60
+ value: string | number;
61
+ defaultValue: string | number;
62
+ } | {
63
+ value?: undefined;
64
+ defaultValue?: undefined;
65
+ }>;
66
+ handleChange: (val: any) => void;
67
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
68
+ event: {
69
+ type: import("vue").PropType<HandlerEnum>;
70
+ };
71
+ disabled: {
72
+ type: BooleanConstructor;
73
+ };
74
+ title: {
75
+ type: StringConstructor;
76
+ };
77
+ def: {
78
+ type: import("vue").PropType<string | number>;
79
+ };
80
+ initValue: {
81
+ type: import("vue").PropType<string | number>;
82
+ };
83
+ options: {
84
+ type: import("vue").PropType<import("ant-design-vue/es/select").DefaultOptionType[]>;
85
+ default: () => any[];
86
+ };
87
+ }>>, {
88
+ disabled: boolean;
89
+ options: import("ant-design-vue/es/select").DefaultOptionType[];
90
+ }>;
91
+ DtTSwitch: import("vue").DefineComponent<{
92
+ event: {
93
+ type: import("vue").PropType<HandlerEnum>;
94
+ };
95
+ disabled: {
96
+ type: BooleanConstructor;
97
+ };
98
+ title: {
99
+ type: StringConstructor;
100
+ };
101
+ def: {
102
+ type: BooleanConstructor;
103
+ };
104
+ }, {
105
+ t: {
106
+ (key: string): string;
107
+ (key: string, locale: string): string;
108
+ (key: string, locale: string, list: unknown[]): string;
109
+ (key: string, locale: string, named: Record<string, unknown>): string;
110
+ (key: string, list: unknown[]): string;
111
+ (key: string, named: Record<string, unknown>): string;
112
+ };
113
+ props: any;
114
+ getBindValue: import("vue").ComputedRef<{
115
+ checked: true;
116
+ } | {
117
+ checked?: undefined;
118
+ }>;
119
+ handleChange: (e: any) => void;
120
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
121
+ event: {
122
+ type: import("vue").PropType<HandlerEnum>;
123
+ };
124
+ disabled: {
125
+ type: BooleanConstructor;
126
+ };
127
+ title: {
128
+ type: StringConstructor;
129
+ };
130
+ def: {
131
+ type: BooleanConstructor;
132
+ };
133
+ }>>, {
134
+ def: boolean;
135
+ disabled: boolean;
136
+ }>;
137
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
138
+ export default _sfc_main;
@@ -0,0 +1,3 @@
1
+ import { default as DtMenuType } from "./menu-type";
2
+ import { default as DtFeature } from "./feature";
3
+ export { DtMenuType, DtFeature };
@@ -0,0 +1,16 @@
1
+ import { MenuMode, MenuType, Theme } from '../../../../../src/enums';
2
+ declare type Menu = {
3
+ title: string;
4
+ headTheme: Theme;
5
+ menuTheme: Theme;
6
+ mode: MenuMode;
7
+ type: MenuType;
8
+ split: boolean;
9
+ };
10
+ declare const _sfc_main: import("vue").DefineComponent<{}, {
11
+ getMenuType: import("vue").ComputedRef<MenuType>;
12
+ getMenuMode: import("vue").ComputedRef<MenuMode>;
13
+ menuTypeList: Menu[];
14
+ changeMenuType: (item: Menu) => void;
15
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
16
+ export default _sfc_main;
@@ -0,0 +1,58 @@
1
+ import { PropType } from 'vue';
2
+ import type { DefaultOptionType } from 'ant-design-vue/es/select';
3
+ import { HandlerEnum } from '../../helper/change-theme';
4
+ declare const _sfc_main: import("vue").DefineComponent<{
5
+ event: {
6
+ type: PropType<HandlerEnum>;
7
+ };
8
+ disabled: {
9
+ type: BooleanConstructor;
10
+ };
11
+ title: {
12
+ type: StringConstructor;
13
+ };
14
+ def: {
15
+ type: PropType<string | number>;
16
+ };
17
+ initValue: {
18
+ type: PropType<string | number>;
19
+ };
20
+ options: {
21
+ type: PropType<DefaultOptionType[]>;
22
+ default: () => any[];
23
+ };
24
+ }, {
25
+ props: any;
26
+ getBindValue: import("vue").ComputedRef<{
27
+ value: string | number;
28
+ defaultValue: string | number;
29
+ } | {
30
+ value?: undefined;
31
+ defaultValue?: undefined;
32
+ }>;
33
+ handleChange: (val: any) => void;
34
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
35
+ event: {
36
+ type: PropType<HandlerEnum>;
37
+ };
38
+ disabled: {
39
+ type: BooleanConstructor;
40
+ };
41
+ title: {
42
+ type: StringConstructor;
43
+ };
44
+ def: {
45
+ type: PropType<string | number>;
46
+ };
47
+ initValue: {
48
+ type: PropType<string | number>;
49
+ };
50
+ options: {
51
+ type: PropType<DefaultOptionType[]>;
52
+ default: () => any[];
53
+ };
54
+ }>>, {
55
+ disabled: boolean;
56
+ options: DefaultOptionType[];
57
+ }>;
58
+ export default _sfc_main;
@@ -0,0 +1,49 @@
1
+ import { PropType } from 'vue';
2
+ import { HandlerEnum } from '../../helper/change-theme';
3
+ declare const _sfc_main: import("vue").DefineComponent<{
4
+ event: {
5
+ type: PropType<HandlerEnum>;
6
+ };
7
+ disabled: {
8
+ type: BooleanConstructor;
9
+ };
10
+ title: {
11
+ type: StringConstructor;
12
+ };
13
+ def: {
14
+ type: BooleanConstructor;
15
+ };
16
+ }, {
17
+ t: {
18
+ (key: string): string;
19
+ (key: string, locale: string): string;
20
+ (key: string, locale: string, list: unknown[]): string;
21
+ (key: string, locale: string, named: Record<string, unknown>): string;
22
+ (key: string, list: unknown[]): string;
23
+ (key: string, named: Record<string, unknown>): string;
24
+ };
25
+ props: any;
26
+ getBindValue: import("vue").ComputedRef<{
27
+ checked: true;
28
+ } | {
29
+ checked?: undefined;
30
+ }>;
31
+ handleChange: (e: any) => void;
32
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
33
+ event: {
34
+ type: PropType<HandlerEnum>;
35
+ };
36
+ disabled: {
37
+ type: BooleanConstructor;
38
+ };
39
+ title: {
40
+ type: StringConstructor;
41
+ };
42
+ def: {
43
+ type: BooleanConstructor;
44
+ };
45
+ }>>, {
46
+ def: boolean;
47
+ disabled: boolean;
48
+ }>;
49
+ export default _sfc_main;
@@ -0,0 +1,10 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{
2
+ theme: StringConstructor;
3
+ }, {
4
+ props: any;
5
+ getCollapsed: import("vue").ComputedRef<boolean>;
6
+ toggleCollapsed: () => void;
7
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
8
+ theme: StringConstructor;
9
+ }>>, {}>;
10
+ export default _sfc_main;
@@ -0,0 +1,36 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {
2
+ t: {
3
+ (key: string): string;
4
+ (key: string, locale: string): string;
5
+ (key: string, locale: string, list: unknown[]): string;
6
+ (key: string, locale: string, named: Record<string, unknown>): string;
7
+ (key: string, list: unknown[]): string;
8
+ (key: string, named: Record<string, unknown>): string;
9
+ };
10
+ go: (path: string, isReplace?: boolean) => void;
11
+ getShowLoginOut: import("vue").ComputedRef<boolean>;
12
+ loginOutClick: () => {};
13
+ slots: {
14
+ [name: string]: import("vue").Slot;
15
+ };
16
+ getUserInfo: any;
17
+ signOut: () => void;
18
+ readonly DtSlotContainer: import("../../../../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
19
+ template: {
20
+ type: FunctionConstructor;
21
+ };
22
+ data: {
23
+ type: ObjectConstructor;
24
+ };
25
+ }, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
26
+ [key: string]: any;
27
+ }>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
28
+ template: {
29
+ type: FunctionConstructor;
30
+ };
31
+ data: {
32
+ type: ObjectConstructor;
33
+ };
34
+ }>>, {}>>;
35
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
36
+ export default _sfc_main;
@@ -0,0 +1,13 @@
1
+ export declare enum HandlerEnum {
2
+ CHANGE_LAYOUT = 0,
3
+ SHOW_BREADCRUMB = 1,
4
+ SHOW_SEARCH = 2,
5
+ SHOW_SIZE = 3,
6
+ SHOW_NOTICY = 4,
7
+ SHOW_FULL_SCREEN = 5,
8
+ SHOW_LOCAL = 6,
9
+ SHOW_ROUTE_REUSE = 7,
10
+ SHOW_FOOTER = 8,
11
+ CONTENT_MODE = 9
12
+ }
13
+ export declare function changeTheme(event: HandlerEnum, value?: any): void;
@@ -0,0 +1,3 @@
1
+ import { Menus } from "@dt-frames/core";
2
+ export declare function getBreadCrumb(path: string, menus?: Menus[]): Menus[];
3
+ export declare function getFilterMenu(filter?: string, flag?: boolean): any[];