@mirantes-micro/foundation-design-system 1.2.402 → 1.2.405

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.
@@ -0,0 +1,403 @@
1
+ /*!
2
+ * html2canvas 1.4.1 <https://html2canvas.hertzen.com>
3
+ * Copyright (c) 2022 Niklas von Hertzen <https://hertzen.com>
4
+ * Released under MIT License
5
+ */
6
+
7
+ /*! *****************************************************************************
8
+ Copyright (c) Microsoft Corporation.
9
+
10
+ Permission to use, copy, modify, and/or distribute this software for any
11
+ purpose with or without fee is hereby granted.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
14
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
15
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
16
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
17
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
18
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19
+ PERFORMANCE OF THIS SOFTWARE.
20
+ ***************************************************************************** */
21
+
22
+ /*! *****************************************************************************
23
+ Copyright (c) Microsoft Corporation.
24
+
25
+ Permission to use, copy, modify, and/or distribute this software for any
26
+ purpose with or without fee is hereby granted.
27
+
28
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
29
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
30
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
31
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
32
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
33
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
34
+ PERFORMANCE OF THIS SOFTWARE.
35
+ ***************************************************************************** */
36
+
37
+ /*! https://mths.be/punycode v1.3.2 by @mathias */
38
+
39
+ /**
40
+ * @license
41
+ Copyright (c) 2008, Adobe Systems Incorporated
42
+ All rights reserved.
43
+
44
+ Redistribution and use in source and binary forms, with or without
45
+ modification, are permitted provided that the following conditions are
46
+ met:
47
+
48
+ * Redistributions of source code must retain the above copyright notice,
49
+ this list of conditions and the following disclaimer.
50
+
51
+ * Redistributions in binary form must reproduce the above copyright
52
+ notice, this list of conditions and the following disclaimer in the
53
+ documentation and/or other materials provided with the distribution.
54
+
55
+ * Neither the name of Adobe Systems Incorporated nor the names of its
56
+ contributors may be used to endorse or promote products derived from
57
+ this software without specific prior written permission.
58
+
59
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
60
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
61
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
62
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
63
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
64
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
65
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
66
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
67
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
68
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
69
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
70
+ */
71
+
72
+ /**
73
+ * @license
74
+ *
75
+ * Licensed under the MIT License.
76
+ * http://opensource.org/licenses/mit-license
77
+ */
78
+
79
+ /**
80
+ * @license
81
+ * (c) Dean McNamee <dean@gmail.com>, 2013.
82
+ *
83
+ * https://github.com/deanm/omggif
84
+ *
85
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
86
+ * of this software and associated documentation files (the "Software"), to
87
+ * deal in the Software without restriction, including without limitation the
88
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
89
+ * sell copies of the Software, and to permit persons to whom the Software is
90
+ * furnished to do so, subject to the following conditions:
91
+ *
92
+ * The above copyright notice and this permission notice shall be included in
93
+ * all copies or substantial portions of the Software.
94
+ *
95
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
96
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
97
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
98
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
99
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
100
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
101
+ * IN THE SOFTWARE.
102
+ *
103
+ * omggif is a JavaScript implementation of a GIF 89a encoder and decoder,
104
+ * including animation and compression. It does not rely on any specific
105
+ * underlying system, so should run in the browser, Node, or Plask.
106
+ */
107
+
108
+ /**
109
+ * @license
110
+ * Copyright (c) 2014 Steven Spungin (TwelveTone LLC) steven@twelvetone.tv
111
+ *
112
+ * Licensed under the MIT License.
113
+ * http://opensource.org/licenses/mit-license
114
+ */
115
+
116
+ /**
117
+ * @license
118
+ * Copyright (c) 2017 Aras Abbasi
119
+ *
120
+ * Licensed under the MIT License.
121
+ * http://opensource.org/licenses/mit-license
122
+ */
123
+
124
+ /**
125
+ * @license
126
+ * Copyright (c) 2018 Aras Abbasi
127
+ *
128
+ * Licensed under the MIT License.
129
+ * http://opensource.org/licenses/mit-license
130
+ */
131
+
132
+ /**
133
+ * @license
134
+ * Copyright (c) 2019 Aras Abbasi
135
+ *
136
+ * Licensed under the MIT License.
137
+ * http://opensource.org/licenses/mit-license
138
+ */
139
+
140
+ /**
141
+ * @license
142
+ * FPDF is released under a permissive license: there is no usage restriction.
143
+ * You may embed it freely in your application (commercial or not), with or
144
+ * without modifications.
145
+ *
146
+ * Reference: http://www.fpdf.org/en/script/script37.php
147
+ */
148
+
149
+ /**
150
+ * @license
151
+ * Joseph Myers does not specify a particular license for his work.
152
+ *
153
+ * Author: Joseph Myers
154
+ * Accessed from: http://www.myersdaily.org/joseph/javascript/md5.js
155
+ *
156
+ * Modified by: Owen Leong
157
+ */
158
+
159
+ /**
160
+ * @license
161
+ * Licensed under the MIT License.
162
+ * http://opensource.org/licenses/mit-license
163
+ * Author: Owen Leong (@owenl131)
164
+ * Date: 15 Oct 2020
165
+ * References:
166
+ * https://www.cs.cmu.edu/~dst/Adobe/Gallery/anon21jul01-pdf-encryption.txt
167
+ * https://github.com/foliojs/pdfkit/blob/master/lib/security.js
168
+ * http://www.fpdf.org/en/script/script37.php
169
+ */
170
+
171
+ /**
172
+ * @license
173
+ * Licensed under the MIT License.
174
+ * http://opensource.org/licenses/mit-license
175
+ */
176
+
177
+ /**
178
+ * @license
179
+ * Unicode Bidi Engine based on the work of Alex Shensis (@asthensis)
180
+ * MIT License
181
+ */
182
+
183
+ /**
184
+ * @license
185
+ * jsPDF fileloading PlugIn
186
+ * Copyright (c) 2018 Aras Abbasi (aras.abbasi@gmail.com)
187
+ *
188
+ * Licensed under the MIT License.
189
+ * http://opensource.org/licenses/mit-license
190
+ */
191
+
192
+ /**
193
+ * @license
194
+ * jsPDF filters PlugIn
195
+ * Copyright (c) 2014 Aras Abbasi
196
+ *
197
+ * Licensed under the MIT License.
198
+ * http://opensource.org/licenses/mit-license
199
+ */
200
+
201
+ /**
202
+ * @license
203
+ * jsPDF virtual FileSystem functionality
204
+ *
205
+ * Licensed under the MIT License.
206
+ * http://opensource.org/licenses/mit-license
207
+ */
208
+
209
+ /**
210
+ * @license React
211
+ * react-dom-client.production.js
212
+ *
213
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
214
+ *
215
+ * This source code is licensed under the MIT license found in the
216
+ * LICENSE file in the root directory of this source tree.
217
+ */
218
+
219
+ /**
220
+ * @license React
221
+ * react-dom.production.js
222
+ *
223
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
224
+ *
225
+ * This source code is licensed under the MIT license found in the
226
+ * LICENSE file in the root directory of this source tree.
227
+ */
228
+
229
+ /**
230
+ * @license React
231
+ * react-jsx-runtime.production.js
232
+ *
233
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
234
+ *
235
+ * This source code is licensed under the MIT license found in the
236
+ * LICENSE file in the root directory of this source tree.
237
+ */
238
+
239
+ /**
240
+ * @license React
241
+ * react.production.js
242
+ *
243
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
244
+ *
245
+ * This source code is licensed under the MIT license found in the
246
+ * LICENSE file in the root directory of this source tree.
247
+ */
248
+
249
+ /**
250
+ * @license React
251
+ * scheduler.production.js
252
+ *
253
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
254
+ *
255
+ * This source code is licensed under the MIT license found in the
256
+ * LICENSE file in the root directory of this source tree.
257
+ */
258
+
259
+ /**
260
+ * @license React
261
+ * use-sync-external-store-shim.production.js
262
+ *
263
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
264
+ *
265
+ * This source code is licensed under the MIT license found in the
266
+ * LICENSE file in the root directory of this source tree.
267
+ */
268
+
269
+ /**
270
+ * @license lucide-react v0.510.0 - ISC
271
+ *
272
+ * This source code is licensed under the ISC license.
273
+ * See the LICENSE file in the root directory of this source tree.
274
+ */
275
+
276
+ /**
277
+ * @licstart The following is the entire license notice for the
278
+ * JavaScript code in this page
279
+ *
280
+ * Copyright 2024 Mozilla Foundation
281
+ *
282
+ * Licensed under the Apache License, Version 2.0 (the "License");
283
+ * you may not use this file except in compliance with the License.
284
+ * You may obtain a copy of the License at
285
+ *
286
+ * http://www.apache.org/licenses/LICENSE-2.0
287
+ *
288
+ * Unless required by applicable law or agreed to in writing, software
289
+ * distributed under the License is distributed on an "AS IS" BASIS,
290
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
291
+ * See the License for the specific language governing permissions and
292
+ * limitations under the License.
293
+ *
294
+ * @licend The above is the entire license notice for the
295
+ * JavaScript code in this page
296
+ */
297
+
298
+ /**
299
+ * A class to parse color values
300
+ * @author Stoyan Stefanov <sstoo@gmail.com>
301
+ * {@link http://www.phpied.com/rgb-color-parser-in-javascript/}
302
+ * @license Use it if you like it
303
+ */
304
+
305
+ /**
306
+ * Checks if an event is supported in the current execution environment.
307
+ *
308
+ * NOTE: This will not work correctly for non-generic events such as `change`,
309
+ * `reset`, `load`, `error`, and `select`.
310
+ *
311
+ * Borrows from Modernizr.
312
+ *
313
+ * @param {string} eventNameSuffix Event name, e.g. "click".
314
+ * @param {?boolean} capture Check if the capture phase is supported.
315
+ * @return {boolean} True if the event is supported.
316
+ * @internal
317
+ * @license Modernizr 3.0.0pre (Custom Build) | MIT
318
+ */
319
+
320
+ /** ====================================================================
321
+ * @license
322
+ * jsPDF XMP metadata plugin
323
+ * Copyright (c) 2016 Jussi Utunen, u-jussi@suomi24.fi
324
+ *
325
+ * Permission is hereby granted, free of charge, to any person obtaining
326
+ * a copy of this software and associated documentation files (the
327
+ * "Software"), to deal in the Software without restriction, including
328
+ * without limitation the rights to use, copy, modify, merge, publish,
329
+ * distribute, sublicense, and/or sell copies of the Software, and to
330
+ * permit persons to whom the Software is furnished to do so, subject to
331
+ * the following conditions:
332
+ *
333
+ * The above copyright notice and this permission notice shall be
334
+ * included in all copies or substantial portions of the Software.
335
+ *
336
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
337
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
338
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
339
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
340
+ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
341
+ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
342
+ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
343
+ * ====================================================================
344
+ */
345
+
346
+ /** @license
347
+ * Copyright (c) 2017 Dominik Homberger
348
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
349
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
350
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
351
+ https://webpjs.appspot.com
352
+ WebPRiffParser dominikhlbg@gmail.com
353
+ */
354
+
355
+ /** @license
356
+ *
357
+ * jsPDF - PDF Document creation from JavaScript
358
+ * Version 3.0.2 Built on 2025-08-26T11:48:30.930Z
359
+ * CommitID 00000000
360
+ *
361
+ * Copyright (c) 2010-2021 James Hall <james@parall.ax>, https://github.com/MrRio/jsPDF
362
+ * 2015-2021 yWorks GmbH, http://www.yworks.com
363
+ * 2015-2021 Lukas Holländer <lukas.hollaender@yworks.com>, https://github.com/HackbrettXXX
364
+ * 2016-2018 Aras Abbasi <aras.abbasi@gmail.com>
365
+ * 2010 Aaron Spike, https://github.com/acspike
366
+ * 2012 Willow Systems Corporation, https://github.com/willowsystems
367
+ * 2012 Pablo Hess, https://github.com/pablohess
368
+ * 2012 Florian Jenett, https://github.com/fjenett
369
+ * 2013 Warren Weckesser, https://github.com/warrenweckesser
370
+ * 2013 Youssef Beddad, https://github.com/lifof
371
+ * 2013 Lee Driscoll, https://github.com/lsdriscoll
372
+ * 2013 Stefan Slonevskiy, https://github.com/stefslon
373
+ * 2013 Jeremy Morel, https://github.com/jmorel
374
+ * 2013 Christoph Hartmann, https://github.com/chris-rock
375
+ * 2014 Juan Pablo Gaviria, https://github.com/juanpgaviria
376
+ * 2014 James Makes, https://github.com/dollaruw
377
+ * 2014 Diego Casorran, https://github.com/diegocr
378
+ * 2014 Steven Spungin, https://github.com/Flamenco
379
+ * 2014 Kenneth Glassey, https://github.com/Gavvers
380
+ *
381
+ * Permission is hereby granted, free of charge, to any person obtaining
382
+ * a copy of this software and associated documentation files (the
383
+ * "Software"), to deal in the Software without restriction, including
384
+ * without limitation the rights to use, copy, modify, merge, publish,
385
+ * distribute, sublicense, and/or sell copies of the Software, and to
386
+ * permit persons to whom the Software is furnished to do so, subject to
387
+ * the following conditions:
388
+ *
389
+ * The above copyright notice and this permission notice shall be
390
+ * included in all copies or substantial portions of the Software.
391
+ *
392
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
393
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
394
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
395
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
396
+ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
397
+ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
398
+ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
399
+ *
400
+ * Contributor(s):
401
+ * siefkenj, ahwolf, rickygu, Midnith, saintclair, eaparango,
402
+ * kim3er, mfo, alnorth, Flamenco
403
+ */