@medyll/idae-slotui-svelte 0.45.0 → 0.46.0
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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/slotui-css/menu-list.css +0 -2
- package/dist/slotui-css/menu-list.min.css +0 -2
- package/dist/slotui-css/slotui-css.css +18 -20
- package/dist/slotui-css/slotui-min-css.css +18 -20
- package/dist/ui/menuList/MenuList.svelte +0 -2
- package/dist/ui/menuList/MenuListItem.svelte +0 -2
- package/dist/ui/menuList/MenuListTitle.svelte +0 -2
- package/dist/ui/menuList/menu-list.scss +0 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -180,13 +180,13 @@ export * from './ui/login/store.js';
|
|
|
180
180
|
export { default as Login } from './ui/login/Login.svelte';
|
|
181
181
|
export * from './ui/frame/types.js';
|
|
182
182
|
export { default as Frame } from './ui/frame/Frame.svelte';
|
|
183
|
+
export { default as BootStrApp } from './ui/bootstrapp/BootStrApp.svelte';
|
|
183
184
|
export * from './ui/chromeFrame/types.js';
|
|
184
185
|
export * from './ui/chromeFrame/chromeFrame.utils.js';
|
|
185
186
|
export * from './ui/chromeFrame/chromeFrame.store.js';
|
|
186
187
|
export { default as ChromeFrameList } from './ui/chromeFrame/ChromeFrameList.svelte';
|
|
187
188
|
export { default as ChromeFrameButtonList } from './ui/chromeFrame/ChromeFrameButtonList.svelte';
|
|
188
189
|
export { default as ChromeFrame } from './ui/chromeFrame/ChromeFrame.svelte';
|
|
189
|
-
export { default as BootStrApp } from './ui/bootstrapp/BootStrApp.svelte';
|
|
190
190
|
export * from './styles/slotuisheet/utils.js';
|
|
191
191
|
export * from './styles/slotuisheet/types.js';
|
|
192
192
|
export { default as SlotuiSheet } from './styles/slotuisheet/SlotuiSheet.svelte';
|
package/dist/index.js
CHANGED
|
@@ -181,13 +181,13 @@ export * from './ui/login/store.js';
|
|
|
181
181
|
export { default as Login } from './ui/login/Login.svelte';
|
|
182
182
|
export * from './ui/frame/types.js';
|
|
183
183
|
export { default as Frame } from './ui/frame/Frame.svelte';
|
|
184
|
+
export { default as BootStrApp } from './ui/bootstrapp/BootStrApp.svelte';
|
|
184
185
|
export * from './ui/chromeFrame/types.js';
|
|
185
186
|
export * from './ui/chromeFrame/chromeFrame.utils.js';
|
|
186
187
|
export * from './ui/chromeFrame/chromeFrame.store.js';
|
|
187
188
|
export { default as ChromeFrameList } from './ui/chromeFrame/ChromeFrameList.svelte';
|
|
188
189
|
export { default as ChromeFrameButtonList } from './ui/chromeFrame/ChromeFrameButtonList.svelte';
|
|
189
190
|
export { default as ChromeFrame } from './ui/chromeFrame/ChromeFrame.svelte';
|
|
190
|
-
export { default as BootStrApp } from './ui/bootstrapp/BootStrApp.svelte';
|
|
191
191
|
export * from './styles/slotuisheet/utils.js';
|
|
192
192
|
export * from './styles/slotuisheet/types.js';
|
|
193
193
|
export { default as SlotuiSheet } from './styles/slotuisheet/SlotuiSheet.svelte';
|
|
@@ -853,8 +853,6 @@ dialog.window .ctrlZone {
|
|
|
853
853
|
--preset-gutter: var(--sld-gutter-default);
|
|
854
854
|
text-decoration: none;
|
|
855
855
|
overflow: hidden;
|
|
856
|
-
padding-left: calc(var(--preset-tall) / 4);
|
|
857
|
-
border: 1px solid transparent;
|
|
858
856
|
display: flex;
|
|
859
857
|
align-items: center;
|
|
860
858
|
position: relative;
|
|
@@ -4878,6 +4876,24 @@ hr.vertical {
|
|
|
4878
4876
|
display: flex;
|
|
4879
4877
|
}
|
|
4880
4878
|
|
|
4879
|
+
/** badge.scss ----------------*/
|
|
4880
|
+
:root {
|
|
4881
|
+
--badge-color-border: var(--sld-color-border);
|
|
4882
|
+
}
|
|
4883
|
+
|
|
4884
|
+
.badge {
|
|
4885
|
+
position: absolute;
|
|
4886
|
+
border-radius: 50%;
|
|
4887
|
+
border: 1px solid var(--badge-color-border);
|
|
4888
|
+
display: grid;
|
|
4889
|
+
place-items: center;
|
|
4890
|
+
width: 16px;
|
|
4891
|
+
height: 16px;
|
|
4892
|
+
}
|
|
4893
|
+
.badge .hidden {
|
|
4894
|
+
transform: scale(0, 0);
|
|
4895
|
+
}
|
|
4896
|
+
|
|
4881
4897
|
/** box.scss ----------------*/
|
|
4882
4898
|
:root {
|
|
4883
4899
|
--box-color-background: var(--sld-color-background);
|
|
@@ -4909,24 +4925,6 @@ hr.vertical {
|
|
|
4909
4925
|
justify-content: end;
|
|
4910
4926
|
}
|
|
4911
4927
|
|
|
4912
|
-
/** badge.scss ----------------*/
|
|
4913
|
-
:root {
|
|
4914
|
-
--badge-color-border: var(--sld-color-border);
|
|
4915
|
-
}
|
|
4916
|
-
|
|
4917
|
-
.badge {
|
|
4918
|
-
position: absolute;
|
|
4919
|
-
border-radius: 50%;
|
|
4920
|
-
border: 1px solid var(--badge-color-border);
|
|
4921
|
-
display: grid;
|
|
4922
|
-
place-items: center;
|
|
4923
|
-
width: 16px;
|
|
4924
|
-
height: 16px;
|
|
4925
|
-
}
|
|
4926
|
-
.badge .hidden {
|
|
4927
|
-
transform: scale(0, 0);
|
|
4928
|
-
}
|
|
4929
|
-
|
|
4930
4928
|
/** backdrop.scss ----------------*/
|
|
4931
4929
|
:root {
|
|
4932
4930
|
--backdrop-background-color: var(--sld-color-foreground-alpha-high);
|
|
@@ -853,8 +853,6 @@ dialog.window .ctrlZone {
|
|
|
853
853
|
--preset-gutter: var(--sld-gutter-default);
|
|
854
854
|
text-decoration: none;
|
|
855
855
|
overflow: hidden;
|
|
856
|
-
padding-left: calc(var(--preset-tall) / 4);
|
|
857
|
-
border: 1px solid transparent;
|
|
858
856
|
display: flex;
|
|
859
857
|
align-items: center;
|
|
860
858
|
position: relative;
|
|
@@ -4878,6 +4876,24 @@ hr.vertical {
|
|
|
4878
4876
|
display: flex;
|
|
4879
4877
|
}
|
|
4880
4878
|
|
|
4879
|
+
/** badge.scss ----------------*/
|
|
4880
|
+
:root {
|
|
4881
|
+
--badge-color-border: var(--sld-color-border);
|
|
4882
|
+
}
|
|
4883
|
+
|
|
4884
|
+
.badge {
|
|
4885
|
+
position: absolute;
|
|
4886
|
+
border-radius: 50%;
|
|
4887
|
+
border: 1px solid var(--badge-color-border);
|
|
4888
|
+
display: grid;
|
|
4889
|
+
place-items: center;
|
|
4890
|
+
width: 16px;
|
|
4891
|
+
height: 16px;
|
|
4892
|
+
}
|
|
4893
|
+
.badge .hidden {
|
|
4894
|
+
transform: scale(0, 0);
|
|
4895
|
+
}
|
|
4896
|
+
|
|
4881
4897
|
/** box.scss ----------------*/
|
|
4882
4898
|
:root {
|
|
4883
4899
|
--box-color-background: var(--sld-color-background);
|
|
@@ -4909,24 +4925,6 @@ hr.vertical {
|
|
|
4909
4925
|
justify-content: end;
|
|
4910
4926
|
}
|
|
4911
4927
|
|
|
4912
|
-
/** badge.scss ----------------*/
|
|
4913
|
-
:root {
|
|
4914
|
-
--badge-color-border: var(--sld-color-border);
|
|
4915
|
-
}
|
|
4916
|
-
|
|
4917
|
-
.badge {
|
|
4918
|
-
position: absolute;
|
|
4919
|
-
border-radius: 50%;
|
|
4920
|
-
border: 1px solid var(--badge-color-border);
|
|
4921
|
-
display: grid;
|
|
4922
|
-
place-items: center;
|
|
4923
|
-
width: 16px;
|
|
4924
|
-
height: 16px;
|
|
4925
|
-
}
|
|
4926
|
-
.badge .hidden {
|
|
4927
|
-
transform: scale(0, 0);
|
|
4928
|
-
}
|
|
4929
|
-
|
|
4930
4928
|
/** backdrop.scss ----------------*/
|
|
4931
4929
|
:root {
|
|
4932
4930
|
--backdrop-background-color: var(--sld-color-foreground-alpha-high);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medyll/idae-slotui-svelte",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.46.0",
|
|
4
4
|
"scope": "@medyll",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite dev",
|
|
@@ -87,8 +87,8 @@
|
|
|
87
87
|
"dependencies": {
|
|
88
88
|
"@iconify/svelte": "^4.0.2",
|
|
89
89
|
"@medyll/cssfabric": "^0.4.2",
|
|
90
|
-
"@medyll/idae-be": "^0.
|
|
91
|
-
"@medyll/idae-engine": "^1.
|
|
90
|
+
"@medyll/idae-be": "^0.45.0",
|
|
91
|
+
"@medyll/idae-engine": "^1.43.0",
|
|
92
92
|
"d3": "^7.9.0",
|
|
93
93
|
"lerna": "^8.1.8",
|
|
94
94
|
"npm-check-updates": "^17.0.2",
|