@gloww/gloww 20.0.0-beta.3 → 20.0.0-beta.4
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/package.json +12 -11
- package/src/lib/gloww.theme.scss +45 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gloww/gloww",
|
|
3
|
-
"version": "20.0.0-beta.
|
|
3
|
+
"version": "20.0.0-beta.4",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^20.0.0",
|
|
6
6
|
"@angular/core": "^20.0.0",
|
|
@@ -8,19 +8,20 @@
|
|
|
8
8
|
"moment": "^2.30.1",
|
|
9
9
|
"jwt-decode": "^4.0.0"
|
|
10
10
|
},
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"default": "./fesm2022/gloww-gloww.mjs",
|
|
14
|
+
"types": "./index.d.ts"
|
|
15
|
+
},
|
|
16
|
+
"./gloww.theme": "./gloww.theme.scss",
|
|
17
|
+
"./package.json": {
|
|
18
|
+
"default": "./package.json"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
11
21
|
"dependencies": {
|
|
12
22
|
"tslib": "^2.8.0"
|
|
13
23
|
},
|
|
14
24
|
"sideEffects": false,
|
|
15
25
|
"module": "fesm2022/gloww-gloww.mjs",
|
|
16
|
-
"typings": "index.d.ts"
|
|
17
|
-
"exports": {
|
|
18
|
-
"./package.json": {
|
|
19
|
-
"default": "./package.json"
|
|
20
|
-
},
|
|
21
|
-
".": {
|
|
22
|
-
"types": "./index.d.ts",
|
|
23
|
-
"default": "./fesm2022/gloww-gloww.mjs"
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
+
"typings": "index.d.ts"
|
|
26
27
|
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
@use 'sass:map';
|
|
2
|
+
@use '@angular/material' as mat;
|
|
3
|
+
@import 'Components/menu-list-item/menu-list-item.component';
|
|
4
|
+
@import 'Components/code-editor/code-editor.component';
|
|
5
|
+
@import 'Components/auto-complete/auto-complete.component';
|
|
6
|
+
@mixin gloww-lib-theme($theme) {
|
|
7
|
+
@include code-editor-component-theme($theme);
|
|
8
|
+
@include menu-list-item-component-theme($theme);
|
|
9
|
+
@include auto-complete-component-theme($theme);
|
|
10
|
+
html,
|
|
11
|
+
body {
|
|
12
|
+
height: 100%;
|
|
13
|
+
}
|
|
14
|
+
body {
|
|
15
|
+
margin: 0;
|
|
16
|
+
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
17
|
+
}
|
|
18
|
+
.cdk-overlay-pane {
|
|
19
|
+
width: unset !important;
|
|
20
|
+
height: unset !important;
|
|
21
|
+
max-width: 100% !important;
|
|
22
|
+
max-height: 90% !important;
|
|
23
|
+
}
|
|
24
|
+
.mat-mdc-dialog-container {
|
|
25
|
+
max-width: 100%;
|
|
26
|
+
max-height: 90% !important;
|
|
27
|
+
//height: unset !important;
|
|
28
|
+
resize: both;
|
|
29
|
+
}
|
|
30
|
+
.dlg {
|
|
31
|
+
display: flex;
|
|
32
|
+
flex-direction: column;
|
|
33
|
+
height: 100%;
|
|
34
|
+
}
|
|
35
|
+
/*TODO(mdc-migration): The following rule targets internal classes of dialog that may no longer apply for the MDC version.*/
|
|
36
|
+
mat-dialog-content {
|
|
37
|
+
flex-grow: 1;
|
|
38
|
+
max-height: 80vh !important;
|
|
39
|
+
/*max-height: unset !important;*/
|
|
40
|
+
}
|
|
41
|
+
td.mat-mdc-cell {
|
|
42
|
+
padding-right: 10px !important;
|
|
43
|
+
padding-left: 10px !important;
|
|
44
|
+
}
|
|
45
|
+
}
|