ng-zenduit 1.0.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 (117) hide show
  1. package/README.md +24 -0
  2. package/esm2020/lib/breadcrumbs/zendu-breadcrumbs.component.mjs +37 -0
  3. package/esm2020/lib/card-block/zendu-card-block.component.mjs +21 -0
  4. package/esm2020/lib/checkbox/zendu-checkbox.component.mjs +44 -0
  5. package/esm2020/lib/colorpicker/zendu-colorpicker.component.mjs +106 -0
  6. package/esm2020/lib/column-configuration/columnState.mjs +2 -0
  7. package/esm2020/lib/column-configuration/zendu-column-configuration.component.mjs +118 -0
  8. package/esm2020/lib/datepicker/date-picker-day.mjs +2 -0
  9. package/esm2020/lib/datepicker/date-picker-hint.mjs +2 -0
  10. package/esm2020/lib/datepicker/datepicker.mjs +9 -0
  11. package/esm2020/lib/datepicker/zendu-datepicker.component.mjs +434 -0
  12. package/esm2020/lib/doc-scanner/zendu-doc-scanner.component.mjs +628 -0
  13. package/esm2020/lib/file-upload/zendu-file-upload.component.mjs +107 -0
  14. package/esm2020/lib/filter/dateRange.mjs +2 -0
  15. package/esm2020/lib/filter/filtersConfig.mjs +2 -0
  16. package/esm2020/lib/filter/numberRange.mjs +2 -0
  17. package/esm2020/lib/filter/zendu-filter.component.mjs +461 -0
  18. package/esm2020/lib/icon/zendu-icon.component.mjs +24 -0
  19. package/esm2020/lib/local.lock.mjs +33 -0
  20. package/esm2020/lib/location-search/location.address.mjs +2 -0
  21. package/esm2020/lib/location-search/zendu-location-search.component.mjs +129 -0
  22. package/esm2020/lib/map/map.types.mjs +2 -0
  23. package/esm2020/lib/map/zendu-map.component.mjs +129 -0
  24. package/esm2020/lib/map-preview/zendu-map-preview.component.mjs +30 -0
  25. package/esm2020/lib/ng-zenduit.module.mjs +158 -0
  26. package/esm2020/lib/pagination-bar/pageItem.mjs +2 -0
  27. package/esm2020/lib/pagination-bar/zendu-pagination-bar.component.mjs +71 -0
  28. package/esm2020/lib/phone-input/zendu-phone-input.component.mjs +141 -0
  29. package/esm2020/lib/progress/zendu-progress.component.mjs +29 -0
  30. package/esm2020/lib/radio-button/radio-button.component.mjs +48 -0
  31. package/esm2020/lib/search-box/zendu-search-box.component.mjs +124 -0
  32. package/esm2020/lib/select/templates/zendu-select-option.directive.mjs +16 -0
  33. package/esm2020/lib/select/templates/zendu-select-value.directive.mjs +16 -0
  34. package/esm2020/lib/select/zendu-select.component.mjs +303 -0
  35. package/esm2020/lib/services/geoconding.service.mjs +61 -0
  36. package/esm2020/lib/services/map.service.mjs +181 -0
  37. package/esm2020/lib/services/opencv.service.mjs +109 -0
  38. package/esm2020/lib/services/zendu-notify.service.mjs +92 -0
  39. package/esm2020/lib/sort-header/zendu-sort-header.component.mjs +36 -0
  40. package/esm2020/lib/spinner/zendu-spinner.component.mjs +11 -0
  41. package/esm2020/lib/toggle/zendu-toggle.component.mjs +32 -0
  42. package/esm2020/lib/toggle-slide/zendu-toggle-slide.component.mjs +27 -0
  43. package/esm2020/lib/util.mjs +93 -0
  44. package/esm2020/ng-zenduit.mjs +5 -0
  45. package/esm2020/public-api.mjs +42 -0
  46. package/fesm2015/ng-zenduit.mjs +3768 -0
  47. package/fesm2015/ng-zenduit.mjs.map +1 -0
  48. package/fesm2020/ng-zenduit.mjs +3735 -0
  49. package/fesm2020/ng-zenduit.mjs.map +1 -0
  50. package/icons/arrow-down-small.svg +3 -0
  51. package/icons/arrow-up-small.svg +3 -0
  52. package/icons/calendar.svg +6 -0
  53. package/icons/cross.svg +3 -0
  54. package/icons/date.svg +3 -0
  55. package/icons/expand.svg +3 -0
  56. package/icons/filter.svg +3 -0
  57. package/icons/play.svg +10 -0
  58. package/icons/redo.svg +3 -0
  59. package/icons/rotate.svg +3 -0
  60. package/icons/time.svg +4 -0
  61. package/icons/undo.svg +3 -0
  62. package/index.d.ts +5 -0
  63. package/lib/breadcrumbs/zendu-breadcrumbs.component.d.ts +22 -0
  64. package/lib/card-block/zendu-card-block.component.d.ts +9 -0
  65. package/lib/checkbox/zendu-checkbox.component.d.ts +17 -0
  66. package/lib/colorpicker/zendu-colorpicker.component.d.ts +28 -0
  67. package/lib/column-configuration/columnState.d.ts +7 -0
  68. package/lib/column-configuration/zendu-column-configuration.component.d.ts +43 -0
  69. package/lib/datepicker/date-picker-day.d.ts +8 -0
  70. package/lib/datepicker/date-picker-hint.d.ts +5 -0
  71. package/lib/datepicker/datepicker.d.ts +7 -0
  72. package/lib/datepicker/zendu-datepicker.component.d.ts +94 -0
  73. package/lib/doc-scanner/zendu-doc-scanner.component.d.ts +82 -0
  74. package/lib/file-upload/zendu-file-upload.component.d.ts +28 -0
  75. package/lib/filter/dateRange.d.ts +4 -0
  76. package/lib/filter/filtersConfig.d.ts +88 -0
  77. package/lib/filter/numberRange.d.ts +4 -0
  78. package/lib/filter/zendu-filter.component.d.ts +59 -0
  79. package/lib/icon/zendu-icon.component.d.ts +10 -0
  80. package/lib/local.lock.d.ts +8 -0
  81. package/lib/location-search/location.address.d.ts +12 -0
  82. package/lib/location-search/zendu-location-search.component.d.ts +32 -0
  83. package/lib/map/map.types.d.ts +33 -0
  84. package/lib/map/zendu-map.component.d.ts +23 -0
  85. package/lib/map-preview/zendu-map-preview.component.d.ts +11 -0
  86. package/lib/ng-zenduit.module.d.ts +34 -0
  87. package/lib/pagination-bar/pageItem.d.ts +4 -0
  88. package/lib/pagination-bar/zendu-pagination-bar.component.d.ts +25 -0
  89. package/lib/phone-input/zendu-phone-input.component.d.ts +39 -0
  90. package/lib/progress/zendu-progress.component.d.ts +14 -0
  91. package/lib/radio-button/radio-button.component.d.ts +18 -0
  92. package/lib/search-box/zendu-search-box.component.d.ts +26 -0
  93. package/lib/select/templates/zendu-select-option.directive.d.ts +8 -0
  94. package/lib/select/templates/zendu-select-value.directive.d.ts +8 -0
  95. package/lib/select/zendu-select.component.d.ts +107 -0
  96. package/lib/services/geoconding.service.d.ts +23 -0
  97. package/lib/services/map.service.d.ts +22 -0
  98. package/lib/services/opencv.service.d.ts +46 -0
  99. package/lib/services/zendu-notify.service.d.ts +10 -0
  100. package/lib/sort-header/zendu-sort-header.component.d.ts +10 -0
  101. package/lib/spinner/zendu-spinner.component.d.ts +5 -0
  102. package/lib/toggle/zendu-toggle.component.d.ts +14 -0
  103. package/lib/toggle-slide/zendu-toggle-slide.component.d.ts +13 -0
  104. package/lib/util.d.ts +11 -0
  105. package/package.json +36 -0
  106. package/public-api.d.ts +38 -0
  107. package/styles/action-menu.scss +127 -0
  108. package/styles/all.scss +11 -0
  109. package/styles/button.scss +188 -0
  110. package/styles/colors.scss +125 -0
  111. package/styles/common-form.scss +159 -0
  112. package/styles/extenal.scss +2 -0
  113. package/styles/ghost.scss +38 -0
  114. package/styles/global-restyle.scss +25 -0
  115. package/styles/page-layout.scss +82 -0
  116. package/styles/snackbar.scss +91 -0
  117. package/styles/table.scss +107 -0
@@ -0,0 +1,127 @@
1
+ @mixin action-menu-container() {
2
+ position: absolute;
3
+ background: #FFFFFF;
4
+ box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.03), 0px 4px 5px rgba(0, 0, 0, 0.24), 0px 1px 10px rgba(0, 0, 0, 0.1);
5
+ border-radius: 8px;
6
+ z-index: 10;
7
+ overflow: hidden;
8
+ }
9
+
10
+ @mixin action-menu-item() {
11
+ display: flex;
12
+ align-items: center;
13
+ gap: 8px;
14
+ cursor: pointer;
15
+ background: #FFFFFF;
16
+ color: #4F4F4F;
17
+ text-decoration: none;
18
+ user-select: none;
19
+
20
+ font-style: normal;
21
+ font-weight: 400;
22
+ font-size: 16px;
23
+ line-height: 24px;
24
+
25
+ &:hover,
26
+ &:focus-within {
27
+ outline: none;
28
+ text-decoration: none;
29
+ color: #4F4F4F;
30
+ background: #F4F9FD;
31
+ }
32
+ }
33
+
34
+ .action-item {
35
+ @include action-menu-item();
36
+ padding: 8px 16px;
37
+
38
+ &.active {
39
+ background: #F4F9FD;
40
+
41
+ &:hover,
42
+ &:focus {
43
+ background: #F4F9FD;
44
+ }
45
+ }
46
+
47
+ span {
48
+ word-break: break-all;
49
+
50
+ &.action-item-truncate {
51
+ text-overflow: ellipsis;
52
+ overflow: hidden;
53
+ word-break: unset;
54
+ }
55
+ }
56
+ }
57
+
58
+ .action-item-checkbox {
59
+ @include action-menu-item();
60
+ padding: 0 16px;
61
+
62
+ zen-checkbox {
63
+ width: 100%;
64
+
65
+ .checkbox-component {
66
+ padding: 8px 0;
67
+ }
68
+ }
69
+ }
70
+
71
+ .action-item-radio {
72
+ @include action-menu-item();
73
+ padding: 0 16px;
74
+
75
+ &.active {
76
+ background: #F4F9FD;
77
+
78
+ zen-radio {
79
+ .radio-component {
80
+ color: #4F4F4F;
81
+ }
82
+ }
83
+ }
84
+
85
+ zen-radio {
86
+ width: 100%;
87
+
88
+ .radio-component {
89
+ padding: 8px 0;
90
+
91
+ .radio-input + label {
92
+ padding: 0 0 0 28px !important;
93
+ }
94
+ }
95
+ }
96
+ }
97
+
98
+ .action-menu {
99
+ @include action-menu-container();
100
+
101
+ &-header {
102
+ display: flex;
103
+ flex-direction: column;
104
+ gap: 16px;
105
+ padding: 16px;
106
+ border-bottom: 1px solid #ECECED;
107
+
108
+ .title {
109
+ font-style: normal;
110
+ font-weight: 500;
111
+ font-size: 16px;
112
+ line-height: 24px;
113
+ }
114
+ }
115
+
116
+ &-body {
117
+ padding: 8px 0;
118
+ }
119
+
120
+ &-footer {
121
+ display: flex;
122
+ align-items: center;
123
+ gap: 16px;
124
+ padding: 16px;
125
+ border-top: 1px solid #ECECED;
126
+ }
127
+ }
@@ -0,0 +1,11 @@
1
+ @import "./extenal.scss";
2
+ @import "./colors.scss";
3
+ @import "./button.scss";
4
+ @import "./action-menu.scss";
5
+ @import "./common-form.scss";
6
+ @import "./table.scss";
7
+ @import "./page-layout.scss";
8
+ @import "./ghost.scss";
9
+ @import "./global-restyle.scss";
10
+ @import "./snackbar.scss";
11
+
@@ -0,0 +1,188 @@
1
+ @mixin button() {
2
+ display: flex;
3
+ flex-direction: row;
4
+ align-items: center;
5
+ height: 40px;
6
+ gap: 5px;
7
+ font-weight: 400;
8
+ font-size: 16px;
9
+ line-height: 24px;
10
+ padding: 0 24px;
11
+ border-radius: 2px;
12
+ box-sizing: border-box;
13
+ white-space: nowrap;
14
+ border: none;
15
+ transition: 0.1s;
16
+ cursor: pointer;
17
+
18
+ .mat-icon {
19
+ font-size: 20px;
20
+ }
21
+
22
+ &.button-small {
23
+ height: 32px;
24
+ padding: 0 16px;
25
+ }
26
+
27
+ &.button-icon {
28
+ padding: 0 10px;
29
+
30
+ &.button-small {
31
+ padding: 0 6px;
32
+ }
33
+ }
34
+
35
+ &.full-width {
36
+ width: 100%;
37
+ justify-content: center;
38
+ }
39
+ }
40
+
41
+ .button-basic {
42
+ @include button();
43
+ color: #333333;
44
+ background: $color-white-primary;
45
+
46
+ &:hover {
47
+ background: $color-primary-hover;
48
+ }
49
+
50
+ &:focus {
51
+ outline: none;
52
+ color: $color-primary;
53
+ background: $color-blue-tint-1;
54
+ }
55
+
56
+ &:disabled {
57
+ color: #d6d6d6;
58
+ background: $color-white-primary;
59
+ cursor: not-allowed;
60
+ }
61
+
62
+ // this is for toolbox button active state
63
+ &.active {
64
+ color: $color-primary;
65
+ background: $color-blue-tint-1;
66
+ }
67
+ }
68
+
69
+ .button-stroked {
70
+ @include button();
71
+ color: $color-grey-shade-2;
72
+ background: $color-white-primary;
73
+ border: 1px solid $color-white-tint-1;
74
+ box-sizing: border-box;
75
+
76
+ &:hover {
77
+ background: $color-white-sidemenu;
78
+ border-color: $color-white-tint-4;
79
+ }
80
+
81
+ &:focus {
82
+ outline: none;
83
+ color: $color-blue-primary;
84
+ border-color: $color-blue-primary;
85
+ background: $color-blue-tint-1;
86
+ box-shadow: 0 0 2px 2px rgba(33, 136, 217, 0.3);
87
+ }
88
+
89
+ &:disabled {
90
+ color: #d6d6d6;
91
+ border-color: #f2f2f3;
92
+ background: $color-white-primary;
93
+ cursor: not-allowed;
94
+ }
95
+ }
96
+
97
+ .button-flat {
98
+ @include button();
99
+ color: $color-white-primary;
100
+ background: $color-primary;
101
+
102
+ &:hover {
103
+ background: $color-blue-shade-1;
104
+ }
105
+
106
+ &:focus {
107
+ outline: none;
108
+ box-shadow: 0 0 2px 2px rgba(33, 136, 217, 0.3);
109
+ }
110
+
111
+ &:disabled {
112
+ background: $color-blue-tint-4;
113
+ cursor: not-allowed;
114
+ }
115
+ }
116
+
117
+ .button-alert {
118
+ @include button();
119
+ color: $color-white-primary;
120
+ background: $color-error-primary;
121
+
122
+ &:hover {
123
+ background: $color-error-shade;
124
+ }
125
+
126
+ &:focus {
127
+ outline: none;
128
+ box-shadow: 0px 4px 10px 0px #FFE0DE;
129
+ }
130
+
131
+ &:disabled {
132
+ background: $color-error-tint;
133
+ cursor: not-allowed;
134
+ }
135
+ }
136
+
137
+ // this button was completely restyled by designer
138
+ .button-basic-new {
139
+ display: flex;
140
+ flex-direction: row;
141
+ align-items: center;
142
+ height: 25px;
143
+ gap: 4px;
144
+ font-weight: 400;
145
+ font-size: 16px;
146
+ line-height: 130%;
147
+ padding: 0 2px;
148
+ border-radius: 2px;
149
+ box-sizing: border-box;
150
+ white-space: nowrap;
151
+ border: none;
152
+ transition: 0.1s;
153
+ cursor: pointer;
154
+ color: $color-grey-shade-2;
155
+ background: $color-white-primary;
156
+
157
+ .mat-icon {
158
+ font-size: 20px;
159
+ }
160
+
161
+ &.button-small {
162
+ height: 22px;
163
+ }
164
+
165
+ &.full-width {
166
+ width: 100%;
167
+ justify-content: center;
168
+ }
169
+
170
+ &:hover {
171
+ color: $color-grey-shade-4;
172
+ }
173
+
174
+ &:focus {
175
+ outline: none;
176
+ color: $color-primary;
177
+ }
178
+
179
+ &:disabled {
180
+ color: $color-white-tint-3;
181
+ cursor: not-allowed;
182
+ }
183
+
184
+ // this is for toolbox button active state
185
+ &.active {
186
+ color: $color-primary;
187
+ }
188
+ }
@@ -0,0 +1,125 @@
1
+ $color-primary: var(--color-primary, #2188d9);
2
+
3
+ $color-primary-hover: var(--color-primary-hover, #f7f7f8);
4
+
5
+ $color-blue-primary: var(--color-blue-primary, #2188d9);
6
+
7
+ /* Blue/Tint_01 */
8
+ $color-blue-tint-1: var(--color-blue-tint-1,#f4f9fd);
9
+
10
+ /* Blue/Tint_02 */
11
+ $color-blue-tint-2: var(--color-blue-tint-2,#e9f3fb);
12
+
13
+ /* Blue/Tint_03 */
14
+ $color-blue-tint-3: var(--color-blue-tint-3,#def0ff);
15
+
16
+ /* Blue/Tint_04 */
17
+ $color-blue-tint-4: var(--color-blue-tint-4,#cfe9fd);
18
+
19
+ /* Blue/Tint_05 */
20
+ $color-blue-tint-5: var(--color-blue-tint-5,#b7dffe);
21
+
22
+ /* Blue/Tint_06 */
23
+ $color-blue-tint-6: var(--color-blue-tint-6,#99d2ff);
24
+
25
+ /* Blue/Tint_07 */
26
+ $color-blue-tint-7: var(--color-blue-tint-7,#5cb3f8);
27
+
28
+ /* Blue/Shade_01 */
29
+ $color-blue-shade-1: var(--color-blue-shade-1,#0d74c5);
30
+
31
+ /* Blue/Shade_02 */
32
+ $color-blue-shade-2: var(--color-blue-shade-2,#16598d);
33
+
34
+ /* Blue/Shade_03 */
35
+ $color-blue-shade-3: var(--color-blue-shade-3,#074474);
36
+
37
+ /* Blue/Shade_04 */
38
+ $color-blue-shade-4: var(--color-blue-shade-4,#00335a);
39
+
40
+ /* Blue/Shade_05 */
41
+ $color-blue-shade-5: var(--color-blue-shade-5,#001e35);
42
+
43
+ /* Grayscale/Grey/Primary */
44
+ $color-grey-primary: var(--color-grey-primary,#4f4f4f);
45
+
46
+ /* Grayscale/Grey/2 */
47
+ $color-grey-2: var(--color-grey-2,#d0d0d2);
48
+
49
+ /* Grayscale/Grey/Shade_01 */
50
+ $color-grey-shade-1: var(--color-grey-shade-1,#a0a0a0);
51
+
52
+ /* Grayscale/Grey/Shade_02 */
53
+ $color-grey-shade-2: var(--color-grey-shade-2,#828282);
54
+
55
+ /* Grayscale/Grey/Shade_03 */
56
+ $color-grey-shade-3: var(--color-grey-shade-3,#6d6c6c);
57
+
58
+ /* Grayscale/Grey/Shade_04 */
59
+ $color-grey-shade-4: var(--color-grey-shade-4,#5b5b5b);
60
+
61
+ /* Grayscale/Grey/Shade_05 */
62
+ $color-grey-shade-5: var(--color-grey-shade-5,#3a3a3a);
63
+
64
+ /* Grayscale/Grey/Shade_06 */
65
+ $color-grey-shade-6: var(--color-grey-shade-6,#262626);
66
+
67
+ /* Grayscale/Grey/Shade_07 */
68
+ $color-grey-shade-7: var(--color-grey-shade-7,#121212);
69
+
70
+ /* Grayscale/White/Primary */
71
+ $color-white-primary: var(--color-white-primary,#ffffff);
72
+
73
+ // Grayscale/White/Tint_01
74
+ $color-white-tint-1: var(--color-white-tint-1,#f2f2f2);
75
+ // Grayscale/White/Tint_02
76
+ $color-white-tint-2: var(--color-white-tint-2,#ececed);
77
+ // Grayscale/White/Tint_04
78
+ $color-white-tint-3: var(--color-white-tint-3,#e0e0e0);
79
+ // Grayscale/White/Tint_04
80
+ $color-white-tint-4: var(--color-white-tint-4,#d6d6d8);
81
+ // Grayscale/White/Tint_05
82
+ $color-white-tint-5: var(--color-white-tint-5,#cdcdcd);
83
+ // Grayscale/White/Tint_06
84
+ $color-white-tint-6: var(--color-white-tint-6,#bebebe);
85
+ // Grayscale/White/Tint_07
86
+ $color-white-tint-7: var(--color-white-tint-7,#a6a6a6);
87
+
88
+ /* Grayscale/White/SideMenu */
89
+ $color-white-sidemenu: var(--color-white-sidemenu,#fafafa);
90
+
91
+ /* Success/Tint */
92
+ $color-success-tint: var(--color-success-tint,#e2f8db);
93
+
94
+ /* Success/Primary */
95
+ $color-success-primary: var(--color-success-primary,#5cbb3a);
96
+
97
+ /* Success/Shade */
98
+ $color-success-shade: var(--color-success-shade,#328614);
99
+
100
+ /* Error/Tint */
101
+ $color-error-tint: var(--color-error-tint,#ffe6e3);
102
+
103
+ /* Error/Primary */
104
+ $color-error-primary: var(--color-error-primary,#dc3e33);
105
+
106
+ /* Error/Shade */
107
+ $color-error-shade: var(--color-error-shade,#972c25);
108
+
109
+ /* Alert/Tint */
110
+ $color-alert-tint: var(--color-alert-tint,#fff2de);
111
+
112
+ /* Alert/Primary */
113
+ $color-alert-primary: var(--color-alert-primary,#f1b10b);
114
+
115
+ /* Alert/Shade */
116
+ $color-alert-shade: var(--color-alert-shade,#c77916);
117
+
118
+ /* Secondary/Tint */
119
+ $color-secondary-tint: var(--color-secondary-tint,#c1fbff);
120
+
121
+ /* Secondary/Primary */
122
+ $color-secondary-primary: var(--color-secondary-primary,#00f0ff);
123
+
124
+ /* Secondary/Shade */
125
+ $color-secondary-shade: var(--color-secondary-shade,#00b0bb);
@@ -0,0 +1,159 @@
1
+ .common-form {
2
+ display: flex;
3
+ flex-direction: column;
4
+ gap: 16px;
5
+
6
+ .required {
7
+ &:after {
8
+ content: " *";
9
+ color: #d92c21;
10
+ }
11
+ }
12
+
13
+ .form-row {
14
+ display: flex;
15
+ align-items: center;
16
+ gap: 16px;
17
+ width: 100%;
18
+ }
19
+
20
+ .form-sub-header {
21
+ margin: 0;
22
+ font-style: normal;
23
+ font-weight: 500;
24
+ font-size: 16px;
25
+ line-height: 24px;
26
+ color: #060c1b;
27
+ }
28
+
29
+ .form-element {
30
+ width: 100%;
31
+ position: relative;
32
+
33
+ > label {
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 8px;
37
+ margin-bottom: 8px;
38
+ transition: 0.3s;
39
+
40
+ font-style: normal;
41
+ font-weight: 400;
42
+ font-size: 12px;
43
+ line-height: 130%;
44
+ color: #4f4f4f;
45
+ }
46
+
47
+ .error-message {
48
+ display: none;
49
+ font-style: normal;
50
+ font-weight: normal;
51
+ font-size: 12px;
52
+ line-height: 130%;
53
+ align-items: center;
54
+ color: #d92c21;
55
+ padding-left: 20px;
56
+ height: 13px;
57
+ background-repeat: no-repeat;
58
+ background-size: 15px 13px;
59
+ margin-top: 3px;
60
+ }
61
+
62
+ &.error {
63
+ label {
64
+ color: #d92c21;
65
+ }
66
+
67
+ .material-input,
68
+ .zen-input,
69
+ .material-select,
70
+ .settings-multiselect {
71
+ border-color: #d92c21;
72
+ }
73
+
74
+ .error-message {
75
+ display: block;
76
+ }
77
+ }
78
+
79
+ &.country-code {
80
+ max-width: 140px;
81
+ }
82
+
83
+ &.toggle-slide {
84
+ display: flex;
85
+ align-items: center;
86
+ gap: 16px;
87
+
88
+ label {
89
+ margin: 0;
90
+ font-weight: 400;
91
+ font-size: 16px;
92
+ line-height: 130%;
93
+ color: #060c1b;
94
+ }
95
+ }
96
+
97
+ &:hover {
98
+ label {
99
+ color: #333333;
100
+ }
101
+
102
+ .material-input,
103
+ .zen-input,
104
+ .app-select-toggle,
105
+ .material-select,
106
+ .dropdown-toggle {
107
+ border-color: #b8b9bc;
108
+ }
109
+ }
110
+
111
+ &:focus-within {
112
+ label {
113
+ color: $color-primary;
114
+ }
115
+
116
+ .material-input,
117
+ .zen-input,
118
+ .app-select-toggle,
119
+ .material-select,
120
+ .dropdown-toggle {
121
+ border-color: $color-primary;
122
+ }
123
+ }
124
+ }
125
+ }
126
+
127
+ .material-input,
128
+ .zen-input {
129
+ width: 100%;
130
+
131
+ border: none;
132
+ outline: none;
133
+ border-bottom: 1px solid #d6d6d8;
134
+ padding-bottom: 8px;
135
+ transition: 0.3s;
136
+
137
+ font-style: normal;
138
+ font-weight: 400;
139
+ font-size: 14px;
140
+ line-height: 24px;
141
+ color: #4f4f4f;
142
+
143
+ &::placeholder {
144
+ color: #bebebe;
145
+ }
146
+
147
+ &:focus {
148
+ caret-color: $color-primary;
149
+ border-color: $color-primary;
150
+ }
151
+
152
+ &[readonly],
153
+ &[disabled] {
154
+ cursor: not-allowed;
155
+ color: #b8b9bc;
156
+ border-color: #d0d0d2;
157
+ background: #ffffff;
158
+ }
159
+ }
@@ -0,0 +1,2 @@
1
+ @import url("https://fonts.googleapis.com/css?family=Roboto:wght@100;300;400;500;700;900&display=swap");
2
+ @import url("https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Sharp|Material+Icons+Outlined&display=block");
@@ -0,0 +1,38 @@
1
+ @keyframes ghost-lines-fast {
2
+ 0% {
3
+ background-position: -100px;
4
+ }
5
+
6
+ 40% {
7
+ background-position: 40vw;
8
+ }
9
+
10
+ 100% {
11
+ background-position: 60vw;
12
+ }
13
+ }
14
+
15
+ @keyframes ghost-lines {
16
+ 0% {
17
+ background-position: -200px 0;
18
+ }
19
+
20
+ 100% {
21
+ background-position: calc(200px + 100%) 0;
22
+ }
23
+ }
24
+
25
+ .ghost-line {
26
+ background-color: #f8f7f7 !important;
27
+ margin: 10px;
28
+ background: 0 0/200px 100% no-repeat #f8f7f7;
29
+ background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
30
+ animation: ghost-lines 2s infinite linear;
31
+ }
32
+
33
+ .ghost-bg {
34
+ background-color: #f8f7f7 !important;
35
+ background: 0 0/200px 100% no-repeat #f8f7f7;
36
+ background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
37
+ animation: ghost-lines 2s infinite linear;
38
+ }
@@ -0,0 +1,25 @@
1
+ .pagination-component {
2
+ .app-select-toggle {
3
+ width: 35px !important;
4
+ border: none !important;
5
+ padding: 0 !important;
6
+
7
+ .selected-item {
8
+ line-height: 120% !important;
9
+ font-size: 12px !important;
10
+ color: #828282 !important;
11
+ }
12
+
13
+ .app-select-icon {
14
+ color: #828282 !important;
15
+ font-size: 16px !important;
16
+ }
17
+ }
18
+
19
+ .action-item {
20
+ justify-content: center !important;
21
+ font-size: 12px !important;
22
+ line-height: 120% !important;
23
+ padding: 8px !important;
24
+ }
25
+ }