@indfnd/common-mobile-pro 1.0.73 → 1.0.75

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.
@@ -1,34 +1,3 @@
1
- /* @preserve
2
- * gcoord 0.1.2, geographic coordinate library
3
- * Copyright (c) 2018 Jiulong Hu <me@hujiulong.com>
4
- */
5
-
6
- /*!
7
- * Compressor.js v1.2.1
8
- * https://fengyuanchen.github.io/compressorjs
9
- *
10
- * Copyright 2018-present Chen Fengyuan
11
- * Released under the MIT license
12
- *
13
- * Date: 2023-02-28T14:09:41.732Z
14
- */
15
-
16
- /*!
17
- * css-vars-ponyfill
18
- * v2.4.9
19
- * https://jhildenbiddle.github.io/css-vars-ponyfill/
20
- * (c) 2018-2024 John Hildenbiddle <http://hildenbiddle.com>
21
- * MIT license
22
- */
23
-
24
- /*!
25
- * get-css-data
26
- * v2.1.0
27
- * https://github.com/jhildenbiddle/get-css-data
28
- * (c) 2018-2022 John Hildenbiddle <http://hildenbiddle.com>
29
- * MIT license
30
- */
31
-
32
1
  /*!
33
2
  * ZRender, a high performance 2d drawing library.
34
3
  *
@@ -54,172 +23,6 @@ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
54
23
  PERFORMANCE OF THIS SOFTWARE.
55
24
  ***************************************************************************** */
56
25
 
57
- /**
58
- * @license
59
- * Lodash <https://lodash.com/>
60
- * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
61
- * Released under MIT license <https://lodash.com/license>
62
- * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
63
- * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
64
- */
65
-
66
- /**
67
- * Fetches, parses, and transforms CSS custom properties from specified
68
- * <style> and <link> elements into static values, then appends a new <style>
69
- * element with static values to the DOM to provide CSS custom property
70
- * compatibility for legacy browsers. Also provides a single interface for
71
- * live updates of runtime values in both modern and legacy browsers.
72
- *
73
- * @preserve
74
- * @param {object} [options] Options object
75
- * @param {object} [options.rootElement=document] Root element to traverse for
76
- * <link> and <style> nodes
77
- * @param {boolean} [options.shadowDOM=false] Determines if shadow DOM <link>
78
- * and <style> nodes will be processed.
79
- * @param {string} [options.include="style,link[rel=stylesheet]"] CSS selector
80
- * matching <link re="stylesheet"> and <style> nodes to
81
- * process
82
- * @param {string} [options.exclude] CSS selector matching <link
83
- * rel="stylehseet"> and <style> nodes to exclude from those
84
- * matches by options.include
85
- * @param {object} [options.variables] A map of custom property name/value
86
- * pairs. Property names can omit or include the leading
87
- * double-hyphen (—), and values specified will override
88
- * previous values
89
- * @param {boolean} [options.onlyLegacy=true] Determines if the ponyfill will
90
- * only generate legacy-compatible CSS in browsers that lack
91
- * native support (i.e., legacy browsers)
92
- * @param {boolean} [options.preserveStatic=true] Determines if CSS
93
- * declarations that do not reference a custom property will
94
- * be preserved in the transformed CSS
95
- * @param {boolean} [options.preserveVars=false] Determines if CSS custom
96
- * property declarations will be preserved in the transformed
97
- * CSS
98
- * @param {boolean} [options.silent=false] Determines if warning and error
99
- * messages will be displayed on the console
100
- * @param {boolean} [options.updateDOM=true] Determines if the ponyfill will
101
- * update the DOM after processing CSS custom properties
102
- * @param {boolean} [options.updateURLs=true] Determines if relative url()
103
- * paths will be converted to absolute urls in external CSS
104
- * @param {boolean} [options.watch=false] Determines if a MutationObserver will
105
- * be created that will execute the ponyfill when a <link> or
106
- * <style> DOM mutation is observed
107
- * @param {function} [options.onBeforeSend] Callback before XHR is sent. Passes
108
- * 1) the XHR object, 2) source node reference, and 3) the
109
- * source URL as arguments
110
- * @param {function} [options.onError] Callback after a CSS parsing error has
111
- * occurred or an XHR request has failed. Passes 1) an error
112
- * message, and 2) source node reference, 3) xhr, and 4 url as
113
- * arguments.
114
- * @param {function} [options.onWarning] Callback after each CSS parsing warning
115
- * has occurred. Passes 1) a warning message as an argument.
116
- * @param {function} [options.onSuccess] Callback after CSS data has been
117
- * collected from each node and before CSS custom properties
118
- * have been transformed. Allows modifying the CSS data before
119
- * it is transformed by returning any string value (or false
120
- * to skip). Passes 1) CSS text, 2) source node reference, and
121
- * 3) the source URL as arguments.
122
- * @param {function} [options.onComplete] Callback after all CSS has been
123
- * processed, legacy-compatible CSS has been generated, and
124
- * (optionally) the DOM has been updated. Passes 1) a CSS
125
- * string with CSS variable values resolved, 2) an array of
126
- * output <style> node references that have been appended to
127
- * the DOM, 3) an object containing all custom properies names
128
- * and values, and 4) the ponyfill execution time in
129
- * milliseconds.
130
- * @param {function} [options.onFinally] Callback in modern and legacy browsers
131
- * after the ponyfill has finished all tasks. Passes 1) a
132
- * boolean indicating if the last ponyfill call resulted in a
133
- * style change, 2) a boolean indicating if the current
134
- * browser provides native support for CSS custom properties,
135
- * and 3) the ponyfill execution time in milliseconds.
136
- * @example
137
- *
138
- * cssVars({
139
- * rootElement : document,
140
- * shadowDOM : false,
141
- * include : 'style,link[rel="stylesheet"]',
142
- * exclude : '',
143
- * variables : {},
144
- * onlyLegacy : true,
145
- * preserveStatic: true,
146
- * preserveVars : false,
147
- * silent : false,
148
- * updateDOM : true,
149
- * updateURLs : true,
150
- * watch : false,
151
- * onBeforeSend(xhr, node, url) {},
152
- * onError(message, node, xhr, url) {},
153
- * onWarning(message) {},
154
- * onSuccess(cssText, node, url) {},
155
- * onComplete(cssText, styleNode, cssVariables, benchmark) {},
156
- * onFinally(hasChanged, hasNativeSupport, benchmark)
157
- * });
158
- */
159
-
160
- /**
161
- * Gets CSS data from <style> and <link> nodes (including @imports), then
162
- * returns data in order processed by DOM. Allows specifying nodes to
163
- * include/exclude and filtering CSS data using RegEx.
164
- *
165
- * @preserve
166
- * @param {object} [options] The options object
167
- * @param {object} [options.rootElement=document] Root element to traverse for
168
- * <link> and <style> nodes.
169
- * @param {string} [options.include] CSS selector matching <link> and <style>
170
- * nodes to include
171
- * @param {string} [options.exclude] CSS selector matching <link> and <style>
172
- * nodes to exclude
173
- * @param {object} [options.filter] Regular expression used to filter node CSS
174
- * data. Each block of CSS data is tested against the filter,
175
- * and only matching data is included.
176
- * @param {boolean} [options.skipDisabled=true] Determines if disabled
177
- * stylesheets will be skipped while collecting CSS data.
178
- * @param {boolean} [options.useCSSOM=false] Determines if CSS data will be
179
- * collected from a stylesheet's runtime values instead of its
180
- * text content. This is required to get accurate CSS data
181
- * when a stylesheet has been modified using the deleteRule()
182
- * or insertRule() methods because these modifications will
183
- * not be reflected in the stylesheet's text content.
184
- * @param {function} [options.onBeforeSend] Callback before XHR is sent. Passes
185
- * 1) the XHR object, 2) source node reference, and 3) the
186
- * source URL as arguments.
187
- * @param {function} [options.onSuccess] Callback on each CSS node read. Passes
188
- * 1) CSS text, 2) source node reference, and 3) the source
189
- * URL as arguments.
190
- * @param {function} [options.onError] Callback on each error. Passes 1) the XHR
191
- * object for inspection, 2) soure node reference, and 3) the
192
- * source URL that failed (either a <link> href or an @import)
193
- * as arguments
194
- * @param {function} [options.onComplete] Callback after all nodes have been
195
- * processed. Passes 1) concatenated CSS text, 2) an array of
196
- * CSS text in DOM order, and 3) an array of nodes in DOM
197
- * order as arguments.
198
- *
199
- * @example
200
- *
201
- * getCssData({
202
- * rootElement : document,
203
- * include : 'style,link[rel="stylesheet"]',
204
- * exclude : '[href="skip.css"]',
205
- * filter : /red/,
206
- * skipDisabled: true,
207
- * useCSSOM : false,
208
- * onBeforeSend(xhr, node, url) {
209
- * // ...
210
- * }
211
- * onSuccess(cssText, node, url) {
212
- * // ...
213
- * }
214
- * onError(xhr, node, url) {
215
- * // ...
216
- * },
217
- * onComplete(cssText, cssArray, nodeArray) {
218
- * // ...
219
- * }
220
- * });
221
- */
222
-
223
26
  //! Burak Yiğit Kaya: https://github.com/BYK
224
27
 
225
28
  //! Sigurd Gartmann : https://github.com/sigurdga