@dialpad/dialtone-vue 3.37.0 → 3.39.0-beta.1
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/CHANGELOG.json +1 -0
- package/CHANGELOG.md +910 -0
- package/dist/dialtone-vue.common.js +167 -1070
- package/dist/dialtone-vue.umd.js +167 -1070
- package/dist/dialtone-vue.umd.min.js +1 -1
- package/dist/emoji.common.js +6 -295
- package/dist/emoji.umd.js +6 -295
- package/dist/emoji.umd.min.js +1 -1
- package/package.json +8 -3
package/dist/emoji.common.js
CHANGED
|
@@ -1,155 +1,10 @@
|
|
|
1
1
|
/******/ (() => { // webpackBootstrap
|
|
2
|
+
/******/ "use strict";
|
|
2
3
|
/******/ var __webpack_modules__ = ({
|
|
3
4
|
|
|
4
|
-
/***/ 141:
|
|
5
|
-
/***/ ((module, __webpack_exports__, __webpack_require__) => {
|
|
6
|
-
|
|
7
|
-
"use strict";
|
|
8
|
-
__webpack_require__.r(__webpack_exports__);
|
|
9
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
10
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
11
|
-
/* harmony export */ });
|
|
12
|
-
/* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81);
|
|
13
|
-
/* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
14
|
-
/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(645);
|
|
15
|
-
/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__);
|
|
16
|
-
// Imports
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
|
|
20
|
-
// Module
|
|
21
|
-
___CSS_LOADER_EXPORT___.push([module.id, ".skeleton-placeholder{display:flex;stroke:none;fill:var(--placeholder-from-color,var(--black-300));background:var(--placeholder-from-color,var(--black-300))}.skeleton-placeholder--animate{animation-name:placeholder-throb;animation-iteration-count:infinite}@keyframes placeholder-throb{10%{fill:var(--placeholder-from-color,var(--black-300));background:var(--placeholder-from-color,var(--black-300))}50%{fill:var(--placeholder-to-color,var(--black-100));background:var(--placeholder-to-color,var(--black-100))}90%{fill:var(--placeholder-from-color,var(--black-300));background:var(--placeholder-from-color,var(--black-300))}}", ""]);
|
|
22
|
-
// Exports
|
|
23
|
-
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___);
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
/***/ }),
|
|
27
|
-
|
|
28
|
-
/***/ 645:
|
|
29
|
-
/***/ ((module) => {
|
|
30
|
-
|
|
31
|
-
"use strict";
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
/*
|
|
35
|
-
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
36
|
-
Author Tobias Koppers @sokra
|
|
37
|
-
*/
|
|
38
|
-
module.exports = function (cssWithMappingToString) {
|
|
39
|
-
var list = []; // return the list of modules as css string
|
|
40
|
-
|
|
41
|
-
list.toString = function toString() {
|
|
42
|
-
return this.map(function (item) {
|
|
43
|
-
var content = "";
|
|
44
|
-
var needLayer = typeof item[5] !== "undefined";
|
|
45
|
-
|
|
46
|
-
if (item[4]) {
|
|
47
|
-
content += "@supports (".concat(item[4], ") {");
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
if (item[2]) {
|
|
51
|
-
content += "@media ".concat(item[2], " {");
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
if (needLayer) {
|
|
55
|
-
content += "@layer".concat(item[5].length > 0 ? " ".concat(item[5]) : "", " {");
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
content += cssWithMappingToString(item);
|
|
59
|
-
|
|
60
|
-
if (needLayer) {
|
|
61
|
-
content += "}";
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
if (item[2]) {
|
|
65
|
-
content += "}";
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
if (item[4]) {
|
|
69
|
-
content += "}";
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
return content;
|
|
73
|
-
}).join("");
|
|
74
|
-
}; // import a list of modules into the list
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
list.i = function i(modules, media, dedupe, supports, layer) {
|
|
78
|
-
if (typeof modules === "string") {
|
|
79
|
-
modules = [[null, modules, undefined]];
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
var alreadyImportedModules = {};
|
|
83
|
-
|
|
84
|
-
if (dedupe) {
|
|
85
|
-
for (var k = 0; k < this.length; k++) {
|
|
86
|
-
var id = this[k][0];
|
|
87
|
-
|
|
88
|
-
if (id != null) {
|
|
89
|
-
alreadyImportedModules[id] = true;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
for (var _k = 0; _k < modules.length; _k++) {
|
|
95
|
-
var item = [].concat(modules[_k]);
|
|
96
|
-
|
|
97
|
-
if (dedupe && alreadyImportedModules[item[0]]) {
|
|
98
|
-
continue;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
if (typeof layer !== "undefined") {
|
|
102
|
-
if (typeof item[5] === "undefined") {
|
|
103
|
-
item[5] = layer;
|
|
104
|
-
} else {
|
|
105
|
-
item[1] = "@layer".concat(item[5].length > 0 ? " ".concat(item[5]) : "", " {").concat(item[1], "}");
|
|
106
|
-
item[5] = layer;
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
if (media) {
|
|
111
|
-
if (!item[2]) {
|
|
112
|
-
item[2] = media;
|
|
113
|
-
} else {
|
|
114
|
-
item[1] = "@media ".concat(item[2], " {").concat(item[1], "}");
|
|
115
|
-
item[2] = media;
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
if (supports) {
|
|
120
|
-
if (!item[4]) {
|
|
121
|
-
item[4] = "".concat(supports);
|
|
122
|
-
} else {
|
|
123
|
-
item[1] = "@supports (".concat(item[4], ") {").concat(item[1], "}");
|
|
124
|
-
item[4] = supports;
|
|
125
|
-
}
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
list.push(item);
|
|
129
|
-
}
|
|
130
|
-
};
|
|
131
|
-
|
|
132
|
-
return list;
|
|
133
|
-
};
|
|
134
|
-
|
|
135
|
-
/***/ }),
|
|
136
|
-
|
|
137
|
-
/***/ 81:
|
|
138
|
-
/***/ ((module) => {
|
|
139
|
-
|
|
140
|
-
"use strict";
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
module.exports = function (i) {
|
|
144
|
-
return i[1];
|
|
145
|
-
};
|
|
146
|
-
|
|
147
|
-
/***/ }),
|
|
148
|
-
|
|
149
5
|
/***/ 744:
|
|
150
6
|
/***/ ((__unused_webpack_module, exports) => {
|
|
151
7
|
|
|
152
|
-
"use strict";
|
|
153
8
|
var __webpack_unused_export__;
|
|
154
9
|
|
|
155
10
|
__webpack_unused_export__ = ({ value: true });
|
|
@@ -164,138 +19,6 @@ exports.Z = (sfc, props) => {
|
|
|
164
19
|
};
|
|
165
20
|
|
|
166
21
|
|
|
167
|
-
/***/ }),
|
|
168
|
-
|
|
169
|
-
/***/ 309:
|
|
170
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
171
|
-
|
|
172
|
-
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
173
|
-
|
|
174
|
-
// load the styles
|
|
175
|
-
var content = __webpack_require__(141);
|
|
176
|
-
if(content.__esModule) content = content.default;
|
|
177
|
-
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
178
|
-
if(content.locals) module.exports = content.locals;
|
|
179
|
-
// add CSS to Shadow Root
|
|
180
|
-
var add = (__webpack_require__(339)/* ["default"] */ .Z)
|
|
181
|
-
module.exports.__inject__ = function (shadowRoot) {
|
|
182
|
-
add("3230f382", content, shadowRoot)
|
|
183
|
-
};
|
|
184
|
-
|
|
185
|
-
/***/ }),
|
|
186
|
-
|
|
187
|
-
/***/ 339:
|
|
188
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
189
|
-
|
|
190
|
-
"use strict";
|
|
191
|
-
|
|
192
|
-
// EXPORTS
|
|
193
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
194
|
-
"Z": () => (/* binding */ addStylesToShadowDOM)
|
|
195
|
-
});
|
|
196
|
-
|
|
197
|
-
;// CONCATENATED MODULE: ./node_modules/vue-style-loader/lib/listToStyles.js
|
|
198
|
-
/**
|
|
199
|
-
* Translates the list format produced by css-loader into something
|
|
200
|
-
* easier to manipulate.
|
|
201
|
-
*/
|
|
202
|
-
function listToStyles (parentId, list) {
|
|
203
|
-
var styles = []
|
|
204
|
-
var newStyles = {}
|
|
205
|
-
for (var i = 0; i < list.length; i++) {
|
|
206
|
-
var item = list[i]
|
|
207
|
-
var id = item[0]
|
|
208
|
-
var css = item[1]
|
|
209
|
-
var media = item[2]
|
|
210
|
-
var sourceMap = item[3]
|
|
211
|
-
var part = {
|
|
212
|
-
id: parentId + ':' + i,
|
|
213
|
-
css: css,
|
|
214
|
-
media: media,
|
|
215
|
-
sourceMap: sourceMap
|
|
216
|
-
}
|
|
217
|
-
if (!newStyles[id]) {
|
|
218
|
-
styles.push(newStyles[id] = { id: id, parts: [part] })
|
|
219
|
-
} else {
|
|
220
|
-
newStyles[id].parts.push(part)
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
return styles
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
;// CONCATENATED MODULE: ./node_modules/vue-style-loader/lib/addStylesShadow.js
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
function addStylesToShadowDOM (parentId, list, shadowRoot) {
|
|
230
|
-
var styles = listToStyles(parentId, list)
|
|
231
|
-
addStyles(styles, shadowRoot)
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
/*
|
|
235
|
-
type StyleObject = {
|
|
236
|
-
id: number;
|
|
237
|
-
parts: Array<StyleObjectPart>
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
type StyleObjectPart = {
|
|
241
|
-
css: string;
|
|
242
|
-
media: string;
|
|
243
|
-
sourceMap: ?string
|
|
244
|
-
}
|
|
245
|
-
*/
|
|
246
|
-
|
|
247
|
-
function addStyles (styles /* Array<StyleObject> */, shadowRoot) {
|
|
248
|
-
const injectedStyles =
|
|
249
|
-
shadowRoot._injectedStyles ||
|
|
250
|
-
(shadowRoot._injectedStyles = {})
|
|
251
|
-
for (var i = 0; i < styles.length; i++) {
|
|
252
|
-
var item = styles[i]
|
|
253
|
-
var style = injectedStyles[item.id]
|
|
254
|
-
if (!style) {
|
|
255
|
-
for (var j = 0; j < item.parts.length; j++) {
|
|
256
|
-
addStyle(item.parts[j], shadowRoot)
|
|
257
|
-
}
|
|
258
|
-
injectedStyles[item.id] = true
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
function createStyleElement (shadowRoot) {
|
|
264
|
-
var styleElement = document.createElement('style')
|
|
265
|
-
styleElement.type = 'text/css'
|
|
266
|
-
shadowRoot.appendChild(styleElement)
|
|
267
|
-
return styleElement
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
function addStyle (obj /* StyleObjectPart */, shadowRoot) {
|
|
271
|
-
var styleElement = createStyleElement(shadowRoot)
|
|
272
|
-
var css = obj.css
|
|
273
|
-
var media = obj.media
|
|
274
|
-
var sourceMap = obj.sourceMap
|
|
275
|
-
|
|
276
|
-
if (media) {
|
|
277
|
-
styleElement.setAttribute('media', media)
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
if (sourceMap) {
|
|
281
|
-
// https://developer.chrome.com/devtools/docs/javascript-debugging
|
|
282
|
-
// this makes source maps inside style tags work properly in Chrome
|
|
283
|
-
css += '\n/*# sourceURL=' + sourceMap.sources[0] + ' */'
|
|
284
|
-
// http://stackoverflow.com/a/26603875
|
|
285
|
-
css += '\n/*# sourceMappingURL=data:application/json;base64,' + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + ' */'
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
if (styleElement.styleSheet) {
|
|
289
|
-
styleElement.styleSheet.cssText = css
|
|
290
|
-
} else {
|
|
291
|
-
while (styleElement.firstChild) {
|
|
292
|
-
styleElement.removeChild(styleElement.firstChild)
|
|
293
|
-
}
|
|
294
|
-
styleElement.appendChild(document.createTextNode(css))
|
|
295
|
-
}
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
|
|
299
22
|
/***/ })
|
|
300
23
|
|
|
301
24
|
/******/ });
|
|
@@ -312,7 +35,7 @@ function addStyle (obj /* StyleObjectPart */, shadowRoot) {
|
|
|
312
35
|
/******/ }
|
|
313
36
|
/******/ // Create a new module (and put it into the cache)
|
|
314
37
|
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
315
|
-
/******/ id
|
|
38
|
+
/******/ // no module.id needed
|
|
316
39
|
/******/ // no module.loaded needed
|
|
317
40
|
/******/ exports: {}
|
|
318
41
|
/******/ };
|
|
@@ -325,18 +48,6 @@ function addStyle (obj /* StyleObjectPart */, shadowRoot) {
|
|
|
325
48
|
/******/ }
|
|
326
49
|
/******/
|
|
327
50
|
/************************************************************************/
|
|
328
|
-
/******/ /* webpack/runtime/compat get default export */
|
|
329
|
-
/******/ (() => {
|
|
330
|
-
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
331
|
-
/******/ __webpack_require__.n = (module) => {
|
|
332
|
-
/******/ var getter = module && module.__esModule ?
|
|
333
|
-
/******/ () => (module['default']) :
|
|
334
|
-
/******/ () => (module);
|
|
335
|
-
/******/ __webpack_require__.d(getter, { a: getter });
|
|
336
|
-
/******/ return getter;
|
|
337
|
-
/******/ };
|
|
338
|
-
/******/ })();
|
|
339
|
-
/******/
|
|
340
51
|
/******/ /* webpack/runtime/define property getters */
|
|
341
52
|
/******/ (() => {
|
|
342
53
|
/******/ // define getter functions for harmony exports
|
|
@@ -372,9 +83,8 @@ function addStyle (obj /* StyleObjectPart */, shadowRoot) {
|
|
|
372
83
|
/******/
|
|
373
84
|
/************************************************************************/
|
|
374
85
|
var __webpack_exports__ = {};
|
|
375
|
-
// This entry need to be wrapped in an IIFE because it need to be in
|
|
86
|
+
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
|
|
376
87
|
(() => {
|
|
377
|
-
"use strict";
|
|
378
88
|
// ESM COMPAT FLAG
|
|
379
89
|
__webpack_require__.r(__webpack_exports__);
|
|
380
90
|
|
|
@@ -1448,8 +1158,9 @@ const skeleton_list_item_exports_ = /*#__PURE__*/(0,exportHelper/* default */.Z)
|
|
|
1448
1158
|
});
|
|
1449
1159
|
;// CONCATENATED MODULE: ./components/skeleton/skeleton.vue?vue&type=script&lang=js
|
|
1450
1160
|
|
|
1451
|
-
|
|
1452
|
-
|
|
1161
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-32.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-32.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-32.use[2]!./node_modules/less-loader/dist/cjs.js??clonedRuleSet-32.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./components/skeleton/skeleton.vue?vue&type=style&index=0&id=47dbc65e&lang=less
|
|
1162
|
+
// extracted by mini-css-extract-plugin
|
|
1163
|
+
|
|
1453
1164
|
;// CONCATENATED MODULE: ./components/skeleton/skeleton.vue?vue&type=style&index=0&id=47dbc65e&lang=less
|
|
1454
1165
|
|
|
1455
1166
|
;// CONCATENATED MODULE: ./components/skeleton/skeleton.vue
|
package/dist/emoji.umd.js
CHANGED
|
@@ -9,157 +9,12 @@
|
|
|
9
9
|
root["emoji"] = factory();
|
|
10
10
|
})((typeof self !== 'undefined' ? self : this), () => {
|
|
11
11
|
return /******/ (() => { // webpackBootstrap
|
|
12
|
+
/******/ "use strict";
|
|
12
13
|
/******/ var __webpack_modules__ = ({
|
|
13
14
|
|
|
14
|
-
/***/ 615:
|
|
15
|
-
/***/ ((module, __webpack_exports__, __webpack_require__) => {
|
|
16
|
-
|
|
17
|
-
"use strict";
|
|
18
|
-
__webpack_require__.r(__webpack_exports__);
|
|
19
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
20
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
21
|
-
/* harmony export */ });
|
|
22
|
-
/* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(81);
|
|
23
|
-
/* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
24
|
-
/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(645);
|
|
25
|
-
/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__);
|
|
26
|
-
// Imports
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
|
|
30
|
-
// Module
|
|
31
|
-
___CSS_LOADER_EXPORT___.push([module.id, ".skeleton-placeholder{display:flex;stroke:none;fill:var(--placeholder-from-color,var(--black-300));background:var(--placeholder-from-color,var(--black-300))}.skeleton-placeholder--animate{animation-name:placeholder-throb;animation-iteration-count:infinite}@keyframes placeholder-throb{10%{fill:var(--placeholder-from-color,var(--black-300));background:var(--placeholder-from-color,var(--black-300))}50%{fill:var(--placeholder-to-color,var(--black-100));background:var(--placeholder-to-color,var(--black-100))}90%{fill:var(--placeholder-from-color,var(--black-300));background:var(--placeholder-from-color,var(--black-300))}}", ""]);
|
|
32
|
-
// Exports
|
|
33
|
-
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___);
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
/***/ }),
|
|
37
|
-
|
|
38
|
-
/***/ 645:
|
|
39
|
-
/***/ ((module) => {
|
|
40
|
-
|
|
41
|
-
"use strict";
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
/*
|
|
45
|
-
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
46
|
-
Author Tobias Koppers @sokra
|
|
47
|
-
*/
|
|
48
|
-
module.exports = function (cssWithMappingToString) {
|
|
49
|
-
var list = []; // return the list of modules as css string
|
|
50
|
-
|
|
51
|
-
list.toString = function toString() {
|
|
52
|
-
return this.map(function (item) {
|
|
53
|
-
var content = "";
|
|
54
|
-
var needLayer = typeof item[5] !== "undefined";
|
|
55
|
-
|
|
56
|
-
if (item[4]) {
|
|
57
|
-
content += "@supports (".concat(item[4], ") {");
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
if (item[2]) {
|
|
61
|
-
content += "@media ".concat(item[2], " {");
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
if (needLayer) {
|
|
65
|
-
content += "@layer".concat(item[5].length > 0 ? " ".concat(item[5]) : "", " {");
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
content += cssWithMappingToString(item);
|
|
69
|
-
|
|
70
|
-
if (needLayer) {
|
|
71
|
-
content += "}";
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
if (item[2]) {
|
|
75
|
-
content += "}";
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
if (item[4]) {
|
|
79
|
-
content += "}";
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
return content;
|
|
83
|
-
}).join("");
|
|
84
|
-
}; // import a list of modules into the list
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
list.i = function i(modules, media, dedupe, supports, layer) {
|
|
88
|
-
if (typeof modules === "string") {
|
|
89
|
-
modules = [[null, modules, undefined]];
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
var alreadyImportedModules = {};
|
|
93
|
-
|
|
94
|
-
if (dedupe) {
|
|
95
|
-
for (var k = 0; k < this.length; k++) {
|
|
96
|
-
var id = this[k][0];
|
|
97
|
-
|
|
98
|
-
if (id != null) {
|
|
99
|
-
alreadyImportedModules[id] = true;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
for (var _k = 0; _k < modules.length; _k++) {
|
|
105
|
-
var item = [].concat(modules[_k]);
|
|
106
|
-
|
|
107
|
-
if (dedupe && alreadyImportedModules[item[0]]) {
|
|
108
|
-
continue;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
if (typeof layer !== "undefined") {
|
|
112
|
-
if (typeof item[5] === "undefined") {
|
|
113
|
-
item[5] = layer;
|
|
114
|
-
} else {
|
|
115
|
-
item[1] = "@layer".concat(item[5].length > 0 ? " ".concat(item[5]) : "", " {").concat(item[1], "}");
|
|
116
|
-
item[5] = layer;
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
if (media) {
|
|
121
|
-
if (!item[2]) {
|
|
122
|
-
item[2] = media;
|
|
123
|
-
} else {
|
|
124
|
-
item[1] = "@media ".concat(item[2], " {").concat(item[1], "}");
|
|
125
|
-
item[2] = media;
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
if (supports) {
|
|
130
|
-
if (!item[4]) {
|
|
131
|
-
item[4] = "".concat(supports);
|
|
132
|
-
} else {
|
|
133
|
-
item[1] = "@supports (".concat(item[4], ") {").concat(item[1], "}");
|
|
134
|
-
item[4] = supports;
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
list.push(item);
|
|
139
|
-
}
|
|
140
|
-
};
|
|
141
|
-
|
|
142
|
-
return list;
|
|
143
|
-
};
|
|
144
|
-
|
|
145
|
-
/***/ }),
|
|
146
|
-
|
|
147
|
-
/***/ 81:
|
|
148
|
-
/***/ ((module) => {
|
|
149
|
-
|
|
150
|
-
"use strict";
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
module.exports = function (i) {
|
|
154
|
-
return i[1];
|
|
155
|
-
};
|
|
156
|
-
|
|
157
|
-
/***/ }),
|
|
158
|
-
|
|
159
15
|
/***/ 744:
|
|
160
16
|
/***/ ((__unused_webpack_module, exports) => {
|
|
161
17
|
|
|
162
|
-
"use strict";
|
|
163
18
|
var __webpack_unused_export__;
|
|
164
19
|
|
|
165
20
|
__webpack_unused_export__ = ({ value: true });
|
|
@@ -174,138 +29,6 @@ exports.Z = (sfc, props) => {
|
|
|
174
29
|
};
|
|
175
30
|
|
|
176
31
|
|
|
177
|
-
/***/ }),
|
|
178
|
-
|
|
179
|
-
/***/ 574:
|
|
180
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
181
|
-
|
|
182
|
-
// style-loader: Adds some css to the DOM by adding a <style> tag
|
|
183
|
-
|
|
184
|
-
// load the styles
|
|
185
|
-
var content = __webpack_require__(615);
|
|
186
|
-
if(content.__esModule) content = content.default;
|
|
187
|
-
if(typeof content === 'string') content = [[module.id, content, '']];
|
|
188
|
-
if(content.locals) module.exports = content.locals;
|
|
189
|
-
// add CSS to Shadow Root
|
|
190
|
-
var add = (__webpack_require__(339)/* ["default"] */ .Z)
|
|
191
|
-
module.exports.__inject__ = function (shadowRoot) {
|
|
192
|
-
add("69f5defa", content, shadowRoot)
|
|
193
|
-
};
|
|
194
|
-
|
|
195
|
-
/***/ }),
|
|
196
|
-
|
|
197
|
-
/***/ 339:
|
|
198
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
199
|
-
|
|
200
|
-
"use strict";
|
|
201
|
-
|
|
202
|
-
// EXPORTS
|
|
203
|
-
__webpack_require__.d(__webpack_exports__, {
|
|
204
|
-
"Z": () => (/* binding */ addStylesToShadowDOM)
|
|
205
|
-
});
|
|
206
|
-
|
|
207
|
-
;// CONCATENATED MODULE: ./node_modules/vue-style-loader/lib/listToStyles.js
|
|
208
|
-
/**
|
|
209
|
-
* Translates the list format produced by css-loader into something
|
|
210
|
-
* easier to manipulate.
|
|
211
|
-
*/
|
|
212
|
-
function listToStyles (parentId, list) {
|
|
213
|
-
var styles = []
|
|
214
|
-
var newStyles = {}
|
|
215
|
-
for (var i = 0; i < list.length; i++) {
|
|
216
|
-
var item = list[i]
|
|
217
|
-
var id = item[0]
|
|
218
|
-
var css = item[1]
|
|
219
|
-
var media = item[2]
|
|
220
|
-
var sourceMap = item[3]
|
|
221
|
-
var part = {
|
|
222
|
-
id: parentId + ':' + i,
|
|
223
|
-
css: css,
|
|
224
|
-
media: media,
|
|
225
|
-
sourceMap: sourceMap
|
|
226
|
-
}
|
|
227
|
-
if (!newStyles[id]) {
|
|
228
|
-
styles.push(newStyles[id] = { id: id, parts: [part] })
|
|
229
|
-
} else {
|
|
230
|
-
newStyles[id].parts.push(part)
|
|
231
|
-
}
|
|
232
|
-
}
|
|
233
|
-
return styles
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
;// CONCATENATED MODULE: ./node_modules/vue-style-loader/lib/addStylesShadow.js
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
function addStylesToShadowDOM (parentId, list, shadowRoot) {
|
|
240
|
-
var styles = listToStyles(parentId, list)
|
|
241
|
-
addStyles(styles, shadowRoot)
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
/*
|
|
245
|
-
type StyleObject = {
|
|
246
|
-
id: number;
|
|
247
|
-
parts: Array<StyleObjectPart>
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
type StyleObjectPart = {
|
|
251
|
-
css: string;
|
|
252
|
-
media: string;
|
|
253
|
-
sourceMap: ?string
|
|
254
|
-
}
|
|
255
|
-
*/
|
|
256
|
-
|
|
257
|
-
function addStyles (styles /* Array<StyleObject> */, shadowRoot) {
|
|
258
|
-
const injectedStyles =
|
|
259
|
-
shadowRoot._injectedStyles ||
|
|
260
|
-
(shadowRoot._injectedStyles = {})
|
|
261
|
-
for (var i = 0; i < styles.length; i++) {
|
|
262
|
-
var item = styles[i]
|
|
263
|
-
var style = injectedStyles[item.id]
|
|
264
|
-
if (!style) {
|
|
265
|
-
for (var j = 0; j < item.parts.length; j++) {
|
|
266
|
-
addStyle(item.parts[j], shadowRoot)
|
|
267
|
-
}
|
|
268
|
-
injectedStyles[item.id] = true
|
|
269
|
-
}
|
|
270
|
-
}
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
function createStyleElement (shadowRoot) {
|
|
274
|
-
var styleElement = document.createElement('style')
|
|
275
|
-
styleElement.type = 'text/css'
|
|
276
|
-
shadowRoot.appendChild(styleElement)
|
|
277
|
-
return styleElement
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
function addStyle (obj /* StyleObjectPart */, shadowRoot) {
|
|
281
|
-
var styleElement = createStyleElement(shadowRoot)
|
|
282
|
-
var css = obj.css
|
|
283
|
-
var media = obj.media
|
|
284
|
-
var sourceMap = obj.sourceMap
|
|
285
|
-
|
|
286
|
-
if (media) {
|
|
287
|
-
styleElement.setAttribute('media', media)
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
if (sourceMap) {
|
|
291
|
-
// https://developer.chrome.com/devtools/docs/javascript-debugging
|
|
292
|
-
// this makes source maps inside style tags work properly in Chrome
|
|
293
|
-
css += '\n/*# sourceURL=' + sourceMap.sources[0] + ' */'
|
|
294
|
-
// http://stackoverflow.com/a/26603875
|
|
295
|
-
css += '\n/*# sourceMappingURL=data:application/json;base64,' + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + ' */'
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
if (styleElement.styleSheet) {
|
|
299
|
-
styleElement.styleSheet.cssText = css
|
|
300
|
-
} else {
|
|
301
|
-
while (styleElement.firstChild) {
|
|
302
|
-
styleElement.removeChild(styleElement.firstChild)
|
|
303
|
-
}
|
|
304
|
-
styleElement.appendChild(document.createTextNode(css))
|
|
305
|
-
}
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
|
|
309
32
|
/***/ })
|
|
310
33
|
|
|
311
34
|
/******/ });
|
|
@@ -322,7 +45,7 @@ function addStyle (obj /* StyleObjectPart */, shadowRoot) {
|
|
|
322
45
|
/******/ }
|
|
323
46
|
/******/ // Create a new module (and put it into the cache)
|
|
324
47
|
/******/ var module = __webpack_module_cache__[moduleId] = {
|
|
325
|
-
/******/ id
|
|
48
|
+
/******/ // no module.id needed
|
|
326
49
|
/******/ // no module.loaded needed
|
|
327
50
|
/******/ exports: {}
|
|
328
51
|
/******/ };
|
|
@@ -335,18 +58,6 @@ function addStyle (obj /* StyleObjectPart */, shadowRoot) {
|
|
|
335
58
|
/******/ }
|
|
336
59
|
/******/
|
|
337
60
|
/************************************************************************/
|
|
338
|
-
/******/ /* webpack/runtime/compat get default export */
|
|
339
|
-
/******/ (() => {
|
|
340
|
-
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
341
|
-
/******/ __webpack_require__.n = (module) => {
|
|
342
|
-
/******/ var getter = module && module.__esModule ?
|
|
343
|
-
/******/ () => (module['default']) :
|
|
344
|
-
/******/ () => (module);
|
|
345
|
-
/******/ __webpack_require__.d(getter, { a: getter });
|
|
346
|
-
/******/ return getter;
|
|
347
|
-
/******/ };
|
|
348
|
-
/******/ })();
|
|
349
|
-
/******/
|
|
350
61
|
/******/ /* webpack/runtime/define property getters */
|
|
351
62
|
/******/ (() => {
|
|
352
63
|
/******/ // define getter functions for harmony exports
|
|
@@ -382,9 +93,8 @@ function addStyle (obj /* StyleObjectPart */, shadowRoot) {
|
|
|
382
93
|
/******/
|
|
383
94
|
/************************************************************************/
|
|
384
95
|
var __webpack_exports__ = {};
|
|
385
|
-
// This entry need to be wrapped in an IIFE because it need to be in
|
|
96
|
+
// This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
|
|
386
97
|
(() => {
|
|
387
|
-
"use strict";
|
|
388
98
|
// ESM COMPAT FLAG
|
|
389
99
|
__webpack_require__.r(__webpack_exports__);
|
|
390
100
|
|
|
@@ -1458,8 +1168,9 @@ const skeleton_list_item_exports_ = /*#__PURE__*/(0,exportHelper/* default */.Z)
|
|
|
1458
1168
|
});
|
|
1459
1169
|
;// CONCATENATED MODULE: ./components/skeleton/skeleton.vue?vue&type=script&lang=js
|
|
1460
1170
|
|
|
1461
|
-
|
|
1462
|
-
|
|
1171
|
+
;// CONCATENATED MODULE: ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-74.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-74.use[1]!./node_modules/vue-loader/dist/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-74.use[2]!./node_modules/less-loader/dist/cjs.js??clonedRuleSet-74.use[3]!./node_modules/vue-loader/dist/index.js??ruleSet[0].use[0]!./components/skeleton/skeleton.vue?vue&type=style&index=0&id=47dbc65e&lang=less
|
|
1172
|
+
// extracted by mini-css-extract-plugin
|
|
1173
|
+
|
|
1463
1174
|
;// CONCATENATED MODULE: ./components/skeleton/skeleton.vue?vue&type=style&index=0&id=47dbc65e&lang=less
|
|
1464
1175
|
|
|
1465
1176
|
;// CONCATENATED MODULE: ./components/skeleton/skeleton.vue
|