@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
@@ -2,6 +2,14 @@
2
2
 
3
3
 
4
4
 
5
+ ## [4.103.1] - 2026-01-19
6
+
7
+ ### Bug Fixes
8
+
9
+ - update table color
10
+
11
+
12
+
5
13
  ## [4.103.0] - 2026-01-18
6
14
 
7
15
  ### Add Features
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.0"}
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 (this.getOption("disabled", false) === true || this.hasAttribute("disabled")) {
735
+ if (
736
+ this.getOption("disabled", false) === true ||
737
+ this.hasAttribute("disabled")
738
+ ) {
736
739
  return;
737
740
  }
738
741
 
@@ -5,7 +5,6 @@ th {
5
5
  .monster-table {
6
6
  border-collapse: collapse;
7
7
  box-sizing: border-box;
8
- color: #212529;
9
8
  margin-bottom: 1rem;
10
9
  width: 100%;
11
10
  }
@@ -7,7 +7,6 @@ th {
7
7
  .monster-table {
8
8
  width: 100%;
9
9
  margin-bottom: 1rem;
10
- color: #212529;
11
10
  box-sizing: border-box;
12
11
  border-collapse: collapse;
13
12
  }
@@ -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;color:#212529;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)}
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
  );