@fmdeui/fmui 1.0.32 → 1.0.34
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/component.mjs +3 -1
- package/es/components/fm-layout/index.d.ts +5 -5
- package/es/components/fm-layout/src/index.vue.d.ts +2 -2
- package/es/components/fm-settings/index.d.ts +7 -0
- package/es/components/fm-settings/src/index.vue.d.ts +8 -0
- package/es/components/fm-settings/style/css.d.ts +0 -0
- package/es/components/fm-settings/style/index.d.ts +0 -0
- package/es/components/index.d.ts +1 -0
- package/{lib/defaults.css → es/make-installer.css} +2 -2
- package/es/packages/components/fm-layout/src/index.vue2.mjs +3 -3
- package/es/packages/components/fm-layout/src/navBars/topBar/user.vue2.mjs +1 -1
- package/es/packages/components/fm-settings/index.mjs +6 -0
- package/es/packages/components/fm-settings/src/index.vue.mjs +5 -0
- package/es/packages/components/fm-settings/src/index.vue2.mjs +1904 -0
- package/es/packages/components/index.mjs +1 -0
- package/index.js +2036 -145
- package/index.min.js +10 -5
- package/index.min.mjs +10 -5
- package/index.mjs +2033 -142
- package/lib/component.js +3 -1
- package/lib/components/fm-layout/index.d.ts +5 -5
- package/lib/components/fm-layout/src/index.vue.d.ts +2 -2
- package/lib/components/fm-settings/index.d.ts +7 -0
- package/lib/components/fm-settings/src/index.vue.d.ts +8 -0
- package/lib/components/fm-settings/style/css.d.ts +0 -0
- package/lib/components/fm-settings/style/index.d.ts +0 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/packages/components/fm-layout/src/index.vue2.js +3 -3
- package/lib/packages/components/fm-layout/src/navBars/topBar/user.vue2.js +1 -1
- package/lib/packages/components/fm-settings/index.js +8 -0
- package/lib/packages/components/fm-settings/src/index.vue.js +9 -0
- package/lib/packages/components/fm-settings/src/index.vue2.js +1908 -0
- package/lib/packages/components/index.js +4 -2
- package/locale/en.js +1 -1
- package/locale/en.min.js +1 -1
- package/locale/en.min.mjs +1 -1
- package/locale/en.mjs +1 -1
- package/locale/zh-cn.js +1 -1
- package/locale/zh-cn.min.js +1 -1
- package/locale/zh-cn.min.mjs +1 -1
- package/locale/zh-cn.mjs +1 -1
- package/package.json +1 -1
- package/theme-chalk/f-settings.css +1 -0
- package/theme-chalk/index.css +1 -1
- package/theme-chalk/src/index.scss +2 -1
- package/theme-chalk/src/settings.scss +157 -0
- /package/{es/defaults.css → lib/version.css} +0 -0
package/lib/component.js
CHANGED
|
@@ -12,6 +12,7 @@ var index$6 = require('./packages/components/query-condition/index.js');
|
|
|
12
12
|
var index$8 = require('./packages/components/form/index.js');
|
|
13
13
|
var index$7 = require('./packages/components/chart/index.js');
|
|
14
14
|
var index$9 = require('./packages/components/fm-layout/index.js');
|
|
15
|
+
var index$a = require('./packages/components/fm-settings/index.js');
|
|
15
16
|
|
|
16
17
|
const plugins = [
|
|
17
18
|
index.FButton,
|
|
@@ -23,7 +24,8 @@ const plugins = [
|
|
|
23
24
|
index$6.FQueryCondition,
|
|
24
25
|
index$7.FChart,
|
|
25
26
|
index$8.FForm,
|
|
26
|
-
index$9.FLayout
|
|
27
|
+
index$9.FLayout,
|
|
28
|
+
index$a.FSettings
|
|
27
29
|
];
|
|
28
30
|
|
|
29
31
|
exports.default = plugins;
|
|
@@ -4,11 +4,11 @@ export declare const FLayout: {
|
|
|
4
4
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
5
5
|
onLayoutChangePassword?: ((...args: any[]) => any) | undefined;
|
|
6
6
|
onLayoutOnlineUsers?: ((...args: any[]) => any) | undefined;
|
|
7
|
-
|
|
7
|
+
onLayoutSearchMenu?: ((...args: any[]) => any) | undefined;
|
|
8
8
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
9
9
|
layoutChangePassword: (...args: any[]) => void;
|
|
10
10
|
layoutOnlineUsers: (...args: any[]) => void;
|
|
11
|
-
|
|
11
|
+
layoutSearchMenu: (...args: any[]) => void;
|
|
12
12
|
}, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
13
13
|
P: {};
|
|
14
14
|
B: {};
|
|
@@ -19,7 +19,7 @@ export declare const FLayout: {
|
|
|
19
19
|
}, Readonly<{}> & Readonly<{
|
|
20
20
|
onLayoutChangePassword?: ((...args: any[]) => any) | undefined;
|
|
21
21
|
onLayoutOnlineUsers?: ((...args: any[]) => any) | undefined;
|
|
22
|
-
|
|
22
|
+
onLayoutSearchMenu?: ((...args: any[]) => any) | undefined;
|
|
23
23
|
}>, {}, {}, {}, {}, {}>;
|
|
24
24
|
__isFragment?: never;
|
|
25
25
|
__isTeleport?: never;
|
|
@@ -27,11 +27,11 @@ export declare const FLayout: {
|
|
|
27
27
|
} & ComponentOptionsBase<Readonly<{}> & Readonly<{
|
|
28
28
|
onLayoutChangePassword?: ((...args: any[]) => any) | undefined;
|
|
29
29
|
onLayoutOnlineUsers?: ((...args: any[]) => any) | undefined;
|
|
30
|
-
|
|
30
|
+
onLayoutSearchMenu?: ((...args: any[]) => any) | undefined;
|
|
31
31
|
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
32
32
|
layoutChangePassword: (...args: any[]) => void;
|
|
33
33
|
layoutOnlineUsers: (...args: any[]) => void;
|
|
34
|
-
|
|
34
|
+
layoutSearchMenu: (...args: any[]) => void;
|
|
35
35
|
}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
36
36
|
$slots: any;
|
|
37
37
|
});
|
|
@@ -9,11 +9,11 @@ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
|
9
9
|
declare const __VLS_component: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
10
10
|
layoutChangePassword: (...args: any[]) => void;
|
|
11
11
|
layoutOnlineUsers: (...args: any[]) => void;
|
|
12
|
-
|
|
12
|
+
layoutSearchMenu: (...args: any[]) => void;
|
|
13
13
|
}, string, PublicProps, Readonly<{}> & Readonly<{
|
|
14
14
|
onLayoutChangePassword?: ((...args: any[]) => any) | undefined;
|
|
15
15
|
onLayoutOnlineUsers?: ((...args: any[]) => any) | undefined;
|
|
16
|
-
|
|
16
|
+
onLayoutSearchMenu?: ((...args: any[]) => any) | undefined;
|
|
17
17
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
18
18
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
19
19
|
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
export declare const FSettings: DefineComponent<{}, {
|
|
3
|
+
openDrawer: () => void;
|
|
4
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
5
|
+
onColorRef: unknown;
|
|
6
|
+
copyConfigBtnRef: unknown;
|
|
7
|
+
}, HTMLDivElement>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {
|
|
3
|
+
openDrawer: () => void;
|
|
4
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {
|
|
5
|
+
onColorRef: unknown;
|
|
6
|
+
copyConfigBtnRef: unknown;
|
|
7
|
+
}, HTMLDivElement>;
|
|
8
|
+
export default _default;
|
|
File without changes
|
|
File without changes
|
|
@@ -17,7 +17,7 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
17
17
|
name: "FLayout"
|
|
18
18
|
},
|
|
19
19
|
__name: "index",
|
|
20
|
-
emits: ["layoutChangePassword", "layoutOnlineUsers", "
|
|
20
|
+
emits: ["layoutChangePassword", "layoutOnlineUsers", "layoutSearchMenu"],
|
|
21
21
|
setup(__props, { emit: __emit }) {
|
|
22
22
|
const layouts = {
|
|
23
23
|
defaults: vue.defineAsyncComponent(() => Promise.resolve().then(function () { return require('./main/defaults.vue.js'); })),
|
|
@@ -35,8 +35,8 @@ var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
35
35
|
curMyEmit("layoutChangePassword");
|
|
36
36
|
} else if (data.name == "onlineUsers") {
|
|
37
37
|
curMyEmit("layoutOnlineUsers");
|
|
38
|
-
} else if (data.name == "
|
|
39
|
-
curMyEmit("
|
|
38
|
+
} else if (data.name == "searchFormMenu") {
|
|
39
|
+
curMyEmit("layoutSearchMenu");
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
});
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
require('./src/index.vue.js');
|
|
4
|
+
var index_vue_vue_type_script_setup_true_name_layoutBreadcrumbSeting_lang = require('./src/index.vue2.js');
|
|
5
|
+
|
|
6
|
+
const FSettings = index_vue_vue_type_script_setup_true_name_layoutBreadcrumbSeting_lang.default;
|
|
7
|
+
|
|
8
|
+
exports.FSettings = FSettings;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
var index_vue_vue_type_script_setup_true_name_layoutBreadcrumbSeting_lang = require('./index.vue2.js');
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
exports.default = index_vue_vue_type_script_setup_true_name_layoutBreadcrumbSeting_lang.default;
|