@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/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@cuby-ui/core",
3
- "version": "0.0.384",
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.384",
10
- "@cuby-ui/cdk": "^0.0.384",
11
- "@cuby-ui/icons": "^0.0.384",
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",
@@ -1,17 +1,17 @@
1
1
  @use '../variables/colors' as colors;
2
2
 
3
3
  @mixin cui-clear-list() {
4
- padding: 0;
5
- margin: 0;
6
- list-style: none;
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
- width: 1px;
25
- background: colors.$cui-base-200;
24
+ border-left: $width $style colors.$cui-base-200;
26
25
  }
27
26
  }
28
27