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