@steedos/service-pages 2.4.3 → 2.4.5
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.
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
let modalRoot = document.getElementById(`steedos-page-modal-root-${name}`);
|
|
29
29
|
if (!modalRoot) {
|
|
30
30
|
modalRoot = document.createElement('div');
|
|
31
|
+
modalRoot.setAttribute('class', 'h-full');
|
|
31
32
|
modalRoot.setAttribute('id', `steedos-page-modal-root-${name}`);
|
|
32
33
|
document.body.appendChild(modalRoot)
|
|
33
34
|
}
|
|
@@ -275,6 +276,7 @@
|
|
|
275
276
|
if (!modalRoot) {
|
|
276
277
|
modalRoot = document.createElement('div');
|
|
277
278
|
modalRoot.setAttribute('id', rootId);
|
|
279
|
+
modalRoot.setAttribute('class', 'h-full');
|
|
278
280
|
$(".page-template-root")[0].appendChild(modalRoot);
|
|
279
281
|
}
|
|
280
282
|
|
|
@@ -368,6 +370,7 @@
|
|
|
368
370
|
if (!modalRoot) {
|
|
369
371
|
modalRoot = document.createElement('div');
|
|
370
372
|
modalRoot.setAttribute('id', rootId);
|
|
373
|
+
modalRoot.setAttribute('class', 'h-full');
|
|
371
374
|
$(".page-related-list-view-root")[0].appendChild(modalRoot);
|
|
372
375
|
}
|
|
373
376
|
|
|
@@ -620,6 +623,7 @@
|
|
|
620
623
|
if (!modalRoot) {
|
|
621
624
|
modalRoot = document.createElement('div');
|
|
622
625
|
modalRoot.setAttribute('id', rootId);
|
|
626
|
+
modalRoot.setAttribute('class', 'h-full');
|
|
623
627
|
$(".steedos-global-header-root")[0].appendChild(modalRoot);
|
|
624
628
|
}
|
|
625
629
|
if (page.render_engine && page.render_engine != 'redash') {
|
|
@@ -779,7 +783,7 @@
|
|
|
779
783
|
hiddenOn: "${app.showSidebar != true}",
|
|
780
784
|
body: [{
|
|
781
785
|
type: "wrapper",
|
|
782
|
-
className: 'sidebar-wrapper px-0 pt-4 pb-
|
|
786
|
+
className: 'sidebar-wrapper px-0 pt-4 pb-24 fixed z-20 h-full ease-in-out duration-300 flex flex-col border-r overflow-y-auto bg-white border-slate-200 block -translate-x-0 sm:w-[220px] w-64',
|
|
783
787
|
body: [
|
|
784
788
|
{
|
|
785
789
|
"type": "steedos-app-launcher",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/service-pages",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.5",
|
|
4
4
|
"main": "package.service.js",
|
|
5
5
|
"scripts": {},
|
|
6
6
|
"license": "MIT",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"publishConfig": {
|
|
9
9
|
"access": "public"
|
|
10
10
|
},
|
|
11
|
-
"gitHead": "
|
|
11
|
+
"gitHead": "f7a60f4fedc134e362a2db5903db606fc61802b2",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"ejs": "^3.1.8"
|
|
14
14
|
}
|