@dt-frames/ui 1.0.32 → 1.0.33

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 (32) hide show
  1. package/es/assets/locales/en.json +2 -1
  2. package/es/assets/locales/zh.json +3 -2
  3. package/es/components/index.d.ts +1 -2
  4. package/es/components/table/src/components/TableActions.d.ts +1 -1
  5. package/es/components/table/src/components/setting/Download.d.ts +1 -1
  6. package/es/components/table/src/index.d.ts +10 -10
  7. package/es/index.js +171 -852
  8. package/es/style/assets/style/index.less +10 -0
  9. package/es/style/assets/style/reset.less +17 -0
  10. package/es/style/components/container/index.less +85 -0
  11. package/es/style/components/forms/index.less +107 -0
  12. package/es/style/components/icons/index.less +108 -0
  13. package/es/style/components/iframe/index.less +3 -0
  14. package/es/style/components/iframe/src/index.less +3 -0
  15. package/es/style/components/modal/index.less +60 -0
  16. package/es/style/components/table/index.less +217 -0
  17. package/es/style/components/tree/index.less +53 -0
  18. package/es/style/theme/footer/index.less +16 -0
  19. package/es/style/theme/header/index.less +451 -0
  20. package/es/style/theme/header/set-theme.less +68 -0
  21. package/es/style/theme/sider/index.less +212 -0
  22. package/es/style/theme/tabs/index.less +165 -0
  23. package/es/style/theme/theme.less +73 -0
  24. package/es/style/theme/transition.less +105 -0
  25. package/es/theme/content/index.d.ts +44 -0
  26. package/es/theme/header/components/setting-theme.d.ts +2604 -0
  27. package/es/theme/header/components/user-info.d.ts +8318 -0
  28. package/es/theme/sider/components/basic-menu/basic-menu.d.ts +1 -1
  29. package/es/theme/tabs/components/TabContent.d.ts +1 -1
  30. package/es/theme/tabs/components/TabRedo.d.ts +64 -0
  31. package/es/theme/tabs/index.d.ts +1429 -0
  32. package/package.json +1 -1
@@ -125,7 +125,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
125
125
  'onUpdate:openKeys': import("vue").PropType<(keys: import("ant-design-vue/lib/_util/type").Key[]) => void>;
126
126
  'onUpdate:selectedKeys': import("vue").PropType<(keys: import("ant-design-vue/lib/_util/type").Key[]) => void>;
127
127
  'onUpdate:activeKey': import("vue").PropType<(key: import("ant-design-vue/lib/_util/type").Key) => void>;
128
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "mode" | "multiple" | "selectable" | "inlineCollapsed" | "disabledOverflow" | "forceSubMenuRender" | "theme" | "inlineIndent" | "subMenuOpenDelay" | "subMenuCloseDelay" | "triggerSubMenuAction">;
128
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "mode" | "selectable" | "multiple" | "inlineCollapsed" | "disabledOverflow" | "forceSubMenuRender" | "theme" | "inlineIndent" | "subMenuOpenDelay" | "subMenuCloseDelay" | "triggerSubMenuAction">;
129
129
  $attrs: {
130
130
  [x: string]: unknown;
131
131
  };
@@ -501,7 +501,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
501
501
  'onUpdate:openKeys': import("vue").PropType<(keys: import("ant-design-vue/lib/_util/type").Key[]) => void>;
502
502
  'onUpdate:selectedKeys': import("vue").PropType<(keys: import("ant-design-vue/lib/_util/type").Key[]) => void>;
503
503
  'onUpdate:activeKey': import("vue").PropType<(key: import("ant-design-vue/lib/_util/type").Key) => void>;
504
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "mode" | "multiple" | "selectable" | "inlineCollapsed" | "disabledOverflow" | "forceSubMenuRender" | "theme" | "inlineIndent" | "subMenuOpenDelay" | "subMenuCloseDelay" | "triggerSubMenuAction">;
504
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "mode" | "selectable" | "multiple" | "inlineCollapsed" | "disabledOverflow" | "forceSubMenuRender" | "theme" | "inlineIndent" | "subMenuOpenDelay" | "subMenuCloseDelay" | "triggerSubMenuAction">;
505
505
  $attrs: {
506
506
  [x: string]: unknown;
507
507
  };
@@ -0,0 +1,64 @@
1
+ declare const _sfc_main: import("vue").DefineComponent<{}, {
2
+ tabStore: import("pinia").Store<"route-reuse", import("@dt-frames/core/es/store/routeReuse").RouteReuseState, {
3
+ getTabList(): import("vue-router").RouteLocationNormalized[];
4
+ getCachedTabList(): string[];
5
+ getLastDragEndIndex(): number;
6
+ }, {
7
+ addTab(route: import("vue-router").RouteLocationNormalized): Promise<void>;
8
+ closeTab(path: string, router: import("vue-router").Router): void;
9
+ closeAllTab(currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>, router: import("vue-router").Router): void;
10
+ closeLeftTabs(path: string): void;
11
+ closeRightTabs(path: string): void;
12
+ closeOtherTabs(path: string): void;
13
+ bulkCloseTabs(pathList: string[]): void;
14
+ updateCacheTab(): void;
15
+ refreshPage(router: import("vue-router").Router): Promise<void>;
16
+ sortTabs(oldIndex: number, newIndex: number): void;
17
+ }>;
18
+ router: any;
19
+ handleRedo: () => void;
20
+ DtIcon: import("vue").DefineComponent<{
21
+ iconClass: {
22
+ type: StringConstructor;
23
+ required: true;
24
+ };
25
+ className: {
26
+ type: (StringConstructor | ArrayConstructor)[];
27
+ default: string;
28
+ };
29
+ color: {
30
+ type: StringConstructor;
31
+ default: string;
32
+ };
33
+ size: {
34
+ type: NumberConstructor;
35
+ default: number;
36
+ };
37
+ }, {
38
+ isSvgIcon: import("vue").ComputedRef<boolean>;
39
+ iconName: import("vue").ComputedRef<string>;
40
+ clsName: import("vue").ComputedRef<string>;
41
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
42
+ iconClass: {
43
+ type: StringConstructor;
44
+ required: true;
45
+ };
46
+ className: {
47
+ type: (StringConstructor | ArrayConstructor)[];
48
+ default: string;
49
+ };
50
+ color: {
51
+ type: StringConstructor;
52
+ default: string;
53
+ };
54
+ size: {
55
+ type: NumberConstructor;
56
+ default: number;
57
+ };
58
+ }>>, {
59
+ className: string | unknown[];
60
+ color: string;
61
+ size: number;
62
+ }>;
63
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
64
+ export default _sfc_main;