@odx/ui 4.1.0 → 4.2.0
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/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/scss/abstract/_breakpoints.scss +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @odx/ui
|
|
2
2
|
|
|
3
|
+
## 4.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- c42ff73: New 'angular-chart-js' library for chart-js customization. Please note that '@odx/angular/charts-config' has been removed from the '@odx/angular' library and you should install '@odx/angular-chart-js' and change the path in the 'ChartThemeModule' import.
|
|
8
|
+
|
|
9
|
+
1. Install new package: 'npm install @odx/angular-chart-js'
|
|
10
|
+
2. Change the path if you already use 'ChartThemeModule' before: '@odx/angular/charts-config' => '@odx/angular-chart-js'.
|
|
11
|
+
|
|
3
12
|
## 4.1.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -30,7 +30,7 @@ $breakpoints: (
|
|
|
30
30
|
$keys: get-breakpoint-names();
|
|
31
31
|
$index: list.index($keys, $breakpoint);
|
|
32
32
|
|
|
33
|
-
@return if($index < length($keys), list.nth($keys, $index + 1), null);
|
|
33
|
+
@return if($index < list.length($keys), list.nth($keys, $index + 1), null);
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
@function _get-min-value($breakpoint) {
|