toggle-components-library 1.36.1-beta.7 → 1.36.1-beta.8
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/img/contacts-greyblue.ef6f8a9a.svg +1 -0
- package/dist/img/contacts-white.95d07c7a.svg +1 -0
- package/dist/toggle-components-library.common.js +243 -286
- package/dist/toggle-components-library.common.js.map +1 -1
- package/dist/toggle-components-library.css +1 -1
- package/dist/toggle-components-library.umd.js +243 -286
- package/dist/toggle-components-library.umd.js.map +1 -1
- package/dist/toggle-components-library.umd.min.js +1 -1
- package/dist/toggle-components-library.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/buttons/ToggleMetricsButton.vue +3 -22
- package/src/components/carousel/ToggleCarousel.vue +16 -29
- package/src/components/carousel/ToggleCarouselSlide.vue +1 -1
- package/src/components/forms/ToggleInputSelect.vue +13 -7
- package/src/components/forms/ToggleInputText.vue +15 -6
- package/src/components/metrics/ToggleMetricSingleMetric.vue +7 -12
- package/src/components/metrics/ToggleMetricSparkLine.vue +3 -7
- package/src/components/mixins/mixins.js +2 -2
- package/src/components/tables/ToggleTable.vue +114 -49
- package/src/index.js +1 -3
- package/src/sass/includes/_as_buttons.scss +4 -47
- package/src/sass/includes/_as_cards.scss +0 -33
- package/src/sass/includes/_as_carousels.scss +0 -12
- package/src/sass/includes/_as_inputs.scss +851 -838
- package/src/sass/includes/_as_metrics.scss +0 -5
- package/src/sass/includes/_as_navs.scss +2 -18
- package/src/sass/includes/_as_table.scss +163 -163
- package/dist/img/airship-feedback-hover.a207c947.svg +0 -10
- package/dist/img/airship-feedback.1f7c858c.svg +0 -10
- package/package-lock.json +0 -20285
- package/src/assets/icons/airship-feedback-hover.svg +0 -10
- package/src/assets/icons/airship-feedback.svg +0 -10
- package/src/components/cards/ToggleCommentCard.vue +0 -55
|
@@ -395,7 +395,7 @@
|
|
|
395
395
|
}
|
|
396
396
|
|
|
397
397
|
&:hover .contacts-icon {
|
|
398
|
-
background-
|
|
398
|
+
background-image: url("../assets/icons/contacts-white.svg");
|
|
399
399
|
}
|
|
400
400
|
}
|
|
401
401
|
//icons
|
|
@@ -418,11 +418,9 @@
|
|
|
418
418
|
}
|
|
419
419
|
|
|
420
420
|
.contacts-icon {
|
|
421
|
-
|
|
422
|
-
background-
|
|
423
|
-
-
|
|
424
|
-
mask: var(--svg);
|
|
425
|
-
mask-repeat: no-repeat;
|
|
421
|
+
background-image: url("../assets/icons/contacts-greyblue.svg");
|
|
422
|
+
background-repeat:no-repeat;
|
|
423
|
+
background-size:contain;
|
|
426
424
|
margin-right: 6px;
|
|
427
425
|
width: 14px;
|
|
428
426
|
height: 14px;
|
|
@@ -430,47 +428,6 @@
|
|
|
430
428
|
}
|
|
431
429
|
}
|
|
432
430
|
|
|
433
|
-
.toggle-metrics-button-small {
|
|
434
|
-
padding: 0px 13px;
|
|
435
|
-
font-size: 12px;
|
|
436
|
-
&.mini-contacts {
|
|
437
|
-
font-size: 0.65rem;
|
|
438
|
-
padding: 5px 12px;
|
|
439
|
-
}
|
|
440
|
-
.heatmap-icon {
|
|
441
|
-
width: 21px;
|
|
442
|
-
height: 21px;
|
|
443
|
-
}
|
|
444
|
-
.email-icon {
|
|
445
|
-
width: 25px;
|
|
446
|
-
height: 25px;
|
|
447
|
-
}
|
|
448
|
-
.contacts-icon {
|
|
449
|
-
--svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='.8em' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cstyle%3Esvg%7Bfill:%23fff%7D%3C/style%3E%3Cpath d='M304 128a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM49.3 464H398.7c-8.9-63.3-63.3-112-129-112H178.3c-65.7 0-120.1 48.7-129 112zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3z'/%3E%3C/svg%3E");
|
|
450
|
-
-webkit-mask: var(--svg);
|
|
451
|
-
mask: var(--svg);
|
|
452
|
-
mask-repeat: no-repeat;
|
|
453
|
-
}
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
.toggle-metrics-button-large {
|
|
457
|
-
padding: 23px 27px;
|
|
458
|
-
font-size: 17px;
|
|
459
|
-
&.mini-contacts {
|
|
460
|
-
font-size: .92rem;
|
|
461
|
-
padding: 10px 25px;
|
|
462
|
-
}
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
.toggle-metrics-button-disabled {
|
|
466
|
-
opacity: 0.3;
|
|
467
|
-
cursor: default;
|
|
468
|
-
|
|
469
|
-
.heatmap-icon, .email-icon, .contacts-icon {
|
|
470
|
-
transform: none !important;
|
|
471
|
-
}
|
|
472
|
-
}
|
|
473
|
-
|
|
474
431
|
.toggle-button-booster-badge {
|
|
475
432
|
display: flex;
|
|
476
433
|
align-items: center;
|
|
@@ -164,36 +164,3 @@
|
|
|
164
164
|
|
|
165
165
|
}
|
|
166
166
|
|
|
167
|
-
.toggle-comment-card {
|
|
168
|
-
display: flex;
|
|
169
|
-
flex-direction: row;
|
|
170
|
-
width: 100%;
|
|
171
|
-
height: 250px;
|
|
172
|
-
border-radius: 18px;
|
|
173
|
-
font-size: $toggle-font-size-regular;
|
|
174
|
-
font-family: $toggle-font-family;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.toggle-comment-card-info {
|
|
178
|
-
display: flex;
|
|
179
|
-
flex-direction: column;
|
|
180
|
-
justify-content: space-between;
|
|
181
|
-
padding: 30px 30px 20px 30px;
|
|
182
|
-
color: white;
|
|
183
|
-
border-radius: 30px;
|
|
184
|
-
width: 100%;
|
|
185
|
-
|
|
186
|
-
.toggle-comment-card-text {
|
|
187
|
-
text-align: justify;
|
|
188
|
-
line-height: 1.5rem;
|
|
189
|
-
text-overflow: ellipsis;
|
|
190
|
-
-webkit-line-clamp: 6;
|
|
191
|
-
-webkit-box-orient: vertical;
|
|
192
|
-
overflow: hidden;
|
|
193
|
-
display: -webkit-box;
|
|
194
|
-
|
|
195
|
-
p {
|
|
196
|
-
margin: 0
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
}
|
|
@@ -28,10 +28,6 @@
|
|
|
28
28
|
max-width: 100%;
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
|
-
}
|
|
32
|
-
.toggle-carousel-wrapper {
|
|
33
|
-
position: relative;
|
|
34
|
-
|
|
35
31
|
.toggle-carousel-button{
|
|
36
32
|
width: 50px;
|
|
37
33
|
height: 50px;
|
|
@@ -106,14 +102,6 @@
|
|
|
106
102
|
}
|
|
107
103
|
}
|
|
108
104
|
}
|
|
109
|
-
&--comments-left-arrow{
|
|
110
|
-
left: -24px;
|
|
111
|
-
opacity: 0.8;
|
|
112
|
-
}
|
|
113
|
-
&--comments-right-arrow{
|
|
114
|
-
right: -24px !important;
|
|
115
|
-
opacity: 0.8;
|
|
116
|
-
}
|
|
117
105
|
&--next{
|
|
118
106
|
right: 20px;
|
|
119
107
|
@media only screen and (max-width:768px){
|