hyperclayjs 1.2.0 → 1.3.1
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/README.md +44 -57
- package/communication/behaviorCollector.js +8 -1
- package/communication/sendMessage.js +8 -2
- package/communication/uploadFile.js +8 -2
- package/core/adminSystem.js +3 -0
- package/core/autosave.js +95 -0
- package/core/editmodeSystem.js +10 -8
- package/core/enablePersistentFormInputValues.js +8 -1
- package/core/optionVisibilityRuleGenerator.js +9 -1
- package/core/savePage.js +28 -71
- package/core/savePageCore.js +7 -14
- package/custom-attributes/ajaxElements.js +4 -0
- package/custom-attributes/domHelpers.js +9 -0
- package/custom-attributes/events.js +3 -0
- package/custom-attributes/inputHelpers.js +3 -0
- package/custom-attributes/sortable.js +9 -1
- package/dom-utilities/All.js +4 -7
- package/dom-utilities/getDataFromForm.js +9 -2
- package/dom-utilities/insertStyleTag.js +9 -2
- package/dom-utilities/onDomReady.js +8 -2
- package/dom-utilities/onLoad.js +8 -2
- package/hyperclay.js +106 -692
- package/module-dependency-graph.json +175 -137
- package/package.json +3 -3
- package/string-utilities/copy-to-clipboard.js +3 -7
- package/string-utilities/emmet-html.js +8 -2
- package/string-utilities/query.js +8 -1
- package/string-utilities/slugify.js +4 -7
- package/ui/info.js +9 -1
- package/ui/prompts.js +19 -12
- package/ui/theModal.js +4 -4
- package/ui/toast-hyperclay.js +5 -9
- package/ui/toast.js +4 -7
- package/utilities/cookie.js +4 -7
- package/utilities/debounce.js +10 -4
- package/utilities/mutation.js +5 -0
- package/utilities/nearest.js +6 -1
- package/utilities/throttle.js +8 -2
- package/vendor/idiomorph.min.js +9 -1
- package/README.template.md +0 -276
|
@@ -47,11 +47,13 @@
|
|
|
47
47
|
"core/adminOnClick.js",
|
|
48
48
|
"core/adminResources.js"
|
|
49
49
|
],
|
|
50
|
+
"core/autosave.js": [],
|
|
50
51
|
"core/editmode.js": [
|
|
51
52
|
"core/isAdminOfCurrentResource.js"
|
|
52
53
|
],
|
|
53
54
|
"core/editmodeSystem.js": [
|
|
54
55
|
"core/editmode.js",
|
|
56
|
+
"core/isAdminOfCurrentResource.js",
|
|
55
57
|
"core/setPageTypeOnDocumentElement.js"
|
|
56
58
|
],
|
|
57
59
|
"core/enablePersistentFormInputValues.js": [
|
|
@@ -64,13 +66,7 @@
|
|
|
64
66
|
"core/optionVisibilityRuleGenerator.js": [
|
|
65
67
|
"utilities/mutation.js"
|
|
66
68
|
],
|
|
67
|
-
"core/savePage.js": [
|
|
68
|
-
"core/isAdminOfCurrentResource.js",
|
|
69
|
-
"core/savePageCore.js",
|
|
70
|
-
"ui/toast.js",
|
|
71
|
-
"utilities/mutation.js",
|
|
72
|
-
"utilities/throttle.js"
|
|
73
|
-
],
|
|
69
|
+
"core/savePage.js": [],
|
|
74
70
|
"core/savePageCore.js": [
|
|
75
71
|
"core/isAdminOfCurrentResource.js",
|
|
76
72
|
"utilities/cookie.js"
|
|
@@ -134,6 +130,7 @@
|
|
|
134
130
|
"ui/prompts.js": [
|
|
135
131
|
"dom-utilities/onDomReady.js",
|
|
136
132
|
"string-utilities/copy-to-clipboard.js",
|
|
133
|
+
"ui/info.js",
|
|
137
134
|
"ui/theModal.js",
|
|
138
135
|
"ui/toast.js"
|
|
139
136
|
],
|
|
@@ -156,9 +153,9 @@
|
|
|
156
153
|
},
|
|
157
154
|
"modules": {
|
|
158
155
|
"save-core": {
|
|
159
|
-
"name": "
|
|
156
|
+
"name": "save-core",
|
|
160
157
|
"category": "core",
|
|
161
|
-
"size": 5.
|
|
158
|
+
"size": 5.8,
|
|
162
159
|
"files": [
|
|
163
160
|
"core/savePageCore.js"
|
|
164
161
|
],
|
|
@@ -169,14 +166,14 @@
|
|
|
169
166
|
]
|
|
170
167
|
}
|
|
171
168
|
},
|
|
172
|
-
"save": {
|
|
173
|
-
"name": "
|
|
169
|
+
"save-system": {
|
|
170
|
+
"name": "save-system",
|
|
174
171
|
"category": "core",
|
|
175
|
-
"size": 4.
|
|
172
|
+
"size": 4.1,
|
|
176
173
|
"files": [
|
|
177
174
|
"core/savePage.js"
|
|
178
175
|
],
|
|
179
|
-
"description": "
|
|
176
|
+
"description": "Manual save: keyboard shortcut (CMD+S), save button, change tracking",
|
|
180
177
|
"exports": {
|
|
181
178
|
"beforeSave": [
|
|
182
179
|
"hyperclay"
|
|
@@ -192,6 +189,20 @@
|
|
|
192
189
|
],
|
|
193
190
|
"initSaveKeyboardShortcut": [
|
|
194
191
|
"hyperclay"
|
|
192
|
+
]
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"autosave": {
|
|
196
|
+
"name": "autosave",
|
|
197
|
+
"category": "core",
|
|
198
|
+
"size": 2.4,
|
|
199
|
+
"files": [
|
|
200
|
+
"core/autosave.js"
|
|
201
|
+
],
|
|
202
|
+
"description": "Auto-save on DOM changes, unsaved changes warning",
|
|
203
|
+
"exports": {
|
|
204
|
+
"savePageThrottled": [
|
|
205
|
+
"hyperclay"
|
|
195
206
|
],
|
|
196
207
|
"initSavePageOnChange": [
|
|
197
208
|
"hyperclay"
|
|
@@ -199,9 +210,9 @@
|
|
|
199
210
|
}
|
|
200
211
|
},
|
|
201
212
|
"admin": {
|
|
202
|
-
"name": "
|
|
213
|
+
"name": "admin",
|
|
203
214
|
"category": "core",
|
|
204
|
-
"size": 5.
|
|
215
|
+
"size": 5.4,
|
|
205
216
|
"files": [
|
|
206
217
|
"core/adminSystem.js",
|
|
207
218
|
"core/adminContenteditable.js",
|
|
@@ -213,9 +224,9 @@
|
|
|
213
224
|
"exports": {}
|
|
214
225
|
},
|
|
215
226
|
"persist": {
|
|
216
|
-
"name": "
|
|
227
|
+
"name": "persist",
|
|
217
228
|
"category": "core",
|
|
218
|
-
"size": 2.
|
|
229
|
+
"size": 2.4,
|
|
219
230
|
"files": [
|
|
220
231
|
"core/enablePersistentFormInputValues.js"
|
|
221
232
|
],
|
|
@@ -226,10 +237,10 @@
|
|
|
226
237
|
]
|
|
227
238
|
}
|
|
228
239
|
},
|
|
229
|
-
"
|
|
230
|
-
"name": "
|
|
240
|
+
"option-visibility": {
|
|
241
|
+
"name": "option-visibility",
|
|
231
242
|
"category": "core",
|
|
232
|
-
"size": 4.
|
|
243
|
+
"size": 4.7,
|
|
233
244
|
"files": [
|
|
234
245
|
"core/optionVisibilityRuleGenerator.js"
|
|
235
246
|
],
|
|
@@ -241,10 +252,10 @@
|
|
|
241
252
|
]
|
|
242
253
|
}
|
|
243
254
|
},
|
|
244
|
-
"
|
|
245
|
-
"name": "
|
|
255
|
+
"edit-mode": {
|
|
256
|
+
"name": "edit-mode",
|
|
246
257
|
"category": "core",
|
|
247
|
-
"size": 1.
|
|
258
|
+
"size": 1.7,
|
|
248
259
|
"files": [
|
|
249
260
|
"core/editmodeSystem.js",
|
|
250
261
|
"core/editmode.js",
|
|
@@ -263,10 +274,10 @@
|
|
|
263
274
|
]
|
|
264
275
|
}
|
|
265
276
|
},
|
|
266
|
-
"
|
|
267
|
-
"name": "
|
|
277
|
+
"event-attrs": {
|
|
278
|
+
"name": "event-attrs",
|
|
268
279
|
"category": "custom-attributes",
|
|
269
|
-
"size": 3.
|
|
280
|
+
"size": 3.6000000000000005,
|
|
270
281
|
"files": [
|
|
271
282
|
"custom-attributes/events.js",
|
|
272
283
|
"custom-attributes/onclickaway.js",
|
|
@@ -277,10 +288,10 @@
|
|
|
277
288
|
"description": "[onclickaway], [onclone], [onpagemutation], [onrender]",
|
|
278
289
|
"exports": {}
|
|
279
290
|
},
|
|
280
|
-
"ajax": {
|
|
281
|
-
"name": "
|
|
291
|
+
"ajax-elements": {
|
|
292
|
+
"name": "ajax-elements",
|
|
282
293
|
"category": "custom-attributes",
|
|
283
|
-
"size": 2.
|
|
294
|
+
"size": 2.8,
|
|
284
295
|
"files": [
|
|
285
296
|
"custom-attributes/ajaxElements.js"
|
|
286
297
|
],
|
|
@@ -288,9 +299,9 @@
|
|
|
288
299
|
"exports": {}
|
|
289
300
|
},
|
|
290
301
|
"sortable": {
|
|
291
|
-
"name": "
|
|
302
|
+
"name": "sortable",
|
|
292
303
|
"category": "custom-attributes",
|
|
293
|
-
"size":
|
|
304
|
+
"size": 118.1,
|
|
294
305
|
"files": [
|
|
295
306
|
"custom-attributes/sortable.js",
|
|
296
307
|
"vendor/Sortable.js"
|
|
@@ -303,10 +314,10 @@
|
|
|
303
314
|
]
|
|
304
315
|
}
|
|
305
316
|
},
|
|
306
|
-
"helpers": {
|
|
307
|
-
"name": "
|
|
317
|
+
"dom-helpers": {
|
|
318
|
+
"name": "dom-helpers",
|
|
308
319
|
"category": "custom-attributes",
|
|
309
|
-
"size": 5.
|
|
320
|
+
"size": 5.6,
|
|
310
321
|
"files": [
|
|
311
322
|
"custom-attributes/domHelpers.js"
|
|
312
323
|
],
|
|
@@ -318,8 +329,8 @@
|
|
|
318
329
|
]
|
|
319
330
|
}
|
|
320
331
|
},
|
|
321
|
-
"
|
|
322
|
-
"name": "
|
|
332
|
+
"input-helpers": {
|
|
333
|
+
"name": "input-helpers",
|
|
323
334
|
"category": "custom-attributes",
|
|
324
335
|
"size": 1.2,
|
|
325
336
|
"files": [
|
|
@@ -330,14 +341,15 @@
|
|
|
330
341
|
"description": "[prevent-enter], [autosize] for textareas",
|
|
331
342
|
"exports": {}
|
|
332
343
|
},
|
|
333
|
-
"
|
|
334
|
-
"name": "
|
|
344
|
+
"dialogs": {
|
|
345
|
+
"name": "dialogs",
|
|
335
346
|
"category": "ui",
|
|
336
|
-
"size":
|
|
347
|
+
"size": 11.2,
|
|
337
348
|
"files": [
|
|
338
|
-
"ui/prompts.js"
|
|
349
|
+
"ui/prompts.js",
|
|
350
|
+
"ui/info.js"
|
|
339
351
|
],
|
|
340
|
-
"description": "ask(), consent(), tell(), snippet() functions",
|
|
352
|
+
"description": "ask(), consent(), tell(), info(), snippet() functions",
|
|
341
353
|
"exports": {
|
|
342
354
|
"ask": [
|
|
343
355
|
"window",
|
|
@@ -351,6 +363,10 @@
|
|
|
351
363
|
"window",
|
|
352
364
|
"hyperclay"
|
|
353
365
|
],
|
|
366
|
+
"info": [
|
|
367
|
+
"window",
|
|
368
|
+
"hyperclay"
|
|
369
|
+
],
|
|
354
370
|
"snippet": [
|
|
355
371
|
"hyperclay"
|
|
356
372
|
],
|
|
@@ -360,7 +376,7 @@
|
|
|
360
376
|
}
|
|
361
377
|
},
|
|
362
378
|
"toast": {
|
|
363
|
-
"name": "
|
|
379
|
+
"name": "toast",
|
|
364
380
|
"category": "ui",
|
|
365
381
|
"size": 7.3,
|
|
366
382
|
"files": [
|
|
@@ -375,9 +391,9 @@
|
|
|
375
391
|
}
|
|
376
392
|
},
|
|
377
393
|
"toast-hyperclay": {
|
|
378
|
-
"name": "
|
|
394
|
+
"name": "toast-hyperclay",
|
|
379
395
|
"category": "ui",
|
|
380
|
-
"size":
|
|
396
|
+
"size": 7.8999999999999995,
|
|
381
397
|
"files": [
|
|
382
398
|
"ui/toast-hyperclay.js",
|
|
383
399
|
"ui/toast.js"
|
|
@@ -390,10 +406,10 @@
|
|
|
390
406
|
]
|
|
391
407
|
}
|
|
392
408
|
},
|
|
393
|
-
"
|
|
394
|
-
"name": "
|
|
409
|
+
"modal": {
|
|
410
|
+
"name": "modal",
|
|
395
411
|
"category": "ui",
|
|
396
|
-
"size": 18.
|
|
412
|
+
"size": 18.5,
|
|
397
413
|
"files": [
|
|
398
414
|
"ui/theModal.js"
|
|
399
415
|
],
|
|
@@ -405,23 +421,8 @@
|
|
|
405
421
|
]
|
|
406
422
|
}
|
|
407
423
|
},
|
|
408
|
-
"info": {
|
|
409
|
-
"name": "Info Dialog",
|
|
410
|
-
"category": "ui",
|
|
411
|
-
"size": 3.2,
|
|
412
|
-
"files": [
|
|
413
|
-
"ui/info.js"
|
|
414
|
-
],
|
|
415
|
-
"description": "Info dialog component",
|
|
416
|
-
"exports": {
|
|
417
|
-
"info": [
|
|
418
|
-
"window",
|
|
419
|
-
"hyperclay"
|
|
420
|
-
]
|
|
421
|
-
}
|
|
422
|
-
},
|
|
423
424
|
"tailwind-play": {
|
|
424
|
-
"name": "
|
|
425
|
+
"name": "tailwind-play",
|
|
425
426
|
"category": "ui",
|
|
426
427
|
"size": 362.3,
|
|
427
428
|
"files": [
|
|
@@ -431,9 +432,9 @@
|
|
|
431
432
|
"exports": {}
|
|
432
433
|
},
|
|
433
434
|
"mutation": {
|
|
434
|
-
"name": "
|
|
435
|
+
"name": "mutation",
|
|
435
436
|
"category": "utilities",
|
|
436
|
-
"size": 12.
|
|
437
|
+
"size": 12.9,
|
|
437
438
|
"files": [
|
|
438
439
|
"utilities/mutation.js"
|
|
439
440
|
],
|
|
@@ -446,9 +447,9 @@
|
|
|
446
447
|
}
|
|
447
448
|
},
|
|
448
449
|
"nearest": {
|
|
449
|
-
"name": "
|
|
450
|
+
"name": "nearest",
|
|
450
451
|
"category": "utilities",
|
|
451
|
-
"size": 3.
|
|
452
|
+
"size": 3.3,
|
|
452
453
|
"files": [
|
|
453
454
|
"utilities/nearest.js"
|
|
454
455
|
],
|
|
@@ -461,7 +462,7 @@
|
|
|
461
462
|
}
|
|
462
463
|
},
|
|
463
464
|
"cookie": {
|
|
464
|
-
"name": "
|
|
465
|
+
"name": "cookie",
|
|
465
466
|
"category": "utilities",
|
|
466
467
|
"size": 1.3,
|
|
467
468
|
"files": [
|
|
@@ -476,9 +477,9 @@
|
|
|
476
477
|
}
|
|
477
478
|
},
|
|
478
479
|
"throttle": {
|
|
479
|
-
"name": "
|
|
480
|
+
"name": "throttle",
|
|
480
481
|
"category": "utilities",
|
|
481
|
-
"size": 0.
|
|
482
|
+
"size": 0.7,
|
|
482
483
|
"files": [
|
|
483
484
|
"utilities/throttle.js"
|
|
484
485
|
],
|
|
@@ -490,9 +491,9 @@
|
|
|
490
491
|
}
|
|
491
492
|
},
|
|
492
493
|
"debounce": {
|
|
493
|
-
"name": "
|
|
494
|
+
"name": "debounce",
|
|
494
495
|
"category": "utilities",
|
|
495
|
-
"size": 0.
|
|
496
|
+
"size": 0.4,
|
|
496
497
|
"files": [
|
|
497
498
|
"utilities/debounce.js"
|
|
498
499
|
],
|
|
@@ -504,9 +505,9 @@
|
|
|
504
505
|
}
|
|
505
506
|
},
|
|
506
507
|
"dom-ready": {
|
|
507
|
-
"name": "
|
|
508
|
+
"name": "dom-ready",
|
|
508
509
|
"category": "dom-utilities",
|
|
509
|
-
"size": 0.
|
|
510
|
+
"size": 0.3,
|
|
510
511
|
"files": [
|
|
511
512
|
"dom-utilities/onDomReady.js"
|
|
512
513
|
],
|
|
@@ -518,9 +519,9 @@
|
|
|
518
519
|
}
|
|
519
520
|
},
|
|
520
521
|
"window-load": {
|
|
521
|
-
"name": "
|
|
522
|
+
"name": "window-load",
|
|
522
523
|
"category": "dom-utilities",
|
|
523
|
-
"size": 0.
|
|
524
|
+
"size": 0.3,
|
|
524
525
|
"files": [
|
|
525
526
|
"dom-utilities/onLoad.js"
|
|
526
527
|
],
|
|
@@ -531,8 +532,8 @@
|
|
|
531
532
|
]
|
|
532
533
|
}
|
|
533
534
|
},
|
|
534
|
-
"
|
|
535
|
-
"name": "
|
|
535
|
+
"all-js": {
|
|
536
|
+
"name": "all-js",
|
|
536
537
|
"category": "dom-utilities",
|
|
537
538
|
"size": 13.9,
|
|
538
539
|
"files": [
|
|
@@ -547,9 +548,9 @@
|
|
|
547
548
|
}
|
|
548
549
|
},
|
|
549
550
|
"style-injection": {
|
|
550
|
-
"name": "
|
|
551
|
+
"name": "style-injection",
|
|
551
552
|
"category": "dom-utilities",
|
|
552
|
-
"size":
|
|
553
|
+
"size": 1,
|
|
553
554
|
"files": [
|
|
554
555
|
"dom-utilities/insertStyleTag.js"
|
|
555
556
|
],
|
|
@@ -561,10 +562,10 @@
|
|
|
561
562
|
]
|
|
562
563
|
}
|
|
563
564
|
},
|
|
564
|
-
"
|
|
565
|
-
"name": "
|
|
565
|
+
"form-data": {
|
|
566
|
+
"name": "form-data",
|
|
566
567
|
"category": "dom-utilities",
|
|
567
|
-
"size": 1.
|
|
568
|
+
"size": 1.9,
|
|
568
569
|
"files": [
|
|
569
570
|
"dom-utilities/getDataFromForm.js"
|
|
570
571
|
],
|
|
@@ -577,9 +578,9 @@
|
|
|
577
578
|
}
|
|
578
579
|
},
|
|
579
580
|
"idiomorph": {
|
|
580
|
-
"name": "
|
|
581
|
+
"name": "idiomorph",
|
|
581
582
|
"category": "vendor",
|
|
582
|
-
"size":
|
|
583
|
+
"size": 8.1,
|
|
583
584
|
"files": [
|
|
584
585
|
"vendor/idiomorph.min.js"
|
|
585
586
|
],
|
|
@@ -591,9 +592,9 @@
|
|
|
591
592
|
}
|
|
592
593
|
},
|
|
593
594
|
"slugify": {
|
|
594
|
-
"name": "
|
|
595
|
+
"name": "slugify",
|
|
595
596
|
"category": "string-utilities",
|
|
596
|
-
"size": 0.
|
|
597
|
+
"size": 0.6,
|
|
597
598
|
"files": [
|
|
598
599
|
"string-utilities/slugify.js"
|
|
599
600
|
],
|
|
@@ -605,10 +606,10 @@
|
|
|
605
606
|
]
|
|
606
607
|
}
|
|
607
608
|
},
|
|
608
|
-
"emmet
|
|
609
|
-
"name": "
|
|
609
|
+
"emmet": {
|
|
610
|
+
"name": "emmet",
|
|
610
611
|
"category": "string-utilities",
|
|
611
|
-
"size": 1.
|
|
612
|
+
"size": 1.5,
|
|
612
613
|
"files": [
|
|
613
614
|
"string-utilities/emmet-html.js"
|
|
614
615
|
],
|
|
@@ -619,10 +620,10 @@
|
|
|
619
620
|
]
|
|
620
621
|
}
|
|
621
622
|
},
|
|
622
|
-
"
|
|
623
|
-
"name": "
|
|
623
|
+
"clipboard": {
|
|
624
|
+
"name": "clipboard",
|
|
624
625
|
"category": "string-utilities",
|
|
625
|
-
"size": 0.
|
|
626
|
+
"size": 0.8,
|
|
626
627
|
"files": [
|
|
627
628
|
"string-utilities/copy-to-clipboard.js"
|
|
628
629
|
],
|
|
@@ -633,10 +634,10 @@
|
|
|
633
634
|
]
|
|
634
635
|
}
|
|
635
636
|
},
|
|
636
|
-
"query-
|
|
637
|
-
"name": "
|
|
637
|
+
"query-params": {
|
|
638
|
+
"name": "query-params",
|
|
638
639
|
"category": "string-utilities",
|
|
639
|
-
"size": 0.
|
|
640
|
+
"size": 0.2,
|
|
640
641
|
"files": [
|
|
641
642
|
"string-utilities/query.js"
|
|
642
643
|
],
|
|
@@ -649,9 +650,9 @@
|
|
|
649
650
|
}
|
|
650
651
|
},
|
|
651
652
|
"behavior-collector": {
|
|
652
|
-
"name": "
|
|
653
|
+
"name": "behavior-collector",
|
|
653
654
|
"category": "communication",
|
|
654
|
-
"size": 5.
|
|
655
|
+
"size": 5.4,
|
|
655
656
|
"files": [
|
|
656
657
|
"communication/behaviorCollector.js"
|
|
657
658
|
],
|
|
@@ -663,9 +664,9 @@
|
|
|
663
664
|
}
|
|
664
665
|
},
|
|
665
666
|
"send-message": {
|
|
666
|
-
"name": "
|
|
667
|
+
"name": "send-message",
|
|
667
668
|
"category": "communication",
|
|
668
|
-
"size": 1.
|
|
669
|
+
"size": 1.3,
|
|
669
670
|
"files": [
|
|
670
671
|
"communication/sendMessage.js"
|
|
671
672
|
],
|
|
@@ -677,9 +678,9 @@
|
|
|
677
678
|
}
|
|
678
679
|
},
|
|
679
680
|
"file-upload": {
|
|
680
|
-
"name": "
|
|
681
|
+
"name": "file-upload",
|
|
681
682
|
"category": "communication",
|
|
682
|
-
"size": 10.
|
|
683
|
+
"size": 10.6,
|
|
683
684
|
"files": [
|
|
684
685
|
"communication/uploadFile.js"
|
|
685
686
|
],
|
|
@@ -697,38 +698,75 @@
|
|
|
697
698
|
}
|
|
698
699
|
}
|
|
699
700
|
},
|
|
701
|
+
"modulePaths": {
|
|
702
|
+
"save-core": "./core/savePageCore.js",
|
|
703
|
+
"save-system": "./core/savePage.js",
|
|
704
|
+
"autosave": "./core/autosave.js",
|
|
705
|
+
"admin": "./core/adminSystem.js",
|
|
706
|
+
"persist": "./core/enablePersistentFormInputValues.js",
|
|
707
|
+
"option-visibility": "./core/optionVisibilityRuleGenerator.js",
|
|
708
|
+
"edit-mode": "./core/editmodeSystem.js",
|
|
709
|
+
"event-attrs": "./custom-attributes/events.js",
|
|
710
|
+
"ajax-elements": "./custom-attributes/ajaxElements.js",
|
|
711
|
+
"sortable": "./custom-attributes/sortable.js",
|
|
712
|
+
"dom-helpers": "./custom-attributes/domHelpers.js",
|
|
713
|
+
"input-helpers": "./custom-attributes/inputHelpers.js",
|
|
714
|
+
"dialogs": "./ui/prompts.js",
|
|
715
|
+
"toast": "./ui/toast.js",
|
|
716
|
+
"toast-hyperclay": "./ui/toast-hyperclay.js",
|
|
717
|
+
"modal": "./ui/theModal.js",
|
|
718
|
+
"tailwind-play": "./vendor/tailwind-play.js",
|
|
719
|
+
"mutation": "./utilities/mutation.js",
|
|
720
|
+
"nearest": "./utilities/nearest.js",
|
|
721
|
+
"cookie": "./utilities/cookie.js",
|
|
722
|
+
"throttle": "./utilities/throttle.js",
|
|
723
|
+
"debounce": "./utilities/debounce.js",
|
|
724
|
+
"dom-ready": "./dom-utilities/onDomReady.js",
|
|
725
|
+
"window-load": "./dom-utilities/onLoad.js",
|
|
726
|
+
"all-js": "./dom-utilities/All.js",
|
|
727
|
+
"style-injection": "./dom-utilities/insertStyleTag.js",
|
|
728
|
+
"form-data": "./dom-utilities/getDataFromForm.js",
|
|
729
|
+
"idiomorph": "./vendor/idiomorph.min.js",
|
|
730
|
+
"slugify": "./string-utilities/slugify.js",
|
|
731
|
+
"emmet": "./string-utilities/emmet-html.js",
|
|
732
|
+
"clipboard": "./string-utilities/copy-to-clipboard.js",
|
|
733
|
+
"query-params": "./string-utilities/query.js",
|
|
734
|
+
"behavior-collector": "./communication/behaviorCollector.js",
|
|
735
|
+
"send-message": "./communication/sendMessage.js",
|
|
736
|
+
"file-upload": "./communication/uploadFile.js"
|
|
737
|
+
},
|
|
700
738
|
"categories": {
|
|
701
739
|
"core": {
|
|
702
740
|
"name": "Core Features",
|
|
703
741
|
"description": "Essential functionality",
|
|
704
742
|
"modules": [
|
|
705
743
|
"save-core",
|
|
706
|
-
"save",
|
|
744
|
+
"save-system",
|
|
745
|
+
"autosave",
|
|
707
746
|
"admin",
|
|
708
747
|
"persist",
|
|
709
|
-
"
|
|
710
|
-
"
|
|
748
|
+
"option-visibility",
|
|
749
|
+
"edit-mode"
|
|
711
750
|
]
|
|
712
751
|
},
|
|
713
752
|
"custom-attributes": {
|
|
714
753
|
"name": "Custom Attributes",
|
|
715
754
|
"description": "HTML enhancements",
|
|
716
755
|
"modules": [
|
|
717
|
-
"
|
|
718
|
-
"ajax",
|
|
756
|
+
"event-attrs",
|
|
757
|
+
"ajax-elements",
|
|
719
758
|
"sortable",
|
|
720
|
-
"helpers",
|
|
721
|
-
"
|
|
759
|
+
"dom-helpers",
|
|
760
|
+
"input-helpers"
|
|
722
761
|
]
|
|
723
762
|
},
|
|
724
763
|
"ui": {
|
|
725
764
|
"name": "UI Components",
|
|
726
765
|
"description": "User interface elements",
|
|
727
766
|
"modules": [
|
|
728
|
-
"
|
|
767
|
+
"dialogs",
|
|
729
768
|
"toast",
|
|
730
|
-
"
|
|
731
|
-
"info",
|
|
769
|
+
"modal",
|
|
732
770
|
"tailwind-play"
|
|
733
771
|
]
|
|
734
772
|
},
|
|
@@ -748,9 +786,9 @@
|
|
|
748
786
|
"description": "DOM manipulation helpers",
|
|
749
787
|
"modules": [
|
|
750
788
|
"dom-ready",
|
|
751
|
-
"
|
|
789
|
+
"all-js",
|
|
752
790
|
"style-injection",
|
|
753
|
-
"
|
|
791
|
+
"form-data"
|
|
754
792
|
]
|
|
755
793
|
},
|
|
756
794
|
"string-utilities": {
|
|
@@ -758,9 +796,9 @@
|
|
|
758
796
|
"description": "String manipulation helpers",
|
|
759
797
|
"modules": [
|
|
760
798
|
"slugify",
|
|
761
|
-
"emmet
|
|
762
|
-
"
|
|
763
|
-
"query-
|
|
799
|
+
"emmet",
|
|
800
|
+
"clipboard",
|
|
801
|
+
"query-params"
|
|
764
802
|
]
|
|
765
803
|
},
|
|
766
804
|
"communication": {
|
|
@@ -785,7 +823,7 @@
|
|
|
785
823
|
"description": "Essential features for basic editing",
|
|
786
824
|
"modules": [
|
|
787
825
|
"save-core",
|
|
788
|
-
"save",
|
|
826
|
+
"save-system",
|
|
789
827
|
"admin",
|
|
790
828
|
"toast"
|
|
791
829
|
]
|
|
@@ -795,12 +833,12 @@
|
|
|
795
833
|
"description": "Standard feature set for most use cases",
|
|
796
834
|
"modules": [
|
|
797
835
|
"save-core",
|
|
798
|
-
"save",
|
|
836
|
+
"save-system",
|
|
799
837
|
"admin",
|
|
800
838
|
"persist",
|
|
801
|
-
"
|
|
802
|
-
"
|
|
803
|
-
"helpers",
|
|
839
|
+
"option-visibility",
|
|
840
|
+
"event-attrs",
|
|
841
|
+
"dom-helpers",
|
|
804
842
|
"toast"
|
|
805
843
|
]
|
|
806
844
|
},
|
|
@@ -809,21 +847,21 @@
|
|
|
809
847
|
"description": "All available features",
|
|
810
848
|
"modules": [
|
|
811
849
|
"save-core",
|
|
812
|
-
"save",
|
|
850
|
+
"save-system",
|
|
851
|
+
"autosave",
|
|
813
852
|
"admin",
|
|
814
853
|
"persist",
|
|
815
|
-
"
|
|
816
|
-
"
|
|
817
|
-
"
|
|
818
|
-
"ajax",
|
|
854
|
+
"option-visibility",
|
|
855
|
+
"edit-mode",
|
|
856
|
+
"event-attrs",
|
|
857
|
+
"ajax-elements",
|
|
819
858
|
"sortable",
|
|
820
|
-
"helpers",
|
|
821
|
-
"
|
|
822
|
-
"
|
|
859
|
+
"dom-helpers",
|
|
860
|
+
"input-helpers",
|
|
861
|
+
"dialogs",
|
|
823
862
|
"toast",
|
|
824
863
|
"toast-hyperclay",
|
|
825
|
-
"
|
|
826
|
-
"info",
|
|
864
|
+
"modal",
|
|
827
865
|
"tailwind-play",
|
|
828
866
|
"mutation",
|
|
829
867
|
"nearest",
|
|
@@ -832,14 +870,14 @@
|
|
|
832
870
|
"debounce",
|
|
833
871
|
"dom-ready",
|
|
834
872
|
"window-load",
|
|
835
|
-
"
|
|
873
|
+
"all-js",
|
|
836
874
|
"style-injection",
|
|
837
|
-
"
|
|
875
|
+
"form-data",
|
|
838
876
|
"idiomorph",
|
|
839
877
|
"slugify",
|
|
840
|
-
"emmet
|
|
841
|
-
"
|
|
842
|
-
"query-
|
|
878
|
+
"emmet",
|
|
879
|
+
"clipboard",
|
|
880
|
+
"query-params",
|
|
843
881
|
"behavior-collector",
|
|
844
882
|
"send-message",
|
|
845
883
|
"file-upload"
|