@fmdeui/fmui 1.0.27 → 1.0.29

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 (189) hide show
  1. package/es/component.mjs +3 -1
  2. package/es/components/fm-layout/index.d.ts +32 -0
  3. package/es/components/fm-layout/src/component/aside.vue.d.ts +5 -0
  4. package/es/components/fm-layout/src/component/columnsAside.vue.d.ts +5 -0
  5. package/es/components/fm-layout/src/component/header.vue.d.ts +16 -0
  6. package/es/components/fm-layout/src/component/main.vue.d.ts +7 -0
  7. package/es/components/fm-layout/src/footer/index.vue.d.ts +3 -0
  8. package/es/components/fm-layout/src/index.vue.d.ts +22 -0
  9. package/es/components/fm-layout/src/logo/index.vue.d.ts +3 -0
  10. package/es/components/fm-layout/src/main/classic.vue.d.ts +18 -0
  11. package/es/components/fm-layout/src/main/columns.vue.d.ts +19 -0
  12. package/es/components/fm-layout/src/main/defaults.vue.d.ts +48 -0
  13. package/es/components/fm-layout/src/main/transverse.vue.d.ts +18 -0
  14. package/es/components/fm-layout/src/navBars/index.vue.d.ts +16 -0
  15. package/es/components/fm-layout/src/navBars/tagsView/contextmenu.vue.d.ts +28 -0
  16. package/es/components/fm-layout/src/navBars/tagsView/tagsView.vue.d.ts +45 -0
  17. package/es/components/fm-layout/src/navBars/topBar/breadcrumb.vue.d.ts +3 -0
  18. package/es/components/fm-layout/src/navBars/topBar/index.vue.d.ts +16 -0
  19. package/es/components/fm-layout/src/navBars/topBar/search.vue.d.ts +7 -0
  20. package/es/components/fm-layout/src/navBars/topBar/upgradeInfo.vue.d.ts +5 -0
  21. package/es/components/fm-layout/src/navBars/topBar/user.vue.d.ts +75 -0
  22. package/es/components/fm-layout/src/navBars/topBar/userNews.vue.d.ts +9 -0
  23. package/es/components/fm-layout/src/navMenu/horizontal.vue.d.ts +42 -0
  24. package/es/components/fm-layout/src/navMenu/subItem.vue.d.ts +42 -0
  25. package/es/components/fm-layout/src/navMenu/vertical.vue.d.ts +42 -0
  26. package/es/components/fm-layout/src/routerView/iframes.vue.d.ts +35 -0
  27. package/es/components/fm-layout/src/routerView/parent.vue.d.ts +3 -0
  28. package/es/components/fm-layout/src/type.d.ts +2 -0
  29. package/es/components/fm-layout/style/css.d.ts +0 -0
  30. package/es/components/fm-layout/style/index.d.ts +0 -0
  31. package/es/components/index.d.ts +1 -0
  32. package/es/hooks/composables/useDialogEvents.d.ts +5 -1
  33. package/es/packages/components/fm-layout/index.mjs +7 -0
  34. package/es/packages/components/fm-layout/src/component/aside.vue.mjs +5 -0
  35. package/es/packages/components/fm-layout/src/component/aside.vue2.mjs +175 -0
  36. package/es/packages/components/fm-layout/src/component/columnsAside.vue.mjs +5 -0
  37. package/es/packages/components/fm-layout/src/component/columnsAside.vue2.mjs +273 -0
  38. package/es/packages/components/fm-layout/src/component/header.vue.mjs +5 -0
  39. package/es/packages/components/fm-layout/src/component/header.vue2.mjs +50 -0
  40. package/es/packages/components/fm-layout/src/component/main.vue.mjs +5 -0
  41. package/es/packages/components/fm-layout/src/component/main.vue2.mjs +81 -0
  42. package/es/packages/components/fm-layout/src/footer/index.vue.mjs +5 -0
  43. package/es/packages/components/fm-layout/src/footer/index.vue2.mjs +29 -0
  44. package/es/packages/components/fm-layout/src/index.vue.mjs +5 -0
  45. package/es/packages/components/fm-layout/src/index.vue2.mjs +91 -0
  46. package/es/packages/components/fm-layout/src/logo/index.vue.mjs +5 -0
  47. package/es/packages/components/fm-layout/src/logo/index.vue2.mjs +57 -0
  48. package/es/packages/components/fm-layout/src/main/classic.vue.mjs +5 -0
  49. package/es/packages/components/fm-layout/src/main/classic.vue2.mjs +87 -0
  50. package/es/packages/components/fm-layout/src/main/columns.vue.mjs +5 -0
  51. package/es/packages/components/fm-layout/src/main/columns.vue2.mjs +100 -0
  52. package/es/packages/components/fm-layout/src/main/defaults.vue.mjs +5 -0
  53. package/es/packages/components/fm-layout/src/main/defaults.vue2.mjs +153 -0
  54. package/es/packages/components/fm-layout/src/main/transverse.vue.mjs +5 -0
  55. package/es/packages/components/fm-layout/src/main/transverse.vue2.mjs +70 -0
  56. package/es/packages/components/fm-layout/src/navBars/index.vue.mjs +5 -0
  57. package/es/packages/components/fm-layout/src/navBars/index.vue2.mjs +44 -0
  58. package/es/packages/components/fm-layout/src/navBars/tagsView/contextmenu.vue.mjs +5 -0
  59. package/es/packages/components/fm-layout/src/navBars/tagsView/contextmenu.vue2.mjs +156 -0
  60. package/es/packages/components/fm-layout/src/navBars/tagsView/tagsView.vue.mjs +5 -0
  61. package/es/packages/components/fm-layout/src/navBars/tagsView/tagsView.vue2.mjs +576 -0
  62. package/es/packages/components/fm-layout/src/navBars/topBar/breadcrumb.vue.mjs +5 -0
  63. package/es/packages/components/fm-layout/src/navBars/topBar/breadcrumb.vue2.mjs +169 -0
  64. package/es/packages/components/fm-layout/src/navBars/topBar/index.vue.mjs +5 -0
  65. package/es/packages/components/fm-layout/src/navBars/topBar/index.vue2.mjs +113 -0
  66. package/es/packages/components/fm-layout/src/navBars/topBar/search.vue.mjs +5 -0
  67. package/es/packages/components/fm-layout/src/navBars/topBar/search.vue2.mjs +120 -0
  68. package/es/packages/components/fm-layout/src/navBars/topBar/upgradeInfo.vue.mjs +5 -0
  69. package/es/packages/components/fm-layout/src/navBars/topBar/upgradeInfo.vue2.mjs +72 -0
  70. package/es/packages/components/fm-layout/src/navBars/topBar/user.vue.mjs +5 -0
  71. package/es/packages/components/fm-layout/src/navBars/topBar/user.vue2.mjs +699 -0
  72. package/es/packages/components/fm-layout/src/navBars/topBar/userNews.vue.mjs +5 -0
  73. package/es/packages/components/fm-layout/src/navBars/topBar/userNews.vue2.mjs +255 -0
  74. package/es/packages/components/fm-layout/src/navMenu/horizontal.vue.mjs +5 -0
  75. package/es/packages/components/fm-layout/src/navMenu/horizontal.vue2.mjs +182 -0
  76. package/es/packages/components/fm-layout/src/navMenu/subItem.vue.mjs +5 -0
  77. package/es/packages/components/fm-layout/src/navMenu/subItem.vue2.mjs +113 -0
  78. package/es/packages/components/fm-layout/src/navMenu/vertical.vue.mjs +5 -0
  79. package/es/packages/components/fm-layout/src/navMenu/vertical.vue2.mjs +159 -0
  80. package/es/packages/components/fm-layout/src/routerView/iframes.vue.mjs +5 -0
  81. package/es/packages/components/fm-layout/src/routerView/iframes.vue2.mjs +128 -0
  82. package/es/packages/components/fm-layout/src/routerView/parent.vue.mjs +5 -0
  83. package/es/packages/components/fm-layout/src/routerView/parent.vue2.mjs +141 -0
  84. package/es/packages/components/fm-layout/src/type.mjs +1 -0
  85. package/es/packages/components/index.mjs +1 -0
  86. package/index.js +4071 -73
  87. package/index.min.js +5 -5
  88. package/index.min.mjs +5 -5
  89. package/index.mjs +4082 -81
  90. package/lib/component.js +3 -1
  91. package/lib/components/fm-layout/index.d.ts +32 -0
  92. package/lib/components/fm-layout/src/component/aside.vue.d.ts +5 -0
  93. package/lib/components/fm-layout/src/component/columnsAside.vue.d.ts +5 -0
  94. package/lib/components/fm-layout/src/component/header.vue.d.ts +16 -0
  95. package/lib/components/fm-layout/src/component/main.vue.d.ts +7 -0
  96. package/lib/components/fm-layout/src/footer/index.vue.d.ts +3 -0
  97. package/lib/components/fm-layout/src/index.vue.d.ts +22 -0
  98. package/lib/components/fm-layout/src/logo/index.vue.d.ts +3 -0
  99. package/lib/components/fm-layout/src/main/classic.vue.d.ts +18 -0
  100. package/lib/components/fm-layout/src/main/columns.vue.d.ts +19 -0
  101. package/lib/components/fm-layout/src/main/defaults.vue.d.ts +48 -0
  102. package/lib/components/fm-layout/src/main/transverse.vue.d.ts +18 -0
  103. package/lib/components/fm-layout/src/navBars/index.vue.d.ts +16 -0
  104. package/lib/components/fm-layout/src/navBars/tagsView/contextmenu.vue.d.ts +28 -0
  105. package/lib/components/fm-layout/src/navBars/tagsView/tagsView.vue.d.ts +45 -0
  106. package/lib/components/fm-layout/src/navBars/topBar/breadcrumb.vue.d.ts +3 -0
  107. package/lib/components/fm-layout/src/navBars/topBar/index.vue.d.ts +16 -0
  108. package/lib/components/fm-layout/src/navBars/topBar/search.vue.d.ts +7 -0
  109. package/lib/components/fm-layout/src/navBars/topBar/upgradeInfo.vue.d.ts +5 -0
  110. package/lib/components/fm-layout/src/navBars/topBar/user.vue.d.ts +75 -0
  111. package/lib/components/fm-layout/src/navBars/topBar/userNews.vue.d.ts +9 -0
  112. package/lib/components/fm-layout/src/navMenu/horizontal.vue.d.ts +42 -0
  113. package/lib/components/fm-layout/src/navMenu/subItem.vue.d.ts +42 -0
  114. package/lib/components/fm-layout/src/navMenu/vertical.vue.d.ts +42 -0
  115. package/lib/components/fm-layout/src/routerView/iframes.vue.d.ts +35 -0
  116. package/lib/components/fm-layout/src/routerView/parent.vue.d.ts +3 -0
  117. package/lib/components/fm-layout/src/type.d.ts +2 -0
  118. package/lib/components/fm-layout/style/css.d.ts +0 -0
  119. package/lib/components/fm-layout/style/index.d.ts +0 -0
  120. package/lib/components/index.d.ts +1 -0
  121. package/lib/hooks/composables/useDialogEvents.d.ts +5 -1
  122. package/lib/packages/components/fm-layout/index.js +9 -0
  123. package/lib/packages/components/fm-layout/src/component/aside.vue.js +9 -0
  124. package/lib/packages/components/fm-layout/src/component/aside.vue2.js +179 -0
  125. package/lib/packages/components/fm-layout/src/component/columnsAside.vue.js +9 -0
  126. package/lib/packages/components/fm-layout/src/component/columnsAside.vue2.js +277 -0
  127. package/lib/packages/components/fm-layout/src/component/header.vue.js +9 -0
  128. package/lib/packages/components/fm-layout/src/component/header.vue2.js +54 -0
  129. package/lib/packages/components/fm-layout/src/component/main.vue.js +9 -0
  130. package/lib/packages/components/fm-layout/src/component/main.vue2.js +85 -0
  131. package/lib/packages/components/fm-layout/src/footer/index.vue.js +9 -0
  132. package/lib/packages/components/fm-layout/src/footer/index.vue2.js +33 -0
  133. package/lib/packages/components/fm-layout/src/index.vue.js +9 -0
  134. package/lib/packages/components/fm-layout/src/index.vue2.js +95 -0
  135. package/lib/packages/components/fm-layout/src/logo/index.vue.js +9 -0
  136. package/lib/packages/components/fm-layout/src/logo/index.vue2.js +61 -0
  137. package/lib/packages/components/fm-layout/src/main/classic.vue.js +9 -0
  138. package/lib/packages/components/fm-layout/src/main/classic.vue2.js +91 -0
  139. package/lib/packages/components/fm-layout/src/main/columns.vue.js +9 -0
  140. package/lib/packages/components/fm-layout/src/main/columns.vue2.js +104 -0
  141. package/lib/packages/components/fm-layout/src/main/defaults.vue.js +9 -0
  142. package/lib/packages/components/fm-layout/src/main/defaults.vue2.js +157 -0
  143. package/lib/packages/components/fm-layout/src/main/transverse.vue.js +9 -0
  144. package/lib/packages/components/fm-layout/src/main/transverse.vue2.js +74 -0
  145. package/lib/packages/components/fm-layout/src/navBars/index.vue.js +9 -0
  146. package/lib/packages/components/fm-layout/src/navBars/index.vue2.js +48 -0
  147. package/lib/packages/components/fm-layout/src/navBars/tagsView/contextmenu.vue.js +9 -0
  148. package/lib/packages/components/fm-layout/src/navBars/tagsView/contextmenu.vue2.js +160 -0
  149. package/lib/packages/components/fm-layout/src/navBars/tagsView/tagsView.vue.js +9 -0
  150. package/lib/packages/components/fm-layout/src/navBars/tagsView/tagsView.vue2.js +580 -0
  151. package/lib/packages/components/fm-layout/src/navBars/topBar/breadcrumb.vue.js +9 -0
  152. package/lib/packages/components/fm-layout/src/navBars/topBar/breadcrumb.vue2.js +173 -0
  153. package/lib/packages/components/fm-layout/src/navBars/topBar/index.vue.js +9 -0
  154. package/lib/packages/components/fm-layout/src/navBars/topBar/index.vue2.js +117 -0
  155. package/lib/packages/components/fm-layout/src/navBars/topBar/search.vue.js +9 -0
  156. package/lib/packages/components/fm-layout/src/navBars/topBar/search.vue2.js +124 -0
  157. package/lib/packages/components/fm-layout/src/navBars/topBar/upgradeInfo.vue.js +9 -0
  158. package/lib/packages/components/fm-layout/src/navBars/topBar/upgradeInfo.vue2.js +76 -0
  159. package/lib/packages/components/fm-layout/src/navBars/topBar/user.vue.js +9 -0
  160. package/lib/packages/components/fm-layout/src/navBars/topBar/user.vue2.js +703 -0
  161. package/lib/packages/components/fm-layout/src/navBars/topBar/userNews.vue.js +9 -0
  162. package/lib/packages/components/fm-layout/src/navBars/topBar/userNews.vue2.js +259 -0
  163. package/lib/packages/components/fm-layout/src/navMenu/horizontal.vue.js +9 -0
  164. package/lib/packages/components/fm-layout/src/navMenu/horizontal.vue2.js +186 -0
  165. package/lib/packages/components/fm-layout/src/navMenu/subItem.vue.js +9 -0
  166. package/lib/packages/components/fm-layout/src/navMenu/subItem.vue2.js +117 -0
  167. package/lib/packages/components/fm-layout/src/navMenu/vertical.vue.js +9 -0
  168. package/lib/packages/components/fm-layout/src/navMenu/vertical.vue2.js +163 -0
  169. package/lib/packages/components/fm-layout/src/routerView/iframes.vue.js +9 -0
  170. package/lib/packages/components/fm-layout/src/routerView/iframes.vue2.js +132 -0
  171. package/lib/packages/components/fm-layout/src/routerView/parent.vue.js +9 -0
  172. package/lib/packages/components/fm-layout/src/routerView/parent.vue2.js +145 -0
  173. package/lib/packages/components/fm-layout/src/type.js +2 -0
  174. package/lib/packages/components/index.js +14 -12
  175. package/locale/en.js +1 -1
  176. package/locale/en.min.js +1 -1
  177. package/locale/en.min.mjs +1 -1
  178. package/locale/en.mjs +1 -1
  179. package/locale/zh-cn.js +1 -1
  180. package/locale/zh-cn.min.js +1 -1
  181. package/locale/zh-cn.min.mjs +1 -1
  182. package/locale/zh-cn.mjs +1 -1
  183. package/package.json +1 -1
  184. package/theme-chalk/f-layout.css +1 -0
  185. package/theme-chalk/index.css +1 -1
  186. package/theme-chalk/src/index.scss +1 -0
  187. package/theme-chalk/src/layout.scss +655 -0
  188. /package/{lib → es}/version.css +0 -0
  189. /package/{es → lib}/defaults.css +0 -0
package/es/component.mjs CHANGED
@@ -7,6 +7,7 @@ import { FSelectTable } from './packages/components/select-table/index.mjs';
7
7
  import { FQueryCondition } from './packages/components/query-condition/index.mjs';
8
8
  import { FForm } from './packages/components/form/index.mjs';
9
9
  import { FChart } from './packages/components/chart/index.mjs';
10
+ import { FLayout } from './packages/components/fm-layout/index.mjs';
10
11
 
11
12
  const plugins = [
12
13
  FButton,
@@ -17,7 +18,8 @@ const plugins = [
17
18
  FSelectTable,
18
19
  FQueryCondition,
19
20
  FChart,
20
- FForm
21
+ FForm,
22
+ FLayout
21
23
  ];
22
24
 
23
25
  export { plugins as default };
@@ -0,0 +1,32 @@
1
+ import { CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
2
+ export * from './src/type';
3
+ export declare const FLayout: {
4
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
5
+ onLayoutChangePassword?: ((...args: any[]) => any) | undefined;
6
+ onLayoutOnlineUsers?: ((...args: any[]) => any) | undefined;
7
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
8
+ layoutChangePassword: (...args: any[]) => void;
9
+ layoutOnlineUsers: (...args: any[]) => void;
10
+ }, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
11
+ P: {};
12
+ B: {};
13
+ D: {};
14
+ C: {};
15
+ M: {};
16
+ Defaults: {};
17
+ }, Readonly<{}> & Readonly<{
18
+ onLayoutChangePassword?: ((...args: any[]) => any) | undefined;
19
+ onLayoutOnlineUsers?: ((...args: any[]) => any) | undefined;
20
+ }>, {}, {}, {}, {}, {}>;
21
+ __isFragment?: never;
22
+ __isTeleport?: never;
23
+ __isSuspense?: never;
24
+ } & ComponentOptionsBase<Readonly<{}> & Readonly<{
25
+ onLayoutChangePassword?: ((...args: any[]) => any) | undefined;
26
+ onLayoutOnlineUsers?: ((...args: any[]) => any) | undefined;
27
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
28
+ layoutChangePassword: (...args: any[]) => void;
29
+ layoutOnlineUsers: (...args: any[]) => void;
30
+ }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
31
+ $slots: any;
32
+ });
@@ -0,0 +1,5 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
3
+ layoutAsideScrollbarRef: unknown;
4
+ }, HTMLDivElement>;
5
+ export default _default;
@@ -0,0 +1,5 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
3
+ columnsAsideActiveRef: HTMLDivElement;
4
+ }, HTMLDivElement>;
5
+ export default _default;
@@ -0,0 +1,16 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: any;
5
+ refs: {};
6
+ rootEl: any;
7
+ };
8
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
+ declare const __VLS_component: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
10
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
11
+ export default _default;
12
+ type __VLS_WithTemplateSlots<T, S> = T & {
13
+ new (): {
14
+ $slots: S;
15
+ };
16
+ };
@@ -0,0 +1,7 @@
1
+ import { DefineComponent, Ref, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {
3
+ layoutMainScrollbarRef: Ref<any, any>;
4
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
5
+ layoutMainScrollbarRef: unknown;
6
+ }, any>;
7
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
3
+ export default _default;
@@ -0,0 +1,22 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: any;
5
+ refs: {};
6
+ rootEl: any;
7
+ };
8
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
+ declare const __VLS_component: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
10
+ layoutChangePassword: (...args: any[]) => void;
11
+ layoutOnlineUsers: (...args: any[]) => void;
12
+ }, string, PublicProps, Readonly<{}> & Readonly<{
13
+ onLayoutChangePassword?: ((...args: any[]) => any) | undefined;
14
+ onLayoutOnlineUsers?: ((...args: any[]) => any) | undefined;
15
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,3 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
@@ -0,0 +1,18 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, Ref, GlobalComponents, GlobalDirectives } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
3
+ layoutMainRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
4
+ layoutMainScrollbarRef: Ref<any, any>;
5
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
6
+ layoutMainScrollbarRef: unknown;
7
+ }, any, ComponentProvideOptions, {
8
+ P: {};
9
+ B: {};
10
+ D: {};
11
+ C: {};
12
+ M: {};
13
+ Defaults: {};
14
+ }, Readonly<{}> & Readonly<{}>, {
15
+ layoutMainScrollbarRef: Ref<any, any>;
16
+ }, {}, {}, {}, {}> | null;
17
+ }, any>;
18
+ export default _default;
@@ -0,0 +1,19 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, Ref, GlobalComponents, GlobalDirectives } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
3
+ layoutScrollbarRef: unknown;
4
+ layoutMainRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
5
+ layoutMainScrollbarRef: Ref<any, any>;
6
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
7
+ layoutMainScrollbarRef: unknown;
8
+ }, any, ComponentProvideOptions, {
9
+ P: {};
10
+ B: {};
11
+ D: {};
12
+ C: {};
13
+ M: {};
14
+ Defaults: {};
15
+ }, Readonly<{}> & Readonly<{}>, {
16
+ layoutMainScrollbarRef: Ref<any, any>;
17
+ }, {}, {}, {}, {}> | null;
18
+ }, any>;
19
+ export default _default;
@@ -0,0 +1,48 @@
1
+ import { CreateComponentPublicInstanceWithMixins, Ref, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DefineComponent } from 'vue';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: any;
5
+ refs: {
6
+ layoutScrollbarRef: unknown;
7
+ layoutMainRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
8
+ layoutMainScrollbarRef: Ref<any, any>;
9
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
10
+ layoutMainScrollbarRef: unknown;
11
+ }, any, ComponentProvideOptions, {
12
+ P: {};
13
+ B: {};
14
+ D: {};
15
+ C: {};
16
+ M: {};
17
+ Defaults: {};
18
+ }, Readonly<{}> & Readonly<{}>, {
19
+ layoutMainScrollbarRef: Ref<any, any>;
20
+ }, {}, {}, {}, {}> | null;
21
+ };
22
+ rootEl: any;
23
+ };
24
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
25
+ declare const __VLS_component: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
26
+ layoutScrollbarRef: unknown;
27
+ layoutMainRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
28
+ layoutMainScrollbarRef: Ref<any, any>;
29
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
30
+ layoutMainScrollbarRef: unknown;
31
+ }, any, ComponentProvideOptions, {
32
+ P: {};
33
+ B: {};
34
+ D: {};
35
+ C: {};
36
+ M: {};
37
+ Defaults: {};
38
+ }, Readonly<{}> & Readonly<{}>, {
39
+ layoutMainScrollbarRef: Ref<any, any>;
40
+ }, {}, {}, {}, {}> | null;
41
+ }, any>;
42
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
43
+ export default _default;
44
+ type __VLS_WithTemplateSlots<T, S> = T & {
45
+ new (): {
46
+ $slots: S;
47
+ };
48
+ };
@@ -0,0 +1,18 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, Ref, GlobalComponents, GlobalDirectives } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
3
+ layoutMainRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
4
+ layoutMainScrollbarRef: Ref<any, any>;
5
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
6
+ layoutMainScrollbarRef: unknown;
7
+ }, any, ComponentProvideOptions, {
8
+ P: {};
9
+ B: {};
10
+ D: {};
11
+ C: {};
12
+ M: {};
13
+ Defaults: {};
14
+ }, Readonly<{}> & Readonly<{}>, {
15
+ layoutMainScrollbarRef: Ref<any, any>;
16
+ }, {}, {}, {}, {}> | null;
17
+ }, any>;
18
+ export default _default;
@@ -0,0 +1,16 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: any;
5
+ refs: {};
6
+ rootEl: HTMLDivElement;
7
+ };
8
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
+ declare const __VLS_component: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
10
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
11
+ export default _default;
12
+ type __VLS_WithTemplateSlots<T, S> = T & {
13
+ new (): {
14
+ $slots: S;
15
+ };
16
+ };
@@ -0,0 +1,28 @@
1
+ import { RouteItem } from 'fmdeui-fmui/es/types';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ dropdown: {
5
+ type: ObjectConstructor;
6
+ default: () => {
7
+ x: number;
8
+ y: number;
9
+ };
10
+ };
11
+ }>, {
12
+ openContextmenu: (item: RouteItem) => void;
13
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
14
+ currentContextmenuClick: (...args: any[]) => void;
15
+ }, string, PublicProps, Readonly< ExtractPropTypes<{
16
+ dropdown: {
17
+ type: ObjectConstructor;
18
+ default: () => {
19
+ x: number;
20
+ y: number;
21
+ };
22
+ };
23
+ }>> & Readonly<{
24
+ onCurrentContextmenuClick?: ((...args: any[]) => any) | undefined;
25
+ }>, {
26
+ dropdown: Record<string, any>;
27
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
28
+ export default _default;
@@ -0,0 +1,45 @@
1
+ import { RouteItem } from 'fmdeui-fmui/es/types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, ExtractPropTypes, GlobalComponents, GlobalDirectives } from 'vue';
3
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
4
+ scrollbarRef: unknown;
5
+ tagsUlRef: HTMLUListElement;
6
+ contextmenuRef: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
7
+ dropdown: {
8
+ type: ObjectConstructor;
9
+ default: () => {
10
+ x: number;
11
+ y: number;
12
+ };
13
+ };
14
+ }>> & Readonly<{
15
+ onCurrentContextmenuClick?: ((...args: any[]) => any) | undefined;
16
+ }>, {
17
+ openContextmenu: (item: RouteItem) => void;
18
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
19
+ currentContextmenuClick: (...args: any[]) => void;
20
+ }, PublicProps, {
21
+ dropdown: Record<string, any>;
22
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
23
+ P: {};
24
+ B: {};
25
+ D: {};
26
+ C: {};
27
+ M: {};
28
+ Defaults: {};
29
+ }, Readonly< ExtractPropTypes<{
30
+ dropdown: {
31
+ type: ObjectConstructor;
32
+ default: () => {
33
+ x: number;
34
+ y: number;
35
+ };
36
+ };
37
+ }>> & Readonly<{
38
+ onCurrentContextmenuClick?: ((...args: any[]) => any) | undefined;
39
+ }>, {
40
+ openContextmenu: (item: RouteItem) => void;
41
+ }, {}, {}, {}, {
42
+ dropdown: Record<string, any>;
43
+ }> | null;
44
+ }, HTMLDivElement>;
45
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
3
+ export default _default;
@@ -0,0 +1,16 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: any;
5
+ refs: {};
6
+ rootEl: HTMLDivElement;
7
+ };
8
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
+ declare const __VLS_component: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
10
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
11
+ export default _default;
12
+ type __VLS_WithTemplateSlots<T, S> = T & {
13
+ new (): {
14
+ $slots: S;
15
+ };
16
+ };
@@ -0,0 +1,7 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {
3
+ openSearch: () => void;
4
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
5
+ layoutMenuAutocompleteRef: unknown;
6
+ }, HTMLDivElement>;
7
+ export default _default;
@@ -0,0 +1,5 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {
3
+ openDialog: (row: any) => void;
4
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
5
+ export default _default;
@@ -0,0 +1,75 @@
1
+ import { CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, DefineComponent } from 'vue';
2
+ declare function __VLS_template(): {
3
+ attrs: Partial<{}>;
4
+ slots: {
5
+ 'user-before'?(_: {}): any;
6
+ 'user-dropdown'?(_: {}): any;
7
+ 'user-dropdown'?(_: {}): any;
8
+ 'user-after'?(_: {}): any;
9
+ };
10
+ refs: {
11
+ searchRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
12
+ openSearch: () => void;
13
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
14
+ layoutMenuAutocompleteRef: unknown;
15
+ }, HTMLDivElement, ComponentProvideOptions, {
16
+ P: {};
17
+ B: {};
18
+ D: {};
19
+ C: {};
20
+ M: {};
21
+ Defaults: {};
22
+ }, Readonly<{}> & Readonly<{}>, {
23
+ openSearch: () => void;
24
+ }, {}, {}, {}, {}> | null;
25
+ upgradeInfoRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
26
+ openDialog: (row: any) => void;
27
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
28
+ P: {};
29
+ B: {};
30
+ D: {};
31
+ C: {};
32
+ M: {};
33
+ Defaults: {};
34
+ }, Readonly<{}> & Readonly<{}>, {
35
+ openDialog: (row: any) => void;
36
+ }, {}, {}, {}, {}> | null;
37
+ };
38
+ rootEl: HTMLDivElement;
39
+ };
40
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
41
+ declare const __VLS_component: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
42
+ searchRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
43
+ openSearch: () => void;
44
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
45
+ layoutMenuAutocompleteRef: unknown;
46
+ }, HTMLDivElement, ComponentProvideOptions, {
47
+ P: {};
48
+ B: {};
49
+ D: {};
50
+ C: {};
51
+ M: {};
52
+ Defaults: {};
53
+ }, Readonly<{}> & Readonly<{}>, {
54
+ openSearch: () => void;
55
+ }, {}, {}, {}, {}> | null;
56
+ upgradeInfoRef: CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
57
+ openDialog: (row: any) => void;
58
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
59
+ P: {};
60
+ B: {};
61
+ D: {};
62
+ C: {};
63
+ M: {};
64
+ Defaults: {};
65
+ }, Readonly<{}> & Readonly<{}>, {
66
+ openDialog: (row: any) => void;
67
+ }, {}, {}, {}, {}> | null;
68
+ }, HTMLDivElement>;
69
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
70
+ export default _default;
71
+ type __VLS_WithTemplateSlots<T, S> = T & {
72
+ new (): {
73
+ $slots: S;
74
+ };
75
+ };
@@ -0,0 +1,9 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<ExtractPropTypes<{
3
+ noticeList: any;
4
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
5
+ noticeList: any;
6
+ }>> & Readonly<{}>, {
7
+ noticeList: any;
8
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,42 @@
1
+ import { RouteRecordRaw } from 'vue-router';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ menuList: {
5
+ type: {
6
+ (arrayLength: number): RouteRecordRaw[];
7
+ (...items: RouteRecordRaw[]): RouteRecordRaw[];
8
+ new (arrayLength: number): RouteRecordRaw[];
9
+ new (...items: RouteRecordRaw[]): RouteRecordRaw[];
10
+ isArray(arg: any): arg is any[];
11
+ readonly prototype: any[];
12
+ from<T>(arrayLike: ArrayLike<T>): T[];
13
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
14
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
15
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
16
+ of<T>(...items: T[]): T[];
17
+ readonly [Symbol.species]: ArrayConstructor;
18
+ };
19
+ default: () => never[];
20
+ };
21
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
22
+ menuList: {
23
+ type: {
24
+ (arrayLength: number): RouteRecordRaw[];
25
+ (...items: RouteRecordRaw[]): RouteRecordRaw[];
26
+ new (arrayLength: number): RouteRecordRaw[];
27
+ new (...items: RouteRecordRaw[]): RouteRecordRaw[];
28
+ isArray(arg: any): arg is any[];
29
+ readonly prototype: any[];
30
+ from<T>(arrayLike: ArrayLike<T>): T[];
31
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
32
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
33
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
34
+ of<T>(...items: T[]): T[];
35
+ readonly [Symbol.species]: ArrayConstructor;
36
+ };
37
+ default: () => never[];
38
+ };
39
+ }>> & Readonly<{}>, {
40
+ menuList: RouteRecordRaw[];
41
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
42
+ export default _default;
@@ -0,0 +1,42 @@
1
+ import { RouteRecordRaw } from 'vue-router';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ chil: {
5
+ type: {
6
+ (arrayLength: number): RouteRecordRaw[];
7
+ (...items: RouteRecordRaw[]): RouteRecordRaw[];
8
+ new (arrayLength: number): RouteRecordRaw[];
9
+ new (...items: RouteRecordRaw[]): RouteRecordRaw[];
10
+ isArray(arg: any): arg is any[];
11
+ readonly prototype: any[];
12
+ from<T>(arrayLike: ArrayLike<T>): T[];
13
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
14
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
15
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
16
+ of<T>(...items: T[]): T[];
17
+ readonly [Symbol.species]: ArrayConstructor;
18
+ };
19
+ default: () => never[];
20
+ };
21
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
22
+ chil: {
23
+ type: {
24
+ (arrayLength: number): RouteRecordRaw[];
25
+ (...items: RouteRecordRaw[]): RouteRecordRaw[];
26
+ new (arrayLength: number): RouteRecordRaw[];
27
+ new (...items: RouteRecordRaw[]): RouteRecordRaw[];
28
+ isArray(arg: any): arg is any[];
29
+ readonly prototype: any[];
30
+ from<T>(arrayLike: ArrayLike<T>): T[];
31
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
32
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
33
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
34
+ of<T>(...items: T[]): T[];
35
+ readonly [Symbol.species]: ArrayConstructor;
36
+ };
37
+ default: () => never[];
38
+ };
39
+ }>> & Readonly<{}>, {
40
+ chil: RouteRecordRaw[];
41
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
42
+ export default _default;
@@ -0,0 +1,42 @@
1
+ import { RouteRecordRaw } from 'vue-router';
2
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ declare const _default: DefineComponent<ExtractPropTypes<{
4
+ menuList: {
5
+ type: {
6
+ (arrayLength: number): RouteRecordRaw[];
7
+ (...items: RouteRecordRaw[]): RouteRecordRaw[];
8
+ new (arrayLength: number): RouteRecordRaw[];
9
+ new (...items: RouteRecordRaw[]): RouteRecordRaw[];
10
+ isArray(arg: any): arg is any[];
11
+ readonly prototype: any[];
12
+ from<T>(arrayLike: ArrayLike<T>): T[];
13
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
14
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
15
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
16
+ of<T>(...items: T[]): T[];
17
+ readonly [Symbol.species]: ArrayConstructor;
18
+ };
19
+ default: () => never[];
20
+ };
21
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
22
+ menuList: {
23
+ type: {
24
+ (arrayLength: number): RouteRecordRaw[];
25
+ (...items: RouteRecordRaw[]): RouteRecordRaw[];
26
+ new (arrayLength: number): RouteRecordRaw[];
27
+ new (...items: RouteRecordRaw[]): RouteRecordRaw[];
28
+ isArray(arg: any): arg is any[];
29
+ readonly prototype: any[];
30
+ from<T>(arrayLike: ArrayLike<T>): T[];
31
+ from<T, U>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
32
+ from<T>(iterable: Iterable<T> | ArrayLike<T>): T[];
33
+ from<T, U>(iterable: Iterable<T> | ArrayLike<T>, mapfn: (v: T, k: number) => U, thisArg?: any): U[];
34
+ of<T>(...items: T[]): T[];
35
+ readonly [Symbol.species]: ArrayConstructor;
36
+ };
37
+ default: () => never[];
38
+ };
39
+ }>> & Readonly<{}>, {
40
+ menuList: RouteRecordRaw[];
41
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
42
+ export default _default;
@@ -0,0 +1,35 @@
1
+ import { DefineComponent, ExtractPropTypes, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<ExtractPropTypes<{
3
+ refreshKey: {
4
+ type: StringConstructor;
5
+ default: () => string;
6
+ };
7
+ name: {
8
+ type: StringConstructor;
9
+ default: () => string;
10
+ };
11
+ list: {
12
+ type: ArrayConstructor;
13
+ default: () => never[];
14
+ };
15
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
16
+ refreshKey: {
17
+ type: StringConstructor;
18
+ default: () => string;
19
+ };
20
+ name: {
21
+ type: StringConstructor;
22
+ default: () => string;
23
+ };
24
+ list: {
25
+ type: ArrayConstructor;
26
+ default: () => never[];
27
+ };
28
+ }>> & Readonly<{}>, {
29
+ name: string;
30
+ list: unknown[];
31
+ refreshKey: string;
32
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {
33
+ iframeRef: HTMLIFrameElement;
34
+ }, HTMLDivElement>;
35
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
3
+ export default _default;
@@ -0,0 +1,2 @@
1
+ export interface FLayoutProps {
2
+ }
File without changes
File without changes
@@ -8,3 +8,4 @@ export * from './select-table';
8
8
  export * from './query-condition';
9
9
  export * from './form';
10
10
  export * from './svgIcon';
11
+ export * from './fm-layout';