ets-fe-ng-sdk 19.0.84 → 19.0.86
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/assets/scss/styles.scss +44 -1
- package/fesm2022/ets-fe-ng-sdk.mjs +1981 -1946
- package/fesm2022/ets-fe-ng-sdk.mjs.map +1 -1
- package/lib/Services/utility.service.d.ts +1 -1
- package/lib/Shared/components/btn/btn.component.d.ts +3 -3
- package/lib/Shared/components/index-comp-layout/index-comp-layout.component.d.ts +1 -1
- package/lib/Shared/components/input/date-input/date-input.component.d.ts +22 -18
- package/lib/Shared/components/input/input-base.component.d.ts +3 -1
- package/lib/Shared/components/input/input.model.d.ts +4 -0
- package/lib/Shared/components/input/input.service.d.ts +13 -4
- package/lib/Shared/components/phone-number/phone-number.component.d.ts +4 -4
- package/lib/Shared/components/text-case-2/text-case-2.component.d.ts +1 -1
- package/package.json +1 -1
package/assets/scss/styles.scss
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
@import url(./loader.scss);
|
|
2
|
+
|
|
2
3
|
:root {
|
|
3
4
|
--disabled-input-bg: #f4f4f4;
|
|
4
5
|
--borderRadius: 16px;
|
|
5
6
|
--mat-stepper-container-color: #ffffff00;
|
|
6
7
|
}
|
|
8
|
+
|
|
7
9
|
html {
|
|
8
10
|
--mat-stepper-header-edit-state-icon-background-color: var(--primary);
|
|
9
11
|
}
|
|
@@ -13,6 +15,7 @@ html {
|
|
|
13
15
|
src: url(../fonts/Raleway/Raleway-Italic-VariableFont_wght.ttf);
|
|
14
16
|
font-style: italic;
|
|
15
17
|
}
|
|
18
|
+
|
|
16
19
|
@font-face {
|
|
17
20
|
font-family: Raleway;
|
|
18
21
|
src: url(../fonts/Raleway/Raleway-VariableFont_wght.ttf);
|
|
@@ -95,14 +98,40 @@ html {
|
|
|
95
98
|
.shadow-#{$i} {
|
|
96
99
|
box-shadow: var(--shadow-#{$i}) !important;
|
|
97
100
|
}
|
|
101
|
+
|
|
98
102
|
.rounded-#{$i} {
|
|
99
103
|
border-radius: var(--space-#{$i}) !important;
|
|
100
104
|
}
|
|
105
|
+
|
|
106
|
+
.fs-#{$i} {
|
|
107
|
+
font-size: #{$i}px;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.g-#{$i},
|
|
111
|
+
.gy-#{$i} {
|
|
112
|
+
--bs-gutter-y: #{$i}px;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.g-#{$i},
|
|
116
|
+
.gx-#{$i} {
|
|
117
|
+
--bs-gutter-x: #{$i}px;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.gap-#{$i},
|
|
121
|
+
.column-gap-#{$i} {
|
|
122
|
+
column-gap: #{$i}px;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.gap-#{$i},
|
|
126
|
+
.row-gap-#{$i} {
|
|
127
|
+
row-gap: #{$i}px;
|
|
128
|
+
}
|
|
101
129
|
}
|
|
102
130
|
}
|
|
103
131
|
|
|
104
132
|
@include custom_spacings;
|
|
105
|
-
|
|
133
|
+
|
|
134
|
+
router-outlet+* {
|
|
106
135
|
height: 100%;
|
|
107
136
|
}
|
|
108
137
|
|
|
@@ -119,6 +148,7 @@ router-outlet + * {
|
|
|
119
148
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
|
|
120
149
|
transform: translate3d(0, -10px, 0);
|
|
121
150
|
}
|
|
151
|
+
|
|
122
152
|
.customdate {
|
|
123
153
|
.mat-mdc-icon-button {
|
|
124
154
|
--mdc-icon-button-icon-color: var(--primary);
|
|
@@ -174,9 +204,11 @@ router-outlet + * {
|
|
|
174
204
|
.mat-button-toggle-group {
|
|
175
205
|
height: calc(100% - 24px);
|
|
176
206
|
overflow: auto;
|
|
207
|
+
// overflow: hidden;
|
|
177
208
|
display: block;
|
|
178
209
|
border: none;
|
|
179
210
|
width: 40px;
|
|
211
|
+
width: auto;
|
|
180
212
|
|
|
181
213
|
.mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
|
|
182
214
|
line-height: 40px;
|
|
@@ -234,6 +266,7 @@ router-outlet + * {
|
|
|
234
266
|
.iti {
|
|
235
267
|
width: 100%;
|
|
236
268
|
}
|
|
269
|
+
|
|
237
270
|
.iti__flag-container {
|
|
238
271
|
right: 15px;
|
|
239
272
|
}
|
|
@@ -247,12 +280,14 @@ router-outlet + * {
|
|
|
247
280
|
border-color: var(--primary);
|
|
248
281
|
}
|
|
249
282
|
}
|
|
283
|
+
|
|
250
284
|
.animate-border-primary {
|
|
251
285
|
animation-name: animateBorderPrimary;
|
|
252
286
|
animation-duration: 1s;
|
|
253
287
|
animation-iteration-count: infinite;
|
|
254
288
|
border: 1px solid #dcdcdc33;
|
|
255
289
|
}
|
|
290
|
+
|
|
256
291
|
.text-ellipsis {
|
|
257
292
|
text-overflow: ellipsis;
|
|
258
293
|
/* word-wrap: normal; */
|
|
@@ -261,6 +296,7 @@ router-outlet + * {
|
|
|
261
296
|
overflow: hidden;
|
|
262
297
|
white-space: nowrap;
|
|
263
298
|
}
|
|
299
|
+
|
|
264
300
|
.pointer {
|
|
265
301
|
cursor: pointer;
|
|
266
302
|
}
|
|
@@ -269,6 +305,7 @@ router-outlet + * {
|
|
|
269
305
|
.mat-mdc-tooltip {
|
|
270
306
|
white-space: pre;
|
|
271
307
|
}
|
|
308
|
+
|
|
272
309
|
.text-shadow {
|
|
273
310
|
text-shadow: 0 0 10px #000000bd;
|
|
274
311
|
}
|
|
@@ -279,9 +316,11 @@ router-outlet + * {
|
|
|
279
316
|
align-items: center;
|
|
280
317
|
justify-content: center;
|
|
281
318
|
}
|
|
319
|
+
|
|
282
320
|
.cell {
|
|
283
321
|
display: inline-block;
|
|
284
322
|
}
|
|
323
|
+
|
|
285
324
|
.expandBtn {
|
|
286
325
|
min-height: 1px;
|
|
287
326
|
height: auto;
|
|
@@ -310,6 +349,7 @@ router-outlet + * {
|
|
|
310
349
|
background-color: var(--disabled-input-bg);
|
|
311
350
|
cursor: default;
|
|
312
351
|
}
|
|
352
|
+
|
|
313
353
|
.mdc-tooltip__surface.mdc-tooltip__surface-animation {
|
|
314
354
|
white-space: break-spaces;
|
|
315
355
|
}
|
|
@@ -318,13 +358,16 @@ router-outlet + * {
|
|
|
318
358
|
0% {
|
|
319
359
|
color: red;
|
|
320
360
|
}
|
|
361
|
+
|
|
321
362
|
50% {
|
|
322
363
|
color: black;
|
|
323
364
|
}
|
|
365
|
+
|
|
324
366
|
100% {
|
|
325
367
|
color: red;
|
|
326
368
|
}
|
|
327
369
|
}
|
|
370
|
+
|
|
328
371
|
.caution {
|
|
329
372
|
animation: caution;
|
|
330
373
|
animation-duration: 1s;
|