@medyll/idae-slotui-svelte 0.84.0 → 0.86.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 +3 -3
- package/dist/index.js +3 -3
- package/dist/slotui-css/slotui-css.css +27 -27
- package/dist/slotui-css/slotui-min-css.css +27 -27
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
export * from './componentCite.js';
|
|
2
|
-
export * from './csss/csss.js';
|
|
3
2
|
export * as windowMinCss from './slotui-css/window.min.css';
|
|
4
3
|
export * as windowCss from './slotui-css/window.css';
|
|
5
4
|
export * as treeMinCss from './slotui-css/tree.min.css';
|
|
@@ -108,6 +107,7 @@ export * as autoCompleteMinCss from './slotui-css/auto-complete.min.css';
|
|
|
108
107
|
export * as autoCompleteCss from './slotui-css/auto-complete.css';
|
|
109
108
|
export * as alertMinCss from './slotui-css/alert.min.css';
|
|
110
109
|
export * as alertCss from './slotui-css/alert.css';
|
|
110
|
+
export * from './csss/csss.js';
|
|
111
111
|
export * from './utils/uses/toggler.js';
|
|
112
112
|
export * from './utils/uses/positioner.js';
|
|
113
113
|
export * from './utils/uses/navigation.js';
|
|
@@ -225,10 +225,10 @@ export * from './controls/rating/types.js';
|
|
|
225
225
|
export { default as Rating } from './controls/rating/Rating.svelte';
|
|
226
226
|
export * from './controls/progress/types.js';
|
|
227
227
|
export { default as Progress } from './controls/progress/Progress.svelte';
|
|
228
|
-
export * from './controls/inplaceedit/types.js';
|
|
229
|
-
export { default as InPlaceEdit } from './controls/inplaceedit/InPlaceEdit.svelte';
|
|
230
228
|
export * from './controls/confirm/types.js';
|
|
231
229
|
export { default as Confirm } from './controls/confirm/Confirm.svelte';
|
|
230
|
+
export * from './controls/inplaceedit/types.js';
|
|
231
|
+
export { default as InPlaceEdit } from './controls/inplaceedit/InPlaceEdit.svelte';
|
|
232
232
|
export * from './controls/checkbox/types.js';
|
|
233
233
|
export { default as Checkbox } from './controls/checkbox/Checkbox.svelte';
|
|
234
234
|
export * from './controls/button/types.js';
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
// auto exports of entry components
|
|
2
2
|
export * from './componentCite.js';
|
|
3
|
-
export * from './csss/csss.js';
|
|
4
3
|
export * as windowMinCss from './slotui-css/window.min.css';
|
|
5
4
|
export * as windowCss from './slotui-css/window.css';
|
|
6
5
|
export * as treeMinCss from './slotui-css/tree.min.css';
|
|
@@ -109,6 +108,7 @@ export * as autoCompleteMinCss from './slotui-css/auto-complete.min.css';
|
|
|
109
108
|
export * as autoCompleteCss from './slotui-css/auto-complete.css';
|
|
110
109
|
export * as alertMinCss from './slotui-css/alert.min.css';
|
|
111
110
|
export * as alertCss from './slotui-css/alert.css';
|
|
111
|
+
export * from './csss/csss.js';
|
|
112
112
|
export * from './utils/uses/toggler.js';
|
|
113
113
|
export * from './utils/uses/positioner.js';
|
|
114
114
|
export * from './utils/uses/navigation.js';
|
|
@@ -226,10 +226,10 @@ export * from './controls/rating/types.js';
|
|
|
226
226
|
export { default as Rating } from './controls/rating/Rating.svelte';
|
|
227
227
|
export * from './controls/progress/types.js';
|
|
228
228
|
export { default as Progress } from './controls/progress/Progress.svelte';
|
|
229
|
-
export * from './controls/inplaceedit/types.js';
|
|
230
|
-
export { default as InPlaceEdit } from './controls/inplaceedit/InPlaceEdit.svelte';
|
|
231
229
|
export * from './controls/confirm/types.js';
|
|
232
230
|
export { default as Confirm } from './controls/confirm/Confirm.svelte';
|
|
231
|
+
export * from './controls/inplaceedit/types.js';
|
|
232
|
+
export { default as InPlaceEdit } from './controls/inplaceedit/InPlaceEdit.svelte';
|
|
233
233
|
export * from './controls/checkbox/types.js';
|
|
234
234
|
export { default as Checkbox } from './controls/checkbox/Checkbox.svelte';
|
|
235
235
|
export * from './controls/button/types.js';
|
|
@@ -702,33 +702,6 @@ dialog.window .ctrlZone {
|
|
|
702
702
|
padding: var(--boot-menu-bottom-bar-padding);
|
|
703
703
|
}
|
|
704
704
|
|
|
705
|
-
/** panel.scss ----------------*/
|
|
706
|
-
:root {
|
|
707
|
-
--panel-margin-bottom: 2rem;
|
|
708
|
-
--panel-bar-margin-bottom: 2rem;
|
|
709
|
-
--panel-bar-padding-right: var(--sld-pad-tiny);
|
|
710
|
-
--panel-bar-button-padding: 0 var(--sld-pad-tiny);
|
|
711
|
-
--panel-bar-button-border: 1px solid rgba(255, 255, 255, 0.05);
|
|
712
|
-
--panel-bar-button-background-color: rgba(255, 255, 255, 0.1);
|
|
713
|
-
}
|
|
714
|
-
|
|
715
|
-
.panel {
|
|
716
|
-
position: relative;
|
|
717
|
-
margin-bottom: var(--panel-margin-bottom);
|
|
718
|
-
}
|
|
719
|
-
.panel .panel-bar {
|
|
720
|
-
margin-bottom: var(--panel-bar-margin-bottom);
|
|
721
|
-
display: flex;
|
|
722
|
-
min-width: auto;
|
|
723
|
-
align-items: center;
|
|
724
|
-
padding-right: var(--panel-bar-padding-right);
|
|
725
|
-
}
|
|
726
|
-
.panel .panel-bar button {
|
|
727
|
-
padding: var(--panel-bar-button-padding);
|
|
728
|
-
border: var(--panel-bar-button-border);
|
|
729
|
-
background-color: var(--panel-bar-button-background-color);
|
|
730
|
-
}
|
|
731
|
-
|
|
732
705
|
/** popper.scss ----------------*/
|
|
733
706
|
:root {
|
|
734
707
|
--popper-border-radius: var(--sld-radius-tiny);
|
|
@@ -816,6 +789,33 @@ dialog.window .ctrlZone {
|
|
|
816
789
|
padding-inline: 0;
|
|
817
790
|
}
|
|
818
791
|
|
|
792
|
+
/** panel.scss ----------------*/
|
|
793
|
+
:root {
|
|
794
|
+
--panel-margin-bottom: 2rem;
|
|
795
|
+
--panel-bar-margin-bottom: 2rem;
|
|
796
|
+
--panel-bar-padding-right: var(--sld-pad-tiny);
|
|
797
|
+
--panel-bar-button-padding: 0 var(--sld-pad-tiny);
|
|
798
|
+
--panel-bar-button-border: 1px solid rgba(255, 255, 255, 0.05);
|
|
799
|
+
--panel-bar-button-background-color: rgba(255, 255, 255, 0.1);
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
.panel {
|
|
803
|
+
position: relative;
|
|
804
|
+
margin-bottom: var(--panel-margin-bottom);
|
|
805
|
+
}
|
|
806
|
+
.panel .panel-bar {
|
|
807
|
+
margin-bottom: var(--panel-bar-margin-bottom);
|
|
808
|
+
display: flex;
|
|
809
|
+
min-width: auto;
|
|
810
|
+
align-items: center;
|
|
811
|
+
padding-right: var(--panel-bar-padding-right);
|
|
812
|
+
}
|
|
813
|
+
.panel .panel-bar button {
|
|
814
|
+
padding: var(--panel-bar-button-padding);
|
|
815
|
+
border: var(--panel-bar-button-border);
|
|
816
|
+
background-color: var(--panel-bar-button-background-color);
|
|
817
|
+
}
|
|
818
|
+
|
|
819
819
|
/** menu-list.scss ----------------*/
|
|
820
820
|
:root {
|
|
821
821
|
--menulist-padding: var(--sld-pad-tiny);
|
|
@@ -702,33 +702,6 @@ dialog.window .ctrlZone {
|
|
|
702
702
|
padding: var(--boot-menu-bottom-bar-padding);
|
|
703
703
|
}
|
|
704
704
|
|
|
705
|
-
/** panel.scss ----------------*/
|
|
706
|
-
:root {
|
|
707
|
-
--panel-margin-bottom: 2rem;
|
|
708
|
-
--panel-bar-margin-bottom: 2rem;
|
|
709
|
-
--panel-bar-padding-right: var(--sld-pad-tiny);
|
|
710
|
-
--panel-bar-button-padding: 0 var(--sld-pad-tiny);
|
|
711
|
-
--panel-bar-button-border: 1px solid rgba(255, 255, 255, 0.05);
|
|
712
|
-
--panel-bar-button-background-color: rgba(255, 255, 255, 0.1);
|
|
713
|
-
}
|
|
714
|
-
|
|
715
|
-
.panel {
|
|
716
|
-
position: relative;
|
|
717
|
-
margin-bottom: var(--panel-margin-bottom);
|
|
718
|
-
}
|
|
719
|
-
.panel .panel-bar {
|
|
720
|
-
margin-bottom: var(--panel-bar-margin-bottom);
|
|
721
|
-
display: flex;
|
|
722
|
-
min-width: auto;
|
|
723
|
-
align-items: center;
|
|
724
|
-
padding-right: var(--panel-bar-padding-right);
|
|
725
|
-
}
|
|
726
|
-
.panel .panel-bar button {
|
|
727
|
-
padding: var(--panel-bar-button-padding);
|
|
728
|
-
border: var(--panel-bar-button-border);
|
|
729
|
-
background-color: var(--panel-bar-button-background-color);
|
|
730
|
-
}
|
|
731
|
-
|
|
732
705
|
/** popper.scss ----------------*/
|
|
733
706
|
:root {
|
|
734
707
|
--popper-border-radius: var(--sld-radius-tiny);
|
|
@@ -816,6 +789,33 @@ dialog.window .ctrlZone {
|
|
|
816
789
|
padding-inline: 0;
|
|
817
790
|
}
|
|
818
791
|
|
|
792
|
+
/** panel.scss ----------------*/
|
|
793
|
+
:root {
|
|
794
|
+
--panel-margin-bottom: 2rem;
|
|
795
|
+
--panel-bar-margin-bottom: 2rem;
|
|
796
|
+
--panel-bar-padding-right: var(--sld-pad-tiny);
|
|
797
|
+
--panel-bar-button-padding: 0 var(--sld-pad-tiny);
|
|
798
|
+
--panel-bar-button-border: 1px solid rgba(255, 255, 255, 0.05);
|
|
799
|
+
--panel-bar-button-background-color: rgba(255, 255, 255, 0.1);
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
.panel {
|
|
803
|
+
position: relative;
|
|
804
|
+
margin-bottom: var(--panel-margin-bottom);
|
|
805
|
+
}
|
|
806
|
+
.panel .panel-bar {
|
|
807
|
+
margin-bottom: var(--panel-bar-margin-bottom);
|
|
808
|
+
display: flex;
|
|
809
|
+
min-width: auto;
|
|
810
|
+
align-items: center;
|
|
811
|
+
padding-right: var(--panel-bar-padding-right);
|
|
812
|
+
}
|
|
813
|
+
.panel .panel-bar button {
|
|
814
|
+
padding: var(--panel-bar-button-padding);
|
|
815
|
+
border: var(--panel-bar-button-border);
|
|
816
|
+
background-color: var(--panel-bar-button-background-color);
|
|
817
|
+
}
|
|
818
|
+
|
|
819
819
|
/** menu-list.scss ----------------*/
|
|
820
820
|
:root {
|
|
821
821
|
--menulist-padding: var(--sld-pad-tiny);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medyll/idae-slotui-svelte",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.86.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.2.0",
|
|
89
89
|
"@medyll/cssfabric": "^0.4.2",
|
|
90
|
-
"@medyll/idae-be": "^0.
|
|
91
|
-
"@medyll/idae-engine": "^1.
|
|
90
|
+
"@medyll/idae-be": "^0.85.0",
|
|
91
|
+
"@medyll/idae-engine": "^1.83.0",
|
|
92
92
|
"d3": "^7.9.0",
|
|
93
93
|
"lerna": "^8.2.1",
|
|
94
94
|
"npm-check-updates": "^17.1.16",
|