@dataloop-ai/components 0.20.53 → 0.20.55
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 +2 -2
- package/src/components/compound/DlInput/DlInput.vue +2 -3
- package/src/components/compound/DlInput/components/InputFileElement.vue +1 -1
- package/src/components/compound/DlOptionGroup/DlOptionGroup.vue +1 -1
- package/src/components/compound/DlPagination/components/QuickNavigation.vue +2 -2
- package/src/components/compound/DlSelect/DlSelect.vue +1 -1
- package/src/components/compound/DlTable/styles/dl-table-styles.scss +5 -5
- package/src/components/compound/DlTabs/components/DlTab.vue +2 -2
- package/src/components/compound/DlThumbnailGallery/DlThumbnailGallery.vue +3 -3
- package/src/components/essential/DlMenu/DlMenu.vue +3 -3
- package/src/components/essential/DlTypography/DlTypography.vue +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dataloop-ai/components",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.55",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": "./index.ts",
|
|
6
6
|
"./models": "./models.ts",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"check-only": "if grep -E -H -r --exclude-dir=.git --exclude-dir=node_modules --exclude=*.json --exclude=*.yml '^(describe|it).only' .; then echo 'Found only in test files' && exit 1; fi"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@dataloop-ai/icons": "^3.0.
|
|
26
|
+
"@dataloop-ai/icons": "^3.0.158",
|
|
27
27
|
"@types/flat": "^5.0.2",
|
|
28
28
|
"@types/lodash": "^4.14.184",
|
|
29
29
|
"@types/sortablejs": "^1.15.7",
|
|
@@ -1358,6 +1358,8 @@ export default defineComponent({
|
|
|
1358
1358
|
}
|
|
1359
1359
|
|
|
1360
1360
|
.dl-input {
|
|
1361
|
+
display: flex;
|
|
1362
|
+
align-items: center;
|
|
1361
1363
|
margin: var(--dl-input-margin);
|
|
1362
1364
|
|
|
1363
1365
|
/* Chrome, Safari, Edge, Opera */
|
|
@@ -1372,9 +1374,6 @@ export default defineComponent({
|
|
|
1372
1374
|
-moz-appearance: textfield;
|
|
1373
1375
|
}
|
|
1374
1376
|
|
|
1375
|
-
display: flex;
|
|
1376
|
-
align-items: center;
|
|
1377
|
-
|
|
1378
1377
|
&--dense {
|
|
1379
1378
|
padding: 0;
|
|
1380
1379
|
}
|
|
@@ -67,6 +67,7 @@ export default defineComponent({
|
|
|
67
67
|
|
|
68
68
|
<style lang="scss" scoped>
|
|
69
69
|
.input-file-element {
|
|
70
|
+
padding: 5px;
|
|
70
71
|
position: relative;
|
|
71
72
|
&--default {
|
|
72
73
|
display: flex;
|
|
@@ -86,7 +87,6 @@ export default defineComponent({
|
|
|
86
87
|
&--icon {
|
|
87
88
|
cursor: pointer;
|
|
88
89
|
}
|
|
89
|
-
padding: 5px;
|
|
90
90
|
}
|
|
91
91
|
.file-image {
|
|
92
92
|
width: 100px;
|
|
@@ -113,6 +113,8 @@ export default defineComponent({
|
|
|
113
113
|
padding-left: 5px;
|
|
114
114
|
padding-right: 5px;
|
|
115
115
|
font-size: 10px;
|
|
116
|
+
max-width: 30px; // 40px - 10px (paddings)
|
|
117
|
+
-moz-appearance: textfield;
|
|
116
118
|
&::-webkit-outer-spin-button,
|
|
117
119
|
&::-webkit-inner-spin-button {
|
|
118
120
|
-webkit-appearance: none;
|
|
@@ -135,8 +137,6 @@ export default defineComponent({
|
|
|
135
137
|
border-color: var(--dl-color-disabled);
|
|
136
138
|
}
|
|
137
139
|
}
|
|
138
|
-
max-width: 30px; // 40px - 10px (paddings)
|
|
139
|
-
-moz-appearance: textfield;
|
|
140
140
|
}
|
|
141
141
|
}
|
|
142
142
|
|
|
@@ -1193,10 +1193,10 @@ export default defineComponent({
|
|
|
1193
1193
|
width: calc(100% - var(--dl-select-expand-icon-width));
|
|
1194
1194
|
padding: 0;
|
|
1195
1195
|
padding-right: var(--dl-select-expand-icon-width);
|
|
1196
|
+
height: auto;
|
|
1196
1197
|
.adornment-container {
|
|
1197
1198
|
height: 100%;
|
|
1198
1199
|
}
|
|
1199
|
-
height: auto;
|
|
1200
1200
|
|
|
1201
1201
|
&__with-prepend {
|
|
1202
1202
|
padding-left: 30px;
|
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.dl-table {
|
|
6
|
+
width: 100%;
|
|
7
|
+
max-width: 100%;
|
|
8
|
+
border-collapse: separate;
|
|
9
|
+
border-spacing: 0;
|
|
10
|
+
|
|
6
11
|
.vertical-border {
|
|
7
12
|
border-left: 1px solid var(--dl-color-separator);
|
|
8
13
|
border-right: 1px solid var(--dl-color-separator);
|
|
@@ -71,11 +76,6 @@
|
|
|
71
76
|
justify-content: center;
|
|
72
77
|
}
|
|
73
78
|
|
|
74
|
-
width: 100%;
|
|
75
|
-
max-width: 100%;
|
|
76
|
-
border-collapse: separate;
|
|
77
|
-
border-spacing: 0;
|
|
78
|
-
|
|
79
79
|
&__drag-icon>div {
|
|
80
80
|
transition: all ease-in 0.1s;
|
|
81
81
|
opacity: 0;
|
|
@@ -118,6 +118,8 @@ export default defineComponent({
|
|
|
118
118
|
display: flex;
|
|
119
119
|
align-items: center;
|
|
120
120
|
justify-content: center;
|
|
121
|
+
cursor: pointer;
|
|
122
|
+
flex-grow: 1;
|
|
121
123
|
.tab-icon {
|
|
122
124
|
margin: 0px 8px 0px 5px;
|
|
123
125
|
color: var(--dl-color-medium);
|
|
@@ -167,8 +169,6 @@ export default defineComponent({
|
|
|
167
169
|
&--no-border-bottom {
|
|
168
170
|
border-bottom: unset;
|
|
169
171
|
}
|
|
170
|
-
cursor: pointer;
|
|
171
|
-
flex-grow: 1;
|
|
172
172
|
}
|
|
173
173
|
|
|
174
174
|
.info-icon {
|
|
@@ -232,13 +232,13 @@ export default defineComponent({
|
|
|
232
232
|
max-width: 60px;
|
|
233
233
|
max-height: 60px;
|
|
234
234
|
transition: 0.1s;
|
|
235
|
+
cursor: pointer;
|
|
236
|
+
background-color: var(--dl-color-text-buttons);
|
|
237
|
+
padding: var(--img-padding);
|
|
235
238
|
&:hover {
|
|
236
239
|
transform: scale(1.1);
|
|
237
240
|
outline: 1px solid var(--dl-color-hover) !important;
|
|
238
241
|
}
|
|
239
|
-
cursor: pointer;
|
|
240
|
-
background-color: var(--dl-color-text-buttons);
|
|
241
|
-
padding: var(--img-padding);
|
|
242
242
|
}
|
|
243
243
|
&--image img {
|
|
244
244
|
pointer-events: none;
|
|
@@ -536,12 +536,12 @@ export default defineComponent({
|
|
|
536
536
|
border-radius: 2px;
|
|
537
537
|
overflow-y: auto;
|
|
538
538
|
overflow-x: hidden;
|
|
539
|
-
&::-webkit-scrollbar {
|
|
540
|
-
width: var(--dl-menu-scrollbar-width, 5px);
|
|
541
|
-
}
|
|
542
539
|
outline: 0;
|
|
543
540
|
max-height: 65vh;
|
|
544
541
|
z-index: var(--menu-z-index);
|
|
542
|
+
&::-webkit-scrollbar {
|
|
543
|
+
width: var(--dl-menu-scrollbar-width, 5px);
|
|
544
|
+
}
|
|
545
545
|
|
|
546
546
|
&--square {
|
|
547
547
|
border-radius: 0;
|
|
@@ -96,6 +96,11 @@ export default defineComponent({
|
|
|
96
96
|
.dl-typography {
|
|
97
97
|
margin: 0;
|
|
98
98
|
padding: 0;
|
|
99
|
+
|
|
100
|
+
// important needed below for sizing of h tags.. quasar conflict
|
|
101
|
+
// to deal with quasar conflicts.
|
|
102
|
+
line-height: initial !important;
|
|
103
|
+
|
|
99
104
|
&--h1 {
|
|
100
105
|
font-size: var(--dl-font-size-h1);
|
|
101
106
|
}
|
|
@@ -120,9 +125,5 @@ export default defineComponent({
|
|
|
120
125
|
&--small {
|
|
121
126
|
font-size: var(--dl-font-size-small);
|
|
122
127
|
}
|
|
123
|
-
|
|
124
|
-
// important needed above for sizing of h tags.. quasar conflict
|
|
125
|
-
// to deal with quasar conflicts.
|
|
126
|
-
line-height: initial !important;
|
|
127
128
|
}
|
|
128
129
|
</style>
|