@colijnit/sharedcomponents 1.0.37 → 1.0.39

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.
Files changed (55) hide show
  1. package/3rdpartylicenses.txt +1198 -0
  2. package/bundles/colijnit-sharedcomponents.umd.js +618 -122
  3. package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
  4. package/colijnit-sharedcomponents.d.ts +43 -31
  5. package/colijnit-sharedcomponents.metadata.json +1 -1
  6. package/esm2015/colijnit-sharedcomponents.js +44 -32
  7. package/esm2015/lib/components/stock/components/allocation-stock-history/allocation-stock-history.component.js +46 -0
  8. package/esm2015/lib/components/stock/components/order-commission-stock-history/order-commission-stock-history.component.js +46 -0
  9. package/esm2015/lib/components/stock/components/order-stock-history/order-stock-history.component.js +46 -0
  10. package/esm2015/lib/components/stock/components/order-stock-tab/order-stock-tab.component.js +46 -0
  11. package/esm2015/lib/components/stock/components/order-supply-stock-history/order-supply-stock-history.component.js +46 -0
  12. package/esm2015/lib/components/stock/components/order-tab/order-tab.component.js +65 -0
  13. package/esm2015/lib/components/stock/components/stock-history/stock-history.component.js +51 -0
  14. package/esm2015/lib/components/stock/components/stock-location/stock-location.component.js +170 -0
  15. package/esm2015/lib/components/stock/components/stock-tab/stock-tab.component.js +38 -0
  16. package/esm2015/lib/components/stock/stock-history-tabs/stock-history-tabs.component.js +34 -0
  17. package/esm2015/lib/components/stock/stock-information-grid/stock-information-grid.component.js +1 -2
  18. package/esm2015/lib/components/stock/stock-tabs/stock-tabs.component.js +173 -0
  19. package/esm2015/lib/components/stock/stock-transfer/stock-transfer.component.js +9 -9
  20. package/esm2015/lib/components/stock/stock.component.js +26 -38
  21. package/esm2015/lib/components/stock/stock.module.js +29 -6
  22. package/esm2015/lib/components/tab-bar/tab-bar.component.js +45 -0
  23. package/esm2015/lib/components/tab-bar/tab-bar.module.js +19 -0
  24. package/esm2015/lib/components/tab-bar/tab.interface.js +2 -0
  25. package/favicon.ico +0 -0
  26. package/fesm2015/colijnit-sharedcomponents.js +832 -110
  27. package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
  28. package/index.html +12 -0
  29. package/lib/components/stock/components/allocation-stock-history/allocation-stock-history.component.d.ts +9 -0
  30. package/lib/components/stock/components/order-commission-stock-history/order-commission-stock-history.component.d.ts +9 -0
  31. package/lib/components/stock/components/order-stock-history/order-stock-history.component.d.ts +9 -0
  32. package/lib/components/stock/components/order-stock-tab/order-stock-tab.component.d.ts +11 -0
  33. package/lib/components/stock/components/order-supply-stock-history/order-supply-stock-history.component.d.ts +9 -0
  34. package/lib/components/stock/components/order-tab/order-tab.component.d.ts +20 -0
  35. package/lib/components/stock/components/stock-history/stock-history.component.d.ts +13 -0
  36. package/lib/components/stock/components/stock-location/stock-location.component.d.ts +38 -0
  37. package/lib/components/stock/components/stock-tab/stock-tab.component.d.ts +8 -0
  38. package/lib/components/stock/stock-history-tabs/stock-history-tabs.component.d.ts +8 -0
  39. package/lib/components/stock/stock-tabs/stock-tabs.component.d.ts +46 -0
  40. package/lib/components/stock/stock.component.d.ts +2 -4
  41. package/lib/components/stock/style/_layout.scss +4 -2
  42. package/lib/components/tab-bar/style/_layout.scss +60 -0
  43. package/lib/components/tab-bar/style/_material-definition.scss +0 -0
  44. package/lib/components/tab-bar/style/_theme.scss +0 -0
  45. package/lib/components/tab-bar/style/material.scss +4 -0
  46. package/lib/components/tab-bar/tab-bar.component.d.ts +9 -0
  47. package/lib/components/tab-bar/tab-bar.module.d.ts +2 -0
  48. package/lib/components/tab-bar/tab.interface.d.ts +5 -0
  49. package/main.87c7441f408aa46a818e.js +1 -0
  50. package/package.json +1 -1
  51. package/polyfills.4a44032b137d291298c3.js +1 -0
  52. package/runtime.8aac21847ed3d3829cca.js +1 -0
  53. package/styles.24f196f586ef43bbe450.css +110 -0
  54. package/esm2015/lib/components/stock/stock-location/stock-location.component.js +0 -62
  55. package/lib/components/stock/stock-location/stock-location.component.d.ts +0 -15
@@ -0,0 +1,1198 @@
1
+ @angular/animations
2
+ MIT
3
+
4
+ @angular/cdk
5
+ MIT
6
+ The MIT License
7
+
8
+ Copyright (c) 2021 Google LLC.
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in
18
+ all copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26
+ THE SOFTWARE.
27
+
28
+
29
+ @angular/common
30
+ MIT
31
+
32
+ @angular/core
33
+ MIT
34
+
35
+ @angular/forms
36
+ MIT
37
+
38
+ @angular/platform-browser
39
+ MIT
40
+
41
+ @babel/runtime
42
+ MIT
43
+ MIT License
44
+
45
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
46
+
47
+ Permission is hereby granted, free of charge, to any person obtaining
48
+ a copy of this software and associated documentation files (the
49
+ "Software"), to deal in the Software without restriction, including
50
+ without limitation the rights to use, copy, modify, merge, publish,
51
+ distribute, sublicense, and/or sell copies of the Software, and to
52
+ permit persons to whom the Software is furnished to do so, subject to
53
+ the following conditions:
54
+
55
+ The above copyright notice and this permission notice shall be
56
+ included in all copies or substantial portions of the Software.
57
+
58
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
59
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
60
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
61
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
62
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
63
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
64
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
65
+
66
+
67
+ @colijnit/articleapi
68
+ ISC
69
+
70
+ @colijnit/corecomponents_v12
71
+
72
+ @colijnit/ioneconnector
73
+ ISC
74
+
75
+ @colijnit/mainapi
76
+ ISC
77
+
78
+ @colijnit/sharedapi
79
+ ISC
80
+
81
+ @colijnit/sharedcomponents
82
+
83
+ @pdf-lib/standard-fonts
84
+ MIT
85
+ MIT License
86
+
87
+ Copyright (c) 2018 Andrew Dillon
88
+
89
+ Permission is hereby granted, free of charge, to any person obtaining a copy
90
+ of this software and associated documentation files (the "Software"), to deal
91
+ in the Software without restriction, including without limitation the rights
92
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
93
+ copies of the Software, and to permit persons to whom the Software is
94
+ furnished to do so, subject to the following conditions:
95
+
96
+ The above copyright notice and this permission notice shall be included in all
97
+ copies or substantial portions of the Software.
98
+
99
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
100
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
101
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
102
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
103
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
104
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
105
+ SOFTWARE.
106
+
107
+
108
+ @pdf-lib/upng
109
+ MIT
110
+ MIT License
111
+
112
+ Copyright (c) 2017 Photopea
113
+
114
+ Permission is hereby granted, free of charge, to any person obtaining a copy
115
+ of this software and associated documentation files (the "Software"), to deal
116
+ in the Software without restriction, including without limitation the rights
117
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
118
+ copies of the Software, and to permit persons to whom the Software is
119
+ furnished to do so, subject to the following conditions:
120
+
121
+ The above copyright notice and this permission notice shall be included in all
122
+ copies or substantial portions of the Software.
123
+
124
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
125
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
126
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
127
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
128
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
129
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
130
+ SOFTWARE.
131
+
132
+
133
+ @syncfusion/ej2-angular-base
134
+ SEE LICENSE IN license
135
+
136
+ @syncfusion/ej2-angular-buttons
137
+ SEE LICENSE IN license
138
+
139
+ @syncfusion/ej2-angular-calendars
140
+ SEE LICENSE IN license
141
+
142
+ @syncfusion/ej2-angular-circulargauge
143
+ SEE LICENSE IN license
144
+
145
+ @syncfusion/ej2-angular-dropdowns
146
+ SEE LICENSE IN license
147
+
148
+ @syncfusion/ej2-angular-grids
149
+ SEE LICENSE IN license
150
+
151
+ @syncfusion/ej2-angular-inputs
152
+ SEE LICENSE IN license
153
+
154
+ @syncfusion/ej2-angular-kanban
155
+ SEE LICENSE IN license
156
+
157
+ @syncfusion/ej2-angular-navigations
158
+ SEE LICENSE IN license
159
+
160
+ @syncfusion/ej2-angular-pivotview
161
+ SEE LICENSE IN license
162
+
163
+ @syncfusion/ej2-angular-popups
164
+ SEE LICENSE IN license
165
+
166
+ @syncfusion/ej2-angular-richtexteditor
167
+ SEE LICENSE IN license
168
+
169
+ @syncfusion/ej2-angular-schedule
170
+ SEE LICENSE IN license
171
+
172
+ @syncfusion/ej2-angular-splitbuttons
173
+ SEE LICENSE IN license
174
+
175
+ @syncfusion/ej2-base
176
+ SEE LICENSE IN license
177
+
178
+ @syncfusion/ej2-buttons
179
+ SEE LICENSE IN license
180
+
181
+ @syncfusion/ej2-calendars
182
+ SEE LICENSE IN license
183
+
184
+ @syncfusion/ej2-charts
185
+ SEE LICENSE IN license
186
+
187
+ @syncfusion/ej2-circulargauge
188
+ SEE LICENSE IN license
189
+
190
+ @syncfusion/ej2-compression
191
+ UNLICENSED
192
+ Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
193
+
194
+ To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
195
+
196
+ Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
197
+
198
+ Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
199
+
200
+ The Syncfusion license that contains the terms and conditions can be found at
201
+ https://www.syncfusion.com/content/downloads/syncfusion_license.pdf
202
+
203
+
204
+ @syncfusion/ej2-data
205
+ SEE LICENSE IN license
206
+
207
+ @syncfusion/ej2-dropdowns
208
+ SEE LICENSE IN license
209
+
210
+ @syncfusion/ej2-excel-export
211
+ SEE LICENSE IN license
212
+
213
+ @syncfusion/ej2-file-utils
214
+ UNLICENSED
215
+ Essential JS 2 library is available under the Syncfusion Essential Studio program, and can be licensed either under the Syncfusion Community License Program or the Syncfusion commercial license.
216
+
217
+ To be qualified for the Syncfusion Community License Program you must have a gross revenue of less than one (1) million U.S. dollars ($1,000,000.00 USD) per year and have less than five (5) developers in your organization, and agree to be bound by Syncfusion’s terms and conditions.
218
+
219
+ Customers who do not qualify for the community license can contact sales@syncfusion.com for commercial licensing options.
220
+
221
+ Under no circumstances can you use this product without (1) either a Community License or a commercial license and (2) without agreeing and abiding by Syncfusion’s license containing all terms and conditions.
222
+
223
+ The Syncfusion license that contains the terms and conditions can be found at
224
+ https://www.syncfusion.com/content/downloads/syncfusion_license.pdf
225
+
226
+
227
+ @syncfusion/ej2-filemanager
228
+ SEE LICENSE IN license
229
+
230
+ @syncfusion/ej2-grids
231
+ SEE LICENSE IN license
232
+
233
+ @syncfusion/ej2-inputs
234
+ SEE LICENSE IN license
235
+
236
+ @syncfusion/ej2-kanban
237
+ SEE LICENSE IN license
238
+
239
+ @syncfusion/ej2-layouts
240
+ SEE LICENSE IN license
241
+
242
+ @syncfusion/ej2-lists
243
+ SEE LICENSE IN license
244
+
245
+ @syncfusion/ej2-navigations
246
+ SEE LICENSE IN license
247
+
248
+ @syncfusion/ej2-pdf-export
249
+ SEE LICENSE IN license
250
+
251
+ @syncfusion/ej2-pivotview
252
+ SEE LICENSE IN license
253
+
254
+ @syncfusion/ej2-popups
255
+ SEE LICENSE IN license
256
+
257
+ @syncfusion/ej2-richtexteditor
258
+ SEE LICENSE IN license
259
+
260
+ @syncfusion/ej2-schedule
261
+ SEE LICENSE IN license
262
+
263
+ @syncfusion/ej2-splitbuttons
264
+ SEE LICENSE IN license
265
+
266
+ @syncfusion/ej2-svg-base
267
+ SEE LICENSE IN license
268
+
269
+ @tweenjs/tween.js
270
+ MIT
271
+ The MIT License
272
+
273
+ Copyright (c) 2010-2012 Tween.js authors.
274
+
275
+ Easing equations Copyright (c) 2001 Robert Penner http://robertpenner.com/easing/
276
+
277
+ Permission is hereby granted, free of charge, to any person obtaining a copy
278
+ of this software and associated documentation files (the "Software"), to deal
279
+ in the Software without restriction, including without limitation the rights
280
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
281
+ copies of the Software, and to permit persons to whom the Software is
282
+ furnished to do so, subject to the following conditions:
283
+
284
+ The above copyright notice and this permission notice shall be included in
285
+ all copies or substantial portions of the Software.
286
+
287
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
288
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
289
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
290
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
291
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
292
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
293
+ THE SOFTWARE.
294
+
295
+
296
+ axios
297
+ MIT
298
+ Copyright (c) 2014-present Matt Zabriskie
299
+
300
+ Permission is hereby granted, free of charge, to any person obtaining a copy
301
+ of this software and associated documentation files (the "Software"), to deal
302
+ in the Software without restriction, including without limitation the rights
303
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
304
+ copies of the Software, and to permit persons to whom the Software is
305
+ furnished to do so, subject to the following conditions:
306
+
307
+ The above copyright notice and this permission notice shall be included in
308
+ all copies or substantial portions of the Software.
309
+
310
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
311
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
312
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
313
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
314
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
315
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
316
+ THE SOFTWARE.
317
+
318
+
319
+ hammerjs
320
+ MIT
321
+ The MIT License (MIT)
322
+
323
+ Copyright (C) 2011-2014 by Jorik Tangelder (Eight Media)
324
+
325
+ Permission is hereby granted, free of charge, to any person obtaining a copy
326
+ of this software and associated documentation files (the "Software"), to deal
327
+ in the Software without restriction, including without limitation the rights
328
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
329
+ copies of the Software, and to permit persons to whom the Software is
330
+ furnished to do so, subject to the following conditions:
331
+
332
+ The above copyright notice and this permission notice shall be included in
333
+ all copies or substantial portions of the Software.
334
+
335
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
336
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
337
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
338
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
339
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
340
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
341
+ THE SOFTWARE.
342
+
343
+
344
+ jsencrypt
345
+ MIT
346
+ File: /src/LICENSE.txt
347
+ The MIT License (MIT)
348
+ Copyright (c) 2015 Form.io
349
+
350
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
351
+ this software and associated documentation files (the "Software"), to deal in the
352
+ Software without restriction, including without limitation the rights to use,
353
+ copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
354
+ Software, and to permit persons to whom the Software is furnished to do so,
355
+ subject to the following conditions:
356
+
357
+ The above copyright notice and this permission notice shall be included in all
358
+ copies or substantial portions of the Software.
359
+
360
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
361
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
362
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
363
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
364
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
365
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
366
+
367
+ File: /lib/jsrsasign/LICENSE.txt
368
+
369
+
370
+ CONTAINS CODE FROM YUI LIBRARY SEE LICENSE @ http://yuilibrary.com/license/
371
+
372
+ The 'jsrsasign'(RSA-Sign JavaScript Library) License
373
+
374
+ Copyright (c) 2010-2013 Kenji Urushima
375
+
376
+ Permission is hereby granted, free of charge, to any person obtaining a copy
377
+ of this software and associated documentation files (the "Software"), to deal
378
+ in the Software without restriction, including without limitation the rights
379
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
380
+ copies of the Software, and to permit persons to whom the Software is
381
+ furnished to do so, subject to the following conditions:
382
+
383
+ The above copyright notice and this permission notice shall be included in
384
+ all copies or substantial portions of the Software.
385
+
386
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
387
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
388
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
389
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
390
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
391
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
392
+ THE SOFTWARE.
393
+ File: /lib/jsbn/LICENSE.txt
394
+
395
+
396
+ Licensing
397
+ ---------
398
+
399
+ This software is covered under the following copyright:
400
+
401
+ /*
402
+ * Copyright (c) 2003-2005 Tom Wu
403
+ * All Rights Reserved.
404
+ *
405
+ * Permission is hereby granted, free of charge, to any person obtaining
406
+ * a copy of this software and associated documentation files (the
407
+ * "Software"), to deal in the Software without restriction, including
408
+ * without limitation the rights to use, copy, modify, merge, publish,
409
+ * distribute, sublicense, and/or sell copies of the Software, and to
410
+ * permit persons to whom the Software is furnished to do so, subject to
411
+ * the following conditions:
412
+ *
413
+ * The above copyright notice and this permission notice shall be
414
+ * included in all copies or substantial portions of the Software.
415
+ *
416
+ * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
417
+ * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
418
+ * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
419
+ *
420
+ * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
421
+ * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
422
+ * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
423
+ * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
424
+ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
425
+ *
426
+ * In addition, the following condition applies:
427
+ *
428
+ * All redistributions must retain an intact copy of this copyright notice
429
+ * and disclaimer.
430
+ */
431
+
432
+ Address all questions regarding this license to:
433
+
434
+ Tom Wu
435
+ tjw@cs.Stanford.EDU
436
+ File: /lib/asn1js/LICENSE.txt
437
+
438
+
439
+ ASN.1 JavaScript decoder
440
+ Copyright (c) 2008-2013 Lapo Luchini <lapo@lapo.it>
441
+
442
+ Permission to use, copy, modify, and/or distribute this software for any
443
+ purpose with or without fee is hereby granted, provided that the above
444
+ copyright notice and this permission notice appear in all copies.
445
+
446
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
447
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
448
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
449
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
450
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
451
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
452
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
453
+
454
+ moment
455
+ MIT
456
+ Copyright (c) JS Foundation and other contributors
457
+
458
+ Permission is hereby granted, free of charge, to any person
459
+ obtaining a copy of this software and associated documentation
460
+ files (the "Software"), to deal in the Software without
461
+ restriction, including without limitation the rights to use,
462
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
463
+ copies of the Software, and to permit persons to whom the
464
+ Software is furnished to do so, subject to the following
465
+ conditions:
466
+
467
+ The above copyright notice and this permission notice shall be
468
+ included in all copies or substantial portions of the Software.
469
+
470
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
471
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
472
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
473
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
474
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
475
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
476
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
477
+ OTHER DEALINGS IN THE SOFTWARE.
478
+
479
+
480
+ nodejs-jsencrypt
481
+ MIT
482
+ File: /src/LICENSE.txt
483
+ The MIT License (MIT)
484
+ Copyright (c) 2015 Form.io
485
+
486
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
487
+ this software and associated documentation files (the "Software"), to deal in the
488
+ Software without restriction, including without limitation the rights to use,
489
+ copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
490
+ Software, and to permit persons to whom the Software is furnished to do so,
491
+ subject to the following conditions:
492
+
493
+ The above copyright notice and this permission notice shall be included in all
494
+ copies or substantial portions of the Software.
495
+
496
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
497
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
498
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
499
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
500
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
501
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
502
+
503
+ File: /lib/jsrsasign/LICENSE.txt
504
+
505
+
506
+ CONTAINS CODE FROM YUI LIBRARY SEE LICENSE @ http://yuilibrary.com/license/
507
+
508
+ The 'jsrsasign'(RSA-Sign JavaScript Library) License
509
+
510
+ Copyright (c) 2010-2013 Kenji Urushima
511
+
512
+ Permission is hereby granted, free of charge, to any person obtaining a copy
513
+ of this software and associated documentation files (the "Software"), to deal
514
+ in the Software without restriction, including without limitation the rights
515
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
516
+ copies of the Software, and to permit persons to whom the Software is
517
+ furnished to do so, subject to the following conditions:
518
+
519
+ The above copyright notice and this permission notice shall be included in
520
+ all copies or substantial portions of the Software.
521
+
522
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
523
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
524
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
525
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
526
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
527
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
528
+ THE SOFTWARE.
529
+ File: /lib/jsbn/LICENSE.txt
530
+
531
+
532
+ Licensing
533
+ ---------
534
+
535
+ This software is covered under the following copyright:
536
+
537
+ /*
538
+ * Copyright (c) 2003-2005 Tom Wu
539
+ * All Rights Reserved.
540
+ *
541
+ * Permission is hereby granted, free of charge, to any person obtaining
542
+ * a copy of this software and associated documentation files (the
543
+ * "Software"), to deal in the Software without restriction, including
544
+ * without limitation the rights to use, copy, modify, merge, publish,
545
+ * distribute, sublicense, and/or sell copies of the Software, and to
546
+ * permit persons to whom the Software is furnished to do so, subject to
547
+ * the following conditions:
548
+ *
549
+ * The above copyright notice and this permission notice shall be
550
+ * included in all copies or substantial portions of the Software.
551
+ *
552
+ * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
553
+ * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
554
+ * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
555
+ *
556
+ * IN NO EVENT SHALL TOM WU BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
557
+ * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
558
+ * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
559
+ * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
560
+ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
561
+ *
562
+ * In addition, the following condition applies:
563
+ *
564
+ * All redistributions must retain an intact copy of this copyright notice
565
+ * and disclaimer.
566
+ */
567
+
568
+ Address all questions regarding this license to:
569
+
570
+ Tom Wu
571
+ tjw@cs.Stanford.EDU
572
+ File: /lib/asn1js/LICENSE.txt
573
+
574
+
575
+ ASN.1 JavaScript decoder
576
+ Copyright (c) 2008-2013 Lapo Luchini <lapo@lapo.it>
577
+
578
+ Permission to use, copy, modify, and/or distribute this software for any
579
+ purpose with or without fee is hereby granted, provided that the above
580
+ copyright notice and this permission notice appear in all copies.
581
+
582
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
583
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
584
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
585
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
586
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
587
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
588
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
589
+
590
+ pako
591
+ (MIT AND Zlib)
592
+ (The MIT License)
593
+
594
+ Copyright (C) 2014-2017 by Vitaly Puzrin and Andrei Tuputcyn
595
+
596
+ Permission is hereby granted, free of charge, to any person obtaining a copy
597
+ of this software and associated documentation files (the "Software"), to deal
598
+ in the Software without restriction, including without limitation the rights
599
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
600
+ copies of the Software, and to permit persons to whom the Software is
601
+ furnished to do so, subject to the following conditions:
602
+
603
+ The above copyright notice and this permission notice shall be included in
604
+ all copies or substantial portions of the Software.
605
+
606
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
607
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
608
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
609
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
610
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
611
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
612
+ THE SOFTWARE.
613
+
614
+
615
+ pdf-lib
616
+ MIT
617
+ MIT License
618
+
619
+ Copyright (c) 2019 Andrew Dillon
620
+
621
+ Permission is hereby granted, free of charge, to any person obtaining a copy
622
+ of this software and associated documentation files (the "Software"), to deal
623
+ in the Software without restriction, including without limitation the rights
624
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
625
+ copies of the Software, and to permit persons to whom the Software is
626
+ furnished to do so, subject to the following conditions:
627
+
628
+ The above copyright notice and this permission notice shall be included in all
629
+ copies or substantial portions of the Software.
630
+
631
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
632
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
633
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
634
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
635
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
636
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
637
+ SOFTWARE.
638
+
639
+
640
+ pdfjs-dist
641
+ Apache-2.0
642
+
643
+ Apache License
644
+ Version 2.0, January 2004
645
+ http://www.apache.org/licenses/
646
+
647
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
648
+
649
+ 1. Definitions.
650
+
651
+ "License" shall mean the terms and conditions for use, reproduction,
652
+ and distribution as defined by Sections 1 through 9 of this document.
653
+
654
+ "Licensor" shall mean the copyright owner or entity authorized by
655
+ the copyright owner that is granting the License.
656
+
657
+ "Legal Entity" shall mean the union of the acting entity and all
658
+ other entities that control, are controlled by, or are under common
659
+ control with that entity. For the purposes of this definition,
660
+ "control" means (i) the power, direct or indirect, to cause the
661
+ direction or management of such entity, whether by contract or
662
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
663
+ outstanding shares, or (iii) beneficial ownership of such entity.
664
+
665
+ "You" (or "Your") shall mean an individual or Legal Entity
666
+ exercising permissions granted by this License.
667
+
668
+ "Source" form shall mean the preferred form for making modifications,
669
+ including but not limited to software source code, documentation
670
+ source, and configuration files.
671
+
672
+ "Object" form shall mean any form resulting from mechanical
673
+ transformation or translation of a Source form, including but
674
+ not limited to compiled object code, generated documentation,
675
+ and conversions to other media types.
676
+
677
+ "Work" shall mean the work of authorship, whether in Source or
678
+ Object form, made available under the License, as indicated by a
679
+ copyright notice that is included in or attached to the work
680
+ (an example is provided in the Appendix below).
681
+
682
+ "Derivative Works" shall mean any work, whether in Source or Object
683
+ form, that is based on (or derived from) the Work and for which the
684
+ editorial revisions, annotations, elaborations, or other modifications
685
+ represent, as a whole, an original work of authorship. For the purposes
686
+ of this License, Derivative Works shall not include works that remain
687
+ separable from, or merely link (or bind by name) to the interfaces of,
688
+ the Work and Derivative Works thereof.
689
+
690
+ "Contribution" shall mean any work of authorship, including
691
+ the original version of the Work and any modifications or additions
692
+ to that Work or Derivative Works thereof, that is intentionally
693
+ submitted to Licensor for inclusion in the Work by the copyright owner
694
+ or by an individual or Legal Entity authorized to submit on behalf of
695
+ the copyright owner. For the purposes of this definition, "submitted"
696
+ means any form of electronic, verbal, or written communication sent
697
+ to the Licensor or its representatives, including but not limited to
698
+ communication on electronic mailing lists, source code control systems,
699
+ and issue tracking systems that are managed by, or on behalf of, the
700
+ Licensor for the purpose of discussing and improving the Work, but
701
+ excluding communication that is conspicuously marked or otherwise
702
+ designated in writing by the copyright owner as "Not a Contribution."
703
+
704
+ "Contributor" shall mean Licensor and any individual or Legal Entity
705
+ on behalf of whom a Contribution has been received by Licensor and
706
+ subsequently incorporated within the Work.
707
+
708
+ 2. Grant of Copyright License. Subject to the terms and conditions of
709
+ this License, each Contributor hereby grants to You a perpetual,
710
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
711
+ copyright license to reproduce, prepare Derivative Works of,
712
+ publicly display, publicly perform, sublicense, and distribute the
713
+ Work and such Derivative Works in Source or Object form.
714
+
715
+ 3. Grant of Patent License. Subject to the terms and conditions of
716
+ this License, each Contributor hereby grants to You a perpetual,
717
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
718
+ (except as stated in this section) patent license to make, have made,
719
+ use, offer to sell, sell, import, and otherwise transfer the Work,
720
+ where such license applies only to those patent claims licensable
721
+ by such Contributor that are necessarily infringed by their
722
+ Contribution(s) alone or by combination of their Contribution(s)
723
+ with the Work to which such Contribution(s) was submitted. If You
724
+ institute patent litigation against any entity (including a
725
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
726
+ or a Contribution incorporated within the Work constitutes direct
727
+ or contributory patent infringement, then any patent licenses
728
+ granted to You under this License for that Work shall terminate
729
+ as of the date such litigation is filed.
730
+
731
+ 4. Redistribution. You may reproduce and distribute copies of the
732
+ Work or Derivative Works thereof in any medium, with or without
733
+ modifications, and in Source or Object form, provided that You
734
+ meet the following conditions:
735
+
736
+ (a) You must give any other recipients of the Work or
737
+ Derivative Works a copy of this License; and
738
+
739
+ (b) You must cause any modified files to carry prominent notices
740
+ stating that You changed the files; and
741
+
742
+ (c) You must retain, in the Source form of any Derivative Works
743
+ that You distribute, all copyright, patent, trademark, and
744
+ attribution notices from the Source form of the Work,
745
+ excluding those notices that do not pertain to any part of
746
+ the Derivative Works; and
747
+
748
+ (d) If the Work includes a "NOTICE" text file as part of its
749
+ distribution, then any Derivative Works that You distribute must
750
+ include a readable copy of the attribution notices contained
751
+ within such NOTICE file, excluding those notices that do not
752
+ pertain to any part of the Derivative Works, in at least one
753
+ of the following places: within a NOTICE text file distributed
754
+ as part of the Derivative Works; within the Source form or
755
+ documentation, if provided along with the Derivative Works; or,
756
+ within a display generated by the Derivative Works, if and
757
+ wherever such third-party notices normally appear. The contents
758
+ of the NOTICE file are for informational purposes only and
759
+ do not modify the License. You may add Your own attribution
760
+ notices within Derivative Works that You distribute, alongside
761
+ or as an addendum to the NOTICE text from the Work, provided
762
+ that such additional attribution notices cannot be construed
763
+ as modifying the License.
764
+
765
+ You may add Your own copyright statement to Your modifications and
766
+ may provide additional or different license terms and conditions
767
+ for use, reproduction, or distribution of Your modifications, or
768
+ for any such Derivative Works as a whole, provided Your use,
769
+ reproduction, and distribution of the Work otherwise complies with
770
+ the conditions stated in this License.
771
+
772
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
773
+ any Contribution intentionally submitted for inclusion in the Work
774
+ by You to the Licensor shall be under the terms and conditions of
775
+ this License, without any additional terms or conditions.
776
+ Notwithstanding the above, nothing herein shall supersede or modify
777
+ the terms of any separate license agreement you may have executed
778
+ with Licensor regarding such Contributions.
779
+
780
+ 6. Trademarks. This License does not grant permission to use the trade
781
+ names, trademarks, service marks, or product names of the Licensor,
782
+ except as required for reasonable and customary use in describing the
783
+ origin of the Work and reproducing the content of the NOTICE file.
784
+
785
+ 7. Disclaimer of Warranty. Unless required by applicable law or
786
+ agreed to in writing, Licensor provides the Work (and each
787
+ Contributor provides its Contributions) on an "AS IS" BASIS,
788
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
789
+ implied, including, without limitation, any warranties or conditions
790
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
791
+ PARTICULAR PURPOSE. You are solely responsible for determining the
792
+ appropriateness of using or redistributing the Work and assume any
793
+ risks associated with Your exercise of permissions under this License.
794
+
795
+ 8. Limitation of Liability. In no event and under no legal theory,
796
+ whether in tort (including negligence), contract, or otherwise,
797
+ unless required by applicable law (such as deliberate and grossly
798
+ negligent acts) or agreed to in writing, shall any Contributor be
799
+ liable to You for damages, including any direct, indirect, special,
800
+ incidental, or consequential damages of any character arising as a
801
+ result of this License or out of the use or inability to use the
802
+ Work (including but not limited to damages for loss of goodwill,
803
+ work stoppage, computer failure or malfunction, or any and all
804
+ other commercial damages or losses), even if such Contributor
805
+ has been advised of the possibility of such damages.
806
+
807
+ 9. Accepting Warranty or Additional Liability. While redistributing
808
+ the Work or Derivative Works thereof, You may choose to offer,
809
+ and charge a fee for, acceptance of support, warranty, indemnity,
810
+ or other liability obligations and/or rights consistent with this
811
+ License. However, in accepting such obligations, You may act only
812
+ on Your own behalf and on Your sole responsibility, not on behalf
813
+ of any other Contributor, and only if You agree to indemnify,
814
+ defend, and hold each Contributor harmless for any liability
815
+ incurred by, or claims asserted against, such Contributor by reason
816
+ of your accepting any such warranty or additional liability.
817
+
818
+ END OF TERMS AND CONDITIONS
819
+
820
+
821
+ reflect-metadata
822
+ Apache-2.0
823
+ Apache License
824
+
825
+ Version 2.0, January 2004
826
+
827
+ http://www.apache.org/licenses/
828
+
829
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
830
+
831
+ 1. Definitions.
832
+
833
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
834
+
835
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
836
+
837
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
838
+
839
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
840
+
841
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
842
+
843
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
844
+
845
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
846
+
847
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
848
+
849
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
850
+
851
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
852
+
853
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
854
+
855
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
856
+
857
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
858
+
859
+ You must give any other recipients of the Work or Derivative Works a copy of this License; and
860
+
861
+ You must cause any modified files to carry prominent notices stating that You changed the files; and
862
+
863
+ You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
864
+
865
+ If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
866
+
867
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
868
+
869
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
870
+
871
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
872
+
873
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
874
+
875
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
876
+
877
+ END OF TERMS AND CONDITIONS
878
+
879
+ rxjs
880
+ Apache-2.0
881
+ Apache License
882
+ Version 2.0, January 2004
883
+ http://www.apache.org/licenses/
884
+
885
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
886
+
887
+ 1. Definitions.
888
+
889
+ "License" shall mean the terms and conditions for use, reproduction,
890
+ and distribution as defined by Sections 1 through 9 of this document.
891
+
892
+ "Licensor" shall mean the copyright owner or entity authorized by
893
+ the copyright owner that is granting the License.
894
+
895
+ "Legal Entity" shall mean the union of the acting entity and all
896
+ other entities that control, are controlled by, or are under common
897
+ control with that entity. For the purposes of this definition,
898
+ "control" means (i) the power, direct or indirect, to cause the
899
+ direction or management of such entity, whether by contract or
900
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
901
+ outstanding shares, or (iii) beneficial ownership of such entity.
902
+
903
+ "You" (or "Your") shall mean an individual or Legal Entity
904
+ exercising permissions granted by this License.
905
+
906
+ "Source" form shall mean the preferred form for making modifications,
907
+ including but not limited to software source code, documentation
908
+ source, and configuration files.
909
+
910
+ "Object" form shall mean any form resulting from mechanical
911
+ transformation or translation of a Source form, including but
912
+ not limited to compiled object code, generated documentation,
913
+ and conversions to other media types.
914
+
915
+ "Work" shall mean the work of authorship, whether in Source or
916
+ Object form, made available under the License, as indicated by a
917
+ copyright notice that is included in or attached to the work
918
+ (an example is provided in the Appendix below).
919
+
920
+ "Derivative Works" shall mean any work, whether in Source or Object
921
+ form, that is based on (or derived from) the Work and for which the
922
+ editorial revisions, annotations, elaborations, or other modifications
923
+ represent, as a whole, an original work of authorship. For the purposes
924
+ of this License, Derivative Works shall not include works that remain
925
+ separable from, or merely link (or bind by name) to the interfaces of,
926
+ the Work and Derivative Works thereof.
927
+
928
+ "Contribution" shall mean any work of authorship, including
929
+ the original version of the Work and any modifications or additions
930
+ to that Work or Derivative Works thereof, that is intentionally
931
+ submitted to Licensor for inclusion in the Work by the copyright owner
932
+ or by an individual or Legal Entity authorized to submit on behalf of
933
+ the copyright owner. For the purposes of this definition, "submitted"
934
+ means any form of electronic, verbal, or written communication sent
935
+ to the Licensor or its representatives, including but not limited to
936
+ communication on electronic mailing lists, source code control systems,
937
+ and issue tracking systems that are managed by, or on behalf of, the
938
+ Licensor for the purpose of discussing and improving the Work, but
939
+ excluding communication that is conspicuously marked or otherwise
940
+ designated in writing by the copyright owner as "Not a Contribution."
941
+
942
+ "Contributor" shall mean Licensor and any individual or Legal Entity
943
+ on behalf of whom a Contribution has been received by Licensor and
944
+ subsequently incorporated within the Work.
945
+
946
+ 2. Grant of Copyright License. Subject to the terms and conditions of
947
+ this License, each Contributor hereby grants to You a perpetual,
948
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
949
+ copyright license to reproduce, prepare Derivative Works of,
950
+ publicly display, publicly perform, sublicense, and distribute the
951
+ Work and such Derivative Works in Source or Object form.
952
+
953
+ 3. Grant of Patent License. Subject to the terms and conditions of
954
+ this License, each Contributor hereby grants to You a perpetual,
955
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
956
+ (except as stated in this section) patent license to make, have made,
957
+ use, offer to sell, sell, import, and otherwise transfer the Work,
958
+ where such license applies only to those patent claims licensable
959
+ by such Contributor that are necessarily infringed by their
960
+ Contribution(s) alone or by combination of their Contribution(s)
961
+ with the Work to which such Contribution(s) was submitted. If You
962
+ institute patent litigation against any entity (including a
963
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
964
+ or a Contribution incorporated within the Work constitutes direct
965
+ or contributory patent infringement, then any patent licenses
966
+ granted to You under this License for that Work shall terminate
967
+ as of the date such litigation is filed.
968
+
969
+ 4. Redistribution. You may reproduce and distribute copies of the
970
+ Work or Derivative Works thereof in any medium, with or without
971
+ modifications, and in Source or Object form, provided that You
972
+ meet the following conditions:
973
+
974
+ (a) You must give any other recipients of the Work or
975
+ Derivative Works a copy of this License; and
976
+
977
+ (b) You must cause any modified files to carry prominent notices
978
+ stating that You changed the files; and
979
+
980
+ (c) You must retain, in the Source form of any Derivative Works
981
+ that You distribute, all copyright, patent, trademark, and
982
+ attribution notices from the Source form of the Work,
983
+ excluding those notices that do not pertain to any part of
984
+ the Derivative Works; and
985
+
986
+ (d) If the Work includes a "NOTICE" text file as part of its
987
+ distribution, then any Derivative Works that You distribute must
988
+ include a readable copy of the attribution notices contained
989
+ within such NOTICE file, excluding those notices that do not
990
+ pertain to any part of the Derivative Works, in at least one
991
+ of the following places: within a NOTICE text file distributed
992
+ as part of the Derivative Works; within the Source form or
993
+ documentation, if provided along with the Derivative Works; or,
994
+ within a display generated by the Derivative Works, if and
995
+ wherever such third-party notices normally appear. The contents
996
+ of the NOTICE file are for informational purposes only and
997
+ do not modify the License. You may add Your own attribution
998
+ notices within Derivative Works that You distribute, alongside
999
+ or as an addendum to the NOTICE text from the Work, provided
1000
+ that such additional attribution notices cannot be construed
1001
+ as modifying the License.
1002
+
1003
+ You may add Your own copyright statement to Your modifications and
1004
+ may provide additional or different license terms and conditions
1005
+ for use, reproduction, or distribution of Your modifications, or
1006
+ for any such Derivative Works as a whole, provided Your use,
1007
+ reproduction, and distribution of the Work otherwise complies with
1008
+ the conditions stated in this License.
1009
+
1010
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
1011
+ any Contribution intentionally submitted for inclusion in the Work
1012
+ by You to the Licensor shall be under the terms and conditions of
1013
+ this License, without any additional terms or conditions.
1014
+ Notwithstanding the above, nothing herein shall supersede or modify
1015
+ the terms of any separate license agreement you may have executed
1016
+ with Licensor regarding such Contributions.
1017
+
1018
+ 6. Trademarks. This License does not grant permission to use the trade
1019
+ names, trademarks, service marks, or product names of the Licensor,
1020
+ except as required for reasonable and customary use in describing the
1021
+ origin of the Work and reproducing the content of the NOTICE file.
1022
+
1023
+ 7. Disclaimer of Warranty. Unless required by applicable law or
1024
+ agreed to in writing, Licensor provides the Work (and each
1025
+ Contributor provides its Contributions) on an "AS IS" BASIS,
1026
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
1027
+ implied, including, without limitation, any warranties or conditions
1028
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
1029
+ PARTICULAR PURPOSE. You are solely responsible for determining the
1030
+ appropriateness of using or redistributing the Work and assume any
1031
+ risks associated with Your exercise of permissions under this License.
1032
+
1033
+ 8. Limitation of Liability. In no event and under no legal theory,
1034
+ whether in tort (including negligence), contract, or otherwise,
1035
+ unless required by applicable law (such as deliberate and grossly
1036
+ negligent acts) or agreed to in writing, shall any Contributor be
1037
+ liable to You for damages, including any direct, indirect, special,
1038
+ incidental, or consequential damages of any character arising as a
1039
+ result of this License or out of the use or inability to use the
1040
+ Work (including but not limited to damages for loss of goodwill,
1041
+ work stoppage, computer failure or malfunction, or any and all
1042
+ other commercial damages or losses), even if such Contributor
1043
+ has been advised of the possibility of such damages.
1044
+
1045
+ 9. Accepting Warranty or Additional Liability. While redistributing
1046
+ the Work or Derivative Works thereof, You may choose to offer,
1047
+ and charge a fee for, acceptance of support, warranty, indemnity,
1048
+ or other liability obligations and/or rights consistent with this
1049
+ License. However, in accepting such obligations, You may act only
1050
+ on Your own behalf and on Your sole responsibility, not on behalf
1051
+ of any other Contributor, and only if You agree to indemnify,
1052
+ defend, and hold each Contributor harmless for any liability
1053
+ incurred by, or claims asserted against, such Contributor by reason
1054
+ of your accepting any such warranty or additional liability.
1055
+
1056
+ END OF TERMS AND CONDITIONS
1057
+
1058
+ APPENDIX: How to apply the Apache License to your work.
1059
+
1060
+ To apply the Apache License to your work, attach the following
1061
+ boilerplate notice, with the fields enclosed by brackets "[]"
1062
+ replaced with your own identifying information. (Don't include
1063
+ the brackets!) The text should be enclosed in the appropriate
1064
+ comment syntax for the file format. We also recommend that a
1065
+ file or class name and description of purpose be included on the
1066
+ same "printed page" as the copyright notice for easier
1067
+ identification within third-party archives.
1068
+
1069
+ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
1070
+
1071
+ Licensed under the Apache License, Version 2.0 (the "License");
1072
+ you may not use this file except in compliance with the License.
1073
+ You may obtain a copy of the License at
1074
+
1075
+ http://www.apache.org/licenses/LICENSE-2.0
1076
+
1077
+ Unless required by applicable law or agreed to in writing, software
1078
+ distributed under the License is distributed on an "AS IS" BASIS,
1079
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1080
+ See the License for the specific language governing permissions and
1081
+ limitations under the License.
1082
+
1083
+
1084
+
1085
+ signature_pad
1086
+ MIT
1087
+ MIT License
1088
+
1089
+ Copyright (c) 2018 Szymon Nowak
1090
+
1091
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1092
+ of this software and associated documentation files (the "Software"), to deal
1093
+ in the Software without restriction, including without limitation the rights
1094
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1095
+ copies of the Software, and to permit persons to whom the Software is
1096
+ furnished to do so, subject to the following conditions:
1097
+
1098
+ The above copyright notice and this permission notice shall be included in all
1099
+ copies or substantial portions of the Software.
1100
+
1101
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1102
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1103
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1104
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1105
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1106
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1107
+ SOFTWARE.
1108
+
1109
+
1110
+ three
1111
+ MIT
1112
+ The MIT License
1113
+
1114
+ Copyright © 2010-2021 three.js authors
1115
+
1116
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1117
+ of this software and associated documentation files (the "Software"), to deal
1118
+ in the Software without restriction, including without limitation the rights
1119
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1120
+ copies of the Software, and to permit persons to whom the Software is
1121
+ furnished to do so, subject to the following conditions:
1122
+
1123
+ The above copyright notice and this permission notice shall be included in
1124
+ all copies or substantial portions of the Software.
1125
+
1126
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1127
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1128
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1129
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1130
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1131
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1132
+ THE SOFTWARE.
1133
+
1134
+
1135
+ tslib
1136
+ 0BSD
1137
+ Copyright (c) Microsoft Corporation.
1138
+
1139
+ Permission to use, copy, modify, and/or distribute this software for any
1140
+ purpose with or without fee is hereby granted.
1141
+
1142
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1143
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
1144
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1145
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
1146
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
1147
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
1148
+ PERFORMANCE OF THIS SOFTWARE.
1149
+
1150
+ web-streams-polyfill
1151
+ MIT
1152
+ The MIT License (MIT)
1153
+
1154
+ Copyright (c) 2020 Mattias Buelens
1155
+ Copyright (c) 2016 Diwank Singh Tomer
1156
+
1157
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1158
+ of this software and associated documentation files (the "Software"), to deal
1159
+ in the Software without restriction, including without limitation the rights
1160
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1161
+ copies of the Software, and to permit persons to whom the Software is
1162
+ furnished to do so, subject to the following conditions:
1163
+
1164
+ The above copyright notice and this permission notice shall be included in all
1165
+ copies or substantial portions of the Software.
1166
+
1167
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1168
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1169
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1170
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1171
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1172
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1173
+ SOFTWARE.
1174
+
1175
+
1176
+ zone.js
1177
+ MIT
1178
+ The MIT License
1179
+
1180
+ Copyright (c) 2010-2022 Google LLC. https://angular.io/license
1181
+
1182
+ Permission is hereby granted, free of charge, to any person obtaining a copy
1183
+ of this software and associated documentation files (the "Software"), to deal
1184
+ in the Software without restriction, including without limitation the rights
1185
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1186
+ copies of the Software, and to permit persons to whom the Software is
1187
+ furnished to do so, subject to the following conditions:
1188
+
1189
+ The above copyright notice and this permission notice shall be included in
1190
+ all copies or substantial portions of the Software.
1191
+
1192
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1193
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1194
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1195
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1196
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1197
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1198
+ THE SOFTWARE.