@medyll/idae-slotui-svelte 0.69.0 → 0.71.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.
|
@@ -9,7 +9,7 @@ declare const Icon: import("svelte").Component<{
|
|
|
9
9
|
rotate?: boolean | undefined;
|
|
10
10
|
color?: string | undefined;
|
|
11
11
|
rotation?: number | undefined;
|
|
12
|
-
display
|
|
12
|
+
display?: "block" | "inline-block" | "inline" | undefined;
|
|
13
13
|
}, {}, "icon" | "iconSize" | "element" | "color">;
|
|
14
14
|
type Icon = ReturnType<typeof Icon>;
|
|
15
15
|
export default Icon;
|
|
@@ -53,7 +53,7 @@ export type IconAppProps = {
|
|
|
53
53
|
* Display property for the icon.
|
|
54
54
|
* @param display
|
|
55
55
|
*/
|
|
56
|
-
display
|
|
56
|
+
display?: "block" | "inline-block" | "inline";
|
|
57
57
|
};
|
|
58
58
|
export declare const iconAppDemoValues: DemoerStoryProps<IconAppProps>;
|
|
59
59
|
export declare let parameters: DemoerStoryProps<IconAppProps>, componentArgs: IconAppProps;
|
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';
|
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';
|
|
@@ -1193,42 +1193,6 @@ li.menuItem .menu-list-item-action {
|
|
|
1193
1193
|
display: contents;
|
|
1194
1194
|
}
|
|
1195
1195
|
|
|
1196
|
-
/** chrome-frame.scss ----------------*/
|
|
1197
|
-
:root {
|
|
1198
|
-
--chrome-frame-color: var(--sld-color-foreground);
|
|
1199
|
-
--chrome-frame-background-color: var(--sld-color-background);
|
|
1200
|
-
--chrome-frame-bar-gap: var(--sld-gap-med);
|
|
1201
|
-
--chrome-frame-bar-padding: var(--sld-pad-medium);
|
|
1202
|
-
--chrome-frame-bar-border-bottom: var(--sld-color-border);
|
|
1203
|
-
--chrome-frame-content-flex: 1;
|
|
1204
|
-
}
|
|
1205
|
-
|
|
1206
|
-
.chrome-frame {
|
|
1207
|
-
display: flex;
|
|
1208
|
-
flex-direction: "column";
|
|
1209
|
-
align-items: flex-start;
|
|
1210
|
-
position: absolute;
|
|
1211
|
-
top: 0;
|
|
1212
|
-
height: 100%;
|
|
1213
|
-
width: 100%;
|
|
1214
|
-
color: var(--chrome-frame-color);
|
|
1215
|
-
background-color: var(--chrome-frame-background-color);
|
|
1216
|
-
overflow: hidden;
|
|
1217
|
-
}
|
|
1218
|
-
.chrome-frame-bar {
|
|
1219
|
-
display: flex;
|
|
1220
|
-
flex-direction: "row";
|
|
1221
|
-
align-items: center;
|
|
1222
|
-
gap: var(--chrome-frame-bar-gap);
|
|
1223
|
-
padding: var(--chrome-frame-bar-padding);
|
|
1224
|
-
border-bottom: 1px solid var(--chrome-frame-bar-border-bottom);
|
|
1225
|
-
}
|
|
1226
|
-
.chrome-frame-content {
|
|
1227
|
-
flex: var(--chrome-frame-content-flex);
|
|
1228
|
-
overflow: hidden;
|
|
1229
|
-
position: relative;
|
|
1230
|
-
}
|
|
1231
|
-
|
|
1232
1196
|
/** frame.scss ----------------*/
|
|
1233
1197
|
:root {
|
|
1234
1198
|
--frame-background-color: var(--sld-color-paper);
|
|
@@ -1280,6 +1244,42 @@ li.menuItem .menu-list-item-action {
|
|
|
1280
1244
|
position: relative;
|
|
1281
1245
|
}
|
|
1282
1246
|
|
|
1247
|
+
/** chrome-frame.scss ----------------*/
|
|
1248
|
+
:root {
|
|
1249
|
+
--chrome-frame-color: var(--sld-color-foreground);
|
|
1250
|
+
--chrome-frame-background-color: var(--sld-color-background);
|
|
1251
|
+
--chrome-frame-bar-gap: var(--sld-gap-med);
|
|
1252
|
+
--chrome-frame-bar-padding: var(--sld-pad-medium);
|
|
1253
|
+
--chrome-frame-bar-border-bottom: var(--sld-color-border);
|
|
1254
|
+
--chrome-frame-content-flex: 1;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
.chrome-frame {
|
|
1258
|
+
display: flex;
|
|
1259
|
+
flex-direction: "column";
|
|
1260
|
+
align-items: flex-start;
|
|
1261
|
+
position: absolute;
|
|
1262
|
+
top: 0;
|
|
1263
|
+
height: 100%;
|
|
1264
|
+
width: 100%;
|
|
1265
|
+
color: var(--chrome-frame-color);
|
|
1266
|
+
background-color: var(--chrome-frame-background-color);
|
|
1267
|
+
overflow: hidden;
|
|
1268
|
+
}
|
|
1269
|
+
.chrome-frame-bar {
|
|
1270
|
+
display: flex;
|
|
1271
|
+
flex-direction: "row";
|
|
1272
|
+
align-items: center;
|
|
1273
|
+
gap: var(--chrome-frame-bar-gap);
|
|
1274
|
+
padding: var(--chrome-frame-bar-padding);
|
|
1275
|
+
border-bottom: 1px solid var(--chrome-frame-bar-border-bottom);
|
|
1276
|
+
}
|
|
1277
|
+
.chrome-frame-content {
|
|
1278
|
+
flex: var(--chrome-frame-content-flex);
|
|
1279
|
+
overflow: hidden;
|
|
1280
|
+
position: relative;
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1283
1283
|
/** stylesheet.scss ----------------*/
|
|
1284
1284
|
:root {
|
|
1285
1285
|
--container-item: container-item;
|
|
@@ -1193,42 +1193,6 @@ li.menuItem .menu-list-item-action {
|
|
|
1193
1193
|
display: contents;
|
|
1194
1194
|
}
|
|
1195
1195
|
|
|
1196
|
-
/** chrome-frame.scss ----------------*/
|
|
1197
|
-
:root {
|
|
1198
|
-
--chrome-frame-color: var(--sld-color-foreground);
|
|
1199
|
-
--chrome-frame-background-color: var(--sld-color-background);
|
|
1200
|
-
--chrome-frame-bar-gap: var(--sld-gap-med);
|
|
1201
|
-
--chrome-frame-bar-padding: var(--sld-pad-medium);
|
|
1202
|
-
--chrome-frame-bar-border-bottom: var(--sld-color-border);
|
|
1203
|
-
--chrome-frame-content-flex: 1;
|
|
1204
|
-
}
|
|
1205
|
-
|
|
1206
|
-
.chrome-frame {
|
|
1207
|
-
display: flex;
|
|
1208
|
-
flex-direction: "column";
|
|
1209
|
-
align-items: flex-start;
|
|
1210
|
-
position: absolute;
|
|
1211
|
-
top: 0;
|
|
1212
|
-
height: 100%;
|
|
1213
|
-
width: 100%;
|
|
1214
|
-
color: var(--chrome-frame-color);
|
|
1215
|
-
background-color: var(--chrome-frame-background-color);
|
|
1216
|
-
overflow: hidden;
|
|
1217
|
-
}
|
|
1218
|
-
.chrome-frame-bar {
|
|
1219
|
-
display: flex;
|
|
1220
|
-
flex-direction: "row";
|
|
1221
|
-
align-items: center;
|
|
1222
|
-
gap: var(--chrome-frame-bar-gap);
|
|
1223
|
-
padding: var(--chrome-frame-bar-padding);
|
|
1224
|
-
border-bottom: 1px solid var(--chrome-frame-bar-border-bottom);
|
|
1225
|
-
}
|
|
1226
|
-
.chrome-frame-content {
|
|
1227
|
-
flex: var(--chrome-frame-content-flex);
|
|
1228
|
-
overflow: hidden;
|
|
1229
|
-
position: relative;
|
|
1230
|
-
}
|
|
1231
|
-
|
|
1232
1196
|
/** frame.scss ----------------*/
|
|
1233
1197
|
:root {
|
|
1234
1198
|
--frame-background-color: var(--sld-color-paper);
|
|
@@ -1280,6 +1244,42 @@ li.menuItem .menu-list-item-action {
|
|
|
1280
1244
|
position: relative;
|
|
1281
1245
|
}
|
|
1282
1246
|
|
|
1247
|
+
/** chrome-frame.scss ----------------*/
|
|
1248
|
+
:root {
|
|
1249
|
+
--chrome-frame-color: var(--sld-color-foreground);
|
|
1250
|
+
--chrome-frame-background-color: var(--sld-color-background);
|
|
1251
|
+
--chrome-frame-bar-gap: var(--sld-gap-med);
|
|
1252
|
+
--chrome-frame-bar-padding: var(--sld-pad-medium);
|
|
1253
|
+
--chrome-frame-bar-border-bottom: var(--sld-color-border);
|
|
1254
|
+
--chrome-frame-content-flex: 1;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
.chrome-frame {
|
|
1258
|
+
display: flex;
|
|
1259
|
+
flex-direction: "column";
|
|
1260
|
+
align-items: flex-start;
|
|
1261
|
+
position: absolute;
|
|
1262
|
+
top: 0;
|
|
1263
|
+
height: 100%;
|
|
1264
|
+
width: 100%;
|
|
1265
|
+
color: var(--chrome-frame-color);
|
|
1266
|
+
background-color: var(--chrome-frame-background-color);
|
|
1267
|
+
overflow: hidden;
|
|
1268
|
+
}
|
|
1269
|
+
.chrome-frame-bar {
|
|
1270
|
+
display: flex;
|
|
1271
|
+
flex-direction: "row";
|
|
1272
|
+
align-items: center;
|
|
1273
|
+
gap: var(--chrome-frame-bar-gap);
|
|
1274
|
+
padding: var(--chrome-frame-bar-padding);
|
|
1275
|
+
border-bottom: 1px solid var(--chrome-frame-bar-border-bottom);
|
|
1276
|
+
}
|
|
1277
|
+
.chrome-frame-content {
|
|
1278
|
+
flex: var(--chrome-frame-content-flex);
|
|
1279
|
+
overflow: hidden;
|
|
1280
|
+
position: relative;
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1283
1283
|
/** stylesheet.scss ----------------*/
|
|
1284
1284
|
:root {
|
|
1285
1285
|
--container-item: container-item;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medyll/idae-slotui-svelte",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.71.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.70.0",
|
|
91
|
+
"@medyll/idae-engine": "^1.68.0",
|
|
92
92
|
"d3": "^7.9.0",
|
|
93
93
|
"lerna": "^8.2.1",
|
|
94
94
|
"npm-check-updates": "^17.1.15",
|