@breadstone/mosaik-elements-svelte 0.0.271 → 0.0.273
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 +10 -0
- package/index.mjs +11 -34
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 0.0.273 (2026-05-15)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- **ItemDefDirective:** update line numbers in documentation for clarity ([84911e1e80](https://github.com/RueDeRennes/mosaik/commit/84911e1e80))
|
|
6
|
+
|
|
7
|
+
## 0.0.272 (2026-05-13)
|
|
8
|
+
|
|
9
|
+
This was a version bump only for mosaik-elements-svelte to align it with other projects, there were no code changes.
|
|
10
|
+
|
|
1
11
|
## 0.0.271 (2026-05-13)
|
|
2
12
|
|
|
3
13
|
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
|
@@ -22327,9 +22327,11 @@ function xde() {
|
|
|
22327
22327
|
border-end-start-radius: inherit;
|
|
22328
22328
|
outline-style: none;
|
|
22329
22329
|
flex: 1;
|
|
22330
|
+
align-items: center;
|
|
22330
22331
|
margin: 0;
|
|
22331
22332
|
text-decoration: none;
|
|
22332
22333
|
transition-property: inherit;
|
|
22334
|
+
display: inline-flex;
|
|
22333
22335
|
position: relative;
|
|
22334
22336
|
overflow: hidden;
|
|
22335
22337
|
}
|
|
@@ -22640,9 +22642,11 @@ function Sde() {
|
|
|
22640
22642
|
border-end-start-radius: inherit;
|
|
22641
22643
|
outline-style: none;
|
|
22642
22644
|
flex: 1;
|
|
22645
|
+
align-items: center;
|
|
22643
22646
|
margin: 0;
|
|
22644
22647
|
text-decoration: none;
|
|
22645
22648
|
transition-property: inherit;
|
|
22649
|
+
display: inline-flex;
|
|
22646
22650
|
position: relative;
|
|
22647
22651
|
overflow: hidden;
|
|
22648
22652
|
}
|
|
@@ -23458,9 +23462,11 @@ function Cde() {
|
|
|
23458
23462
|
border-end-start-radius: inherit;
|
|
23459
23463
|
outline-style: none;
|
|
23460
23464
|
flex: 1;
|
|
23465
|
+
align-items: center;
|
|
23461
23466
|
margin: 0;
|
|
23462
23467
|
text-decoration: none;
|
|
23463
23468
|
transition-property: inherit;
|
|
23469
|
+
display: inline-flex;
|
|
23464
23470
|
position: relative;
|
|
23465
23471
|
overflow: hidden;
|
|
23466
23472
|
}
|
|
@@ -23640,6 +23646,8 @@ var fT = function(e, t, n, r) {
|
|
|
23640
23646
|
connectedCallback() {
|
|
23641
23647
|
super.connectedCallback(), this.on("click", (e) => {
|
|
23642
23648
|
e.currentTarget === this && this.toggle();
|
|
23649
|
+
}), this.addEventListener("activated", () => {
|
|
23650
|
+
this.close();
|
|
23643
23651
|
});
|
|
23644
23652
|
}
|
|
23645
23653
|
onIsDropDownOpenPropertyChanged(e, t) {
|
|
@@ -83670,7 +83678,8 @@ var iz = function(e, t, n, r) {
|
|
|
83670
83678
|
return this._chips;
|
|
83671
83679
|
}
|
|
83672
83680
|
set chips(e) {
|
|
83673
|
-
|
|
83681
|
+
let t = Array.isArray(e) ? e : [];
|
|
83682
|
+
this._chips !== t && (this._chips = t, this.requestUpdate("chips"));
|
|
83674
83683
|
}
|
|
83675
83684
|
get separatorKeys() {
|
|
83676
83685
|
return this._separatorKeys;
|
|
@@ -121634,15 +121643,6 @@ function cq() {
|
|
|
121634
121643
|
overflow: hidden;
|
|
121635
121644
|
}
|
|
121636
121645
|
|
|
121637
|
-
:host [part="inner"].prefix:before {
|
|
121638
|
-
content: "";
|
|
121639
|
-
width: var(--searchbox-border-width);
|
|
121640
|
-
position: absolute;
|
|
121641
|
-
top: 2px;
|
|
121642
|
-
bottom: 2px;
|
|
121643
|
-
left: 0;
|
|
121644
|
-
}
|
|
121645
|
-
|
|
121646
121646
|
:host [part="inner"] [part="input"] {
|
|
121647
121647
|
padding-top: 2px;
|
|
121648
121648
|
padding-bottom: 2px;
|
|
@@ -121829,15 +121829,6 @@ function lq() {
|
|
|
121829
121829
|
overflow: hidden;
|
|
121830
121830
|
}
|
|
121831
121831
|
|
|
121832
|
-
:host [part="inner"].prefix:before {
|
|
121833
|
-
content: "";
|
|
121834
|
-
width: var(--searchbox-border-width);
|
|
121835
|
-
position: absolute;
|
|
121836
|
-
top: 2px;
|
|
121837
|
-
bottom: 2px;
|
|
121838
|
-
left: 0;
|
|
121839
|
-
}
|
|
121840
|
-
|
|
121841
121832
|
:host [part="inner"] [part="input"] {
|
|
121842
121833
|
padding-top: 2px;
|
|
121843
121834
|
padding-bottom: 2px;
|
|
@@ -121881,11 +121872,6 @@ function lq() {
|
|
|
121881
121872
|
text-align: right;
|
|
121882
121873
|
}
|
|
121883
121874
|
|
|
121884
|
-
:host [part="inner"].prefix:before {
|
|
121885
|
-
background-color: var(--searchbox-border-color);
|
|
121886
|
-
border-radius: 2px;
|
|
121887
|
-
}
|
|
121888
|
-
|
|
121889
121875
|
:host [part="input"]::-moz-selection {
|
|
121890
121876
|
background-color: var(--joy-scheme-selection);
|
|
121891
121877
|
}
|
|
@@ -122111,15 +122097,6 @@ function uq() {
|
|
|
122111
122097
|
overflow: hidden;
|
|
122112
122098
|
}
|
|
122113
122099
|
|
|
122114
|
-
:host [part="inner"].prefix:before {
|
|
122115
|
-
content: "";
|
|
122116
|
-
width: var(--searchbox-border-width);
|
|
122117
|
-
position: absolute;
|
|
122118
|
-
top: 2px;
|
|
122119
|
-
bottom: 2px;
|
|
122120
|
-
left: 0;
|
|
122121
|
-
}
|
|
122122
|
-
|
|
122123
122100
|
:host [part="inner"] [part="input"] {
|
|
122124
122101
|
padding-top: 2px;
|
|
122125
122102
|
padding-bottom: 2px;
|
|
@@ -123606,7 +123583,7 @@ var Oq = function(e, t, n, r) {
|
|
|
123606
123583
|
});
|
|
123607
123584
|
}
|
|
123608
123585
|
onSelectItem(e, t) {
|
|
123609
|
-
(!e.isActive || t) && (this.select(e), this.requestUpdate(), this.close()
|
|
123586
|
+
(!e.isActive || t) && (this.select(e), this.requestUpdate()), this.close();
|
|
123610
123587
|
}
|
|
123611
123588
|
initialSelection() {
|
|
123612
123589
|
this.updateComplete.then(() => {
|
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.273",
|
|
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.273",
|
|
19
|
+
"@breadstone/mosaik-elements-foundation": "^0.0.273"
|
|
20
20
|
},
|
|
21
21
|
"exports": {
|
|
22
22
|
".": {
|