chili3d 1.0.9 → 1.0.20
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/index.js +18 -5
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -156,7 +156,7 @@ __webpack_require__.r(module.exports = {});
|
|
|
156
156
|
|
|
157
157
|
}),
|
|
158
158
|
67: (function (module, __unused_webpack_exports, __webpack_require__) {
|
|
159
|
-
module.exports = {};
|
|
159
|
+
__webpack_require__.r(module.exports = {});
|
|
160
160
|
|
|
161
161
|
|
|
162
162
|
}),
|
|
@@ -86528,16 +86528,29 @@ class RibbonToggleButton extends RibbonButton {
|
|
|
86528
86528
|
}
|
|
86529
86529
|
customElements.define("ribbon-toggle-button", RibbonToggleButton);
|
|
86530
86530
|
|
|
86531
|
-
// EXTERNAL MODULE: ./packages/chili-ui/src/ribbon/ribbonStack.module.css
|
|
86532
|
-
var ribbonStack_module = __webpack_require__(67);
|
|
86533
86531
|
;// CONCATENATED MODULE: ./packages/chili-ui/src/ribbon/ribbonStack.ts
|
|
86534
86532
|
// Part of the Chili3d Project, under the AGPL-3.0 License.
|
|
86535
86533
|
// See LICENSE file in the project root for full license information.
|
|
86536
|
-
|
|
86534
|
+
let ribbonStack_style = {
|
|
86535
|
+
root: ""
|
|
86536
|
+
};
|
|
86537
|
+
try {
|
|
86538
|
+
const importedStyle = __webpack_require__(67);
|
|
86539
|
+
const loadedStyle = importedStyle.default || importedStyle;
|
|
86540
|
+
if (loadedStyle && typeof loadedStyle === 'object') {
|
|
86541
|
+
ribbonStack_style = {
|
|
86542
|
+
root: loadedStyle.root || ""
|
|
86543
|
+
};
|
|
86544
|
+
}
|
|
86545
|
+
} catch (error) {
|
|
86546
|
+
console.warn("Failed to load ribbonStack.module.css:", error);
|
|
86547
|
+
}
|
|
86537
86548
|
class RibbonStack extends HTMLElement {
|
|
86538
86549
|
constructor(){
|
|
86539
86550
|
super();
|
|
86540
|
-
|
|
86551
|
+
if (ribbonStack_style.root) {
|
|
86552
|
+
this.className = ribbonStack_style.root;
|
|
86553
|
+
}
|
|
86541
86554
|
}
|
|
86542
86555
|
}
|
|
86543
86556
|
customElements.define("ribbon-stack", RibbonStack);
|