@cuby-ui/core 0.0.128 → 0.0.129

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,12 +1,12 @@
1
1
  {
2
2
  "name": "@cuby-ui/core",
3
- "version": "0.0.128",
3
+ "version": "0.0.129",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=15.0.0",
6
6
  "@angular/core": ">=15.0.0",
7
7
  "@angular/forms": ">=15.0.0",
8
- "@cuby-ui/icons": "^0.0.128",
9
- "@cuby-ui/cdk": "^0.0.128",
8
+ "@cuby-ui/icons": "^0.0.129",
9
+ "@cuby-ui/cdk": "^0.0.129",
10
10
  "@tinkoff/ng-polymorpheus": "^4.3.0"
11
11
  },
12
12
  "dependencies": {
@@ -217,3 +217,9 @@
217
217
  font-size: 20px;
218
218
  line-height: 30px;
219
219
  }
220
+
221
+ @mixin text-overflow($wrap: nowrap) {
222
+ white-space: $wrap;
223
+ overflow: hidden;
224
+ text-overflow: ellipsis;
225
+ }