@breadstone/mosaik-elements-svelte 0.0.285 → 0.0.286
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 +6 -0
- package/index.mjs +23 -8
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## 0.0.286 (2026-05-20)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **order-management:** add filter option to select components and enhance focus management ([97c9824f16](https://github.com/RueDeRennes/mosaik/commit/97c9824f16))
|
|
6
|
+
|
|
1
7
|
## 0.0.285 (2026-05-20)
|
|
2
8
|
|
|
3
9
|
This was a version bump only for mosaik-elements-svelte to align it with other projects, there were no code changes.
|
package/index.mjs
CHANGED
|
@@ -21459,17 +21459,20 @@ var $w = function(e, t, n, r) {
|
|
|
21459
21459
|
getDestination() {
|
|
21460
21460
|
if (typeof this._destination == "string") return Vw.get(this._destination) || O.current.findDescendant(document, this._destination, { strict: !0 });
|
|
21461
21461
|
if (this._destination === document.body) {
|
|
21462
|
-
let e = this.
|
|
21462
|
+
let e = this.findDefaultDestinationAncestor();
|
|
21463
21463
|
if (e) return e;
|
|
21464
21464
|
}
|
|
21465
21465
|
return this._destination;
|
|
21466
21466
|
}
|
|
21467
|
-
|
|
21467
|
+
findDefaultDestinationAncestor() {
|
|
21468
21468
|
let e = this;
|
|
21469
21469
|
for (; e;) {
|
|
21470
|
-
if (e instanceof Element)
|
|
21471
|
-
|
|
21472
|
-
|
|
21470
|
+
if (e instanceof Element) {
|
|
21471
|
+
try {
|
|
21472
|
+
if (e.matches(":popover-open") || e.matches(":modal")) return e;
|
|
21473
|
+
} catch {}
|
|
21474
|
+
if (e.hasAttribute("data-mosaik-portal-scope")) return e;
|
|
21475
|
+
}
|
|
21473
21476
|
let t = e.parentNode;
|
|
21474
21477
|
!t && e instanceof ShadowRoot && (t = e.host), e = t;
|
|
21475
21478
|
}
|
|
@@ -207298,7 +207301,7 @@ function kCe() {
|
|
|
207298
207301
|
}
|
|
207299
207302
|
|
|
207300
207303
|
:host([alternating]) ::slotted(mosaik-table-body-row:nth-child(odd)) {
|
|
207301
|
-
--table-body-
|
|
207304
|
+
--table-body-row-alternating-color: var(--table-alternating-color);
|
|
207302
207305
|
}
|
|
207303
207306
|
|
|
207304
207307
|
`;
|
|
@@ -207388,7 +207391,7 @@ function ACe() {
|
|
|
207388
207391
|
}
|
|
207389
207392
|
|
|
207390
207393
|
:host([alternating]) ::slotted(mosaik-table-body-row:nth-child(odd)) {
|
|
207391
|
-
--table-body-
|
|
207394
|
+
--table-body-row-alternating-color: var(--table-alternating-color);
|
|
207392
207395
|
}
|
|
207393
207396
|
|
|
207394
207397
|
`;
|
|
@@ -207478,7 +207481,7 @@ function jCe() {
|
|
|
207478
207481
|
}
|
|
207479
207482
|
|
|
207480
207483
|
:host([alternating]) ::slotted(mosaik-table-body-row:nth-child(odd)) {
|
|
207481
|
-
--table-body-
|
|
207484
|
+
--table-body-row-alternating-color: var(--table-alternating-color);
|
|
207482
207485
|
}
|
|
207483
207486
|
|
|
207484
207487
|
`;
|
|
@@ -208191,6 +208194,10 @@ function RCe() {
|
|
|
208191
208194
|
display: grid;
|
|
208192
208195
|
}
|
|
208193
208196
|
|
|
208197
|
+
::slotted(mosaik-table-body-cell) {
|
|
208198
|
+
--table-body-cell-background-color: var(--table-body-row-alternating-color);
|
|
208199
|
+
}
|
|
208200
|
+
|
|
208194
208201
|
:host(:not([disabled]:not([disabled="false"])):not(:active):hover) {
|
|
208195
208202
|
cursor: pointer;
|
|
208196
208203
|
}
|
|
@@ -208301,6 +208308,10 @@ function zCe() {
|
|
|
208301
208308
|
display: grid;
|
|
208302
208309
|
}
|
|
208303
208310
|
|
|
208311
|
+
::slotted(mosaik-table-body-cell) {
|
|
208312
|
+
--table-body-cell-background-color: var(--table-body-row-alternating-color);
|
|
208313
|
+
}
|
|
208314
|
+
|
|
208304
208315
|
:host(:not([disabled]:not([disabled="false"])):not(:active):hover) {
|
|
208305
208316
|
cursor: pointer;
|
|
208306
208317
|
}
|
|
@@ -208411,6 +208422,10 @@ function BCe() {
|
|
|
208411
208422
|
display: grid;
|
|
208412
208423
|
}
|
|
208413
208424
|
|
|
208425
|
+
::slotted(mosaik-table-body-cell) {
|
|
208426
|
+
--table-body-cell-background-color: var(--table-body-row-alternating-color);
|
|
208427
|
+
}
|
|
208428
|
+
|
|
208414
208429
|
:host(:not([disabled]:not([disabled="false"])):not(:active):hover) {
|
|
208415
208430
|
cursor: pointer;
|
|
208416
208431
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/mosaik-elements-svelte",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.286",
|
|
4
4
|
"description": "Mosaik elements for Svelte.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"vite": "*"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@breadstone/mosaik-elements": "^0.0.
|
|
19
|
-
"@breadstone/mosaik-elements-foundation": "^0.0.
|
|
18
|
+
"@breadstone/mosaik-elements": "^0.0.286",
|
|
19
|
+
"@breadstone/mosaik-elements-foundation": "^0.0.286"
|
|
20
20
|
},
|
|
21
21
|
"exports": {
|
|
22
22
|
".": {
|