@xilonglab/vue-main 1.1.3 → 1.1.6

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.
@@ -14,6 +14,15 @@
14
14
  -webkit-text-size-adjust: 100%;
15
15
  }
16
16
 
17
+ html,
18
+ body,
19
+ #app {
20
+ height: 100%;
21
+ width: 100%;
22
+ margin: 0;
23
+ padding: 0;
24
+ }
25
+
17
26
  input[type=number]::-webkit-inner-spin-button,
18
27
  input[type=number]::-webkit-outer-spin-button {
19
28
  -webkit-appearance: none;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xilonglab/vue-main",
3
- "version": "1.1.3",
3
+ "version": "1.1.6",
4
4
  "description": "xilong vue main",
5
5
  "main": "packages/index.js",
6
6
  "scripts": {
@@ -1,4 +1,5 @@
1
1
  <script setup>
2
+ defineOptions({ name: "XlLoadingView" })
2
3
  // XlLoadingView 组件 - 应用加载状态视图
3
4
  </script>
4
5
 
@@ -1,4 +1,5 @@
1
1
  <script setup>
2
+ defineOptions({ name: "XlSystemView" })
2
3
  // XlSystemView 组件 - 系统视图(登录页等)
3
4
  </script>
4
5
 
@@ -1,58 +0,0 @@
1
- body {
2
- background: radial-gradient(circle at 10% 20%, rgb(0, 93, 133) 0%, rgb(0, 181, 149) 90%) !important;
3
- }
4
-
5
- html,
6
- body,
7
- #app,
8
- .user-view,
9
- .system-view {
10
- height: 100%;
11
- width: 100%;
12
- margin: 0;
13
- padding: 0;
14
- max-width: none;
15
- text-align: left;
16
- color: #000;
17
- }
18
-
19
- .user-view {
20
- display: flex;
21
- flex-flow: row;
22
-
23
- .xl-side-bar {
24
- width: 150px;
25
-
26
- .logo-wrapper {
27
- display: flex;
28
- align-items: center;
29
- justify-content: center;
30
- padding-top: 5px;
31
- border-bottom: 1px solid #1c3b64;
32
-
33
- .logo {
34
- opacity: 0.9;
35
- }
36
- }
37
- }
38
-
39
- .body {
40
- flex: 1;
41
- height: 100%;
42
- width: 100%;
43
- margin-right:5px;
44
- display: flex;
45
- flex-flow: column;
46
- overflow-x: scroll;
47
-
48
- .content {
49
- flex: 1;
50
- display: flex;
51
- flex-flow: column;
52
- min-height: 0;
53
- border-radius: 5px;
54
- overflow: hidden;
55
- }
56
-
57
- }
58
- }