@flux-ui/dashboard 3.0.0-next.35 → 3.0.0-next.38
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/index.css +13 -13
- package/dist/index.js +105 -147
- package/dist/index.js.map +1 -1
- package/package.json +16 -18
- package/src/css/component/DashboardContent.module.scss +8 -8
- package/src/css/component/DashboardPane.module.scss +1 -1
- package/src/css/component/DashboardTopBar.module.scss +4 -4
- package/tsconfig.json +0 -7
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.38",
|
|
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,7 +24,7 @@
|
|
|
24
24
|
],
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "vue-tsc && vite build",
|
|
27
|
-
"dev": "vite build --watch"
|
|
27
|
+
"dev": "vite build --watch --mode development"
|
|
28
28
|
},
|
|
29
29
|
"engines": {
|
|
30
30
|
"node": ">=23"
|
|
@@ -42,28 +42,26 @@
|
|
|
42
42
|
},
|
|
43
43
|
"files": [
|
|
44
44
|
"dist",
|
|
45
|
-
"src"
|
|
46
|
-
"tsconfig.json"
|
|
45
|
+
"src"
|
|
47
46
|
],
|
|
48
47
|
"main": "./dist/index.js",
|
|
49
48
|
"module": "./dist/index.js",
|
|
50
49
|
"types": "./dist/index.d.ts",
|
|
51
|
-
"typings": "./dist/index.d.ts",
|
|
52
50
|
"sideEffects": false,
|
|
53
51
|
"dependencies": {
|
|
54
|
-
"@flux-ui/components": "3.0.0-next.
|
|
55
|
-
"@flux-ui/internals": "3.0.0-next.
|
|
56
|
-
"
|
|
52
|
+
"@flux-ui/components": "3.0.0-next.38",
|
|
53
|
+
"@flux-ui/internals": "3.0.0-next.38",
|
|
54
|
+
"@flux-ui/types": "3.0.0-next.38",
|
|
55
|
+
"vue": "^3.6.0-beta.10"
|
|
57
56
|
},
|
|
58
57
|
"devDependencies": {
|
|
59
|
-
"@basmilius/vite-preset": "^3.
|
|
60
|
-
"@
|
|
61
|
-
"@
|
|
62
|
-
"@
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"vue-tsc": "^3.2.5"
|
|
58
|
+
"@basmilius/vite-preset": "^3.19.0",
|
|
59
|
+
"@types/node": "^25.6.0",
|
|
60
|
+
"@vitejs/plugin-vue": "^6.0.6",
|
|
61
|
+
"@vue/tsconfig": "^0.9.1",
|
|
62
|
+
"sass-embedded": "^1.99.0",
|
|
63
|
+
"typescript": "^6.0.3",
|
|
64
|
+
"vite": "^8.0.10",
|
|
65
|
+
"vue-tsc": "^3.2.7"
|
|
68
66
|
}
|
|
69
67
|
}
|
|
@@ -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,8 +23,8 @@
|
|
|
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
|
|
|
@@ -32,11 +32,11 @@
|
|
|
32
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
|
}
|
|
@@ -4,9 +4,9 @@
|
|
|
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;
|
|
@@ -15,7 +15,7 @@
|
|
|
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;
|