nadesiko3 3.3.76 → 3.3.77
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.
- package/core/package.json +3 -3
- package/core/src/nako3.mjs +6 -6
- package/core/src/nako3.mts +6 -6
- package/core/src/nako_core_version.mjs +2 -2
- package/core/src/nako_core_version.mts +2 -2
- package/core/src/nako_gen.mjs +11 -1
- package/core/src/nako_gen.mts +7 -1
- package/core/src/plugin_system.mjs +19 -2
- package/core/src/plugin_system.mts +20 -3
- package/core/test/array_test.mjs +3 -0
- package/package.json +1 -1
- package/release/editor.js +1 -1
- package/release/editor.js.LICENSE.txt +475 -29
- package/release/nako_gen_async.js +2 -1
- package/release/plugin_caniuse.js +2 -1
- package/release/plugin_datetime.js +2 -1
- package/release/plugin_kansuji.js +2 -1
- package/release/plugin_markup.js +2 -1
- package/release/plugin_turtle.js +2 -1
- package/release/plugin_webworker.js +2 -1
- package/release/plugin_weykturtle3d.js +2 -1
- package/release/stats.json +1 -1
- package/release/version.js +1 -1
- package/release/version.js.LICENSE.txt +363 -29
- package/release/wnako3.js +1 -1
- package/release/wnako3.js.LICENSE.txt +219 -1
- package/release/wnako3webworker.js +2 -1
- package/test/node/plugin_test.mjs +1 -2
- package/test/selenium/requirements.txt +2 -2
|
@@ -1 +1,219 @@
|
|
|
1
|
-
|
|
1
|
+
/*!************************!*\
|
|
2
|
+
!*** ./src/wnako3.mjs ***!
|
|
3
|
+
\************************/
|
|
4
|
+
|
|
5
|
+
/*!***************************!*\
|
|
6
|
+
!*** ./src/wnako3mod.mjs ***!
|
|
7
|
+
\***************************/
|
|
8
|
+
|
|
9
|
+
/*!****************************!*\
|
|
10
|
+
!*** ./core/src/nako3.mjs ***!
|
|
11
|
+
\****************************/
|
|
12
|
+
|
|
13
|
+
/*!******************************!*\
|
|
14
|
+
!*** ./src/nako_version.mjs ***!
|
|
15
|
+
\******************************/
|
|
16
|
+
|
|
17
|
+
/*!*******************************!*\
|
|
18
|
+
!*** ./core/src/nako_csv.mjs ***!
|
|
19
|
+
\*******************************/
|
|
20
|
+
|
|
21
|
+
/*!*******************************!*\
|
|
22
|
+
!*** ./core/src/nako_gen.mjs ***!
|
|
23
|
+
\*******************************/
|
|
24
|
+
|
|
25
|
+
/*!*******************************!*\
|
|
26
|
+
!*** ./src/wnako3_editor.mjs ***!
|
|
27
|
+
\*******************************/
|
|
28
|
+
|
|
29
|
+
/*!********************************!*\
|
|
30
|
+
!*** ./src/plugin_browser.mjs ***!
|
|
31
|
+
\********************************/
|
|
32
|
+
|
|
33
|
+
/*!*********************************!*\
|
|
34
|
+
!*** ./core/src/nako_lexer.mjs ***!
|
|
35
|
+
\*********************************/
|
|
36
|
+
|
|
37
|
+
/*!*********************************!*\
|
|
38
|
+
!*** ./core/src/nako_tools.mjs ***!
|
|
39
|
+
\*********************************/
|
|
40
|
+
|
|
41
|
+
/*!*********************************!*\
|
|
42
|
+
!*** ./core/src/nako_types.mjs ***!
|
|
43
|
+
\*********************************/
|
|
44
|
+
|
|
45
|
+
/*!*********************************!*\
|
|
46
|
+
!*** ./core/src/plugin_csv.mjs ***!
|
|
47
|
+
\*********************************/
|
|
48
|
+
|
|
49
|
+
/*!**********************************!*\
|
|
50
|
+
!*** ./core/src/nako_colors.mjs ***!
|
|
51
|
+
\**********************************/
|
|
52
|
+
|
|
53
|
+
/*!**********************************!*\
|
|
54
|
+
!*** ./core/src/nako_errors.mjs ***!
|
|
55
|
+
\**********************************/
|
|
56
|
+
|
|
57
|
+
/*!**********************************!*\
|
|
58
|
+
!*** ./core/src/nako_global.mjs ***!
|
|
59
|
+
\**********************************/
|
|
60
|
+
|
|
61
|
+
/*!**********************************!*\
|
|
62
|
+
!*** ./core/src/nako_indent.mjs ***!
|
|
63
|
+
\**********************************/
|
|
64
|
+
|
|
65
|
+
/*!**********************************!*\
|
|
66
|
+
!*** ./core/src/nako_logger.mjs ***!
|
|
67
|
+
\**********************************/
|
|
68
|
+
|
|
69
|
+
/*!**********************************!*\
|
|
70
|
+
!*** ./core/src/plugin_math.mjs ***!
|
|
71
|
+
\**********************************/
|
|
72
|
+
|
|
73
|
+
/*!**********************************!*\
|
|
74
|
+
!*** ./core/src/plugin_test.mjs ***!
|
|
75
|
+
\**********************************/
|
|
76
|
+
|
|
77
|
+
/*!***********************************!*\
|
|
78
|
+
!*** ./core/src/nako_parser3.mjs ***!
|
|
79
|
+
\***********************************/
|
|
80
|
+
|
|
81
|
+
/*!***********************************!*\
|
|
82
|
+
!*** ./core/src/nako_prepare.mjs ***!
|
|
83
|
+
\***********************************/
|
|
84
|
+
|
|
85
|
+
/*!************************************!*\
|
|
86
|
+
!*** ./core/src/plugin_system.mjs ***!
|
|
87
|
+
\************************************/
|
|
88
|
+
|
|
89
|
+
/*!*************************************!*\
|
|
90
|
+
!*** ./core/src/nako_from_dncl.mjs ***!
|
|
91
|
+
\*************************************/
|
|
92
|
+
|
|
93
|
+
/*!*************************************!*\
|
|
94
|
+
!*** ./core/src/nako_gen_async.mjs ***!
|
|
95
|
+
\*************************************/
|
|
96
|
+
|
|
97
|
+
/*!*************************************!*\
|
|
98
|
+
!*** ./core/src/nako_josi_list.mjs ***!
|
|
99
|
+
\*************************************/
|
|
100
|
+
|
|
101
|
+
/*!*************************************!*\
|
|
102
|
+
!*** ./core/src/nako_lex_rules.mjs ***!
|
|
103
|
+
\*************************************/
|
|
104
|
+
|
|
105
|
+
/*!*************************************!*\
|
|
106
|
+
!*** ./core/src/plugin_promise.mjs ***!
|
|
107
|
+
\*************************************/
|
|
108
|
+
|
|
109
|
+
/*!*************************************!*\
|
|
110
|
+
!*** ./src/plugin_browser_ajax.mjs ***!
|
|
111
|
+
\*************************************/
|
|
112
|
+
|
|
113
|
+
/*!*************************************!*\
|
|
114
|
+
!*** ./src/plugin_browser_html.mjs ***!
|
|
115
|
+
\*************************************/
|
|
116
|
+
|
|
117
|
+
/*!**************************************!*\
|
|
118
|
+
!*** ./core/src/nako_from_dncl2.mjs ***!
|
|
119
|
+
\**************************************/
|
|
120
|
+
|
|
121
|
+
/*!**************************************!*\
|
|
122
|
+
!*** ./src/plugin_browser_audio.mjs ***!
|
|
123
|
+
\**************************************/
|
|
124
|
+
|
|
125
|
+
/*!**************************************!*\
|
|
126
|
+
!*** ./src/plugin_browser_chart.mjs ***!
|
|
127
|
+
\**************************************/
|
|
128
|
+
|
|
129
|
+
/*!**************************************!*\
|
|
130
|
+
!*** ./src/plugin_browser_color.mjs ***!
|
|
131
|
+
\**************************************/
|
|
132
|
+
|
|
133
|
+
/*!***************************************!*\
|
|
134
|
+
!*** ./core/src/nako_parser_base.mjs ***!
|
|
135
|
+
\***************************************/
|
|
136
|
+
|
|
137
|
+
/*!***************************************!*\
|
|
138
|
+
!*** ./src/plugin_browser_canvas.mjs ***!
|
|
139
|
+
\***************************************/
|
|
140
|
+
|
|
141
|
+
/*!***************************************!*\
|
|
142
|
+
!*** ./src/plugin_browser_crypto.mjs ***!
|
|
143
|
+
\***************************************/
|
|
144
|
+
|
|
145
|
+
/*!***************************************!*\
|
|
146
|
+
!*** ./src/plugin_browser_dialog.mjs ***!
|
|
147
|
+
\***************************************/
|
|
148
|
+
|
|
149
|
+
/*!***************************************!*\
|
|
150
|
+
!*** ./src/plugin_browser_hotkey.mjs ***!
|
|
151
|
+
\***************************************/
|
|
152
|
+
|
|
153
|
+
/*!***************************************!*\
|
|
154
|
+
!*** ./src/plugin_browser_speech.mjs ***!
|
|
155
|
+
\***************************************/
|
|
156
|
+
|
|
157
|
+
/*!***************************************!*\
|
|
158
|
+
!*** ./src/plugin_browser_system.mjs ***!
|
|
159
|
+
\***************************************/
|
|
160
|
+
|
|
161
|
+
/*!****************************************!*\
|
|
162
|
+
!*** ./core/src/nako_core_version.mjs ***!
|
|
163
|
+
\****************************************/
|
|
164
|
+
|
|
165
|
+
/*!****************************************!*\
|
|
166
|
+
!*** ./core/src/nako_indent_chars.mjs ***!
|
|
167
|
+
\****************************************/
|
|
168
|
+
|
|
169
|
+
/*!****************************************!*\
|
|
170
|
+
!*** ./core/src/nako_parser_const.mjs ***!
|
|
171
|
+
\****************************************/
|
|
172
|
+
|
|
173
|
+
/*!****************************************!*\
|
|
174
|
+
!*** ./src/plugin_browser_storage.mjs ***!
|
|
175
|
+
\****************************************/
|
|
176
|
+
|
|
177
|
+
/*!*****************************************!*\
|
|
178
|
+
!*** ./core/src/nako_indent_inline.mjs ***!
|
|
179
|
+
\*****************************************/
|
|
180
|
+
|
|
181
|
+
/*!*****************************************!*\
|
|
182
|
+
!*** ./src/plugin_browser_location.mjs ***!
|
|
183
|
+
\*****************************************/
|
|
184
|
+
|
|
185
|
+
/*!******************************************!*\
|
|
186
|
+
!*** ./core/src/nako_reserved_words.mjs ***!
|
|
187
|
+
\******************************************/
|
|
188
|
+
|
|
189
|
+
/*!******************************************!*\
|
|
190
|
+
!*** ./core/src/nako_source_mapping.mjs ***!
|
|
191
|
+
\******************************************/
|
|
192
|
+
|
|
193
|
+
/*!******************************************!*\
|
|
194
|
+
!*** ./node_modules/hotkeys-js/index.js ***!
|
|
195
|
+
\******************************************/
|
|
196
|
+
|
|
197
|
+
/*!******************************************!*\
|
|
198
|
+
!*** ./src/plugin_browser_dom_basic.mjs ***!
|
|
199
|
+
\******************************************/
|
|
200
|
+
|
|
201
|
+
/*!******************************************!*\
|
|
202
|
+
!*** ./src/plugin_browser_dom_event.mjs ***!
|
|
203
|
+
\******************************************/
|
|
204
|
+
|
|
205
|
+
/*!******************************************!*\
|
|
206
|
+
!*** ./src/plugin_browser_dom_parts.mjs ***!
|
|
207
|
+
\******************************************/
|
|
208
|
+
|
|
209
|
+
/*!******************************************!*\
|
|
210
|
+
!*** ./src/plugin_browser_websocket.mjs ***!
|
|
211
|
+
\******************************************/
|
|
212
|
+
|
|
213
|
+
/*!********************************************!*\
|
|
214
|
+
!*** ./src/plugin_browser_geolocation.mjs ***!
|
|
215
|
+
\********************************************/
|
|
216
|
+
|
|
217
|
+
/*!********************************************************!*\
|
|
218
|
+
!*** ./node_modules/hotkeys-js/dist/hotkeys.common.js ***!
|
|
219
|
+
\********************************************************/
|