@cuby-ui/core 0.0.384 → 0.0.386
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/esm2022/widgets/storage-list/components/storage-list-item/storage-list-item.component.mjs +3 -3
- package/esm2022/widgets/user-action-context-menu/user-action-context-menu.component.mjs +3 -3
- package/fesm2022/cuby-ui-core.mjs +4 -4
- package/fesm2022/cuby-ui-core.mjs.map +1 -1
- package/package.json +4 -4
- package/styles/mixins/lists.scss +6 -7
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cuby-ui/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.386",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=18.0.0",
|
|
6
6
|
"@angular/core": ">=18.0.0",
|
|
7
7
|
"@angular/elements": ">=18.0.0",
|
|
8
8
|
"@angular/forms": ">=18.0.0",
|
|
9
|
-
"@cuby-ui/api": "^0.0.
|
|
10
|
-
"@cuby-ui/cdk": "^0.0.
|
|
11
|
-
"@cuby-ui/icons": "^0.0.
|
|
9
|
+
"@cuby-ui/api": "^0.0.386",
|
|
10
|
+
"@cuby-ui/cdk": "^0.0.386",
|
|
11
|
+
"@cuby-ui/icons": "^0.0.386",
|
|
12
12
|
"@editorjs/editorjs": "2.29.1",
|
|
13
13
|
"@editorjs/header": "^2.8.1",
|
|
14
14
|
"@editorjs/list": "^1.9.0",
|
package/styles/mixins/lists.scss
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
@use '../variables/colors' as colors;
|
|
2
2
|
|
|
3
3
|
@mixin cui-clear-list() {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
padding: 0;
|
|
5
|
+
margin: 0;
|
|
6
|
+
list-style: none;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
// The list should have no padding or border
|
|
10
10
|
// The $offset should correspond to the border-radius of the elements
|
|
11
|
-
@mixin cui-line-between-items($offset) {
|
|
11
|
+
@mixin cui-line-between-items($offset, $style: solid, $width: 1px) {
|
|
12
12
|
position: relative;
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
&>* {
|
|
15
15
|
z-index: 1;
|
|
16
16
|
}
|
|
17
17
|
|
|
@@ -21,8 +21,7 @@
|
|
|
21
21
|
top: 0;
|
|
22
22
|
bottom: 0;
|
|
23
23
|
left: $offset;
|
|
24
|
-
|
|
25
|
-
background: colors.$cui-base-200;
|
|
24
|
+
border-left: $width $style colors.$cui-base-200;
|
|
26
25
|
}
|
|
27
26
|
}
|
|
28
27
|
|