sample-cross-fx 0.14.24-beta.4157 → 0.14.24-beta.4161
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/app/index.d.ts
CHANGED
|
@@ -910,7 +910,7 @@ declare module "sample-cross-fx" {
|
|
|
910
910
|
* If false, `render` will be called with the result of calling `empty`.
|
|
911
911
|
* The result of calling `render` will then be returned from the slot.
|
|
912
912
|
*/
|
|
913
|
-
|
|
913
|
+
emptySkipsRender?: boolean;
|
|
914
914
|
/**
|
|
915
915
|
* Defines the order of the components to render.
|
|
916
916
|
* May be more convient than using `render` w.r.t. ordering extensions
|
|
@@ -129067,7 +129067,7 @@ function ExtensionSlot(props) {
|
|
|
129067
129067
|
empty,
|
|
129068
129068
|
params,
|
|
129069
129069
|
children,
|
|
129070
|
-
|
|
129070
|
+
emptySkipsRender = false,
|
|
129071
129071
|
order = defaultOrder
|
|
129072
129072
|
} = props;
|
|
129073
129073
|
const extensions = (0,_hooks__WEBPACK_IMPORTED_MODULE_2__.useGlobalState)(s => s.registry.extensions[name] || _utils__WEBPACK_IMPORTED_MODULE_3__.none);
|
|
@@ -129082,7 +129082,7 @@ function ExtensionSlot(props) {
|
|
|
129082
129082
|
params: Object.assign(Object.assign({}, defaults), params || {})
|
|
129083
129083
|
}));
|
|
129084
129084
|
|
|
129085
|
-
if (isEmpty &&
|
|
129085
|
+
if (isEmpty && emptySkipsRender) {
|
|
129086
129086
|
return content[0];
|
|
129087
129087
|
}
|
|
129088
129088
|
|
|
@@ -129771,7 +129771,7 @@ function createInstance(config = {}) {
|
|
|
129771
129771
|
const createApi = apiFactory(context, usedPlugins);
|
|
129772
129772
|
const root = createApi({
|
|
129773
129773
|
name: 'root',
|
|
129774
|
-
version: "0.14.24-beta.
|
|
129774
|
+
version: "0.14.24-beta.4161" || 0,
|
|
129775
129775
|
spec: ''
|
|
129776
129776
|
});
|
|
129777
129777
|
const options = (0,_helpers__WEBPACK_IMPORTED_MODULE_6__.createPiletOptions)({
|
|
@@ -131771,11 +131771,11 @@ function installPiralDebug(options) {
|
|
|
131771
131771
|
debug: debugApiVersion,
|
|
131772
131772
|
instance: {
|
|
131773
131773
|
name: "sample-cross-fx",
|
|
131774
|
-
version: "0.14.24-beta.
|
|
131774
|
+
version: "0.14.24-beta.4161",
|
|
131775
131775
|
dependencies: "@angular/common,@angular/compiler,@angular/core,@angular/platform-browser,@angular/platform-browser-dynamic,@webcomponents/webcomponentsjs,angular,aurelia-framework,aurelia-templating-binding,aurelia-templating-resources,aurelia-pal-browser,aurelia-event-aggregator,aurelia-history-browser,hyperapp,inferno,inferno-create-element,mithril,lit-element,solid-js,solid-js/dom,piral-ng/common,preact,riot,rxjs,vue,zone.js,react,react-dom,react-router,react-router-dom,history,tslib,path-to-regexp,@libre/atom,@dbeining/react-atom"
|
|
131776
131776
|
},
|
|
131777
131777
|
build: {
|
|
131778
|
-
date: "2022-05-
|
|
131778
|
+
date: "2022-05-06T14:34:53.098Z",
|
|
131779
131779
|
cli: "0.14.23",
|
|
131780
131780
|
compat: "0.14"
|
|
131781
131781
|
},
|
|
@@ -254037,4 +254037,4 @@ const app = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_7__.createElement(piral_
|
|
|
254037
254037
|
|
|
254038
254038
|
/******/ })()
|
|
254039
254039
|
;
|
|
254040
|
-
//# sourceMappingURL=index.
|
|
254040
|
+
//# sourceMappingURL=index.ea3783.js.map
|