shared-ritm 1.0.88 → 1.0.89
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/dist/index.css +1 -1
- package/dist/shared-ritm.es.js +16 -16
- package/dist/shared-ritm.umd.js +7 -7
- package/dist/types/index.d.ts +1 -0
- package/dist/types/router/index.d.ts +2 -2
- package/package.json +1 -1
- package/src/common/app-button/AppButton.vue +1 -0
- package/src/common/app-checkbox/AppCheckbox.vue +26 -26
- package/src/common/app-date-picker/AppDatePicker.vue +66 -66
- package/src/common/app-sheet/AppSheet.vue +114 -111
- package/src/common/app-sidebar/AppSidebar.vue +1 -0
- package/src/icons/components/arrow-down-icon.vue +25 -25
- package/src/icons/components/arrow-frame-icon.vue +19 -19
- package/src/icons/components/arrow-square.vue +22 -22
- package/src/icons/header/flashIcon.vue +24 -24
- package/src/icons/header/notificationIcon.vue +18 -18
- package/src/icons/header/searchStatusIcon.vue +24 -24
- package/src/icons/header/smallCapsIcon.vue +34 -34
- package/src/icons/sidebar/assign-module-icon.vue +36 -36
- package/src/icons/sidebar/instrument-history-icon.vue +32 -32
- package/src/icons/sidebar/instrument-order-icon.vue +38 -38
- package/src/icons/sidebar/instrument-work-zone-icon.vue +18 -18
- package/src/icons/sidebar/instruments-icon.vue +45 -45
- package/src/icons/sidebar/logo-icon.vue +15 -15
- package/src/icons/sidebar/logout-icon.vue +13 -13
- package/src/icons/sidebar/modules-icon.vue +16 -16
- package/src/icons/sidebar/notifications-icon.vue +24 -24
- package/src/icons/sidebar/order-icon.vue +44 -44
- package/src/icons/sidebar/pass-icon.vue +38 -38
- package/src/icons/sidebar/positions-icon.vue +42 -42
- package/src/icons/sidebar/preorder-icon.vue +19 -19
- package/src/icons/sidebar/repair-object-icon.vue +18 -18
- package/src/icons/sidebar/repairs-icon.vue +20 -20
- package/src/icons/sidebar/roles-icon.vue +26 -26
- package/src/icons/sidebar/status-history-icon.vue +24 -24
- package/src/icons/sidebar/tasks-icon.vue +28 -28
- package/src/icons/sidebar/teams-icon.vue +32 -32
- package/src/icons/sidebar/user-icon.vue +18 -18
- package/src/icons/sidebar/users-icon.vue +46 -46
- package/src/icons/sidebar/videosources-icon.vue +19 -19
- package/src/icons/sidebar/videowall-icon.vue +13 -13
- package/src/icons/sidebar/videozones-icon.vue +21 -21
- package/src/icons/sidebar/warehouses-icon.vue +43 -43
- package/src/icons/sidebar/workshop-icon.vue +100 -100
- package/src/icons/sidebar/workzones-icon.vue +22 -22
- package/src/index.ts +1 -0
- package/src/shared/fonts/Montserrat-Bold.ttf +0 -0
- package/src/shared/fonts/NunitoSans_7pt-Bold.ttf +0 -0
- package/src/shared/styles/general.css +46 -27
package/src/index.ts
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
|
|
1
2
|
:root {
|
|
2
3
|
--main-header-height: 73px;
|
|
3
4
|
--main-footer-height: 66px;
|
|
@@ -15,35 +16,35 @@
|
|
|
15
16
|
|
|
16
17
|
/*color*/
|
|
17
18
|
:root {
|
|
18
|
-
--g-blue: #
|
|
19
|
-
--g-blue-light: #
|
|
20
|
-
--g-blue-dark: #
|
|
21
|
-
--g-green: #
|
|
22
|
-
--g-green-light: #
|
|
23
|
-
--g-green-dark: #
|
|
24
|
-
--g-red: #
|
|
25
|
-
--g-red-light: #
|
|
19
|
+
--g-blue: #3F8CFF;
|
|
20
|
+
--g-blue-light: #E4EFFF;
|
|
21
|
+
--g-blue-dark: #1C75FF;
|
|
22
|
+
--g-green: #00D097;
|
|
23
|
+
--g-green-light: #E0F9F2;
|
|
24
|
+
--g-green-dark: #B8F8E7;
|
|
25
|
+
--g-red: #FF192D;
|
|
26
|
+
--g-red-light: #FDECEE;
|
|
26
27
|
--g-red-dark: #ffdcde;
|
|
27
|
-
--g-grey-100: #
|
|
28
|
+
--g-grey-100: #D8E0F0;
|
|
28
29
|
|
|
29
|
-
--g-font-color: #
|
|
30
|
-
--g-font-grey-color: #
|
|
31
|
-
--g-font-secondary-color: #
|
|
30
|
+
--g-font-color: #0A1629;
|
|
31
|
+
--g-font-grey-color: #B9C0C7;
|
|
32
|
+
--g-font-secondary-color: #7D8592;
|
|
32
33
|
|
|
33
|
-
--g-grey-background: #
|
|
34
|
+
--g-grey-background: #CED5E0;
|
|
34
35
|
--g-grey-hover-background: #9fa5af;
|
|
35
|
-
--g-secondary-background: #
|
|
36
|
+
--g-secondary-background: #F4F9FD;
|
|
36
37
|
--g-thirty-background: #c8cbcf;
|
|
37
38
|
|
|
38
|
-
--g-fire-color-1: #
|
|
39
|
-
--g-fire-color-2: #
|
|
40
|
-
--g-fire-color-3: #
|
|
41
|
-
--g-fire-color-4: #
|
|
42
|
-
--g-fire-color-5: #
|
|
43
|
-
--g-fire-color-6: #
|
|
44
|
-
--g-fire-color-7: #
|
|
45
|
-
--g-fire-color-8: #
|
|
46
|
-
--g-fire-color-9: #
|
|
39
|
+
--g-fire-color-1: #FEE7E7;
|
|
40
|
+
--g-fire-color-2: #FED4D5;
|
|
41
|
+
--g-fire-color-3: #FCC0C0;
|
|
42
|
+
--g-fire-color-4: #F9A2A2;
|
|
43
|
+
--g-fire-color-5: #F97D7E;
|
|
44
|
+
--g-fire-color-6: #F65160;
|
|
45
|
+
--g-fire-color-7: #FF192D;
|
|
46
|
+
--g-fire-color-8: #AB0514;
|
|
47
|
+
--g-fire-color-9: #6E000A;
|
|
47
48
|
}
|
|
48
49
|
|
|
49
50
|
* {
|
|
@@ -51,8 +52,7 @@
|
|
|
51
52
|
padding: 0;
|
|
52
53
|
}
|
|
53
54
|
|
|
54
|
-
button:active,
|
|
55
|
-
button:focus {
|
|
55
|
+
button:active, button:focus {
|
|
56
56
|
outline: none !important;
|
|
57
57
|
}
|
|
58
58
|
|
|
@@ -69,9 +69,28 @@ html {
|
|
|
69
69
|
|
|
70
70
|
@font-face {
|
|
71
71
|
font-family: 'NunitoSansFont';
|
|
72
|
-
src: local('NunitoSansFont'), url(../fonts/NunitoSansFont.ttf) format('truetype');
|
|
72
|
+
src: local('NunitoSansFont-Regular'), url('../fonts/NunitoSansFont.ttf') format('truetype');
|
|
73
|
+
font-weight: 400;
|
|
74
|
+
font-style: normal;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
@font-face {
|
|
78
|
+
font-family: 'NunitoSansFont';
|
|
79
|
+
src: local('NunitoSansFont-Bold'), url('../fonts/NunitoSans_7pt-Bold.ttf') format('truetype');
|
|
80
|
+
font-weight: 700;
|
|
81
|
+
font-style: normal;
|
|
73
82
|
}
|
|
83
|
+
|
|
84
|
+
@font-face {
|
|
85
|
+
font-family: 'Montserrat';
|
|
86
|
+
src: local('Montserrat-Regular'), url('../fonts/Montserrat.ttf') format('truetype');
|
|
87
|
+
font-weight: 400;
|
|
88
|
+
font-style: normal;
|
|
89
|
+
}
|
|
90
|
+
|
|
74
91
|
@font-face {
|
|
75
92
|
font-family: 'Montserrat';
|
|
76
|
-
src: local('Montserrat'), url(../fonts/Montserrat.ttf) format('truetype');
|
|
93
|
+
src: local('Montserrat-Bold'), url('../fonts/Montserrat-Bold.ttf') format('truetype');
|
|
94
|
+
font-weight: 700;
|
|
95
|
+
font-style: normal;
|
|
77
96
|
}
|