halleyx-ui-framework 4.1.8 → 4.1.9
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/README.md +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/es/index.js +1 -1
- package/dist/src/assets/icon-style.css +1 -1
- package/dist/src/assets/icons/icon-style(old).css +1 -1
- package/dist/src/assets/icons/icon-style.css +1 -1
- package/dist/src/assets/styles/accordion.scss +99 -99
- package/dist/src/assets/styles/base.scss +6 -1
- package/dist/src/assets/styles/breadcrumb.scss +15 -15
- package/dist/src/assets/styles/buttons.scss +4 -4
- package/dist/src/assets/styles/calendar.scss +343 -346
- package/dist/src/assets/styles/cards.scss +17 -16
- package/dist/src/assets/styles/colorPicker.scss +15 -15
- package/dist/src/assets/styles/colorpalette.scss +138 -139
- package/dist/src/assets/styles/common/var.scss +258 -31
- package/dist/src/assets/styles/componentlayout.scss +126 -128
- package/dist/src/assets/styles/contextMenu.scss +46 -47
- package/dist/src/assets/styles/customdropdown.scss +113 -115
- package/dist/src/assets/styles/dashboard.scss +764 -770
- package/dist/src/assets/styles/dataview.scss +203 -206
- package/dist/src/assets/styles/divider.scss +8 -8
- package/dist/src/assets/styles/dottedPagination.scss +1 -1
- package/dist/src/assets/styles/draggables.scss +36 -39
- package/dist/src/assets/styles/drawer.scss +68 -53
- package/dist/src/assets/styles/errorpage.scss +61 -64
- package/dist/src/assets/styles/fileupload.scss +199 -205
- package/dist/src/assets/styles/fonts.scss +29 -9
- package/dist/src/assets/styles/icon.scss +1 -1
- package/dist/src/assets/styles/imagegallery.scss +169 -167
- package/dist/src/assets/styles/importProgress.scss +1 -1
- package/dist/src/assets/styles/index.scss +21 -0
- package/dist/src/assets/styles/inputfields.scss +44 -46
- package/dist/src/assets/styles/inputitems.scss +315 -318
- package/dist/src/assets/styles/label.scss +48 -54
- package/dist/src/assets/styles/loaders.scss +1 -1
- package/dist/src/assets/styles/mixins/_var.scss +31 -37
- package/dist/src/assets/styles/mixins/functions.scss +7 -7
- package/dist/src/assets/styles/modalwindow.scss +100 -103
- package/dist/src/assets/styles/newtable.scss +10 -23
- package/dist/src/assets/styles/objectViewer.scss +80 -80
- package/dist/src/assets/styles/pagination.scss +12 -6
- package/dist/src/assets/styles/rating.scss +2 -2
- package/dist/src/assets/styles/scrollbar.scss +14 -14
- package/dist/src/assets/styles/search.scss +162 -169
- package/dist/src/assets/styles/select.scss +455 -480
- package/dist/src/assets/styles/sidebar.scss +14 -2
- package/dist/src/assets/styles/signup.scss +118 -128
- package/dist/src/assets/styles/slideControl.scss +1 -0
- package/dist/src/assets/styles/source_content.scss +13 -13
- package/dist/src/assets/styles/speeddial.scss +152 -163
- package/dist/src/assets/styles/style.css.map +12 -12
- package/dist/src/assets/styles/switch.scss +177 -189
- package/dist/src/assets/styles/tablev2.scss +140 -143
- package/dist/src/assets/styles/tabs.scss +48 -49
- package/dist/src/assets/styles/tag.scss +3 -3
- package/dist/src/assets/styles/texteditor.scss +165 -172
- package/dist/src/assets/styles/timeline.scss +384 -400
- package/dist/src/assets/styles/tooltip.scss +52 -72
- package/dist/src/assets/styles/tree.scss +13 -15
- package/dist/src/assets/styles/treeSelect.scss +8 -8
- package/dist/src/assets/styles/variables.scss +9 -9
- package/dist/src/assets/styles/visualbuilder.scss +362 -366
- package/dist/umd/index.umd.js +1 -1
- package/dist/umd/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/dist/es/index.css +0 -1
- package/dist/umd/index.umd.css +0 -1
|
@@ -1,85 +1,100 @@
|
|
|
1
|
-
.sidenav-right,
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
1
|
+
.sidenav-right,
|
|
2
|
+
.sidenav-left {
|
|
3
|
+
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
|
|
4
|
+
-moz-box-sizing: border-box; /* Firefox, other Gecko */
|
|
5
|
+
box-sizing: border-box;
|
|
6
|
+
// height: 100%;
|
|
7
|
+
width: 0;
|
|
8
|
+
position: fixed;
|
|
9
|
+
z-index: 1000;
|
|
10
|
+
top: 0;
|
|
11
|
+
right: 0;
|
|
12
|
+
background-color: rgb(255, 255, 255);
|
|
13
|
+
overflow-x: hidden;
|
|
14
|
+
transition: width 0.2s;
|
|
15
|
+
padding: 10px;
|
|
16
|
+
font-size: 14px;
|
|
17
|
+
display: none;
|
|
17
18
|
}
|
|
18
19
|
.sidenav-top {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
20
|
+
width: 100%;
|
|
21
|
+
position: fixed;
|
|
22
|
+
z-index: 1000;
|
|
23
|
+
top: 0;
|
|
24
|
+
left: 0;
|
|
25
|
+
background-color: white;
|
|
26
|
+
overflow-x: hidden;
|
|
27
|
+
transition: width 0.2s;
|
|
28
|
+
box-sizing: border-box;
|
|
29
|
+
padding: 10px;
|
|
30
|
+
font-size: 14px;
|
|
30
31
|
}
|
|
31
32
|
.sidenav-bottom {
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
33
|
+
width: 100%;
|
|
34
|
+
position: fixed;
|
|
35
|
+
z-index: 1000;
|
|
36
|
+
bottom: 0;
|
|
37
|
+
left: 0;
|
|
38
|
+
background-color: white;
|
|
39
|
+
overflow-x: hidden;
|
|
40
|
+
transition: width 0.2s;
|
|
41
|
+
box-sizing: border-box;
|
|
42
|
+
padding: 10px;
|
|
43
|
+
font-size: 14px;
|
|
43
44
|
}
|
|
44
45
|
|
|
45
|
-
.header-panel-right,
|
|
46
|
+
.header-panel-right,
|
|
47
|
+
.header-panel-left,
|
|
48
|
+
.header-panel-top,
|
|
49
|
+
.header-panel-bottom {
|
|
46
50
|
height: 7vh;
|
|
47
51
|
width: 100%;
|
|
48
52
|
display: flex;
|
|
49
53
|
justify-content: space-between;
|
|
50
54
|
align-items: center;
|
|
51
|
-
.title-right,
|
|
52
|
-
|
|
55
|
+
.title-right,
|
|
56
|
+
.title-left,
|
|
57
|
+
.title-top,
|
|
58
|
+
.title-bottom {
|
|
59
|
+
min-width: 70px;
|
|
53
60
|
}
|
|
54
61
|
}
|
|
55
|
-
.body-panel-right,
|
|
62
|
+
.body-panel-right,
|
|
63
|
+
.body-panel-left {
|
|
56
64
|
height: 84vh;
|
|
57
65
|
padding: 20px 0px;
|
|
58
66
|
}
|
|
59
|
-
.footer-panel-right,
|
|
67
|
+
.footer-panel-right,
|
|
68
|
+
.footer-panel-left {
|
|
60
69
|
height: 6vh;
|
|
61
70
|
}
|
|
62
71
|
|
|
63
|
-
.header-panel-top,
|
|
72
|
+
.header-panel-top,
|
|
73
|
+
.header-panel-bottom {
|
|
64
74
|
height: 15%;
|
|
65
75
|
width: 100%;
|
|
66
76
|
display: flex;
|
|
67
77
|
justify-content: space-between;
|
|
68
78
|
align-items: center;
|
|
69
|
-
.title-right,
|
|
70
|
-
|
|
79
|
+
.title-right,
|
|
80
|
+
.title-left,
|
|
81
|
+
.title-top,
|
|
82
|
+
.title-bottom {
|
|
83
|
+
min-width: 70px;
|
|
71
84
|
}
|
|
72
85
|
}
|
|
73
|
-
.body-panel-top,
|
|
86
|
+
.body-panel-top,
|
|
87
|
+
.body-panel-bottom {
|
|
74
88
|
padding: 20px 0px;
|
|
75
89
|
height: 70%;
|
|
76
90
|
}
|
|
77
|
-
.footer-panel-top,
|
|
91
|
+
.footer-panel-top,
|
|
92
|
+
.footer-panel-bottom {
|
|
78
93
|
height: 15%;
|
|
79
94
|
}
|
|
80
95
|
|
|
81
|
-
|
|
82
|
-
.sidenav-margin-
|
|
96
|
+
.sidenav-margin-right,
|
|
97
|
+
.sidenav-margin-left {
|
|
83
98
|
height: 100%;
|
|
84
99
|
width: 0;
|
|
85
100
|
position: fixed;
|
|
@@ -89,7 +104,7 @@
|
|
|
89
104
|
opacity: 50%;
|
|
90
105
|
overflow-x: hidden;
|
|
91
106
|
}
|
|
92
|
-
.sidenav-margin-top{
|
|
107
|
+
.sidenav-margin-top {
|
|
93
108
|
height: 100%;
|
|
94
109
|
width: 0;
|
|
95
110
|
position: fixed;
|
|
@@ -100,7 +115,7 @@
|
|
|
100
115
|
opacity: 50%;
|
|
101
116
|
overflow-x: hidden;
|
|
102
117
|
}
|
|
103
|
-
.sidenav-margin-bottom{
|
|
118
|
+
.sidenav-margin-bottom {
|
|
104
119
|
height: 100%;
|
|
105
120
|
width: 0;
|
|
106
121
|
position: fixed;
|
|
@@ -110,4 +125,4 @@
|
|
|
110
125
|
background-color: #000;
|
|
111
126
|
opacity: 50%;
|
|
112
127
|
overflow-x: hidden;
|
|
113
|
-
}
|
|
128
|
+
}
|
|
@@ -1,78 +1,75 @@
|
|
|
1
|
-
|
|
2
1
|
* {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
// font-family: OpenSans;
|
|
7
6
|
}
|
|
8
7
|
|
|
9
8
|
.error-page-container {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
9
|
+
font-family: var(--hlx-font-type-content);
|
|
10
|
+
height: 90%;
|
|
11
|
+
width: 100%;
|
|
12
|
+
display: grid;
|
|
13
|
+
grid-template-columns: 1fr 1fr;
|
|
14
|
+
column-gap: 50px;
|
|
15
|
+
align-items: center;
|
|
16
|
+
text-align: left;
|
|
17
|
+
|
|
18
|
+
section:first-of-type {
|
|
19
|
+
display: flex;
|
|
20
|
+
justify-content: center;
|
|
18
21
|
|
|
19
|
-
|
|
22
|
+
img {
|
|
23
|
+
width: 90%;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
20
26
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
width: 90%;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
27
|
+
section:last-of-type {
|
|
28
|
+
display: flex;
|
|
29
|
+
flex-direction: column;
|
|
30
|
+
row-gap: 30px;
|
|
28
31
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
32
|
+
h5 {
|
|
33
|
+
font-size: 50px;
|
|
34
|
+
line-height: 50px;
|
|
35
|
+
color: var(--hlx-text-color-primary);
|
|
36
|
+
}
|
|
37
|
+
h4 {
|
|
38
|
+
color: var(--hlx-text-color-primary);
|
|
39
|
+
}
|
|
33
40
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
color: var(--hlx-text-color-primary)
|
|
41
|
-
}
|
|
41
|
+
p {
|
|
42
|
+
font-size: var(--hlx-font-content-size);
|
|
43
|
+
width: 80%;
|
|
44
|
+
line-height: 25px;
|
|
45
|
+
color: var(--hlx-text-color-primary);
|
|
46
|
+
}
|
|
42
47
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
background-color: var(--hlx-color-primary);
|
|
54
|
-
color: #fff;
|
|
55
|
-
font-size: var(--hlx-font-content-size);
|
|
56
|
-
height: 40px;
|
|
57
|
-
border: 0;
|
|
58
|
-
cursor: pointer;
|
|
59
|
-
border-radius: 5px;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
48
|
+
button {
|
|
49
|
+
width: fit-content;
|
|
50
|
+
padding: 10px 20px;
|
|
51
|
+
background-color: var(--hlx-color-primary);
|
|
52
|
+
color: #fff;
|
|
53
|
+
font-size: var(--hlx-font-content-size);
|
|
54
|
+
height: 40px;
|
|
55
|
+
border: 0;
|
|
56
|
+
cursor: pointer;
|
|
57
|
+
border-radius: 5px;
|
|
62
58
|
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
63
61
|
|
|
64
62
|
@media only screen and (max-width: 375px) {
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
63
|
+
.error-page-container {
|
|
64
|
+
display: flex;
|
|
65
|
+
flex-direction: column;
|
|
66
|
+
justify-content: center;
|
|
67
|
+
row-gap: 30px;
|
|
70
68
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
}
|
|
69
|
+
section:first-of-type {
|
|
70
|
+
img {
|
|
71
|
+
width: 80%;
|
|
72
|
+
}
|
|
78
73
|
}
|
|
74
|
+
}
|
|
75
|
+
}
|