@inera/ids-angular 2.6.0 → 3.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/bundles/inera-ids-angular.umd.js +489 -246
- package/bundles/inera-ids-angular.umd.js.map +1 -1
- package/esm2015/lib/classes/header/IDHeaderAvatar.js +4 -1
- package/esm2015/lib/classes/header/IDHeaderAvatarProps.js +1 -1
- package/esm2015/lib/components/agent/agent.component.js +8 -8
- package/esm2015/lib/components/alert/alert.component.js +15 -12
- package/esm2015/lib/components/alert-global/alert-global.component.js +14 -10
- package/esm2015/lib/components/badge/badge.component.js +2 -2
- package/esm2015/lib/components/breadcrumbs/breadcrumbs.component.js +10 -10
- package/esm2015/lib/components/breadcrumbs/breadcrumbs.module.js +4 -7
- package/esm2015/lib/components/button/button.component.js +13 -8
- package/esm2015/lib/components/button/button.module.js +6 -3
- package/esm2015/lib/components/carousel/carousel.component.js +8 -8
- package/esm2015/lib/components/date-label/date-label.component.js +4 -4
- package/esm2015/lib/components/dialog/dialog.component.js +13 -7
- package/esm2015/lib/components/expandable/expandable.component.js +2 -2
- package/esm2015/lib/components/footer/footer.component.js +5 -5
- package/esm2015/lib/components/footer/footer.module.js +2 -2
- package/esm2015/lib/components/form/base/IDFormBase.js +6 -3
- package/esm2015/lib/components/form/checkbox/checkbox.component.js +2 -2
- package/esm2015/lib/components/form/checkbox-group/checkbox-group.component.js +2 -2
- package/esm2015/lib/components/form/input/input.component.js +2 -6
- package/esm2015/lib/components/form/radio/radio-group.component.js +4 -4
- package/esm2015/lib/components/form/radio/radio.component.js +6 -6
- package/esm2015/lib/components/form/range/range.component.js +4 -4
- package/esm2015/lib/components/form/select/select.component.js +4 -7
- package/esm2015/lib/components/form/select-multiple/select-multiple.component.js +4 -4
- package/esm2015/lib/components/form/textarea/textarea.component.js +2 -2
- package/esm2015/lib/components/form/time/time.component.js +6 -6
- package/esm2015/lib/components/header/header.component.js +28 -28
- package/esm2015/lib/components/header/header.module.js +5 -4
- package/esm2015/lib/components/link/link.component.js +15 -15
- package/esm2015/lib/components/link/link.module.js +4 -5
- package/esm2015/lib/components/list/item/list-item.component.js +6 -6
- package/esm2015/lib/components/mobile/menu/mobile-menu.component.js +2 -2
- package/esm2015/lib/components/mobile/menu/mobile-menu.module.js +1 -1
- package/esm2015/lib/components/popover/popover.component.js +6 -6
- package/esm2015/lib/components/tabs/panel/tab-panel.component.js +4 -4
- package/esm2015/lib/components/tabs/tab/tab.component.js +7 -5
- package/esm2015/lib/components/tag/tag.component.js +8 -8
- package/esm2015/lib/internals/anchor.component.js +1 -1
- package/esm2015/lib/internals/anchor.module.js +1 -1
- package/esm2015/public-api.js +217 -1
- package/fesm2015/inera-ids-angular.js +471 -241
- package/fesm2015/inera-ids-angular.js.map +1 -1
- package/lib/classes/header/IDHeaderAvatar.d.ts +1 -0
- package/lib/classes/header/IDHeaderAvatarProps.d.ts +1 -0
- package/lib/components/agent/agent.component.d.ts +4 -4
- package/lib/components/alert/alert.component.d.ts +7 -6
- package/lib/components/alert-global/alert-global.component.d.ts +7 -5
- package/lib/components/badge/badge.component.d.ts +1 -1
- package/lib/components/breadcrumbs/breadcrumbs.component.d.ts +5 -5
- package/lib/components/button/button.component.d.ts +6 -4
- package/lib/components/button/button.module.d.ts +3 -1
- package/lib/components/carousel/carousel.component.d.ts +4 -4
- package/lib/components/date-label/date-label.component.d.ts +2 -2
- package/lib/components/dialog/dialog.component.d.ts +6 -3
- package/lib/components/footer/footer.component.d.ts +3 -3
- package/lib/components/form/base/IDFormBase.d.ts +2 -1
- package/lib/components/form/input/input.component.d.ts +1 -3
- package/lib/components/form/radio/radio-group.component.d.ts +2 -2
- package/lib/components/form/radio/radio.component.d.ts +2 -2
- package/lib/components/form/range/range.component.d.ts +2 -2
- package/lib/components/form/select/select.component.d.ts +0 -1
- package/lib/components/form/select-multiple/select-multiple.component.d.ts +2 -2
- package/lib/components/form/time/time.component.d.ts +2 -2
- package/lib/components/header/header.component.d.ts +18 -18
- package/lib/components/header/header.module.d.ts +2 -1
- package/lib/components/link/link.component.d.ts +10 -10
- package/lib/components/link/link.module.d.ts +1 -2
- package/lib/components/list/item/list-item.component.d.ts +3 -3
- package/lib/components/popover/popover.component.d.ts +3 -3
- package/lib/components/tabs/panel/tab-panel.component.d.ts +2 -2
- package/lib/components/tabs/tab/tab.component.d.ts +3 -2
- package/lib/components/tag/tag.component.d.ts +4 -4
- package/package.json +2 -2
|
@@ -7,6 +7,7 @@ import '@inera/ids-core/components/alert-global/register';
|
|
|
7
7
|
import '@inera/ids-core/components/agent/register';
|
|
8
8
|
import '@inera/ids-core/components/badge/register';
|
|
9
9
|
import '@inera/ids-core/components/button/register';
|
|
10
|
+
import '@inera/ids-core/components/icon/register';
|
|
10
11
|
import '@inera/ids-core/components/button-group/register';
|
|
11
12
|
import '@inera/ids-core/components/carousel/register';
|
|
12
13
|
import * as i1 from '@angular/platform-browser';
|
|
@@ -17,7 +18,6 @@ import '@inera/ids-core/components/card/register';
|
|
|
17
18
|
import '@inera/ids-core/components/date-label/register';
|
|
18
19
|
import '@inera/ids-core/components/dialog/register';
|
|
19
20
|
import '@inera/ids-core/components/expandable/register';
|
|
20
|
-
import '@inera/ids-core/components/icon/register';
|
|
21
21
|
import '@inera/ids-core/components/form/input/register';
|
|
22
22
|
import '@inera/ids-core/components/form/checkbox/register';
|
|
23
23
|
import '@inera/ids-core/components/form/checkbox-group/register';
|
|
@@ -52,18 +52,19 @@ class IDAlertComponent {
|
|
|
52
52
|
this.dismissible = false;
|
|
53
53
|
this.collapsable = false;
|
|
54
54
|
this.collapsed = false;
|
|
55
|
-
this.
|
|
56
|
-
this.
|
|
55
|
+
this.srcollapsetext = '';
|
|
56
|
+
this.srexpandtext = '';
|
|
57
57
|
this.headline = '';
|
|
58
58
|
this.live = '';
|
|
59
59
|
this.type = '';
|
|
60
|
-
this.
|
|
61
|
-
this.
|
|
62
|
-
this.
|
|
60
|
+
this.srclosetext = '';
|
|
61
|
+
this.sricontitle = '';
|
|
62
|
+
this.onClosed = new EventEmitter();
|
|
63
|
+
this.onCollapsed = new EventEmitter();
|
|
63
64
|
}
|
|
64
65
|
}
|
|
65
66
|
IDAlertComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
66
|
-
IDAlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertComponent, selector: "id-alert", inputs: { dismissible: "dismissible", collapsable: "collapsable", collapsed: "collapsed",
|
|
67
|
+
IDAlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertComponent, selector: "id-alert", inputs: { dismissible: "dismissible", collapsable: "collapsable", collapsed: "collapsed", srcollapsetext: "srcollapsetext", srexpandtext: "srexpandtext", headline: "headline", live: "live", type: "type", srclosetext: "srclosetext", sricontitle: "sricontitle" }, outputs: { onClosed: "onClosed", onCollapsed: "onCollapsed" }, ngImport: i0, template: "<ids-alert \r\n [headline]=\"headline\"\r\n [attr.dismissible]=\"dismissible ? true : null\"\r\n [attr.collapsable]=\"collapsable ? true : null\"\r\n [attr.collapsed]=\"collapsed ? true : null\"\r\n [srcollapsetext]=\"srcollapsetext\"\r\n [srexpandtext]=\"srexpandtext\"\r\n [attr.aria-live]=\"live\"\r\n [type]=\"type\"\r\n [srclosetext]=\"srclosetext\"\r\n [sricontitle]=\"sricontitle\"\r\n (closed)=\"onClosed.emit(true)\"\r\n (collapsed)=\"onCollapsed.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-alert>", styles: [":host { display: block; }"] });
|
|
67
68
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, decorators: [{
|
|
68
69
|
type: Component,
|
|
69
70
|
args: [{
|
|
@@ -77,9 +78,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
77
78
|
type: Input
|
|
78
79
|
}], collapsed: [{
|
|
79
80
|
type: Input
|
|
80
|
-
}],
|
|
81
|
+
}], srcollapsetext: [{
|
|
81
82
|
type: Input
|
|
82
|
-
}],
|
|
83
|
+
}], srexpandtext: [{
|
|
83
84
|
type: Input
|
|
84
85
|
}], headline: [{
|
|
85
86
|
type: Input
|
|
@@ -87,11 +88,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
87
88
|
type: Input
|
|
88
89
|
}], type: [{
|
|
89
90
|
type: Input
|
|
90
|
-
}],
|
|
91
|
+
}], srclosetext: [{
|
|
91
92
|
type: Input
|
|
92
|
-
}],
|
|
93
|
+
}], sricontitle: [{
|
|
93
94
|
type: Input
|
|
94
|
-
}],
|
|
95
|
+
}], onClosed: [{
|
|
96
|
+
type: Output
|
|
97
|
+
}], onCollapsed: [{
|
|
95
98
|
type: Output
|
|
96
99
|
}] } });
|
|
97
100
|
|
|
@@ -118,14 +121,15 @@ class IDAlertGlobalComponent {
|
|
|
118
121
|
constructor() {
|
|
119
122
|
this.expanded = true;
|
|
120
123
|
this.headline = '';
|
|
121
|
-
this.
|
|
122
|
-
this.
|
|
123
|
-
this.
|
|
124
|
-
this.
|
|
124
|
+
this.hidemobileicon = '';
|
|
125
|
+
this.showtext = 'Visa meddelande';
|
|
126
|
+
this.hidetext = 'Dölj meddelande';
|
|
127
|
+
this.icon = undefined;
|
|
128
|
+
this.onDidToggleExpansion = new EventEmitter();
|
|
125
129
|
}
|
|
126
130
|
}
|
|
127
131
|
IDAlertGlobalComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertGlobalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
128
|
-
IDAlertGlobalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertGlobalComponent, selector: "id-alert-global", inputs: { expanded: "expanded", headline: "headline",
|
|
132
|
+
IDAlertGlobalComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertGlobalComponent, selector: "id-alert-global", inputs: { expanded: "expanded", headline: "headline", hidemobileicon: "hidemobileicon", showtext: "showtext", hidetext: "hidetext", icon: "icon" }, outputs: { onDidToggleExpansion: "onDidToggleExpansion" }, ngImport: i0, template: "<ids-alert-global \r\n [headline]=\"headline\"\r\n [showtext]=\"showtext\"\r\n [hidetext]=\"hidetext\"\r\n [expanded]=\"expanded\"\r\n [hidemobileicon]=\"hidemobileicon ? true : null\"\r\n (didToggleExpansion)=\"onDidToggleExpansion.emit(true)\">\r\n <ids-icon *ngIf=\"icon !== undefined\"\r\n [attr.name]=\"icon?.name\"\r\n [attr.title]=\"icon?.title\" \r\n [attr.color]=\"icon?.color\" \r\n [attr.color2]=\"icon?.color2\" \r\n [attr.size]=\"icon?.size\" \r\n [attr.padding]=\"icon?.padding\" \r\n [attr.rotate]=\"icon?.rotate\" \r\n [attr.colorpreset]=\"icon?.colorpreset\" \r\n [attr.height]=\"icon?.height\" \r\n [attr.width]=\"icon?.width\"></ids-icon>\r\n <ng-content></ng-content>\r\n</ids-alert-global>", styles: [":host { display: block; }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
129
133
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertGlobalComponent, decorators: [{
|
|
130
134
|
type: Component,
|
|
131
135
|
args: [{
|
|
@@ -137,13 +141,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
137
141
|
type: Input
|
|
138
142
|
}], headline: [{
|
|
139
143
|
type: Input
|
|
140
|
-
}],
|
|
144
|
+
}], hidemobileicon: [{
|
|
141
145
|
type: Input
|
|
142
|
-
}],
|
|
146
|
+
}], showtext: [{
|
|
143
147
|
type: Input
|
|
144
|
-
}],
|
|
148
|
+
}], hidetext: [{
|
|
145
149
|
type: Input
|
|
146
|
-
}],
|
|
150
|
+
}], icon: [{
|
|
151
|
+
type: Input
|
|
152
|
+
}], onDidToggleExpansion: [{
|
|
147
153
|
type: Output
|
|
148
154
|
}] } });
|
|
149
155
|
|
|
@@ -170,13 +176,13 @@ class IDAgentComponent {
|
|
|
170
176
|
constructor() {
|
|
171
177
|
this.expanded = true;
|
|
172
178
|
this.headline = '';
|
|
173
|
-
this.
|
|
174
|
-
this.
|
|
175
|
-
this.
|
|
179
|
+
this.showtext = 'Visa meddelande';
|
|
180
|
+
this.hidetext = 'Dölj meddelande';
|
|
181
|
+
this.onDidToggleExpansion = new EventEmitter();
|
|
176
182
|
}
|
|
177
183
|
}
|
|
178
184
|
IDAgentComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAgentComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
179
|
-
IDAgentComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAgentComponent, selector: "id-agent", inputs: { expanded: "expanded", headline: "headline",
|
|
185
|
+
IDAgentComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAgentComponent, selector: "id-agent", inputs: { expanded: "expanded", headline: "headline", showtext: "showtext", hidetext: "hidetext" }, outputs: { onDidToggleExpansion: "onDidToggleExpansion" }, ngImport: i0, template: "<ids-agent\r\n [headline]=\"headline\"\r\n [showtext]=\"showtext\"\r\n [hidetext]=\"hidetext\"\r\n [expanded]=\"expanded\"\r\n (didToggleExpansion)=\"onDidToggleExpansion.emit(true)\">\r\n <h3 slot=\"alert-headline\" *ngIf=\"headline\">\r\n {{headline}}\r\n </h3>\r\n <ng-content></ng-content>\r\n</ids-agent>", styles: [":host { display: block; }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
180
186
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAgentComponent, decorators: [{
|
|
181
187
|
type: Component,
|
|
182
188
|
args: [{
|
|
@@ -188,11 +194,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
188
194
|
type: Input
|
|
189
195
|
}], headline: [{
|
|
190
196
|
type: Input
|
|
191
|
-
}],
|
|
197
|
+
}], showtext: [{
|
|
192
198
|
type: Input
|
|
193
|
-
}],
|
|
199
|
+
}], hidetext: [{
|
|
194
200
|
type: Input
|
|
195
|
-
}],
|
|
201
|
+
}], onDidToggleExpansion: [{
|
|
196
202
|
type: Output
|
|
197
203
|
}] } });
|
|
198
204
|
|
|
@@ -217,7 +223,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
217
223
|
|
|
218
224
|
class IDBadgeComponent {
|
|
219
225
|
constructor() {
|
|
220
|
-
this.type = '
|
|
226
|
+
this.type = 'primary';
|
|
221
227
|
}
|
|
222
228
|
}
|
|
223
229
|
IDBadgeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDBadgeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -258,8 +264,8 @@ class IDButtonComponent {
|
|
|
258
264
|
this.tertiary = false;
|
|
259
265
|
this.toggle = false;
|
|
260
266
|
this.block = false;
|
|
261
|
-
this.
|
|
262
|
-
this.
|
|
267
|
+
this.sblock = false;
|
|
268
|
+
this.mblock = false;
|
|
263
269
|
this.active = false;
|
|
264
270
|
this.submit = false;
|
|
265
271
|
this.search = false;
|
|
@@ -267,11 +273,13 @@ class IDButtonComponent {
|
|
|
267
273
|
this.disabled = false;
|
|
268
274
|
this.type = undefined;
|
|
269
275
|
this.color = undefined;
|
|
270
|
-
|
|
276
|
+
// Internal Icon
|
|
277
|
+
this.iconobject = undefined;
|
|
278
|
+
this.onClicked = new EventEmitter();
|
|
271
279
|
}
|
|
272
280
|
}
|
|
273
281
|
IDButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
274
|
-
IDButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDButtonComponent, selector: "id-button", inputs: { secondary: "secondary", fab: "fab", icon: "icon", tertiary: "tertiary", toggle: "toggle", block: "block",
|
|
282
|
+
IDButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDButtonComponent, selector: "id-button", inputs: { secondary: "secondary", fab: "fab", icon: "icon", tertiary: "tertiary", toggle: "toggle", block: "block", sblock: "sblock", mblock: "mblock", active: "active", submit: "submit", search: "search", size: "size", disabled: "disabled", type: "type", color: "color", iconobject: "iconobject" }, outputs: { onClicked: "onClicked" }, ngImport: i0, template: "<ids-button \r\n [secondary]=\"secondary ? 'true' : null\"\r\n [attr.fab]=\"fab ? 'true' : null\"\r\n [attr.icon]=\"icon ? 'true' : null\"\r\n [tertiary]=\"tertiary ? 'true' : null\"\r\n [toggle]=\"toggle ? 'true' : null\"\r\n [active]=\"active ? 'true' : null\"\r\n [submit]=\"submit ? 'true' : null\"\r\n [search]=\"search ? 'true' : null\"\r\n [disabled]=\"disabled ? 'true' : null\"\r\n [block]=\"block ? 'true' : null\"\r\n [sblock]=\"sblock ? 'true' : null\"\r\n [mblock]=\"mblock ? 'true' : null\"\r\n [size]=\"size\"\r\n [type]=\"type\"\r\n [color]=\"color\"\r\n (clicked)=\"onClicked.emit(true)\">\r\n <ids-icon *ngIf=\"iconobject !== undefined\"\r\n [attr.name]=\"iconobject?.name\"\r\n [attr.title]=\"iconobject?.title\" \r\n [attr.color]=\"iconobject?.color\" \r\n [attr.color2]=\"iconobject?.color2\" \r\n [attr.size]=\"iconobject?.size\" \r\n [attr.padding]=\"iconobject?.padding\" \r\n [attr.rotate]=\"iconobject?.rotate\" \r\n [attr.colorpreset]=\"iconobject?.colorpreset\" \r\n [attr.height]=\"iconobject?.height\" \r\n [attr.width]=\"iconobject?.width\"></ids-icon>\r\n <ng-content></ng-content>\r\n</ids-button>", styles: ["id-button[ng-reflect-block=true], id-button[ng-reflect-mblock=true], id-button[ng-reflect-sblock=true] { display: contents; }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
275
283
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonComponent, decorators: [{
|
|
276
284
|
type: Component,
|
|
277
285
|
args: [{
|
|
@@ -292,9 +300,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
292
300
|
type: Input
|
|
293
301
|
}], block: [{
|
|
294
302
|
type: Input
|
|
295
|
-
}],
|
|
303
|
+
}], sblock: [{
|
|
296
304
|
type: Input
|
|
297
|
-
}],
|
|
305
|
+
}], mblock: [{
|
|
298
306
|
type: Input
|
|
299
307
|
}], active: [{
|
|
300
308
|
type: Input
|
|
@@ -310,15 +318,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
310
318
|
type: Input
|
|
311
319
|
}], color: [{
|
|
312
320
|
type: Input
|
|
313
|
-
}],
|
|
321
|
+
}], iconobject: [{
|
|
322
|
+
type: Input
|
|
323
|
+
}], onClicked: [{
|
|
314
324
|
type: Output
|
|
315
325
|
}] } });
|
|
316
326
|
|
|
327
|
+
class IDIconComponent {
|
|
328
|
+
constructor() {
|
|
329
|
+
this.name = undefined;
|
|
330
|
+
this.rotate = undefined;
|
|
331
|
+
this.color = undefined;
|
|
332
|
+
this.color2 = undefined;
|
|
333
|
+
this.colorpreset = undefined;
|
|
334
|
+
this.title = undefined;
|
|
335
|
+
this.size = 'm';
|
|
336
|
+
this.inline = false;
|
|
337
|
+
this.width = undefined;
|
|
338
|
+
this.height = undefined;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
IDIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
342
|
+
IDIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDIconComponent, selector: "id-icon", inputs: { name: "name", rotate: "rotate", color: "color", color2: "color2", colorpreset: "colorpreset", title: "title", size: "size", inline: "inline", width: "width", height: "height" }, ngImport: i0, template: "<ids-icon \r\n [attr.name]=\"name\"\r\n [attr.inline]=\"inline ? true : undefined\"\r\n [attr.rotate]=\"rotate\"\r\n [attr.color]=\"color\"\r\n [attr.color2]=\"color2\"\r\n [attr.size]=\"size\"\r\n [attr.width]=\"width\"\r\n [attr.height]=\"height\"\r\n [attr.colorpreset]=\"colorpreset\">\r\n</ids-icon >", encapsulation: i0.ViewEncapsulation.None });
|
|
343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconComponent, decorators: [{
|
|
344
|
+
type: Component,
|
|
345
|
+
args: [{
|
|
346
|
+
selector: 'id-icon',
|
|
347
|
+
templateUrl: './icon.component.html',
|
|
348
|
+
encapsulation: ViewEncapsulation.None,
|
|
349
|
+
}]
|
|
350
|
+
}], ctorParameters: function () { return []; }, propDecorators: { name: [{
|
|
351
|
+
type: Input
|
|
352
|
+
}], rotate: [{
|
|
353
|
+
type: Input
|
|
354
|
+
}], color: [{
|
|
355
|
+
type: Input
|
|
356
|
+
}], color2: [{
|
|
357
|
+
type: Input
|
|
358
|
+
}], colorpreset: [{
|
|
359
|
+
type: Input
|
|
360
|
+
}], title: [{
|
|
361
|
+
type: Input
|
|
362
|
+
}], size: [{
|
|
363
|
+
type: Input
|
|
364
|
+
}], inline: [{
|
|
365
|
+
type: Input
|
|
366
|
+
}], width: [{
|
|
367
|
+
type: Input
|
|
368
|
+
}], height: [{
|
|
369
|
+
type: Input
|
|
370
|
+
}] } });
|
|
371
|
+
|
|
372
|
+
class IDIconModule {
|
|
373
|
+
}
|
|
374
|
+
IDIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
375
|
+
IDIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule, declarations: [IDIconComponent], exports: [IDIconComponent] });
|
|
376
|
+
IDIconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule });
|
|
377
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule, decorators: [{
|
|
378
|
+
type: NgModule,
|
|
379
|
+
args: [{
|
|
380
|
+
declarations: [
|
|
381
|
+
IDIconComponent
|
|
382
|
+
],
|
|
383
|
+
exports: [
|
|
384
|
+
IDIconComponent
|
|
385
|
+
],
|
|
386
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
387
|
+
}]
|
|
388
|
+
}] });
|
|
389
|
+
|
|
317
390
|
class IDButtonModule {
|
|
318
391
|
}
|
|
319
392
|
IDButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
320
|
-
IDButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonModule, declarations: [IDButtonComponent], exports: [IDButtonComponent] });
|
|
321
|
-
IDButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonModule });
|
|
393
|
+
IDButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonModule, declarations: [IDButtonComponent], imports: [CommonModule, IDIconModule], exports: [IDButtonComponent] });
|
|
394
|
+
IDButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonModule, imports: [[CommonModule, IDIconModule]] });
|
|
322
395
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonModule, decorators: [{
|
|
323
396
|
type: NgModule,
|
|
324
397
|
args: [{
|
|
@@ -328,6 +401,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
328
401
|
exports: [
|
|
329
402
|
IDButtonComponent
|
|
330
403
|
],
|
|
404
|
+
imports: [CommonModule, IDIconModule],
|
|
331
405
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
332
406
|
}]
|
|
333
407
|
}] });
|
|
@@ -371,13 +445,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
371
445
|
class IDCarouselComponent {
|
|
372
446
|
constructor() {
|
|
373
447
|
this.autoplay = false;
|
|
374
|
-
this.
|
|
375
|
-
this.
|
|
376
|
-
this.
|
|
448
|
+
this.srnextlabel = 'Nästa slide';
|
|
449
|
+
this.srprevlabel = 'Föregående slide';
|
|
450
|
+
this.autoplaydelay = 5000;
|
|
377
451
|
}
|
|
378
452
|
}
|
|
379
453
|
IDCarouselComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
380
|
-
IDCarouselComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCarouselComponent, selector: "id-carousel", inputs: { autoplay: "autoplay",
|
|
454
|
+
IDCarouselComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCarouselComponent, selector: "id-carousel", inputs: { autoplay: "autoplay", srnextlabel: "srnextlabel", srprevlabel: "srprevlabel", autoplaydelay: "autoplaydelay" }, ngImport: i0, template: "<ids-carousel\r\n [srnextlabel]=\"srnextlabel\"\r\n [srprevlabel]=\"srprevlabel\"\r\n [autoplay]=\"autoplay ? true : null\"\r\n [autoplaydelay]=\"autoplaydelay\">\r\n <ng-content></ng-content>\r\n</ids-carousel>" });
|
|
381
455
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCarouselComponent, decorators: [{
|
|
382
456
|
type: Component,
|
|
383
457
|
args: [{
|
|
@@ -386,11 +460,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
386
460
|
}]
|
|
387
461
|
}], ctorParameters: function () { return []; }, propDecorators: { autoplay: [{
|
|
388
462
|
type: Input
|
|
389
|
-
}],
|
|
463
|
+
}], srnextlabel: [{
|
|
390
464
|
type: Input
|
|
391
|
-
}],
|
|
465
|
+
}], srprevlabel: [{
|
|
392
466
|
type: Input
|
|
393
|
-
}],
|
|
467
|
+
}], autoplaydelay: [{
|
|
394
468
|
type: Input
|
|
395
469
|
}] } });
|
|
396
470
|
|
|
@@ -595,14 +669,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
595
669
|
|
|
596
670
|
class IDBreadcrumbsComponent {
|
|
597
671
|
constructor() {
|
|
598
|
-
this.
|
|
672
|
+
this.lead = 'Du är här:';
|
|
599
673
|
this.current = '';
|
|
600
|
-
this.
|
|
601
|
-
this.
|
|
674
|
+
this.srlabel = 'Du är här';
|
|
675
|
+
this.links = [];
|
|
602
676
|
}
|
|
603
677
|
}
|
|
604
678
|
IDBreadcrumbsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDBreadcrumbsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
605
|
-
IDBreadcrumbsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDBreadcrumbsComponent, selector: "id-breadcrumbs", inputs: {
|
|
679
|
+
IDBreadcrumbsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDBreadcrumbsComponent, selector: "id-breadcrumbs", inputs: { lead: "lead", current: "current", srlabel: "srlabel", links: "links", mobilelink: "mobilelink" }, ngImport: i0, template: "<ids-breadcrumbs\r\n [current]=\"current\"\r\n [lead]=\"lead\"\r\n [srlabel]=\"srlabel\">\r\n <ids-crumb *ngFor=\"let link of links\">\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-crumb>\r\n <ids-crumb mobile=\"true\" *ngIf=\"mobilelink\">\r\n <id-anchor [link]=\"mobilelink\"></id-anchor>\r\n </ids-crumb>\r\n</ids-breadcrumbs>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
606
680
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDBreadcrumbsComponent, decorators: [{
|
|
607
681
|
type: Component,
|
|
608
682
|
args: [{
|
|
@@ -610,15 +684,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
610
684
|
templateUrl: './breadcrumbs.component.html',
|
|
611
685
|
encapsulation: ViewEncapsulation.None,
|
|
612
686
|
}]
|
|
613
|
-
}], ctorParameters: function () { return []; }, propDecorators: {
|
|
614
|
-
type: Input
|
|
615
|
-
}], mobileLink: [{
|
|
687
|
+
}], ctorParameters: function () { return []; }, propDecorators: { lead: [{
|
|
616
688
|
type: Input
|
|
617
689
|
}], current: [{
|
|
618
690
|
type: Input
|
|
619
|
-
}],
|
|
691
|
+
}], srlabel: [{
|
|
692
|
+
type: Input
|
|
693
|
+
}], links: [{
|
|
620
694
|
type: Input
|
|
621
|
-
}],
|
|
695
|
+
}], mobilelink: [{
|
|
622
696
|
type: Input
|
|
623
697
|
}] } });
|
|
624
698
|
|
|
@@ -646,11 +720,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
646
720
|
class IDBreadcrumbsModule {
|
|
647
721
|
}
|
|
648
722
|
IDBreadcrumbsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDBreadcrumbsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
649
|
-
IDBreadcrumbsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDBreadcrumbsModule, declarations: [IDBreadcrumbsComponent], imports: [CommonModule,
|
|
650
|
-
IDAnchorModule], exports: [IDBreadcrumbsComponent] });
|
|
723
|
+
IDBreadcrumbsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDBreadcrumbsModule, declarations: [IDBreadcrumbsComponent], imports: [CommonModule, IDAnchorModule], exports: [IDBreadcrumbsComponent] });
|
|
651
724
|
IDBreadcrumbsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDBreadcrumbsModule, imports: [[
|
|
652
|
-
CommonModule,
|
|
653
|
-
IDAnchorModule
|
|
725
|
+
CommonModule, IDAnchorModule
|
|
654
726
|
]] });
|
|
655
727
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDBreadcrumbsModule, decorators: [{
|
|
656
728
|
type: NgModule,
|
|
@@ -662,8 +734,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
662
734
|
IDBreadcrumbsComponent
|
|
663
735
|
],
|
|
664
736
|
imports: [
|
|
665
|
-
CommonModule,
|
|
666
|
-
IDAnchorModule
|
|
737
|
+
CommonModule, IDAnchorModule
|
|
667
738
|
],
|
|
668
739
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
669
740
|
}]
|
|
@@ -710,12 +781,12 @@ class IDDateLabelComponent {
|
|
|
710
781
|
this.date = null;
|
|
711
782
|
this.year = null;
|
|
712
783
|
this.month = null;
|
|
713
|
-
this.
|
|
784
|
+
this.monthlabel = null;
|
|
714
785
|
this.day = null;
|
|
715
786
|
}
|
|
716
787
|
}
|
|
717
788
|
IDDateLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDateLabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
718
|
-
IDDateLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDDateLabelComponent, selector: "id-date-label", inputs: { date: "date", year: "year", month: "month",
|
|
789
|
+
IDDateLabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDDateLabelComponent, selector: "id-date-label", inputs: { date: "date", year: "year", month: "month", monthlabel: "monthlabel", day: "day" }, ngImport: i0, template: "<ids-date-label \n [date]=\"date?.toString()\"\n [year]=\"year\"\n [month]=\"month\"\n [monthlabel]=\"monthlabel\"\n [day]=\"day\">\n <ng-content></ng-content>\n</ids-date-label>", encapsulation: i0.ViewEncapsulation.None });
|
|
719
790
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDateLabelComponent, decorators: [{
|
|
720
791
|
type: Component,
|
|
721
792
|
args: [{
|
|
@@ -729,7 +800,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
729
800
|
type: Input
|
|
730
801
|
}], month: [{
|
|
731
802
|
type: Input
|
|
732
|
-
}],
|
|
803
|
+
}], monthlabel: [{
|
|
733
804
|
type: Input
|
|
734
805
|
}], day: [{
|
|
735
806
|
type: Input
|
|
@@ -756,17 +827,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
756
827
|
class IDDialogComponent {
|
|
757
828
|
constructor() {
|
|
758
829
|
this.dismissible = false;
|
|
759
|
-
this.
|
|
760
|
-
this.
|
|
830
|
+
this.srclosetext = '';
|
|
831
|
+
this.nofocustrap = false;
|
|
761
832
|
this.headline = '';
|
|
762
833
|
this.overlay = false;
|
|
763
834
|
this.persistent = false;
|
|
764
835
|
this.show = false;
|
|
765
836
|
this.width = '';
|
|
837
|
+
this.onClosed = new EventEmitter();
|
|
838
|
+
}
|
|
839
|
+
emitOnClosed(e) {
|
|
840
|
+
this.onClosed.emit(e);
|
|
766
841
|
}
|
|
767
842
|
}
|
|
768
843
|
IDDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
769
|
-
IDDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDDialogComponent, selector: "id-dialog", inputs: { dismissible: "dismissible",
|
|
844
|
+
IDDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDDialogComponent, selector: "id-dialog", inputs: { dismissible: "dismissible", srclosetext: "srclosetext", nofocustrap: "nofocustrap", headline: "headline", overlay: "overlay", persistent: "persistent", show: "show", width: "width" }, outputs: { onClosed: "onClosed" }, ngImport: i0, template: "<ids-dialog \r\n [attr.dismissible]=\"dismissible ? true : null\"\r\n [attr.headline]=\"headline\"\r\n [attr.overlay]=\"overlay ? true : null\"\r\n [attr.nofocustrap]=\"nofocustrap ? true : null\"\r\n [attr.persistent]=\"persistent ? true : null\"\r\n [show]=\"show\"\r\n [width]=\"width\"\r\n nofocustrap=\"nofocustrap\"\r\n [srclosetext]=\"srclosetext\"\r\n (closed)=\"emitOnClosed\">\r\n <ng-content></ng-content>\r\n</ids-dialog>", encapsulation: i0.ViewEncapsulation.None });
|
|
770
845
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDDialogComponent, decorators: [{
|
|
771
846
|
type: Component,
|
|
772
847
|
args: [{
|
|
@@ -776,9 +851,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
776
851
|
}]
|
|
777
852
|
}], ctorParameters: function () { return []; }, propDecorators: { dismissible: [{
|
|
778
853
|
type: Input
|
|
779
|
-
}],
|
|
854
|
+
}], srclosetext: [{
|
|
780
855
|
type: Input
|
|
781
|
-
}],
|
|
856
|
+
}], nofocustrap: [{
|
|
782
857
|
type: Input
|
|
783
858
|
}], headline: [{
|
|
784
859
|
type: Input
|
|
@@ -790,6 +865,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
790
865
|
type: Input
|
|
791
866
|
}], width: [{
|
|
792
867
|
type: Input
|
|
868
|
+
}], onClosed: [{
|
|
869
|
+
type: Output
|
|
793
870
|
}] } });
|
|
794
871
|
|
|
795
872
|
class IDDialogActionsComponent {
|
|
@@ -837,7 +914,7 @@ class IDExpandableComponent {
|
|
|
837
914
|
}
|
|
838
915
|
}
|
|
839
916
|
IDExpandableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDExpandableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
840
|
-
IDExpandableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDExpandableComponent, selector: "id-expandable", inputs: { borderless: "borderless", expanded: "expanded", headline: "headline", variation: "variation" }, ngImport: i0, template: "<ids-expandable [attr.borderless]=\"borderless ? true : null\"
|
|
917
|
+
IDExpandableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDExpandableComponent, selector: "id-expandable", inputs: { borderless: "borderless", expanded: "expanded", headline: "headline", variation: "variation" }, ngImport: i0, template: "<ids-expandable \r\n [attr.borderless]=\"borderless ? true : null\"\r\n [expanded]=\"expanded ? true : null\"\r\n [headline]=\"headline\"\r\n [variation]=\"variation\">\r\n <ng-content></ng-content>\r\n</ids-expandable>", encapsulation: i0.ViewEncapsulation.None });
|
|
841
918
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDExpandableComponent, decorators: [{
|
|
842
919
|
type: Component,
|
|
843
920
|
args: [{
|
|
@@ -909,73 +986,11 @@ class IDIcon {
|
|
|
909
986
|
}
|
|
910
987
|
}
|
|
911
988
|
|
|
912
|
-
class IDIconComponent {
|
|
913
|
-
constructor() {
|
|
914
|
-
this.name = undefined;
|
|
915
|
-
this.rotate = undefined;
|
|
916
|
-
this.color = undefined;
|
|
917
|
-
this.color2 = undefined;
|
|
918
|
-
this.colorpreset = undefined;
|
|
919
|
-
this.title = undefined;
|
|
920
|
-
this.size = 'm';
|
|
921
|
-
this.inline = false;
|
|
922
|
-
this.width = undefined;
|
|
923
|
-
this.height = undefined;
|
|
924
|
-
}
|
|
925
|
-
}
|
|
926
|
-
IDIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
927
|
-
IDIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDIconComponent, selector: "id-icon", inputs: { name: "name", rotate: "rotate", color: "color", color2: "color2", colorpreset: "colorpreset", title: "title", size: "size", inline: "inline", width: "width", height: "height" }, ngImport: i0, template: "<ids-icon \r\n [attr.name]=\"name\"\r\n [attr.inline]=\"inline ? true : undefined\"\r\n [attr.rotate]=\"rotate\"\r\n [attr.color]=\"color\"\r\n [attr.color2]=\"color2\"\r\n [attr.size]=\"size\"\r\n [attr.width]=\"width\"\r\n [attr.height]=\"height\"\r\n [attr.colorpreset]=\"colorpreset\">\r\n</ids-icon >", encapsulation: i0.ViewEncapsulation.None });
|
|
928
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconComponent, decorators: [{
|
|
929
|
-
type: Component,
|
|
930
|
-
args: [{
|
|
931
|
-
selector: 'id-icon',
|
|
932
|
-
templateUrl: './icon.component.html',
|
|
933
|
-
encapsulation: ViewEncapsulation.None,
|
|
934
|
-
}]
|
|
935
|
-
}], ctorParameters: function () { return []; }, propDecorators: { name: [{
|
|
936
|
-
type: Input
|
|
937
|
-
}], rotate: [{
|
|
938
|
-
type: Input
|
|
939
|
-
}], color: [{
|
|
940
|
-
type: Input
|
|
941
|
-
}], color2: [{
|
|
942
|
-
type: Input
|
|
943
|
-
}], colorpreset: [{
|
|
944
|
-
type: Input
|
|
945
|
-
}], title: [{
|
|
946
|
-
type: Input
|
|
947
|
-
}], size: [{
|
|
948
|
-
type: Input
|
|
949
|
-
}], inline: [{
|
|
950
|
-
type: Input
|
|
951
|
-
}], width: [{
|
|
952
|
-
type: Input
|
|
953
|
-
}], height: [{
|
|
954
|
-
type: Input
|
|
955
|
-
}] } });
|
|
956
|
-
|
|
957
|
-
class IDIconModule {
|
|
958
|
-
}
|
|
959
|
-
IDIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
960
|
-
IDIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule, declarations: [IDIconComponent], exports: [IDIconComponent] });
|
|
961
|
-
IDIconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule });
|
|
962
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule, decorators: [{
|
|
963
|
-
type: NgModule,
|
|
964
|
-
args: [{
|
|
965
|
-
declarations: [
|
|
966
|
-
IDIconComponent
|
|
967
|
-
],
|
|
968
|
-
exports: [
|
|
969
|
-
IDIconComponent
|
|
970
|
-
],
|
|
971
|
-
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
972
|
-
}]
|
|
973
|
-
}] });
|
|
974
|
-
|
|
975
989
|
class IDFormBase {
|
|
976
990
|
constructor() {
|
|
977
991
|
this.valid = 'true';
|
|
978
|
-
this.
|
|
992
|
+
this.light = false;
|
|
993
|
+
this.novalidation = false;
|
|
979
994
|
}
|
|
980
995
|
}
|
|
981
996
|
IDFormBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFormBase, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
@@ -984,7 +999,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
984
999
|
type: Injectable
|
|
985
1000
|
}], ctorParameters: function () { return []; }, propDecorators: { valid: [{
|
|
986
1001
|
type: Input
|
|
987
|
-
}],
|
|
1002
|
+
}], light: [{
|
|
1003
|
+
type: Input
|
|
1004
|
+
}], novalidation: [{
|
|
988
1005
|
type: Input
|
|
989
1006
|
}] } });
|
|
990
1007
|
|
|
@@ -992,11 +1009,10 @@ class IDInputComponent extends IDFormBase {
|
|
|
992
1009
|
constructor() {
|
|
993
1010
|
super();
|
|
994
1011
|
this.autofocus = false;
|
|
995
|
-
this.appendIcon = null;
|
|
996
1012
|
}
|
|
997
1013
|
}
|
|
998
1014
|
IDInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
999
|
-
IDInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDInputComponent, selector: "id-input", inputs: { autofocus: "autofocus"
|
|
1015
|
+
IDInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDInputComponent, selector: "id-input", inputs: { autofocus: "autofocus" }, usesInheritance: true, ngImport: i0, template: "<ids-input [attr.valid]=\"valid\" \r\n [attr.novalidation]=\"novalidation ? true : null\"\r\n [attr.light]=\"light ? light : null\"\r\n [attr.autofocus]=\"autofocus ? autofocus : null\">\r\n <ng-content></ng-content>\r\n</ids-input>", encapsulation: i0.ViewEncapsulation.None });
|
|
1000
1016
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDInputComponent, decorators: [{
|
|
1001
1017
|
type: Component,
|
|
1002
1018
|
args: [{
|
|
@@ -1006,8 +1022,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1006
1022
|
}]
|
|
1007
1023
|
}], ctorParameters: function () { return []; }, propDecorators: { autofocus: [{
|
|
1008
1024
|
type: Input
|
|
1009
|
-
}], appendIcon: [{
|
|
1010
|
-
type: Input
|
|
1011
1025
|
}] } });
|
|
1012
1026
|
|
|
1013
1027
|
class IDInputModule {
|
|
@@ -1036,7 +1050,7 @@ class IDCheckboxComponent extends IDFormBase {
|
|
|
1036
1050
|
}
|
|
1037
1051
|
}
|
|
1038
1052
|
IDCheckboxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1039
|
-
IDCheckboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxComponent, selector: "id-checkbox", inputs: { compact: "compact" }, usesInheritance: true, ngImport: i0, template: "<ids-checkbox \r\n [attr.compact]=\"compact ? true : null\"\r\n [attr.valid]=\"valid\" \r\n [attr.novalidation]=\"
|
|
1053
|
+
IDCheckboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxComponent, selector: "id-checkbox", inputs: { compact: "compact" }, usesInheritance: true, ngImport: i0, template: "<ids-checkbox \r\n [attr.compact]=\"compact ? true : null\"\r\n [attr.light]=\"light ? true : null\"\r\n [attr.valid]=\"valid\" \r\n [attr.novalidation]=\"novalidation ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-checkbox>", encapsulation: i0.ViewEncapsulation.None });
|
|
1040
1054
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxComponent, decorators: [{
|
|
1041
1055
|
type: Component,
|
|
1042
1056
|
args: [{
|
|
@@ -1077,7 +1091,7 @@ class IDCheckboxGroupComponent extends IDFormBase {
|
|
|
1077
1091
|
}
|
|
1078
1092
|
}
|
|
1079
1093
|
IDCheckboxGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1080
|
-
IDCheckboxGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxGroupComponent, selector: "id-checkbox-group", inputs: { errorMessage: "errorMessage", legend: "legend", compact: "compact" }, usesInheritance: true, ngImport: i0, template: "<ids-checkbox-group \r\n [legend]=\"legend\"\r\n [valid]=\"valid\" \r\n [attr.novalidation]=\"
|
|
1094
|
+
IDCheckboxGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxGroupComponent, selector: "id-checkbox-group", inputs: { errorMessage: "errorMessage", legend: "legend", compact: "compact" }, usesInheritance: true, ngImport: i0, template: "<ids-checkbox-group \r\n [legend]=\"legend\"\r\n [valid]=\"valid\" \r\n [attr.novalidation]=\"novalidation ? true : null\"\r\n [attr.compact]=\"compact ? true : null\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-checkbox-group>\r\n", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
1081
1095
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupComponent, decorators: [{
|
|
1082
1096
|
type: Component,
|
|
1083
1097
|
args: [{
|
|
@@ -1149,11 +1163,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1149
1163
|
}]
|
|
1150
1164
|
}] });
|
|
1151
1165
|
|
|
1152
|
-
class IDRadioComponent {
|
|
1153
|
-
constructor() { }
|
|
1166
|
+
class IDRadioComponent extends IDFormBase {
|
|
1154
1167
|
}
|
|
1155
|
-
IDRadioComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioComponent, deps:
|
|
1156
|
-
IDRadioComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRadioComponent, selector: "id-radio", ngImport: i0, template: "<ids-radio>\r\n <ng-content></ng-content>\r\n</ids-radio>", encapsulation: i0.ViewEncapsulation.None });
|
|
1168
|
+
IDRadioComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1169
|
+
IDRadioComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRadioComponent, selector: "id-radio", usesInheritance: true, ngImport: i0, template: "<ids-radio [light]=\"light ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-radio>", encapsulation: i0.ViewEncapsulation.None });
|
|
1157
1170
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioComponent, decorators: [{
|
|
1158
1171
|
type: Component,
|
|
1159
1172
|
args: [{
|
|
@@ -1161,18 +1174,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1161
1174
|
templateUrl: './radio.component.html',
|
|
1162
1175
|
encapsulation: ViewEncapsulation.None,
|
|
1163
1176
|
}]
|
|
1164
|
-
}]
|
|
1177
|
+
}] });
|
|
1165
1178
|
|
|
1166
1179
|
class IDRadioGroupComponent {
|
|
1167
1180
|
constructor() {
|
|
1168
1181
|
this.name = undefined;
|
|
1169
1182
|
this.legend = undefined;
|
|
1170
1183
|
this.required = false;
|
|
1171
|
-
this.
|
|
1184
|
+
this.errormessage = undefined;
|
|
1172
1185
|
}
|
|
1173
1186
|
}
|
|
1174
1187
|
IDRadioGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1175
|
-
IDRadioGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRadioGroupComponent, selector: "id-radio-group", inputs: { name: "name", legend: "legend", required: "required",
|
|
1188
|
+
IDRadioGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRadioGroupComponent, selector: "id-radio-group", inputs: { name: "name", legend: "legend", required: "required", errormessage: "errormessage" }, ngImport: i0, template: "<ids-radio-group [name]=\"name\" [legend]=\"legend\" [required]=\"required\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errormessage\">{{errormessage}}</ids-error-message>\r\n</ids-radio-group>", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
1176
1189
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioGroupComponent, decorators: [{
|
|
1177
1190
|
type: Component,
|
|
1178
1191
|
args: [{
|
|
@@ -1186,7 +1199,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1186
1199
|
type: Input
|
|
1187
1200
|
}], required: [{
|
|
1188
1201
|
type: Input
|
|
1189
|
-
}],
|
|
1202
|
+
}], errormessage: [{
|
|
1190
1203
|
type: Input
|
|
1191
1204
|
}] } });
|
|
1192
1205
|
|
|
@@ -1219,11 +1232,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1219
1232
|
|
|
1220
1233
|
class IDRangeComponent {
|
|
1221
1234
|
constructor() {
|
|
1222
|
-
this.
|
|
1235
|
+
this.showticks = false;
|
|
1223
1236
|
}
|
|
1224
1237
|
}
|
|
1225
1238
|
IDRangeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRangeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1226
|
-
IDRangeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRangeComponent, selector: "id-range", inputs: {
|
|
1239
|
+
IDRangeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRangeComponent, selector: "id-range", inputs: { showticks: "showticks" }, ngImport: i0, template: "<ids-range [showticks]=\"showticks\">\r\n <ng-content></ng-content>\r\n</ids-range>", encapsulation: i0.ViewEncapsulation.None });
|
|
1227
1240
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRangeComponent, decorators: [{
|
|
1228
1241
|
type: Component,
|
|
1229
1242
|
args: [{
|
|
@@ -1231,7 +1244,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1231
1244
|
templateUrl: './range.component.html',
|
|
1232
1245
|
encapsulation: ViewEncapsulation.None,
|
|
1233
1246
|
}]
|
|
1234
|
-
}], propDecorators: {
|
|
1247
|
+
}], propDecorators: { showticks: [{
|
|
1235
1248
|
type: Input
|
|
1236
1249
|
}] } });
|
|
1237
1250
|
|
|
@@ -1254,12 +1267,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1254
1267
|
}] });
|
|
1255
1268
|
|
|
1256
1269
|
class IDSelectComponent extends IDFormBase {
|
|
1257
|
-
constructor() {
|
|
1258
|
-
super();
|
|
1259
|
-
}
|
|
1260
1270
|
}
|
|
1261
|
-
IDSelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectComponent, deps:
|
|
1262
|
-
IDSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectComponent, selector: "id-select", usesInheritance: true, ngImport: i0, template: "<ids-select [attr.valid]=\"valid\" [attr.novalidation]=\"
|
|
1271
|
+
IDSelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1272
|
+
IDSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectComponent, selector: "id-select", usesInheritance: true, ngImport: i0, template: "<ids-select \r\n [attr.valid]=\"valid\"\r\n [attr.light]=\"light ? true : null\"\r\n [attr.novalidation]=\"novalidation ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-select>", encapsulation: i0.ViewEncapsulation.None });
|
|
1263
1273
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectComponent, decorators: [{
|
|
1264
1274
|
type: Component,
|
|
1265
1275
|
args: [{
|
|
@@ -1267,7 +1277,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1267
1277
|
templateUrl: './select.component.html',
|
|
1268
1278
|
encapsulation: ViewEncapsulation.None,
|
|
1269
1279
|
}]
|
|
1270
|
-
}]
|
|
1280
|
+
}] });
|
|
1271
1281
|
|
|
1272
1282
|
class IDSelectModule {
|
|
1273
1283
|
}
|
|
@@ -1291,13 +1301,13 @@ class IDSelectMultipleComponent extends IDFormBase {
|
|
|
1291
1301
|
constructor() {
|
|
1292
1302
|
super(...arguments);
|
|
1293
1303
|
this.label = undefined;
|
|
1294
|
-
this.
|
|
1304
|
+
this.errormessage = undefined;
|
|
1295
1305
|
this.maxHeight = undefined;
|
|
1296
1306
|
this.placeholder = '';
|
|
1297
1307
|
}
|
|
1298
1308
|
}
|
|
1299
1309
|
IDSelectMultipleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1300
|
-
IDSelectMultipleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectMultipleComponent, selector: "id-select-multiple", inputs: { label: "label",
|
|
1310
|
+
IDSelectMultipleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectMultipleComponent, selector: "id-select-multiple", inputs: { label: "label", errormessage: "errormessage", maxHeight: "maxHeight", placeholder: "placeholder" }, usesInheritance: true, ngImport: i0, template: "<ids-select-multiple \r\n [attr.light]=\"light ? true : null\"\r\n [attr.valid]=\"valid\" \r\n [attr.novalidation]=\"novalidation ? true : null\" \r\n [label]=\"label\" \r\n [placeholder]=\"placeholder\"\r\n [maxheight]=\"maxHeight\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errormessage\">{{errormessage}}</ids-error-message>\r\n</ids-select-multiple>", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
|
|
1301
1311
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleComponent, decorators: [{
|
|
1302
1312
|
type: Component,
|
|
1303
1313
|
args: [{
|
|
@@ -1307,7 +1317,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1307
1317
|
}]
|
|
1308
1318
|
}], propDecorators: { label: [{
|
|
1309
1319
|
type: Input
|
|
1310
|
-
}],
|
|
1320
|
+
}], errormessage: [{
|
|
1311
1321
|
type: Input
|
|
1312
1322
|
}], maxHeight: [{
|
|
1313
1323
|
type: Input
|
|
@@ -1377,11 +1387,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1377
1387
|
}]
|
|
1378
1388
|
}] });
|
|
1379
1389
|
|
|
1380
|
-
class IDTimeComponent {
|
|
1381
|
-
constructor() { }
|
|
1390
|
+
class IDTimeComponent extends IDFormBase {
|
|
1382
1391
|
}
|
|
1383
|
-
IDTimeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTimeComponent, deps:
|
|
1384
|
-
IDTimeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTimeComponent, selector: "id-time", ngImport: i0, template: "<ids-time>\r\n <ng-content></ng-content>\r\n</ids-time>", encapsulation: i0.ViewEncapsulation.None });
|
|
1392
|
+
IDTimeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTimeComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
1393
|
+
IDTimeComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTimeComponent, selector: "id-time", usesInheritance: true, ngImport: i0, template: "<ids-time [attr.light]=\"light ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-time>", encapsulation: i0.ViewEncapsulation.None });
|
|
1385
1394
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTimeComponent, decorators: [{
|
|
1386
1395
|
type: Component,
|
|
1387
1396
|
args: [{
|
|
@@ -1389,7 +1398,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1389
1398
|
templateUrl: './time.component.html',
|
|
1390
1399
|
encapsulation: ViewEncapsulation.None,
|
|
1391
1400
|
}]
|
|
1392
|
-
}]
|
|
1401
|
+
}] });
|
|
1393
1402
|
|
|
1394
1403
|
class IDTimeModule {
|
|
1395
1404
|
}
|
|
@@ -1416,7 +1425,7 @@ class IDTextareaComponent extends IDFormBase {
|
|
|
1416
1425
|
}
|
|
1417
1426
|
}
|
|
1418
1427
|
IDTextareaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTextareaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1419
|
-
IDTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTextareaComponent, selector: "id-textarea", inputs: { noFade: "noFade" }, usesInheritance: true, ngImport: i0, template: "<ids-textarea [attr.nofade]=\"noFade ? true : null\"
|
|
1428
|
+
IDTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTextareaComponent, selector: "id-textarea", inputs: { noFade: "noFade" }, usesInheritance: true, ngImport: i0, template: "<ids-textarea \r\n [attr.light]=\"light ? true : null\"\r\n [attr.nofade]=\"noFade ? true : null\"\r\n [attr.valid]=\"valid\"\r\n [attr.novalidation]=\"novalidation ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-textarea>", encapsulation: i0.ViewEncapsulation.None });
|
|
1420
1429
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTextareaComponent, decorators: [{
|
|
1421
1430
|
type: Component,
|
|
1422
1431
|
args: [{
|
|
@@ -1597,36 +1606,37 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1597
1606
|
class IDLinkComponent {
|
|
1598
1607
|
constructor() {
|
|
1599
1608
|
this.link = null;
|
|
1600
|
-
this.
|
|
1601
|
-
this.
|
|
1602
|
-
this.
|
|
1609
|
+
this.notificationbadge = null;
|
|
1610
|
+
this.prependicon = null;
|
|
1611
|
+
this.appendicon = null;
|
|
1603
1612
|
this.underlined = false;
|
|
1604
1613
|
this.padding = null;
|
|
1605
1614
|
this.outline = null;
|
|
1606
1615
|
this.block = false;
|
|
1607
1616
|
this.color = undefined;
|
|
1608
1617
|
this.size = undefined;
|
|
1609
|
-
this.
|
|
1610
|
-
this.
|
|
1618
|
+
this.activeicon = false;
|
|
1619
|
+
this.activeiconbackground = undefined;
|
|
1611
1620
|
this.external = false;
|
|
1612
1621
|
this.slot = undefined;
|
|
1613
1622
|
}
|
|
1614
1623
|
}
|
|
1615
1624
|
IDLinkComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1616
|
-
IDLinkComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDLinkComponent, selector: "id-link", inputs: { link: "link",
|
|
1625
|
+
IDLinkComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDLinkComponent, selector: "id-link", inputs: { link: "link", notificationbadge: "notificationbadge", prependicon: "prependicon", appendicon: "appendicon", underlined: "underlined", padding: "padding", outline: "outline", block: "block", color: "color", size: "size", activeicon: "activeicon", activeiconbackground: "activeiconbackground", external: "external", slot: "slot" }, host: { properties: { "class.ids-block": "this.block" } }, ngImport: i0, template: "<ids-link \r\n [attr.underlined]=\"underlined ? '' : null\"\r\n [color]=\"color\"\r\n [size]=\"size\"\r\n [attr.activeicon]=\"activeicon ? true : null\"\r\n [activeiconbackground]=\"activeiconbackground\"\r\n [padding]=\"padding\"\r\n [outline]=\"outline\"\r\n [block]=\"block ? true : null\"\r\n [attr.slot]=\"slot\"\r\n >\r\n <ids-icon *ngIf=\"prependicon !== null\"\r\n slot=\"prepend-icon\" \r\n [attr.name]=\"prependicon?.name\"\r\n [attr.title]=\"prependicon?.title\" \r\n [attr.color]=\"prependicon?.color\" \r\n [attr.color2]=\"prependicon?.color2\" \r\n [attr.size]=\"prependicon?.size\" \r\n [attr.padding]=\"prependicon?.padding\" \r\n [attr.rotate]=\"prependicon?.rotate\" \r\n [attr.colorpreset]=\"prependicon?.colorpreset\" \r\n [attr.height]=\"prependicon?.height\" \r\n [attr.width]=\"prependicon?.width\"></ids-icon>\r\n <id-anchor *ngIf=\"link\" [link]=\"link\"></id-anchor>\r\n <ng-content *ngIf=\"!link\"></ng-content>\r\n <ids-icon *ngIf=\"appendicon !== null\" \r\n slot=\"append-icon\" \r\n [attr.name]=\"appendicon?.name\"\r\n [attr.title]=\"appendicon?.title\" \r\n [attr.color]=\"appendicon?.color\" \r\n [attr.color2]=\"appendicon?.color2\"\r\n [attr.size]=\"appendicon?.size\" \r\n [attr.padding]=\"appendicon?.padding\" \r\n [attr.rotate]=\"appendicon?.rotate\" \r\n [attr.colorpreset]=\"appendicon?.colorpreset\" \r\n [attr.height]=\"appendicon?.height\" \r\n [attr.width]=\"appendicon?.width\"></ids-icon>\r\n <ids-notification-badge \r\n *ngIf=\"notificationbadge !== null\"\r\n [attr.type]=\"notificationbadge.type\"\r\n [attr.size]=\"notificationbadge.size\">\r\n {{notificationbadge.value}}\r\n </ids-notification-badge>\r\n</ids-link>", styles: [":host { display: inline; }"], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1617
1626
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkComponent, decorators: [{
|
|
1618
1627
|
type: Component,
|
|
1619
1628
|
args: [{
|
|
1620
1629
|
selector: 'id-link',
|
|
1621
|
-
templateUrl: './link.component.html'
|
|
1630
|
+
templateUrl: './link.component.html',
|
|
1631
|
+
styles: [':host { display: inline; }']
|
|
1622
1632
|
}]
|
|
1623
1633
|
}], ctorParameters: function () { return []; }, propDecorators: { link: [{
|
|
1624
1634
|
type: Input
|
|
1625
|
-
}],
|
|
1635
|
+
}], notificationbadge: [{
|
|
1626
1636
|
type: Input
|
|
1627
|
-
}],
|
|
1637
|
+
}], prependicon: [{
|
|
1628
1638
|
type: Input
|
|
1629
|
-
}],
|
|
1639
|
+
}], appendicon: [{
|
|
1630
1640
|
type: Input
|
|
1631
1641
|
}], underlined: [{
|
|
1632
1642
|
type: Input
|
|
@@ -1643,9 +1653,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1643
1653
|
type: Input
|
|
1644
1654
|
}], size: [{
|
|
1645
1655
|
type: Input
|
|
1646
|
-
}],
|
|
1656
|
+
}], activeicon: [{
|
|
1647
1657
|
type: Input
|
|
1648
|
-
}],
|
|
1658
|
+
}], activeiconbackground: [{
|
|
1649
1659
|
type: Input
|
|
1650
1660
|
}], external: [{
|
|
1651
1661
|
type: Input
|
|
@@ -1656,15 +1666,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1656
1666
|
class IDLinkModule {
|
|
1657
1667
|
}
|
|
1658
1668
|
IDLinkModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1659
|
-
IDLinkModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, declarations: [IDLinkComponent], imports: [CommonModule
|
|
1660
|
-
IDLinkModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, imports: [[CommonModule
|
|
1669
|
+
IDLinkModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, declarations: [IDLinkComponent], imports: [CommonModule], exports: [IDLinkComponent] });
|
|
1670
|
+
IDLinkModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, imports: [[CommonModule]] });
|
|
1661
1671
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDLinkModule, decorators: [{
|
|
1662
1672
|
type: NgModule,
|
|
1663
1673
|
args: [{
|
|
1664
1674
|
declarations: [
|
|
1665
1675
|
IDLinkComponent
|
|
1666
1676
|
],
|
|
1667
|
-
imports: [CommonModule
|
|
1677
|
+
imports: [CommonModule],
|
|
1668
1678
|
exports: [
|
|
1669
1679
|
IDLinkComponent
|
|
1670
1680
|
],
|
|
@@ -1710,13 +1720,13 @@ class IDListItemComponent {
|
|
|
1710
1720
|
this.date = null;
|
|
1711
1721
|
this.year = null;
|
|
1712
1722
|
this.month = null;
|
|
1713
|
-
this.
|
|
1723
|
+
this.monthlabel = null;
|
|
1714
1724
|
this.day = null;
|
|
1715
|
-
this.
|
|
1725
|
+
this.showdatelabel = false;
|
|
1716
1726
|
}
|
|
1717
1727
|
}
|
|
1718
1728
|
IDListItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1719
|
-
IDListItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDListItemComponent, selector: "id-list-item", inputs: { headline: "headline", date: "date", year: "year", month: "month",
|
|
1729
|
+
IDListItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDListItemComponent, selector: "id-list-item", inputs: { headline: "headline", date: "date", year: "year", month: "month", monthlabel: "monthlabel", day: "day", showdatelabel: "showdatelabel" }, ngImport: i0, template: "<ids-list-item\r\n[headline]=\"headline\"\r\n[date]=\"date\"\r\n[year]=\"year\"\r\n[month]=\"month\"\r\n[monthlabel]=\"monthlabel\"\r\n[day]=\"day\"\r\n[showdatelabel]=\"showdatelabel\">\r\n <ng-content></ng-content>\r\n</ids-list-item>", encapsulation: i0.ViewEncapsulation.None });
|
|
1720
1730
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDListItemComponent, decorators: [{
|
|
1721
1731
|
type: Component,
|
|
1722
1732
|
args: [{
|
|
@@ -1732,11 +1742,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
1732
1742
|
type: Input
|
|
1733
1743
|
}], month: [{
|
|
1734
1744
|
type: Input
|
|
1735
|
-
}],
|
|
1745
|
+
}], monthlabel: [{
|
|
1736
1746
|
type: Input
|
|
1737
1747
|
}], day: [{
|
|
1738
1748
|
type: Input
|
|
1739
|
-
}],
|
|
1749
|
+
}], showdatelabel: [{
|
|
1740
1750
|
type: Input
|
|
1741
1751
|
}] } });
|
|
1742
1752
|
|
|
@@ -1889,7 +1899,7 @@ class IDMobileMenuComponent {
|
|
|
1889
1899
|
}
|
|
1890
1900
|
}
|
|
1891
1901
|
IDMobileMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDMobileMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1892
|
-
IDMobileMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDMobileMenuComponent, selector: "id-mobile-menu", inputs: { type: "type", variation: "variation", items: "items" }, ngImport: i0, template: "<ids-mobile-menu \n [type]=\"type\"\n [variation]=\"variation\">\n <ids-mobile-menu-item *ngFor=\"let item of items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [variation]=\"variation\"\n [active]=\"item?.active\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n [variation]=\"variation\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n [variation]=\"variation\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\n [attr.type]=\"type\"\n [headline]=\"item?.headline\"\n [expanded]=\"item?.expanded\"\n [secondary]=\"item?.secondary\"\n [active]=\"item?.active\"\n [variation]=\"variation\"\n (didToggleExpansion)=\"item.togleExpansion()\">\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n </ids-mobile-menu-item>\n</ids-mobile-menu>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1902
|
+
IDMobileMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDMobileMenuComponent, selector: "id-mobile-menu", inputs: { type: "type", variation: "variation", items: "items" }, ngImport: i0, template: "<ids-mobile-menu \r\n [type]=\"type\"\r\n [variation]=\"variation\">\r\n <ids-mobile-menu-item *ngFor=\"let item of items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [variation]=\"variation\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n [variation]=\"variation\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n [variation]=\"variation\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n [variation]=\"variation\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n</ids-mobile-menu>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
1893
1903
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDMobileMenuComponent, decorators: [{
|
|
1894
1904
|
type: Component,
|
|
1895
1905
|
args: [{
|
|
@@ -1960,23 +1970,23 @@ class IDMobileMenuItem {
|
|
|
1960
1970
|
|
|
1961
1971
|
class IDPopoverComponent {
|
|
1962
1972
|
constructor() {
|
|
1963
|
-
this.
|
|
1964
|
-
this.
|
|
1973
|
+
this.maxwidth = '260px';
|
|
1974
|
+
this.maxheight = '260px';
|
|
1965
1975
|
this.cathegory = undefined;
|
|
1966
1976
|
this.position = 'bottom';
|
|
1967
1977
|
}
|
|
1968
1978
|
}
|
|
1969
1979
|
IDPopoverComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDPopoverComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1970
|
-
IDPopoverComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDPopoverComponent, selector: "id-popover", inputs: {
|
|
1980
|
+
IDPopoverComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDPopoverComponent, selector: "id-popover", inputs: { maxwidth: "maxwidth", maxheight: "maxheight", cathegory: "cathegory", position: "position" }, ngImport: i0, template: "<ids-popover \r\n [attr.cathegory]=\"cathegory\"\r\n [attr.position]=\"position\">\r\n <ng-content></ng-content>\r\n <ids-popover-content \r\n [attr.maxwidth]=\"maxwidth\"\r\n [attr.maxheight]=\"maxheight\">\r\n <ng-content select=\"[popover-content]\"></ng-content>\r\n </ids-popover-content>\r\n</ids-popover>" });
|
|
1971
1981
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDPopoverComponent, decorators: [{
|
|
1972
1982
|
type: Component,
|
|
1973
1983
|
args: [{
|
|
1974
1984
|
selector: 'id-popover',
|
|
1975
1985
|
templateUrl: './popover.component.html',
|
|
1976
1986
|
}]
|
|
1977
|
-
}], ctorParameters: function () { return []; }, propDecorators: {
|
|
1987
|
+
}], ctorParameters: function () { return []; }, propDecorators: { maxwidth: [{
|
|
1978
1988
|
type: Input
|
|
1979
|
-
}],
|
|
1989
|
+
}], maxheight: [{
|
|
1980
1990
|
type: Input
|
|
1981
1991
|
}], cathegory: [{
|
|
1982
1992
|
type: Input
|
|
@@ -2046,15 +2056,15 @@ class IDFooterComponent {
|
|
|
2046
2056
|
this.headline = '';
|
|
2047
2057
|
this.servicename = '';
|
|
2048
2058
|
this.subheadline = '';
|
|
2049
|
-
this.cols =
|
|
2059
|
+
this.cols = 3;
|
|
2050
2060
|
this.linkcol1 = '2';
|
|
2051
2061
|
this.linkcol2 = '2';
|
|
2052
2062
|
this.linkcol3 = '2';
|
|
2053
|
-
this.
|
|
2063
|
+
this.mobilemenuitems = undefined;
|
|
2054
2064
|
}
|
|
2055
2065
|
}
|
|
2056
2066
|
IDFooterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2057
|
-
IDFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDFooterComponent, selector: "id-footer", inputs: { type: "type", headline: "headline", servicename: "servicename", subheadline: "subheadline", cols: "cols", linkcol1: "linkcol1", linkcol2: "linkcol2", linkcol3: "linkcol3",
|
|
2067
|
+
IDFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDFooterComponent, selector: "id-footer", inputs: { type: "type", headline: "headline", servicename: "servicename", subheadline: "subheadline", cols: "cols", linkcol1: "linkcol1", linkcol2: "linkcol2", linkcol3: "linkcol3", mobilemenuitems: "mobilemenuitems" }, ngImport: i0, template: "<ids-footer \r\n [type]=\"type\"\r\n [headline]=\"headline\"\r\n [subheadline]=\"subheadline\"\r\n [servicename]=\"servicename\"\r\n [cols]=\"cols\"\r\n [linkcol1]=\"linkcol1\"\r\n [linkcol2]=\"linkcol2\"\r\n [linkcol3]=\"linkcol3\">\r\n <ng-content></ng-content>\r\n <ids-mobile-menu \r\n slot=\"mobile-menu\"\r\n variation=\"2\"\r\n *ngIf=\"mobilemenuitems\"\r\n [type]=\"type\">\r\n <ids-mobile-menu-item *ngFor=\"let item of mobilemenuitems\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu>\r\n</ids-footer>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
2058
2068
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDFooterComponent, decorators: [{
|
|
2059
2069
|
type: Component,
|
|
2060
2070
|
args: [{
|
|
@@ -2077,7 +2087,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
2077
2087
|
type: Input
|
|
2078
2088
|
}], linkcol3: [{
|
|
2079
2089
|
type: Input
|
|
2080
|
-
}],
|
|
2090
|
+
}], mobilemenuitems: [{
|
|
2081
2091
|
type: Input
|
|
2082
2092
|
}] } });
|
|
2083
2093
|
|
|
@@ -2103,20 +2113,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
2103
2113
|
class IDHeaderComponent {
|
|
2104
2114
|
constructor() {
|
|
2105
2115
|
this.type = '';
|
|
2106
|
-
this.
|
|
2107
|
-
this.
|
|
2116
|
+
this.hideregionpicker = false;
|
|
2117
|
+
this.fluid = false;
|
|
2108
2118
|
this.unresponsive = false;
|
|
2109
|
-
this.
|
|
2110
|
-
this.
|
|
2111
|
-
this.
|
|
2112
|
-
this.
|
|
2113
|
-
this.
|
|
2114
|
-
this.
|
|
2115
|
-
this.
|
|
2119
|
+
this.hidebrand = false;
|
|
2120
|
+
this.logohref = '';
|
|
2121
|
+
this.pickregiontext = 'Välj region';
|
|
2122
|
+
this.srlogolabel = 'Logotyp';
|
|
2123
|
+
this.avatarmaxwidth = '';
|
|
2124
|
+
this.persistentmobilemenu = false;
|
|
2125
|
+
this.onDidToggleRegion = new EventEmitter();
|
|
2116
2126
|
}
|
|
2117
2127
|
}
|
|
2118
2128
|
IDHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2119
|
-
IDHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDHeaderComponent, selector: "id-header", inputs: { type: "type",
|
|
2129
|
+
IDHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDHeaderComponent, selector: "id-header", inputs: { type: "type", brandtext: "brandtext", brandtexttop: "brandtexttop", brandtextbottom: "brandtextbottom", hideregionpicker: "hideregionpicker", fluid: "fluid", unresponsive: "unresponsive", hidebrand: "hidebrand", logohref: "logohref", pickregiontext: "pickregiontext", regionicon: "regionicon", regionicontitle: "regionicontitle", srlogolabel: "srlogolabel", items: "items", avatar: "avatar", avatarmaxwidth: "avatarmaxwidth", navitems: "navitems", persistentmobilemenu: "persistentmobilemenu", mobileitems: "mobileitems", mobilemenuitems: "mobilemenuitems" }, outputs: { onDidToggleRegion: "onDidToggleRegion" }, ngImport: i0, template: "<ids-header \r\n [attr.type]=\"type\"\r\n [attr.fluid]=\"fluid ? true : null\"\r\n [attr.brandtext]=\"brandtext\"\r\n [attr.brandtexttop]=\"brandtexttop\"\r\n [attr.brandtextbottom]=\"brandtextbottom\"\r\n [unresponsive]=\"unresponsive ? true : null\"\r\n [hideregionpicker]=\"hideregionpicker ? true : null\"\r\n [logohref]=\"logohref\"\r\n [hidebrand]=\"hidebrand\"\r\n [pickregiontext]=\"pickregiontext\"\r\n [srlogolabel]=\"srlogolabel\"\r\n (didToggleRegion)=\"onDidToggleRegion.emit(true)\">\r\n <ids-icon *ngIf=\"regionicon\" slot=\"region\" [name]=\"regionicon\" [title]=\"regionicontitle\"></ids-icon>\r\n <ids-header-item *ngFor=\"let item of items\" \r\n [attr.type]=\"type\"\r\n [mobile]=\"item.mobile\"\r\n [attr.separatorleft]=\"item.separatorLeft\">\r\n <ids-icon [name]=\"item.iconName\"></ids-icon>\r\n <id-anchor [link]=\"item.link\"></id-anchor>\r\n </ids-header-item>\r\n\r\n <ids-header-nav slot=\"header-nav\" *ngIf=\"navitems || mobileitems\" [attr.type]=\"type\">\r\n <ids-header-nav-item *ngFor=\"let navitem of navitems; let i = index\" [attr.type]=\"type\" [label]=\"navitem.label\" [link]=\"navitem.link\" [active]=\"navitem.active\">\r\n <id-anchor *ngIf=\"navitem.link\" [link]=\"navitem.link\"></id-anchor>\r\n <ids-link slot=\"col-1\" [block]=\"true\" *ngFor=\"let link of navitem.col1\">\r\n <ids-icon *ngIf=\"type.indexOf('1177')\" name=\"arrow\"></ids-icon>\r\n <ids-icon *ngIf=\"type.indexOf('inera')\" color=\"var(--color-main)\" name=\"arrow\"></ids-icon>\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-link> \r\n <ids-link slot=\"col-2\" [block]=\"true\" *ngFor=\"let link of navitem.col2\">\r\n <ids-icon *ngIf=\"type.indexOf('1177')\" name=\"arrow\"></ids-icon>\r\n <ids-icon *ngIf=\"type.indexOf('inera')\" color=\"var(--color-main)\" name=\"arrow\"></ids-icon>\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-link>\r\n <ids-link slot=\"col-3\" [block]=\"true\" *ngFor=\"let link of navitem.col3\">\r\n <ids-icon *ngIf=\"type.indexOf('1177')\" name=\"arrow\"></ids-icon>\r\n <ids-icon *ngIf=\"type.indexOf('inera')\" color=\"var(--color-main)\" name=\"arrow\"></ids-icon>\r\n <id-anchor [link]=\"link\"></id-anchor>\r\n </ids-link>\r\n <div slot=\"col-4\">\r\n <h2 style=\"margin-bottom: 15px; color: var(--header-nav-item-heading_color);\" class=\"ids-heading-2\">{{navitem.headline}}</h2>\r\n <p class=\"body\">{{navitem.paragraph}}</p>\r\n <id-anchor [link]=\"navitem.paragraphLink\"></id-anchor>\r\n </div>\r\n </ids-header-nav-item>\r\n <ids-header-mobile-item [attr.type]=\"type\" *ngFor=\"let mobileItem of mobileitems\">\r\n <ids-icon [name]=\"mobileItem.iconName\"></ids-icon>\r\n <id-anchor [link]=\"mobileItem.link\"></id-anchor>\r\n </ids-header-mobile-item>\r\n \r\n <ids-header-mobile-menu \r\n [attr.persistent]=\"persistentmobilemenu ? true : null\"\r\n [attr.type]=\"type\" *ngIf=\"mobilemenuitems\">\r\n <ids-mobile-menu-item [attr.type]=\"type\" *ngFor=\"let item of mobilemenuitems\"\r\n slot=\"menu-link\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item [attr.type]=\"type\" *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item [attr.type]=\"type\" *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item [attr.type]=\"type\" *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n [secondary]=\"item?.secondary\"\r\n [active]=\"item?.active\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-header-mobile-menu>\r\n </ids-header-nav>\r\n\r\n <ids-header-avatar [maxwidth]=\"avatar.maxWidth\" [attr.type]=\"type\" *ngIf=\"avatar\" [unit]=\"avatar.unit\" [username]=\"avatar.username\">\r\n <ng-content select=\"[avatar]\"></ng-content>\r\n <id-anchor [link]=\"avatar.linkLeft\" slot=\"avatar-left\"></id-anchor>\r\n <id-anchor [link]=\"avatar.linkRight\" slot=\"avatar-right\"></id-anchor>\r\n </ids-header-avatar>\r\n\r\n <ng-content></ng-content>\r\n\r\n <ids-header-mobile-menu \r\n [attr.persistent]=\"persistentmobilemenu ? true : null\"\r\n *ngIf=\"type !== '1177' && (mobilemenuitems || avatar)\"\r\n [type]=\"type\">\r\n <ids-mobile-menu-item *ngFor=\"let item of mobilemenuitems\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n <ids-mobile-menu-item *ngFor=\"let item of item.items\"\r\n [attr.type]=\"type\"\r\n [headline]=\"item?.headline\"\r\n [expanded]=\"item?.expanded\"\r\n (didToggleExpansion)=\"item.togleExpansion()\">\r\n <id-anchor *ngIf=\"item.link\" [link]=\"item.link\"></id-anchor>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n </ids-mobile-menu-item>\r\n <ids-mobile-menu-avatar *ngIf=\"avatar\" [username]=\"avatar.username\" [unit]=\"avatar.unit\">\r\n <ng-content select=\"[avatarMobile]\"></ng-content>\r\n <id-anchor style=\"color: var(--mobile-menu-avatar-link)\" *ngIf=\"avatar.linkMobile\" [link]=\"avatar.linkMobile\"></id-anchor>\r\n </ids-mobile-menu-avatar>\r\n </ids-header-mobile-menu>\r\n</ids-header>", components: [{ type: IDAnchorComponent, selector: "id-anchor", inputs: ["link", "contextClasses"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
2120
2130
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderComponent, decorators: [{
|
|
2121
2131
|
type: Component,
|
|
2122
2132
|
args: [{
|
|
@@ -2125,53 +2135,53 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
2125
2135
|
}]
|
|
2126
2136
|
}], propDecorators: { type: [{
|
|
2127
2137
|
type: Input
|
|
2128
|
-
}],
|
|
2138
|
+
}], brandtext: [{
|
|
2129
2139
|
type: Input
|
|
2130
|
-
}],
|
|
2140
|
+
}], brandtexttop: [{
|
|
2131
2141
|
type: Input
|
|
2132
|
-
}],
|
|
2142
|
+
}], brandtextbottom: [{
|
|
2133
2143
|
type: Input
|
|
2134
|
-
}],
|
|
2144
|
+
}], hideregionpicker: [{
|
|
2135
2145
|
type: Input
|
|
2136
|
-
}],
|
|
2146
|
+
}], fluid: [{
|
|
2137
2147
|
type: Input
|
|
2138
2148
|
}], unresponsive: [{
|
|
2139
2149
|
type: Input
|
|
2140
|
-
}],
|
|
2150
|
+
}], hidebrand: [{
|
|
2141
2151
|
type: Input
|
|
2142
|
-
}],
|
|
2152
|
+
}], logohref: [{
|
|
2143
2153
|
type: Input
|
|
2144
|
-
}],
|
|
2154
|
+
}], pickregiontext: [{
|
|
2145
2155
|
type: Input
|
|
2146
|
-
}],
|
|
2156
|
+
}], regionicon: [{
|
|
2147
2157
|
type: Input
|
|
2148
|
-
}],
|
|
2158
|
+
}], regionicontitle: [{
|
|
2149
2159
|
type: Input
|
|
2150
|
-
}],
|
|
2160
|
+
}], srlogolabel: [{
|
|
2151
2161
|
type: Input
|
|
2152
2162
|
}], items: [{
|
|
2153
2163
|
type: Input
|
|
2154
2164
|
}], avatar: [{
|
|
2155
2165
|
type: Input
|
|
2156
|
-
}],
|
|
2166
|
+
}], avatarmaxwidth: [{
|
|
2157
2167
|
type: Input
|
|
2158
|
-
}],
|
|
2168
|
+
}], navitems: [{
|
|
2159
2169
|
type: Input
|
|
2160
|
-
}],
|
|
2170
|
+
}], persistentmobilemenu: [{
|
|
2161
2171
|
type: Input
|
|
2162
|
-
}],
|
|
2172
|
+
}], mobileitems: [{
|
|
2163
2173
|
type: Input
|
|
2164
|
-
}],
|
|
2174
|
+
}], mobilemenuitems: [{
|
|
2165
2175
|
type: Input
|
|
2166
|
-
}],
|
|
2176
|
+
}], onDidToggleRegion: [{
|
|
2167
2177
|
type: Output
|
|
2168
2178
|
}] } });
|
|
2169
2179
|
|
|
2170
2180
|
class IDHeaderModule {
|
|
2171
2181
|
}
|
|
2172
2182
|
IDHeaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2173
|
-
IDHeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, declarations: [IDHeaderComponent], imports: [CommonModule, IDAnchorModule], exports: [IDHeaderComponent] });
|
|
2174
|
-
IDHeaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, imports: [[CommonModule, IDAnchorModule]] });
|
|
2183
|
+
IDHeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, declarations: [IDHeaderComponent], imports: [CommonModule, IDAnchorModule, IDIconModule], exports: [IDHeaderComponent] });
|
|
2184
|
+
IDHeaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, imports: [[CommonModule, IDAnchorModule, IDIconModule]] });
|
|
2175
2185
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDHeaderModule, decorators: [{
|
|
2176
2186
|
type: NgModule,
|
|
2177
2187
|
args: [{
|
|
@@ -2181,7 +2191,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
2181
2191
|
exports: [
|
|
2182
2192
|
IDHeaderComponent
|
|
2183
2193
|
],
|
|
2184
|
-
imports: [CommonModule, IDAnchorModule],
|
|
2194
|
+
imports: [CommonModule, IDAnchorModule, IDIconModule],
|
|
2185
2195
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
2186
2196
|
}]
|
|
2187
2197
|
}] });
|
|
@@ -2211,6 +2221,9 @@ class IDHeaderAvatar {
|
|
|
2211
2221
|
get username() {
|
|
2212
2222
|
return this._props.username;
|
|
2213
2223
|
}
|
|
2224
|
+
get maxWidth() {
|
|
2225
|
+
return this._props.maxWidth;
|
|
2226
|
+
}
|
|
2214
2227
|
get linkLeft() {
|
|
2215
2228
|
return this._props.linkLeft;
|
|
2216
2229
|
}
|
|
@@ -2350,19 +2363,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
2350
2363
|
class IDTabPanelComponent {
|
|
2351
2364
|
constructor(elementRef) {
|
|
2352
2365
|
this.elementRef = elementRef;
|
|
2353
|
-
this
|
|
2366
|
+
this.nofocus = undefined;
|
|
2354
2367
|
elementRef.nativeElement.setAttribute('slot', 'tab-panel');
|
|
2355
2368
|
}
|
|
2356
2369
|
}
|
|
2357
2370
|
IDTabPanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabPanelComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2358
|
-
IDTabPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabPanelComponent, selector: "id-tab-panel", inputs: {
|
|
2371
|
+
IDTabPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabPanelComponent, selector: "id-tab-panel", inputs: { nofocus: "nofocus" }, ngImport: i0, template: "<ids-tab-panel [attr.nofocus]=\"nofocus ? true : null\">\r\n <ng-content></ng-content>\r\n</ids-tab-panel>" });
|
|
2359
2372
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabPanelComponent, decorators: [{
|
|
2360
2373
|
type: Component,
|
|
2361
2374
|
args: [{
|
|
2362
2375
|
selector: 'id-tab-panel',
|
|
2363
2376
|
templateUrl: './tab-panel.component.html'
|
|
2364
2377
|
}]
|
|
2365
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: {
|
|
2378
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { nofocus: [{
|
|
2366
2379
|
type: Input
|
|
2367
2380
|
}] } });
|
|
2368
2381
|
|
|
@@ -2372,13 +2385,14 @@ class IDTabComponent {
|
|
|
2372
2385
|
this.notices = 0;
|
|
2373
2386
|
this.notifications = 0;
|
|
2374
2387
|
this.label = '';
|
|
2375
|
-
this.icon = '';
|
|
2376
2388
|
this.selected = false;
|
|
2389
|
+
// Internal icon
|
|
2390
|
+
this.icon = undefined;
|
|
2377
2391
|
elementRef.nativeElement.setAttribute('slot', 'tab');
|
|
2378
2392
|
}
|
|
2379
2393
|
}
|
|
2380
2394
|
IDTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2381
|
-
IDTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabComponent, selector: "id-tab", inputs: { notices: "notices", notifications: "notifications", label: "label",
|
|
2395
|
+
IDTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTabComponent, selector: "id-tab", inputs: { notices: "notices", notifications: "notifications", label: "label", selected: "selected", icon: "icon" }, ngImport: i0, template: "<ids-tab\r\n [notices]=\"notices === 0 ? null : notices\"\r\n [notifications]=\"notifications === 0 ? null : notifications\"\r\n [label]=\"label\"\r\n [attr.selected]=\"selected ? '':null\">\r\n <ids-icon *ngIf=\"icon\"\r\n slot=\"icon\" \r\n [attr.name]=\"icon?.name\"\r\n [attr.title]=\"icon?.title\" \r\n [attr.color]=\"icon?.color\" \r\n [attr.color2]=\"icon?.color2\" \r\n [attr.size]=\"icon?.size\" \r\n [attr.padding]=\"icon?.padding\" \r\n [attr.rotate]=\"icon?.rotate\" \r\n [attr.colorpreset]=\"icon?.colorpreset\" \r\n [attr.height]=\"icon?.height\" \r\n [attr.width]=\"icon?.width\"></ids-icon>\r\n <ng-content></ng-content>\r\n</ids-tab>", directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
2382
2396
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTabComponent, decorators: [{
|
|
2383
2397
|
type: Component,
|
|
2384
2398
|
args: [{
|
|
@@ -2391,10 +2405,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
2391
2405
|
type: Input
|
|
2392
2406
|
}], label: [{
|
|
2393
2407
|
type: Input
|
|
2394
|
-
}], icon: [{
|
|
2395
|
-
type: Input
|
|
2396
2408
|
}], selected: [{
|
|
2397
2409
|
type: Input
|
|
2410
|
+
}], icon: [{
|
|
2411
|
+
type: Input
|
|
2398
2412
|
}] } });
|
|
2399
2413
|
|
|
2400
2414
|
class IDTabsModule {
|
|
@@ -2428,13 +2442,13 @@ class IDTagComponent {
|
|
|
2428
2442
|
constructor() {
|
|
2429
2443
|
this.clickable = false;
|
|
2430
2444
|
this.closeable = false;
|
|
2431
|
-
this.
|
|
2432
|
-
this.
|
|
2433
|
-
this.
|
|
2445
|
+
this.srcloselabel = '';
|
|
2446
|
+
this.onClicked = new EventEmitter();
|
|
2447
|
+
this.onClosed = new EventEmitter();
|
|
2434
2448
|
}
|
|
2435
2449
|
}
|
|
2436
2450
|
IDTagComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTagComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2437
|
-
IDTagComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTagComponent, selector: "id-tag", inputs: { clickable: "clickable", closeable: "closeable",
|
|
2451
|
+
IDTagComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTagComponent, selector: "id-tag", inputs: { clickable: "clickable", closeable: "closeable", srcloselabel: "srcloselabel" }, outputs: { onClicked: "onClicked", onClosed: "onClosed" }, ngImport: i0, template: "<ids-tag\r\n [clickable]=\"clickable ? true : null\"\r\n [closeable]=\"closeable ? true : null\"\r\n [srcloselabel]=\"srcloselabel\"\r\n (clicked)=\"onClicked.emit(true)\"\r\n (closed)=\"onClosed.emit(true)\">\r\n <ng-content></ng-content>\r\n</ids-tag>" });
|
|
2438
2452
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTagComponent, decorators: [{
|
|
2439
2453
|
type: Component,
|
|
2440
2454
|
args: [{
|
|
@@ -2445,11 +2459,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
2445
2459
|
type: Input
|
|
2446
2460
|
}], closeable: [{
|
|
2447
2461
|
type: Input
|
|
2448
|
-
}],
|
|
2462
|
+
}], srcloselabel: [{
|
|
2449
2463
|
type: Input
|
|
2450
|
-
}],
|
|
2464
|
+
}], onClicked: [{
|
|
2451
2465
|
type: Output
|
|
2452
|
-
}],
|
|
2466
|
+
}], onClosed: [{
|
|
2453
2467
|
type: Output
|
|
2454
2468
|
}] } });
|
|
2455
2469
|
|
|
@@ -2536,7 +2550,223 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
2536
2550
|
|
|
2537
2551
|
/*
|
|
2538
2552
|
* Public API Surface of ids-angular
|
|
2539
|
-
*/
|
|
2553
|
+
*/
|
|
2554
|
+
/* Icons to be included when needed
|
|
2555
|
+
|
|
2556
|
+
export * from './lib/components/icons/1177/icon-1177.module';
|
|
2557
|
+
export * from './lib/components/icons/agent/icon-agent.module';
|
|
2558
|
+
export * from './lib/components/icons/arrow/icon-arrow.module';
|
|
2559
|
+
export * from './lib/components/icons/attention/icon-attention.module';
|
|
2560
|
+
export * from './lib/components/icons/blekinge/icon-blekinge.module';
|
|
2561
|
+
export * from './lib/components/icons/bookmark/icon-bookmark.module';
|
|
2562
|
+
export * from './lib/components/icons/calendar/icon-calendar.module';
|
|
2563
|
+
export * from './lib/components/icons/call/icon-call.module';
|
|
2564
|
+
export * from './lib/components/icons/call-active/icon-call-active.module';
|
|
2565
|
+
export * from './lib/components/icons/camera-off/icon-camera-off.module';
|
|
2566
|
+
export * from './lib/components/icons/camera-on/icon-camera-on.module';
|
|
2567
|
+
export * from './lib/components/icons/camera-switch/icon-camera-switch.module';
|
|
2568
|
+
export * from './lib/components/icons/chart-bar/icon-chart-bar.module';
|
|
2569
|
+
export * from './lib/components/icons/chart-line/icon-chart-line.module';
|
|
2570
|
+
export * from './lib/components/icons/check/icon-check.module';
|
|
2571
|
+
export * from './lib/components/icons/chevron/icon-chevron.module';
|
|
2572
|
+
export * from './lib/components/icons/chevron-bold/icon-chevron-bold.module';
|
|
2573
|
+
export * from './lib/components/icons/clipboard/icon-clipboard.module';
|
|
2574
|
+
export * from './lib/components/icons/clipboard-cross/icon-clipboard-cross.module';
|
|
2575
|
+
export * from './lib/components/icons/clipboard-text/icon-clipboard-text.module';
|
|
2576
|
+
export * from './lib/components/icons/clock/icon-clock.module';
|
|
2577
|
+
export * from './lib/components/icons/close/icon-close.module';
|
|
2578
|
+
export * from './lib/components/icons/close-bold/icon-close-bold.module';
|
|
2579
|
+
export * from './lib/components/icons/cog/icon-cog.module';
|
|
2580
|
+
export * from './lib/components/icons/computer/icon-computer.module';
|
|
2581
|
+
export * from './lib/components/icons/computer-inera/icon-computer-inera.module';
|
|
2582
|
+
export * from './lib/components/icons/copy-file/icon-copy-file.module';
|
|
2583
|
+
export * from './lib/components/icons/copy-link/icon-copy-link.module';
|
|
2584
|
+
export * from './lib/components/icons/doctors-bag/icon-doctors-bag.module';
|
|
2585
|
+
export * from './lib/components/icons/drag-n-drop/icon-drag-n-drop.module';
|
|
2586
|
+
export * from './lib/components/icons/ear-hearing/icon-ear-hearing.module';
|
|
2587
|
+
export * from './lib/components/icons/edit/icon-edit.module';
|
|
2588
|
+
export * from './lib/components/icons/email/icon-email.module';
|
|
2589
|
+
export * from './lib/components/icons/expand/icon-expand.module';
|
|
2590
|
+
export * from './lib/components/icons/external/icon-external.module';
|
|
2591
|
+
export * from './lib/components/icons/facebook/icon-facebook.module';
|
|
2592
|
+
export * from './lib/components/icons/file-excel/icon-file-excel.module';
|
|
2593
|
+
export * from './lib/components/icons/file-other/icon-file-other.module';
|
|
2594
|
+
export * from './lib/components/icons/file-pdf/icon-file-pdf.module';
|
|
2595
|
+
export * from './lib/components/icons/file-picture/icon-file-picture.module';
|
|
2596
|
+
export * from './lib/components/icons/file-powerpoint/icon-file-powerpoint.module';
|
|
2597
|
+
export * from './lib/components/icons/file-word/icon-file-word.module';
|
|
2598
|
+
export * from './lib/components/icons/find-care/icon-find-care.module';
|
|
2599
|
+
export * from './lib/components/icons/find-region/icon-find-region.module';
|
|
2600
|
+
export * from './lib/components/icons/gotland/icon-gotland.module';
|
|
2601
|
+
export * from './lib/components/icons/halland/icon-halland.module';
|
|
2602
|
+
export * from './lib/components/icons/house/icon-house.module';
|
|
2603
|
+
export * from './lib/components/icons/id-card/icon-id-card.module';
|
|
2604
|
+
export * from './lib/components/icons/id-card-locked/icon-id-card-locked.module';
|
|
2605
|
+
export * from './lib/components/icons/image/icon-image.module';
|
|
2606
|
+
export * from './lib/components/icons/inera/icon-inera.module';
|
|
2607
|
+
export * from './lib/components/icons/inera-legacy/icon-inera-legacy.module';
|
|
2608
|
+
export * from './lib/components/icons/information/icon-information.module';
|
|
2609
|
+
export * from './lib/components/icons/jamtland-harjedalen/icon-jamtland-harjedalen.module';
|
|
2610
|
+
export * from './lib/components/icons/jonkoping/icon-jonkoping.module';
|
|
2611
|
+
export * from './lib/components/icons/kalmar/icon-kalmar.module';
|
|
2612
|
+
export * from './lib/components/icons/kronoberg/icon-kronoberg.module';
|
|
2613
|
+
export * from './lib/components/icons/lightbulb/icon-lightbulb.module';
|
|
2614
|
+
export * from './lib/components/icons/linkedin/icon-linkedin.module';
|
|
2615
|
+
export * from './lib/components/icons/list/icon-list.module';
|
|
2616
|
+
export * from './lib/components/icons/lock/icon-lock.module';
|
|
2617
|
+
export * from './lib/components/icons/lock-open/icon-lock-open.module';
|
|
2618
|
+
export * from './lib/components/icons/log/icon-log.module';
|
|
2619
|
+
export * from './lib/components/icons/log-locked/icon-log-locked.module';
|
|
2620
|
+
export * from './lib/components/icons/menu/icon-menu.module';
|
|
2621
|
+
export * from './lib/components/icons/minus/icon-minus.module';
|
|
2622
|
+
export * from './lib/components/icons/norrbotten/icon-norrbotten.module';
|
|
2623
|
+
export * from './lib/components/icons/office-building/icon-office-building.module';
|
|
2624
|
+
export * from './lib/components/icons/orebro/icon-orebro.module';
|
|
2625
|
+
export * from './lib/components/icons/organization/icon-organization.module';
|
|
2626
|
+
export * from './lib/components/icons/ostergotland/icon-ostergotland.module';
|
|
2627
|
+
export * from './lib/components/icons/plus/icon-plus.module';
|
|
2628
|
+
export * from './lib/components/icons/print/icon-print.module';
|
|
2629
|
+
export * from './lib/components/icons/question/icon-question.module';
|
|
2630
|
+
export * from './lib/components/icons/reload/icon-reload.module';
|
|
2631
|
+
export * from './lib/components/icons/reply/icon-reply.module';
|
|
2632
|
+
export * from './lib/components/icons/search-inera/icon-search-inera.module';
|
|
2633
|
+
export * from './lib/components/icons/search/icon-search.module';
|
|
2634
|
+
export * from './lib/components/icons/shield-locked-primary/icon-shield-locked-primary.module';
|
|
2635
|
+
export * from './lib/components/icons/shield-locked/icon-shield-locked.module';
|
|
2636
|
+
export * from './lib/components/icons/skane/icon-skane.module';
|
|
2637
|
+
export * from './lib/components/icons/sormland/icon-sormland.module';
|
|
2638
|
+
export * from './lib/components/icons/star-filled/icon-star-filled.module';
|
|
2639
|
+
export * from './lib/components/icons/star/icon-star.module';
|
|
2640
|
+
export * from './lib/components/icons/stockholm/icon-stockholm.module';
|
|
2641
|
+
export * from './lib/components/icons/success/icon-success.module';
|
|
2642
|
+
export * from './lib/components/icons/swap/icon-swap.module';
|
|
2643
|
+
export * from './lib/components/icons/telephone/icon-telephone.module';
|
|
2644
|
+
export * from './lib/components/icons/test-tube-analyze/icon-test-tube-analyze.module';
|
|
2645
|
+
export * from './lib/components/icons/test-tube-empty/icon-test-tube-empty.module';
|
|
2646
|
+
export * from './lib/components/icons/test-tube/icon-test-tube.module';
|
|
2647
|
+
export * from './lib/components/icons/toggle-card/icon-toggle-card.module';
|
|
2648
|
+
export * from './lib/components/icons/toggle-list/icon-toggle-list.module';
|
|
2649
|
+
export * from './lib/components/icons/twitter/icon-twitter.module';
|
|
2650
|
+
export * from './lib/components/icons/uppsala/icon-uppsala.module';
|
|
2651
|
+
export * from './lib/components/icons/user/icon-user.module';
|
|
2652
|
+
export * from './lib/components/icons/vasterbotten/icon-vasterbotten.module';
|
|
2653
|
+
export * from './lib/components/icons/vasternorrland/icon-vasternorrland.module';
|
|
2654
|
+
export * from './lib/components/icons/vastmanland/icon-vastmanland.module';
|
|
2655
|
+
export * from './lib/components/icons/vastra-gotaland/icon-vastra-gotaland.module';
|
|
2656
|
+
export * from './lib/components/icons/video-off/icon-video-off.module';
|
|
2657
|
+
export * from './lib/components/icons/video-on/icon-video-on.module';
|
|
2658
|
+
export * from './lib/components/icons/video-switch/icon-video-switch.module';
|
|
2659
|
+
export * from './lib/components/icons/visibility-off/icon-visibility-off.module';
|
|
2660
|
+
export * from './lib/components/icons/visibility/icon-visibility.module';
|
|
2661
|
+
export * from './lib/components/icons/warning/icon-warning.module';
|
|
2662
|
+
export * from './lib/components/icons/1177/icon-1177.component';
|
|
2663
|
+
export * from './lib/components/icons/agent/icon-agent.component';
|
|
2664
|
+
export * from './lib/components/icons/arrow/icon-arrow.component';
|
|
2665
|
+
export * from './lib/components/icons/attention/icon-attention.component';
|
|
2666
|
+
export * from './lib/components/icons/blekinge/icon-blekinge.component';
|
|
2667
|
+
export * from './lib/components/icons/bookmark/icon-bookmark.component';
|
|
2668
|
+
export * from './lib/components/icons/calendar/icon-calendar.component';
|
|
2669
|
+
export * from './lib/components/icons/call/icon-call.component';
|
|
2670
|
+
export * from './lib/components/icons/call-active/icon-call-active.component';
|
|
2671
|
+
export * from './lib/components/icons/camera-off/icon-camera-off.component';
|
|
2672
|
+
export * from './lib/components/icons/camera-on/icon-camera-on.component';
|
|
2673
|
+
export * from './lib/components/icons/camera-switch/icon-camera-switch.component';
|
|
2674
|
+
export * from './lib/components/icons/chart-bar/icon-chart-bar.component';
|
|
2675
|
+
export * from './lib/components/icons/chart-line/icon-chart-line.component';
|
|
2676
|
+
export * from './lib/components/icons/check/icon-check.component';
|
|
2677
|
+
export * from './lib/components/icons/chevron/icon-chevron.component';
|
|
2678
|
+
export * from './lib/components/icons/chevron-bold/icon-chevron-bold.component';
|
|
2679
|
+
export * from './lib/components/icons/clipboard/icon-clipboard.component';
|
|
2680
|
+
export * from './lib/components/icons/clipboard-cross/icon-clipboard-cross.component';
|
|
2681
|
+
export * from './lib/components/icons/clipboard-text/icon-clipboard-text.component';
|
|
2682
|
+
export * from './lib/components/icons/clock/icon-clock.component';
|
|
2683
|
+
export * from './lib/components/icons/close/icon-close.component';
|
|
2684
|
+
export * from './lib/components/icons/close-bold/icon-close-bold.component';
|
|
2685
|
+
export * from './lib/components/icons/cog/icon-cog.component';
|
|
2686
|
+
export * from './lib/components/icons/computer/icon-computer.component';
|
|
2687
|
+
export * from './lib/components/icons/computer-inera/icon-computer-inera.component';
|
|
2688
|
+
export * from './lib/components/icons/copy-file/icon-copy-file.component';
|
|
2689
|
+
export * from './lib/components/icons/copy-link/icon-copy-link.component';
|
|
2690
|
+
export * from './lib/components/icons/doctors-bag/icon-doctors-bag.component';
|
|
2691
|
+
export * from './lib/components/icons/drag-n-drop/icon-drag-n-drop.component';
|
|
2692
|
+
export * from './lib/components/icons/ear-hearing/icon-ear-hearing.component';
|
|
2693
|
+
export * from './lib/components/icons/edit/icon-edit.component';
|
|
2694
|
+
export * from './lib/components/icons/email/icon-email.component';
|
|
2695
|
+
export * from './lib/components/icons/expand/icon-expand.component';
|
|
2696
|
+
export * from './lib/components/icons/external/icon-external.component';
|
|
2697
|
+
export * from './lib/components/icons/facebook/icon-facebook.component';
|
|
2698
|
+
export * from './lib/components/icons/file-excel/icon-file-excel.component';
|
|
2699
|
+
export * from './lib/components/icons/file-other/icon-file-other.component';
|
|
2700
|
+
export * from './lib/components/icons/file-pdf/icon-file-pdf.component';
|
|
2701
|
+
export * from './lib/components/icons/file-picture/icon-file-picture.component';
|
|
2702
|
+
export * from './lib/components/icons/file-powerpoint/icon-file-powerpoint.component';
|
|
2703
|
+
export * from './lib/components/icons/file-word/icon-file-word.component';
|
|
2704
|
+
export * from './lib/components/icons/find-care/icon-find-care.component';
|
|
2705
|
+
export * from './lib/components/icons/find-region/icon-find-region.component';
|
|
2706
|
+
export * from './lib/components/icons/gotland/icon-gotland.component';
|
|
2707
|
+
export * from './lib/components/icons/halland/icon-halland.component';
|
|
2708
|
+
export * from './lib/components/icons/house/icon-house.component';
|
|
2709
|
+
export * from './lib/components/icons/id-card/icon-id-card.component';
|
|
2710
|
+
export * from './lib/components/icons/id-card-locked/icon-id-card-locked.component';
|
|
2711
|
+
export * from './lib/components/icons/image/icon-image.component';
|
|
2712
|
+
export * from './lib/components/icons/inera/icon-inera.component';
|
|
2713
|
+
export * from './lib/components/icons/inera-legacy/icon-inera-legacy.component';
|
|
2714
|
+
export * from './lib/components/icons/information/icon-information.component';
|
|
2715
|
+
export * from './lib/components/icons/jamtland-harjedalen/icon-jamtland-harjedalen.component';
|
|
2716
|
+
export * from './lib/components/icons/jonkoping/icon-jonkoping.component';
|
|
2717
|
+
export * from './lib/components/icons/kalmar/icon-kalmar.component';
|
|
2718
|
+
export * from './lib/components/icons/kronoberg/icon-kronoberg.component';
|
|
2719
|
+
export * from './lib/components/icons/lightbulb/icon-lightbulb.component';
|
|
2720
|
+
export * from './lib/components/icons/linkedin/icon-linkedin.component';
|
|
2721
|
+
export * from './lib/components/icons/list/icon-list.component';
|
|
2722
|
+
export * from './lib/components/icons/lock/icon-lock.component';
|
|
2723
|
+
export * from './lib/components/icons/lock-open/icon-lock-open.component';
|
|
2724
|
+
export * from './lib/components/icons/log/icon-log.component';
|
|
2725
|
+
export * from './lib/components/icons/log-locked/icon-log-locked.component';
|
|
2726
|
+
export * from './lib/components/icons/menu/icon-menu.component';
|
|
2727
|
+
export * from './lib/components/icons/minus/icon-minus.component';
|
|
2728
|
+
export * from './lib/components/icons/norrbotten/icon-norrbotten.component';
|
|
2729
|
+
export * from './lib/components/icons/office-building/icon-office-building.component';
|
|
2730
|
+
export * from './lib/components/icons/orebro/icon-orebro.component';
|
|
2731
|
+
export * from './lib/components/icons/organization/icon-organization.component';
|
|
2732
|
+
export * from './lib/components/icons/ostergotland/icon-ostergotland.component';
|
|
2733
|
+
export * from './lib/components/icons/plus/icon-plus.component';
|
|
2734
|
+
export * from './lib/components/icons/print/icon-print.component';
|
|
2735
|
+
export * from './lib/components/icons/question/icon-question.component';
|
|
2736
|
+
export * from './lib/components/icons/reload/icon-reload.component';
|
|
2737
|
+
export * from './lib/components/icons/reply/icon-reply.component';
|
|
2738
|
+
export * from './lib/components/icons/search-inera/icon-search-inera.component';
|
|
2739
|
+
export * from './lib/components/icons/search/icon-search.component';
|
|
2740
|
+
export * from './lib/components/icons/shield-locked-primary/icon-shield-locked-primary.component';
|
|
2741
|
+
export * from './lib/components/icons/shield-locked/icon-shield-locked.component';
|
|
2742
|
+
export * from './lib/components/icons/skane/icon-skane.component';
|
|
2743
|
+
export * from './lib/components/icons/sormland/icon-sormland.component';
|
|
2744
|
+
export * from './lib/components/icons/star-filled/icon-star-filled.component';
|
|
2745
|
+
export * from './lib/components/icons/star/icon-star.component';
|
|
2746
|
+
export * from './lib/components/icons/stockholm/icon-stockholm.component';
|
|
2747
|
+
export * from './lib/components/icons/success/icon-success.component';
|
|
2748
|
+
export * from './lib/components/icons/swap/icon-swap.component';
|
|
2749
|
+
export * from './lib/components/icons/telephone/icon-telephone.component';
|
|
2750
|
+
export * from './lib/components/icons/test-tube-analyze/icon-test-tube-analyze.component';
|
|
2751
|
+
export * from './lib/components/icons/test-tube-empty/icon-test-tube-empty.component';
|
|
2752
|
+
export * from './lib/components/icons/test-tube/icon-test-tube.component';
|
|
2753
|
+
export * from './lib/components/icons/toggle-card/icon-toggle-card.component';
|
|
2754
|
+
export * from './lib/components/icons/toggle-list/icon-toggle-list.component';
|
|
2755
|
+
export * from './lib/components/icons/twitter/icon-twitter.component';
|
|
2756
|
+
export * from './lib/components/icons/uppsala/icon-uppsala.component';
|
|
2757
|
+
export * from './lib/components/icons/user/icon-user.component';
|
|
2758
|
+
export * from './lib/components/icons/vasterbotten/icon-vasterbotten.component';
|
|
2759
|
+
export * from './lib/components/icons/vasternorrland/icon-vasternorrland.component';
|
|
2760
|
+
export * from './lib/components/icons/vastmanland/icon-vastmanland.component';
|
|
2761
|
+
export * from './lib/components/icons/vastra-gotaland/icon-vastra-gotaland.component';
|
|
2762
|
+
export * from './lib/components/icons/video-off/icon-video-off.component';
|
|
2763
|
+
export * from './lib/components/icons/video-on/icon-video-on.component';
|
|
2764
|
+
export * from './lib/components/icons/video-switch/icon-video-switch.component';
|
|
2765
|
+
export * from './lib/components/icons/visibility-off/icon-visibility-off.component';
|
|
2766
|
+
export * from './lib/components/icons/visibility/icon-visibility.component';
|
|
2767
|
+
export * from './lib/components/icons/warning/icon-warning.component';
|
|
2768
|
+
|
|
2769
|
+
*/
|
|
2540
2770
|
|
|
2541
2771
|
/**
|
|
2542
2772
|
* Generated bundle index. Do not edit.
|