minimal-piral 0.15.9-beta.5387 → 0.15.9-beta.5403
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.78beef.js → index.2f227a.js} +39 -5
- package/app/index.2f227a.js.map +1 -0
- package/app/index.html +1 -1
- package/app/index.js +1 -1
- package/files.tar +0 -0
- package/files_once.tar +0 -0
- package/package.json +5 -5
- package/app/index.78beef.js.map +0 -1
|
@@ -4937,8 +4937,11 @@ if (typeof window !== 'undefined' && 'customElements' in window) {
|
|
|
4937
4937
|
_this.update = _utils__WEBPACK_IMPORTED_MODULE_0__.noop;
|
|
4938
4938
|
_this.props = {
|
|
4939
4939
|
name: _this.getAttribute('name'),
|
|
4940
|
+
emptySkipsRender: typeof _this.getAttribute('empty-skips-render') === 'string',
|
|
4940
4941
|
params: (0,_utils__WEBPACK_IMPORTED_MODULE_0__.tryParseJson)(_this.getAttribute('params')),
|
|
4941
4942
|
empty: undefined,
|
|
4943
|
+
order: undefined,
|
|
4944
|
+
render: undefined,
|
|
4942
4945
|
children: (0,_utils__WEBPACK_IMPORTED_MODULE_1__.reactifyContent)(_this.childNodes)
|
|
4943
4946
|
};
|
|
4944
4947
|
return _this;
|
|
@@ -4962,6 +4965,24 @@ if (typeof window !== 'undefined' && 'customElements' in window) {
|
|
|
4962
4965
|
this.props.name = value;
|
|
4963
4966
|
this.update(this.props);
|
|
4964
4967
|
}
|
|
4968
|
+
}, {
|
|
4969
|
+
key: "order",
|
|
4970
|
+
get: function get() {
|
|
4971
|
+
return this.props.order;
|
|
4972
|
+
},
|
|
4973
|
+
set: function set(value) {
|
|
4974
|
+
this.props.order = value;
|
|
4975
|
+
this.update(this.props);
|
|
4976
|
+
}
|
|
4977
|
+
}, {
|
|
4978
|
+
key: "render",
|
|
4979
|
+
get: function get() {
|
|
4980
|
+
return this.props.render;
|
|
4981
|
+
},
|
|
4982
|
+
set: function set(value) {
|
|
4983
|
+
this.props.render = value;
|
|
4984
|
+
this.update(this.props);
|
|
4985
|
+
}
|
|
4965
4986
|
}, {
|
|
4966
4987
|
key: "empty",
|
|
4967
4988
|
get: function get() {
|
|
@@ -4971,6 +4992,15 @@ if (typeof window !== 'undefined' && 'customElements' in window) {
|
|
|
4971
4992
|
this.props.empty = value;
|
|
4972
4993
|
this.update(this.props);
|
|
4973
4994
|
}
|
|
4995
|
+
}, {
|
|
4996
|
+
key: "emptySkipsRender",
|
|
4997
|
+
get: function get() {
|
|
4998
|
+
return this.props.emptySkipsRender;
|
|
4999
|
+
},
|
|
5000
|
+
set: function set(value) {
|
|
5001
|
+
this.props.emptySkipsRender = value;
|
|
5002
|
+
this.update(this.props);
|
|
5003
|
+
}
|
|
4974
5004
|
}, {
|
|
4975
5005
|
key: "connectedCallback",
|
|
4976
5006
|
value: function connectedCallback() {
|
|
@@ -5004,12 +5034,16 @@ if (typeof window !== 'undefined' && 'customElements' in window) {
|
|
|
5004
5034
|
case 'params':
|
|
5005
5035
|
this.params = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.tryParseJson)(newValue);
|
|
5006
5036
|
break;
|
|
5037
|
+
|
|
5038
|
+
case 'empty-skips-render':
|
|
5039
|
+
this.params = typeof newValue === 'string';
|
|
5040
|
+
break;
|
|
5007
5041
|
}
|
|
5008
5042
|
}
|
|
5009
5043
|
}], [{
|
|
5010
5044
|
key: "observedAttributes",
|
|
5011
5045
|
get: function get() {
|
|
5012
|
-
return ['name', 'params'];
|
|
5046
|
+
return ['name', 'params', 'empty-skips-render'];
|
|
5013
5047
|
}
|
|
5014
5048
|
}]);
|
|
5015
5049
|
|
|
@@ -6642,12 +6676,12 @@ function installPiralDebug(options) {
|
|
|
6642
6676
|
debug: debugApiVersion,
|
|
6643
6677
|
instance: {
|
|
6644
6678
|
name: "minimal-piral",
|
|
6645
|
-
version: "0.15.9-beta.
|
|
6679
|
+
version: "0.15.9-beta.5403",
|
|
6646
6680
|
dependencies: "tslib,react,react-dom,react-router,react-router-dom"
|
|
6647
6681
|
},
|
|
6648
6682
|
build: {
|
|
6649
|
-
date: "2023-
|
|
6650
|
-
cli: "0.15.9-beta.
|
|
6683
|
+
date: "2023-04-04T17:10:52.847Z",
|
|
6684
|
+
cli: "0.15.9-beta.5403",
|
|
6651
6685
|
compat: "0.15"
|
|
6652
6686
|
}
|
|
6653
6687
|
};
|
|
@@ -45607,4 +45641,4 @@ var instance = (0,piral_core__WEBPACK_IMPORTED_MODULE_2__.createInstance)({
|
|
|
45607
45641
|
|
|
45608
45642
|
/******/ })()
|
|
45609
45643
|
;
|
|
45610
|
-
//# sourceMappingURL=index.
|
|
45644
|
+
//# sourceMappingURL=index.2f227a.js.map
|