Skip to content

Commit adc7647

Browse files
committedFeb 13, 2022
build: release 1.10.4
1 parent bf33a55 commit adc7647

12 files changed

+1251
-1077
lines changed
 

‎CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Changelog
22

3-
## next
3+
## 1.10.4 (Feb 13, 2022)
44

5-
- Use legacy color function notation (#529).
5+
- Use legacy color function notation for better compatibility (#529).
66

77
## 1.10.3 (Feb 2, 2022)
88

‎dist/viewer.common.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*!
2-
* Viewer.js v1.10.3
2+
* Viewer.js v1.10.4
33
* https://fengyuanchen.github.io/viewerjs
44
*
55
* Copyright 2015-present Chen Fengyuan
66
* Released under the MIT license
77
*
8-
* Date: 2022-02-02T05:15:01.702Z
8+
* Date: 2022-02-13T08:40:00.127Z
99
*/
1010

1111
'use strict';

‎dist/viewer.css

+13-12
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*!
2-
* Viewer.js v1.10.3
2+
* Viewer.js v1.10.4
33
* https://fengyuanchen.github.io/viewerjs
44
*
55
* Copyright 2015-present Chen Fengyuan
66
* Released under the MIT license
77
*
8-
* Date: 2022-02-02T05:14:59.271Z
8+
* Date: 2022-02-13T08:39:57.620Z
99
*/
1010

1111
.viewer-zoom-in::before, .viewer-zoom-out::before, .viewer-one-to-one::before, .viewer-reset::before, .viewer-prev::before, .viewer-play::before, .viewer-next::before, .viewer-rotate-left::before, .viewer-rotate-right::before, .viewer-flip-horizontal::before, .viewer-flip-vertical::before, .viewer-fullscreen::before, .viewer-fullscreen-exit::before, .viewer-close::before {
@@ -101,7 +101,8 @@
101101
right: 0;
102102
-webkit-tap-highlight-color: transparent;
103103
top: 0;
104-
touch-action: none;
104+
-ms-touch-action: none;
105+
touch-action: none;
105106
-webkit-touch-callout: none;
106107
-webkit-user-select: none;
107108
-moz-user-select: none;
@@ -158,7 +159,7 @@
158159
}
159160

160161
.viewer-navbar {
161-
background-color: rgb(0 0 0 / 50%);
162+
background-color: rgba(0, 0, 0, 50%);
162163
overflow: hidden;
163164
}
164165

@@ -240,7 +241,7 @@
240241
}
241242

242243
.viewer-toolbar > ul > li {
243-
background-color: rgb(0 0 0 / 50%);
244+
background-color: rgba(0, 0, 0, 50%);
244245
border-radius: 50%;
245246
cursor: pointer;
246247
float: left;
@@ -252,7 +253,7 @@
252253

253254
.viewer-toolbar > ul > li:focus,
254255
.viewer-toolbar > ul > li:hover {
255-
background-color: rgb(0 0 0 / 80%);
256+
background-color: rgba(0, 0, 0, 80%);
256257
}
257258

258259
.viewer-toolbar > ul > li:focus {
@@ -293,7 +294,7 @@
293294
}
294295

295296
.viewer-tooltip {
296-
background-color: rgb(0 0 0 / 80%);
297+
background-color: rgba(0, 0, 0, 80%);
297298
border-radius: 10px;
298299
color: #fff;
299300
display: none;
@@ -328,7 +329,7 @@
328329
}
329330

330331
.viewer-button {
331-
background-color: rgb(0 0 0 / 50%);
332+
background-color: rgba(0, 0, 0, 50%);
332333
border-radius: 50%;
333334
cursor: pointer;
334335
height: 80px;
@@ -342,7 +343,7 @@
342343

343344
.viewer-button:focus,
344345
.viewer-button:hover {
345-
background-color: rgb(0 0 0 / 80%);
346+
background-color: rgba(0, 0, 0, 80%);
346347
}
347348

348349
.viewer-button:focus {
@@ -373,7 +374,7 @@
373374
}
374375

375376
.viewer-backdrop {
376-
background-color: rgb(0 0 0 / 50%);
377+
background-color: rgba(0, 0, 0, 50%);
377378
}
378379

379380
.viewer-invisible {
@@ -421,8 +422,8 @@
421422
.viewer-loading::after {
422423
-webkit-animation: viewer-spinner 1s linear infinite;
423424
animation: viewer-spinner 1s linear infinite;
424-
border: 4px solid rgb(255 255 255 / 10%);
425-
border-left-color: rgb(255 255 255 / 50%);
425+
border: 4px solid rgba(255, 255, 255, 10%);
426+
border-left-color: rgba(255, 255, 255, 50%);
426427
border-radius: 50%;
427428
content: "";
428429
display: inline-block;

‎dist/viewer.esm.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*!
2-
* Viewer.js v1.10.3
2+
* Viewer.js v1.10.4
33
* https://fengyuanchen.github.io/viewerjs
44
*
55
* Copyright 2015-present Chen Fengyuan
66
* Released under the MIT license
77
*
8-
* Date: 2022-02-02T05:15:01.702Z
8+
* Date: 2022-02-13T08:40:00.127Z
99
*/
1010

1111
function ownKeys(object, enumerableOnly) {

‎dist/viewer.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*!
2-
* Viewer.js v1.10.3
2+
* Viewer.js v1.10.4
33
* https://fengyuanchen.github.io/viewerjs
44
*
55
* Copyright 2015-present Chen Fengyuan
66
* Released under the MIT license
77
*
8-
* Date: 2022-02-02T05:15:01.702Z
8+
* Date: 2022-02-13T08:40:00.127Z
99
*/
1010

1111
(function (global, factory) {

‎dist/viewer.min.css

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/viewer.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.