@cloudron/pankow 4.1.7 → 4.1.9
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/components/Breadcrumb.vue +15 -0
- package/components/MenuItem.vue +4 -0
- package/package.json +5 -5
- package/style.css +0 -15
- package/types/fetcher.d.ts +1 -1
- package/types/utils.d.ts +3 -3
|
@@ -61,4 +61,19 @@ function onClick() {
|
|
|
61
61
|
cursor: pointer;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
+
.pankow-breadcrumb a {
|
|
65
|
+
color: var(--pankow-color-dark);
|
|
66
|
+
text-decoration: none;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
@media (prefers-color-scheme: dark) {
|
|
70
|
+
.pankow-breadcrumb a {
|
|
71
|
+
color: var(--pankow-color-light-dark);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.pankow-breadcrumb a:hover {
|
|
76
|
+
color: var(--pankow-color-primary-hover);
|
|
77
|
+
}
|
|
78
|
+
|
|
64
79
|
</style>
|
package/components/MenuItem.vue
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudron/pankow",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "4.1.
|
|
4
|
+
"version": "4.1.9",
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"types": "types/index.d.ts",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@fontsource/inter": "^5.2.8",
|
|
26
26
|
"@fortawesome/fontawesome-free": "^7.2.0",
|
|
27
|
-
"filesize": "^11.0.
|
|
27
|
+
"filesize": "^11.0.15",
|
|
28
28
|
"monaco-editor": "^0.55.1",
|
|
29
29
|
"online-3d-viewer": "^0.18.0"
|
|
30
30
|
},
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"@highlightjs/vue-plugin": "^2.1.0",
|
|
33
33
|
"@vitejs/plugin-vue": "^6.0.5",
|
|
34
34
|
"highlight.js": "^11.11.1",
|
|
35
|
-
"typescript": "^
|
|
36
|
-
"vite": "^8.0.
|
|
37
|
-
"vue": "^3.5.
|
|
35
|
+
"typescript": "^6.0.2",
|
|
36
|
+
"vite": "^8.0.6",
|
|
37
|
+
"vue": "^3.5.32",
|
|
38
38
|
"vue-router": "^5.0.4"
|
|
39
39
|
}
|
|
40
40
|
}
|
package/style.css
CHANGED
|
@@ -116,21 +116,6 @@ input {
|
|
|
116
116
|
}
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
-
a {
|
|
120
|
-
color: var(--pankow-color-dark);
|
|
121
|
-
text-decoration: none;
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
@media (prefers-color-scheme: dark) {
|
|
125
|
-
a {
|
|
126
|
-
color: var(--pankow-color-light-dark);
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
a:hover {
|
|
131
|
-
color: var(--pankow-color-primary-hover);
|
|
132
|
-
}
|
|
133
|
-
|
|
134
119
|
code {
|
|
135
120
|
background-color: var(--pankow-color-light-dark);
|
|
136
121
|
border-radius: 2px;
|
package/types/fetcher.d.ts
CHANGED
package/types/utils.d.ts
CHANGED
|
@@ -34,13 +34,13 @@ export function isValidDomainOrURL(domain: any): boolean;
|
|
|
34
34
|
export function isValidEmail(email: any): boolean;
|
|
35
35
|
export function prettyBinarySize(size: any, fallback: any): any;
|
|
36
36
|
export function prettyDecimalSize(size: any, fallback: any): any;
|
|
37
|
-
export function prettyDate(value: any):
|
|
37
|
+
export function prettyDate(value: any): string;
|
|
38
38
|
export function prettyShortDate(value: any): string;
|
|
39
39
|
export function formatDate(format: any, value: any): any;
|
|
40
40
|
export function prettyLongDate(value: any): string;
|
|
41
41
|
export function prettyFileSize(value: any): string;
|
|
42
42
|
export function prettyEmailAddresses(addresses: any): any;
|
|
43
|
-
export function prettyDuration(ms: any):
|
|
43
|
+
export function prettyDuration(ms: any): string;
|
|
44
44
|
export function sanitize(path: any): any;
|
|
45
45
|
export function pathJoin(...args: any[]): any;
|
|
46
46
|
export function download(entries: any, name: any): void;
|
|
@@ -56,5 +56,5 @@ export function parseResourcePath(resourcePath: any): {
|
|
|
56
56
|
};
|
|
57
57
|
export function getEntryIdentifier(entry: any): string;
|
|
58
58
|
export function entryListSort(list: any, prop: any, desc: any): any;
|
|
59
|
-
export function sleep(ms: any): any
|
|
59
|
+
export function sleep(ms: any): Promise<any>;
|
|
60
60
|
export function uuidv4(): string;
|