@valtimo/object 0.0.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/README.md +31 -0
- package/fesm2022/valtimo-object.mjs +973 -0
- package/fesm2022/valtimo-object.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/object-detail-container/object-detail-container.component.d.ts +28 -0
- package/lib/components/object-detail-container/tabs/object-detail/object-detail.component.d.ts +49 -0
- package/lib/components/object-list/object-list.component.d.ts +57 -0
- package/lib/models/object.model.d.ts +20 -0
- package/lib/object-routing.module.d.ts +8 -0
- package/lib/object.module.d.ts +22 -0
- package/lib/services/index.d.ts +5 -0
- package/lib/services/object-column.service.d.ts +14 -0
- package/lib/services/object-menu.service.d.ts +13 -0
- package/lib/services/object-state.service.d.ts +19 -0
- package/lib/services/object.service.d.ts +30 -0
- package/lib/services/tab.enum.d.ts +3 -0
- package/lib/services/tab.service.d.ts +10 -0
- package/package.json +24 -0
- package/public-api.d.ts +2 -0
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Object
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version
|
|
4
|
+
14.2.0.
|
|
5
|
+
|
|
6
|
+
## Code scaffolding
|
|
7
|
+
|
|
8
|
+
Run `ng generate component component-name --project object` to generate a new component. You can
|
|
9
|
+
also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project object`.
|
|
10
|
+
|
|
11
|
+
> Note: Don't forget to add `--project object` or else it will be added to the default project in
|
|
12
|
+
> your `angular.json` file.
|
|
13
|
+
|
|
14
|
+
## Build
|
|
15
|
+
|
|
16
|
+
Run `ng build object` to build the project. The build artifacts will be stored in the `dist/`
|
|
17
|
+
directory.
|
|
18
|
+
|
|
19
|
+
## Publishing
|
|
20
|
+
|
|
21
|
+
After building your library with `ng build object`, go to the dist folder `cd dist/object` and run
|
|
22
|
+
`npm publish`.
|
|
23
|
+
|
|
24
|
+
## Running unit tests
|
|
25
|
+
|
|
26
|
+
Run `ng test object` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
27
|
+
|
|
28
|
+
## Further help
|
|
29
|
+
|
|
30
|
+
To get more help on the Angular CLI use `ng help` or go check out the
|
|
31
|
+
[Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|