@provoly/hypervisor 0.0.2 → 0.0.4
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/esm2022/provoly-hypervisor.mjs +1 -1
- package/esm2022/public-api.mjs +7 -3
- package/esm2022/src/lib/event/detail/event-detail.component.mjs +19 -0
- package/esm2022/src/lib/event/icon-pipe/event-icon.pipe.mjs +26 -0
- package/esm2022/src/lib/event/list/event-list.component.mjs +22 -0
- package/esm2022/src/lib/event/public-api.mjs +4 -0
- package/esm2022/src/lib/event-summary/item/event-summary-item.component.mjs +28 -0
- package/esm2022/src/lib/event-summary/list/event-summary-list.component.mjs +44 -0
- package/esm2022/src/lib/event-summary/public-api.mjs +3 -0
- package/esm2022/src/lib/general/base.token.mjs +3 -0
- package/esm2022/src/lib/general/i18n/en.translations.mjs +36 -0
- package/esm2022/src/lib/general/i18n/fr.translations.mjs +36 -0
- package/esm2022/src/lib/general/public-api.mjs +4 -0
- package/esm2022/src/lib/hypervisor.module.mjs +85 -0
- package/esm2022/src/lib/model/hyp-event.interface.mjs +13 -0
- package/esm2022/src/lib/model/hyp-process.interface.mjs +2 -0
- package/esm2022/src/lib/model/public-api.mjs +6 -0
- package/esm2022/src/lib/store/event/event.actions.mjs +11 -0
- package/esm2022/src/lib/store/event/event.effects.mjs +21 -0
- package/esm2022/src/lib/store/event/event.reducer.mjs +38 -0
- package/esm2022/src/lib/store/event/event.selectors.mjs +15 -0
- package/esm2022/src/lib/store/event/event.service.mjs +50 -0
- package/esm2022/src/lib/store/event/public-api.mjs +5 -0
- package/esm2022/src/lib/store/hypervisor/hypervisor.actions.mjs +5 -0
- package/esm2022/src/lib/store/hypervisor/hypervisor.effects.mjs +16 -0
- package/esm2022/src/lib/store/hypervisor/hypervisor.reducer.mjs +14 -0
- package/esm2022/src/lib/store/hypervisor/hypervisor.selectors.mjs +9 -0
- package/esm2022/src/lib/store/hypervisor/hypervisor.service.mjs +19 -0
- package/fesm2022/provoly-hypervisor.mjs +433 -24
- package/fesm2022/provoly-hypervisor.mjs.map +1 -1
- package/package.json +2 -2
- package/public-api.d.ts +6 -2
- package/src/lib/event/detail/event-detail.component.d.ts +9 -0
- package/src/lib/event/icon-pipe/event-icon.pipe.d.ts +15 -0
- package/src/lib/event/list/event-list.component.d.ts +11 -0
- package/src/lib/event/public-api.d.ts +3 -0
- package/src/lib/event-summary/item/event-summary-item.component.d.ts +10 -0
- package/src/lib/event-summary/list/event-summary-list.component.d.ts +19 -0
- package/src/lib/event-summary/public-api.d.ts +2 -0
- package/src/lib/general/base.token.d.ts +2 -0
- package/src/lib/general/i18n/en.translations.d.ts +35 -0
- package/src/lib/general/i18n/fr.translations.d.ts +35 -0
- package/src/lib/general/public-api.d.ts +3 -0
- package/src/lib/hypervisor.module.d.ts +25 -0
- package/src/lib/model/hyp-event.interface.d.ts +44 -0
- package/src/lib/model/hyp-process.interface.d.ts +4 -0
- package/src/lib/model/public-api.d.ts +2 -0
- package/src/lib/store/event/event.actions.d.ts +34 -0
- package/src/lib/store/event/event.effects.d.ts +20 -0
- package/src/lib/store/event/event.reducer.d.ts +13 -0
- package/src/lib/store/event/event.selectors.d.ts +12 -0
- package/src/lib/store/event/event.service.d.ts +14 -0
- package/src/lib/store/event/public-api.d.ts +4 -0
- package/src/lib/store/hypervisor/hypervisor.actions.d.ts +7 -0
- package/src/lib/store/hypervisor/hypervisor.effects.d.ts +10 -0
- package/src/lib/store/hypervisor/hypervisor.reducer.d.ts +7 -0
- package/src/lib/store/hypervisor/hypervisor.selectors.d.ts +5 -0
- package/src/lib/store/hypervisor/hypervisor.service.d.ts +10 -0
- package/styles/components/_o-hvy-event-summary-item.scss +38 -0
- package/styles/components/_o-hvy-event-summary-list.scss +45 -0
- package/styles/components/_o-hvy-events-table.scss +31 -0
- package/styles/main.scss +4 -0
- package/esm2022/lib/hypervisor.component.mjs +0 -19
- package/esm2022/lib/hypervisor.module.mjs +0 -21
- package/lib/hypervisor.component.d.ts +0 -5
- package/lib/hypervisor.module.d.ts +0 -7
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
@use '/node_modules/@provoly/dashboard/styles/abstracts' as *;
|
|
2
|
+
|
|
3
|
+
.o-hvy-events-table {
|
|
4
|
+
border-collapse: collapse;
|
|
5
|
+
width: 100%;
|
|
6
|
+
padding: toRem(20);
|
|
7
|
+
|
|
8
|
+
&__header {
|
|
9
|
+
th {
|
|
10
|
+
border-bottom: 2px solid #EAEAEA;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&__line {
|
|
15
|
+
&__cell {
|
|
16
|
+
height: toRem(50);
|
|
17
|
+
padding: toRem(15);
|
|
18
|
+
border-bottom: 1px solid #EAEAEA;
|
|
19
|
+
|
|
20
|
+
&.-centered {
|
|
21
|
+
text-align: center;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
&__name {
|
|
25
|
+
&__main {
|
|
26
|
+
font-weight: 500;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
package/styles/main.scss
ADDED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class DummyHypervisorComponent {
|
|
4
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: DummyHypervisorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: DummyHypervisorComponent, selector: "hvy-hypervisor", ngImport: i0, template: `
|
|
6
|
-
<p>
|
|
7
|
-
Dummy Hypervisor Component
|
|
8
|
-
</p>
|
|
9
|
-
`, isInline: true }); }
|
|
10
|
-
}
|
|
11
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: DummyHypervisorComponent, decorators: [{
|
|
12
|
-
type: Component,
|
|
13
|
-
args: [{ selector: 'hvy-hypervisor', template: `
|
|
14
|
-
<p>
|
|
15
|
-
Dummy Hypervisor Component
|
|
16
|
-
</p>
|
|
17
|
-
` }]
|
|
18
|
-
}] });
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaHlwZXJ2aXNvci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcm92b2x5L2h5cGVydmlzb3Ivc3JjL2xpYi9oeXBlcnZpc29yLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQVcxQyxNQUFNLE9BQU8sd0JBQXdCOzhHQUF4Qix3QkFBd0I7a0dBQXhCLHdCQUF3QixzREFQekI7Ozs7R0FJVDs7MkZBR1Usd0JBQXdCO2tCQVRwQyxTQUFTOytCQUNFLGdCQUFnQixZQUNoQjs7OztHQUlUIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2h2eS1oeXBlcnZpc29yJyxcbiAgdGVtcGxhdGU6IGBcbiAgICAgIDxwPlxuICAgICAgICAgIER1bW15IEh5cGVydmlzb3IgQ29tcG9uZW50XG4gICAgICA8L3A+XG4gIGAsXG4gIHN0eWxlczogW11cbn0pXG5leHBvcnQgY2xhc3MgRHVtbXlIeXBlcnZpc29yQ29tcG9uZW50IHtcblxufVxuIl19
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { DummyHypervisorComponent } from './hypervisor.component';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class PvyHypervisorModule {
|
|
5
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: PvyHypervisorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.1.3", ngImport: i0, type: PvyHypervisorModule, declarations: [DummyHypervisorComponent], exports: [DummyHypervisorComponent] }); }
|
|
7
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: PvyHypervisorModule }); }
|
|
8
|
-
}
|
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: PvyHypervisorModule, decorators: [{
|
|
10
|
-
type: NgModule,
|
|
11
|
-
args: [{
|
|
12
|
-
declarations: [
|
|
13
|
-
DummyHypervisorComponent
|
|
14
|
-
],
|
|
15
|
-
imports: [],
|
|
16
|
-
exports: [
|
|
17
|
-
DummyHypervisorComponent
|
|
18
|
-
]
|
|
19
|
-
}]
|
|
20
|
-
}] });
|
|
21
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaHlwZXJ2aXNvci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9wcm92b2x5L2h5cGVydmlzb3Ivc3JjL2xpYi9oeXBlcnZpc29yLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLHdCQUF3QixDQUFDOztBQWFsRSxNQUFNLE9BQU8sbUJBQW1COzhHQUFuQixtQkFBbUI7K0dBQW5CLG1CQUFtQixpQkFSNUIsd0JBQXdCLGFBS3hCLHdCQUF3QjsrR0FHZixtQkFBbUI7OzJGQUFuQixtQkFBbUI7a0JBVi9CLFFBQVE7bUJBQUM7b0JBQ1IsWUFBWSxFQUFFO3dCQUNaLHdCQUF3QjtxQkFDekI7b0JBQ0QsT0FBTyxFQUFFLEVBQ1I7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLHdCQUF3QjtxQkFDekI7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRHVtbXlIeXBlcnZpc29yQ29tcG9uZW50IH0gZnJvbSAnLi9oeXBlcnZpc29yLmNvbXBvbmVudCc7XG5cblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbXG4gICAgRHVtbXlIeXBlcnZpc29yQ29tcG9uZW50XG4gIF0sXG4gIGltcG9ydHM6IFtcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIER1bW15SHlwZXJ2aXNvckNvbXBvbmVudFxuICBdXG59KVxuZXhwb3J0IGNsYXNzIFB2eUh5cGVydmlzb3JNb2R1bGUgeyB9XG4iXX0=
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class DummyHypervisorComponent {
|
|
3
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DummyHypervisorComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DummyHypervisorComponent, "hvy-hypervisor", never, {}, {}, never, never, false, never>;
|
|
5
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./hypervisor.component";
|
|
3
|
-
export declare class PvyHypervisorModule {
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PvyHypervisorModule, never>;
|
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PvyHypervisorModule, [typeof i1.DummyHypervisorComponent], never, [typeof i1.DummyHypervisorComponent]>;
|
|
6
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<PvyHypervisorModule>;
|
|
7
|
-
}
|