@odx/angular 5.2.1 → 5.2.3
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 +12 -0
- package/README.md +0 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @odx/angular
|
|
2
2
|
|
|
3
|
+
## 5.2.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5915ab7: fixed integration unit test for datepicker filter function
|
|
8
|
+
|
|
9
|
+
## 5.2.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 7f8f867: Removed storybook uikitmodule paragraph
|
|
14
|
+
|
|
3
15
|
## 5.2.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -26,18 +26,6 @@ Entry points:
|
|
|
26
26
|
- `@odx/angular/rxjs` - Collection of useful rxjs operators
|
|
27
27
|
- `@odx/angular/utils` - Collection of useful utilities for angular application development
|
|
28
28
|
|
|
29
|
-
#### UiKitModule
|
|
30
|
-
|
|
31
|
-
It's recommended to create a `UiKitModule` and re-export the `CoreModule` and all the components that are needed throughout the application.
|
|
32
|
-
|
|
33
|
-
```ts
|
|
34
|
-
@NgModule({
|
|
35
|
-
exports: [CoreModule, ButtonComponent, IconComponent, ...]
|
|
36
|
-
})
|
|
37
|
-
export class UiKitModule {
|
|
38
|
-
}
|
|
39
|
-
```
|
|
40
|
-
|
|
41
29
|
### Live demo ⭐
|
|
42
30
|
|
|
43
31
|
Please refer to our [**Storybook**](https://app-odx-storybook-release-weu.azurewebsites.net/), to see the components in action and to get further information.
|