@dvrd/dvr-controls 1.0.14 → 1.0.16

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 (180) hide show
  1. package/index.ts +8 -1
  2. package/package.json +29 -23
  3. package/src/js/button/button.tsx +102 -0
  4. package/src/js/button/buttonController.tsx +179 -0
  5. package/src/js/button/closeButton.tsx +29 -0
  6. package/src/js/button/dvrdButton.tsx +128 -0
  7. package/src/js/button/outlinedButton.tsx +105 -0
  8. package/src/js/button/simpleButton.tsx +163 -0
  9. package/src/js/button/style/button.scss +95 -0
  10. package/src/js/button/style/closeButton.scss +15 -0
  11. package/src/js/button/style/dvrdButton.scss +30 -0
  12. package/src/js/button/style/outlinedButton.scss +84 -0
  13. package/src/js/button/style/simpleButton.scss +80 -0
  14. package/src/js/carousel/DVRCarousel.tsx +163 -0
  15. package/src/js/carousel/DVRCarouselController.tsx +95 -0
  16. package/src/js/carousel/style/DVRCarousel.scss +38 -0
  17. package/src/js/checkbox/checkbox.tsx +148 -0
  18. package/src/js/checkbox/checkboxController.tsx +131 -0
  19. package/src/js/checkbox/style/checkbox.scss +109 -0
  20. package/src/js/colorPicker/colorPicker.tsx +118 -0
  21. package/src/js/colorPicker/style/colorPicker.scss +20 -0
  22. package/src/js/date/dvrdDatePicker.tsx +357 -0
  23. package/src/js/date/style/dvrdDatePicker.scss +307 -0
  24. package/src/js/dialog/dialog.tsx +207 -0
  25. package/src/js/dialog/dialogController.tsx +70 -0
  26. package/src/js/dialog/inlineDialog.tsx +127 -0
  27. package/src/js/dialog/style/dialog.scss +61 -0
  28. package/src/js/events/withEvents.tsx +40 -0
  29. package/src/js/head/DVRHead.tsx +49 -0
  30. package/src/js/header/DVRHeader.tsx +417 -0
  31. package/src/js/header/style/header.scss +206 -0
  32. package/src/js/icon/awesomeIcon.tsx +20 -0
  33. package/src/js/image/imageUpload.tsx +69 -0
  34. package/src/js/image/style/imageUpload.scss +11 -0
  35. package/src/js/info/info.tsx +136 -0
  36. package/src/js/info/style/info.scss +39 -0
  37. package/src/js/input/animated/animatedTextField.tsx +159 -0
  38. package/src/js/input/date/dateField.tsx +360 -0
  39. package/src/js/input/date/dateFieldController.tsx +245 -0
  40. package/src/js/input/date/datePicker/datePicker.tsx +186 -0
  41. package/src/js/input/date/datePicker/style/datePicker.scss +102 -0
  42. package/src/js/input/date/input/dateInput.tsx +214 -0
  43. package/src/js/input/date/style/dateField.scss +40 -0
  44. package/src/js/input/date/timePicker/style/timePicker.scss +95 -0
  45. package/src/js/input/date/timePicker/timePicker.tsx +143 -0
  46. package/src/js/input/editor/DVREditor.tsx +21 -0
  47. package/src/js/input/number/numberInput.tsx +157 -0
  48. package/src/js/input/password/passwordInput.tsx +140 -0
  49. package/src/js/input/password/passwordRules.tsx +48 -0
  50. package/src/js/input/password/style/passwordInput.scss +39 -0
  51. package/src/js/input/password/style/passwordRules.scss +41 -0
  52. package/src/js/input/simple/style/simpleInput.scss +98 -0
  53. package/src/js/input/simple/v2/simpleInputV2.tsx +178 -0
  54. package/src/js/input/style/input.scss +138 -0
  55. package/src/js/input/v2/inputController_v2.tsx +250 -0
  56. package/src/js/input/v2/input_v2.tsx +7 -0
  57. package/src/js/label/label.tsx +196 -0
  58. package/src/js/label/style/label.scss +4 -0
  59. package/src/js/link/link.tsx +38 -0
  60. package/src/js/link/style/link.scss +30 -0
  61. package/src/js/loader/loader.tsx +79 -0
  62. package/src/js/loader/loaderController.tsx +61 -0
  63. package/src/js/loader/style/loader.scss +53 -0
  64. package/src/js/media/media.tsx +72 -0
  65. package/src/js/navigator/navigator.tsx +51 -0
  66. package/src/js/optionsList/dvrdOptionsList.tsx +112 -0
  67. package/src/js/optionsList/style/dvrdOptionsList.scss +84 -0
  68. package/src/js/optionsMenu/optionsMenu.tsx +187 -0
  69. package/src/js/optionsMenu/style/optionsMenu.scss +70 -0
  70. package/src/js/pdf/element/pdfElement.tsx +315 -0
  71. package/src/js/pdf/element/style/pdfElement.scss +111 -0
  72. package/src/js/pdf/history/pdfHistory.ts +57 -0
  73. package/src/js/pdf/image/pdfImage.tsx +175 -0
  74. package/src/js/pdf/image/style/pdfImage.scss +34 -0
  75. package/src/js/pdf/invoiceTable/pdfInvoiceTable.tsx +176 -0
  76. package/src/js/pdf/invoiceTable/style/pdfInvoiceTable.scss +32 -0
  77. package/src/js/pdf/pdfTemplateCreator.tsx +279 -0
  78. package/src/js/pdf/settings/buttons/iconButton.tsx +49 -0
  79. package/src/js/pdf/settings/buttons/style/iconButton.scss +50 -0
  80. package/src/js/pdf/settings/image/pdfImageSettings.tsx +82 -0
  81. package/src/js/pdf/settings/image/style/pdfImageSettings.scss +9 -0
  82. package/src/js/pdf/settings/invoiceTable/pdfInvoiceTableSettings.tsx +141 -0
  83. package/src/js/pdf/settings/invoiceTable/style/pdfInvoiceTableSettings.scss +38 -0
  84. package/src/js/pdf/settings/pdfElementSettings.tsx +86 -0
  85. package/src/js/pdf/settings/style/pdfElementSettings.scss +56 -0
  86. package/src/js/pdf/settings/text/pdfTextSettings.tsx +202 -0
  87. package/src/js/pdf/settings/text/style/pdfTextSettings.scss +94 -0
  88. package/src/js/pdf/style/pdfTemplateCreator.scss +118 -0
  89. package/src/js/pdf/text/pdfText.tsx +267 -0
  90. package/src/js/pdf/text/style/pdfText.scss +22 -0
  91. package/src/js/pdf/v2/pdfElement/pdfDraggableElement.tsx +193 -0
  92. package/src/js/pdf/v2/types/pdfTemplateTypes.ts +27 -0
  93. package/src/js/popup/style/withBackground.scss +29 -0
  94. package/src/js/popup/withBackground.tsx +92 -0
  95. package/src/js/select/async/asyncSelect.tsx +46 -0
  96. package/src/js/select/async/style/asyncSelect.scss +23 -0
  97. package/src/js/select/dvrdSelect.tsx +214 -0
  98. package/src/js/select/dvrdSelectController.tsx +81 -0
  99. package/src/js/select/select.tsx +310 -0
  100. package/src/js/select/selectController.tsx +341 -0
  101. package/src/js/select/style/dvrdSelect.scss +140 -0
  102. package/src/js/select/style/select.scss +199 -0
  103. package/src/js/sidebarMenu/sidebarMenu.tsx +167 -0
  104. package/src/js/sidebarMenu/style/sidebarMenu.scss +167 -0
  105. package/src/js/slider/DVRSlider.tsx +107 -0
  106. package/src/js/slider/style/DVRSlider.scss +88 -0
  107. package/src/js/snackbar/snackbar.tsx +72 -0
  108. package/src/js/snackbar/snackbarController.tsx +104 -0
  109. package/src/js/snackbar/style/snackbar.scss +46 -0
  110. package/src/js/switch/dvrdSwitch.tsx +53 -0
  111. package/src/js/switch/style/dvrdSwitch.scss +47 -0
  112. package/src/js/switch/style/switch.scss +84 -0
  113. package/src/js/switch/switch.tsx +115 -0
  114. package/src/js/switch/switchController.tsx +97 -0
  115. package/src/js/textField/dvrdInput.tsx +219 -0
  116. package/src/js/textField/dvrdInputController.tsx +97 -0
  117. package/src/js/textField/dvrdNumberInput.tsx +141 -0
  118. package/src/js/textField/dvrdPasswordInput.tsx +40 -0
  119. package/src/js/textField/style/dvrdInput.scss +114 -0
  120. package/src/js/textField/style/dvrdPassword.scss +15 -0
  121. package/src/js/topButton/style/topButton.scss +54 -0
  122. package/src/js/topButton/topButton.tsx +136 -0
  123. package/src/js/util/analyticsUtil.ts +41 -0
  124. package/src/js/util/colorUtil.ts +230 -0
  125. package/src/js/util/componentUtil.tsx +59 -0
  126. package/src/js/util/constants.ts +12 -0
  127. package/src/js/util/controlContext.tsx +46 -0
  128. package/src/js/util/controlUtil.ts +107 -0
  129. package/src/js/util/cookieUtil.ts +17 -0
  130. package/src/js/util/eventUtil.ts +65 -0
  131. package/src/js/util/googleUtil.ts +88 -0
  132. package/src/js/util/interfaces.ts +180 -0
  133. package/src/js/util/jwtUtil.ts +72 -0
  134. package/src/js/util/miscUtil.ts +170 -0
  135. package/src/js/util/momentUtil.ts +45 -0
  136. package/src/js/util/pdfUtil.ts +124 -0
  137. package/src/js/util/requestUtil.ts +145 -0
  138. package/src/js/util/responsiveUtil.ts +37 -0
  139. package/src/js/util/validationUtil.ts +13 -0
  140. package/src/res/img/lock-handle.png +0 -0
  141. package/src/res/img/lock-handle.webp +0 -0
  142. package/src/res/img/lock.png +0 -0
  143. package/src/res/img/lock.webp +0 -0
  144. package/src/style/common-icons-variables.scss +140 -0
  145. package/src/style/common-icons.scss +714 -0
  146. package/src/style/common-variables.scss +243 -0
  147. package/src/style/display-breakpoints.scss +141 -0
  148. package/src/style/fonts/common-icons.eot +0 -0
  149. package/src/style/fonts/common-icons.svg +150 -0
  150. package/src/style/fonts/common-icons.ttf +0 -0
  151. package/src/style/fonts/common-icons.woff +0 -0
  152. package/src/style/fonts/common-icons.woff2 +0 -0
  153. package/src/style/fonts/fontAwesome/css/all.css +7003 -0
  154. package/src/style/fonts/fontAwesome/css/all.min.css +6 -0
  155. package/src/style/fonts/fontAwesome/css/brands.css +1423 -0
  156. package/src/style/fonts/fontAwesome/css/brands.min.css +6 -0
  157. package/src/style/fonts/fontAwesome/css/fontawesome.css +5519 -0
  158. package/src/style/fonts/fontAwesome/css/fontawesome.min.css +6 -0
  159. package/src/style/fonts/fontAwesome/css/regular.css +19 -0
  160. package/src/style/fonts/fontAwesome/css/regular.min.css +6 -0
  161. package/src/style/fonts/fontAwesome/css/solid.css +19 -0
  162. package/src/style/fonts/fontAwesome/css/solid.min.css +6 -0
  163. package/src/style/fonts/fontAwesome/css/svg-with-js.css +634 -0
  164. package/src/style/fonts/fontAwesome/css/svg-with-js.min.css +6 -0
  165. package/src/style/fonts/fontAwesome/css/v4-font-face.css +26 -0
  166. package/src/style/fonts/fontAwesome/css/v4-font-face.min.css +6 -0
  167. package/src/style/fonts/fontAwesome/css/v4-shims.css +2146 -0
  168. package/src/style/fonts/fontAwesome/css/v4-shims.min.css +6 -0
  169. package/src/style/fonts/fontAwesome/css/v5-font-face.css +22 -0
  170. package/src/style/fonts/fontAwesome/css/v5-font-face.min.css +6 -0
  171. package/src/style/fonts/fontAwesome/webfonts/fa-brands-400.ttf +0 -0
  172. package/src/style/fonts/fontAwesome/webfonts/fa-brands-400.woff2 +0 -0
  173. package/src/style/fonts/fontAwesome/webfonts/fa-regular-400.ttf +0 -0
  174. package/src/style/fonts/fontAwesome/webfonts/fa-regular-400.woff2 +0 -0
  175. package/src/style/fonts/fontAwesome/webfonts/fa-solid-900.ttf +0 -0
  176. package/src/style/fonts/fontAwesome/webfonts/fa-solid-900.woff2 +0 -0
  177. package/src/style/fonts/fontAwesome/webfonts/fa-v4compatibility.ttf +0 -0
  178. package/src/style/fonts/fontAwesome/webfonts/fa-v4compatibility.woff2 +0 -0
  179. package/src/style/variables.scss +11 -0
  180. package/.gitignore +0 -31
@@ -0,0 +1,714 @@
1
+ /*!
2
+ * Copyright (c) 2021. Dave van Rijn Development
3
+ */
4
+
5
+ @import "common-icons-variables";
6
+
7
+ @font-face {
8
+ font-family: 'common-icons';
9
+ src: url('#{$icomoon-font-path}/common-icons.eot');
10
+ src: url('#{$icomoon-font-path}/common-icons.eot') format('embedded-opentype'),
11
+ url('#{$icomoon-font-path}/common-icons.woff2') format('woff2'),
12
+ url('#{$icomoon-font-path}/common-icons.ttf') format('truetype'),
13
+ url('#{$icomoon-font-path}/common-icons.woff') format('woff'),
14
+ url('#{$icomoon-font-path}/common-icons.svg') format('svg');
15
+ font-weight: normal;
16
+ font-style: normal;
17
+ }
18
+
19
+ [class^="common-icon-"], [class*=" common-icon-"] {
20
+ /* use !important to prevent issues with browser extensions that change fonts */
21
+ font-family: 'common-icons' !important;
22
+ speak: none;
23
+ font-style: normal;
24
+ font-weight: normal;
25
+ font-variant: normal;
26
+ text-transform: none;
27
+ line-height: 1;
28
+
29
+ /* Enable Ligatures ================ */
30
+ letter-spacing: 0;
31
+ -webkit-font-feature-settings: "liga";
32
+ -moz-font-feature-settings: "liga=1";
33
+ -moz-font-feature-settings: "liga";
34
+ -ms-font-feature-settings: "liga" 1;
35
+ font-feature-settings: "liga";
36
+ -webkit-font-variant-ligatures: discretionary-ligatures;
37
+ font-variant-ligatures: discretionary-ligatures;
38
+
39
+ /* Better Font Rendering =========== */
40
+ -webkit-font-smoothing: antialiased;
41
+ -moz-osx-font-smoothing: grayscale;
42
+ }
43
+
44
+ .common-icon-education-2 {
45
+ &:before {
46
+ content: $common-icon-education-2;
47
+ }
48
+ }
49
+ .common-icon-suitcase {
50
+ &:before {
51
+ content: $common-icon-suitcase;
52
+ }
53
+ }
54
+ .common-icon-facebook {
55
+ &:before {
56
+ content: $common-icon-facebook;
57
+ }
58
+ }
59
+ .common-icon-instagram {
60
+ &:before {
61
+ content: $common-icon-instagram;
62
+ }
63
+ }
64
+ .common-icon-linkedin {
65
+ &:before {
66
+ content: $common-icon-linkedin;
67
+ }
68
+ }
69
+ .common-icon-sms3 {
70
+ &:before {
71
+ content: $common-icon-sms3;
72
+ }
73
+ }
74
+ .common-icon-calender {
75
+ &:before {
76
+ content: $common-icon-calender;
77
+ }
78
+ }
79
+ .common-icon-dashboard {
80
+ &:before {
81
+ content: $common-icon-dashboard;
82
+ }
83
+ }
84
+ .common-icon-email {
85
+ &:before {
86
+ content: $common-icon-email;
87
+ }
88
+ }
89
+ .common-icon-messenger {
90
+ &:before {
91
+ content: $common-icon-messenger;
92
+ }
93
+ }
94
+ .common-icon-sms {
95
+ &:before {
96
+ content: $common-icon-sms;
97
+ }
98
+ }
99
+ .common-icon-triangle {
100
+ &:before {
101
+ content: $common-icon-triangle;
102
+ }
103
+ }
104
+ .common-icon-whatsapp {
105
+ &:before {
106
+ content: $common-icon-whatsapp;
107
+ }
108
+ }
109
+ .common-icon-arrow_bothways {
110
+ &:before {
111
+ content: $common-icon-arrow_bothways;
112
+ }
113
+ }
114
+ .common-icon-note {
115
+ &:before {
116
+ content: $common-icon-note;
117
+ }
118
+ }
119
+ .common-icon-contact {
120
+ &:before {
121
+ content: $common-icon-contact;
122
+ }
123
+ }
124
+ .common-icon-files {
125
+ &:before {
126
+ content: $common-icon-files;
127
+ }
128
+ }
129
+ .common-icon-alarm {
130
+ &:before {
131
+ content: $common-icon-alarm;
132
+ }
133
+ }
134
+ .common-icon-bar-magnifier {
135
+ &:before {
136
+ content: $common-icon-bar-magnifier;
137
+ }
138
+ }
139
+ .common-icon-course {
140
+ &:before {
141
+ content: $common-icon-course;
142
+ }
143
+ }
144
+ .common-icon-recovery-place {
145
+ &:before {
146
+ content: $common-icon-recovery-place;
147
+ }
148
+ }
149
+ .common-icon-orthodontist {
150
+ &:before {
151
+ content: $common-icon-orthodontist;
152
+ }
153
+ }
154
+ .common-icon-ying-yang {
155
+ &:before {
156
+ content: $common-icon-ying-yang;
157
+ }
158
+ }
159
+ .common-icon-star-half {
160
+ &:before {
161
+ content: $common-icon-star-half;
162
+ }
163
+ }
164
+ .common-icon-star-full {
165
+ &:before {
166
+ content: $common-icon-star-full;
167
+ }
168
+ }
169
+ .common-icon-star-empty {
170
+ &:before {
171
+ content: $common-icon-star-empty;
172
+ }
173
+ }
174
+ .common-icon-acne {
175
+ &:before {
176
+ content: $common-icon-acne;
177
+ color: #000;
178
+ }
179
+ }
180
+ .common-icon-anti-conception {
181
+ &:before {
182
+ content: $common-icon-anti-conception;
183
+ }
184
+ }
185
+ .common-icon-edit {
186
+ &:before {
187
+ content: $common-icon-edit;
188
+ }
189
+ }
190
+ .common-icon-feetcare {
191
+ &:before {
192
+ content: $common-icon-feetcare;
193
+ }
194
+ }
195
+ .common-icon-info {
196
+ &:before {
197
+ content: $common-icon-info;
198
+ }
199
+ }
200
+ .common-icon-medical-supply {
201
+ &:before {
202
+ content: $common-icon-medical-supply;
203
+ }
204
+ }
205
+ .common-icon-medicine {
206
+ &:before {
207
+ content: $common-icon-medicine;
208
+ }
209
+ }
210
+ .common-icon-piggy-bank {
211
+ &:before {
212
+ content: $common-icon-piggy-bank;
213
+ }
214
+ }
215
+ .common-icon-dentist {
216
+ &:before {
217
+ content: $common-icon-dentist;
218
+ }
219
+ }
220
+ .common-icon-pregnancy-care {
221
+ &:before {
222
+ content: $common-icon-pregnancy-care;
223
+ }
224
+ }
225
+ .common-icon-physio {
226
+ &:before {
227
+ content: $common-icon-physio;
228
+ }
229
+ }
230
+ .common-icon-trash {
231
+ &:before {
232
+ content: $common-icon-trash;
233
+ }
234
+ }
235
+ .common-icon-book {
236
+ &:before {
237
+ content: $common-icon-book;
238
+ }
239
+ }
240
+ .common-icon-file-checklist {
241
+ &:before {
242
+ content: $common-icon-file-checklist;
243
+ }
244
+ }
245
+ .common-icon-safe {
246
+ &:before {
247
+ content: $common-icon-safe;
248
+ }
249
+ }
250
+ .common-icon-bike {
251
+ &:before {
252
+ content: $common-icon-bike;
253
+ }
254
+ }
255
+ .common-icon-boiler {
256
+ &:before {
257
+ content: $common-icon-boiler;
258
+ }
259
+ }
260
+ .common-icon-camera-2 {
261
+ &:before {
262
+ content: $common-icon-camera-2;
263
+ }
264
+ }
265
+ .common-icon-camping-equipment {
266
+ &:before {
267
+ content: $common-icon-camping-equipment;
268
+ }
269
+ }
270
+ .common-icon-caravan {
271
+ &:before {
272
+ content: $common-icon-caravan;
273
+ }
274
+ }
275
+ .common-icon-couche {
276
+ &:before {
277
+ content: $common-icon-couche;
278
+ }
279
+ }
280
+ .common-icon-desktop {
281
+ &:before {
282
+ content: $common-icon-desktop;
283
+ }
284
+ }
285
+ .common-icon-display {
286
+ &:before {
287
+ content: $common-icon-display;
288
+ }
289
+ }
290
+ .common-icon-document-2 {
291
+ &:before {
292
+ content: $common-icon-document-2;
293
+ }
294
+ }
295
+ .common-icon-dumbbell {
296
+ &:before {
297
+ content: $common-icon-dumbbell;
298
+ }
299
+ }
300
+ .common-icon-education {
301
+ &:before {
302
+ content: $common-icon-education;
303
+ }
304
+ }
305
+ .common-icon-electronics {
306
+ &:before {
307
+ content: $common-icon-electronics;
308
+ }
309
+ }
310
+ .common-icon-glasses {
311
+ &:before {
312
+ content: $common-icon-glasses;
313
+ }
314
+ }
315
+ .common-icon-glue {
316
+ &:before {
317
+ content: $common-icon-glue;
318
+ }
319
+ }
320
+ .common-icon-gramophone {
321
+ &:before {
322
+ content: $common-icon-gramophone;
323
+ }
324
+ }
325
+ .common-icon-health-insurance {
326
+ &:before {
327
+ content: $common-icon-health-insurance;
328
+ }
329
+ }
330
+ .common-icon-hearing-aid {
331
+ &:before {
332
+ content: $common-icon-hearing-aid;
333
+ }
334
+ }
335
+ .common-icon-kitchen-mixer {
336
+ &:before {
337
+ content: $common-icon-kitchen-mixer;
338
+ }
339
+ }
340
+ .common-icon-laptop {
341
+ &:before {
342
+ content: $common-icon-laptop;
343
+ }
344
+ }
345
+ .common-icon-medical {
346
+ &:before {
347
+ content: $common-icon-medical;
348
+ }
349
+ }
350
+ .common-icon-mobile-2 {
351
+ &:before {
352
+ content: $common-icon-mobile-2;
353
+ }
354
+ }
355
+ .common-icon-mobile {
356
+ &:before {
357
+ content: $common-icon-mobile;
358
+ }
359
+ }
360
+ .common-icon-moped-front {
361
+ &:before {
362
+ content: $common-icon-moped-front;
363
+ }
364
+ }
365
+ .common-icon-moped {
366
+ &:before {
367
+ content: $common-icon-moped;
368
+ }
369
+ }
370
+ .common-icon-motor-helmet {
371
+ &:before {
372
+ content: $common-icon-motor-helmet;
373
+ }
374
+ }
375
+ .common-icon-personal-info {
376
+ &:before {
377
+ content: $common-icon-personal-info;
378
+ }
379
+ }
380
+ .common-icon-radio {
381
+ &:before {
382
+ content: $common-icon-radio;
383
+ }
384
+ }
385
+ .common-icon-sailing-boat {
386
+ &:before {
387
+ content: $common-icon-sailing-boat;
388
+ }
389
+ }
390
+ .common-icon-ski {
391
+ &:before {
392
+ content: $common-icon-ski;
393
+ }
394
+ }
395
+ .common-icon-sofa {
396
+ &:before {
397
+ content: $common-icon-sofa;
398
+ }
399
+ }
400
+ .common-icon-sport-shirt {
401
+ &:before {
402
+ content: $common-icon-sport-shirt;
403
+ }
404
+ }
405
+ .common-icon-sport-shoes {
406
+ &:before {
407
+ content: $common-icon-sport-shoes;
408
+ }
409
+ }
410
+ .common-icon-tablet {
411
+ &:before {
412
+ content: $common-icon-tablet;
413
+ }
414
+ }
415
+ .common-icon-tax-office {
416
+ &:before {
417
+ content: $common-icon-tax-office;
418
+ }
419
+ }
420
+ .common-icon-tax {
421
+ &:before {
422
+ content: $common-icon-tax;
423
+ }
424
+ }
425
+ .common-icon-tent-2 {
426
+ &:before {
427
+ content: $common-icon-tent-2;
428
+ }
429
+ }
430
+ .common-icon-tent {
431
+ &:before {
432
+ content: $common-icon-tent;
433
+ }
434
+ }
435
+ .common-icon-tv {
436
+ &:before {
437
+ content: $common-icon-tv;
438
+ }
439
+ }
440
+ .common-icon-vacuum-cleaner {
441
+ &:before {
442
+ content: $common-icon-vacuum-cleaner;
443
+ }
444
+ }
445
+ .common-icon-work-office {
446
+ &:before {
447
+ content: $common-icon-work-office;
448
+ }
449
+ }
450
+ .common-icon-profile {
451
+ &:before {
452
+ content: $common-icon-profile;
453
+ }
454
+ }
455
+ .common-icon-car-speed-gauge {
456
+ &:before {
457
+ content: $common-icon-car-speed-gauge;
458
+ }
459
+ }
460
+ .common-icon-file-add {
461
+ &:before {
462
+ content: $common-icon-file-add;
463
+ }
464
+ }
465
+ .common-icon-travel-beach {
466
+ &:before {
467
+ content: $common-icon-travel-beach;
468
+ }
469
+ }
470
+ .common-icon-banking-spending {
471
+ &:before {
472
+ content: $common-icon-banking-spending;
473
+ }
474
+ }
475
+ .common-icon-car {
476
+ &:before {
477
+ content: $common-icon-car;
478
+ }
479
+ }
480
+ .common-icon-first-aid-kit {
481
+ &:before {
482
+ content: $common-icon-first-aid-kit;
483
+ }
484
+ }
485
+ .common-icon-money-bag {
486
+ &:before {
487
+ content: $common-icon-money-bag;
488
+ }
489
+ }
490
+ .common-icon-pasport {
491
+ &:before {
492
+ content: $common-icon-pasport;
493
+ }
494
+ }
495
+ .common-icon-home {
496
+ &:before {
497
+ content: $common-icon-home;
498
+ }
499
+ }
500
+ .common-icon-travel-insurance {
501
+ &:before {
502
+ content: $common-icon-travel-insurance;
503
+ }
504
+ }
505
+ .common-icon-clock {
506
+ &:before {
507
+ content: $common-icon-clock;
508
+ }
509
+ }
510
+ .common-icon-alarm-clock {
511
+ &:before {
512
+ content: $common-icon-alarm-clock;
513
+ }
514
+ }
515
+ .common-icon-sms2 {
516
+ &:before {
517
+ content: $common-icon-sms2;
518
+ }
519
+ }
520
+ .common-icon-email2 {
521
+ &:before {
522
+ content: $common-icon-email2;
523
+ }
524
+ }
525
+ .common-icon-check {
526
+ &:before {
527
+ content: $common-icon-check;
528
+ }
529
+ }
530
+ .common-icon-plus {
531
+ &:before {
532
+ content: $common-icon-plus;
533
+ }
534
+ }
535
+ .common-icon-document {
536
+ &:before {
537
+ content: $common-icon-document;
538
+ }
539
+ }
540
+ .common-icon-arrow-left {
541
+ &:before {
542
+ content: $common-icon-arrow-left;
543
+ }
544
+ }
545
+ .common-icon-arrow-right {
546
+ &:before {
547
+ content: $common-icon-arrow-right;
548
+ }
549
+ }
550
+ .common-icon-person {
551
+ &:before {
552
+ content: $common-icon-person;
553
+ }
554
+ }
555
+ .common-icon-world {
556
+ &:before {
557
+ content: $common-icon-world;
558
+ }
559
+ }
560
+ .common-icon-user2 {
561
+ &:before {
562
+ content: $common-icon-user2;
563
+ }
564
+ }
565
+ .common-icon-camera {
566
+ &:before {
567
+ content: $common-icon-camera;
568
+ }
569
+ }
570
+ .common-icon-bulb {
571
+ &:before {
572
+ content: $common-icon-bulb;
573
+ }
574
+ }
575
+ .common-icon-folder-open2 {
576
+ &:before {
577
+ content: $common-icon-folder-open2;
578
+ }
579
+ }
580
+ .common-icon-play {
581
+ &:before {
582
+ content: $common-icon-play;
583
+ }
584
+ }
585
+ .common-icon-excel {
586
+ &:before {
587
+ content: $common-icon-excel;
588
+ color: #217346;
589
+ }
590
+ }
591
+ .common-icon-powerpoint {
592
+ &:before {
593
+ content: $common-icon-powerpoint;
594
+ color: #d24726;
595
+ }
596
+ }
597
+ .common-icon-word {
598
+ &:before {
599
+ content: $common-icon-word;
600
+ color: #2b579a;
601
+ }
602
+ }
603
+ .common-icon-pdf {
604
+ &:before {
605
+ content: $common-icon-pdf;
606
+ color: #d80027;
607
+ }
608
+ }
609
+ .common-icon-caret-down {
610
+ &:before {
611
+ content: $common-icon-caret-down;
612
+ }
613
+ }
614
+ .common-icon-th-large {
615
+ &:before {
616
+ content: $common-icon-th-large;
617
+ }
618
+ }
619
+ .common-icon-th-list {
620
+ &:before {
621
+ content: $common-icon-th-list;
622
+ }
623
+ }
624
+ .common-icon-image {
625
+ &:before {
626
+ content: $common-icon-image;
627
+ }
628
+ }
629
+ .common-icon-user3 {
630
+ &:before {
631
+ content: $common-icon-user3;
632
+ }
633
+ }
634
+ .common-icon-lock2 {
635
+ &:before {
636
+ content: $common-icon-lock2;
637
+ }
638
+ }
639
+ .common-icon-shield2 {
640
+ &:before {
641
+ content: $common-icon-shield2;
642
+ }
643
+ }
644
+ .common-icon-email-2 {
645
+ &:before {
646
+ content: $common-icon-email-2;
647
+ }
648
+ }
649
+ .common-icon-sms-2 {
650
+ &:before {
651
+ content: $common-icon-sms-2;
652
+ }
653
+ }
654
+ .common-icon-menu {
655
+ &:before {
656
+ content: $common-icon-menu;
657
+ }
658
+ }
659
+ .common-icon-euro {
660
+ &:before {
661
+ content: $common-icon-euro;
662
+ }
663
+ }
664
+ .common-icon-pin {
665
+ &:before {
666
+ content: $common-icon-pin;
667
+ }
668
+ }
669
+ .common-icon-back {
670
+ &:before {
671
+ content: $common-icon-back;
672
+ }
673
+ }
674
+ .common-icon-student {
675
+ &:before {
676
+ content: $common-icon-student;
677
+ }
678
+ }
679
+ .common-icon-youngprof {
680
+ &:before {
681
+ content: $common-icon-youngprof;
682
+ }
683
+ }
684
+ .common-icon-cross {
685
+ &:before {
686
+ content: $common-icon-cross;
687
+ }
688
+ }
689
+ .common-icon-opera {
690
+ &:before {
691
+ content: $common-icon-opera;
692
+ }
693
+ }
694
+ .common-icon-safari {
695
+ &:before {
696
+ content: $common-icon-safari;
697
+ }
698
+ }
699
+ .common-icon-chrome {
700
+ &:before {
701
+ content: $common-icon-chrome;
702
+ }
703
+ }
704
+ .common-icon-firefox {
705
+ &:before {
706
+ content: $common-icon-firefox;
707
+ }
708
+ }
709
+ .common-icon-list-numbered {
710
+ &:before {
711
+ content: $common-icon-list-numbered;
712
+ }
713
+ }
714
+