sample-piral 1.5.3-beta.6968 → 1.5.3-beta.6977
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.84c371.js → index.7c3821.js} +11 -9
- package/app/index.7c3821.js.map +1 -0
- package/app/index.html +1 -1
- package/files.tar +0 -0
- package/files_once.tar +0 -0
- package/package.json +8 -8
- package/app/index.84c371.js.map +0 -1
|
@@ -6604,12 +6604,12 @@ function installPiralDebug(options) {
|
|
|
6604
6604
|
debug: debugApiVersion,
|
|
6605
6605
|
instance: {
|
|
6606
6606
|
name: "sample-piral",
|
|
6607
|
-
version: "1.5.3-beta.
|
|
6607
|
+
version: "1.5.3-beta.6977",
|
|
6608
6608
|
dependencies: "reactstrap,tslib,react,react-dom,react-router,react-router-dom"
|
|
6609
6609
|
},
|
|
6610
6610
|
build: {
|
|
6611
|
-
date: "2024-04-
|
|
6612
|
-
cli: "1.5.3-beta.
|
|
6611
|
+
date: "2024-04-10T12:19:21.125Z",
|
|
6612
|
+
cli: "1.5.3-beta.6977",
|
|
6613
6613
|
compat: "1"
|
|
6614
6614
|
}
|
|
6615
6615
|
};
|
|
@@ -7060,13 +7060,15 @@ var persistentSetter = function persistentSetter(name, value) {
|
|
|
7060
7060
|
};
|
|
7061
7061
|
function getValue(key, defaultValue, fallbackValue) {
|
|
7062
7062
|
var value = sessionStorage.getItem(key);
|
|
7063
|
+
var actualValue = value === 'on';
|
|
7063
7064
|
if (['on', 'off'].includes(value)) {
|
|
7064
|
-
return
|
|
7065
|
-
}
|
|
7066
|
-
|
|
7067
|
-
|
|
7068
|
-
|
|
7065
|
+
return actualValue;
|
|
7066
|
+
}
|
|
7067
|
+
var currentValue = typeof defaultValue === 'boolean' ? defaultValue : fallbackValue;
|
|
7068
|
+
if (actualValue !== currentValue) {
|
|
7069
|
+
sessionStorage.setItem(key, currentValue ? 'on' : 'off');
|
|
7069
7070
|
}
|
|
7071
|
+
return currentValue;
|
|
7070
7072
|
}
|
|
7071
7073
|
if (persistSettings) {
|
|
7072
7074
|
try {
|
|
@@ -66667,4 +66669,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1__.createElement(piral
|
|
|
66667
66669
|
|
|
66668
66670
|
/******/ })()
|
|
66669
66671
|
;
|
|
66670
|
-
//# sourceMappingURL=index.
|
|
66672
|
+
//# sourceMappingURL=index.7c3821.js.map
|