@ditojs/admin 2.85.0 → 2.85.1
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ditojs/admin",
|
|
3
|
-
"version": "2.85.
|
|
3
|
+
"version": "2.85.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Dito.js Admin is a schema based admin interface for Dito.js Server, featuring auto-generated views and forms and built with Vue.js",
|
|
6
6
|
"repository": "https://github.com/ditojs/dito/tree/master/packages/admin",
|
|
@@ -93,5 +93,5 @@
|
|
|
93
93
|
"typescript": "^5.9.3",
|
|
94
94
|
"vite": "^7.3.1"
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "2a442c0da86355cf67fa5e2077d121c2a62342d7"
|
|
97
97
|
}
|
|
@@ -310,6 +310,8 @@ export default DitoComponent.component('DitoTreeItem', {
|
|
|
310
310
|
.dito-tree-item {
|
|
311
311
|
--chevron-indent: #{$chevron-indent};
|
|
312
312
|
|
|
313
|
+
overflow: hidden;
|
|
314
|
+
|
|
313
315
|
> .dito-tree-header {
|
|
314
316
|
> .dito-tree-branch,
|
|
315
317
|
> .dito-tree-leaf {
|
|
@@ -333,12 +335,20 @@ export default DitoComponent.component('DitoTreeItem', {
|
|
|
333
335
|
.dito-tree-leaf {
|
|
334
336
|
display: flex;
|
|
335
337
|
flex: auto;
|
|
338
|
+
overflow: hidden;
|
|
339
|
+
min-width: 0;
|
|
336
340
|
position: relative;
|
|
337
341
|
margin: 1px 0;
|
|
338
342
|
@include user-select(none);
|
|
339
343
|
}
|
|
340
344
|
|
|
341
|
-
.dito-tree-label
|
|
345
|
+
.dito-tree-label {
|
|
346
|
+
display: flex;
|
|
347
|
+
align-items: baseline;
|
|
348
|
+
overflow: hidden;
|
|
349
|
+
white-space: nowrap;
|
|
350
|
+
}
|
|
351
|
+
|
|
342
352
|
.dito-tree-info {
|
|
343
353
|
white-space: nowrap;
|
|
344
354
|
}
|
|
@@ -349,10 +359,12 @@ export default DitoComponent.component('DitoTreeItem', {
|
|
|
349
359
|
}
|
|
350
360
|
|
|
351
361
|
.dito-buttons {
|
|
362
|
+
flex: auto;
|
|
352
363
|
display: flex;
|
|
353
364
|
visibility: hidden;
|
|
354
365
|
height: 100%;
|
|
355
|
-
margin: 1px
|
|
366
|
+
margin: 1px;
|
|
367
|
+
margin-right: 0;
|
|
356
368
|
}
|
|
357
369
|
|
|
358
370
|
.dito-tree-header:hover {
|