educast-plugin-gallery 1.0.0

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,215 @@
1
+ /*
2
+ object-assign
3
+ (c) Sindre Sorhus
4
+ @license MIT
5
+ */
6
+
7
+ /*!
8
+ Copyright (c) 2017 Jed Watson.
9
+ Licensed under the MIT License (MIT), see
10
+ http://jedwatson.github.io/classnames
11
+ */
12
+
13
+ /*! *****************************************************************************
14
+ Copyright (c) Microsoft Corporation. All rights reserved.
15
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
16
+ this file except in compliance with the License. You may obtain a copy of the
17
+ License at http://www.apache.org/licenses/LICENSE-2.0
18
+
19
+ THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
20
+ KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
21
+ WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
22
+ MERCHANTABLITY OR NON-INFRINGEMENT.
23
+
24
+ See the Apache Version 2.0 License for specific language governing permissions
25
+ and limitations under the License.
26
+ ***************************************************************************** */
27
+
28
+ /*! Conditions:: INITIAL */
29
+
30
+ /*! Production:: css_value : ANGLE */
31
+
32
+ /*! Production:: css_value : CHS */
33
+
34
+ /*! Production:: css_value : EMS */
35
+
36
+ /*! Production:: css_value : EXS */
37
+
38
+ /*! Production:: css_value : FREQ */
39
+
40
+ /*! Production:: css_value : LENGTH */
41
+
42
+ /*! Production:: css_value : PERCENTAGE */
43
+
44
+ /*! Production:: css_value : REMS */
45
+
46
+ /*! Production:: css_value : RES */
47
+
48
+ /*! Production:: css_value : SUB css_value */
49
+
50
+ /*! Production:: css_value : TIME */
51
+
52
+ /*! Production:: css_value : VHS */
53
+
54
+ /*! Production:: css_value : VMAXS */
55
+
56
+ /*! Production:: css_value : VMINS */
57
+
58
+ /*! Production:: css_value : VWS */
59
+
60
+ /*! Production:: css_variable : CSS_VAR LPAREN CSS_CPROP COMMA math_expression RPAREN */
61
+
62
+ /*! Production:: css_variable : CSS_VAR LPAREN CSS_CPROP RPAREN */
63
+
64
+ /*! Production:: expression : math_expression EOF */
65
+
66
+ /*! Production:: math_expression : LPAREN math_expression RPAREN */
67
+
68
+ /*! Production:: math_expression : NESTED_CALC LPAREN math_expression RPAREN */
69
+
70
+ /*! Production:: math_expression : SUB PREFIX SUB NESTED_CALC LPAREN math_expression RPAREN */
71
+
72
+ /*! Production:: math_expression : css_value */
73
+
74
+ /*! Production:: math_expression : css_variable */
75
+
76
+ /*! Production:: math_expression : math_expression ADD math_expression */
77
+
78
+ /*! Production:: math_expression : math_expression DIV math_expression */
79
+
80
+ /*! Production:: math_expression : math_expression MUL math_expression */
81
+
82
+ /*! Production:: math_expression : math_expression SUB math_expression */
83
+
84
+ /*! Production:: math_expression : value */
85
+
86
+ /*! Production:: value : NUMBER */
87
+
88
+ /*! Production:: value : SUB NUMBER */
89
+
90
+ /*! Rule:: $ */
91
+
92
+ /*! Rule:: (--[0-9a-z-A-Z-]*) */
93
+
94
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)% */
95
+
96
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)Hz\b */
97
+
98
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)\b */
99
+
100
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)ch\b */
101
+
102
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)cm\b */
103
+
104
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)deg\b */
105
+
106
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)dpcm\b */
107
+
108
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)dpi\b */
109
+
110
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)dppx\b */
111
+
112
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)em\b */
113
+
114
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)ex\b */
115
+
116
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)grad\b */
117
+
118
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)in\b */
119
+
120
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)kHz\b */
121
+
122
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)mm\b */
123
+
124
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)ms\b */
125
+
126
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)pc\b */
127
+
128
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)pt\b */
129
+
130
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)px\b */
131
+
132
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)rad\b */
133
+
134
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)rem\b */
135
+
136
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)s\b */
137
+
138
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)turn\b */
139
+
140
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)vh\b */
141
+
142
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)vmax\b */
143
+
144
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)vmin\b */
145
+
146
+ /*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)vw\b */
147
+
148
+ /*! Rule:: ([a-z]+) */
149
+
150
+ /*! Rule:: (calc) */
151
+
152
+ /*! Rule:: (var) */
153
+
154
+ /*! Rule:: , */
155
+
156
+ /*! Rule:: - */
157
+
158
+ /*! Rule:: \( */
159
+
160
+ /*! Rule:: \) */
161
+
162
+ /*! Rule:: \* */
163
+
164
+ /*! Rule:: \+ */
165
+
166
+ /*! Rule:: \/ */
167
+
168
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */
169
+
170
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
171
+
172
+ /**
173
+ * @license
174
+ * Lodash <https://lodash.com/>
175
+ * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
176
+ * Released under MIT license <https://lodash.com/license>
177
+ * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
178
+ * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
179
+ */
180
+
181
+ /** @license React v0.20.2
182
+ * scheduler.production.min.js
183
+ *
184
+ * Copyright (c) Facebook, Inc. and its affiliates.
185
+ *
186
+ * This source code is licensed under the MIT license found in the
187
+ * LICENSE file in the root directory of this source tree.
188
+ */
189
+
190
+ /** @license React v17.0.0
191
+ * react-dom.production.min.js
192
+ *
193
+ * Copyright (c) Facebook, Inc. and its affiliates.
194
+ *
195
+ * This source code is licensed under the MIT license found in the
196
+ * LICENSE file in the root directory of this source tree.
197
+ */
198
+
199
+ /** @license React v17.0.0
200
+ * react-jsx-runtime.production.min.js
201
+ *
202
+ * Copyright (c) Facebook, Inc. and its affiliates.
203
+ *
204
+ * This source code is licensed under the MIT license found in the
205
+ * LICENSE file in the root directory of this source tree.
206
+ */
207
+
208
+ /** @license React v17.0.0
209
+ * react.production.min.js
210
+ *
211
+ * Copyright (c) Facebook, Inc. and its 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
+ */