@breadstone/mosaik-elements-svelte 0.0.79 → 0.0.81
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 +6 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 0.0.81 (2025-07-30)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- update release version to 0.0.80 in package.json ([96a94fca93](https://github.com/RueDeRennes/mosaik/commit/96a94fca93))
|
|
6
|
+
|
|
7
|
+
## 0.0.80 (2025-07-30)
|
|
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.79 (2025-07-30)
|
|
2
12
|
|
|
3
13
|
### 🚀 Features
|
package/index.mjs
CHANGED
|
@@ -124365,6 +124365,7 @@ function $tt() {
|
|
|
124365
124365
|
--drawer-foreground-color: var(--joy-scheme-foreground);
|
|
124366
124366
|
--drawer-gap: 8px;
|
|
124367
124367
|
--drawer-height: 100%;
|
|
124368
|
+
--drawer-line-thickness: var(--joy-layout-thickness);
|
|
124368
124369
|
--drawer-padding-bottom: 8px;
|
|
124369
124370
|
--drawer-padding-left: 16px;
|
|
124370
124371
|
--drawer-padding-right: 16px;
|
|
@@ -124443,7 +124444,7 @@ function $tt() {
|
|
|
124443
124444
|
|
|
124444
124445
|
:host [part="root"]:after {
|
|
124445
124446
|
content: "";
|
|
124446
|
-
width:
|
|
124447
|
+
width: var(--drawer-line-thickness);
|
|
124447
124448
|
background-color: var(--drawer-border-color);
|
|
124448
124449
|
position: absolute;
|
|
124449
124450
|
top: 0;
|
|
@@ -124530,6 +124531,7 @@ function Ott() {
|
|
|
124530
124531
|
--drawer-foreground-color: var(--retro-scheme-foreground);
|
|
124531
124532
|
--drawer-gap: 8px;
|
|
124532
124533
|
--drawer-height: 100%;
|
|
124534
|
+
--drawer-line-thickness: var(--retro-layout-thickness);
|
|
124533
124535
|
--drawer-padding-bottom: 8px;
|
|
124534
124536
|
--drawer-padding-left: 16px;
|
|
124535
124537
|
--drawer-padding-right: 16px;
|
|
@@ -124608,7 +124610,7 @@ function Ott() {
|
|
|
124608
124610
|
|
|
124609
124611
|
:host [part="root"]:after {
|
|
124610
124612
|
content: "";
|
|
124611
|
-
width:
|
|
124613
|
+
width: var(--drawer-line-thickness);
|
|
124612
124614
|
background-color: var(--drawer-border-color);
|
|
124613
124615
|
position: absolute;
|
|
124614
124616
|
top: 0;
|
|
@@ -124699,6 +124701,7 @@ function Ttt() {
|
|
|
124699
124701
|
--drawer-foreground-color: unset;
|
|
124700
124702
|
--drawer-gap: unset;
|
|
124701
124703
|
--drawer-height: unset;
|
|
124704
|
+
--drawer-line-thickness: var(--cosmopolitan-layout-thickness);
|
|
124702
124705
|
--drawer-padding-bottom: unset;
|
|
124703
124706
|
--drawer-padding-left: unset;
|
|
124704
124707
|
--drawer-padding-right: unset;
|
|
@@ -124777,7 +124780,7 @@ function Ttt() {
|
|
|
124777
124780
|
|
|
124778
124781
|
:host [part="root"]:after {
|
|
124779
124782
|
content: "";
|
|
124780
|
-
width:
|
|
124783
|
+
width: var(--drawer-line-thickness);
|
|
124781
124784
|
background-color: var(--drawer-border-color);
|
|
124782
124785
|
position: absolute;
|
|
124783
124786
|
top: 0;
|
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.81",
|
|
4
4
|
"description": "Mosaik elements for Svelte.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"svelte": "^5.34.7"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@breadstone/mosaik-elements": "^0.0.
|
|
18
|
-
"@breadstone/mosaik-elements-foundation": "^0.0.
|
|
17
|
+
"@breadstone/mosaik-elements": "^0.0.81",
|
|
18
|
+
"@breadstone/mosaik-elements-foundation": "^0.0.81",
|
|
19
19
|
"tslib": "^2.8.1"
|
|
20
20
|
},
|
|
21
21
|
"exports": {
|