halleyx-ui-framework 4.2.2 → 4.2.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.
Files changed (51) hide show
  1. package/dist/cjs/index.js +2 -2
  2. package/dist/es/index.css +1 -1
  3. package/dist/es/index.js +2 -2
  4. package/dist/src/assets/styles/buttonGroup.scss +211 -0
  5. package/dist/src/assets/styles/index.scss +1 -1
  6. package/dist/src/assets/styles/inputitems.scss +15 -0
  7. package/dist/src/assets/styles/objectViewer.scss +2 -2
  8. package/dist/src/assets/styles/switch.scss +412 -193
  9. package/dist/src/assets/styles/timeline.scss +5 -4
  10. package/dist/umd/index.umd.css +1 -1
  11. package/dist/umd/index.umd.js +2 -2
  12. package/dist/umd/index.umd.js.map +1 -1
  13. package/package.json +1 -1
  14. package/dist/src/assets/fonts/halley-icons-v4.eot +0 -0
  15. package/dist/src/assets/fonts/halley-icons-v4.svg +0 -356
  16. package/dist/src/assets/fonts/halley-icons-v4.ttf +0 -0
  17. package/dist/src/assets/fonts/halley-icons-v4.woff +0 -0
  18. package/dist/src/assets/fonts/halley-icons-v6.eot +0 -0
  19. package/dist/src/assets/fonts/halley-icons-v6.svg +0 -359
  20. package/dist/src/assets/fonts/halley-icons-v6.ttf +0 -0
  21. package/dist/src/assets/fonts/halley-icons-v6.woff +0 -0
  22. package/dist/src/assets/fonts/icomoon.eot +0 -0
  23. package/dist/src/assets/fonts/icomoon.svg +0 -139
  24. package/dist/src/assets/fonts/icomoon.ttf +0 -0
  25. package/dist/src/assets/fonts/icomoon.woff +0 -0
  26. package/dist/src/assets/icon-style.css +0 -1423
  27. package/dist/src/assets/icons/fonts/halley-icons-v4.eot +0 -0
  28. package/dist/src/assets/icons/fonts/halley-icons-v4.svg +0 -356
  29. package/dist/src/assets/icons/fonts/halley-icons-v4.ttf +0 -0
  30. package/dist/src/assets/icons/fonts/halley-icons-v4.woff +0 -0
  31. package/dist/src/assets/icons/fonts/halley-icons-v6.eot +0 -0
  32. package/dist/src/assets/icons/fonts/halley-icons-v6.svg +0 -359
  33. package/dist/src/assets/icons/fonts/halley-icons-v6.ttf +0 -0
  34. package/dist/src/assets/icons/fonts/halley-icons-v6.woff +0 -0
  35. package/dist/src/assets/icons/fonts/icomoon.eot +0 -0
  36. package/dist/src/assets/icons/fonts/icomoon.svg +0 -139
  37. package/dist/src/assets/icons/fonts/icomoon.ttf +0 -0
  38. package/dist/src/assets/icons/fonts/icomoon.woff +0 -0
  39. package/dist/src/assets/icons/icon-style(old).css +0 -1423
  40. package/dist/src/assets/styles/fonts/halley-icons-v4.eot +0 -0
  41. package/dist/src/assets/styles/fonts/halley-icons-v4.svg +0 -356
  42. package/dist/src/assets/styles/fonts/halley-icons-v4.ttf +0 -0
  43. package/dist/src/assets/styles/fonts/halley-icons-v4.woff +0 -0
  44. package/dist/src/assets/styles/fonts/halley-icons-v6.eot +0 -0
  45. package/dist/src/assets/styles/fonts/halley-icons-v6.svg +0 -359
  46. package/dist/src/assets/styles/fonts/halley-icons-v6.ttf +0 -0
  47. package/dist/src/assets/styles/fonts/halley-icons-v6.woff +0 -0
  48. package/dist/src/assets/styles/fonts/icomoon.eot +0 -0
  49. package/dist/src/assets/styles/fonts/icomoon.svg +0 -139
  50. package/dist/src/assets/styles/fonts/icomoon.ttf +0 -0
  51. package/dist/src/assets/styles/fonts/icomoon.woff +0 -0
@@ -0,0 +1,211 @@
1
+ .hlx-btn-group{
2
+
3
+ .hlx-g-btn {
4
+ outline: none !important;
5
+ }
6
+ .hlx-g-btn {
7
+ display: inline-flex;
8
+ align-items: center;
9
+ letter-spacing: 0.14px;
10
+ padding: 10px 14px;
11
+ margin-bottom: 0;
12
+ font-size: 14px;
13
+ font-weight: 400;
14
+ line-height: 1.42857143;
15
+ text-align: center;
16
+ white-space: nowrap;
17
+ vertical-align: middle;
18
+ -ms-touch-action: manipulation;
19
+ touch-action: manipulation;
20
+ cursor: pointer;
21
+ -webkit-user-select: none;
22
+ -moz-user-select: none;
23
+ -ms-user-select: none;
24
+ user-select: none;
25
+ background-image: none;
26
+ border: 2px solid transparent;
27
+ border-radius: 4px;
28
+ &.--border-bottom,
29
+ &.--border-top {
30
+ border-radius: 0 !important;
31
+ // border-width: unset;
32
+ }
33
+ }
34
+
35
+ & > .hlx-g-btn:last-child:not(:first-child),
36
+ & > .dropdown-toggle:not(:first-child) {
37
+ border-top-left-radius: 0;
38
+ border-bottom-left-radius: 0;
39
+ }
40
+
41
+ & > .hlx-g-btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
42
+ border-radius: 0;
43
+ }
44
+
45
+ & .hlx-g-btn + .hlx-g-btn,
46
+ & .hlx-g-btn + &,
47
+ & & + .hlx-g-btn,
48
+ & & + & {
49
+ margin-left: -1px;
50
+ }
51
+
52
+ .hlx-g-btn-default {
53
+ color: #333;
54
+ // background-color: #fff;
55
+ border-color: #54bd95;
56
+ border-width: thin;
57
+ &.--border-bottom,
58
+ &.--border-top {
59
+ border: 2px solid;
60
+ border-color: transparent;
61
+ }
62
+
63
+ &:hover,
64
+ &:focus {
65
+ color: #191a15;
66
+ background-color: #fbfbfb;
67
+ // border-color: #adadad;
68
+ &.--border-bottom {
69
+ color: #54bd95 !important;
70
+ background-color: transparent !important;
71
+ // border: 2px solid transparent;
72
+
73
+ // border-color: transparent;
74
+ }
75
+ }
76
+
77
+ // &:focus {
78
+ // color: #333;
79
+ // background-color: #e6e6e6;
80
+ // border-color: #8c8c8c;
81
+ // }
82
+ }
83
+
84
+ .hlx-g-btn:active {
85
+ background-image: none;
86
+ outline: 0;
87
+ -webkit-box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.125);
88
+ box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.125);
89
+ // border-width: thin;
90
+
91
+ &.--border-bottom {
92
+ -webkit-box-shadow: none;
93
+ box-shadow: none;
94
+ color: #54bd95 !important;
95
+ background-color: transparent !important;
96
+ // border-width: 2px;
97
+ // border-width: unset;
98
+
99
+
100
+ // border-bottom-color: #54bd95;
101
+ }
102
+ }
103
+
104
+ .hlx-g-btn.focus,
105
+ .hlx-g-btn:focus,
106
+ .hlx-g-btn:hover {
107
+ color: #333;
108
+ text-decoration: none;
109
+ z-index: 0;
110
+ }
111
+
112
+ &,
113
+ &-vertical {
114
+ position: relative;
115
+ display: flex;
116
+ flex-wrap: nowrap;
117
+
118
+ width: 100%;
119
+ // flex-wrap: wrap;
120
+ align-items: center;
121
+ align-content: center;
122
+ }
123
+
124
+ .hlx-g-btn-default.active,
125
+ .hlx-g-btn-default:active,
126
+ .open > .dropdown-toggle.hlx-g-btn-default {
127
+ color: #333;
128
+ // background-color: #fbfbfb;
129
+ }
130
+
131
+ .hlx-g-btn-active {
132
+ background-color: #54bd95 !important;
133
+ color: white;
134
+ border-color: #265e4b;
135
+ border-width: thin;
136
+
137
+ z-index: 5;
138
+ &.--border-bottom {
139
+ border-width: unset;
140
+
141
+ color: #54bd95 !important;
142
+ background-color: transparent !important;
143
+ border-color: transparent !important ;
144
+ border-bottom-color: #54bd95 !important ;
145
+ // border-radius: 2.6px !important;
146
+ border-bottom-left-radius: 1.8px !important;
147
+ border-bottom-right-radius: 1.8px !important;
148
+ border: 2px solid;
149
+ }
150
+ }
151
+
152
+ .hlx-g-btn-active:hover {
153
+ color: #fff;
154
+ background-color: #54bd95;
155
+ border-color: #265e4b;
156
+ z-index: 5;
157
+ &.--border-bottom {
158
+ color: #54bd95 !important;
159
+ background-color: transparent !important;
160
+ border-color: transparent;
161
+ }
162
+ }
163
+ .hlx-g-btn-active.focus,
164
+ .hlx-g-btn-active:focus {
165
+ color: white;
166
+ background-color: #54bd95;
167
+ border-color: #265e4b;
168
+ &.--border-bottom {
169
+ color: #54bd95 !important;
170
+ background-color: transparent !important;
171
+ border-color: transparent;
172
+ }
173
+ }
174
+ & > .hlx-g-btn:first-child:not(:last-child):not(.dropdown-toggle) {
175
+ border-top-right-radius: 0;
176
+ border-bottom-right-radius: 0;
177
+ }
178
+ & > .hlx-g-btn:first-child {
179
+ margin-left: 0;
180
+ }
181
+ &-vertical > .hlx-g-btn,
182
+ & > .hlx-g-btn {
183
+ position: relative;
184
+ float: left;
185
+ }
186
+
187
+ & > .hlx-g-btn:first-child:not(:last-child):not(.dropdown-toggle) {
188
+ border-top-right-radius: 0;
189
+ border-bottom-right-radius: 0;
190
+ }
191
+ & > .hlx-g-btn:first-child {
192
+ margin-left: 0;
193
+ }
194
+
195
+ .hlx-g-btn.active.focus,
196
+ .hlx-g-btn.active:focus,
197
+ .hlx-g-btn.focus,
198
+ .hlx-g-btn:active.focus,
199
+ .hlx-g-btn:active:focus,
200
+ .hlx-g-btn:focus {
201
+ outline: thin dotted;
202
+ outline: 5px auto -webkit-focus-ring-color;
203
+ outline-offset: -2px;
204
+ }
205
+
206
+ & > .hlx-g-btn.active,
207
+ & > .hlx-g-btn:active,
208
+ & > .hlx-g-btn:focus {
209
+ z-index: 2;
210
+ }
211
+ }
@@ -15,4 +15,4 @@
15
15
  './imagegallery.scss', './switch.scss', './colorpalette.scss',
16
16
  './calendar.scss', './contextMenu.scss', './newtable.scss', './drawer.scss',
17
17
  'fonts', './scrollbar.scss', './tablev2.scss', './customdropdown.scss',
18
- './visualbuilder.scss', './objectViewer.scss';
18
+ './visualbuilder.scss', './objectViewer.scss','./buttonGroup.scss';
@@ -289,6 +289,21 @@ input:checked + .slider:hover {
289
289
  background: var(--hlx-color-primary);
290
290
  }
291
291
  }
292
+ input:disabled + .slider {
293
+ background-color: var(--hlx-border-color);
294
+ // box-shadow: 0px 0px 8px -1px $grey;
295
+ border: 1px solid var(--hlx-border-color);
296
+ cursor: default;
297
+ }
298
+ input:disabled + .slider:hover {
299
+ background-color: var(--hlx-border-color);
300
+ // box-shadow: 0px 0px 8px -1px $grey;
301
+ border: 1px solid var(--hlx-border-color);
302
+ .slider.round:before {
303
+ background: var(--hlx-border-color);
304
+ cursor: default;
305
+ }
306
+ }
292
307
 
293
308
  // input:focus + .slider {
294
309
  // box-shadow: 0 0 1px white;
@@ -1,6 +1,6 @@
1
1
  .parent {
2
2
  display: none;
3
- font-size: 15px !important;
3
+ font-size: 14px !important;
4
4
  }
5
5
  .parent:first-child {
6
6
  display: block;
@@ -109,7 +109,7 @@
109
109
  border-radius: 5px;
110
110
  border: 1px solid #d8d8d8;
111
111
  padding: 8px;
112
- font-size: 15px;
112
+ font-size: 14px;
113
113
  margin-left: 1rem;
114
114
  margin-bottom: 1rem;
115
115
  }