@sasindi/ward-admission 1.0.1 → 1.0.4

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,282 @@
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
+ * @license
24
+ Copyright (c) 2008, Adobe Systems Incorporated
25
+ All rights reserved.
26
+
27
+ Redistribution and use in source and binary forms, with or without
28
+ modification, are permitted provided that the following conditions are
29
+ met:
30
+
31
+ * Redistributions of source code must retain the above copyright notice,
32
+ this list of conditions and the following disclaimer.
33
+
34
+ * Redistributions in binary form must reproduce the above copyright
35
+ notice, this list of conditions and the following disclaimer in the
36
+ documentation and/or other materials provided with the distribution.
37
+
38
+ * Neither the name of Adobe Systems Incorporated nor the names of its
39
+ contributors may be used to endorse or promote products derived from
40
+ this software without specific prior written permission.
41
+
42
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
43
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
44
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
45
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
46
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
47
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
48
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
49
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
50
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
51
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
52
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53
+ */
54
+
55
+ /**
56
+ * @license
57
+ *
58
+ * Licensed under the MIT License.
59
+ * http://opensource.org/licenses/mit-license
60
+ */
61
+
62
+ /**
63
+ * @license
64
+ * (c) Dean McNamee <dean@gmail.com>, 2013.
65
+ *
66
+ * https://github.com/deanm/omggif
67
+ *
68
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
69
+ * of this software and associated documentation files (the "Software"), to
70
+ * deal in the Software without restriction, including without limitation the
71
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
72
+ * sell copies of the Software, and to permit persons to whom the Software is
73
+ * furnished to do so, subject to the following conditions:
74
+ *
75
+ * The above copyright notice and this permission notice shall be included in
76
+ * all copies or substantial portions of the Software.
77
+ *
78
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
79
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
80
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
81
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
82
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
83
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
84
+ * IN THE SOFTWARE.
85
+ *
86
+ * omggif is a JavaScript implementation of a GIF 89a encoder and decoder,
87
+ * including animation and compression. It does not rely on any specific
88
+ * underlying system, so should run in the browser, Node, or Plask.
89
+ */
90
+
91
+ /**
92
+ * @license
93
+ * Copyright (c) 2014 Steven Spungin (TwelveTone LLC) steven@twelvetone.tv
94
+ *
95
+ * Licensed under the MIT License.
96
+ * http://opensource.org/licenses/mit-license
97
+ */
98
+
99
+ /**
100
+ * @license
101
+ * Copyright (c) 2017 Aras Abbasi
102
+ *
103
+ * Licensed under the MIT License.
104
+ * http://opensource.org/licenses/mit-license
105
+ */
106
+
107
+ /**
108
+ * @license
109
+ * Copyright (c) 2018 Aras Abbasi
110
+ *
111
+ * Licensed under the MIT License.
112
+ * http://opensource.org/licenses/mit-license
113
+ */
114
+
115
+ /**
116
+ * @license
117
+ * Copyright (c) 2019 Aras Abbasi
118
+ *
119
+ * Licensed under the MIT License.
120
+ * http://opensource.org/licenses/mit-license
121
+ */
122
+
123
+ /**
124
+ * @license
125
+ * FPDF is released under a permissive license: there is no usage restriction.
126
+ * You may embed it freely in your application (commercial or not), with or
127
+ * without modifications.
128
+ *
129
+ * Reference: http://www.fpdf.org/en/script/script37.php
130
+ */
131
+
132
+ /**
133
+ * @license
134
+ * Joseph Myers does not specify a particular license for his work.
135
+ *
136
+ * Author: Joseph Myers
137
+ * Accessed from: http://www.myersdaily.org/joseph/javascript/md5.js
138
+ *
139
+ * Modified by: Owen Leong
140
+ */
141
+
142
+ /**
143
+ * @license
144
+ * Licensed under the MIT License.
145
+ * http://opensource.org/licenses/mit-license
146
+ * Author: Owen Leong (@owenl131)
147
+ * Date: 15 Oct 2020
148
+ * References:
149
+ * https://www.cs.cmu.edu/~dst/Adobe/Gallery/anon21jul01-pdf-encryption.txt
150
+ * https://github.com/foliojs/pdfkit/blob/master/lib/security.js
151
+ * http://www.fpdf.org/en/script/script37.php
152
+ */
153
+
154
+ /**
155
+ * @license
156
+ * Licensed under the MIT License.
157
+ * http://opensource.org/licenses/mit-license
158
+ */
159
+
160
+ /**
161
+ * @license
162
+ * Unicode Bidi Engine based on the work of Alex Shensis (@asthensis)
163
+ * MIT License
164
+ */
165
+
166
+ /**
167
+ * @license
168
+ * jsPDF fileloading PlugIn
169
+ * Copyright (c) 2018 Aras Abbasi (aras.abbasi@gmail.com)
170
+ *
171
+ * Licensed under the MIT License.
172
+ * http://opensource.org/licenses/mit-license
173
+ */
174
+
175
+ /**
176
+ * @license
177
+ * jsPDF filters PlugIn
178
+ * Copyright (c) 2014 Aras Abbasi
179
+ *
180
+ * Licensed under the MIT License.
181
+ * http://opensource.org/licenses/mit-license
182
+ */
183
+
184
+ /**
185
+ * @license
186
+ * jsPDF virtual FileSystem functionality
187
+ *
188
+ * Licensed under the MIT License.
189
+ * http://opensource.org/licenses/mit-license
190
+ */
191
+
192
+ /**
193
+ * A class to parse color values
194
+ * @author Stoyan Stefanov <sstoo@gmail.com>
195
+ * {@link http://www.phpied.com/rgb-color-parser-in-javascript/}
196
+ * @license Use it if you like it
197
+ */
198
+
199
+ /** ====================================================================
200
+ * @license
201
+ * jsPDF XMP metadata plugin
202
+ * Copyright (c) 2016 Jussi Utunen, u-jussi@suomi24.fi
203
+ *
204
+ * Permission is hereby granted, free of charge, to any person obtaining
205
+ * a copy of this software and associated documentation files (the
206
+ * "Software"), to deal in the Software without restriction, including
207
+ * without limitation the rights to use, copy, modify, merge, publish,
208
+ * distribute, sublicense, and/or sell copies of the Software, and to
209
+ * permit persons to whom the Software is furnished to do so, subject to
210
+ * the following conditions:
211
+ *
212
+ * The above copyright notice and this permission notice shall be
213
+ * included in all copies or substantial portions of the Software.
214
+ *
215
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
216
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
217
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
218
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
219
+ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
220
+ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
221
+ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
222
+ * ====================================================================
223
+ */
224
+
225
+ /** @license
226
+ * Copyright (c) 2017 Dominik Homberger
227
+ 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:
228
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
229
+ 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.
230
+ https://webpjs.appspot.com
231
+ WebPRiffParser dominikhlbg@gmail.com
232
+ */
233
+
234
+ /** @license
235
+ *
236
+ * jsPDF - PDF Document creation from JavaScript
237
+ * Version 4.0.0 Built on 2025-12-18T10:27:09.425Z
238
+ * CommitID 00000000
239
+ *
240
+ * Copyright (c) 2010-2025 James Hall <james@parall.ax>, https://github.com/MrRio/jsPDF
241
+ * 2015-2025 yWorks GmbH, http://www.yworks.com
242
+ * 2015-2025 Lukas Holländer <lukas.hollaender@yworks.com>, https://github.com/HackbrettXXX
243
+ * 2016-2018 Aras Abbasi <aras.abbasi@gmail.com>
244
+ * 2010 Aaron Spike, https://github.com/acspike
245
+ * 2012 Willow Systems Corporation, https://github.com/willowsystems
246
+ * 2012 Pablo Hess, https://github.com/pablohess
247
+ * 2012 Florian Jenett, https://github.com/fjenett
248
+ * 2013 Warren Weckesser, https://github.com/warrenweckesser
249
+ * 2013 Youssef Beddad, https://github.com/lifof
250
+ * 2013 Lee Driscoll, https://github.com/lsdriscoll
251
+ * 2013 Stefan Slonevskiy, https://github.com/stefslon
252
+ * 2013 Jeremy Morel, https://github.com/jmorel
253
+ * 2013 Christoph Hartmann, https://github.com/chris-rock
254
+ * 2014 Juan Pablo Gaviria, https://github.com/juanpgaviria
255
+ * 2014 James Makes, https://github.com/dollaruw
256
+ * 2014 Diego Casorran, https://github.com/diegocr
257
+ * 2014 Steven Spungin, https://github.com/Flamenco
258
+ * 2014 Kenneth Glassey, https://github.com/Gavvers
259
+ *
260
+ * Permission is hereby granted, free of charge, to any person obtaining
261
+ * a copy of this software and associated documentation files (the
262
+ * "Software"), to deal in the Software without restriction, including
263
+ * without limitation the rights to use, copy, modify, merge, publish,
264
+ * distribute, sublicense, and/or sell copies of the Software, and to
265
+ * permit persons to whom the Software is furnished to do so, subject to
266
+ * the following conditions:
267
+ *
268
+ * The above copyright notice and this permission notice shall be
269
+ * included in all copies or substantial portions of the Software.
270
+ *
271
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
272
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
273
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
274
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
275
+ * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
276
+ * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
277
+ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
278
+ *
279
+ * Contributor(s):
280
+ * siefkenj, ahwolf, rickygu, Midnith, saintclair, eaparango,
281
+ * kim3er, mfo, alnorth, Flamenco
282
+ */