@micromag/viewer-build 0.3.178 → 0.3.182
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/build/asset-manifest.json +10 -10
- package/build/index.html +1 -1
- package/build/static/css/main.2d74ba05.css +5 -0
- package/build/static/css/main.2d74ba05.css.map +1 -0
- package/build/static/css/main.acefaab6.css +5 -0
- package/build/static/css/main.acefaab6.css.map +1 -0
- package/build/static/css/main.edd666a7.css +5 -0
- package/build/static/css/main.edd666a7.css.map +1 -0
- package/build/static/js/118.154219ef.js +3 -0
- package/build/static/js/118.154219ef.js.LICENSE.txt +105 -0
- package/build/static/js/118.154219ef.js.map +1 -0
- package/build/static/js/118.d5858bbb.js +3 -0
- package/build/static/js/118.d5858bbb.js.LICENSE.txt +105 -0
- package/build/static/js/118.d5858bbb.js.map +1 -0
- package/build/static/js/947.b9655b94.js +3 -0
- package/build/static/js/947.b9655b94.js.LICENSE.txt +105 -0
- package/build/static/js/947.b9655b94.js.map +1 -0
- package/build/static/js/main.34c28d82.js +3 -0
- package/build/static/js/main.34c28d82.js.LICENSE.txt +1 -0
- package/build/static/js/main.34c28d82.js.map +1 -0
- package/build/static/js/main.435b3a06.js +3 -0
- package/build/static/js/main.435b3a06.js.LICENSE.txt +1 -0
- package/build/static/js/main.435b3a06.js.map +1 -0
- package/build/static/js/main.9317d602.js +3 -0
- package/build/static/js/main.9317d602.js.LICENSE.txt +1 -0
- package/build/static/js/main.9317d602.js.map +1 -0
- package/build/static/js/main.97c1ed73.js +3 -0
- package/build/static/js/main.97c1ed73.js.LICENSE.txt +1 -0
- package/build/static/js/main.97c1ed73.js.map +1 -0
- package/package.json +7 -7
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
/*
|
|
2
|
+
object-assign
|
|
3
|
+
(c) Sindre Sorhus
|
|
4
|
+
@license MIT
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/*!
|
|
8
|
+
Copyright (c) 2018 Jed Watson.
|
|
9
|
+
Licensed under the MIT License (MIT), see
|
|
10
|
+
http://jedwatson.github.io/classnames
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
/*!
|
|
14
|
+
* EventEmitter v5.2.9 - git.io/ee
|
|
15
|
+
* Unlicense - http://unlicense.org/
|
|
16
|
+
* Oliver Caldwell - https://oli.me.uk/
|
|
17
|
+
* @preserve
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
/*!
|
|
21
|
+
* Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
|
|
22
|
+
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
23
|
+
*/
|
|
24
|
+
|
|
25
|
+
/*!
|
|
26
|
+
* JavaScript Cookie v2.2.1
|
|
27
|
+
* https://github.com/js-cookie/js-cookie
|
|
28
|
+
*
|
|
29
|
+
* Copyright 2006, 2015 Klaus Hartl & Fagner Brack
|
|
30
|
+
* Released under the MIT license
|
|
31
|
+
*/
|
|
32
|
+
|
|
33
|
+
/*!
|
|
34
|
+
* screenfull
|
|
35
|
+
* v5.2.0 - 2021-11-03
|
|
36
|
+
* (c) Sindre Sorhus; MIT License
|
|
37
|
+
*/
|
|
38
|
+
|
|
39
|
+
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @license
|
|
43
|
+
* Lodash <https://lodash.com/>
|
|
44
|
+
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
|
|
45
|
+
* Released under MIT license <https://lodash.com/license>
|
|
46
|
+
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
|
|
47
|
+
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
|
|
48
|
+
*/
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* @name parseSRT
|
|
52
|
+
* @desc Parses and converts SRT subtitle data into JSON format. Adapted from the popcorn.js SRT parser plugin.
|
|
53
|
+
* @see http://popcornjs.org/
|
|
54
|
+
* @author Luis Rodrigues (http://www.luisrodriguesweb.com)
|
|
55
|
+
* @version 1.0.0-alpha
|
|
56
|
+
* @license MIT
|
|
57
|
+
*/
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Takes a string with placeholder variables like `%{smart_count} file selected`
|
|
61
|
+
* and replaces it with values from options `{smart_count: 5}`
|
|
62
|
+
*
|
|
63
|
+
* @license https://github.com/airbnb/polyglot.js/blob/master/LICENSE
|
|
64
|
+
* taken from https://github.com/airbnb/polyglot.js/blob/master/lib/polyglot.js#L299
|
|
65
|
+
*
|
|
66
|
+
* @param {string} phrase that needs interpolation, with placeholders
|
|
67
|
+
* @param {object} options with values that will be used to replace placeholders
|
|
68
|
+
* @returns {any[]} interpolated
|
|
69
|
+
*/
|
|
70
|
+
|
|
71
|
+
/** @license React v0.20.2
|
|
72
|
+
* scheduler.production.min.js
|
|
73
|
+
*
|
|
74
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
75
|
+
*
|
|
76
|
+
* This source code is licensed under the MIT license found in the
|
|
77
|
+
* LICENSE file in the root directory of this source tree.
|
|
78
|
+
*/
|
|
79
|
+
|
|
80
|
+
/** @license React v16.13.1
|
|
81
|
+
* react-is.production.min.js
|
|
82
|
+
*
|
|
83
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
84
|
+
*
|
|
85
|
+
* This source code is licensed under the MIT license found in the
|
|
86
|
+
* LICENSE file in the root directory of this source tree.
|
|
87
|
+
*/
|
|
88
|
+
|
|
89
|
+
/** @license React v17.0.2
|
|
90
|
+
* react-dom.production.min.js
|
|
91
|
+
*
|
|
92
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
93
|
+
*
|
|
94
|
+
* This source code is licensed under the MIT license found in the
|
|
95
|
+
* LICENSE file in the root directory of this source tree.
|
|
96
|
+
*/
|
|
97
|
+
|
|
98
|
+
/** @license React v17.0.2
|
|
99
|
+
* react.production.min.js
|
|
100
|
+
*
|
|
101
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
102
|
+
*
|
|
103
|
+
* This source code is licensed under the MIT license found in the
|
|
104
|
+
* LICENSE file in the root directory of this source tree.
|
|
105
|
+
*/
|