waibu-bootstrap 2.1.4 → 2.1.6
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/extend/bajo/hook/waibu-mpa@after-build-page.js +5 -0
- package/extend/waibuMpa/theme/component/widget/fieldset.js +1 -0
- package/extend/waibuStatic/asset/js/wbs.js +0 -1
- package/package.json +1 -1
- package/wiki/CHANGES.md +6 -0
- package/extend/bajo/hook/waibu-mpa.bootstrap@after-build-page.js +0 -5
|
@@ -13,6 +13,7 @@ async function fieldset () {
|
|
|
13
13
|
if (group.grid && !this.params.attr.card && !group.grid.margin) group.grid.margin = 'bottom-3'
|
|
14
14
|
if (group.grid) this.params.html = await this.component.buildTag({ tag: 'gridRow', attr: group.grid, html: this.params.html })
|
|
15
15
|
if (group.card) {
|
|
16
|
+
group.card.border = true
|
|
16
17
|
if (!group.card.margin) group.card.margin = 'bottom-4'
|
|
17
18
|
let sentence = `
|
|
18
19
|
<c:card-header>
|
|
@@ -113,7 +113,6 @@ class Wbs {
|
|
|
113
113
|
await wmpa.addComponent(body.join('\n'), 'body', undefined, undefined, qs)
|
|
114
114
|
const item = new this.engine.Offcanvas(`#${id}`)
|
|
115
115
|
const itemEl = document.getElementById(id)
|
|
116
|
-
if (window.mdb) this.engine.Collapse.getOrCreateInstance(itemEl)
|
|
117
116
|
itemEl.addEventListener('hidden.bs.offcanvas', evt => {
|
|
118
117
|
itemEl.remove()
|
|
119
118
|
})
|
package/package.json
CHANGED
package/wiki/CHANGES.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
## 2026-01-18
|
|
4
|
+
|
|
5
|
+
- [2.1.5] Darkmode handling
|
|
6
|
+
- [2.1.5] Put border around fieldset if its type is a card
|
|
7
|
+
- [2.1.6] Remove ```getOrCreateInstance()``` on ```wbs.appLauncher()```
|
|
8
|
+
|
|
3
9
|
## 2026-01-17
|
|
4
10
|
|
|
5
11
|
- [2.1.3] Sidebar buttons in inactive state should be transparent
|