@umbraco-cms/backoffice 14.0.0--preview005-5c967edf → 14.0.0--preview005-b4989b95
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/examples/sorter-with-nested-containers/sorter-dashboard.ts +1 -0
- package/examples/sorter-with-nested-containers/sorter-group.ts +3 -8
- package/examples/sorter-with-two-containers/sorter-dashboard.ts +1 -0
- package/examples/sorter-with-two-containers/sorter-group.ts +3 -0
- package/package.json +2 -2
|
@@ -78,6 +78,9 @@ export class ExampleSorterGroup extends UmbElementMixin(LitElement) {
|
|
|
78
78
|
:host {
|
|
79
79
|
display: block;
|
|
80
80
|
width: 100%;
|
|
81
|
+
border: 1px dashed rgba(122, 122, 122, 0.25);
|
|
82
|
+
border-radius: calc(var(--uui-border-radius) * 2);
|
|
83
|
+
padding: var(--uui-size-space-1);
|
|
81
84
|
}
|
|
82
85
|
|
|
83
86
|
.sorter-placeholder {
|
|
@@ -87,14 +90,6 @@ export class ExampleSorterGroup extends UmbElementMixin(LitElement) {
|
|
|
87
90
|
.sorter-container {
|
|
88
91
|
min-height: 20px;
|
|
89
92
|
}
|
|
90
|
-
|
|
91
|
-
example-sorter-group {
|
|
92
|
-
display: block;
|
|
93
|
-
width: 100%;
|
|
94
|
-
border: 1px dashed rgba(122, 122, 122, 0.25);
|
|
95
|
-
border-radius: calc(var(--uui-border-radius) * 2);
|
|
96
|
-
padding: var(--uui-size-space-1);
|
|
97
|
-
}
|
|
98
93
|
`,
|
|
99
94
|
];
|
|
100
95
|
}
|
|
@@ -69,6 +69,9 @@ export class ExampleSorterGroup extends UmbElementMixin(LitElement) {
|
|
|
69
69
|
:host {
|
|
70
70
|
display: block;
|
|
71
71
|
width: 100%;
|
|
72
|
+
border: 1px dashed rgba(122, 122, 122, 0.25);
|
|
73
|
+
border-radius: calc(var(--uui-border-radius) * 2);
|
|
74
|
+
padding: var(--uui-size-space-1);
|
|
72
75
|
}
|
|
73
76
|
|
|
74
77
|
.sorter-placeholder {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-cms/backoffice",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "14.0.0--preview005-
|
|
4
|
+
"version": "14.0.0--preview005-b4989b95",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": null,
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"./tree": "./dist-cms/packages/core/tree/index.js",
|
|
46
46
|
"./variant": "./dist-cms/packages/core/variant/index.js",
|
|
47
47
|
"./workspace": "./dist-cms/packages/core/workspace/index.js",
|
|
48
|
-
"./
|
|
48
|
+
"./event": "./dist-cms/packages/core/event/index.js",
|
|
49
49
|
"./repository": "./dist-cms/packages/core/repository/index.js",
|
|
50
50
|
"./temporary-file": "./dist-cms/packages/core/temporary-file/index.js",
|
|
51
51
|
"./block": "./dist-cms/packages/block/index.js",
|