halleyx-ui-framework 4.1.8 → 4.2.0

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.css +1 -1
  4. package/dist/es/index.js +1 -1
  5. package/dist/src/assets/icon-style.css +1 -1
  6. package/dist/src/assets/icons/icon-style(old).css +1 -1
  7. package/dist/src/assets/icons/icon-style.css +1 -1
  8. package/dist/src/assets/styles/accordion.scss +99 -99
  9. package/dist/src/assets/styles/base.scss +2 -1
  10. package/dist/src/assets/styles/breadcrumb.scss +15 -15
  11. package/dist/src/assets/styles/buttons.scss +4 -4
  12. package/dist/src/assets/styles/calendar.scss +343 -346
  13. package/dist/src/assets/styles/cards.scss +17 -16
  14. package/dist/src/assets/styles/colorPicker.scss +15 -15
  15. package/dist/src/assets/styles/colorpalette.scss +138 -139
  16. package/dist/src/assets/styles/common/var.scss +213 -215
  17. package/dist/src/assets/styles/componentlayout.scss +126 -128
  18. package/dist/src/assets/styles/contextMenu.scss +46 -47
  19. package/dist/src/assets/styles/customdropdown.scss +113 -115
  20. package/dist/src/assets/styles/dashboard.scss +764 -770
  21. package/dist/src/assets/styles/dataview.scss +203 -206
  22. package/dist/src/assets/styles/divider.scss +8 -8
  23. package/dist/src/assets/styles/dottedPagination.scss +1 -1
  24. package/dist/src/assets/styles/draggables.scss +36 -39
  25. package/dist/src/assets/styles/drawer.scss +68 -53
  26. package/dist/src/assets/styles/errorpage.scss +61 -64
  27. package/dist/src/assets/styles/fileupload.scss +199 -205
  28. package/dist/src/assets/styles/fonts.scss +14 -14
  29. package/dist/src/assets/styles/icon.scss +1 -1
  30. package/dist/src/assets/styles/imagegallery.scss +169 -167
  31. package/dist/src/assets/styles/importProgress.scss +1 -1
  32. package/dist/src/assets/styles/index.scss +18 -17
  33. package/dist/src/assets/styles/inputfields.scss +44 -46
  34. package/dist/src/assets/styles/inputitems.scss +315 -318
  35. package/dist/src/assets/styles/label.scss +48 -54
  36. package/dist/src/assets/styles/loaders.scss +1 -1
  37. package/dist/src/assets/styles/mixins/_var.scss +31 -37
  38. package/dist/src/assets/styles/mixins/functions.scss +7 -7
  39. package/dist/src/assets/styles/modalwindow.scss +100 -103
  40. package/dist/src/assets/styles/newtable.scss +10 -23
  41. package/dist/src/assets/styles/objectViewer.scss +80 -80
  42. package/dist/src/assets/styles/pagination.scss +6 -6
  43. package/dist/src/assets/styles/rating.scss +2 -2
  44. package/dist/src/assets/styles/scrollbar.scss +14 -14
  45. package/dist/src/assets/styles/search.scss +162 -169
  46. package/dist/src/assets/styles/select.scss +455 -480
  47. package/dist/src/assets/styles/sidebar.scss +2 -3
  48. package/dist/src/assets/styles/signup.scss +118 -128
  49. package/dist/src/assets/styles/slideControl.scss +1 -0
  50. package/dist/src/assets/styles/source_content.scss +13 -13
  51. package/dist/src/assets/styles/speeddial.scss +152 -163
  52. package/dist/src/assets/styles/style.css.map +12 -12
  53. package/dist/src/assets/styles/switch.scss +177 -189
  54. package/dist/src/assets/styles/tablev2.scss +140 -143
  55. package/dist/src/assets/styles/tabs.scss +48 -49
  56. package/dist/src/assets/styles/tag.scss +3 -3
  57. package/dist/src/assets/styles/texteditor.scss +165 -172
  58. package/dist/src/assets/styles/timeline.scss +384 -400
  59. package/dist/src/assets/styles/tooltip.scss +52 -72
  60. package/dist/src/assets/styles/tree.scss +13 -15
  61. package/dist/src/assets/styles/treeSelect.scss +8 -8
  62. package/dist/src/assets/styles/variables.scss +9 -9
  63. package/dist/src/assets/styles/visualbuilder.scss +362 -366
  64. package/dist/umd/index.umd.css +1 -1
  65. package/dist/umd/index.umd.js +1 -1
  66. package/dist/umd/index.umd.js.map +1 -1
  67. package/package.json +1 -1
@@ -1,8 +1,8 @@
1
- @use "sass:map";
2
- @use "sass:math";
1
+ @use 'sass:map';
2
+ @use 'sass:math';
3
3
  /*/* Element Chalk Variables */
4
- @import "../mixins/config.scss";
5
- @import "../mixins/functions.scss";
4
+ @import '../mixins/config.scss';
5
+ @import '../mixins/functions.scss';
6
6
 
7
7
  $--types: primary, success, warning, error, info;
8
8
 
@@ -19,77 +19,77 @@ $--colors: map.deep-merge(
19
19
  "light": #a8dec9,
20
20
  "lighter": #e4fff5,
21
21
  ),
22
- "success": (
23
- "dark": #00954a,
24
- "base": #02b55c,
25
- "light": #dcf9ea,
22
+ 'success': (
23
+ 'dark': #00954a,
24
+ 'base': #02b55c,
25
+ 'light': #dcf9ea,
26
26
  ),
27
- "warning": (
28
- "dark": #ff9500,
29
- "base": #f8a523,
30
- "light": #f9ecd7,
27
+ 'warning': (
28
+ 'dark': #ff9500,
29
+ 'base': #f8a523,
30
+ 'light': #f9ecd7,
31
31
  ),
32
- "error": (
33
- "dark": #fc3232,
34
- "base": #ff5050,
35
- "light": #ffe8e8,
32
+ 'error': (
33
+ 'dark': #fc3232,
34
+ 'base': #ff5050,
35
+ 'light': #ffe8e8,
36
36
  ),
37
- "info": (
38
- "dark": #0065b2,
39
- "base": #2879b7,
40
- "light": #d8edfc,
37
+ 'info': (
38
+ 'dark': #0065b2,
39
+ 'base': #2879b7,
40
+ 'light': #d8edfc,
41
41
  ),
42
- "link": (
43
- "dark": #143c5b,
44
- "base": #2879b7,
45
- "light": #d8edfc,
42
+ 'link': (
43
+ 'dark': #143c5b,
44
+ 'base': #2879b7,
45
+ 'light': #d8edfc,
46
46
  ),
47
- "disable": (
48
- "dark": #6f5c90,
49
- "base": #ece9f1,
50
- "text": #d0c9d6,
47
+ 'disable': (
48
+ 'dark': #6f5c90,
49
+ 'base': #ece9f1,
50
+ 'text': #d0c9d6,
51
51
  ),
52
-
53
- "sidebar": (
54
- "base": #001723,
52
+
53
+ 'sidebar': (
54
+ 'base': #001723,
55
55
  ),
56
56
  ),
57
57
  $--colors
58
58
  );
59
59
 
60
- $--color-white: map.get($--colors, "white") !default;
61
- $--color-black: map.get($--colors, "black") !default;
60
+ $--color-white: map.get($--colors, 'white') !default;
61
+ $--color-black: map.get($--colors, 'black') !default;
62
62
  /*Primary colors*/
63
- $--color-primary-dark: map.get($--colors, "primary", "dark") !default;
64
- $--color-primary: map.get($--colors, "primary", "base") !default;
65
- $--color-primary-light: map.get($--colors, "primary", "light") !default;
66
- $--color-primary-lighter: map.get($--colors, "primary", "lighter") !default;
63
+ $--color-primary-dark: map.get($--colors, 'primary', 'dark') !default;
64
+ $--color-primary: map.get($--colors, 'primary', 'base') !default;
65
+ $--color-primary-light: map.get($--colors, 'primary', 'light') !default;
66
+ $--color-primary-lighter: map.get($--colors, 'primary', 'lighter') !default;
67
67
  /*success colors*/
68
- $--color-success-dark: map.get($--colors, "success", "dark") !default;
69
- $--color-success: map.get($--colors, "success", "base") !default;
70
- $--color-success-light: map.get($--colors, "success", "light") !default;
68
+ $--color-success-dark: map.get($--colors, 'success', 'dark') !default;
69
+ $--color-success: map.get($--colors, 'success', 'base') !default;
70
+ $--color-success-light: map.get($--colors, 'success', 'light') !default;
71
71
  /*warning colors*/
72
- $--color-warning-dark: map.get($--colors, "warning", "dark") !default;
73
- $--color-warning: map.get($--colors, "warning", "base") !default;
74
- $--color-warning-light: map.get($--colors, "warning", "light") !default;
72
+ $--color-warning-dark: map.get($--colors, 'warning', 'dark') !default;
73
+ $--color-warning: map.get($--colors, 'warning', 'base') !default;
74
+ $--color-warning-light: map.get($--colors, 'warning', 'light') !default;
75
75
  /*error colors*/
76
- $--color-error-dark: map.get($--colors, "error", "dark") !default;
77
- $--color-error: map.get($--colors, "error", "base") !default;
78
- $--color-error-light: map.get($--colors, "error", "light") !default;
76
+ $--color-error-dark: map.get($--colors, 'error', 'dark') !default;
77
+ $--color-error: map.get($--colors, 'error', 'base') !default;
78
+ $--color-error-light: map.get($--colors, 'error', 'light') !default;
79
79
  /*info colors*/
80
- $--color-info-dark: map.get($--colors, "info", "dark") !default;
81
- $--color-info: map.get($--colors, "info", "base") !default;
82
- $--color-info-light: map.get($--colors, "info", "light") !default;
80
+ $--color-info-dark: map.get($--colors, 'info', 'dark') !default;
81
+ $--color-info: map.get($--colors, 'info', 'base') !default;
82
+ $--color-info-light: map.get($--colors, 'info', 'light') !default;
83
83
  /*link colors*/
84
- $--color-link-dark: map.get($--colors, "link", "dark") !default;
85
- $--color-link: map.get($--colors, "link", "base") !default;
86
- $--color-link-light: map.get($--colors, "link", "light") !default;
84
+ $--color-link-dark: map.get($--colors, 'link', 'dark') !default;
85
+ $--color-link: map.get($--colors, 'link', 'base') !default;
86
+ $--color-link-light: map.get($--colors, 'link', 'light') !default;
87
87
  /*disable colors*/
88
- $--color-disable-dark: map.get($--colors, "disable", "dark") !default;
89
- $--color-disable: map.get($--colors, "disable", "base") !default;
90
- $--color-disable-text: map.get($--colors, "disable", "text") !default;
88
+ $--color-disable-dark: map.get($--colors, 'disable', 'dark') !default;
89
+ $--color-disable: map.get($--colors, 'disable', 'base') !default;
90
+ $--color-disable-text: map.get($--colors, 'disable', 'text') !default;
91
91
 
92
- $--color-sidebar: map.get($--colors, "sidebar", "base") !default;
92
+ $--color-sidebar: map.get($--colors, 'sidebar', 'base') !default;
93
93
 
94
94
  $--text-color: () !default;
95
95
  $--text-color: map.merge(
@@ -115,10 +115,10 @@ $--text-color: map.merge(
115
115
  $--border-color: () !default;
116
116
  $--border-color: map.merge(
117
117
  (
118
- "": #d8d8d8,
119
- "dark": #a6a6a6,
120
- "light": #ebebeb,
121
- "lighter": #f7f7f7,
118
+ '': #d8d8d8,
119
+ 'dark': #a6a6a6,
120
+ 'light': #ebebeb,
121
+ 'lighter': #f7f7f7,
122
122
  ),
123
123
  $--border-color
124
124
  );
@@ -126,8 +126,8 @@ $--border-color: map.merge(
126
126
  $--variables: () !default;
127
127
  $--variables: map.merge(
128
128
  (
129
- "border-radius": 5px,
130
- "border-radius-round": 100px,
129
+ 'border-radius': 5px,
130
+ 'border-radius-round': 100px,
131
131
  ),
132
132
  $--variables
133
133
  );
@@ -136,7 +136,7 @@ $--line-height: map.merge(
136
136
  (
137
137
  xs: 1.125rem,
138
138
  sm: 1.25rem,
139
- "": 1.5rem,
139
+ '': 1.5rem,
140
140
  lg: 1.75rem,
141
141
  xl: 1.875rem,
142
142
  xxl: 2rem,
@@ -146,37 +146,37 @@ $--line-height: map.merge(
146
146
  $--font: () !default;
147
147
  $--font: map.deep-merge(
148
148
  (
149
- "type": (
150
- "title": "QuickSand",
151
- "content": "OpenSans",
149
+ 'type': (
150
+ 'title': 'QuickSand',
151
+ 'content': 'OpenSans',
152
152
  ),
153
- "header-size": (
154
- "": 2.25rem,
155
- "sm": 1.875rem,
156
- "lg": 3rem,
157
- "xl": 3.75rem,
158
- "xxl": 4.5rem,
153
+ 'header-size': (
154
+ '': 2.25rem,
155
+ 'sm': 1.875rem,
156
+ 'lg': 3rem,
157
+ 'xl': 3.75rem,
158
+ 'xxl': 4.5rem,
159
159
  ),
160
- "content-size": (
161
- "": 1rem,
162
- "xs": 0.75rem,
163
- "sm": 0.875rem,
164
- "lg": 1.125rem,
165
- "xl": 1.25rem,
160
+ 'content-size': (
161
+ '': 1rem,
162
+ 'xs': 0.75rem,
163
+ 'sm': 0.875rem,
164
+ 'lg': 1.125rem,
165
+ 'xl': 1.25rem,
166
166
  ),
167
167
  ),
168
168
  $--font
169
169
  );
170
170
 
171
171
  /*Fonts*/
172
- $dev: false;
173
- @debug "#{$dev}";
174
- $--font-path: "../fonts" !default;
172
+ $dev: true;
173
+ @debug '#{$dev}';
174
+ $--font-path: '../fonts' !default;
175
175
  $--font-pathd: -font-path($dev);
176
- @debug " font #{$--font-pathd}";
177
- $--font-display: "auto" !default;
178
- $--font-type-content: map.get($--font, "type", "content");
179
- $--font-type-title: map.get($--font, "type", "title");
176
+ @debug '#{$--font-pathd}';
177
+ $--font-display: 'auto' !default;
178
+ $--font-type-content: map.get($--font, 'type', 'content');
179
+ $--font-type-title: map.get($--font, 'type', 'title');
180
180
  $--icon: () !default;
181
181
  $--icon: map.merge(
182
182
  (
@@ -195,133 +195,131 @@ $border-color-secondary: #ebebeb; /*changed as border-color-light*/
195
195
 
196
196
  $grey: #ebebeb; /*changed as border-color-light*/
197
197
 
198
- $primary-success-dark: #00954a;
199
- $primary-success: #02b55c;
200
- $secondary-success: #dcf9ea;
201
-
202
- $primary-error-dark: #fc3232;
203
- $primary-error: #ff5050;
204
- $secondary-error: #ffe8e8;
205
-
206
- $primary-info-dark: #0065b2;
207
- $primary-info: #2879b7;
208
- $secondary-info: #d8edfc;
209
-
210
- $primary-warning-dark: #ff9500;
211
- $primary-warning: #f8a523;
212
- $secondary-warning: #f9ecd7;
213
-
214
- $primary-link: #2879b7;
215
-
216
- $secondary-link: #d8edfc;
217
-
218
- $primary-color: #54bd95;
219
-
220
- $primary-bg-light: #a8dec9;
221
-
222
- $primary-color-dark: #265E4B;
223
-
224
- $primary-disabled: #ece9f1;
225
- $primary-disabled-text: #d0c9d6;
226
-
227
- $primary-color-light: #a8dec9;
228
- $primary-color-light-opacity: #e4fff5;
229
-
230
- $secondary-color: #ffffff;
231
-
232
- $secondary-color-green-light: #dcfae9;
233
-
234
- $secondary-color-red: #ff5050;
235
-
236
- $secondary-color-blue: #2879b7;
237
-
238
- $secondary-color-blue-light: #d8edfc;
239
-
240
- $secondary-color-dark: #161c28;
241
-
242
- $primary-text-color: #fbfbfb;
243
-
244
- /*Testing
245
- */
246
- $--dev:$dev;
247
-
248
- $font-color: #191a15; /*changed as text-color-primary*/
249
-
250
-
251
- $sidebar-color: #222938; /*changed as color-sidebar*/
252
-
253
- $primary-tree-text: #222f2b;/*changed as text-color-tree*/
254
-
255
-
256
-
257
-
258
- $gradiant-left: linear-gradient(to left, #54bd95, #265E4B);
259
-
260
- $gradiant-right: linear-gradient(to right, #54bd95, #265E4B);
261
-
262
- $gradiant-down: linear-gradient(180deg, #54bd95, #265E4B);
263
-
264
- $gradiant-up: linear-gradient(360deg, #54bd95, #265E4B);
265
-
266
-
267
- $border-radius: 5px; /*changed as border-radius*/
268
-
269
- $border-radius-round: 100px;/*changed as border-radius-round*/
270
-
271
- /* Standard font styles */
272
-
273
- $title-font: QuickSand; /*changed as font-type-tittle*/
274
-
275
- $content-font: OpenSans; /*changed as font-type-content*/
276
-
277
-
278
-
279
- $icon-xs: 1rem; /*changed as icon-size-xs*/
280
-
281
- $icon-sm: 1.25rem; /*changed as icon-size-sm*/
282
-
283
- $icon-md: 1.5rem; /*changed as icon-size-md*/
284
-
285
- $icon-lr: 2rem; /*changed as icon-size-lg*/
286
-
287
- $icon-xl: 2.25rem; /*changed as icon-size-xl*/
288
-
289
- $header-font-size: 20px; /*changed as icon-size-tittle*/
290
-
291
- /* Standard header font styles */
292
-
293
- $font-h-xxl: 4.5rem; /*changed as font-header-size-xxl*/
294
-
295
- $font-h-xl: 3.75rem; /*changed as font-header-size-xl*/
296
-
297
- $font-h-lg: 3rem; /*changed as font-header-size-lg*/
298
-
299
- $font-h-md: 2.25rem; /*changed as font-header-size*/
300
-
301
- $font-h-sm: 1.875rem; /*changed as font-header-size-sm*/
302
- /*line-height*/
303
- $line-height-xxl: 2rem; /*changed as line-height-tittle*/
304
- $line-height-xl: 1.875rem; /*changed as line-height-tittle*/
305
- $line-height-lg: 1.75rem; /*changed as line-height-tittle*/
306
- $line-height-md: 1.5rem; /*changed as line-height-tittle*/
307
- $line-height-sm: 1.25rem; /*changed as line-height-tittle*/
308
- $line-height-xs: 1.125rem; /*changed as line-height-tittle*/
309
- /* Standard content font styles */
310
-
311
- $font-c-xl: 1.25rem; /*changed as font-content-size-xl*/
312
-
313
- $font-c-lg: 1.125rem; /*changed as font-content-size-lg*/
314
-
315
- $font-c-md: 1rem; /*changed as font-content-size*/
316
-
317
- $font-c-sm: 0.875rem; /*changed as font-content-size-sm*/
318
-
319
- $font-c-xs: 0.75rem; /*changed as font-content-xs*/
320
-
321
- .right-panel {
322
- font-family: $content-font;
323
- }
324
- .left-panel {
325
- font-family: $content-font;
326
- }
327
-
198
+ $grey-light: #f7f7f7; /*changed as border-color-lighter*/
199
+
200
+ $grey-dark: #a6a6a6; /*changed as border-color-dark*/
201
+
202
+ $font-path: $--font-pathd;
203
+
204
+ $primary-success-dark: #00954a;
205
+ $primary-success: #02b55c;
206
+ $secondary-success: #dcf9ea;
207
+
208
+ $primary-error-dark: #fc3232;
209
+ $primary-error: #ff5050;
210
+ $secondary-error: #ffe8e8;
211
+
212
+ $primary-info-dark: #0065b2;
213
+ $primary-info: #2879b7;
214
+ $secondary-info: #d8edfc;
215
+
216
+ $primary-warning-dark: #ff9500;
217
+ $primary-warning: #f8a523;
218
+ $secondary-warning: #f9ecd7;
219
+
220
+ $primary-link: #2879b7;
221
+
222
+ $secondary-link: #d8edfc;
223
+
224
+ $primary-color: #54bd95;
225
+
226
+ $primary-bg-light: #a8dec9;
227
+
228
+ $primary-color-dark: #265e4b;
229
+
230
+ $primary-disabled: #ece9f1;
231
+ $primary-disabled-text: #d0c9d6;
232
+
233
+ $primary-color-light: #a8dec9;
234
+ $primary-color-light-opacity: #e4fff5;
235
+
236
+ $secondary-color: #ffffff;
237
+
238
+ $secondary-color-green-light: #dcfae9;
239
+
240
+ $secondary-color-red: #ff5050;
241
+
242
+ $secondary-color-blue: #2879b7;
243
+
244
+ $secondary-color-blue-light: #d8edfc;
245
+
246
+ $secondary-color-dark: #161c28;
247
+
248
+ $primary-text-color: #fbfbfb;
249
+
250
+ /*Testing
251
+ $--dev:$dev;
252
+ */
253
+
254
+ $font-color: #191a15; /*changed as text-color-primary*/
255
+
256
+ $sidebar-color: #222938; /*changed as color-sidebar*/
257
+
258
+ $primary-tree-text: #222f2b; /*changed as text-color-tree*/
259
+
260
+ $gradiant-left: linear-gradient(to left, #54bd95, #265e4b);
261
+
262
+ $gradiant-right: linear-gradient(to right, #54bd95, #265e4b);
263
+
264
+ $gradiant-down: linear-gradient(180deg, #54bd95, #265e4b);
265
+
266
+ $gradiant-up: linear-gradient(360deg, #54bd95, #265e4b);
267
+
268
+ $border-radius: 5px; /*changed as border-radius*/
269
+
270
+ $border-radius-round: 100px; /*changed as border-radius-round*/
271
+
272
+ /* Standard font styles */
273
+
274
+ $title-font: QuickSand; /*changed as font-type-tittle*/
275
+
276
+ $content-font: OpenSans; /*changed as font-type-content*/
277
+
278
+ $icon-xs: 1rem; /*changed as icon-size-xs*/
279
+
280
+ $icon-sm: 1.25rem; /*changed as icon-size-sm*/
281
+
282
+ $icon-md: 1.5rem; /*changed as icon-size-md*/
283
+
284
+ $icon-lr: 2rem; /*changed as icon-size-lg*/
285
+
286
+ $icon-xl: 2.25rem; /*changed as icon-size-xl*/
287
+
288
+ $header-font-size: 20px; /*changed as icon-size-tittle*/
289
+
290
+ /* Standard header font styles */
291
+
292
+ $font-h-xxl: 4.5rem; /*changed as font-header-size-xxl*/
293
+
294
+ $font-h-xl: 3.75rem; /*changed as font-header-size-xl*/
295
+
296
+ $font-h-lg: 3rem; /*changed as font-header-size-lg*/
297
+
298
+ $font-h-md: 2.25rem; /*changed as font-header-size*/
299
+
300
+ $font-h-sm: 1.875rem; /*changed as font-header-size-sm*/
301
+ /*line-height*/
302
+ $line-height-xxl: 2rem; /*changed as line-height-tittle*/
303
+ $line-height-xl: 1.875rem; /*changed as line-height-tittle*/
304
+ $line-height-lg: 1.75rem; /*changed as line-height-tittle*/
305
+ $line-height-md: 1.5rem; /*changed as line-height-tittle*/
306
+ $line-height-sm: 1.25rem; /*changed as line-height-tittle*/
307
+ $line-height-xs: 1.125rem; /*changed as line-height-tittle*/
308
+ /* Standard content font styles */
309
+
310
+ $font-c-xl: 1.25rem; /*changed as font-content-size-xl*/
311
+
312
+ $font-c-lg: 1.125rem; /*changed as font-content-size-lg*/
313
+
314
+ $font-c-md: 1rem; /*changed as font-content-size*/
315
+
316
+ $font-c-sm: 0.875rem; /*changed as font-content-size-sm*/
317
+
318
+ $font-c-xs: 0.75rem; /*changed as font-content-xs*/
319
+
320
+ .right-panel {
321
+ font-family: $content-font;
322
+ }
323
+ .left-panel {
324
+ font-family: $content-font;
325
+ }