octane 0.1.43 → 0.1.45
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/dist/cjs/index.cjs +7 -0
- package/dist/cjs/runtime.cjs +2598 -631
- package/dist/cjs/runtime.server.cjs +30 -0
- package/dist/cjs/sanitize-url.cjs +2 -0
- package/dist/cjs/server/index.cjs +5 -0
- package/dist/cjs/sub-slot.cjs +60 -0
- package/dist/cjs/version.cjs +1 -1
- package/dist/compiler/compile-universal.js +109 -128
- package/dist/compiler/compile.js +335 -258
- package/dist/compiler/volar.LICENSES.txt +162 -0
- package/dist/compiler/volar.d.ts +19 -0
- package/dist/compiler/volar.js +30892 -496
- package/dist/index.d.ts +2 -1
- package/dist/index.js +8 -0
- package/dist/jsx-runtime.d.ts +3 -2
- package/dist/runtime.d.ts +363 -6
- package/dist/runtime.js +2587 -631
- package/dist/runtime.server.js +30 -0
- package/dist/sanitize-url.js +2 -0
- package/dist/server/index.d.ts +1 -0
- package/dist/server/index.js +6 -0
- package/dist/sub-slot.d.ts +32 -0
- package/dist/sub-slot.js +35 -0
- package/dist/tsrx-spread.d.ts +9 -4
- package/dist/universal-dom-boundary.js +44 -13
- package/dist/universal-native.d.ts +1 -0
- package/dist/universal-native.js +7 -1
- package/dist/universal.d.ts +1 -0
- package/dist/universal.js +7 -1
- package/dist/version.js +1 -1
- package/package.json +2 -2
package/dist/cjs/index.cjs
CHANGED
|
@@ -83,6 +83,7 @@ __export(index_exports, {
|
|
|
83
83
|
createRoot: () => import_runtime.createRoot,
|
|
84
84
|
createScopedElement: () => import_runtime.createScopedElement,
|
|
85
85
|
createScopedValue: () => import_runtime.createScopedValue,
|
|
86
|
+
createSubSlot: () => import_sub_slot.createSubSlot,
|
|
86
87
|
delegateCaptureEvents: () => import_runtime.delegateCaptureEvents,
|
|
87
88
|
delegateEvents: () => import_runtime.delegateEvents,
|
|
88
89
|
descriptorChildren: () => import_runtime.descriptorChildren,
|
|
@@ -170,6 +171,7 @@ __export(index_exports, {
|
|
|
170
171
|
setDefaultChecked: () => import_runtime.setDefaultChecked,
|
|
171
172
|
setDefaultValue: () => import_runtime.setDefaultValue,
|
|
172
173
|
setDefaultValueUncontrolled: () => import_runtime.setDefaultValueUncontrolled,
|
|
174
|
+
setEventHandler: () => import_runtime.setEventHandler,
|
|
173
175
|
setFormAction: () => import_runtime.setFormAction,
|
|
174
176
|
setFormControlSources: () => import_runtime.setFormControlSources,
|
|
175
177
|
setHTML: () => import_runtime.setHTML,
|
|
@@ -189,6 +191,7 @@ __export(index_exports, {
|
|
|
189
191
|
startTransition: () => import_runtime.startTransition,
|
|
190
192
|
styleResource: () => import_runtime.styleResource,
|
|
191
193
|
stylesheetResource: () => import_runtime.stylesheetResource,
|
|
194
|
+
subSlot: () => import_sub_slot.subSlot,
|
|
192
195
|
switchBlock: () => import_runtime.switchBlock,
|
|
193
196
|
template: () => import_runtime.template,
|
|
194
197
|
textHole: () => import_runtime.textHole,
|
|
@@ -228,6 +231,7 @@ module.exports = __toCommonJS(index_exports);
|
|
|
228
231
|
var import_version = require("./version.cjs");
|
|
229
232
|
var import_event_capture = require("./hydration/event-capture.cjs");
|
|
230
233
|
var import_behavior_root = require("./behavior-root.cjs");
|
|
234
|
+
var import_sub_slot = require("./sub-slot.cjs");
|
|
231
235
|
var import_runtime = require("./runtime.cjs");
|
|
232
236
|
var import_server_rpc_client = require("./server-rpc-client.cjs");
|
|
233
237
|
var import_method_dep = require("./method-dep.cjs");
|
|
@@ -298,6 +302,7 @@ var import_method_dep = require("./method-dep.cjs");
|
|
|
298
302
|
createRoot,
|
|
299
303
|
createScopedElement,
|
|
300
304
|
createScopedValue,
|
|
305
|
+
createSubSlot,
|
|
301
306
|
delegateCaptureEvents,
|
|
302
307
|
delegateEvents,
|
|
303
308
|
descriptorChildren,
|
|
@@ -385,6 +390,7 @@ var import_method_dep = require("./method-dep.cjs");
|
|
|
385
390
|
setDefaultChecked,
|
|
386
391
|
setDefaultValue,
|
|
387
392
|
setDefaultValueUncontrolled,
|
|
393
|
+
setEventHandler,
|
|
388
394
|
setFormAction,
|
|
389
395
|
setFormControlSources,
|
|
390
396
|
setHTML,
|
|
@@ -404,6 +410,7 @@ var import_method_dep = require("./method-dep.cjs");
|
|
|
404
410
|
startTransition,
|
|
405
411
|
styleResource,
|
|
406
412
|
stylesheetResource,
|
|
413
|
+
subSlot,
|
|
407
414
|
switchBlock,
|
|
408
415
|
template,
|
|
409
416
|
textHole,
|