toggle-components-library 1.36.1 → 1.36.3-beta.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.
- package/dist/img/airship-feedback-hover.a207c947.svg +10 -0
- package/dist/img/airship-feedback.1f7c858c.svg +10 -0
- package/dist/toggle-components-library.common.js +39486 -13335
- 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 +39486 -13335
- package/dist/toggle-components-library.umd.js.map +1 -1
- package/dist/toggle-components-library.umd.min.js +285 -8
- package/dist/toggle-components-library.umd.min.js.map +1 -1
- package/package.json +2 -1
- package/src/assets/icons/airship-feedback-hover.svg +10 -0
- package/src/assets/icons/airship-feedback.svg +10 -0
- package/src/components/buttons/ToggleMetricsButton.vue +22 -3
- package/src/components/cards/ToggleCommentCard.vue +55 -0
- package/src/components/carousel/ToggleCarousel.vue +29 -16
- package/src/components/carousel/ToggleCarouselSlide.vue +1 -1
- package/src/components/forms/ToggleDatePicker.vue +229 -138
- package/src/components/forms/ToggleInputCurrency.vue +10 -3
- package/src/components/forms/ToggleInputPercentage.vue +7 -1
- package/src/components/forms/ToggleInputSelect.vue +7 -13
- package/src/components/forms/ToggleInputText.vue +0 -11
- package/src/components/metrics/ToggleMetricSingleMetric.vue +12 -7
- package/src/components/metrics/ToggleMetricSparkLine.vue +7 -3
- package/src/components/mixins/mixins.js +2 -2
- package/src/components/statusbar/ToggleStatusBar.vue +74 -0
- package/src/components/tables/ToggleTable.vue +49 -114
- package/src/index.js +7 -4
- package/src/sass/includes/_as_buttons.scss +47 -4
- package/src/sass/includes/_as_cards.scss +33 -0
- package/src/sass/includes/_as_carousels.scss +12 -0
- package/src/sass/includes/_as_inputs.scss +830 -825
- package/src/sass/includes/_as_metrics.scss +5 -0
- package/src/sass/includes/_as_navs.scss +18 -2
- package/src/sass/includes/_as_statusbar.scss +183 -0
- package/src/sass/includes/_as_table.scss +163 -163
- package/src/sass/main.scss +1 -0
- package/dist/img/contacts-greyblue.ef6f8a9a.svg +0 -1
- package/dist/img/contacts-white.95d07c7a.svg +0 -1
- package/package-lock.json +0 -20285
|
@@ -164,3 +164,36 @@
|
|
|
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,6 +28,10 @@
|
|
|
28
28
|
max-width: 100%;
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
|
+
}
|
|
32
|
+
.toggle-carousel-wrapper {
|
|
33
|
+
position: relative;
|
|
34
|
+
|
|
31
35
|
.toggle-carousel-button{
|
|
32
36
|
width: 50px;
|
|
33
37
|
height: 50px;
|
|
@@ -102,6 +106,14 @@
|
|
|
102
106
|
}
|
|
103
107
|
}
|
|
104
108
|
}
|
|
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
|
+
}
|
|
105
117
|
&--next{
|
|
106
118
|
right: 20px;
|
|
107
119
|
@media only screen and (max-width:768px){
|