@mirantes-micro/foundation-design-system 1.2.408 → 1.2.410

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