@breadstone/mosaik-elements-svelte 0.1.11 → 0.1.13
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 +77 -7
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 0.1.13 (2026-06-14)
|
|
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.1.12 (2026-06-14)
|
|
6
|
+
|
|
7
|
+
### 🚀 Features
|
|
8
|
+
|
|
9
|
+
- **success-state:** add iconSize property to SuccessStateElement and related components ([15e6640e72](https://github.com/RueDeRennes/mosaik/commit/15e6640e72))
|
|
10
|
+
|
|
1
11
|
## 0.1.11 (2026-06-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
|
@@ -72507,6 +72507,10 @@ function zI() {
|
|
|
72507
72507
|
display: flex;
|
|
72508
72508
|
}
|
|
72509
72509
|
|
|
72510
|
+
:host [part="actions"]:empty {
|
|
72511
|
+
display: none;
|
|
72512
|
+
}
|
|
72513
|
+
|
|
72510
72514
|
`;
|
|
72511
72515
|
}
|
|
72512
72516
|
//#endregion
|
|
@@ -72649,6 +72653,10 @@ function BI() {
|
|
|
72649
72653
|
display: flex;
|
|
72650
72654
|
}
|
|
72651
72655
|
|
|
72656
|
+
:host [part="actions"]:empty {
|
|
72657
|
+
display: none;
|
|
72658
|
+
}
|
|
72659
|
+
|
|
72652
72660
|
:host slot[name="header"] {
|
|
72653
72661
|
--empty-state-header-font-family: var(--joy-typography-body1-font-family);
|
|
72654
72662
|
--empty-state-header-font-size: var(--joy-typography-body1-font-size);
|
|
@@ -72811,6 +72819,10 @@ function VI() {
|
|
|
72811
72819
|
display: flex;
|
|
72812
72820
|
}
|
|
72813
72821
|
|
|
72822
|
+
:host [part="actions"]:empty {
|
|
72823
|
+
display: none;
|
|
72824
|
+
}
|
|
72825
|
+
|
|
72814
72826
|
:host slot[name="header"] {
|
|
72815
72827
|
--empty-state-header-font-family: var(--memphis-typography-body1-font-family);
|
|
72816
72828
|
--empty-state-header-font-size: var(--memphis-typography-body1-font-size);
|
|
@@ -72880,7 +72892,7 @@ HI([
|
|
|
72880
72892
|
UI("design:type", Object),
|
|
72881
72893
|
UI("design:paramtypes", [Object])
|
|
72882
72894
|
], WI.prototype, "iconSize", null), HI([
|
|
72883
|
-
|
|
72895
|
+
P({ type: String }),
|
|
72884
72896
|
UI("design:type", String),
|
|
72885
72897
|
UI("design:paramtypes", [String])
|
|
72886
72898
|
], WI.prototype, "header", null), WI = HI([H({
|
|
@@ -225543,6 +225555,10 @@ function bEe() {
|
|
|
225543
225555
|
display: flex;
|
|
225544
225556
|
}
|
|
225545
225557
|
|
|
225558
|
+
:host [part="actions"]:empty {
|
|
225559
|
+
display: none;
|
|
225560
|
+
}
|
|
225561
|
+
|
|
225546
225562
|
`;
|
|
225547
225563
|
}
|
|
225548
225564
|
//#endregion
|
|
@@ -225685,6 +225701,10 @@ function xEe() {
|
|
|
225685
225701
|
display: flex;
|
|
225686
225702
|
}
|
|
225687
225703
|
|
|
225704
|
+
:host [part="actions"]:empty {
|
|
225705
|
+
display: none;
|
|
225706
|
+
}
|
|
225707
|
+
|
|
225688
225708
|
:host slot[name="header"] {
|
|
225689
225709
|
--busy-state-header-font-family: var(--joy-typography-body1-font-family);
|
|
225690
225710
|
--busy-state-header-font-size: var(--joy-typography-body1-font-size);
|
|
@@ -225847,6 +225867,10 @@ function SEe() {
|
|
|
225847
225867
|
display: flex;
|
|
225848
225868
|
}
|
|
225849
225869
|
|
|
225870
|
+
:host [part="actions"]:empty {
|
|
225871
|
+
display: none;
|
|
225872
|
+
}
|
|
225873
|
+
|
|
225850
225874
|
:host slot[name="header"] {
|
|
225851
225875
|
--busy-state-header-font-family: var(--memphis-typography-body1-font-family);
|
|
225852
225876
|
--busy-state-header-font-size: var(--memphis-typography-body1-font-size);
|
|
@@ -225905,7 +225929,7 @@ q7([
|
|
|
225905
225929
|
J7("design:type", String),
|
|
225906
225930
|
J7("design:paramtypes", [String])
|
|
225907
225931
|
], Y7.prototype, "icon", null), q7([
|
|
225908
|
-
|
|
225932
|
+
P({ type: String }),
|
|
225909
225933
|
J7("design:type", String),
|
|
225910
225934
|
J7("design:paramtypes", [String])
|
|
225911
225935
|
], Y7.prototype, "header", null), Y7 = q7([H({
|
|
@@ -225923,7 +225947,7 @@ q7([
|
|
|
225923
225947
|
function CEe(e) {
|
|
225924
225948
|
return V`
|
|
225925
225949
|
<mosaik-icon part="icon"
|
|
225926
|
-
.size="${G.Giant}"
|
|
225950
|
+
.size="${e.iconSize ?? G.Giant}"
|
|
225927
225951
|
.data="${e.icon.trim().length > 0 ? e.icon : X.errorCircle}"
|
|
225928
225952
|
.variant="${ib.Danger}"></mosaik-icon>
|
|
225929
225953
|
<div part="root">
|
|
@@ -226097,6 +226121,10 @@ function wEe() {
|
|
|
226097
226121
|
display: flex;
|
|
226098
226122
|
}
|
|
226099
226123
|
|
|
226124
|
+
:host [part="actions"]:empty {
|
|
226125
|
+
display: none;
|
|
226126
|
+
}
|
|
226127
|
+
|
|
226100
226128
|
`;
|
|
226101
226129
|
}
|
|
226102
226130
|
//#endregion
|
|
@@ -226233,6 +226261,10 @@ function TEe() {
|
|
|
226233
226261
|
display: flex;
|
|
226234
226262
|
}
|
|
226235
226263
|
|
|
226264
|
+
:host [part="actions"]:empty {
|
|
226265
|
+
display: none;
|
|
226266
|
+
}
|
|
226267
|
+
|
|
226236
226268
|
:host slot[name="header"] {
|
|
226237
226269
|
--error-state-header-font-family: var(--joy-typography-body1-font-family);
|
|
226238
226270
|
--error-state-header-font-size: var(--joy-typography-body1-font-size);
|
|
@@ -226390,6 +226422,10 @@ function EEe() {
|
|
|
226390
226422
|
display: flex;
|
|
226391
226423
|
}
|
|
226392
226424
|
|
|
226425
|
+
:host [part="actions"]:empty {
|
|
226426
|
+
display: none;
|
|
226427
|
+
}
|
|
226428
|
+
|
|
226393
226429
|
:host slot[name="header"] {
|
|
226394
226430
|
--error-state-header-font-family: var(--memphis-typography-body1-font-family);
|
|
226395
226431
|
--error-state-header-font-size: var(--memphis-typography-body1-font-size);
|
|
@@ -226423,10 +226459,11 @@ var X7 = function(e, t, n, r) {
|
|
|
226423
226459
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
|
|
226424
226460
|
}, Q7 = class extends F(Y(LI)) {
|
|
226425
226461
|
_icon;
|
|
226462
|
+
_iconSize;
|
|
226426
226463
|
_header;
|
|
226427
226464
|
_code;
|
|
226428
226465
|
constructor() {
|
|
226429
|
-
super(), this._icon = "", this._header = "", this._code = "";
|
|
226466
|
+
super(), this._icon = "", this._iconSize = null, this._header = "", this._code = "";
|
|
226430
226467
|
}
|
|
226431
226468
|
static get is() {
|
|
226432
226469
|
return "mosaik-error-state";
|
|
@@ -226437,6 +226474,12 @@ var X7 = function(e, t, n, r) {
|
|
|
226437
226474
|
set icon(e) {
|
|
226438
226475
|
this._icon !== e && (this._icon = e);
|
|
226439
226476
|
}
|
|
226477
|
+
get iconSize() {
|
|
226478
|
+
return this._iconSize;
|
|
226479
|
+
}
|
|
226480
|
+
set iconSize(e) {
|
|
226481
|
+
this._iconSize !== e && (this._iconSize = e, this.requestUpdate("iconSize"));
|
|
226482
|
+
}
|
|
226440
226483
|
get header() {
|
|
226441
226484
|
return this._header;
|
|
226442
226485
|
}
|
|
@@ -226455,11 +226498,15 @@ X7([
|
|
|
226455
226498
|
Z7("design:type", String),
|
|
226456
226499
|
Z7("design:paramtypes", [String])
|
|
226457
226500
|
], Q7.prototype, "icon", null), X7([
|
|
226501
|
+
A({ type: G }),
|
|
226502
|
+
Z7("design:type", Object),
|
|
226503
|
+
Z7("design:paramtypes", [Object])
|
|
226504
|
+
], Q7.prototype, "iconSize", null), X7([
|
|
226458
226505
|
P({ type: String }),
|
|
226459
226506
|
Z7("design:type", String),
|
|
226460
226507
|
Z7("design:paramtypes", [String])
|
|
226461
226508
|
], Q7.prototype, "header", null), X7([
|
|
226462
|
-
|
|
226509
|
+
P({ type: String }),
|
|
226463
226510
|
Z7("design:type", String),
|
|
226464
226511
|
Z7("design:paramtypes", [String])
|
|
226465
226512
|
], Q7.prototype, "code", null), Q7 = X7([H({
|
|
@@ -226477,7 +226524,7 @@ X7([
|
|
|
226477
226524
|
function DEe(e) {
|
|
226478
226525
|
return V`
|
|
226479
226526
|
<mosaik-icon part="icon"
|
|
226480
|
-
.size="${G.Giant}"
|
|
226527
|
+
.size="${e.iconSize ?? G.Giant}"
|
|
226481
226528
|
.data="${e.icon.trim().length > 0 ? e.icon : X.successCircle}"
|
|
226482
226529
|
.variant="${ib.Success}"></mosaik-icon>
|
|
226483
226530
|
<div part="root">
|
|
@@ -226643,6 +226690,10 @@ function OEe() {
|
|
|
226643
226690
|
display: flex;
|
|
226644
226691
|
}
|
|
226645
226692
|
|
|
226693
|
+
:host [part="actions"]:empty {
|
|
226694
|
+
display: none;
|
|
226695
|
+
}
|
|
226696
|
+
|
|
226646
226697
|
`;
|
|
226647
226698
|
}
|
|
226648
226699
|
//#endregion
|
|
@@ -226779,6 +226830,10 @@ function kEe() {
|
|
|
226779
226830
|
display: flex;
|
|
226780
226831
|
}
|
|
226781
226832
|
|
|
226833
|
+
:host [part="actions"]:empty {
|
|
226834
|
+
display: none;
|
|
226835
|
+
}
|
|
226836
|
+
|
|
226782
226837
|
:host slot[name="header"] {
|
|
226783
226838
|
--success-state-header-font-family: var(--joy-typography-body1-font-family);
|
|
226784
226839
|
--success-state-header-font-size: var(--joy-typography-body1-font-size);
|
|
@@ -226936,6 +226991,10 @@ function AEe() {
|
|
|
226936
226991
|
display: flex;
|
|
226937
226992
|
}
|
|
226938
226993
|
|
|
226994
|
+
:host [part="actions"]:empty {
|
|
226995
|
+
display: none;
|
|
226996
|
+
}
|
|
226997
|
+
|
|
226939
226998
|
:host slot[name="header"] {
|
|
226940
226999
|
--success-state-header-font-family: var(--memphis-typography-body1-font-family);
|
|
226941
227000
|
--success-state-header-font-size: var(--memphis-typography-body1-font-size);
|
|
@@ -226969,9 +227028,10 @@ var $7 = function(e, t, n, r) {
|
|
|
226969
227028
|
if (typeof Reflect == "object" && typeof Reflect.metadata == "function") return Reflect.metadata(e, t);
|
|
226970
227029
|
}, t9 = class extends F(Y(LI)) {
|
|
226971
227030
|
_icon;
|
|
227031
|
+
_iconSize;
|
|
226972
227032
|
_header;
|
|
226973
227033
|
constructor() {
|
|
226974
|
-
super(), this._icon = "", this._header = "";
|
|
227034
|
+
super(), this._icon = "", this._iconSize = null, this._header = "";
|
|
226975
227035
|
}
|
|
226976
227036
|
static get is() {
|
|
226977
227037
|
return "mosaik-success-state";
|
|
@@ -226982,6 +227042,12 @@ var $7 = function(e, t, n, r) {
|
|
|
226982
227042
|
set icon(e) {
|
|
226983
227043
|
this._icon !== e && (this._icon = e);
|
|
226984
227044
|
}
|
|
227045
|
+
get iconSize() {
|
|
227046
|
+
return this._iconSize;
|
|
227047
|
+
}
|
|
227048
|
+
set iconSize(e) {
|
|
227049
|
+
this._iconSize !== e && (this._iconSize = e, this.requestUpdate("iconSize"));
|
|
227050
|
+
}
|
|
226985
227051
|
get header() {
|
|
226986
227052
|
return this._header;
|
|
226987
227053
|
}
|
|
@@ -226994,6 +227060,10 @@ $7([
|
|
|
226994
227060
|
e9("design:type", String),
|
|
226995
227061
|
e9("design:paramtypes", [String])
|
|
226996
227062
|
], t9.prototype, "icon", null), $7([
|
|
227063
|
+
A({ type: G }),
|
|
227064
|
+
e9("design:type", Object),
|
|
227065
|
+
e9("design:paramtypes", [Object])
|
|
227066
|
+
], t9.prototype, "iconSize", null), $7([
|
|
226997
227067
|
P({ type: String }),
|
|
226998
227068
|
e9("design:type", String),
|
|
226999
227069
|
e9("design:paramtypes", [String])
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/mosaik-elements-svelte",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "Mosaik elements for Svelte.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"url": "git+ssh://git@github.com/RueDeRennes/mosaik.git"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@breadstone/mosaik-elements": "0.1.
|
|
15
|
-
"@breadstone/mosaik-elements-foundation": "0.1.
|
|
14
|
+
"@breadstone/mosaik-elements": "0.1.13",
|
|
15
|
+
"@breadstone/mosaik-elements-foundation": "0.1.13",
|
|
16
16
|
"tslib": "2.8.1"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|