@kevisual/kv-login 0.1.16 → 0.1.17
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/app.d.ts +65 -0
- package/dist/app.js +8275 -0
- package/package.json +2 -2
- package/dist/assets/index-DlyftQE0.js +0 -469
- package/dist/index.html +0 -127
package/dist/index.html
DELETED
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="zh-CN">
|
|
3
|
-
|
|
4
|
-
<head>
|
|
5
|
-
<meta charset="UTF-8">
|
|
6
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
7
|
-
<title>KvMessage Demo</title>
|
|
8
|
-
<style>
|
|
9
|
-
* {
|
|
10
|
-
margin: 0;
|
|
11
|
-
padding: 0;
|
|
12
|
-
box-sizing: border-box;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
body {
|
|
16
|
-
margin: 0;
|
|
17
|
-
padding: 0;
|
|
18
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
19
|
-
min-height: 100vh;
|
|
20
|
-
background-image: url('https://zxj.tos-cn-shanghai.volces.com/img/20260119213348097_1768829628101.png');
|
|
21
|
-
background-size: cover;
|
|
22
|
-
background-position: center;
|
|
23
|
-
background-repeat: no-repeat;
|
|
24
|
-
background-attachment: fixed;
|
|
25
|
-
display: flex;
|
|
26
|
-
align-items: center;
|
|
27
|
-
justify-content: center;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.demo-container {
|
|
31
|
-
display: flex;
|
|
32
|
-
flex-direction: column;
|
|
33
|
-
align-items: center;
|
|
34
|
-
gap: 20px;
|
|
35
|
-
padding: 40px 20px;
|
|
36
|
-
width: 100%;
|
|
37
|
-
max-width: 500px;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.button-group {
|
|
41
|
-
display: flex;
|
|
42
|
-
gap: 12px;
|
|
43
|
-
flex-wrap: wrap;
|
|
44
|
-
justify-content: center;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.demo-button {
|
|
48
|
-
padding: 10px 20px;
|
|
49
|
-
border: 2px solid rgba(255, 255, 255, 0.3);
|
|
50
|
-
border-radius: 8px;
|
|
51
|
-
cursor: pointer;
|
|
52
|
-
font-size: 14px;
|
|
53
|
-
transition: all 0.3s ease;
|
|
54
|
-
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.demo-button.success {
|
|
58
|
-
background: #52c41a;
|
|
59
|
-
color: white;
|
|
60
|
-
border-color: #52c41a;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.demo-button.success:hover {
|
|
64
|
-
background: #389e0d;
|
|
65
|
-
border-color: #389e0d;
|
|
66
|
-
box-shadow: 0 4px 12px rgba(82, 196, 26, 0.3);
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.demo-button.error {
|
|
70
|
-
background: #ff4d4f;
|
|
71
|
-
color: white;
|
|
72
|
-
border-color: #ff4d4f;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.demo-button.error:hover {
|
|
76
|
-
background: #cf1322;
|
|
77
|
-
border-color: #cf1322;
|
|
78
|
-
box-shadow: 0 4px 12px rgba(255, 77, 79, 0.3);
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
.demo-button.loading {
|
|
82
|
-
background: #1890ff;
|
|
83
|
-
color: white;
|
|
84
|
-
border-color: #1890ff;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.demo-button.loading:hover {
|
|
88
|
-
background: #096dd9;
|
|
89
|
-
border-color: #096dd9;
|
|
90
|
-
box-shadow: 0 4px 12px rgba(24, 144, 255, 0.3);
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.login-section {
|
|
94
|
-
text-align: center;
|
|
95
|
-
background: rgba(255, 255, 255, 0.95);
|
|
96
|
-
padding: 40px 30px;
|
|
97
|
-
border-radius: 16px;
|
|
98
|
-
border: 2px solid rgba(255, 255, 255, 0.8);
|
|
99
|
-
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
|
|
100
|
-
0 0 0 1px rgba(255, 255, 255, 0.5) inset;
|
|
101
|
-
backdrop-filter: blur(10px);
|
|
102
|
-
-webkit-backdrop-filter: blur(10px);
|
|
103
|
-
width: 100%;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.login-section h2 {
|
|
107
|
-
margin-bottom: 30px;
|
|
108
|
-
color: #1a1a1a;
|
|
109
|
-
font-size: 28px;
|
|
110
|
-
font-weight: 600;
|
|
111
|
-
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
|
|
112
|
-
}
|
|
113
|
-
</style>
|
|
114
|
-
<script type="module" crossorigin src="/root/login/assets/index-DlyftQE0.js"></script>
|
|
115
|
-
</head>
|
|
116
|
-
|
|
117
|
-
<body>
|
|
118
|
-
<div class="demo-container">
|
|
119
|
-
<div class="login-section">
|
|
120
|
-
<h2>登录</h2>
|
|
121
|
-
<!-- <kv-login method="wechat,password"></kv-login> -->
|
|
122
|
-
<kv-login></kv-login>
|
|
123
|
-
</div>
|
|
124
|
-
</div>
|
|
125
|
-
</body>
|
|
126
|
-
|
|
127
|
-
</html>
|