@zyzgroup/core-web 0.1.5 → 0.1.7
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/better.css +4 -3
- package/dist/font.css +21 -22
- package/dist/zyzgroup_core_web.iife.js +13 -13
- package/dist/zyzgroup_core_web.iife.js.map +1 -1
- package/dist/zyzgroup_core_web.js +551 -532
- package/dist/zyzgroup_core_web.js.map +1 -1
- package/dist/zyzgroup_core_web.umd.cjs +13 -13
- package/dist/zyzgroup_core_web.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/types/hooks/useElement.d.ts +3 -0
- package/types/hooks/useElement.d.ts.map +1 -1
- package/types/hooks/useFetch.d.ts +9 -5
- package/types/hooks/useFetch.d.ts.map +1 -1
- package/types/hooks/useLoadImage.d.ts +1 -1
- package/types/hooks/useLoadImage.d.ts.map +1 -1
- package/types/hooks/useSelectFile.d.ts +1 -1
- package/types/hooks/useWindow.d.ts +1 -0
- package/types/hooks/useWindow.d.ts.map +1 -1
- package/types/image/image.d.ts.map +1 -1
- package/types/theme.d.ts.map +1 -1
package/dist/better.css
CHANGED
|
@@ -168,9 +168,9 @@ a:focus {
|
|
|
168
168
|
img,
|
|
169
169
|
picture {
|
|
170
170
|
display: block;
|
|
171
|
-
max-width: 100%;
|
|
172
171
|
width: 100%;
|
|
173
|
-
height: 100%;
|
|
172
|
+
/* height: 100%; */
|
|
173
|
+
max-width: 100%;
|
|
174
174
|
border: 0 none;
|
|
175
175
|
object-fit: cover;
|
|
176
176
|
/* 禁止长按链接与图片弹出菜单 */
|
|
@@ -284,7 +284,8 @@ q {
|
|
|
284
284
|
clear: both;
|
|
285
285
|
}
|
|
286
286
|
|
|
287
|
-
.truncate
|
|
287
|
+
.truncate,
|
|
288
|
+
.ellipsis {
|
|
288
289
|
overflow: hidden;
|
|
289
290
|
text-overflow: ellipsis;
|
|
290
291
|
white-space: nowrap;
|
package/dist/font.css
CHANGED
|
@@ -1,25 +1,3 @@
|
|
|
1
|
-
/* @font-face {
|
|
2
|
-
font-family: D-DINCondensed-number;
|
|
3
|
-
src: url("./D-DINCondensed-number.ttf") format("truetype");
|
|
4
|
-
font-weight: normal;
|
|
5
|
-
font-style: normal;
|
|
6
|
-
font-display: swap;
|
|
7
|
-
} */
|
|
8
|
-
/* .din-condensed-number {
|
|
9
|
-
font-family: D-DINCondensed-number !important;
|
|
10
|
-
font-size: 16px;
|
|
11
|
-
line-height: 24px;
|
|
12
|
-
font-weight: normal;
|
|
13
|
-
font-style: normal;
|
|
14
|
-
font-variant: normal;
|
|
15
|
-
text-transform: none;
|
|
16
|
-
font-synthesis: none;
|
|
17
|
-
text-rendering: optimizeLegibility;
|
|
18
|
-
-webkit-font-smoothing: antialiased;
|
|
19
|
-
-moz-osx-font-smoothing: grayscale;
|
|
20
|
-
-webkit-text-size-adjust: 100%;
|
|
21
|
-
} */
|
|
22
|
-
|
|
23
1
|
@font-face {
|
|
24
2
|
font-family: D-DINExp;
|
|
25
3
|
src: url("./D-DINExp.ttf") format("truetype");
|
|
@@ -67,3 +45,24 @@
|
|
|
67
45
|
font-style: normal;
|
|
68
46
|
font-display: swap;
|
|
69
47
|
}
|
|
48
|
+
/* @font-face {
|
|
49
|
+
font-family: D-DINCondensed-number;
|
|
50
|
+
src: url("./D-DINCondensed-number.ttf") format("truetype");
|
|
51
|
+
font-weight: normal;
|
|
52
|
+
font-style: normal;
|
|
53
|
+
font-display: swap;
|
|
54
|
+
} */
|
|
55
|
+
/* .din-condensed-number {
|
|
56
|
+
font-family: D-DINCondensed-number !important;
|
|
57
|
+
font-size: 16px;
|
|
58
|
+
line-height: 24px;
|
|
59
|
+
font-weight: normal;
|
|
60
|
+
font-style: normal;
|
|
61
|
+
font-variant: normal;
|
|
62
|
+
text-transform: none;
|
|
63
|
+
font-synthesis: none;
|
|
64
|
+
text-rendering: optimizeLegibility;
|
|
65
|
+
-webkit-font-smoothing: antialiased;
|
|
66
|
+
-moz-osx-font-smoothing: grayscale;
|
|
67
|
+
-webkit-text-size-adjust: 100%;
|
|
68
|
+
} */
|