@flux-ui/application 3.0.0-next.66 → 3.0.0-next.68
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/dist/component/FluxApplication.vue.d.ts +8 -17
- package/dist/component/FluxApplicationContent.vue.d.ts +6 -13
- package/dist/component/FluxApplicationHero.vue.d.ts +9 -19
- package/dist/component/FluxApplicationMenu.vue.d.ts +9 -19
- package/dist/component/FluxApplicationMenuAccount.vue.d.ts +7 -15
- package/dist/component/FluxApplicationMenuContext.vue.d.ts +2 -1
- package/dist/component/FluxApplicationMenuContextStack.vue.d.ts +2 -1
- package/dist/component/FluxApplicationMenuPromo.vue.d.ts +7 -11
- package/dist/component/FluxApplicationMenuToggle.vue.d.ts +2 -1
- package/dist/component/FluxApplicationSection.vue.d.ts +7 -15
- package/dist/component/FluxApplicationSide.vue.d.ts +6 -13
- package/dist/component/FluxApplicationTop.vue.d.ts +8 -17
- package/dist/index.js +443 -234
- package/dist/index.js.map +1 -1
- package/package.json +11 -11
|
@@ -3,25 +3,16 @@ type __VLS_Props = {
|
|
|
3
3
|
readonly contextMenuName?: string;
|
|
4
4
|
readonly showDesktopMenuToggle?: boolean;
|
|
5
5
|
};
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
menu(): VNode[];
|
|
11
|
-
side(): VNode[];
|
|
12
|
-
}> & {
|
|
13
|
-
default(): VNode[];
|
|
14
|
-
menu(): VNode[];
|
|
15
|
-
side(): VNode[];
|
|
16
|
-
};
|
|
17
|
-
refs: {};
|
|
18
|
-
rootEl: HTMLDivElement;
|
|
6
|
+
type __VLS_Slots = {
|
|
7
|
+
default(): VNode[];
|
|
8
|
+
menu(): VNode[];
|
|
9
|
+
side(): VNode[];
|
|
19
10
|
};
|
|
20
|
-
|
|
21
|
-
declare const
|
|
22
|
-
declare const _default:
|
|
11
|
+
declare const __VLS_base: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
12
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
13
|
+
declare const _default: typeof __VLS_export;
|
|
23
14
|
export default _default;
|
|
24
|
-
type
|
|
15
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
25
16
|
new (): {
|
|
26
17
|
$slots: S;
|
|
27
18
|
};
|
|
@@ -3,21 +3,14 @@ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOp
|
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly layout?: FluxApplicationLayout;
|
|
5
5
|
};
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
slots: Readonly<{
|
|
9
|
-
default(): any;
|
|
10
|
-
}> & {
|
|
11
|
-
default(): any;
|
|
12
|
-
};
|
|
13
|
-
refs: {};
|
|
14
|
-
rootEl: HTMLElement;
|
|
6
|
+
type __VLS_Slots = {
|
|
7
|
+
default(): any;
|
|
15
8
|
};
|
|
16
|
-
|
|
17
|
-
declare const
|
|
18
|
-
declare const _default:
|
|
9
|
+
declare const __VLS_base: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
11
|
+
declare const _default: typeof __VLS_export;
|
|
19
12
|
export default _default;
|
|
20
|
-
type
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
21
14
|
new (): {
|
|
22
15
|
$slots: S;
|
|
23
16
|
};
|
|
@@ -3,27 +3,17 @@ type __VLS_Props = {
|
|
|
3
3
|
readonly title: string;
|
|
4
4
|
readonly subtitle?: string;
|
|
5
5
|
};
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
end?(): VNode[];
|
|
12
|
-
start?(): VNode[];
|
|
13
|
-
}> & {
|
|
14
|
-
after?(): VNode[];
|
|
15
|
-
before?(): VNode[];
|
|
16
|
-
end?(): VNode[];
|
|
17
|
-
start?(): VNode[];
|
|
18
|
-
};
|
|
19
|
-
refs: {};
|
|
20
|
-
rootEl: HTMLElement;
|
|
6
|
+
type __VLS_Slots = {
|
|
7
|
+
after?(): VNode[];
|
|
8
|
+
before?(): VNode[];
|
|
9
|
+
end?(): VNode[];
|
|
10
|
+
start?(): VNode[];
|
|
21
11
|
};
|
|
22
|
-
|
|
23
|
-
declare const
|
|
24
|
-
declare const _default:
|
|
12
|
+
declare const __VLS_base: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
25
15
|
export default _default;
|
|
26
|
-
type
|
|
16
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
27
17
|
new (): {
|
|
28
18
|
$slots: S;
|
|
29
19
|
};
|
|
@@ -1,25 +1,15 @@
|
|
|
1
1
|
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
footer?(): VNode;
|
|
8
|
-
header?(): VNode;
|
|
9
|
-
}> & {
|
|
10
|
-
default(): VNode;
|
|
11
|
-
context?(): VNode;
|
|
12
|
-
footer?(): VNode;
|
|
13
|
-
header?(): VNode;
|
|
14
|
-
};
|
|
15
|
-
refs: {};
|
|
16
|
-
rootEl: HTMLElement;
|
|
2
|
+
type __VLS_Slots = {
|
|
3
|
+
default(): VNode;
|
|
4
|
+
context?(): VNode;
|
|
5
|
+
footer?(): VNode;
|
|
6
|
+
header?(): VNode;
|
|
17
7
|
};
|
|
18
|
-
|
|
19
|
-
declare const
|
|
20
|
-
declare const _default:
|
|
8
|
+
declare const __VLS_base: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
9
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
10
|
+
declare const _default: typeof __VLS_export;
|
|
21
11
|
export default _default;
|
|
22
|
-
type
|
|
12
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
23
13
|
new (): {
|
|
24
14
|
$slots: S;
|
|
25
15
|
};
|
|
@@ -6,23 +6,15 @@ type __VLS_Props = {
|
|
|
6
6
|
readonly imageSrc?: string;
|
|
7
7
|
readonly label: string;
|
|
8
8
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
avatar?(): VNode;
|
|
13
|
-
switcher?(): VNode;
|
|
14
|
-
}> & {
|
|
15
|
-
avatar?(): VNode;
|
|
16
|
-
switcher?(): VNode;
|
|
17
|
-
};
|
|
18
|
-
refs: {};
|
|
19
|
-
rootEl: HTMLDivElement;
|
|
9
|
+
type __VLS_Slots = {
|
|
10
|
+
avatar?(): VNode;
|
|
11
|
+
switcher?(): VNode;
|
|
20
12
|
};
|
|
21
|
-
|
|
22
|
-
declare const
|
|
23
|
-
declare const _default:
|
|
13
|
+
declare const __VLS_base: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
24
16
|
export default _default;
|
|
25
|
-
type
|
|
17
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
26
18
|
new (): {
|
|
27
19
|
$slots: S;
|
|
28
20
|
};
|
|
@@ -12,5 +12,6 @@ type __VLS_Props = {
|
|
|
12
12
|
readonly icon?: FluxIconName;
|
|
13
13
|
readonly type?: FluxPressableType;
|
|
14
14
|
};
|
|
15
|
-
declare const
|
|
15
|
+
declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: typeof __VLS_export;
|
|
16
17
|
export default _default;
|
|
@@ -2,5 +2,6 @@ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOp
|
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
readonly name?: string;
|
|
4
4
|
};
|
|
5
|
-
declare const
|
|
5
|
+
declare const __VLS_export: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: typeof __VLS_export;
|
|
6
7
|
export default _default;
|
|
@@ -3,19 +3,15 @@ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOp
|
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
readonly icon?: FluxIconName;
|
|
5
5
|
};
|
|
6
|
-
declare
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
default?(_: {}): any;
|
|
10
|
-
};
|
|
11
|
-
refs: {};
|
|
12
|
-
rootEl: HTMLDivElement;
|
|
6
|
+
declare var __VLS_6: {};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
default?: (props: typeof __VLS_6) => any;
|
|
13
9
|
};
|
|
14
|
-
|
|
15
|
-
declare const
|
|
16
|
-
declare const _default:
|
|
10
|
+
declare const __VLS_base: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
17
13
|
export default _default;
|
|
18
|
-
type
|
|
14
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
15
|
new (): {
|
|
20
16
|
$slots: S;
|
|
21
17
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
-
declare const
|
|
2
|
+
declare const __VLS_export: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3
|
+
declare const _default: typeof __VLS_export;
|
|
3
4
|
export default _default;
|
|
@@ -3,23 +3,15 @@ type __VLS_Props = {
|
|
|
3
3
|
readonly title?: string;
|
|
4
4
|
readonly info?: string;
|
|
5
5
|
};
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
default(): VNode;
|
|
10
|
-
end?(): VNode;
|
|
11
|
-
}> & {
|
|
12
|
-
default(): VNode;
|
|
13
|
-
end?(): VNode;
|
|
14
|
-
};
|
|
15
|
-
refs: {};
|
|
16
|
-
rootEl: HTMLElement;
|
|
6
|
+
type __VLS_Slots = {
|
|
7
|
+
default(): VNode;
|
|
8
|
+
end?(): VNode;
|
|
17
9
|
};
|
|
18
|
-
|
|
19
|
-
declare const
|
|
20
|
-
declare const _default:
|
|
10
|
+
declare const __VLS_base: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
11
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
12
|
+
declare const _default: typeof __VLS_export;
|
|
21
13
|
export default _default;
|
|
22
|
-
type
|
|
14
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
23
15
|
new (): {
|
|
24
16
|
$slots: S;
|
|
25
17
|
};
|
|
@@ -1,19 +1,12 @@
|
|
|
1
1
|
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
slots: Readonly<{
|
|
5
|
-
default(): VNode;
|
|
6
|
-
}> & {
|
|
7
|
-
default(): VNode;
|
|
8
|
-
};
|
|
9
|
-
refs: {};
|
|
10
|
-
rootEl: HTMLElement;
|
|
2
|
+
type __VLS_Slots = {
|
|
3
|
+
default(): VNode;
|
|
11
4
|
};
|
|
12
|
-
|
|
13
|
-
declare const
|
|
14
|
-
declare const _default:
|
|
5
|
+
declare const __VLS_base: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
7
|
+
declare const _default: typeof __VLS_export;
|
|
15
8
|
export default _default;
|
|
16
|
-
type
|
|
9
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
17
10
|
new (): {
|
|
18
11
|
$slots: S;
|
|
19
12
|
};
|
|
@@ -4,25 +4,16 @@ type __VLS_Props = {
|
|
|
4
4
|
readonly icon?: FluxIconName;
|
|
5
5
|
readonly title?: string;
|
|
6
6
|
};
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
start?(): VNode;
|
|
12
|
-
tabs?(): VNode;
|
|
13
|
-
}> & {
|
|
14
|
-
end?(): VNode;
|
|
15
|
-
start?(): VNode;
|
|
16
|
-
tabs?(): VNode;
|
|
17
|
-
};
|
|
18
|
-
refs: {};
|
|
19
|
-
rootEl: HTMLElement;
|
|
7
|
+
type __VLS_Slots = {
|
|
8
|
+
end?(): VNode;
|
|
9
|
+
start?(): VNode;
|
|
10
|
+
tabs?(): VNode;
|
|
20
11
|
};
|
|
21
|
-
|
|
22
|
-
declare const
|
|
23
|
-
declare const _default:
|
|
12
|
+
declare const __VLS_base: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
13
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
24
15
|
export default _default;
|
|
25
|
-
type
|
|
16
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
26
17
|
new (): {
|
|
27
18
|
$slots: S;
|
|
28
19
|
};
|