hyperclayjs 1.19.0 → 1.19.2

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/hyperclay.js +42 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hyperclayjs",
3
- "version": "1.19.0",
3
+ "version": "1.19.2",
4
4
  "description": "Modular JavaScript library for building interactive HTML applications with Hyperclay",
5
5
  "type": "module",
6
6
  "main": "src/hyperclay.js",
package/src/hyperclay.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * HyperclayJS v1.19.0 - Minimal Browser-Native Loader
2
+ * HyperclayJS v1.19.2 - Minimal Browser-Native Loader
3
3
  *
4
4
  * Modules auto-init when imported (no separate init call needed).
5
5
  * Include `export-to-window` feature to export to window.hyperclay.
@@ -101,6 +101,47 @@ const PRESETS = {
101
101
  "view-mode-excludes-edit-modules"
102
102
  ]
103
103
  },
104
+ "smooth-sailing": {
105
+ "name": "Smooth Sailing",
106
+ "description": "Every module with no gotchas",
107
+ "modules": [
108
+ "save-core",
109
+ "save-system",
110
+ "unsaved-warning",
111
+ "save-toast",
112
+ "edit-mode-helpers",
113
+ "persist",
114
+ "snapshot",
115
+ "option-visibility",
116
+ "edit-mode",
117
+ "event-attrs",
118
+ "ajax-elements",
119
+ "sortable",
120
+ "dom-helpers",
121
+ "input-helpers",
122
+ "onaftersave",
123
+ "dialogs",
124
+ "toast",
125
+ "the-modal",
126
+ "mutation",
127
+ "nearest",
128
+ "cookie",
129
+ "throttle",
130
+ "debounce",
131
+ "dom-ready",
132
+ "window-load",
133
+ "all-js",
134
+ "style-injection",
135
+ "form-data",
136
+ "slugify",
137
+ "copy-to-clipboard",
138
+ "query-params",
139
+ "behavior-collector",
140
+ "send-message",
141
+ "file-upload",
142
+ "export-to-window"
143
+ ]
144
+ },
104
145
  "everything": {
105
146
  "name": "Everything",
106
147
  "description": "All available features",