sample-cross-fx 1.1.0-beta.5779 → 1.1.0-beta.5790
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.9b84aa.js → index.a9c65b.js} +230 -211
- package/app/{index.9b84aa.js.map → index.a9c65b.js.map} +1 -1
- 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 +20 -20
|
@@ -60745,12 +60745,12 @@ function installPiralDebug(options) {
|
|
|
60745
60745
|
debug: debugApiVersion,
|
|
60746
60746
|
instance: {
|
|
60747
60747
|
name: "sample-cross-fx",
|
|
60748
|
-
version: "1.1.0-beta.
|
|
60748
|
+
version: "1.1.0-beta.5790",
|
|
60749
60749
|
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/web,piral-ng/common,preact,riot,rxjs,vue,zone.js,tslib,react,react-dom,react-router,react-router-dom"
|
|
60750
60750
|
},
|
|
60751
60751
|
build: {
|
|
60752
|
-
date: "2023-07-
|
|
60753
|
-
cli: "1.1.0-beta.
|
|
60752
|
+
date: "2023-07-19T23:32:09.015Z",
|
|
60753
|
+
cli: "1.1.0-beta.5790",
|
|
60754
60754
|
compat: "1"
|
|
60755
60755
|
}
|
|
60756
60756
|
};
|
|
@@ -65856,10 +65856,10 @@ module.exports = parent;
|
|
|
65856
65856
|
|
|
65857
65857
|
/***/ }),
|
|
65858
65858
|
|
|
65859
|
-
/***/ "../../../node_modules/css-loader/dist/cjs.js
|
|
65860
|
-
|
|
65861
|
-
!*** ../../../node_modules/css-loader/dist/cjs.js
|
|
65862
|
-
|
|
65859
|
+
/***/ "../../../node_modules/css-loader/dist/cjs.js!../../tooling/piral-cli-webpack5/node_modules/sass-loader/dist/cjs.js!./src/style.scss":
|
|
65860
|
+
/*!*******************************************************************************************************************************************!*\
|
|
65861
|
+
!*** ../../../node_modules/css-loader/dist/cjs.js!../../tooling/piral-cli-webpack5/node_modules/sass-loader/dist/cjs.js!./src/style.scss ***!
|
|
65862
|
+
\*******************************************************************************************************************************************/
|
|
65863
65863
|
/***/ ((module, __webpack_exports__, __webpack_require__) => {
|
|
65864
65864
|
|
|
65865
65865
|
"use strict";
|
|
@@ -120981,278 +120981,272 @@ if (false) {} else {
|
|
|
120981
120981
|
/*!***********************************************************************************!*\
|
|
120982
120982
|
!*** ../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js ***!
|
|
120983
120983
|
\***********************************************************************************/
|
|
120984
|
-
/***/ ((module
|
|
120984
|
+
/***/ ((module) => {
|
|
120985
120985
|
|
|
120986
120986
|
"use strict";
|
|
120987
120987
|
|
|
120988
120988
|
|
|
120989
|
-
var
|
|
120990
|
-
var memo;
|
|
120991
|
-
return function memorize() {
|
|
120992
|
-
if (typeof memo === 'undefined') {
|
|
120993
|
-
// Test for IE <= 9 as proposed by Browserhacks
|
|
120994
|
-
// @see http://browserhacks.com/#hack-e71d8692f65334173fee715c222cb805
|
|
120995
|
-
// Tests for existence of standard globals is to allow style-loader
|
|
120996
|
-
// to operate correctly into non-standard environments
|
|
120997
|
-
// @see https://github.com/webpack-contrib/style-loader/issues/177
|
|
120998
|
-
memo = Boolean(window && document && document.all && !window.atob);
|
|
120999
|
-
}
|
|
121000
|
-
|
|
121001
|
-
return memo;
|
|
121002
|
-
};
|
|
121003
|
-
}();
|
|
121004
|
-
|
|
121005
|
-
var getTarget = function getTarget() {
|
|
121006
|
-
var memo = {};
|
|
121007
|
-
return function memorize(target) {
|
|
121008
|
-
if (typeof memo[target] === 'undefined') {
|
|
121009
|
-
var styleTarget = document.querySelector(target); // Special case to return head of iframe instead of iframe itself
|
|
121010
|
-
|
|
121011
|
-
if (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {
|
|
121012
|
-
try {
|
|
121013
|
-
// This will throw an exception if access to iframe is blocked
|
|
121014
|
-
// due to cross-origin restrictions
|
|
121015
|
-
styleTarget = styleTarget.contentDocument.head;
|
|
121016
|
-
} catch (e) {
|
|
121017
|
-
// istanbul ignore next
|
|
121018
|
-
styleTarget = null;
|
|
121019
|
-
}
|
|
121020
|
-
}
|
|
121021
|
-
|
|
121022
|
-
memo[target] = styleTarget;
|
|
121023
|
-
}
|
|
121024
|
-
|
|
121025
|
-
return memo[target];
|
|
121026
|
-
};
|
|
121027
|
-
}();
|
|
121028
|
-
|
|
121029
|
-
var stylesInDom = [];
|
|
121030
|
-
|
|
120989
|
+
var stylesInDOM = [];
|
|
121031
120990
|
function getIndexByIdentifier(identifier) {
|
|
121032
120991
|
var result = -1;
|
|
121033
|
-
|
|
121034
|
-
|
|
121035
|
-
if (stylesInDom[i].identifier === identifier) {
|
|
120992
|
+
for (var i = 0; i < stylesInDOM.length; i++) {
|
|
120993
|
+
if (stylesInDOM[i].identifier === identifier) {
|
|
121036
120994
|
result = i;
|
|
121037
120995
|
break;
|
|
121038
120996
|
}
|
|
121039
120997
|
}
|
|
121040
|
-
|
|
121041
120998
|
return result;
|
|
121042
120999
|
}
|
|
121043
|
-
|
|
121044
121000
|
function modulesToDom(list, options) {
|
|
121045
121001
|
var idCountMap = {};
|
|
121046
121002
|
var identifiers = [];
|
|
121047
|
-
|
|
121048
121003
|
for (var i = 0; i < list.length; i++) {
|
|
121049
121004
|
var item = list[i];
|
|
121050
121005
|
var id = options.base ? item[0] + options.base : item[0];
|
|
121051
121006
|
var count = idCountMap[id] || 0;
|
|
121052
121007
|
var identifier = "".concat(id, " ").concat(count);
|
|
121053
121008
|
idCountMap[id] = count + 1;
|
|
121054
|
-
var
|
|
121009
|
+
var indexByIdentifier = getIndexByIdentifier(identifier);
|
|
121055
121010
|
var obj = {
|
|
121056
121011
|
css: item[1],
|
|
121057
121012
|
media: item[2],
|
|
121058
|
-
sourceMap: item[3]
|
|
121013
|
+
sourceMap: item[3],
|
|
121014
|
+
supports: item[4],
|
|
121015
|
+
layer: item[5]
|
|
121059
121016
|
};
|
|
121060
|
-
|
|
121061
|
-
|
|
121062
|
-
|
|
121063
|
-
stylesInDom[index].updater(obj);
|
|
121017
|
+
if (indexByIdentifier !== -1) {
|
|
121018
|
+
stylesInDOM[indexByIdentifier].references++;
|
|
121019
|
+
stylesInDOM[indexByIdentifier].updater(obj);
|
|
121064
121020
|
} else {
|
|
121065
|
-
|
|
121021
|
+
var updater = addElementStyle(obj, options);
|
|
121022
|
+
options.byIndex = i;
|
|
121023
|
+
stylesInDOM.splice(i, 0, {
|
|
121066
121024
|
identifier: identifier,
|
|
121067
|
-
updater:
|
|
121025
|
+
updater: updater,
|
|
121068
121026
|
references: 1
|
|
121069
121027
|
});
|
|
121070
121028
|
}
|
|
121071
|
-
|
|
121072
121029
|
identifiers.push(identifier);
|
|
121073
121030
|
}
|
|
121074
|
-
|
|
121075
121031
|
return identifiers;
|
|
121076
121032
|
}
|
|
121033
|
+
function addElementStyle(obj, options) {
|
|
121034
|
+
var api = options.domAPI(options);
|
|
121035
|
+
api.update(obj);
|
|
121036
|
+
var updater = function updater(newObj) {
|
|
121037
|
+
if (newObj) {
|
|
121038
|
+
if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap && newObj.supports === obj.supports && newObj.layer === obj.layer) {
|
|
121039
|
+
return;
|
|
121040
|
+
}
|
|
121041
|
+
api.update(obj = newObj);
|
|
121042
|
+
} else {
|
|
121043
|
+
api.remove();
|
|
121044
|
+
}
|
|
121045
|
+
};
|
|
121046
|
+
return updater;
|
|
121047
|
+
}
|
|
121048
|
+
module.exports = function (list, options) {
|
|
121049
|
+
options = options || {};
|
|
121050
|
+
list = list || [];
|
|
121051
|
+
var lastIdentifiers = modulesToDom(list, options);
|
|
121052
|
+
return function update(newList) {
|
|
121053
|
+
newList = newList || [];
|
|
121054
|
+
for (var i = 0; i < lastIdentifiers.length; i++) {
|
|
121055
|
+
var identifier = lastIdentifiers[i];
|
|
121056
|
+
var index = getIndexByIdentifier(identifier);
|
|
121057
|
+
stylesInDOM[index].references--;
|
|
121058
|
+
}
|
|
121059
|
+
var newLastIdentifiers = modulesToDom(newList, options);
|
|
121060
|
+
for (var _i = 0; _i < lastIdentifiers.length; _i++) {
|
|
121061
|
+
var _identifier = lastIdentifiers[_i];
|
|
121062
|
+
var _index = getIndexByIdentifier(_identifier);
|
|
121063
|
+
if (stylesInDOM[_index].references === 0) {
|
|
121064
|
+
stylesInDOM[_index].updater();
|
|
121065
|
+
stylesInDOM.splice(_index, 1);
|
|
121066
|
+
}
|
|
121067
|
+
}
|
|
121068
|
+
lastIdentifiers = newLastIdentifiers;
|
|
121069
|
+
};
|
|
121070
|
+
};
|
|
121077
121071
|
|
|
121078
|
-
|
|
121079
|
-
var style = document.createElement('style');
|
|
121080
|
-
var attributes = options.attributes || {};
|
|
121072
|
+
/***/ }),
|
|
121081
121073
|
|
|
121082
|
-
|
|
121083
|
-
|
|
121074
|
+
/***/ "../../../node_modules/style-loader/dist/runtime/insertBySelector.js":
|
|
121075
|
+
/*!***************************************************************************!*\
|
|
121076
|
+
!*** ../../../node_modules/style-loader/dist/runtime/insertBySelector.js ***!
|
|
121077
|
+
\***************************************************************************/
|
|
121078
|
+
/***/ ((module) => {
|
|
121084
121079
|
|
|
121085
|
-
|
|
121086
|
-
attributes.nonce = nonce;
|
|
121087
|
-
}
|
|
121088
|
-
}
|
|
121080
|
+
"use strict";
|
|
121089
121081
|
|
|
121090
|
-
Object.keys(attributes).forEach(function (key) {
|
|
121091
|
-
style.setAttribute(key, attributes[key]);
|
|
121092
|
-
});
|
|
121093
121082
|
|
|
121094
|
-
|
|
121095
|
-
options.insert(style);
|
|
121096
|
-
} else {
|
|
121097
|
-
var target = getTarget(options.insert || 'head');
|
|
121083
|
+
var memo = {};
|
|
121098
121084
|
|
|
121099
|
-
|
|
121100
|
-
|
|
121101
|
-
|
|
121085
|
+
/* istanbul ignore next */
|
|
121086
|
+
function getTarget(target) {
|
|
121087
|
+
if (typeof memo[target] === "undefined") {
|
|
121088
|
+
var styleTarget = document.querySelector(target);
|
|
121102
121089
|
|
|
121103
|
-
|
|
121090
|
+
// Special case to return head of iframe instead of iframe itself
|
|
121091
|
+
if (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {
|
|
121092
|
+
try {
|
|
121093
|
+
// This will throw an exception if access to iframe is blocked
|
|
121094
|
+
// due to cross-origin restrictions
|
|
121095
|
+
styleTarget = styleTarget.contentDocument.head;
|
|
121096
|
+
} catch (e) {
|
|
121097
|
+
// istanbul ignore next
|
|
121098
|
+
styleTarget = null;
|
|
121099
|
+
}
|
|
121100
|
+
}
|
|
121101
|
+
memo[target] = styleTarget;
|
|
121104
121102
|
}
|
|
121105
|
-
|
|
121106
|
-
return style;
|
|
121103
|
+
return memo[target];
|
|
121107
121104
|
}
|
|
121108
121105
|
|
|
121109
|
-
|
|
121110
|
-
|
|
121111
|
-
|
|
121112
|
-
|
|
121106
|
+
/* istanbul ignore next */
|
|
121107
|
+
function insertBySelector(insert, style) {
|
|
121108
|
+
var target = getTarget(insert);
|
|
121109
|
+
if (!target) {
|
|
121110
|
+
throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");
|
|
121113
121111
|
}
|
|
121114
|
-
|
|
121115
|
-
style.parentNode.removeChild(style);
|
|
121112
|
+
target.appendChild(style);
|
|
121116
121113
|
}
|
|
121117
|
-
|
|
121118
|
-
|
|
121119
|
-
|
|
121120
|
-
var replaceText = function replaceText() {
|
|
121121
|
-
var textStore = [];
|
|
121122
|
-
return function replace(index, replacement) {
|
|
121123
|
-
textStore[index] = replacement;
|
|
121124
|
-
return textStore.filter(Boolean).join('\n');
|
|
121125
|
-
};
|
|
121126
|
-
}();
|
|
121114
|
+
module.exports = insertBySelector;
|
|
121127
121115
|
|
|
121128
|
-
|
|
121129
|
-
var css = remove ? '' : obj.media ? "@media ".concat(obj.media, " {").concat(obj.css, "}") : obj.css; // For old IE
|
|
121116
|
+
/***/ }),
|
|
121130
121117
|
|
|
121131
|
-
|
|
121118
|
+
/***/ "../../../node_modules/style-loader/dist/runtime/insertStyleElement.js":
|
|
121119
|
+
/*!*****************************************************************************!*\
|
|
121120
|
+
!*** ../../../node_modules/style-loader/dist/runtime/insertStyleElement.js ***!
|
|
121121
|
+
\*****************************************************************************/
|
|
121122
|
+
/***/ ((module) => {
|
|
121132
121123
|
|
|
121133
|
-
|
|
121134
|
-
style.styleSheet.cssText = replaceText(index, css);
|
|
121135
|
-
} else {
|
|
121136
|
-
var cssNode = document.createTextNode(css);
|
|
121137
|
-
var childNodes = style.childNodes;
|
|
121124
|
+
"use strict";
|
|
121138
121125
|
|
|
121139
|
-
if (childNodes[index]) {
|
|
121140
|
-
style.removeChild(childNodes[index]);
|
|
121141
|
-
}
|
|
121142
121126
|
|
|
121143
|
-
|
|
121144
|
-
|
|
121145
|
-
|
|
121146
|
-
|
|
121147
|
-
|
|
121148
|
-
|
|
121127
|
+
/* istanbul ignore next */
|
|
121128
|
+
function insertStyleElement(options) {
|
|
121129
|
+
var element = document.createElement("style");
|
|
121130
|
+
options.setAttributes(element, options.attributes);
|
|
121131
|
+
options.insert(element, options.options);
|
|
121132
|
+
return element;
|
|
121149
121133
|
}
|
|
121134
|
+
module.exports = insertStyleElement;
|
|
121150
121135
|
|
|
121151
|
-
|
|
121152
|
-
var css = obj.css;
|
|
121153
|
-
var media = obj.media;
|
|
121154
|
-
var sourceMap = obj.sourceMap;
|
|
121155
|
-
|
|
121156
|
-
if (media) {
|
|
121157
|
-
style.setAttribute('media', media);
|
|
121158
|
-
} else {
|
|
121159
|
-
style.removeAttribute('media');
|
|
121160
|
-
}
|
|
121161
|
-
|
|
121162
|
-
if (sourceMap && typeof btoa !== 'undefined') {
|
|
121163
|
-
css += "\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), " */");
|
|
121164
|
-
} // For old IE
|
|
121136
|
+
/***/ }),
|
|
121165
121137
|
|
|
121166
|
-
|
|
121138
|
+
/***/ "../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js":
|
|
121139
|
+
/*!*****************************************************************************************!*\
|
|
121140
|
+
!*** ../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js ***!
|
|
121141
|
+
\*****************************************************************************************/
|
|
121142
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
121167
121143
|
|
|
121144
|
+
"use strict";
|
|
121168
121145
|
|
|
121169
|
-
if (style.styleSheet) {
|
|
121170
|
-
style.styleSheet.cssText = css;
|
|
121171
|
-
} else {
|
|
121172
|
-
while (style.firstChild) {
|
|
121173
|
-
style.removeChild(style.firstChild);
|
|
121174
|
-
}
|
|
121175
121146
|
|
|
121176
|
-
|
|
121147
|
+
/* istanbul ignore next */
|
|
121148
|
+
function setAttributesWithoutAttributes(styleElement) {
|
|
121149
|
+
var nonce = true ? __webpack_require__.nc : 0;
|
|
121150
|
+
if (nonce) {
|
|
121151
|
+
styleElement.setAttribute("nonce", nonce);
|
|
121177
121152
|
}
|
|
121178
121153
|
}
|
|
121154
|
+
module.exports = setAttributesWithoutAttributes;
|
|
121179
121155
|
|
|
121180
|
-
|
|
121181
|
-
var singletonCounter = 0;
|
|
121156
|
+
/***/ }),
|
|
121182
121157
|
|
|
121183
|
-
|
|
121184
|
-
|
|
121185
|
-
|
|
121186
|
-
|
|
121158
|
+
/***/ "../../../node_modules/style-loader/dist/runtime/styleDomAPI.js":
|
|
121159
|
+
/*!**********************************************************************!*\
|
|
121160
|
+
!*** ../../../node_modules/style-loader/dist/runtime/styleDomAPI.js ***!
|
|
121161
|
+
\**********************************************************************/
|
|
121162
|
+
/***/ ((module) => {
|
|
121187
121163
|
|
|
121188
|
-
|
|
121189
|
-
var styleIndex = singletonCounter++;
|
|
121190
|
-
style = singleton || (singleton = insertStyleElement(options));
|
|
121191
|
-
update = applyToSingletonTag.bind(null, style, styleIndex, false);
|
|
121192
|
-
remove = applyToSingletonTag.bind(null, style, styleIndex, true);
|
|
121193
|
-
} else {
|
|
121194
|
-
style = insertStyleElement(options);
|
|
121195
|
-
update = applyToTag.bind(null, style, options);
|
|
121164
|
+
"use strict";
|
|
121196
121165
|
|
|
121197
|
-
remove = function remove() {
|
|
121198
|
-
removeStyleElement(style);
|
|
121199
|
-
};
|
|
121200
|
-
}
|
|
121201
121166
|
|
|
121202
|
-
|
|
121203
|
-
|
|
121204
|
-
|
|
121205
|
-
|
|
121206
|
-
|
|
121207
|
-
|
|
121167
|
+
/* istanbul ignore next */
|
|
121168
|
+
function apply(styleElement, options, obj) {
|
|
121169
|
+
var css = "";
|
|
121170
|
+
if (obj.supports) {
|
|
121171
|
+
css += "@supports (".concat(obj.supports, ") {");
|
|
121172
|
+
}
|
|
121173
|
+
if (obj.media) {
|
|
121174
|
+
css += "@media ".concat(obj.media, " {");
|
|
121175
|
+
}
|
|
121176
|
+
var needLayer = typeof obj.layer !== "undefined";
|
|
121177
|
+
if (needLayer) {
|
|
121178
|
+
css += "@layer".concat(obj.layer.length > 0 ? " ".concat(obj.layer) : "", " {");
|
|
121179
|
+
}
|
|
121180
|
+
css += obj.css;
|
|
121181
|
+
if (needLayer) {
|
|
121182
|
+
css += "}";
|
|
121183
|
+
}
|
|
121184
|
+
if (obj.media) {
|
|
121185
|
+
css += "}";
|
|
121186
|
+
}
|
|
121187
|
+
if (obj.supports) {
|
|
121188
|
+
css += "}";
|
|
121189
|
+
}
|
|
121190
|
+
var sourceMap = obj.sourceMap;
|
|
121191
|
+
if (sourceMap && typeof btoa !== "undefined") {
|
|
121192
|
+
css += "\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), " */");
|
|
121193
|
+
}
|
|
121208
121194
|
|
|
121209
|
-
|
|
121210
|
-
|
|
121211
|
-
|
|
121212
|
-
}
|
|
121213
|
-
};
|
|
121195
|
+
// For old IE
|
|
121196
|
+
/* istanbul ignore if */
|
|
121197
|
+
options.styleTagTransform(css, styleElement, options.options);
|
|
121214
121198
|
}
|
|
121215
|
-
|
|
121216
|
-
|
|
121217
|
-
|
|
121218
|
-
|
|
121219
|
-
|
|
121220
|
-
if (!options.singleton && typeof options.singleton !== 'boolean') {
|
|
121221
|
-
options.singleton = isOldIE();
|
|
121199
|
+
function removeStyleElement(styleElement) {
|
|
121200
|
+
// istanbul ignore if
|
|
121201
|
+
if (styleElement.parentNode === null) {
|
|
121202
|
+
return false;
|
|
121222
121203
|
}
|
|
121204
|
+
styleElement.parentNode.removeChild(styleElement);
|
|
121205
|
+
}
|
|
121223
121206
|
|
|
121224
|
-
|
|
121225
|
-
|
|
121226
|
-
|
|
121227
|
-
|
|
121228
|
-
|
|
121229
|
-
|
|
121230
|
-
|
|
121231
|
-
|
|
121232
|
-
|
|
121233
|
-
|
|
121234
|
-
|
|
121235
|
-
|
|
121236
|
-
|
|
121207
|
+
/* istanbul ignore next */
|
|
121208
|
+
function domAPI(options) {
|
|
121209
|
+
if (typeof document === "undefined") {
|
|
121210
|
+
return {
|
|
121211
|
+
update: function update() {},
|
|
121212
|
+
remove: function remove() {}
|
|
121213
|
+
};
|
|
121214
|
+
}
|
|
121215
|
+
var styleElement = options.insertStyleElement(options);
|
|
121216
|
+
return {
|
|
121217
|
+
update: function update(obj) {
|
|
121218
|
+
apply(styleElement, options, obj);
|
|
121219
|
+
},
|
|
121220
|
+
remove: function remove() {
|
|
121221
|
+
removeStyleElement(styleElement);
|
|
121237
121222
|
}
|
|
121223
|
+
};
|
|
121224
|
+
}
|
|
121225
|
+
module.exports = domAPI;
|
|
121238
121226
|
|
|
121239
|
-
|
|
121227
|
+
/***/ }),
|
|
121240
121228
|
|
|
121241
|
-
|
|
121242
|
-
|
|
121229
|
+
/***/ "../../../node_modules/style-loader/dist/runtime/styleTagTransform.js":
|
|
121230
|
+
/*!****************************************************************************!*\
|
|
121231
|
+
!*** ../../../node_modules/style-loader/dist/runtime/styleTagTransform.js ***!
|
|
121232
|
+
\****************************************************************************/
|
|
121233
|
+
/***/ ((module) => {
|
|
121243
121234
|
|
|
121244
|
-
|
|
121235
|
+
"use strict";
|
|
121245
121236
|
|
|
121246
|
-
if (stylesInDom[_index].references === 0) {
|
|
121247
|
-
stylesInDom[_index].updater();
|
|
121248
121237
|
|
|
121249
|
-
|
|
121250
|
-
|
|
121238
|
+
/* istanbul ignore next */
|
|
121239
|
+
function styleTagTransform(css, styleElement) {
|
|
121240
|
+
if (styleElement.styleSheet) {
|
|
121241
|
+
styleElement.styleSheet.cssText = css;
|
|
121242
|
+
} else {
|
|
121243
|
+
while (styleElement.firstChild) {
|
|
121244
|
+
styleElement.removeChild(styleElement.firstChild);
|
|
121251
121245
|
}
|
|
121252
|
-
|
|
121253
|
-
|
|
121254
|
-
|
|
121255
|
-
|
|
121246
|
+
styleElement.appendChild(document.createTextNode(css));
|
|
121247
|
+
}
|
|
121248
|
+
}
|
|
121249
|
+
module.exports = styleTagTransform;
|
|
121256
121250
|
|
|
121257
121251
|
/***/ }),
|
|
121258
121252
|
|
|
@@ -222128,20 +222122,45 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
222128
222122
|
/* harmony export */ });
|
|
222129
222123
|
/* harmony import */ var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! !../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js */ "../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js");
|
|
222130
222124
|
/* harmony import */ var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
222131
|
-
/* harmony import */ var
|
|
222125
|
+
/* harmony import */ var _node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! !../../../../node_modules/style-loader/dist/runtime/styleDomAPI.js */ "../../../node_modules/style-loader/dist/runtime/styleDomAPI.js");
|
|
222126
|
+
/* harmony import */ var _node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__);
|
|
222127
|
+
/* harmony import */ var _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! !../../../../node_modules/style-loader/dist/runtime/insertBySelector.js */ "../../../node_modules/style-loader/dist/runtime/insertBySelector.js");
|
|
222128
|
+
/* harmony import */ var _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__);
|
|
222129
|
+
/* harmony import */ var _node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! !../../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js */ "../../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js");
|
|
222130
|
+
/* harmony import */ var _node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__);
|
|
222131
|
+
/* harmony import */ var _node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! !../../../../node_modules/style-loader/dist/runtime/insertStyleElement.js */ "../../../node_modules/style-loader/dist/runtime/insertStyleElement.js");
|
|
222132
|
+
/* harmony import */ var _node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__);
|
|
222133
|
+
/* harmony import */ var _node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! !../../../../node_modules/style-loader/dist/runtime/styleTagTransform.js */ "../../../node_modules/style-loader/dist/runtime/styleTagTransform.js");
|
|
222134
|
+
/* harmony import */ var _node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5__);
|
|
222135
|
+
/* harmony import */ var _node_modules_css_loader_dist_cjs_js_tooling_piral_cli_webpack5_node_modules_sass_loader_dist_cjs_js_style_scss__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! !!../../../../node_modules/css-loader/dist/cjs.js!../../../tooling/piral-cli-webpack5/node_modules/sass-loader/dist/cjs.js!./style.scss */ "../../../node_modules/css-loader/dist/cjs.js!../../tooling/piral-cli-webpack5/node_modules/sass-loader/dist/cjs.js!./src/style.scss");
|
|
222132
222136
|
|
|
222133
|
-
|
|
222137
|
+
|
|
222138
|
+
|
|
222139
|
+
|
|
222140
|
+
|
|
222141
|
+
|
|
222142
|
+
|
|
222143
|
+
|
|
222144
|
+
|
|
222145
|
+
|
|
222134
222146
|
|
|
222135
222147
|
var options = {};
|
|
222136
222148
|
|
|
222137
|
-
options.
|
|
222138
|
-
options.
|
|
222149
|
+
options.styleTagTransform = (_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5___default());
|
|
222150
|
+
options.setAttributes = (_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default());
|
|
222151
|
+
|
|
222152
|
+
options.insert = _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default().bind(null, "head");
|
|
222153
|
+
|
|
222154
|
+
options.domAPI = (_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default());
|
|
222155
|
+
options.insertStyleElement = (_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default());
|
|
222156
|
+
|
|
222157
|
+
var update = _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default()(_node_modules_css_loader_dist_cjs_js_tooling_piral_cli_webpack5_node_modules_sass_loader_dist_cjs_js_style_scss__WEBPACK_IMPORTED_MODULE_6__["default"], options);
|
|
222158
|
+
|
|
222139
222159
|
|
|
222140
|
-
var update = _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default()(_node_modules_css_loader_dist_cjs_js_node_modules_sass_loader_dist_cjs_js_style_scss__WEBPACK_IMPORTED_MODULE_1__["default"], options);
|
|
222141
222160
|
|
|
222142
222161
|
|
|
222162
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_node_modules_css_loader_dist_cjs_js_tooling_piral_cli_webpack5_node_modules_sass_loader_dist_cjs_js_style_scss__WEBPACK_IMPORTED_MODULE_6__["default"] && _node_modules_css_loader_dist_cjs_js_tooling_piral_cli_webpack5_node_modules_sass_loader_dist_cjs_js_style_scss__WEBPACK_IMPORTED_MODULE_6__["default"].locals ? _node_modules_css_loader_dist_cjs_js_tooling_piral_cli_webpack5_node_modules_sass_loader_dist_cjs_js_style_scss__WEBPACK_IMPORTED_MODULE_6__["default"].locals : undefined);
|
|
222143
222163
|
|
|
222144
|
-
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_node_modules_css_loader_dist_cjs_js_node_modules_sass_loader_dist_cjs_js_style_scss__WEBPACK_IMPORTED_MODULE_1__["default"].locals || {});
|
|
222145
222164
|
})();
|
|
222146
222165
|
|
|
222147
222166
|
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
|
|
@@ -222267,4 +222286,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_8__.createElement(piral
|
|
|
222267
222286
|
|
|
222268
222287
|
/******/ })()
|
|
222269
222288
|
;
|
|
222270
|
-
//# sourceMappingURL=index.
|
|
222289
|
+
//# sourceMappingURL=index.a9c65b.js.map
|