@symbo.ls/create 2.11.212 → 2.11.214
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/bundle/index.js +1282 -2329
- package/package.json +2 -2
- package/src/index.js +12 -0
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -106,6 +106,18 @@ export const createSync = (App, options = DEFAULT_CREATE_OPTIONS, optionsExterna
|
|
|
106
106
|
else if (options.document) parent = options.document
|
|
107
107
|
else parent = document.body
|
|
108
108
|
|
|
109
|
+
// if (options.domqlOptions && options.domqlOptions.onlyResolveExtends) {
|
|
110
|
+
// return DOM.create({
|
|
111
|
+
// context: {
|
|
112
|
+
// document
|
|
113
|
+
// }
|
|
114
|
+
// }, parent, key, {
|
|
115
|
+
// extend: [uikit.Box],
|
|
116
|
+
// verbose: options.verbose,
|
|
117
|
+
// ...options.domqlOptions
|
|
118
|
+
// })
|
|
119
|
+
// }
|
|
120
|
+
|
|
109
121
|
const [scratcDesignhSystem, emotion, registry] = initEmotion(key, options)
|
|
110
122
|
|
|
111
123
|
let state
|