@dt-frames/ui 2.0.6 → 2.0.8
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/es/components/curd/index.js +42 -67
- package/es/components/curd/src/components/Curd.d.ts +2 -8
- package/es/components/curd/src/hooks/useCurd.d.ts +3 -3
- package/es/components/curd/src/props.d.ts +1 -4
- package/es/components/curd/src/types/curd.type.d.ts +3 -9
- package/es/components/form/index.d.ts +30 -54
- package/es/components/form/index.js +74 -41
- package/es/components/form/index.less +1 -0
- package/es/components/form/src/components/FormButtons.d.ts +3 -3
- package/es/components/form/src/components/FormItem.d.ts +5 -8
- package/es/components/form/src/components/formIcon.d.ts +4 -4
- package/es/components/form/src/components/formInputUseDialog.d.ts +3 -3
- package/es/components/form/src/hooks/useFormEvent.d.ts +1 -1
- package/es/components/form/src/index.d.ts +24 -42
- package/es/components/form/src/props.d.ts +5 -8
- package/es/components/modal/index.js +3 -6
- package/es/components/modal/src/components/ModalFooter.d.ts +3 -3
- package/es/components/modal/src/index.d.ts +9 -9
- package/es/components/source/hooks/useSource.d.ts +14 -13
- package/es/components/source/index.js +62 -36
- package/es/components/table/index.js +151 -158
- package/es/components/table/src/index.d.ts +18 -54
- package/es/components/table/src/props.d.ts +6 -18
- package/es/components/table/src/types/table.type.d.ts +1 -4
- package/es/theme/index.d.ts +2 -2
- package/es/theme/index.js +299 -294
- package/es/theme/src/components/sider/index.d.ts +2 -1
- package/es/theme/src/components/sider/mix-sider.d.ts +2 -1
- package/es/theme/src/hooks/useMenu.d.ts +1 -1
- package/es/theme/src/index.d.ts +2 -1
- package/es/theme/src/types/theme.type.d.ts +0 -1
- package/index.js +3 -1
- package/package.json +1 -1
|
@@ -75,7 +75,8 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
75
75
|
getMixSideTrigger: import("vue").ComputedRef<"hover" | "click">;
|
|
76
76
|
setMixSiderIsHasMenu: (val: boolean) => void;
|
|
77
77
|
menuModules: any;
|
|
78
|
-
activeId:
|
|
78
|
+
activeId: any;
|
|
79
|
+
activePath: any;
|
|
79
80
|
subMenus: import("vue").Ref<any[]>;
|
|
80
81
|
getDomStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
81
82
|
getWrapStyle: import("vue").ComputedRef<import("vue").CSSProperties>;
|
|
@@ -8,7 +8,8 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
8
8
|
getMixSideTrigger: import("vue").ComputedRef<"hover" | "click">;
|
|
9
9
|
setMixSiderIsHasMenu: (val: boolean) => void;
|
|
10
10
|
menuModules: any;
|
|
11
|
-
activeId:
|
|
11
|
+
activeId: any;
|
|
12
|
+
activePath: any;
|
|
12
13
|
subMenus: import("vue").Ref<any[]>;
|
|
13
14
|
getDomStyle: import("vue").ComputedRef<CSSProperties>;
|
|
14
15
|
getWrapStyle: import("vue").ComputedRef<CSSProperties>;
|
|
@@ -17,7 +17,7 @@ export declare function useMenu(): {
|
|
|
17
17
|
getSplit: import("vue").ComputedRef<boolean>;
|
|
18
18
|
getCollapsed: import("vue").ComputedRef<boolean>;
|
|
19
19
|
getIsHorizontal: import("vue").ComputedRef<boolean>;
|
|
20
|
-
getMiniWidthNumber: import("vue").ComputedRef<
|
|
20
|
+
getMiniWidthNumber: import("vue").ComputedRef<48 | 80>;
|
|
21
21
|
getRealWidth: import("vue").ComputedRef<number>;
|
|
22
22
|
getCalcContentWidth: import("vue").ComputedRef<string>;
|
|
23
23
|
getIsMixMode: import("vue").ComputedRef<boolean>;
|
package/es/theme/src/index.d.ts
CHANGED
|
@@ -920,7 +920,8 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
920
920
|
getMixSideTrigger: import("vue").ComputedRef<"hover" | "click">;
|
|
921
921
|
setMixSiderIsHasMenu: (val: boolean) => void;
|
|
922
922
|
menuModules: any;
|
|
923
|
-
activeId:
|
|
923
|
+
activeId: any;
|
|
924
|
+
activePath: any;
|
|
924
925
|
subMenus: import("vue").Ref<any[]>;
|
|
925
926
|
getDomStyle: import("vue").ComputedRef<CSSProperties>;
|
|
926
927
|
getWrapStyle: import("vue").ComputedRef<CSSProperties>;
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DtTheme, uiLang, useThemeStore, useRouteReuseStore, defaultThemeConf, UiSize, ContentMode } from './es/theme/index'
|
|
1
|
+
import { DtTheme, uiLang, useThemeStore, useRouteReuseStore, defaultThemeConf, UiSize, ContentMode, MenuType, MenuMode } from './es/theme/index'
|
|
2
2
|
import { DtIcon, DtPickIcon } from './es/components/icons/index'
|
|
3
3
|
import { DtScrollContainer } from './es/components/container/index'
|
|
4
4
|
import { initDirectives } from './es/directives/index'
|
|
@@ -13,6 +13,8 @@ import { DtTree } from './es/components/tree/index'
|
|
|
13
13
|
export {
|
|
14
14
|
UiSize,
|
|
15
15
|
ContentMode,
|
|
16
|
+
MenuType,
|
|
17
|
+
MenuMode,
|
|
16
18
|
uiLang,
|
|
17
19
|
initDirectives,
|
|
18
20
|
useThemeStore,
|