@breadstone/mosaik-elements-svelte 0.0.249 → 0.0.251
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 +8 -0
- package/index.mjs +19 -15
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## 0.0.251 (2026-05-03)
|
|
2
|
+
|
|
3
|
+
This was a version bump only for mosaik-elements-svelte to align it with other projects, there were no code changes.
|
|
4
|
+
|
|
5
|
+
## 0.0.250 (2026-05-03)
|
|
6
|
+
|
|
7
|
+
This was a version bump only for mosaik-elements-svelte to align it with other projects, there were no code changes.
|
|
8
|
+
|
|
1
9
|
## 0.0.249 (2026-05-03)
|
|
2
10
|
|
|
3
11
|
### 🚀 Features
|
package/index.mjs
CHANGED
|
@@ -174211,7 +174211,7 @@ function $_e(e) {
|
|
|
174211
174211
|
</div>
|
|
174212
174212
|
<div part="actions">
|
|
174213
174213
|
${U(e.buttons === $2.OK, () => V`
|
|
174214
|
-
<mosaik-button part="
|
|
174214
|
+
<mosaik-button part="action ok"
|
|
174215
174215
|
.lang="${e.lang}"
|
|
174216
174216
|
.dir="${e.dir}"
|
|
174217
174217
|
.label="${e.intl.okLabel}"
|
|
@@ -174220,14 +174220,14 @@ function $_e(e) {
|
|
|
174220
174220
|
@click="${() => e.onDialogResult("ok")}"></mosaik-button>
|
|
174221
174221
|
`)}
|
|
174222
174222
|
${U(e.buttons === $2.OKCancel, () => V`
|
|
174223
|
-
<mosaik-button part="
|
|
174223
|
+
<mosaik-button part="action ok"
|
|
174224
174224
|
.lang="${e.lang}"
|
|
174225
174225
|
.dir="${e.dir}"
|
|
174226
174226
|
.label="${e.intl.okLabel}"
|
|
174227
174227
|
.variant="${Wv.Primary}"
|
|
174228
174228
|
.appearance="${q.Solid}"
|
|
174229
174229
|
@click="${() => e.onDialogResult("ok")}"></mosaik-button>
|
|
174230
|
-
<mosaik-button part="
|
|
174230
|
+
<mosaik-button part="action cancel"
|
|
174231
174231
|
.lang="${e.lang}"
|
|
174232
174232
|
.dir="${e.dir}"
|
|
174233
174233
|
.label="${e.intl.cancelLabel}"
|
|
@@ -174236,14 +174236,14 @@ function $_e(e) {
|
|
|
174236
174236
|
@click="${() => e.onDialogResult("cancel")}"></mosaik-button>
|
|
174237
174237
|
`)}
|
|
174238
174238
|
${U(e.buttons === $2.YesNo, () => V`
|
|
174239
|
-
<mosaik-button part="
|
|
174239
|
+
<mosaik-button part="action yes"
|
|
174240
174240
|
.lang="${e.lang}"
|
|
174241
174241
|
.dir="${e.dir}"
|
|
174242
174242
|
.label="${e.intl.yesLabel}"
|
|
174243
174243
|
.variant="${Wv.Primary}"
|
|
174244
174244
|
.appearance="${q.Solid}"
|
|
174245
174245
|
@click="${() => e.onDialogResult("yes")}"></mosaik-button>
|
|
174246
|
-
<mosaik-button part="
|
|
174246
|
+
<mosaik-button part="action no"
|
|
174247
174247
|
.lang="${e.lang}"
|
|
174248
174248
|
.dir="${e.dir}"
|
|
174249
174249
|
.label="${e.intl.noLabel}"
|
|
@@ -174252,21 +174252,21 @@ function $_e(e) {
|
|
|
174252
174252
|
@click="${() => e.onDialogResult("no")}"></mosaik-button>
|
|
174253
174253
|
`)}
|
|
174254
174254
|
${U(e.buttons === $2.YesNoCancel, () => V`
|
|
174255
|
-
<mosaik-button part="
|
|
174255
|
+
<mosaik-button part="action yes"
|
|
174256
174256
|
.lang="${e.lang}"
|
|
174257
174257
|
.dir="${e.dir}"
|
|
174258
174258
|
.label="${e.intl.yesLabel}"
|
|
174259
174259
|
.variant="${Wv.Primary}"
|
|
174260
174260
|
.appearance="${q.Solid}"
|
|
174261
174261
|
@click="${() => e.onDialogResult("yes")}"></mosaik-button>
|
|
174262
|
-
<mosaik-button part="
|
|
174262
|
+
<mosaik-button part="action no"
|
|
174263
174263
|
.lang="${e.lang}"
|
|
174264
174264
|
.dir="${e.dir}"
|
|
174265
174265
|
.label="${e.intl.noLabel}"
|
|
174266
174266
|
.variant="${Wv.Primary}"
|
|
174267
174267
|
.appearance="${q.Plain}"
|
|
174268
174268
|
@click="${() => e.onDialogResult("no")}"></mosaik-button>
|
|
174269
|
-
<mosaik-button part="
|
|
174269
|
+
<mosaik-button part="action cancel"
|
|
174270
174270
|
.lang="${e.lang}"
|
|
174271
174271
|
.dir="${e.dir}"
|
|
174272
174272
|
.label="${e.intl.cancelLabel}"
|
|
@@ -174466,9 +174466,9 @@ function eve() {
|
|
|
174466
174466
|
|
|
174467
174467
|
:host [part="root"] [part="content"] {
|
|
174468
174468
|
padding: var(--message-box-padding-top) var(--message-box-padding-right) var(--message-box-padding-bottom) var(--message-box-padding-left);
|
|
174469
|
-
align-items:
|
|
174469
|
+
align-items: center;
|
|
174470
174470
|
gap: var(--message-box-gap);
|
|
174471
|
-
flex-direction:
|
|
174471
|
+
flex-direction: column;
|
|
174472
174472
|
flex: 1;
|
|
174473
174473
|
display: flex;
|
|
174474
174474
|
overflow: auto;
|
|
@@ -174698,9 +174698,9 @@ function tve() {
|
|
|
174698
174698
|
|
|
174699
174699
|
:host [part="root"] [part="content"] {
|
|
174700
174700
|
padding: var(--message-box-padding-top) var(--message-box-padding-right) var(--message-box-padding-bottom) var(--message-box-padding-left);
|
|
174701
|
-
align-items:
|
|
174701
|
+
align-items: center;
|
|
174702
174702
|
gap: var(--message-box-gap);
|
|
174703
|
-
flex-direction:
|
|
174703
|
+
flex-direction: column;
|
|
174704
174704
|
flex: 1;
|
|
174705
174705
|
display: flex;
|
|
174706
174706
|
overflow: auto;
|
|
@@ -174740,6 +174740,10 @@ function tve() {
|
|
|
174740
174740
|
display: none;
|
|
174741
174741
|
}
|
|
174742
174742
|
|
|
174743
|
+
:host [part^="action"] {
|
|
174744
|
+
flex: 1;
|
|
174745
|
+
}
|
|
174746
|
+
|
|
174743
174747
|
`;
|
|
174744
174748
|
}
|
|
174745
174749
|
//#endregion
|
|
@@ -174930,9 +174934,9 @@ function nve() {
|
|
|
174930
174934
|
|
|
174931
174935
|
:host [part="root"] [part="content"] {
|
|
174932
174936
|
padding: var(--message-box-padding-top) var(--message-box-padding-right) var(--message-box-padding-bottom) var(--message-box-padding-left);
|
|
174933
|
-
align-items:
|
|
174937
|
+
align-items: center;
|
|
174934
174938
|
gap: var(--message-box-gap);
|
|
174935
|
-
flex-direction:
|
|
174939
|
+
flex-direction: column;
|
|
174936
174940
|
flex: 1;
|
|
174937
174941
|
display: flex;
|
|
174938
174942
|
overflow: auto;
|
|
@@ -175036,7 +175040,7 @@ var t4 = function(e, t, n, r) {
|
|
|
175036
175040
|
super.onIsOpenPropertyChanged(e, t);
|
|
175037
175041
|
}
|
|
175038
175042
|
onDialogResult(e) {
|
|
175039
|
-
this.emit(
|
|
175043
|
+
this.emit("dialogResult", { detail: e }), this.close();
|
|
175040
175044
|
}
|
|
175041
175045
|
};
|
|
175042
175046
|
t4([
|
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.251",
|
|
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.251",
|
|
19
|
+
"@breadstone/mosaik-elements-foundation": "^0.0.251"
|
|
20
20
|
},
|
|
21
21
|
"exports": {
|
|
22
22
|
".": {
|