quasar-ui-danx 0.2.23 → 0.2.25
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +91 -2
- package/dist/danx.es.js +6377 -6303
- package/dist/danx.es.js.map +1 -1
- package/dist/danx.umd.js +5 -5
- package/dist/danx.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/config/index.ts +26 -2
- package/src/helpers/FlashMessages.ts +34 -25
- package/src/helpers/hotkeys.ts +59 -0
- package/src/helpers/index.ts +2 -1
- package/src/helpers/request.ts +2 -2
- package/src/styles/index.scss +2 -0
- package/src/styles/quasar-reset.scss +28 -0
package/src/helpers/request.ts
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
import { ref, Ref
|
1
|
+
import { ref, Ref } from "vue";
|
2
2
|
|
3
3
|
interface RequestOptions {
|
4
4
|
baseUrl: string;
|
5
5
|
}
|
6
6
|
|
7
|
-
const requestOptions: Ref<
|
7
|
+
const requestOptions: Ref<RequestOptions> = ref({
|
8
8
|
baseUrl: ""
|
9
9
|
});
|
10
10
|
/**
|
package/src/styles/index.scss
CHANGED
@@ -0,0 +1,28 @@
|
|
1
|
+
.q-tab-panels {
|
2
|
+
overflow: visible;
|
3
|
+
|
4
|
+
.q-panel {
|
5
|
+
overflow: visible;
|
6
|
+
|
7
|
+
&.scroll {
|
8
|
+
overflow: auto;
|
9
|
+
}
|
10
|
+
|
11
|
+
.q-tab-panel {
|
12
|
+
padding: 0;
|
13
|
+
}
|
14
|
+
}
|
15
|
+
|
16
|
+
&.overflow-y-auto {
|
17
|
+
overflow-y: auto;
|
18
|
+
}
|
19
|
+
}
|
20
|
+
|
21
|
+
.q-toolbar {
|
22
|
+
min-height: 0;
|
23
|
+
padding: 0;
|
24
|
+
}
|
25
|
+
|
26
|
+
.q-notification__actions {
|
27
|
+
color: inherit;
|
28
|
+
}
|