@schukai/monster 4.103.0 → 4.103.1
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/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"author":"Volker Schukai","dependencies":{"@floating-ui/dom":"^1.7.4","@popperjs/core":"^2.11.8"},"description":"Monster is a simple library for creating fast, robust and lightweight websites.","homepage":"https://monsterjs.org/","keywords":["framework","web","dom","css","sass","mobile-first","app","front-end","templates","schukai","core","shopcloud","alvine","monster","buildmap","stack","observer","observable","uuid","node","nodelist","css-in-js","logger","log","theme"],"license":"AGPL 3.0","main":"source/monster.mjs","module":"source/monster.mjs","name":"@schukai/monster","repository":{"type":"git","url":"https://gitlab.schukai.com/oss/libraries/javascript/monster.git"},"type":"module","version":"4.103.
|
|
1
|
+
{"author":"Volker Schukai","dependencies":{"@floating-ui/dom":"^1.7.4","@popperjs/core":"^2.11.8"},"description":"Monster is a simple library for creating fast, robust and lightweight websites.","homepage":"https://monsterjs.org/","keywords":["framework","web","dom","css","sass","mobile-first","app","front-end","templates","schukai","core","shopcloud","alvine","monster","buildmap","stack","observer","observable","uuid","node","nodelist","css-in-js","logger","log","theme"],"license":"AGPL 3.0","main":"source/monster.mjs","module":"source/monster.mjs","name":"@schukai/monster","repository":{"type":"git","url":"https://gitlab.schukai.com/oss/libraries/javascript/monster.git"},"type":"module","version":"4.103.1"}
|
|
@@ -732,7 +732,10 @@ function scheduleInternalDisableTimeout() {
|
|
|
732
732
|
if (this[saveInFlightSymbol] !== true) {
|
|
733
733
|
return;
|
|
734
734
|
}
|
|
735
|
-
if (
|
|
735
|
+
if (
|
|
736
|
+
this.getOption("disabled", false) === true ||
|
|
737
|
+
this.hasAttribute("disabled")
|
|
738
|
+
) {
|
|
736
739
|
return;
|
|
737
740
|
}
|
|
738
741
|
|
|
@@ -25,7 +25,7 @@ try {
|
|
|
25
25
|
TableStyleSheet.insertRule(
|
|
26
26
|
`
|
|
27
27
|
@layer table {
|
|
28
|
-
th{text-align:inherit}.monster-table{border-collapse:collapse;box-sizing:border-box;
|
|
28
|
+
th{text-align:inherit}.monster-table{border-collapse:collapse;box-sizing:border-box;margin-bottom:1rem;width:100%}.monster-table tr{margin:10px 0}.monster-table td,.monster-table th{padding:.75rem;vertical-align:top}.monster-table thead th{vertical-align:bottom}.monster-table-container{box-sizing:border-box;display:block;margin:0;overflow-x:auto;padding:8px;width:100%}.monster-table tbody tr td,.monster-table tbody tr th,.monster-table-container{background-color:var(--monster-theme-control-bg-color);color:var(--monster-theme-control-color)}.monster-table tbody tr td,.monster-table tbody tr th{border-bottom:1px solid var(--monster-theme-control-border-color)}
|
|
29
29
|
}`,
|
|
30
30
|
0,
|
|
31
31
|
);
|