@breadstone/mosaik-elements-svelte 0.1.52 → 0.1.53
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 +4 -0
- package/index.mjs +33 -12
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/index.mjs
CHANGED
|
@@ -178237,10 +178237,10 @@ function oye() {
|
|
|
178237
178237
|
--drawer-content-font-text-transform: unset;
|
|
178238
178238
|
--drawer-content-font-weight: unset;
|
|
178239
178239
|
--drawer-content-gap: unset;
|
|
178240
|
-
--drawer-content-inset-bottom:
|
|
178241
|
-
--drawer-content-inset-left:
|
|
178242
|
-
--drawer-content-inset-right:
|
|
178243
|
-
--drawer-content-inset-top:
|
|
178240
|
+
--drawer-content-inset-bottom: 0px;
|
|
178241
|
+
--drawer-content-inset-left: 0px;
|
|
178242
|
+
--drawer-content-inset-right: 0px;
|
|
178243
|
+
--drawer-content-inset-top: 0px;
|
|
178244
178244
|
--drawer-content-padding-bottom: unset;
|
|
178245
178245
|
--drawer-content-padding-left: unset;
|
|
178246
178246
|
--drawer-content-padding-right: unset;
|
|
@@ -178314,7 +178314,7 @@ function sye() {
|
|
|
178314
178314
|
--drawer-content-font-weight: unset;
|
|
178315
178315
|
--drawer-content-gap: var(--joy-layout-space);
|
|
178316
178316
|
--drawer-content-inset-bottom: var(--joy-layout-space);
|
|
178317
|
-
--drawer-content-inset-left:
|
|
178317
|
+
--drawer-content-inset-left: 0px;
|
|
178318
178318
|
--drawer-content-inset-right: var(--joy-layout-space);
|
|
178319
178319
|
--drawer-content-inset-top: var(--joy-layout-space);
|
|
178320
178320
|
--drawer-content-padding-bottom: unset;
|
|
@@ -178389,10 +178389,10 @@ function cye() {
|
|
|
178389
178389
|
--drawer-content-font-text-transform: unset;
|
|
178390
178390
|
--drawer-content-font-weight: unset;
|
|
178391
178391
|
--drawer-content-gap: var(--memphis-layout-space);
|
|
178392
|
-
--drawer-content-inset-bottom:
|
|
178393
|
-
--drawer-content-inset-left:
|
|
178394
|
-
--drawer-content-inset-right:
|
|
178395
|
-
--drawer-content-inset-top:
|
|
178392
|
+
--drawer-content-inset-bottom: 0px;
|
|
178393
|
+
--drawer-content-inset-left: 0px;
|
|
178394
|
+
--drawer-content-inset-right: 0px;
|
|
178395
|
+
--drawer-content-inset-top: 0px;
|
|
178396
178396
|
--drawer-content-padding-bottom: unset;
|
|
178397
178397
|
--drawer-content-padding-left: unset;
|
|
178398
178398
|
--drawer-content-padding-right: unset;
|
|
@@ -232058,7 +232058,7 @@ function WDe() {
|
|
|
232058
232058
|
return B`
|
|
232059
232059
|
:host {
|
|
232060
232060
|
--app-background-color: var(--cosmopolitan-scheme-background);
|
|
232061
|
-
--app-body-offset-top:
|
|
232061
|
+
--app-body-offset-top: 0px;
|
|
232062
232062
|
--app-border-color: unset;
|
|
232063
232063
|
--app-border-radius: unset;
|
|
232064
232064
|
--app-border-style: solid;
|
|
@@ -232168,22 +232168,29 @@ function WDe() {
|
|
|
232168
232168
|
border-radius: var(--app-view-border-radius);
|
|
232169
232169
|
border-style: var(--app-view-border-style);
|
|
232170
232170
|
border-width: var(--app-view-border-width);
|
|
232171
|
+
flex-direction: column;
|
|
232172
|
+
min-height: 0;
|
|
232173
|
+
display: flex;
|
|
232171
232174
|
}
|
|
232172
232175
|
|
|
232173
232176
|
:host [part="body"] {
|
|
232174
232177
|
height: calc(100% - var(--app-body-offset-top));
|
|
232175
232178
|
flex-direction: row;
|
|
232179
|
+
flex: 0 auto;
|
|
232176
232180
|
width: 100%;
|
|
232181
|
+
min-height: 0;
|
|
232177
232182
|
display: flex;
|
|
232178
232183
|
}
|
|
232179
232184
|
|
|
232180
232185
|
:host [part="body"] [part="main"] {
|
|
232181
232186
|
flex: 1;
|
|
232182
232187
|
width: 100%;
|
|
232188
|
+
min-height: 0;
|
|
232183
232189
|
overflow: auto;
|
|
232184
232190
|
}
|
|
232185
232191
|
|
|
232186
232192
|
:host [part="body"] [part="rail"] {
|
|
232193
|
+
min-height: 0;
|
|
232187
232194
|
overflow: auto;
|
|
232188
232195
|
}
|
|
232189
232196
|
|
|
@@ -232195,7 +232202,7 @@ function GDe() {
|
|
|
232195
232202
|
return B`
|
|
232196
232203
|
:host {
|
|
232197
232204
|
--app-background-color: var(--joy-scheme-background);
|
|
232198
|
-
--app-body-offset-top:
|
|
232205
|
+
--app-body-offset-top: 0px;
|
|
232199
232206
|
--app-border-color: unset;
|
|
232200
232207
|
--app-border-radius: unset;
|
|
232201
232208
|
--app-border-style: solid;
|
|
@@ -232305,22 +232312,29 @@ function GDe() {
|
|
|
232305
232312
|
border-radius: var(--app-view-border-radius);
|
|
232306
232313
|
border-style: var(--app-view-border-style);
|
|
232307
232314
|
border-width: var(--app-view-border-width);
|
|
232315
|
+
flex-direction: column;
|
|
232316
|
+
min-height: 0;
|
|
232317
|
+
display: flex;
|
|
232308
232318
|
}
|
|
232309
232319
|
|
|
232310
232320
|
:host [part="body"] {
|
|
232311
232321
|
height: calc(100% - var(--app-body-offset-top));
|
|
232312
232322
|
flex-direction: row;
|
|
232323
|
+
flex: 0 auto;
|
|
232313
232324
|
width: 100%;
|
|
232325
|
+
min-height: 0;
|
|
232314
232326
|
display: flex;
|
|
232315
232327
|
}
|
|
232316
232328
|
|
|
232317
232329
|
:host [part="body"] [part="main"] {
|
|
232318
232330
|
flex: 1;
|
|
232319
232331
|
width: 100%;
|
|
232332
|
+
min-height: 0;
|
|
232320
232333
|
overflow: auto;
|
|
232321
232334
|
}
|
|
232322
232335
|
|
|
232323
232336
|
:host [part="body"] [part="rail"] {
|
|
232337
|
+
min-height: 0;
|
|
232324
232338
|
overflow: auto;
|
|
232325
232339
|
}
|
|
232326
232340
|
|
|
@@ -232336,7 +232350,7 @@ function KDe() {
|
|
|
232336
232350
|
return B`
|
|
232337
232351
|
:host {
|
|
232338
232352
|
--app-background-color: var(--memphis-scheme-background);
|
|
232339
|
-
--app-body-offset-top:
|
|
232353
|
+
--app-body-offset-top: 0px;
|
|
232340
232354
|
--app-border-color: unset;
|
|
232341
232355
|
--app-border-radius: unset;
|
|
232342
232356
|
--app-border-style: solid;
|
|
@@ -232446,22 +232460,29 @@ function KDe() {
|
|
|
232446
232460
|
border-radius: var(--app-view-border-radius);
|
|
232447
232461
|
border-style: var(--app-view-border-style);
|
|
232448
232462
|
border-width: var(--app-view-border-width);
|
|
232463
|
+
flex-direction: column;
|
|
232464
|
+
min-height: 0;
|
|
232465
|
+
display: flex;
|
|
232449
232466
|
}
|
|
232450
232467
|
|
|
232451
232468
|
:host [part="body"] {
|
|
232452
232469
|
height: calc(100% - var(--app-body-offset-top));
|
|
232453
232470
|
flex-direction: row;
|
|
232471
|
+
flex: 0 auto;
|
|
232454
232472
|
width: 100%;
|
|
232473
|
+
min-height: 0;
|
|
232455
232474
|
display: flex;
|
|
232456
232475
|
}
|
|
232457
232476
|
|
|
232458
232477
|
:host [part="body"] [part="main"] {
|
|
232459
232478
|
flex: 1;
|
|
232460
232479
|
width: 100%;
|
|
232480
|
+
min-height: 0;
|
|
232461
232481
|
overflow: auto;
|
|
232462
232482
|
}
|
|
232463
232483
|
|
|
232464
232484
|
:host [part="body"] [part="rail"] {
|
|
232485
|
+
min-height: 0;
|
|
232465
232486
|
overflow: auto;
|
|
232466
232487
|
}
|
|
232467
232488
|
|
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.53",
|
|
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.53",
|
|
15
|
+
"@breadstone/mosaik-elements-foundation": "0.1.53",
|
|
16
16
|
"tslib": "2.8.1"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|