@flux-ui/dashboard 3.0.0-next.7 → 3.0.0-next.70
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/README.md +26 -35
- package/dist/component/FluxDashboard.vue.d.ts +11 -23
- package/dist/component/FluxDashboardContent.vue.d.ts +8 -12
- package/dist/component/FluxDashboardHeader.vue.d.ts +10 -13
- package/dist/component/FluxDashboardMenu.vue.d.ts +13 -15
- package/dist/component/FluxDashboardNavigation.vue.d.ts +8 -16
- package/dist/component/FluxDashboardSide.vue.d.ts +12 -14
- package/dist/component/FluxDashboardTopBar.vue.d.ts +8 -12
- package/dist/component/index.d.ts +0 -1
- package/dist/composable/index.d.ts +0 -1
- package/dist/composable/useDashboardInjection.d.ts +0 -1
- package/dist/data/index.d.ts +0 -1
- package/dist/index.css +427 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +3894 -219
- package/dist/index.js.map +1 -1
- package/dist/types.d.ts +13 -0
- package/package.json +19 -17
- package/src/component/FluxDashboard.vue +4 -4
- package/src/component/FluxDashboardContent.vue +2 -2
- package/src/component/FluxDashboardHeader.vue +1 -1
- package/src/component/FluxDashboardMenu.vue +6 -4
- package/src/component/FluxDashboardNavigation.vue +2 -2
- package/src/component/FluxDashboardSide.vue +1 -1
- package/src/component/FluxDashboardTopBar.vue +2 -2
- package/src/composable/useDashboardInjection.ts +1 -1
- package/src/css/component/Dashboard.module.scss +5 -4
- package/src/css/component/DashboardContent.module.scss +9 -9
- package/src/css/component/DashboardNavigation.module.scss +13 -11
- package/src/css/component/DashboardPane.module.scss +7 -7
- package/src/css/component/DashboardTopBar.module.scss +7 -7
- package/dist/component/FluxDashboard.vue.d.ts.map +0 -1
- package/dist/component/FluxDashboardContent.vue.d.ts.map +0 -1
- package/dist/component/FluxDashboardHeader.vue.d.ts.map +0 -1
- package/dist/component/FluxDashboardMenu.vue.d.ts.map +0 -1
- package/dist/component/FluxDashboardNavigation.vue.d.ts.map +0 -1
- package/dist/component/FluxDashboardSide.vue.d.ts.map +0 -1
- package/dist/component/FluxDashboardTopBar.vue.d.ts.map +0 -1
- package/dist/component/index.d.ts.map +0 -1
- package/dist/composable/index.d.ts.map +0 -1
- package/dist/composable/useDashboardInjection.d.ts.map +0 -1
- package/dist/data/index.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/tsconfig.json +0 -45
package/dist/types.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare module '*.module.css' {
|
|
2
|
+
const content: Record<string, string>;
|
|
3
|
+
export default content;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
declare module '*.module.scss' {
|
|
7
|
+
const content: Record<string, string>;
|
|
8
|
+
export default content;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
declare module '*.svg' {
|
|
12
|
+
export = string;
|
|
13
|
+
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flux-ui/dashboard",
|
|
3
3
|
"description": "Contains components to create dashboards with Flux UI.",
|
|
4
|
-
"version": "3.0.0-next.
|
|
4
|
+
"version": "3.0.0-next.70",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"funding": "https://github.com/sponsors/basmilius",
|
|
8
|
-
"homepage": "https://flux.
|
|
8
|
+
"homepage": "https://flux-ui.dev",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "git+https://github.com/basmilius/flux.git",
|
|
@@ -24,8 +24,7 @@
|
|
|
24
24
|
],
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "vue-tsc && vite build",
|
|
27
|
-
"dev": "vite build --watch"
|
|
28
|
-
"prepublishOnly": "cp ../../README.md ."
|
|
27
|
+
"dev": "vite build --watch --mode development"
|
|
29
28
|
},
|
|
30
29
|
"engines": {
|
|
31
30
|
"node": ">=23"
|
|
@@ -43,26 +42,29 @@
|
|
|
43
42
|
},
|
|
44
43
|
"files": [
|
|
45
44
|
"dist",
|
|
46
|
-
"src"
|
|
47
|
-
"tsconfig.json"
|
|
45
|
+
"src"
|
|
48
46
|
],
|
|
49
47
|
"main": "./dist/index.js",
|
|
50
48
|
"module": "./dist/index.js",
|
|
51
49
|
"types": "./dist/index.d.ts",
|
|
52
|
-
"typings": "./dist/index.d.ts",
|
|
53
50
|
"sideEffects": false,
|
|
54
51
|
"dependencies": {
|
|
55
|
-
"@flux-ui/components": "3.0.0-next.
|
|
56
|
-
"@flux-ui/internals": "3.0.0-next.
|
|
57
|
-
"
|
|
52
|
+
"@flux-ui/components": "3.0.0-next.70",
|
|
53
|
+
"@flux-ui/internals": "3.0.0-next.70",
|
|
54
|
+
"@flux-ui/types": "3.0.0-next.70"
|
|
55
|
+
},
|
|
56
|
+
"peerDependencies": {
|
|
57
|
+
"luxon": "^3.7.2",
|
|
58
|
+
"vue": "^3.6.0-beta.12"
|
|
58
59
|
},
|
|
59
60
|
"devDependencies": {
|
|
60
|
-
"@basmilius/vite-preset": "^
|
|
61
|
-
"@types/node": "^
|
|
62
|
-
"@vitejs/plugin-vue": "^
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
61
|
+
"@basmilius/vite-preset": "^3.35.0",
|
|
62
|
+
"@types/node": "^25.9.1",
|
|
63
|
+
"@vitejs/plugin-vue": "^6.0.7",
|
|
64
|
+
"@vue/tsconfig": "^0.9.1",
|
|
65
|
+
"sass-embedded": "^1.100.0",
|
|
66
|
+
"typescript": "^6.0.3",
|
|
67
|
+
"vite": "^8.0.14",
|
|
68
|
+
"vue-tsc": "^3.3.1"
|
|
67
69
|
}
|
|
68
70
|
}
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
lang="ts"
|
|
17
17
|
setup>
|
|
18
18
|
import { useRemembered } from '@flux-ui/internals';
|
|
19
|
-
import { provide, ref, VNode, watch } from 'vue';
|
|
20
|
-
import { FluxDashboardInjectionKey } from '
|
|
21
|
-
import $style from '
|
|
19
|
+
import { provide, ref, type VNode, watch } from 'vue';
|
|
20
|
+
import { FluxDashboardInjectionKey } from '~flux/dashboard/data';
|
|
21
|
+
import $style from '~flux/dashboard/css/component/Dashboard.module.scss';
|
|
22
22
|
|
|
23
23
|
defineSlots<{
|
|
24
24
|
default(): VNode;
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
});
|
|
39
39
|
|
|
40
40
|
watch(isNavigationCollapsed, (_, __, onCleanup) => {
|
|
41
|
-
let timeout:
|
|
41
|
+
let timeout: any;
|
|
42
42
|
|
|
43
43
|
function onResize(): void {
|
|
44
44
|
clearTimeout(timeout);
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
<script
|
|
8
8
|
lang="ts"
|
|
9
9
|
setup>
|
|
10
|
-
import { useDashboardInjection } from '
|
|
11
|
-
import $style from '
|
|
10
|
+
import { useDashboardInjection } from '~flux/dashboard/composable';
|
|
11
|
+
import $style from '~flux/dashboard/css/component/DashboardContent.module.scss';
|
|
12
12
|
|
|
13
13
|
const {isMenuCollapsed} = useDashboardInjection();
|
|
14
14
|
</script>
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
import { useScrollPosition } from '@flux-ui/internals';
|
|
24
24
|
import type { FluxIconName } from '@flux-ui/types';
|
|
25
25
|
import FluxDashboardTopBar from './FluxDashboardTopBar.vue';
|
|
26
|
-
import $style from '
|
|
26
|
+
import $style from '~flux/dashboard/css/component/DashboardTopBar.module.scss';
|
|
27
27
|
|
|
28
28
|
defineProps<{
|
|
29
29
|
readonly icon?: FluxIconName;
|
|
@@ -7,7 +7,9 @@
|
|
|
7
7
|
v-if="icon"
|
|
8
8
|
:name="icon"/>
|
|
9
9
|
|
|
10
|
-
<h1
|
|
10
|
+
<h1 v-if="title">
|
|
11
|
+
{{ title }}
|
|
12
|
+
</h1>
|
|
11
13
|
|
|
12
14
|
<FluxSpacer/>
|
|
13
15
|
|
|
@@ -25,13 +27,13 @@
|
|
|
25
27
|
setup>
|
|
26
28
|
import { FluxIcon, FluxSpacer } from '@flux-ui/components';
|
|
27
29
|
import type { FluxIconName } from '@flux-ui/types';
|
|
28
|
-
import { useDashboardInjection } from '
|
|
30
|
+
import { useDashboardInjection } from '~flux/dashboard/composable';
|
|
29
31
|
import FluxDashboardTopBar from './FluxDashboardTopBar.vue';
|
|
30
|
-
import $style from '
|
|
32
|
+
import $style from '~flux/dashboard/css/component/DashboardPane.module.scss';
|
|
31
33
|
|
|
32
34
|
defineProps<{
|
|
33
35
|
readonly icon?: FluxIconName;
|
|
34
|
-
readonly title
|
|
36
|
+
readonly title?: string;
|
|
35
37
|
}>();
|
|
36
38
|
|
|
37
39
|
const {isMenuCollapsed} = useDashboardInjection();
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
setup>
|
|
38
38
|
import { FluxMenuItem } from '@flux-ui/components';
|
|
39
39
|
import type { FluxTo } from '@flux-ui/types';
|
|
40
|
-
import { useDashboardInjection } from '
|
|
41
|
-
import $style from '
|
|
40
|
+
import { useDashboardInjection } from '~flux/dashboard/composable';
|
|
41
|
+
import $style from '~flux/dashboard/css/component/DashboardNavigation.module.scss';
|
|
42
42
|
|
|
43
43
|
defineOptions({
|
|
44
44
|
inheritAttrs: false
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
setup>
|
|
20
20
|
import { FluxSpacer } from '@flux-ui/components';
|
|
21
21
|
import FluxDashboardTopBar from './FluxDashboardTopBar.vue';
|
|
22
|
-
import $style from '
|
|
22
|
+
import $style from '~flux/dashboard/css/component/DashboardPane.module.scss';
|
|
23
23
|
|
|
24
24
|
defineProps<{
|
|
25
25
|
readonly title: string;
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
<script
|
|
8
8
|
lang="ts"
|
|
9
9
|
setup>
|
|
10
|
-
import { useDashboardInjection } from '
|
|
11
|
-
import $style from '
|
|
10
|
+
import { useDashboardInjection } from '~flux/dashboard/composable';
|
|
11
|
+
import $style from '~flux/dashboard/css/component/DashboardTopBar.module.scss';
|
|
12
12
|
|
|
13
13
|
const {isMenuCollapsed} = useDashboardInjection();
|
|
14
14
|
</script>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { inject } from 'vue';
|
|
2
|
-
import { FluxDashboardInjection, FluxDashboardInjectionKey } from '
|
|
2
|
+
import { type FluxDashboardInjection, FluxDashboardInjectionKey } from '~flux/dashboard/data';
|
|
3
3
|
|
|
4
4
|
export default function (): FluxDashboardInjection {
|
|
5
5
|
const injection = inject(FluxDashboardInjectionKey);
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
@use '../../../../components/src/css/mixin';
|
|
2
2
|
|
|
3
3
|
:root {
|
|
4
|
-
--dashboard-background:
|
|
4
|
+
--dashboard-background: var(--gray-25);
|
|
5
5
|
--dashboard-duration: 360ms;
|
|
6
|
-
--dashboard-navigation-background:
|
|
7
|
-
--dashboard-navigation-foreground:
|
|
6
|
+
--dashboard-navigation-background: var(--primary-950);
|
|
7
|
+
--dashboard-navigation-foreground: var(--primary-25);
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
[dark] {
|
|
11
|
-
--dashboard-navigation-background: color-mix(in srgb,
|
|
11
|
+
--dashboard-navigation-background: color-mix(in srgb, var(--gray-25), black 25%);
|
|
12
|
+
--dashboard-navigation-foreground: var(--gray-800);
|
|
12
13
|
}
|
|
13
14
|
|
|
14
15
|
body:has(.root > .dashboard) {
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
@use '../../../../components/src/css/mixin';
|
|
2
2
|
|
|
3
3
|
.notice + .dashboardContent {
|
|
4
|
-
padding-top:
|
|
4
|
+
padding-top: 21px;
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.dashboardContent {
|
|
8
8
|
display: flex;
|
|
9
|
-
padding: 0
|
|
9
|
+
padding: 0 21px;
|
|
10
10
|
flex-flow: column;
|
|
11
11
|
flex-grow: 1;
|
|
12
12
|
|
|
13
13
|
> :is(.calendar, .table) {
|
|
14
|
-
margin-left: -
|
|
15
|
-
margin-right: -
|
|
14
|
+
margin-left: -21px;
|
|
15
|
+
margin-right: -21px;
|
|
16
16
|
height: calc(100dvh - 84px);
|
|
17
17
|
flex-grow: 1;
|
|
18
18
|
}
|
|
@@ -23,20 +23,20 @@
|
|
|
23
23
|
border-radius: 0;
|
|
24
24
|
|
|
25
25
|
.calendarActions {
|
|
26
|
-
padding-left:
|
|
27
|
-
padding-right:
|
|
26
|
+
padding-left: 21px;
|
|
27
|
+
padding-right: 21px;
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
> .table {
|
|
32
|
-
border-top: 1px solid
|
|
32
|
+
border-top: 1px solid var(--surface-stroke);
|
|
33
33
|
|
|
34
34
|
.tableCell:first-child .tableCellContent {
|
|
35
|
-
padding-left:
|
|
35
|
+
padding-left: 21px;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.tableCell:last-child .tableCellContent {
|
|
39
|
-
padding-right:
|
|
39
|
+
padding-right: 21px;
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.dividerLine {
|
|
17
|
-
background:
|
|
17
|
+
background: var(--primary-900);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.menu {
|
|
@@ -31,20 +31,22 @@
|
|
|
31
31
|
|
|
32
32
|
@media (hover: hover) {
|
|
33
33
|
&:hover {
|
|
34
|
-
background:
|
|
34
|
+
background: var(--primary-900);
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
&:active {
|
|
39
|
-
background:
|
|
39
|
+
background: var(--primary-800);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
.menuItemHighlighted {
|
|
44
|
-
background:
|
|
44
|
+
background: var(--primary-900);
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
.menuItemIcon {
|
|
48
|
+
margin-left: 0;
|
|
49
|
+
margin-right: 0;
|
|
48
50
|
color: var(--dashboard-navigation-foreground);
|
|
49
51
|
font-size: 24px;
|
|
50
52
|
}
|
|
@@ -62,23 +64,23 @@
|
|
|
62
64
|
|
|
63
65
|
[dark] .dashboardNavigation {
|
|
64
66
|
.dividerLine {
|
|
65
|
-
background:
|
|
67
|
+
background: var(--gray-100);
|
|
66
68
|
}
|
|
67
69
|
|
|
68
70
|
.menuItem {
|
|
69
71
|
@media (hover: hover) {
|
|
70
72
|
&:hover {
|
|
71
|
-
background:
|
|
73
|
+
background: var(--gray-100);
|
|
72
74
|
}
|
|
73
75
|
}
|
|
74
76
|
|
|
75
77
|
&:active {
|
|
76
|
-
background:
|
|
78
|
+
background: var(--gray-200);
|
|
77
79
|
}
|
|
78
80
|
}
|
|
79
81
|
|
|
80
82
|
.menuItemHighlighted {
|
|
81
|
-
background:
|
|
83
|
+
background: var(--gray-50);
|
|
82
84
|
}
|
|
83
85
|
}
|
|
84
86
|
|
|
@@ -110,12 +112,12 @@
|
|
|
110
112
|
display: block;
|
|
111
113
|
inset: 0;
|
|
112
114
|
content: '';
|
|
113
|
-
background:
|
|
115
|
+
background: var(--gray-50);
|
|
114
116
|
}
|
|
115
117
|
}
|
|
116
118
|
|
|
117
119
|
.dashboard:not(:has(.dashboardMenu)) .dashboardNavigationRoundingFix::before {
|
|
118
|
-
background:
|
|
120
|
+
background: var(--gray-25);
|
|
119
121
|
}
|
|
120
122
|
|
|
121
123
|
@include mixin.breakpoint-up(lg) {
|
|
@@ -185,7 +187,7 @@
|
|
|
185
187
|
width: 100dvw;
|
|
186
188
|
height: 100dvh;
|
|
187
189
|
content: '';
|
|
188
|
-
background: rgb(var(--gray-
|
|
190
|
+
background: rgb(from var(--gray-200) r g b / .5);
|
|
189
191
|
backdrop-filter: blur(3px) saturate(180%);
|
|
190
192
|
transition: var(--dashboard-duration) var(--swift-out);
|
|
191
193
|
transition-property: background, backdrop-filter;
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
@use '../../../../components/src/css/mixin';
|
|
2
2
|
|
|
3
3
|
.dashboardPane {
|
|
4
|
-
background:
|
|
4
|
+
background: var(--gray-50);
|
|
5
5
|
overflow: auto;
|
|
6
6
|
z-index: 200;
|
|
7
7
|
|
|
8
8
|
.menuSubHeader {
|
|
9
|
-
background: linear-gradient(to bottom,
|
|
9
|
+
background: linear-gradient(to bottom, var(--gray-50) 75%, transparent);
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.dashboardTopBar {
|
|
13
|
-
background: rgb(var(--gray-
|
|
13
|
+
background: rgb(from var(--gray-50) r g b / .9);
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.filter {
|
|
17
|
-
--background:
|
|
17
|
+
--background: var(--gray-50);
|
|
18
18
|
|
|
19
19
|
max-height: calc(100dvh - 84px);
|
|
20
20
|
margin-top: -9px;
|
|
@@ -50,17 +50,17 @@
|
|
|
50
50
|
.dashboardMenu {
|
|
51
51
|
composes: dashboardPane;
|
|
52
52
|
|
|
53
|
-
border-right: 1px solid
|
|
53
|
+
border-right: 1px solid var(--surface-stroke);
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
.dashboardMenuBody {
|
|
57
|
-
padding: 0 18px
|
|
57
|
+
padding: 0 18px 21px;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
.dashboardSide {
|
|
61
61
|
composes: dashboardPane;
|
|
62
62
|
|
|
63
|
-
border-left: 1px solid
|
|
63
|
+
border-left: 1px solid var(--surface-stroke);
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
@include mixin.breakpoint-up(lg) {
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
@use '
|
|
1
|
+
@use '~flux/components/css/mixin';
|
|
2
2
|
|
|
3
3
|
.dashboardTopBar {
|
|
4
4
|
position: sticky;
|
|
5
5
|
display: flex;
|
|
6
6
|
top: 0;
|
|
7
|
-
height:
|
|
8
|
-
padding-left:
|
|
9
|
-
padding-right:
|
|
7
|
+
height: 72px;
|
|
8
|
+
padding-left: 21px;
|
|
9
|
+
padding-right: 21px;
|
|
10
10
|
align-items: center;
|
|
11
11
|
flex-flow: row;
|
|
12
12
|
gap: 15px;
|
|
13
|
-
background: rgb(var(--gray-
|
|
13
|
+
background: rgb(from var(--gray-25) r g b / .9);
|
|
14
14
|
backdrop-filter: blur(10px) saturate(180%);
|
|
15
15
|
z-index: 100;
|
|
16
16
|
|
|
17
17
|
> h1 {
|
|
18
|
-
font-size:
|
|
18
|
+
font-size: 16px;
|
|
19
19
|
overflow: hidden;
|
|
20
20
|
text-overflow: ellipsis;
|
|
21
21
|
white-space: nowrap;
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
[dark] .dashboardHeaderScrolled {
|
|
44
|
-
box-shadow: 0 1px 0
|
|
44
|
+
box-shadow: 0 1px 0 var(--gray-50), var(--shadow-md);
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
@include mixin.breakpoint-down(md) {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FluxDashboard.vue.d.ts","sourceRoot":"","sources":["../../src/component/FluxDashboard.vue"],"names":[],"mappings":"AAwDI,OAAO,EAAgB,KAAK,EAAS,MAAM,KAAK,CAAC;AAqCrD,iBAAS,cAAc;WA+BT,OAAO,IAA6B;;mBA/D/B,KAAK;mBACL,KAAK;uBACD,KAAK;iBACX,KAAK;iBACL,KAAK;;mBAJH,KAAK;mBACL,KAAK;uBACD,KAAK;iBACX,KAAK;iBACL,KAAK;;;;EAgErB;AASD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,0RAMnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAEpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FluxDashboardContent.vue.d.ts","sourceRoot":"","sources":["../../src/component/FluxDashboardContent.vue"],"names":[],"mappings":"AAuBA,iBAAS,cAAc;WAuBT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AASD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,uRAMnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAEpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FluxDashboardHeader.vue.d.ts","sourceRoot":"","sources":["../../src/component/FluxDashboardHeader.vue"],"names":[],"mappings":"AAsCI,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAInD,KAAK,WAAW,GAAG;IACf,QAAQ,CAAC,IAAI,CAAC,EAAE,YAAY,CAAC;IAC7B,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC;CAC3B,CAAC;AAON,iBAAS,cAAc;WA0DT,OAAO,IAA6B;;uBAXvB,GAAG;qBACJ,GAAG;;;;EAe5B;AAaD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,0SAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FluxDashboardMenu.vue.d.ts","sourceRoot":"","sources":["../../src/component/FluxDashboardMenu.vue"],"names":[],"mappings":"AAyCI,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAKnD,KAAK,WAAW,GAAG;IACf,QAAQ,CAAC,IAAI,CAAC,EAAE,YAAY,CAAC;IAC7B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;CAC1B,CAAC;AAON,iBAAS,cAAc;WA8DT,OAAO,IAA6B;;iCAZb,GAAG;+BACJ,GAAG;yBACT,GAAG;;;;EAehC;AAaD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,0SAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FluxDashboardNavigation.vue.d.ts","sourceRoot":"","sources":["../../src/component/FluxDashboardNavigation.vue"],"names":[],"mappings":"AA+DI,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAC;AAQ7C,KAAK,WAAW,GAAG;IACf,YAAY,CAAC,EAAE,MAAM,CAAA;CACxB,CAAC;AAeN,iBAAS,cAAc;WAyFT,OAAO,IAA6B;;mBApG/B,GAAG;iBACL,GAAG;;mBADD,GAAG;iBACL,GAAG;;;;EAwGnB;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,kSAMnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FluxDashboardSide.vue.d.ts","sourceRoot":"","sources":["../../src/component/FluxDashboardSide.vue"],"names":[],"mappings":"AAiCI,KAAK,WAAW,GAAG;IACf,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;CAC1B,CAAC;AAKN,iBAAS,cAAc;WAgDT,OAAO,IAA6B;;iCAZb,GAAG;+BACJ,GAAG;yBACT,GAAG;;;;EAehC;AAWD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,0SAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"FluxDashboardTopBar.vue.d.ts","sourceRoot":"","sources":["../../src/component/FluxDashboardTopBar.vue"],"names":[],"mappings":"AAuBA,iBAAS,cAAc;WAuBT,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AASD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,uRAMnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAEpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/component/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,oBAAoB,EAAE,MAAM,4BAA4B,CAAC;AAC7E,OAAO,EAAE,OAAO,IAAI,mBAAmB,EAAE,MAAM,2BAA2B,CAAC;AAC3E,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AACvE,OAAO,EAAE,OAAO,IAAI,uBAAuB,EAAE,MAAM,+BAA+B,CAAC;AACnF,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,yBAAyB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/composable/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,yBAAyB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"useDashboardInjection.d.ts","sourceRoot":"","sources":["../../src/composable/useDashboardInjection.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,sBAAsB,EAA6B,MAAM,qBAAqB,CAAC;AAExF,MAAM,CAAC,OAAO,cAAc,sBAAsB,CAQjD"}
|
package/dist/data/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/data/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAE7C,eAAO,MAAM,yBAAyB,EAAE,YAAY,CAAC,sBAAsB,CAAY,CAAC;AAExF,MAAM,MAAM,sBAAsB,GAAG;IACjC,QAAQ,CAAC,eAAe,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;IACvC,QAAQ,CAAC,qBAAqB,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;CAChD,CAAC"}
|
package/dist/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,QAAQ,CAAC"}
|
package/tsconfig.json
DELETED
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "esnext",
|
|
4
|
-
"useDefineForClassFields": true,
|
|
5
|
-
"module": "esnext",
|
|
6
|
-
"moduleResolution": "bundler",
|
|
7
|
-
"strict": true,
|
|
8
|
-
"jsx": "preserve",
|
|
9
|
-
"resolveJsonModule": true,
|
|
10
|
-
"isolatedModules": true,
|
|
11
|
-
"esModuleInterop": true,
|
|
12
|
-
"lib": [
|
|
13
|
-
"esnext",
|
|
14
|
-
"dom"
|
|
15
|
-
],
|
|
16
|
-
"skipLibCheck": true,
|
|
17
|
-
"allowSyntheticDefaultImports": true,
|
|
18
|
-
"declaration": true,
|
|
19
|
-
"declarationMap": true,
|
|
20
|
-
"emitDeclarationOnly": true,
|
|
21
|
-
"outDir": "dist",
|
|
22
|
-
"baseUrl": ".",
|
|
23
|
-
"rootDir": "./src",
|
|
24
|
-
"paths": {
|
|
25
|
-
"$fluxDashboard/*": ["src/*"]
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
"include": [
|
|
29
|
-
"./src/**/*.ts",
|
|
30
|
-
"./src/**/*.vue"
|
|
31
|
-
],
|
|
32
|
-
"exclude": [
|
|
33
|
-
"dist",
|
|
34
|
-
"node_modules"
|
|
35
|
-
],
|
|
36
|
-
"references": [
|
|
37
|
-
{
|
|
38
|
-
"path": "./tsconfig.node.json"
|
|
39
|
-
}
|
|
40
|
-
],
|
|
41
|
-
"vueCompilerOptions": {
|
|
42
|
-
"target": 3.5,
|
|
43
|
-
"strictTemplates": false
|
|
44
|
-
}
|
|
45
|
-
}
|