@dataloop-ai/components 0.17.62 → 0.17.63
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/package.json +1 -1
- package/src/assets/globals.scss +4 -0
- package/src/components/basic/DlPopup/components/PopupHeader.vue +3 -2
- package/src/components/compound/DlSlider/DlSlider.vue +1 -1
- package/src/components/compound/DlSlider/components/DlSliderBase.vue +1 -1
- package/src/components/compound/DlSlider/components/DlSliderInput.vue +1 -1
- package/src/components/compound/DlSlider/sliderStyles.scss +3 -0
- package/src/components/essential/DlTypography/DlTypography.vue +7 -1
package/package.json
CHANGED
package/src/assets/globals.scss
CHANGED
|
@@ -142,6 +142,8 @@ body {
|
|
|
142
142
|
--dl-font-size-h2: 20px;
|
|
143
143
|
--dl-font-size-h3: 16px;
|
|
144
144
|
--dl-font-size-h4: 14px;
|
|
145
|
+
--dl-font-size-h5: 12px;
|
|
146
|
+
--dl-font-size-h6: 10px;
|
|
145
147
|
--dl-font-size-body: 12px;
|
|
146
148
|
--dl-font-size-small: 10px;
|
|
147
149
|
|
|
@@ -173,6 +175,7 @@ body {
|
|
|
173
175
|
--dl-color-fill-third: #FBFBFB;
|
|
174
176
|
--dl-color-link: #20ABFA;
|
|
175
177
|
--dl-color-cell-background: #FFFAE2;
|
|
178
|
+
--dl-color-disabled-slider: #E4E4E4;
|
|
176
179
|
--q-color-positive: #38D079;
|
|
177
180
|
--q-color-warning: #E1B75B;
|
|
178
181
|
|
|
@@ -226,6 +229,7 @@ body {
|
|
|
226
229
|
--dl-color-fill-third: #9E9E9E1A;
|
|
227
230
|
--dl-color-link: #53B2E8;
|
|
228
231
|
--dl-color-cell-background: #FFFAE2;
|
|
232
|
+
--dl-color-disabled-slider: #64686D;
|
|
229
233
|
--q-color-positive: #A1E5B6;
|
|
230
234
|
--q-color-warning: #F8D29A;
|
|
231
235
|
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
v-else
|
|
39
39
|
color="dl-color-darker"
|
|
40
40
|
icon="icon-dl-close"
|
|
41
|
-
size="
|
|
41
|
+
size="12px"
|
|
42
42
|
/>
|
|
43
43
|
</span>
|
|
44
44
|
<span class="subtitle">{{ subtitle }}</span>
|
|
@@ -91,7 +91,7 @@ export default defineComponent({
|
|
|
91
91
|
<style scoped lang="scss">
|
|
92
92
|
.popup-header {
|
|
93
93
|
max-width: 100%;
|
|
94
|
-
padding:
|
|
94
|
+
padding: 16px 10px 20px 16px;
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
.header-content {
|
|
@@ -111,6 +111,7 @@ export default defineComponent({
|
|
|
111
111
|
display: flex;
|
|
112
112
|
justify-content: center;
|
|
113
113
|
align-items: center;
|
|
114
|
+
margin-top: 4px;
|
|
114
115
|
cursor: pointer;
|
|
115
116
|
transition: color 200ms;
|
|
116
117
|
&:hover {
|
|
@@ -16,7 +16,7 @@ import { transformOptions } from '../../shared/types'
|
|
|
16
16
|
|
|
17
17
|
type Variant = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p'
|
|
18
18
|
|
|
19
|
-
const sizes = ['h1', 'h2', 'h3', 'h4', 'body', 'small']
|
|
19
|
+
const sizes = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'body', 'small']
|
|
20
20
|
|
|
21
21
|
export default defineComponent({
|
|
22
22
|
name: 'DlTypography',
|
|
@@ -108,6 +108,12 @@ export default defineComponent({
|
|
|
108
108
|
&--h4 {
|
|
109
109
|
font-size: var(--dl-font-size-h4);
|
|
110
110
|
}
|
|
111
|
+
&--h5 {
|
|
112
|
+
font-size: var(--dl-font-size-h5);
|
|
113
|
+
}
|
|
114
|
+
&--h6 {
|
|
115
|
+
font-size: var(--dl-font-size-h6);
|
|
116
|
+
}
|
|
111
117
|
&--body {
|
|
112
118
|
font-size: var(--dl-font-size-body);
|
|
113
119
|
}
|