star-horse-lowcode 2.7.41 → 2.7.42

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.
@@ -0,0 +1,30 @@
1
+ export type ShortKey = {
2
+ /**
3
+ * 快捷键
4
+ */
5
+ key: string,
6
+ /**
7
+ * 动作名称
8
+ */
9
+ action: string,
10
+ /**
11
+ * 是否需要alt 键组合
12
+ */
13
+ alt?: boolean,
14
+ /**
15
+ * 是否需要ctrl 键组合
16
+ */
17
+ ctrl?: boolean,
18
+ /**
19
+ * 是否需要shift 键组合
20
+ */
21
+ shift?: boolean,
22
+ /**
23
+ * 其他键
24
+ */
25
+ other?: Array<string> | string,
26
+ /**
27
+ * 处理函数
28
+ */
29
+ handler?: Function
30
+ };
@@ -0,0 +1,18 @@
1
+ export declare interface Tags {
2
+ /**
3
+ * 中文名字
4
+ */
5
+ name: string,
6
+ /**
7
+ * 路由地址
8
+ */
9
+ path: string,
10
+ /**
11
+ * 组件名称
12
+ */
13
+ componentName: string,
14
+ /**
15
+ * 菜单图标
16
+ */
17
+ menuIcon: string,
18
+ }
@@ -0,0 +1,15 @@
1
+ export * from './ApiUrls';
2
+ export * from './BtnAction';
3
+ export * from './CompInfo';
4
+ export * from './DialogProps';
5
+ export * from './DyCompField';
6
+ export * from './DynamicNode';
7
+ export * from './MenusInfo';
8
+ export * from './PageFieldInfo';
9
+ export * from './PageProps';
10
+ export * from './Params';
11
+ export * from './RuleType';
12
+ export * from './SearchProps';
13
+ export * from './ShortKey';
14
+ export * from './StarHorseType';
15
+ export * from './BtnAuth';