@inera/ids-angular 8.0.0 → 8.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/components/action-link/action-link.component.d.ts +6 -0
- package/components/action-link/action-link.module.d.ts +8 -0
- package/components/action-link/index.d.ts +5 -0
- package/components/action-link/public-api.d.ts +2 -0
- package/components/grid/container/container.component.d.ts +2 -1
- package/components/tooltip/tooltip.component.d.ts +3 -2
- package/esm2022/components/action-link/action-link.component.mjs +12 -0
- package/esm2022/components/action-link/action-link.module.mjs +18 -0
- package/esm2022/components/action-link/inera-ids-angular-components-action-link.mjs +5 -0
- package/esm2022/components/action-link/public-api.mjs +3 -0
- package/esm2022/components/badge/badge.component.mjs +3 -3
- package/esm2022/components/grid/container/container.component.mjs +6 -3
- package/esm2022/components/notification/badge/notification-badge.component.mjs +4 -4
- package/esm2022/components/tooltip/tooltip.component.mjs +8 -5
- package/fesm2022/inera-ids-angular-components-action-link.mjs +34 -0
- package/fesm2022/inera-ids-angular-components-action-link.mjs.map +1 -0
- package/fesm2022/inera-ids-angular-components-badge.mjs +2 -2
- package/fesm2022/inera-ids-angular-components-badge.mjs.map +1 -1
- package/fesm2022/inera-ids-angular-components-grid-container.mjs +5 -2
- package/fesm2022/inera-ids-angular-components-grid-container.mjs.map +1 -1
- package/fesm2022/inera-ids-angular-components-grid.mjs +5 -2
- package/fesm2022/inera-ids-angular-components-grid.mjs.map +1 -1
- package/fesm2022/inera-ids-angular-components-notification-badge.mjs +3 -3
- package/fesm2022/inera-ids-angular-components-notification-badge.mjs.map +1 -1
- package/fesm2022/inera-ids-angular-components-tooltip.mjs +6 -3
- package/fesm2022/inera-ids-angular-components-tooltip.mjs.map +1 -1
- package/package.json +83 -77
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class IDActionLinkComponent {
|
|
3
|
+
constructor();
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IDActionLinkComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDActionLinkComponent, "id-action-link", never, {}, {}, never, ["*"], false, never>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import "@inera/ids-core/components/action-link/register";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./action-link.component";
|
|
4
|
+
export declare class IDActionLinkModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IDActionLinkModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IDActionLinkModule, [typeof i1.IDActionLinkComponent], never, [typeof i1.IDActionLinkComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<IDActionLinkModule>;
|
|
8
|
+
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class IDContainerComponent {
|
|
3
3
|
gutterless: Boolean;
|
|
4
|
+
rowgap: String;
|
|
4
5
|
constructor();
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDContainerComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDContainerComponent, "id-container", never, { "gutterless": { "alias": "gutterless"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDContainerComponent, "id-container", never, { "gutterless": { "alias": "gutterless"; "required": false; }; "rowgap": { "alias": "rowgap"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
7
8
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class IDTooltipComponent {
|
|
3
|
-
position:
|
|
3
|
+
position: "top-left" | "top" | "top-right" | "bottom-left" | "bottom" | "bottom-right";
|
|
4
|
+
maxwidth: string;
|
|
4
5
|
constructor();
|
|
5
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<IDTooltipComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IDTooltipComponent, "id-tooltip", never, { "position": { "alias": "position"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IDTooltipComponent, "id-tooltip", never, { "position": { "alias": "position"; "required": false; }; "maxwidth": { "alias": "maxwidth"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
7
8
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Component } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class IDActionLinkComponent {
|
|
4
|
+
constructor() { }
|
|
5
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDActionLinkComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDActionLinkComponent, selector: "id-action-link", ngImport: i0, template: "<ids-action-link>\n <ng-content></ng-content>\n</ids-action-link>\n" });
|
|
7
|
+
}
|
|
8
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDActionLinkComponent, decorators: [{
|
|
9
|
+
type: Component,
|
|
10
|
+
args: [{ selector: "id-action-link", template: "<ids-action-link>\n <ng-content></ng-content>\n</ids-action-link>\n" }]
|
|
11
|
+
}], ctorParameters: () => [] });
|
|
12
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9uLWxpbmsuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaWRzLWFuZ3VsYXIvY29tcG9uZW50cy9hY3Rpb24tbGluay9hY3Rpb24tbGluay5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pZHMtYW5ndWxhci9jb21wb25lbnRzL2FjdGlvbi1saW5rL2FjdGlvbi1saW5rLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBTTFDLE1BQU0sT0FBTyxxQkFBcUI7SUFDaEMsZ0JBQWUsQ0FBQzt3R0FETCxxQkFBcUI7NEZBQXJCLHFCQUFxQixzRENObEMsc0VBR0E7OzRGREdhLHFCQUFxQjtrQkFKakMsU0FBUzsrQkFDRSxnQkFBZ0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6IFwiaWQtYWN0aW9uLWxpbmtcIixcbiAgdGVtcGxhdGVVcmw6IFwiLi9hY3Rpb24tbGluay5jb21wb25lbnQuaHRtbFwiXG59KVxuZXhwb3J0IGNsYXNzIElEQWN0aW9uTGlua0NvbXBvbmVudCB7XG4gIGNvbnN0cnVjdG9yKCkge31cbn1cbiIsIjxpZHMtYWN0aW9uLWxpbms+XG4gIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cbjwvaWRzLWFjdGlvbi1saW5rPlxuIl19
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from "@angular/core";
|
|
2
|
+
import { IDActionLinkComponent } from "./action-link.component";
|
|
3
|
+
import "@inera/ids-core/components/action-link/register";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export class IDActionLinkModule {
|
|
6
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDActionLinkModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
7
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: IDActionLinkModule, declarations: [IDActionLinkComponent], exports: [IDActionLinkComponent] });
|
|
8
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDActionLinkModule });
|
|
9
|
+
}
|
|
10
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDActionLinkModule, decorators: [{
|
|
11
|
+
type: NgModule,
|
|
12
|
+
args: [{
|
|
13
|
+
declarations: [IDActionLinkComponent],
|
|
14
|
+
exports: [IDActionLinkComponent],
|
|
15
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
16
|
+
}]
|
|
17
|
+
}] });
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9uLWxpbmsubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaWRzLWFuZ3VsYXIvY29tcG9uZW50cy9hY3Rpb24tbGluay9hY3Rpb24tbGluay5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHNCQUFzQixFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNqRSxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUNoRSxPQUFPLGlEQUFpRCxDQUFDOztBQU96RCxNQUFNLE9BQU8sa0JBQWtCO3dHQUFsQixrQkFBa0I7eUdBQWxCLGtCQUFrQixpQkFKZCxxQkFBcUIsYUFDMUIscUJBQXFCO3lHQUdwQixrQkFBa0I7OzRGQUFsQixrQkFBa0I7a0JBTDlCLFFBQVE7bUJBQUM7b0JBQ1IsWUFBWSxFQUFFLENBQUMscUJBQXFCLENBQUM7b0JBQ3JDLE9BQU8sRUFBRSxDQUFDLHFCQUFxQixDQUFDO29CQUNoQyxPQUFPLEVBQUUsQ0FBQyxzQkFBc0IsQ0FBQztpQkFDbEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDVVNUT01fRUxFTUVOVFNfU0NIRU1BLCBOZ01vZHVsZSB9IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XG5pbXBvcnQgeyBJREFjdGlvbkxpbmtDb21wb25lbnQgfSBmcm9tIFwiLi9hY3Rpb24tbGluay5jb21wb25lbnRcIjtcbmltcG9ydCBcIkBpbmVyYS9pZHMtY29yZS9jb21wb25lbnRzL2FjdGlvbi1saW5rL3JlZ2lzdGVyXCI7XG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW0lEQWN0aW9uTGlua0NvbXBvbmVudF0sXG4gIGV4cG9ydHM6IFtJREFjdGlvbkxpbmtDb21wb25lbnRdLFxuICBzY2hlbWFzOiBbQ1VTVE9NX0VMRU1FTlRTX1NDSEVNQV1cbn0pXG5leHBvcnQgY2xhc3MgSURBY3Rpb25MaW5rTW9kdWxlIHt9XG4iXX0=
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
export * from './public-api';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5lcmEtaWRzLWFuZ3VsYXItY29tcG9uZW50cy1hY3Rpb24tbGluay5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2lkcy1hbmd1bGFyL2NvbXBvbmVudHMvYWN0aW9uLWxpbmsvaW5lcmEtaWRzLWFuZ3VsYXItY29tcG9uZW50cy1hY3Rpb24tbGluay50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { IDActionLinkComponent } from "./action-link.component";
|
|
2
|
+
export { IDActionLinkModule } from "./action-link.module";
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2lkcy1hbmd1bGFyL2NvbXBvbmVudHMvYWN0aW9uLWxpbmsvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUNoRSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB7IElEQWN0aW9uTGlua0NvbXBvbmVudCB9IGZyb20gXCIuL2FjdGlvbi1saW5rLmNvbXBvbmVudFwiO1xuZXhwb3J0IHsgSURBY3Rpb25MaW5rTW9kdWxlIH0gZnJvbSBcIi4vYWN0aW9uLWxpbmsubW9kdWxlXCI7XG4iXX0=
|
|
@@ -4,12 +4,12 @@ export class IDBadgeComponent {
|
|
|
4
4
|
constructor() { }
|
|
5
5
|
type = 'primary';
|
|
6
6
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDBadgeComponent, selector: "id-badge", inputs: { type: "type" }, ngImport: i0, template: "<ids-badge \n [type]=\"type\">\n <ng-content></ng-content>\n</ids-badge>" });
|
|
7
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDBadgeComponent, selector: "id-badge", inputs: { type: "type" }, ngImport: i0, template: "<ids-badge \n [type]=\"type\">\n <ng-content></ng-content>\n</ids-badge>", styles: [":host{display:contents}\n"] });
|
|
8
8
|
}
|
|
9
9
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDBadgeComponent, decorators: [{
|
|
10
10
|
type: Component,
|
|
11
|
-
args: [{ selector: 'id-badge', template: "<ids-badge \n [type]=\"type\">\n <ng-content></ng-content>\n</ids-badge>" }]
|
|
11
|
+
args: [{ selector: 'id-badge', template: "<ids-badge \n [type]=\"type\">\n <ng-content></ng-content>\n</ids-badge>", styles: [":host{display:contents}\n"] }]
|
|
12
12
|
}], ctorParameters: () => [], propDecorators: { type: [{
|
|
13
13
|
type: Input
|
|
14
14
|
}] } });
|
|
15
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFkZ2UuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvaWRzLWFuZ3VsYXIvY29tcG9uZW50cy9iYWRnZS9iYWRnZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pZHMtYW5ndWxhci9jb21wb25lbnRzL2JhZGdlL2JhZGdlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQU9qRCxNQUFNLE9BQU8sZ0JBQWdCO0lBRTNCLGdCQUFnQixDQUFDO0lBR2pCLElBQUksR0FBcUYsU0FBUyxDQUFDO3dHQUx4RixnQkFBZ0I7NEZBQWhCLGdCQUFnQiwwRUNQN0IsNEVBR1k7OzRGRElDLGdCQUFnQjtrQkFMNUIsU0FBUzsrQkFDRSxVQUFVO3dEQVNwQixJQUFJO3NCQURILEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2lkLWJhZGdlJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2JhZGdlLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVzOiBbXCI6aG9zdCB7IGRpc3BsYXk6IGNvbnRlbnRzOyB9XCJdXG59KVxuZXhwb3J0IGNsYXNzIElEQmFkZ2VDb21wb25lbnQge1xuXG4gIGNvbnN0cnVjdG9yKCkgeyB9XG5cbiAgQElucHV0KClcbiAgdHlwZTogJ3ByaW1hcnknIHwgJ25ldXRyYWwnIHwgJ2luZm8nIHwgJ2F0dGVudGlvbicgfCAnc3VjY2VzcycgfCAnZXJyb3InIHwgJ3NlY29uZGFyeScgPSAncHJpbWFyeSc7XG5cbn1cbiIsIjxpZHMtYmFkZ2UgXG4gIFt0eXBlXT1cInR5cGVcIj5cbiAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuPC9pZHMtYmFkZ2U+Il19
|
|
@@ -2,14 +2,17 @@ import { Component, Input, ViewEncapsulation } from "@angular/core";
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class IDContainerComponent {
|
|
4
4
|
gutterless = false;
|
|
5
|
+
rowgap = "";
|
|
5
6
|
constructor() { }
|
|
6
7
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDContainerComponent, selector: "id-container", inputs: { gutterless: "gutterless" }, ngImport: i0, template: "<ids-container [attr.gutterless]=\"gutterless ? true : null\">\n <ng-content></ng-content>\n</ids-container>\n", encapsulation: i0.ViewEncapsulation.None });
|
|
8
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDContainerComponent, selector: "id-container", inputs: { gutterless: "gutterless", rowgap: "rowgap" }, ngImport: i0, template: "<ids-container [attr.gutterless]=\"gutterless ? true : null\" [attr.rowgap]=\"rowgap\">\n <ng-content></ng-content>\n</ids-container>\n", encapsulation: i0.ViewEncapsulation.None });
|
|
8
9
|
}
|
|
9
10
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDContainerComponent, decorators: [{
|
|
10
11
|
type: Component,
|
|
11
|
-
args: [{ selector: "id-container", encapsulation: ViewEncapsulation.None, template: "<ids-container [attr.gutterless]=\"gutterless ? true : null\">\n <ng-content></ng-content>\n</ids-container>\n" }]
|
|
12
|
+
args: [{ selector: "id-container", encapsulation: ViewEncapsulation.None, template: "<ids-container [attr.gutterless]=\"gutterless ? true : null\" [attr.rowgap]=\"rowgap\">\n <ng-content></ng-content>\n</ids-container>\n" }]
|
|
12
13
|
}], ctorParameters: () => [], propDecorators: { gutterless: [{
|
|
13
14
|
type: Input
|
|
15
|
+
}], rowgap: [{
|
|
16
|
+
type: Input
|
|
14
17
|
}] } });
|
|
15
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29udGFpbmVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2lkcy1hbmd1bGFyL2NvbXBvbmVudHMvZ3JpZC9jb250YWluZXIvY29udGFpbmVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2lkcy1hbmd1bGFyL2NvbXBvbmVudHMvZ3JpZC9jb250YWluZXIvY29udGFpbmVyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDOztBQU9wRSxNQUFNLE9BQU8sb0JBQW9CO0lBRS9CLFVBQVUsR0FBWSxLQUFLLENBQUM7SUFHNUIsTUFBTSxHQUFXLEVBQUUsQ0FBQztJQUVwQixnQkFBZSxDQUFDO3dHQVBMLG9CQUFvQjs0RkFBcEIsb0JBQW9CLDRHQ1BqQywySUFHQTs7NEZESWEsb0JBQW9CO2tCQUxoQyxTQUFTOytCQUNFLGNBQWMsaUJBRVQsaUJBQWlCLENBQUMsSUFBSTt3REFJckMsVUFBVTtzQkFEVCxLQUFLO2dCQUlOLE1BQU07c0JBREwsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiBcImlkLWNvbnRhaW5lclwiLFxuICB0ZW1wbGF0ZVVybDogXCIuL2NvbnRhaW5lci5jb21wb25lbnQuaHRtbFwiLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lXG59KVxuZXhwb3J0IGNsYXNzIElEQ29udGFpbmVyQ29tcG9uZW50IHtcbiAgQElucHV0KClcbiAgZ3V0dGVybGVzczogQm9vbGVhbiA9IGZhbHNlO1xuXG4gIEBJbnB1dCgpXG4gIHJvd2dhcDogU3RyaW5nID0gXCJcIjtcblxuICBjb25zdHJ1Y3RvcigpIHt9XG59XG4iLCI8aWRzLWNvbnRhaW5lciBbYXR0ci5ndXR0ZXJsZXNzXT1cImd1dHRlcmxlc3MgPyB0cnVlIDogbnVsbFwiICBbYXR0ci5yb3dnYXBdPVwicm93Z2FwXCI+XG4gIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cbjwvaWRzLWNvbnRhaW5lcj5cbiJdfQ==
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { Component, Input
|
|
1
|
+
import { Component, Input } from "@angular/core";
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class IDNotificationBadgeComponent {
|
|
4
4
|
constructor() { }
|
|
5
5
|
type = "primary";
|
|
6
6
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDNotificationBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDNotificationBadgeComponent, selector: "id-notification-badge", inputs: { type: "type" }, ngImport: i0, template: "<ids-notification-badge\n [type]=\"type\">\n <ng-content></ng-content>\n</ids-notification-badge>",
|
|
7
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDNotificationBadgeComponent, selector: "id-notification-badge", inputs: { type: "type" }, ngImport: i0, template: "<ids-notification-badge\n [type]=\"type\">\n <ng-content></ng-content>\n</ids-notification-badge>", styles: [":host{display:contents}\n"] });
|
|
8
8
|
}
|
|
9
9
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDNotificationBadgeComponent, decorators: [{
|
|
10
10
|
type: Component,
|
|
11
|
-
args: [{ selector: "id-notification-badge",
|
|
11
|
+
args: [{ selector: "id-notification-badge", template: "<ids-notification-badge\n [type]=\"type\">\n <ng-content></ng-content>\n</ids-notification-badge>", styles: [":host{display:contents}\n"] }]
|
|
12
12
|
}], ctorParameters: () => [], propDecorators: { type: [{
|
|
13
13
|
type: Input
|
|
14
14
|
}] } });
|
|
15
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm90aWZpY2F0aW9uLWJhZGdlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2lkcy1hbmd1bGFyL2NvbXBvbmVudHMvbm90aWZpY2F0aW9uL2JhZGdlL25vdGlmaWNhdGlvbi1iYWRnZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pZHMtYW5ndWxhci9jb21wb25lbnRzL25vdGlmaWNhdGlvbi9iYWRnZS9ub3RpZmljYXRpb24tYmFkZ2UuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBT2pELE1BQU0sT0FBTyw0QkFBNEI7SUFDdkMsZ0JBQWUsQ0FBQztJQUdoQixJQUFJLEdBQVcsU0FBUyxDQUFDO3dHQUpkLDRCQUE0Qjs0RkFBNUIsNEJBQTRCLHVGQ1B6QyxxR0FHeUI7OzRGRElaLDRCQUE0QjtrQkFMeEMsU0FBUzsrQkFDRSx1QkFBdUI7d0RBUWpDLElBQUk7c0JBREgsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6IFwiaWQtbm90aWZpY2F0aW9uLWJhZGdlXCIsXG4gIHRlbXBsYXRlVXJsOiBcIi4vbm90aWZpY2F0aW9uLWJhZGdlLmNvbXBvbmVudC5odG1sXCIsXG4gIHN0eWxlczogW1wiOmhvc3QgeyBkaXNwbGF5OiBjb250ZW50czsgfVwiXVxufSlcbmV4cG9ydCBjbGFzcyBJRE5vdGlmaWNhdGlvbkJhZGdlQ29tcG9uZW50IHtcbiAgY29uc3RydWN0b3IoKSB7fVxuXG4gIEBJbnB1dCgpXG4gIHR5cGU6IHN0cmluZyA9IFwicHJpbWFyeVwiO1xufVxuIiwiPGlkcy1ub3RpZmljYXRpb24tYmFkZ2VcbiAgW3R5cGVdPVwidHlwZVwiPlxuICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG48L2lkcy1ub3RpZmljYXRpb24tYmFkZ2U+Il19
|
|
@@ -1,15 +1,18 @@
|
|
|
1
|
-
import { Component, Input } from
|
|
1
|
+
import { Component, Input } from "@angular/core";
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export class IDTooltipComponent {
|
|
4
|
-
position =
|
|
4
|
+
position = "top";
|
|
5
|
+
maxwidth = "20rem";
|
|
5
6
|
constructor() { }
|
|
6
7
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDTooltipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDTooltipComponent, selector: "id-tooltip", inputs: { position: "position" }, ngImport: i0, template: "<ids-tooltip [position]=\"position\">\n <ng-content></ng-content>\n</ids-tooltip>" });
|
|
8
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDTooltipComponent, selector: "id-tooltip", inputs: { position: "position", maxwidth: "maxwidth" }, ngImport: i0, template: "<ids-tooltip [position]=\"position\" [maxwidth]=\"maxwidth\">\n <ng-content></ng-content>\n</ids-tooltip>" });
|
|
8
9
|
}
|
|
9
10
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDTooltipComponent, decorators: [{
|
|
10
11
|
type: Component,
|
|
11
|
-
args: [{ selector:
|
|
12
|
+
args: [{ selector: "id-tooltip", template: "<ids-tooltip [position]=\"position\" [maxwidth]=\"maxwidth\">\n <ng-content></ng-content>\n</ids-tooltip>" }]
|
|
12
13
|
}], ctorParameters: () => [], propDecorators: { position: [{
|
|
13
14
|
type: Input
|
|
15
|
+
}], maxwidth: [{
|
|
16
|
+
type: Input
|
|
14
17
|
}] } });
|
|
15
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidG9vbHRpcC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pZHMtYW5ndWxhci9jb21wb25lbnRzL3Rvb2x0aXAvdG9vbHRpcC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9pZHMtYW5ndWxhci9jb21wb25lbnRzL3Rvb2x0aXAvdG9vbHRpcC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFNakQsTUFBTSxPQUFPLGtCQUFrQjtJQUU3QixRQUFRLEdBQWlGLEtBQUssQ0FBQztJQUcvRixRQUFRLEdBQVcsT0FBTyxDQUFDO0lBRTNCLGdCQUFlLENBQUM7d0dBUEwsa0JBQWtCOzRGQUFsQixrQkFBa0IsMEdDTi9CLDRHQUVjOzs0RkRJRCxrQkFBa0I7a0JBSjlCLFNBQVM7K0JBQ0UsWUFBWTt3REFLdEIsUUFBUTtzQkFEUCxLQUFLO2dCQUlOLFFBQVE7c0JBRFAsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQgfSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6IFwiaWQtdG9vbHRpcFwiLFxuICB0ZW1wbGF0ZVVybDogXCIuL3Rvb2x0aXAuY29tcG9uZW50Lmh0bWxcIlxufSlcbmV4cG9ydCBjbGFzcyBJRFRvb2x0aXBDb21wb25lbnQge1xuICBASW5wdXQoKVxuICBwb3NpdGlvbjogXCJ0b3AtbGVmdFwiIHwgXCJ0b3BcIiB8IFwidG9wLXJpZ2h0XCIgfCBcImJvdHRvbS1sZWZ0XCIgfCBcImJvdHRvbVwiIHwgXCJib3R0b20tcmlnaHRcIiA9IFwidG9wXCI7XG5cbiAgQElucHV0KClcbiAgbWF4d2lkdGg6IHN0cmluZyA9IFwiMjByZW1cIjtcblxuICBjb25zdHJ1Y3RvcigpIHt9XG59XG4iLCI8aWRzLXRvb2x0aXAgW3Bvc2l0aW9uXT1cInBvc2l0aW9uXCIgW21heHdpZHRoXT1cIm1heHdpZHRoXCI+XG4gIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cbjwvaWRzLXRvb2x0aXA+Il19
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
3
|
+
import '@inera/ids-core/components/action-link/register';
|
|
4
|
+
|
|
5
|
+
class IDActionLinkComponent {
|
|
6
|
+
constructor() { }
|
|
7
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDActionLinkComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
8
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDActionLinkComponent, selector: "id-action-link", ngImport: i0, template: "<ids-action-link>\n <ng-content></ng-content>\n</ids-action-link>\n" });
|
|
9
|
+
}
|
|
10
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDActionLinkComponent, decorators: [{
|
|
11
|
+
type: Component,
|
|
12
|
+
args: [{ selector: "id-action-link", template: "<ids-action-link>\n <ng-content></ng-content>\n</ids-action-link>\n" }]
|
|
13
|
+
}], ctorParameters: () => [] });
|
|
14
|
+
|
|
15
|
+
class IDActionLinkModule {
|
|
16
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDActionLinkModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
17
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: IDActionLinkModule, declarations: [IDActionLinkComponent], exports: [IDActionLinkComponent] });
|
|
18
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDActionLinkModule });
|
|
19
|
+
}
|
|
20
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDActionLinkModule, decorators: [{
|
|
21
|
+
type: NgModule,
|
|
22
|
+
args: [{
|
|
23
|
+
declarations: [IDActionLinkComponent],
|
|
24
|
+
exports: [IDActionLinkComponent],
|
|
25
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
26
|
+
}]
|
|
27
|
+
}] });
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Generated bundle index. Do not edit.
|
|
31
|
+
*/
|
|
32
|
+
|
|
33
|
+
export { IDActionLinkComponent, IDActionLinkModule };
|
|
34
|
+
//# sourceMappingURL=inera-ids-angular-components-action-link.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"inera-ids-angular-components-action-link.mjs","sources":["../../../projects/ids-angular/components/action-link/action-link.component.ts","../../../projects/ids-angular/components/action-link/action-link.component.html","../../../projects/ids-angular/components/action-link/action-link.module.ts","../../../projects/ids-angular/components/action-link/inera-ids-angular-components-action-link.ts"],"sourcesContent":["import { Component } from \"@angular/core\";\n\n@Component({\n selector: \"id-action-link\",\n templateUrl: \"./action-link.component.html\"\n})\nexport class IDActionLinkComponent {\n constructor() {}\n}\n","<ids-action-link>\n <ng-content></ng-content>\n</ids-action-link>\n","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from \"@angular/core\";\nimport { IDActionLinkComponent } from \"./action-link.component\";\nimport \"@inera/ids-core/components/action-link/register\";\n\n@NgModule({\n declarations: [IDActionLinkComponent],\n exports: [IDActionLinkComponent],\n schemas: [CUSTOM_ELEMENTS_SCHEMA]\n})\nexport class IDActionLinkModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAMa,qBAAqB,CAAA;AAChC,IAAA,WAAA,GAAA,EAAe;wGADJ,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAArB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,qBAAqB,sDCNlC,sEAGA,EAAA,CAAA;;4FDGa,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBAJjC,SAAS;+BACE,gBAAgB,EAAA,QAAA,EAAA,sEAAA,EAAA;;;MEMf,kBAAkB,CAAA;wGAAlB,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA;yGAAlB,kBAAkB,EAAA,YAAA,EAAA,CAJd,qBAAqB,CAAA,EAAA,OAAA,EAAA,CAC1B,qBAAqB,CAAA,EAAA,CAAA;yGAGpB,kBAAkB,EAAA,CAAA;;4FAAlB,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAL9B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,YAAY,EAAE,CAAC,qBAAqB,CAAC;oBACrC,OAAO,EAAE,CAAC,qBAAqB,CAAC;oBAChC,OAAO,EAAE,CAAC,sBAAsB;AACjC,iBAAA;;;ACRD;;AAEG;;;;"}
|
|
@@ -6,11 +6,11 @@ class IDBadgeComponent {
|
|
|
6
6
|
constructor() { }
|
|
7
7
|
type = 'primary';
|
|
8
8
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
9
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDBadgeComponent, selector: "id-badge", inputs: { type: "type" }, ngImport: i0, template: "<ids-badge \n [type]=\"type\">\n <ng-content></ng-content>\n</ids-badge>" });
|
|
9
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDBadgeComponent, selector: "id-badge", inputs: { type: "type" }, ngImport: i0, template: "<ids-badge \n [type]=\"type\">\n <ng-content></ng-content>\n</ids-badge>", styles: [":host{display:contents}\n"] });
|
|
10
10
|
}
|
|
11
11
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDBadgeComponent, decorators: [{
|
|
12
12
|
type: Component,
|
|
13
|
-
args: [{ selector: 'id-badge', template: "<ids-badge \n [type]=\"type\">\n <ng-content></ng-content>\n</ids-badge>" }]
|
|
13
|
+
args: [{ selector: 'id-badge', template: "<ids-badge \n [type]=\"type\">\n <ng-content></ng-content>\n</ids-badge>", styles: [":host{display:contents}\n"] }]
|
|
14
14
|
}], ctorParameters: () => [], propDecorators: { type: [{
|
|
15
15
|
type: Input
|
|
16
16
|
}] } });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inera-ids-angular-components-badge.mjs","sources":["../../../projects/ids-angular/components/badge/badge.component.ts","../../../projects/ids-angular/components/badge/badge.component.html","../../../projects/ids-angular/components/badge/badge.module.ts","../../../projects/ids-angular/components/badge/inera-ids-angular-components-badge.ts"],"sourcesContent":["import { Component, Input } from '@angular/core';\n\n@Component({\n selector: 'id-badge',\n templateUrl: './badge.component.html',\n})\nexport class IDBadgeComponent {\n\n constructor() { }\n\n @Input()\n type: 'primary' | 'neutral' | 'info' | 'attention' | 'success' | 'error' | 'secondary' = 'primary';\n\n}\n","<ids-badge \n [type]=\"type\">\n <ng-content></ng-content>\n</ids-badge>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\nimport { IDBadgeComponent } from './badge.component';\nimport '@inera/ids-core/components/badge/register';\n\n@NgModule({\n declarations: [\n IDBadgeComponent\n ],\n exports: [\n IDBadgeComponent\n ],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class IDBadgeModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;
|
|
1
|
+
{"version":3,"file":"inera-ids-angular-components-badge.mjs","sources":["../../../projects/ids-angular/components/badge/badge.component.ts","../../../projects/ids-angular/components/badge/badge.component.html","../../../projects/ids-angular/components/badge/badge.module.ts","../../../projects/ids-angular/components/badge/inera-ids-angular-components-badge.ts"],"sourcesContent":["import { Component, Input } from '@angular/core';\n\n@Component({\n selector: 'id-badge',\n templateUrl: './badge.component.html',\n styles: [\":host { display: contents; }\"]\n})\nexport class IDBadgeComponent {\n\n constructor() { }\n\n @Input()\n type: 'primary' | 'neutral' | 'info' | 'attention' | 'success' | 'error' | 'secondary' = 'primary';\n\n}\n","<ids-badge \n [type]=\"type\">\n <ng-content></ng-content>\n</ids-badge>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\nimport { IDBadgeComponent } from './badge.component';\nimport '@inera/ids-core/components/badge/register';\n\n@NgModule({\n declarations: [\n IDBadgeComponent\n ],\n exports: [\n IDBadgeComponent\n ],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class IDBadgeModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAOa,gBAAgB,CAAA;AAE3B,IAAA,WAAA,GAAA,EAAgB;IAGhB,IAAI,GAAqF,SAAS;wGALvF,gBAAgB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAhB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,gBAAgB,0ECP7B,4EAGY,EAAA,MAAA,EAAA,CAAA,2BAAA,CAAA,EAAA,CAAA;;4FDIC,gBAAgB,EAAA,UAAA,EAAA,CAAA;kBAL5B,SAAS;+BACE,UAAU,EAAA,QAAA,EAAA,4EAAA,EAAA,MAAA,EAAA,CAAA,2BAAA,CAAA,EAAA;wDASpB,IAAI,EAAA,CAAA;sBADH;;;MEEU,aAAa,CAAA;wGAAb,aAAa,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA;yGAAb,aAAa,EAAA,YAAA,EAAA,CAPtB,gBAAgB,CAAA,EAAA,OAAA,EAAA,CAGhB,gBAAgB,CAAA,EAAA,CAAA;yGAIP,aAAa,EAAA,CAAA;;4FAAb,aAAa,EAAA,UAAA,EAAA,CAAA;kBATzB,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ;AACD,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP;AACD,qBAAA;oBACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;AAClC,iBAAA;;;ACZD;;AAEG;;;;"}
|
|
@@ -4,15 +4,18 @@ import '@inera/ids-core/components/grid/container/register';
|
|
|
4
4
|
|
|
5
5
|
class IDContainerComponent {
|
|
6
6
|
gutterless = false;
|
|
7
|
+
rowgap = "";
|
|
7
8
|
constructor() { }
|
|
8
9
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
9
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDContainerComponent, selector: "id-container", inputs: { gutterless: "gutterless" }, ngImport: i0, template: "<ids-container [attr.gutterless]=\"gutterless ? true : null\">\n <ng-content></ng-content>\n</ids-container>\n", encapsulation: i0.ViewEncapsulation.None });
|
|
10
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDContainerComponent, selector: "id-container", inputs: { gutterless: "gutterless", rowgap: "rowgap" }, ngImport: i0, template: "<ids-container [attr.gutterless]=\"gutterless ? true : null\" [attr.rowgap]=\"rowgap\">\n <ng-content></ng-content>\n</ids-container>\n", encapsulation: i0.ViewEncapsulation.None });
|
|
10
11
|
}
|
|
11
12
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDContainerComponent, decorators: [{
|
|
12
13
|
type: Component,
|
|
13
|
-
args: [{ selector: "id-container", encapsulation: ViewEncapsulation.None, template: "<ids-container [attr.gutterless]=\"gutterless ? true : null\">\n <ng-content></ng-content>\n</ids-container>\n" }]
|
|
14
|
+
args: [{ selector: "id-container", encapsulation: ViewEncapsulation.None, template: "<ids-container [attr.gutterless]=\"gutterless ? true : null\" [attr.rowgap]=\"rowgap\">\n <ng-content></ng-content>\n</ids-container>\n" }]
|
|
14
15
|
}], ctorParameters: () => [], propDecorators: { gutterless: [{
|
|
15
16
|
type: Input
|
|
17
|
+
}], rowgap: [{
|
|
18
|
+
type: Input
|
|
16
19
|
}] } });
|
|
17
20
|
|
|
18
21
|
class IDContainerModule {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inera-ids-angular-components-grid-container.mjs","sources":["../../../projects/ids-angular/components/grid/container/container.component.ts","../../../projects/ids-angular/components/grid/container/container.component.html","../../../projects/ids-angular/components/grid/container/container.module.ts","../../../projects/ids-angular/components/grid/container/inera-ids-angular-components-grid-container.ts"],"sourcesContent":["import { Component, Input, ViewEncapsulation } from \"@angular/core\";\n\n@Component({\n selector: \"id-container\",\n templateUrl: \"./container.component.html\",\n encapsulation: ViewEncapsulation.None\n})\nexport class IDContainerComponent {\n @Input()\n gutterless: Boolean = false;\n\n constructor() {}\n}\n","<ids-container [attr.gutterless]=\"gutterless ? true : null\">\n <ng-content></ng-content>\n</ids-container>\n","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\nimport { IDContainerComponent } from './container.component';\nimport '@inera/ids-core/components/grid/container/register';\n\n@NgModule({\n declarations: [\n IDContainerComponent\n ],\n exports: [\n IDContainerComponent\n ],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class IDContainerModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAOa,oBAAoB,CAAA;IAE/B,UAAU,GAAY,KAAK;
|
|
1
|
+
{"version":3,"file":"inera-ids-angular-components-grid-container.mjs","sources":["../../../projects/ids-angular/components/grid/container/container.component.ts","../../../projects/ids-angular/components/grid/container/container.component.html","../../../projects/ids-angular/components/grid/container/container.module.ts","../../../projects/ids-angular/components/grid/container/inera-ids-angular-components-grid-container.ts"],"sourcesContent":["import { Component, Input, ViewEncapsulation } from \"@angular/core\";\n\n@Component({\n selector: \"id-container\",\n templateUrl: \"./container.component.html\",\n encapsulation: ViewEncapsulation.None\n})\nexport class IDContainerComponent {\n @Input()\n gutterless: Boolean = false;\n\n @Input()\n rowgap: String = \"\";\n\n constructor() {}\n}\n","<ids-container [attr.gutterless]=\"gutterless ? true : null\" [attr.rowgap]=\"rowgap\">\n <ng-content></ng-content>\n</ids-container>\n","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\nimport { IDContainerComponent } from './container.component';\nimport '@inera/ids-core/components/grid/container/register';\n\n@NgModule({\n declarations: [\n IDContainerComponent\n ],\n exports: [\n IDContainerComponent\n ],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class IDContainerModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAOa,oBAAoB,CAAA;IAE/B,UAAU,GAAY,KAAK;IAG3B,MAAM,GAAW,EAAE;AAEnB,IAAA,WAAA,GAAA,EAAe;wGAPJ,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAApB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,oBAAoB,4GCPjC,2IAGA,EAAA,aAAA,EAAA,EAAA,CAAA,iBAAA,CAAA,IAAA,EAAA,CAAA;;4FDIa,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBALhC,SAAS;+BACE,cAAc,EAAA,aAAA,EAET,iBAAiB,CAAC,IAAI,EAAA,QAAA,EAAA,2IAAA,EAAA;wDAIrC,UAAU,EAAA,CAAA;sBADT;gBAID,MAAM,EAAA,CAAA;sBADL;;;MEEU,iBAAiB,CAAA;wGAAjB,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA;yGAAjB,iBAAiB,EAAA,YAAA,EAAA,CAP1B,oBAAoB,CAAA,EAAA,OAAA,EAAA,CAGpB,oBAAoB,CAAA,EAAA,CAAA;yGAIX,iBAAiB,EAAA,CAAA;;4FAAjB,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAT7B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ;AACD,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP;AACD,qBAAA;oBACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;AAClC,iBAAA;;;ACZD;;AAEG;;;;"}
|
|
@@ -112,15 +112,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
112
112
|
|
|
113
113
|
class IDContainerComponent {
|
|
114
114
|
gutterless = false;
|
|
115
|
+
rowgap = "";
|
|
115
116
|
constructor() { }
|
|
116
117
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
117
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDContainerComponent, selector: "id-container", inputs: { gutterless: "gutterless" }, ngImport: i0, template: "<ids-container [attr.gutterless]=\"gutterless ? true : null\">\n <ng-content></ng-content>\n</ids-container>\n", encapsulation: i0.ViewEncapsulation.None });
|
|
118
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDContainerComponent, selector: "id-container", inputs: { gutterless: "gutterless", rowgap: "rowgap" }, ngImport: i0, template: "<ids-container [attr.gutterless]=\"gutterless ? true : null\" [attr.rowgap]=\"rowgap\">\n <ng-content></ng-content>\n</ids-container>\n", encapsulation: i0.ViewEncapsulation.None });
|
|
118
119
|
}
|
|
119
120
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDContainerComponent, decorators: [{
|
|
120
121
|
type: Component,
|
|
121
|
-
args: [{ selector: "id-container", encapsulation: ViewEncapsulation.None, template: "<ids-container [attr.gutterless]=\"gutterless ? true : null\">\n <ng-content></ng-content>\n</ids-container>\n" }]
|
|
122
|
+
args: [{ selector: "id-container", encapsulation: ViewEncapsulation.None, template: "<ids-container [attr.gutterless]=\"gutterless ? true : null\" [attr.rowgap]=\"rowgap\">\n <ng-content></ng-content>\n</ids-container>\n" }]
|
|
122
123
|
}], ctorParameters: () => [], propDecorators: { gutterless: [{
|
|
123
124
|
type: Input
|
|
125
|
+
}], rowgap: [{
|
|
126
|
+
type: Input
|
|
124
127
|
}] } });
|
|
125
128
|
|
|
126
129
|
class IDContainerModule {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inera-ids-angular-components-grid.mjs","sources":["../../../projects/ids-angular/components/grid/column/column.component.ts","../../../projects/ids-angular/components/grid/column/column.component.html","../../../projects/ids-angular/components/grid/column/column.module.ts","../../../projects/ids-angular/components/grid/row/row.component.ts","../../../projects/ids-angular/components/grid/row/row.component.html","../../../projects/ids-angular/components/grid/row/row.module.ts","../../../projects/ids-angular/components/grid/container/container.component.ts","../../../projects/ids-angular/components/grid/container/container.component.html","../../../projects/ids-angular/components/grid/container/container.module.ts","../../../projects/ids-angular/components/grid/inera-ids-angular-components-grid.ts"],"sourcesContent":["import { Component, ElementRef, Input, OnInit, ViewEncapsulation } from '@angular/core';\n\n@Component({\n selector: 'id-col',\n templateUrl: './column.component.html',\n encapsulation: ViewEncapsulation.None,\n styles: ['id-col { display: contents; }']\n})\nexport class IDColumnComponent {\n\n @Input()\n cols: string = \"\"\n\n @Input()\n offset: string | null = null\n\n @Input()\n m: string = \"\"\n\n @Input()\n mOffset: string | null = null\n \n @Input()\n s: string = \"\"\n\n @Input()\n sOffset: string | null = null\n\n @Input()\n align: string = \"\"\n\n @Input()\n class: string = \"\"\n\n @Input()\n style: string | null = null\n\n constructor (private _elementRef : ElementRef) {\n this._elementRef.nativeElement.removeAttribute('style');\n }\n\n}\n","<ids-col \n [attr.cols]=\"cols\"\n [attr.offset]=\"offset\"\n [attr.m]=\"m\" \n [attr.moffset]=\"[mOffset]\"\n [attr.s]=\"s\" \n [attr.soffset]=\"[sOffset]\"\n [attr.align]=\"align\"\n [attr.style]=\"style\"\n [attr.class]=\"class\">\n <ng-content></ng-content>\n</ids-col>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\nimport { IDColumnComponent } from './column.component';\nimport '@inera/ids-core/components/grid/column/register';\n\n@NgModule({\n declarations: [\n IDColumnComponent\n ],\n exports: [\n IDColumnComponent\n ],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class IDColumnModule { }\n","import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core';\nimport {ElementRef} from '@angular/core';\n\n@Component({\n selector: 'id-row',\n templateUrl: './row.component.html',\n})\nexport class IDRowComponent {\n\n @Input()\n align: string | null = null;\n\n @Input()\n class: string | null = null;\n\n @Input()\n gap: string | null = null;\n\n @Input()\n justify: string | null = null;\n\n @Input()\n style: string | null = null;\n\n constructor (private _elementRef : ElementRef) {\n this._elementRef.nativeElement.removeAttribute('style');\n }\n\n}\n","<ids-row \n [attr.class]=\"class\"\n [style]=\"style\" \n [justify]=\"justify\"\n [align]=\"align\"\n [gap]=\"gap\">\n <ng-content></ng-content>\n</ids-row>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\nimport { IDRowComponent } from './row.component';\nimport '@inera/ids-core/components/grid/row/register';\n\n@NgModule({\n declarations: [\n IDRowComponent\n ],\n exports: [\n IDRowComponent\n ],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class IDRowModule { }\n","import { Component, Input, ViewEncapsulation } from \"@angular/core\";\n\n@Component({\n selector: \"id-container\",\n templateUrl: \"./container.component.html\",\n encapsulation: ViewEncapsulation.None\n})\nexport class IDContainerComponent {\n @Input()\n gutterless: Boolean = false;\n\n constructor() {}\n}\n","<ids-container [attr.gutterless]=\"gutterless ? true : null\">\n <ng-content></ng-content>\n</ids-container>\n","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\nimport { IDContainerComponent } from './container.component';\nimport '@inera/ids-core/components/grid/container/register';\n\n@NgModule({\n declarations: [\n IDContainerComponent\n ],\n exports: [\n IDContainerComponent\n ],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class IDContainerModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"inera-ids-angular-components-grid.mjs","sources":["../../../projects/ids-angular/components/grid/column/column.component.ts","../../../projects/ids-angular/components/grid/column/column.component.html","../../../projects/ids-angular/components/grid/column/column.module.ts","../../../projects/ids-angular/components/grid/row/row.component.ts","../../../projects/ids-angular/components/grid/row/row.component.html","../../../projects/ids-angular/components/grid/row/row.module.ts","../../../projects/ids-angular/components/grid/container/container.component.ts","../../../projects/ids-angular/components/grid/container/container.component.html","../../../projects/ids-angular/components/grid/container/container.module.ts","../../../projects/ids-angular/components/grid/inera-ids-angular-components-grid.ts"],"sourcesContent":["import { Component, ElementRef, Input, OnInit, ViewEncapsulation } from '@angular/core';\n\n@Component({\n selector: 'id-col',\n templateUrl: './column.component.html',\n encapsulation: ViewEncapsulation.None,\n styles: ['id-col { display: contents; }']\n})\nexport class IDColumnComponent {\n\n @Input()\n cols: string = \"\"\n\n @Input()\n offset: string | null = null\n\n @Input()\n m: string = \"\"\n\n @Input()\n mOffset: string | null = null\n \n @Input()\n s: string = \"\"\n\n @Input()\n sOffset: string | null = null\n\n @Input()\n align: string = \"\"\n\n @Input()\n class: string = \"\"\n\n @Input()\n style: string | null = null\n\n constructor (private _elementRef : ElementRef) {\n this._elementRef.nativeElement.removeAttribute('style');\n }\n\n}\n","<ids-col \n [attr.cols]=\"cols\"\n [attr.offset]=\"offset\"\n [attr.m]=\"m\" \n [attr.moffset]=\"[mOffset]\"\n [attr.s]=\"s\" \n [attr.soffset]=\"[sOffset]\"\n [attr.align]=\"align\"\n [attr.style]=\"style\"\n [attr.class]=\"class\">\n <ng-content></ng-content>\n</ids-col>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\nimport { IDColumnComponent } from './column.component';\nimport '@inera/ids-core/components/grid/column/register';\n\n@NgModule({\n declarations: [\n IDColumnComponent\n ],\n exports: [\n IDColumnComponent\n ],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class IDColumnModule { }\n","import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core';\nimport {ElementRef} from '@angular/core';\n\n@Component({\n selector: 'id-row',\n templateUrl: './row.component.html',\n})\nexport class IDRowComponent {\n\n @Input()\n align: string | null = null;\n\n @Input()\n class: string | null = null;\n\n @Input()\n gap: string | null = null;\n\n @Input()\n justify: string | null = null;\n\n @Input()\n style: string | null = null;\n\n constructor (private _elementRef : ElementRef) {\n this._elementRef.nativeElement.removeAttribute('style');\n }\n\n}\n","<ids-row \n [attr.class]=\"class\"\n [style]=\"style\" \n [justify]=\"justify\"\n [align]=\"align\"\n [gap]=\"gap\">\n <ng-content></ng-content>\n</ids-row>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\nimport { IDRowComponent } from './row.component';\nimport '@inera/ids-core/components/grid/row/register';\n\n@NgModule({\n declarations: [\n IDRowComponent\n ],\n exports: [\n IDRowComponent\n ],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class IDRowModule { }\n","import { Component, Input, ViewEncapsulation } from \"@angular/core\";\n\n@Component({\n selector: \"id-container\",\n templateUrl: \"./container.component.html\",\n encapsulation: ViewEncapsulation.None\n})\nexport class IDContainerComponent {\n @Input()\n gutterless: Boolean = false;\n\n @Input()\n rowgap: String = \"\";\n\n constructor() {}\n}\n","<ids-container [attr.gutterless]=\"gutterless ? true : null\" [attr.rowgap]=\"rowgap\">\n <ng-content></ng-content>\n</ids-container>\n","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\nimport { IDContainerComponent } from './container.component';\nimport '@inera/ids-core/components/grid/container/register';\n\n@NgModule({\n declarations: [\n IDContainerComponent\n ],\n exports: [\n IDContainerComponent\n ],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class IDContainerModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Input,
|
|
2
|
+
import { Input, Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
3
3
|
import '@inera/ids-core/components/notification/badge/register';
|
|
4
4
|
|
|
5
5
|
class IDNotificationBadgeComponent {
|
|
6
6
|
constructor() { }
|
|
7
7
|
type = "primary";
|
|
8
8
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDNotificationBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
9
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDNotificationBadgeComponent, selector: "id-notification-badge", inputs: { type: "type" }, ngImport: i0, template: "<ids-notification-badge\n [type]=\"type\">\n <ng-content></ng-content>\n</ids-notification-badge>",
|
|
9
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDNotificationBadgeComponent, selector: "id-notification-badge", inputs: { type: "type" }, ngImport: i0, template: "<ids-notification-badge\n [type]=\"type\">\n <ng-content></ng-content>\n</ids-notification-badge>", styles: [":host{display:contents}\n"] });
|
|
10
10
|
}
|
|
11
11
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDNotificationBadgeComponent, decorators: [{
|
|
12
12
|
type: Component,
|
|
13
|
-
args: [{ selector: "id-notification-badge",
|
|
13
|
+
args: [{ selector: "id-notification-badge", template: "<ids-notification-badge\n [type]=\"type\">\n <ng-content></ng-content>\n</ids-notification-badge>", styles: [":host{display:contents}\n"] }]
|
|
14
14
|
}], ctorParameters: () => [], propDecorators: { type: [{
|
|
15
15
|
type: Input
|
|
16
16
|
}] } });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inera-ids-angular-components-notification-badge.mjs","sources":["../../../projects/ids-angular/components/notification/badge/notification-badge.component.ts","../../../projects/ids-angular/components/notification/badge/notification-badge.component.html","../../../projects/ids-angular/components/notification/badge/notification-badge.module.ts","../../../projects/ids-angular/components/notification/badge/inera-ids-angular-components-notification-badge.ts"],"sourcesContent":["import { Component, Input
|
|
1
|
+
{"version":3,"file":"inera-ids-angular-components-notification-badge.mjs","sources":["../../../projects/ids-angular/components/notification/badge/notification-badge.component.ts","../../../projects/ids-angular/components/notification/badge/notification-badge.component.html","../../../projects/ids-angular/components/notification/badge/notification-badge.module.ts","../../../projects/ids-angular/components/notification/badge/inera-ids-angular-components-notification-badge.ts"],"sourcesContent":["import { Component, Input } from \"@angular/core\";\n\n@Component({\n selector: \"id-notification-badge\",\n templateUrl: \"./notification-badge.component.html\",\n styles: [\":host { display: contents; }\"]\n})\nexport class IDNotificationBadgeComponent {\n constructor() {}\n\n @Input()\n type: string = \"primary\";\n}\n","<ids-notification-badge\n [type]=\"type\">\n <ng-content></ng-content>\n</ids-notification-badge>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\nimport { IDNotificationBadgeComponent } from './notification-badge.component';\nimport '@inera/ids-core/components/notification/badge/register';\n\n@NgModule({\n declarations: [\n IDNotificationBadgeComponent\n ],\n exports: [\n IDNotificationBadgeComponent\n ],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class IDNotificationBadgeModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAOa,4BAA4B,CAAA;AACvC,IAAA,WAAA,GAAA,EAAe;IAGf,IAAI,GAAW,SAAS;wGAJb,4BAA4B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAA5B,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,4BAA4B,uFCPzC,qGAGyB,EAAA,MAAA,EAAA,CAAA,2BAAA,CAAA,EAAA,CAAA;;4FDIZ,4BAA4B,EAAA,UAAA,EAAA,CAAA;kBALxC,SAAS;+BACE,uBAAuB,EAAA,QAAA,EAAA,qGAAA,EAAA,MAAA,EAAA,CAAA,2BAAA,CAAA,EAAA;wDAQjC,IAAI,EAAA,CAAA;sBADH;;;MEGU,yBAAyB,CAAA;wGAAzB,yBAAyB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA;yGAAzB,yBAAyB,EAAA,YAAA,EAAA,CAPlC,4BAA4B,CAAA,EAAA,OAAA,EAAA,CAG5B,4BAA4B,CAAA,EAAA,CAAA;yGAInB,yBAAyB,EAAA,CAAA;;4FAAzB,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBATrC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ;AACD,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP;AACD,qBAAA;oBACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;AAClC,iBAAA;;;ACZD;;AAEG;;;;"}
|
|
@@ -3,16 +3,19 @@ import { Input, Component, CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/cor
|
|
|
3
3
|
import '@inera/ids-core/components/tooltip/register';
|
|
4
4
|
|
|
5
5
|
class IDTooltipComponent {
|
|
6
|
-
position =
|
|
6
|
+
position = "top";
|
|
7
|
+
maxwidth = "20rem";
|
|
7
8
|
constructor() { }
|
|
8
9
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDTooltipComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
9
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDTooltipComponent, selector: "id-tooltip", inputs: { position: "position" }, ngImport: i0, template: "<ids-tooltip [position]=\"position\">\n <ng-content></ng-content>\n</ids-tooltip>" });
|
|
10
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: IDTooltipComponent, selector: "id-tooltip", inputs: { position: "position", maxwidth: "maxwidth" }, ngImport: i0, template: "<ids-tooltip [position]=\"position\" [maxwidth]=\"maxwidth\">\n <ng-content></ng-content>\n</ids-tooltip>" });
|
|
10
11
|
}
|
|
11
12
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: IDTooltipComponent, decorators: [{
|
|
12
13
|
type: Component,
|
|
13
|
-
args: [{ selector:
|
|
14
|
+
args: [{ selector: "id-tooltip", template: "<ids-tooltip [position]=\"position\" [maxwidth]=\"maxwidth\">\n <ng-content></ng-content>\n</ids-tooltip>" }]
|
|
14
15
|
}], ctorParameters: () => [], propDecorators: { position: [{
|
|
15
16
|
type: Input
|
|
17
|
+
}], maxwidth: [{
|
|
18
|
+
type: Input
|
|
16
19
|
}] } });
|
|
17
20
|
|
|
18
21
|
class IDTooltipModule {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inera-ids-angular-components-tooltip.mjs","sources":["../../../projects/ids-angular/components/tooltip/tooltip.component.ts","../../../projects/ids-angular/components/tooltip/tooltip.component.html","../../../projects/ids-angular/components/tooltip/tooltip.module.ts","../../../projects/ids-angular/components/tooltip/inera-ids-angular-components-tooltip.ts"],"sourcesContent":["import { Component, Input } from
|
|
1
|
+
{"version":3,"file":"inera-ids-angular-components-tooltip.mjs","sources":["../../../projects/ids-angular/components/tooltip/tooltip.component.ts","../../../projects/ids-angular/components/tooltip/tooltip.component.html","../../../projects/ids-angular/components/tooltip/tooltip.module.ts","../../../projects/ids-angular/components/tooltip/inera-ids-angular-components-tooltip.ts"],"sourcesContent":["import { Component, Input } from \"@angular/core\";\n\n@Component({\n selector: \"id-tooltip\",\n templateUrl: \"./tooltip.component.html\"\n})\nexport class IDTooltipComponent {\n @Input()\n position: \"top-left\" | \"top\" | \"top-right\" | \"bottom-left\" | \"bottom\" | \"bottom-right\" = \"top\";\n\n @Input()\n maxwidth: string = \"20rem\";\n\n constructor() {}\n}\n","<ids-tooltip [position]=\"position\" [maxwidth]=\"maxwidth\">\n <ng-content></ng-content>\n</ids-tooltip>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\nimport { IDTooltipComponent } from './tooltip.component';\nimport '@inera/ids-core/components/tooltip/register';\n\n@NgModule({\n declarations: [\n IDTooltipComponent\n ],\n exports: [\n IDTooltipComponent\n ],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class IDTooltipModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAMa,kBAAkB,CAAA;IAE7B,QAAQ,GAAiF,KAAK;IAG9F,QAAQ,GAAW,OAAO;AAE1B,IAAA,WAAA,GAAA,EAAe;wGAPJ,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAlB,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,SAAA,EAAA,IAAA,EAAA,kBAAkB,0GCN/B,4GAEc,EAAA,CAAA;;4FDID,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAJ9B,SAAS;+BACE,YAAY,EAAA,QAAA,EAAA,4GAAA,EAAA;wDAKtB,QAAQ,EAAA,CAAA;sBADP;gBAID,QAAQ,EAAA,CAAA;sBADP;;;MEGU,eAAe,CAAA;wGAAf,eAAe,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA;yGAAf,eAAe,EAAA,YAAA,EAAA,CAPxB,kBAAkB,CAAA,EAAA,OAAA,EAAA,CAGlB,kBAAkB,CAAA,EAAA,CAAA;yGAIT,eAAe,EAAA,CAAA;;4FAAf,eAAe,EAAA,UAAA,EAAA,CAAA;kBAT3B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,YAAY,EAAE;wBACZ;AACD,qBAAA;AACD,oBAAA,OAAO,EAAE;wBACP;AACD,qBAAA;oBACD,OAAO,EAAE,CAAC,sBAAsB,CAAC;AAClC,iBAAA;;;ACZD;;AAEG;;;;"}
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inera/ids-angular",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.2.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "*",
|
|
6
6
|
"@angular/core": "*",
|
|
7
|
-
"@inera/ids-core": "8.
|
|
7
|
+
"@inera/ids-core": "8.2.x"
|
|
8
8
|
},
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
|
@@ -37,6 +37,18 @@
|
|
|
37
37
|
"esm": "./esm2022/components/accordion/inera-ids-angular-components-accordion.mjs",
|
|
38
38
|
"default": "./fesm2022/inera-ids-angular-components-accordion.mjs"
|
|
39
39
|
},
|
|
40
|
+
"./components/action-link": {
|
|
41
|
+
"types": "./components/action-link/index.d.ts",
|
|
42
|
+
"esm2022": "./esm2022/components/action-link/inera-ids-angular-components-action-link.mjs",
|
|
43
|
+
"esm": "./esm2022/components/action-link/inera-ids-angular-components-action-link.mjs",
|
|
44
|
+
"default": "./fesm2022/inera-ids-angular-components-action-link.mjs"
|
|
45
|
+
},
|
|
46
|
+
"./components/badge": {
|
|
47
|
+
"types": "./components/badge/index.d.ts",
|
|
48
|
+
"esm2022": "./esm2022/components/badge/inera-ids-angular-components-badge.mjs",
|
|
49
|
+
"esm": "./esm2022/components/badge/inera-ids-angular-components-badge.mjs",
|
|
50
|
+
"default": "./fesm2022/inera-ids-angular-components-badge.mjs"
|
|
51
|
+
},
|
|
40
52
|
"./components/alert": {
|
|
41
53
|
"types": "./components/alert/index.d.ts",
|
|
42
54
|
"esm2022": "./esm2022/components/alert/inera-ids-angular-components-alert.mjs",
|
|
@@ -49,12 +61,6 @@
|
|
|
49
61
|
"esm": "./esm2022/components/box-link/inera-ids-angular-components-box-link.mjs",
|
|
50
62
|
"default": "./fesm2022/inera-ids-angular-components-box-link.mjs"
|
|
51
63
|
},
|
|
52
|
-
"./components/badge": {
|
|
53
|
-
"types": "./components/badge/index.d.ts",
|
|
54
|
-
"esm2022": "./esm2022/components/badge/inera-ids-angular-components-badge.mjs",
|
|
55
|
-
"esm": "./esm2022/components/badge/inera-ids-angular-components-badge.mjs",
|
|
56
|
-
"default": "./fesm2022/inera-ids-angular-components-badge.mjs"
|
|
57
|
-
},
|
|
58
64
|
"./components/breadcrumbs": {
|
|
59
65
|
"types": "./components/breadcrumbs/index.d.ts",
|
|
60
66
|
"esm2022": "./esm2022/components/breadcrumbs/inera-ids-angular-components-breadcrumbs.mjs",
|
|
@@ -163,12 +169,6 @@
|
|
|
163
169
|
"esm": "./esm2022/components/header-1177-pro/inera-ids-angular-components-header-1177-pro.mjs",
|
|
164
170
|
"default": "./fesm2022/inera-ids-angular-components-header-1177-pro.mjs"
|
|
165
171
|
},
|
|
166
|
-
"./components/header-inera": {
|
|
167
|
-
"types": "./components/header-inera/index.d.ts",
|
|
168
|
-
"esm2022": "./esm2022/components/header-inera/inera-ids-angular-components-header-inera.mjs",
|
|
169
|
-
"esm": "./esm2022/components/header-inera/inera-ids-angular-components-header-inera.mjs",
|
|
170
|
-
"default": "./fesm2022/inera-ids-angular-components-header-inera.mjs"
|
|
171
|
-
},
|
|
172
172
|
"./components/header-inera-admin": {
|
|
173
173
|
"types": "./components/header-inera-admin/index.d.ts",
|
|
174
174
|
"esm2022": "./esm2022/components/header-inera-admin/inera-ids-angular-components-header-inera-admin.mjs",
|
|
@@ -187,18 +187,18 @@
|
|
|
187
187
|
"esm": "./esm2022/components/link/inera-ids-angular-components-link.mjs",
|
|
188
188
|
"default": "./fesm2022/inera-ids-angular-components-link.mjs"
|
|
189
189
|
},
|
|
190
|
+
"./components/header-inera": {
|
|
191
|
+
"types": "./components/header-inera/index.d.ts",
|
|
192
|
+
"esm2022": "./esm2022/components/header-inera/inera-ids-angular-components-header-inera.mjs",
|
|
193
|
+
"esm": "./esm2022/components/header-inera/inera-ids-angular-components-header-inera.mjs",
|
|
194
|
+
"default": "./fesm2022/inera-ids-angular-components-header-inera.mjs"
|
|
195
|
+
},
|
|
190
196
|
"./components/popover": {
|
|
191
197
|
"types": "./components/popover/index.d.ts",
|
|
192
198
|
"esm2022": "./esm2022/components/popover/inera-ids-angular-components-popover.mjs",
|
|
193
199
|
"esm": "./esm2022/components/popover/inera-ids-angular-components-popover.mjs",
|
|
194
200
|
"default": "./fesm2022/inera-ids-angular-components-popover.mjs"
|
|
195
201
|
},
|
|
196
|
-
"./components/progressbar": {
|
|
197
|
-
"types": "./components/progressbar/index.d.ts",
|
|
198
|
-
"esm2022": "./esm2022/components/progressbar/inera-ids-angular-components-progressbar.mjs",
|
|
199
|
-
"esm": "./esm2022/components/progressbar/inera-ids-angular-components-progressbar.mjs",
|
|
200
|
-
"default": "./fesm2022/inera-ids-angular-components-progressbar.mjs"
|
|
201
|
-
},
|
|
202
202
|
"./components/puff-list": {
|
|
203
203
|
"types": "./components/puff-list/index.d.ts",
|
|
204
204
|
"esm2022": "./esm2022/components/puff-list/inera-ids-angular-components-puff-list.mjs",
|
|
@@ -211,6 +211,12 @@
|
|
|
211
211
|
"esm": "./esm2022/components/region-icon/inera-ids-angular-components-region-icon.mjs",
|
|
212
212
|
"default": "./fesm2022/inera-ids-angular-components-region-icon.mjs"
|
|
213
213
|
},
|
|
214
|
+
"./components/side-menu": {
|
|
215
|
+
"types": "./components/side-menu/index.d.ts",
|
|
216
|
+
"esm2022": "./esm2022/components/side-menu/inera-ids-angular-components-side-menu.mjs",
|
|
217
|
+
"esm": "./esm2022/components/side-menu/inera-ids-angular-components-side-menu.mjs",
|
|
218
|
+
"default": "./fesm2022/inera-ids-angular-components-side-menu.mjs"
|
|
219
|
+
},
|
|
214
220
|
"./components/side-panel": {
|
|
215
221
|
"types": "./components/side-panel/index.d.ts",
|
|
216
222
|
"esm2022": "./esm2022/components/side-panel/inera-ids-angular-components-side-panel.mjs",
|
|
@@ -223,11 +229,11 @@
|
|
|
223
229
|
"esm": "./esm2022/components/stepper/inera-ids-angular-components-stepper.mjs",
|
|
224
230
|
"default": "./fesm2022/inera-ids-angular-components-stepper.mjs"
|
|
225
231
|
},
|
|
226
|
-
"./components/
|
|
227
|
-
"types": "./components/
|
|
228
|
-
"esm2022": "./esm2022/components/
|
|
229
|
-
"esm": "./esm2022/components/
|
|
230
|
-
"default": "./fesm2022/inera-ids-angular-components-
|
|
232
|
+
"./components/progressbar": {
|
|
233
|
+
"types": "./components/progressbar/index.d.ts",
|
|
234
|
+
"esm2022": "./esm2022/components/progressbar/inera-ids-angular-components-progressbar.mjs",
|
|
235
|
+
"esm": "./esm2022/components/progressbar/inera-ids-angular-components-progressbar.mjs",
|
|
236
|
+
"default": "./fesm2022/inera-ids-angular-components-progressbar.mjs"
|
|
231
237
|
},
|
|
232
238
|
"./components/tag": {
|
|
233
239
|
"types": "./components/tag/index.d.ts",
|
|
@@ -235,11 +241,17 @@
|
|
|
235
241
|
"esm": "./esm2022/components/tag/inera-ids-angular-components-tag.mjs",
|
|
236
242
|
"default": "./fesm2022/inera-ids-angular-components-tag.mjs"
|
|
237
243
|
},
|
|
238
|
-
"./components/
|
|
239
|
-
"types": "./components/
|
|
240
|
-
"esm2022": "./esm2022/components/
|
|
241
|
-
"esm": "./esm2022/components/
|
|
242
|
-
"default": "./fesm2022/inera-ids-angular-components-
|
|
244
|
+
"./components/tooltip": {
|
|
245
|
+
"types": "./components/tooltip/index.d.ts",
|
|
246
|
+
"esm2022": "./esm2022/components/tooltip/inera-ids-angular-components-tooltip.mjs",
|
|
247
|
+
"esm": "./esm2022/components/tooltip/inera-ids-angular-components-tooltip.mjs",
|
|
248
|
+
"default": "./fesm2022/inera-ids-angular-components-tooltip.mjs"
|
|
249
|
+
},
|
|
250
|
+
"./components/tabs": {
|
|
251
|
+
"types": "./components/tabs/index.d.ts",
|
|
252
|
+
"esm2022": "./esm2022/components/tabs/inera-ids-angular-components-tabs.mjs",
|
|
253
|
+
"esm": "./esm2022/components/tabs/inera-ids-angular-components-tabs.mjs",
|
|
254
|
+
"default": "./fesm2022/inera-ids-angular-components-tabs.mjs"
|
|
243
255
|
},
|
|
244
256
|
"./components/form/check-button": {
|
|
245
257
|
"types": "./components/form/check-button/index.d.ts",
|
|
@@ -253,24 +265,6 @@
|
|
|
253
265
|
"esm": "./esm2022/components/form/checkbox/inera-ids-angular-components-form-checkbox.mjs",
|
|
254
266
|
"default": "./fesm2022/inera-ids-angular-components-form-checkbox.mjs"
|
|
255
267
|
},
|
|
256
|
-
"./components/tooltip": {
|
|
257
|
-
"types": "./components/tooltip/index.d.ts",
|
|
258
|
-
"esm2022": "./esm2022/components/tooltip/inera-ids-angular-components-tooltip.mjs",
|
|
259
|
-
"esm": "./esm2022/components/tooltip/inera-ids-angular-components-tooltip.mjs",
|
|
260
|
-
"default": "./fesm2022/inera-ids-angular-components-tooltip.mjs"
|
|
261
|
-
},
|
|
262
|
-
"./components/form/checkbox-group": {
|
|
263
|
-
"types": "./components/form/checkbox-group/index.d.ts",
|
|
264
|
-
"esm2022": "./esm2022/components/form/checkbox-group/inera-ids-angular-components-form-checkbox-group.mjs",
|
|
265
|
-
"esm": "./esm2022/components/form/checkbox-group/inera-ids-angular-components-form-checkbox-group.mjs",
|
|
266
|
-
"default": "./fesm2022/inera-ids-angular-components-form-checkbox-group.mjs"
|
|
267
|
-
},
|
|
268
|
-
"./components/form/input": {
|
|
269
|
-
"types": "./components/form/input/index.d.ts",
|
|
270
|
-
"esm2022": "./esm2022/components/form/input/inera-ids-angular-components-form-input.mjs",
|
|
271
|
-
"esm": "./esm2022/components/form/input/inera-ids-angular-components-form-input.mjs",
|
|
272
|
-
"default": "./fesm2022/inera-ids-angular-components-form-input.mjs"
|
|
273
|
-
},
|
|
274
268
|
"./components/form/error-message": {
|
|
275
269
|
"types": "./components/form/error-message/index.d.ts",
|
|
276
270
|
"esm2022": "./esm2022/components/form/error-message/inera-ids-angular-components-form-error-message.mjs",
|
|
@@ -283,24 +277,36 @@
|
|
|
283
277
|
"esm": "./esm2022/components/form/radio/inera-ids-angular-components-form-radio.mjs",
|
|
284
278
|
"default": "./fesm2022/inera-ids-angular-components-form-radio.mjs"
|
|
285
279
|
},
|
|
280
|
+
"./components/form/input": {
|
|
281
|
+
"types": "./components/form/input/index.d.ts",
|
|
282
|
+
"esm2022": "./esm2022/components/form/input/inera-ids-angular-components-form-input.mjs",
|
|
283
|
+
"esm": "./esm2022/components/form/input/inera-ids-angular-components-form-input.mjs",
|
|
284
|
+
"default": "./fesm2022/inera-ids-angular-components-form-input.mjs"
|
|
285
|
+
},
|
|
286
|
+
"./components/form/checkbox-group": {
|
|
287
|
+
"types": "./components/form/checkbox-group/index.d.ts",
|
|
288
|
+
"esm2022": "./esm2022/components/form/checkbox-group/inera-ids-angular-components-form-checkbox-group.mjs",
|
|
289
|
+
"esm": "./esm2022/components/form/checkbox-group/inera-ids-angular-components-form-checkbox-group.mjs",
|
|
290
|
+
"default": "./fesm2022/inera-ids-angular-components-form-checkbox-group.mjs"
|
|
291
|
+
},
|
|
286
292
|
"./components/form/radio-button": {
|
|
287
293
|
"types": "./components/form/radio-button/index.d.ts",
|
|
288
294
|
"esm2022": "./esm2022/components/form/radio-button/inera-ids-angular-components-form-radio-button.mjs",
|
|
289
295
|
"esm": "./esm2022/components/form/radio-button/inera-ids-angular-components-form-radio-button.mjs",
|
|
290
296
|
"default": "./fesm2022/inera-ids-angular-components-form-radio-button.mjs"
|
|
291
297
|
},
|
|
292
|
-
"./components/form/range": {
|
|
293
|
-
"types": "./components/form/range/index.d.ts",
|
|
294
|
-
"esm2022": "./esm2022/components/form/range/inera-ids-angular-components-form-range.mjs",
|
|
295
|
-
"esm": "./esm2022/components/form/range/inera-ids-angular-components-form-range.mjs",
|
|
296
|
-
"default": "./fesm2022/inera-ids-angular-components-form-range.mjs"
|
|
297
|
-
},
|
|
298
298
|
"./components/form/select": {
|
|
299
299
|
"types": "./components/form/select/index.d.ts",
|
|
300
300
|
"esm2022": "./esm2022/components/form/select/inera-ids-angular-components-form-select.mjs",
|
|
301
301
|
"esm": "./esm2022/components/form/select/inera-ids-angular-components-form-select.mjs",
|
|
302
302
|
"default": "./fesm2022/inera-ids-angular-components-form-select.mjs"
|
|
303
303
|
},
|
|
304
|
+
"./components/form/range": {
|
|
305
|
+
"types": "./components/form/range/index.d.ts",
|
|
306
|
+
"esm2022": "./esm2022/components/form/range/inera-ids-angular-components-form-range.mjs",
|
|
307
|
+
"esm": "./esm2022/components/form/range/inera-ids-angular-components-form-range.mjs",
|
|
308
|
+
"default": "./fesm2022/inera-ids-angular-components-form-range.mjs"
|
|
309
|
+
},
|
|
304
310
|
"./components/form/select-multiple": {
|
|
305
311
|
"types": "./components/form/select-multiple/index.d.ts",
|
|
306
312
|
"esm2022": "./esm2022/components/form/select-multiple/inera-ids-angular-components-form-select-multiple.mjs",
|
|
@@ -319,36 +325,36 @@
|
|
|
319
325
|
"esm": "./esm2022/components/form/textarea/inera-ids-angular-components-form-textarea.mjs",
|
|
320
326
|
"default": "./fesm2022/inera-ids-angular-components-form-textarea.mjs"
|
|
321
327
|
},
|
|
322
|
-
"./components/form/time": {
|
|
323
|
-
"types": "./components/form/time/index.d.ts",
|
|
324
|
-
"esm2022": "./esm2022/components/form/time/inera-ids-angular-components-form-time.mjs",
|
|
325
|
-
"esm": "./esm2022/components/form/time/inera-ids-angular-components-form-time.mjs",
|
|
326
|
-
"default": "./fesm2022/inera-ids-angular-components-form-time.mjs"
|
|
327
|
-
},
|
|
328
328
|
"./components/form/toggle": {
|
|
329
329
|
"types": "./components/form/toggle/index.d.ts",
|
|
330
330
|
"esm2022": "./esm2022/components/form/toggle/inera-ids-angular-components-form-toggle.mjs",
|
|
331
331
|
"esm": "./esm2022/components/form/toggle/inera-ids-angular-components-form-toggle.mjs",
|
|
332
332
|
"default": "./fesm2022/inera-ids-angular-components-form-toggle.mjs"
|
|
333
333
|
},
|
|
334
|
-
"./components/grid/container": {
|
|
335
|
-
"types": "./components/grid/container/index.d.ts",
|
|
336
|
-
"esm2022": "./esm2022/components/grid/container/inera-ids-angular-components-grid-container.mjs",
|
|
337
|
-
"esm": "./esm2022/components/grid/container/inera-ids-angular-components-grid-container.mjs",
|
|
338
|
-
"default": "./fesm2022/inera-ids-angular-components-grid-container.mjs"
|
|
339
|
-
},
|
|
340
334
|
"./components/grid/column": {
|
|
341
335
|
"types": "./components/grid/column/index.d.ts",
|
|
342
336
|
"esm2022": "./esm2022/components/grid/column/inera-ids-angular-components-grid-column.mjs",
|
|
343
337
|
"esm": "./esm2022/components/grid/column/inera-ids-angular-components-grid-column.mjs",
|
|
344
338
|
"default": "./fesm2022/inera-ids-angular-components-grid-column.mjs"
|
|
345
339
|
},
|
|
340
|
+
"./components/grid/container": {
|
|
341
|
+
"types": "./components/grid/container/index.d.ts",
|
|
342
|
+
"esm2022": "./esm2022/components/grid/container/inera-ids-angular-components-grid-container.mjs",
|
|
343
|
+
"esm": "./esm2022/components/grid/container/inera-ids-angular-components-grid-container.mjs",
|
|
344
|
+
"default": "./fesm2022/inera-ids-angular-components-grid-container.mjs"
|
|
345
|
+
},
|
|
346
346
|
"./components/grid/row": {
|
|
347
347
|
"types": "./components/grid/row/index.d.ts",
|
|
348
348
|
"esm2022": "./esm2022/components/grid/row/inera-ids-angular-components-grid-row.mjs",
|
|
349
349
|
"esm": "./esm2022/components/grid/row/inera-ids-angular-components-grid-row.mjs",
|
|
350
350
|
"default": "./fesm2022/inera-ids-angular-components-grid-row.mjs"
|
|
351
351
|
},
|
|
352
|
+
"./components/form/time": {
|
|
353
|
+
"types": "./components/form/time/index.d.ts",
|
|
354
|
+
"esm2022": "./esm2022/components/form/time/inera-ids-angular-components-form-time.mjs",
|
|
355
|
+
"esm": "./esm2022/components/form/time/inera-ids-angular-components-form-time.mjs",
|
|
356
|
+
"default": "./fesm2022/inera-ids-angular-components-form-time.mjs"
|
|
357
|
+
},
|
|
352
358
|
"./components/mobile/menu": {
|
|
353
359
|
"types": "./components/mobile/menu/index.d.ts",
|
|
354
360
|
"esm2022": "./esm2022/components/mobile/menu/inera-ids-angular-components-mobile-menu.mjs",
|
|
@@ -361,23 +367,17 @@
|
|
|
361
367
|
"esm": "./esm2022/components/navigation/content/inera-ids-angular-components-navigation-content.mjs",
|
|
362
368
|
"default": "./fesm2022/inera-ids-angular-components-navigation-content.mjs"
|
|
363
369
|
},
|
|
364
|
-
"./components/notification/badge": {
|
|
365
|
-
"types": "./components/notification/badge/index.d.ts",
|
|
366
|
-
"esm2022": "./esm2022/components/notification/badge/inera-ids-angular-components-notification-badge.mjs",
|
|
367
|
-
"esm": "./esm2022/components/notification/badge/inera-ids-angular-components-notification-badge.mjs",
|
|
368
|
-
"default": "./fesm2022/inera-ids-angular-components-notification-badge.mjs"
|
|
369
|
-
},
|
|
370
370
|
"./components/navigation/local": {
|
|
371
371
|
"types": "./components/navigation/local/index.d.ts",
|
|
372
372
|
"esm2022": "./esm2022/components/navigation/local/inera-ids-angular-components-navigation-local.mjs",
|
|
373
373
|
"esm": "./esm2022/components/navigation/local/inera-ids-angular-components-navigation-local.mjs",
|
|
374
374
|
"default": "./fesm2022/inera-ids-angular-components-navigation-local.mjs"
|
|
375
375
|
},
|
|
376
|
-
"./components/
|
|
377
|
-
"types": "./components/
|
|
378
|
-
"esm2022": "./esm2022/components/
|
|
379
|
-
"esm": "./esm2022/components/
|
|
380
|
-
"default": "./fesm2022/inera-ids-angular-components-
|
|
376
|
+
"./components/notification/badge": {
|
|
377
|
+
"types": "./components/notification/badge/index.d.ts",
|
|
378
|
+
"esm2022": "./esm2022/components/notification/badge/inera-ids-angular-components-notification-badge.mjs",
|
|
379
|
+
"esm": "./esm2022/components/notification/badge/inera-ids-angular-components-notification-badge.mjs",
|
|
380
|
+
"default": "./fesm2022/inera-ids-angular-components-notification-badge.mjs"
|
|
381
381
|
},
|
|
382
382
|
"./components/pagination/list-pagination": {
|
|
383
383
|
"types": "./components/pagination/list-pagination/index.d.ts",
|
|
@@ -385,6 +385,12 @@
|
|
|
385
385
|
"esm": "./esm2022/components/pagination/list-pagination/inera-ids-angular-components-pagination-list-pagination.mjs",
|
|
386
386
|
"default": "./fesm2022/inera-ids-angular-components-pagination-list-pagination.mjs"
|
|
387
387
|
},
|
|
388
|
+
"./components/pagination/data-pagination": {
|
|
389
|
+
"types": "./components/pagination/data-pagination/index.d.ts",
|
|
390
|
+
"esm2022": "./esm2022/components/pagination/data-pagination/inera-ids-angular-components-pagination-data-pagination.mjs",
|
|
391
|
+
"esm": "./esm2022/components/pagination/data-pagination/inera-ids-angular-components-pagination-data-pagination.mjs",
|
|
392
|
+
"default": "./fesm2022/inera-ids-angular-components-pagination-data-pagination.mjs"
|
|
393
|
+
},
|
|
388
394
|
"./components/mobile/menu/item": {
|
|
389
395
|
"types": "./components/mobile/menu/item/index.d.ts",
|
|
390
396
|
"esm2022": "./esm2022/components/mobile/menu/item/inera-ids-angular-components-mobile-menu-item.mjs",
|