@inera/ids-angular 1.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.
Files changed (80) hide show
  1. package/README.md +24 -0
  2. package/bundles/inera-ids-angular.umd.js +847 -0
  3. package/bundles/inera-ids-angular.umd.js.map +1 -0
  4. package/esm2015/inera-ids-angular.js +5 -0
  5. package/esm2015/lib/alert/alert.component.js +32 -0
  6. package/esm2015/lib/alert/alert.module.js +22 -0
  7. package/esm2015/lib/button/button.component.js +41 -0
  8. package/esm2015/lib/button/button.module.js +22 -0
  9. package/esm2015/lib/button-group/button-group.component.js +20 -0
  10. package/esm2015/lib/button-group/button-group.module.js +22 -0
  11. package/esm2015/lib/form/checkbox/checkbox.component.js +16 -0
  12. package/esm2015/lib/form/checkbox/checkbox.module.js +22 -0
  13. package/esm2015/lib/form/checkbox-group/checkbox-group.component.js +23 -0
  14. package/esm2015/lib/form/checkbox-group/checkbox-group.module.js +25 -0
  15. package/esm2015/lib/form/error-message/error-message.component.js +21 -0
  16. package/esm2015/lib/form/error-message/error-message.module.js +22 -0
  17. package/esm2015/lib/form/input/input.component.js +15 -0
  18. package/esm2015/lib/form/input/input.module.js +22 -0
  19. package/esm2015/lib/form/radio/radio-group.component.js +30 -0
  20. package/esm2015/lib/form/radio/radio.component.js +18 -0
  21. package/esm2015/lib/form/radio/radio.module.js +33 -0
  22. package/esm2015/lib/form/range/range.component.js +20 -0
  23. package/esm2015/lib/form/range/range.module.js +22 -0
  24. package/esm2015/lib/form/select/select.component.js +15 -0
  25. package/esm2015/lib/form/select/select.module.js +22 -0
  26. package/esm2015/lib/form/select-multiple/select-multiple.component.js +27 -0
  27. package/esm2015/lib/form/select-multiple/select-multiple.module.js +29 -0
  28. package/esm2015/lib/form/spinner/spinner.component.js +23 -0
  29. package/esm2015/lib/form/spinner/spinner.module.js +22 -0
  30. package/esm2015/lib/form/textarea/textarea.component.js +16 -0
  31. package/esm2015/lib/form/textarea/textarea.module.js +22 -0
  32. package/esm2015/lib/form/time/time.component.js +16 -0
  33. package/esm2015/lib/form/time/time.module.js +22 -0
  34. package/esm2015/lib/grid/column/column.component.js +27 -0
  35. package/esm2015/lib/grid/column/column.module.js +22 -0
  36. package/esm2015/lib/grid/row/row.component.js +15 -0
  37. package/esm2015/lib/grid/row/row.module.js +22 -0
  38. package/esm2015/lib/icon/icon.component.js +37 -0
  39. package/esm2015/lib/icon/icon.module.js +22 -0
  40. package/esm2015/public-api.js +39 -0
  41. package/fesm2015/inera-ids-angular.js +726 -0
  42. package/fesm2015/inera-ids-angular.js.map +1 -0
  43. package/inera-ids-angular.d.ts +5 -0
  44. package/lib/alert/alert.component.d.ts +12 -0
  45. package/lib/alert/alert.module.d.ts +8 -0
  46. package/lib/button/button.component.d.ts +13 -0
  47. package/lib/button/button.module.d.ts +8 -0
  48. package/lib/button-group/button-group.component.d.ts +7 -0
  49. package/lib/button-group/button-group.module.d.ts +8 -0
  50. package/lib/form/checkbox/checkbox.component.d.ts +6 -0
  51. package/lib/form/checkbox/checkbox.module.d.ts +8 -0
  52. package/lib/form/checkbox-group/checkbox-group.component.d.ts +9 -0
  53. package/lib/form/checkbox-group/checkbox-group.module.d.ts +10 -0
  54. package/lib/form/error-message/error-message.component.d.ts +9 -0
  55. package/lib/form/error-message/error-message.module.d.ts +8 -0
  56. package/lib/form/input/input.component.d.ts +5 -0
  57. package/lib/form/input/input.module.d.ts +8 -0
  58. package/lib/form/radio/radio-group.component.d.ts +10 -0
  59. package/lib/form/radio/radio.component.d.ts +8 -0
  60. package/lib/form/radio/radio.module.d.ts +10 -0
  61. package/lib/form/range/range.component.d.ts +6 -0
  62. package/lib/form/range/range.module.d.ts +8 -0
  63. package/lib/form/select/select.component.d.ts +5 -0
  64. package/lib/form/select/select.module.d.ts +8 -0
  65. package/lib/form/select-multiple/select-multiple.component.d.ts +8 -0
  66. package/lib/form/select-multiple/select-multiple.module.d.ts +10 -0
  67. package/lib/form/spinner/spinner.component.d.ts +7 -0
  68. package/lib/form/spinner/spinner.module.d.ts +8 -0
  69. package/lib/form/textarea/textarea.component.d.ts +6 -0
  70. package/lib/form/textarea/textarea.module.d.ts +8 -0
  71. package/lib/form/time/time.component.d.ts +6 -0
  72. package/lib/form/time/time.module.d.ts +8 -0
  73. package/lib/grid/column/column.component.d.ts +9 -0
  74. package/lib/grid/column/column.module.d.ts +8 -0
  75. package/lib/grid/row/row.component.d.ts +6 -0
  76. package/lib/grid/row/row.module.d.ts +8 -0
  77. package/lib/icon/icon.component.d.ts +14 -0
  78. package/lib/icon/icon.module.d.ts +8 -0
  79. package/package.json +23 -0
  80. package/public-api.d.ts +35 -0
@@ -0,0 +1,726 @@
1
+ import * as i0 from '@angular/core';
2
+ import { EventEmitter, Component, Input, Output, NgModule, CUSTOM_ELEMENTS_SCHEMA, ViewEncapsulation, HostBinding } from '@angular/core';
3
+ import '@inera/ids-core/components/alert/register';
4
+ import '@inera/ids-core/components/button/register';
5
+ import '@inera/ids-core/components/button-group/register';
6
+ import '@inera/ids-core/components/icon/register';
7
+ import '@inera/ids-core/components/form/input/register';
8
+ import '@inera/ids-core/components/form/checkbox/register';
9
+ import * as i1 from '@angular/common';
10
+ import { CommonModule } from '@angular/common';
11
+ import '@inera/ids-core/components/form/checkbox-group/register';
12
+ import '@inera/ids-core/components/form/error-message/register';
13
+ import '@inera/ids-core/components/form/radio/register';
14
+ import '@inera/ids-core/components/form/range/register';
15
+ import '@inera/ids-core/components/form/select/register';
16
+ import '@inera/ids-core/components/form/select-multiple/register';
17
+ import '@inera/ids-core/components/form/spinner/register';
18
+ import '@inera/ids-core/components/form/time/register';
19
+ import '@inera/ids-core/components/form/textarea/register';
20
+ import '@inera/ids-core/components/grid/row/register';
21
+ import '@inera/ids-core/components/grid/column/register';
22
+
23
+ class IDAlertComponent {
24
+ constructor() {
25
+ this.dismissible = false;
26
+ this.headline = '';
27
+ this.live = '';
28
+ this.type = '';
29
+ this.closed = new EventEmitter();
30
+ }
31
+ }
32
+ IDAlertComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
33
+ IDAlertComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDAlertComponent, selector: "id-alert", inputs: { dismissible: "dismissible", headline: "headline", live: "live", type: "type" }, outputs: { closed: "closed" }, ngImport: i0, template: "<ids-alert \n [dismissible]=\"dismissible\"\n [headline]=\"headline\"\n [live]=\"live\"\n [type]=\"type\"\n (closed)=\"closed.emit(true)\">\n <ng-content></ng-content>\n</ids-alert>", styles: [":host { display: block; }"] });
34
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertComponent, decorators: [{
35
+ type: Component,
36
+ args: [{
37
+ selector: 'id-alert',
38
+ templateUrl: './alert.component.html',
39
+ styles: [':host { display: block; }']
40
+ }]
41
+ }], ctorParameters: function () { return []; }, propDecorators: { dismissible: [{
42
+ type: Input
43
+ }], headline: [{
44
+ type: Input
45
+ }], live: [{
46
+ type: Input
47
+ }], type: [{
48
+ type: Input
49
+ }], closed: [{
50
+ type: Output
51
+ }] } });
52
+
53
+ class IDAlertModule {
54
+ }
55
+ IDAlertModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
56
+ IDAlertModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertModule, declarations: [IDAlertComponent], exports: [IDAlertComponent] });
57
+ IDAlertModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertModule });
58
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDAlertModule, decorators: [{
59
+ type: NgModule,
60
+ args: [{
61
+ declarations: [
62
+ IDAlertComponent
63
+ ],
64
+ exports: [
65
+ IDAlertComponent
66
+ ],
67
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
68
+ }]
69
+ }] });
70
+
71
+ class IDButtonComponent {
72
+ constructor() {
73
+ this.secondary = false;
74
+ this.toggle = false;
75
+ this.active = false;
76
+ this.submit = false;
77
+ this.search = false;
78
+ this.disabled = false;
79
+ this.type = undefined;
80
+ }
81
+ }
82
+ IDButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
83
+ IDButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDButtonComponent, selector: "id-button", inputs: { secondary: "secondary", toggle: "toggle", active: "active", submit: "submit", search: "search", disabled: "disabled", type: "type" }, host: { properties: { "class.ids-btn-search": "this.search" } }, ngImport: i0, template: "<ids-button \n [secondary]=\"secondary\"\n [toggle]=\"toggle\"\n [toggle]=\"toggle\"\n [active]=\"toggle\"\n [submit]=\"submit\"\n [search]=\"search\"\n [disabled]=\"disabled\"\n [type]=\"type\">\n <ng-content></ng-content>\n</ids-button>", encapsulation: i0.ViewEncapsulation.None });
84
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonComponent, decorators: [{
85
+ type: Component,
86
+ args: [{
87
+ selector: 'id-button',
88
+ templateUrl: './button.component.html',
89
+ encapsulation: ViewEncapsulation.None,
90
+ }]
91
+ }], ctorParameters: function () { return []; }, propDecorators: { secondary: [{
92
+ type: Input
93
+ }], toggle: [{
94
+ type: Input
95
+ }], active: [{
96
+ type: Input
97
+ }], submit: [{
98
+ type: Input
99
+ }], search: [{
100
+ type: HostBinding,
101
+ args: ['class.ids-btn-search']
102
+ }, {
103
+ type: Input
104
+ }], disabled: [{
105
+ type: Input
106
+ }], type: [{
107
+ type: Input
108
+ }] } });
109
+
110
+ class IDButtonModule {
111
+ }
112
+ IDButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
113
+ IDButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonModule, declarations: [IDButtonComponent], exports: [IDButtonComponent] });
114
+ IDButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonModule });
115
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonModule, decorators: [{
116
+ type: NgModule,
117
+ args: [{
118
+ declarations: [
119
+ IDButtonComponent
120
+ ],
121
+ exports: [
122
+ IDButtonComponent
123
+ ],
124
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
125
+ }]
126
+ }] });
127
+
128
+ class IDButtonGroupComponent {
129
+ constructor() {
130
+ this.rtl = false;
131
+ }
132
+ }
133
+ IDButtonGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
134
+ IDButtonGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDButtonGroupComponent, selector: "id-button-group", inputs: { rtl: "rtl" }, ngImport: i0, template: "<ids-button-group [rtl]=\"rtl\">\n <ng-content></ng-content>\n</ids-button-group>", encapsulation: i0.ViewEncapsulation.None });
135
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonGroupComponent, decorators: [{
136
+ type: Component,
137
+ args: [{
138
+ selector: 'id-button-group',
139
+ templateUrl: './button-group.component.html',
140
+ encapsulation: ViewEncapsulation.None,
141
+ }]
142
+ }], ctorParameters: function () { return []; }, propDecorators: { rtl: [{
143
+ type: Input
144
+ }] } });
145
+
146
+ class IDButtonGroupModule {
147
+ }
148
+ IDButtonGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
149
+ IDButtonGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonGroupModule, declarations: [IDButtonGroupComponent], exports: [IDButtonGroupComponent] });
150
+ IDButtonGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonGroupModule });
151
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDButtonGroupModule, decorators: [{
152
+ type: NgModule,
153
+ args: [{
154
+ declarations: [
155
+ IDButtonGroupComponent
156
+ ],
157
+ exports: [
158
+ IDButtonGroupComponent
159
+ ],
160
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
161
+ }]
162
+ }] });
163
+
164
+ class IDIconComponent {
165
+ constructor() {
166
+ this.name = undefined;
167
+ this.color = undefined;
168
+ this.color2 = undefined;
169
+ this.size = 'm';
170
+ this.width = undefined;
171
+ this.height = undefined;
172
+ }
173
+ ngOnInit() {
174
+ }
175
+ }
176
+ IDIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
177
+ IDIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDIconComponent, selector: "id-icon", inputs: { name: "name", color: "color", color2: "color2", size: "size", width: "width", height: "height" }, ngImport: i0, template: "<ids-icon \n [name]=\"name\"\n [color]=\"color\"\n [color2]=\"color2\"\n [size]=\"size\"\n [width]=\"width\"\n [height]=\"height\">\n</ids-icon >", encapsulation: i0.ViewEncapsulation.None });
178
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconComponent, decorators: [{
179
+ type: Component,
180
+ args: [{
181
+ selector: 'id-icon',
182
+ templateUrl: './icon.component.html',
183
+ encapsulation: ViewEncapsulation.None,
184
+ }]
185
+ }], ctorParameters: function () { return []; }, propDecorators: { name: [{
186
+ type: Input
187
+ }], color: [{
188
+ type: Input
189
+ }], color2: [{
190
+ type: Input
191
+ }], size: [{
192
+ type: Input
193
+ }], width: [{
194
+ type: Input
195
+ }], height: [{
196
+ type: Input
197
+ }] } });
198
+
199
+ class IDIconModule {
200
+ }
201
+ IDIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
202
+ IDIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule, declarations: [IDIconComponent], exports: [IDIconComponent] });
203
+ IDIconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule });
204
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDIconModule, decorators: [{
205
+ type: NgModule,
206
+ args: [{
207
+ declarations: [
208
+ IDIconComponent
209
+ ],
210
+ exports: [
211
+ IDIconComponent
212
+ ],
213
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
214
+ }]
215
+ }] });
216
+
217
+ class IDInputComponent {
218
+ }
219
+ IDInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDInputComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
220
+ IDInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDInputComponent, selector: "id-input", ngImport: i0, template: "<ids-input>\r\n <ng-content></ng-content>\r\n</ids-input>", encapsulation: i0.ViewEncapsulation.None });
221
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDInputComponent, decorators: [{
222
+ type: Component,
223
+ args: [{
224
+ selector: 'id-input',
225
+ templateUrl: './input.component.html',
226
+ encapsulation: ViewEncapsulation.None,
227
+ }]
228
+ }] });
229
+
230
+ class IDInputModule {
231
+ }
232
+ IDInputModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDInputModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
233
+ IDInputModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDInputModule, declarations: [IDInputComponent], exports: [IDInputComponent] });
234
+ IDInputModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDInputModule });
235
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDInputModule, decorators: [{
236
+ type: NgModule,
237
+ args: [{
238
+ declarations: [
239
+ IDInputComponent
240
+ ],
241
+ exports: [
242
+ IDInputComponent
243
+ ],
244
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
245
+ }]
246
+ }] });
247
+
248
+ class IDCheckboxComponent {
249
+ constructor() { }
250
+ }
251
+ IDCheckboxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
252
+ IDCheckboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxComponent, selector: "id-checkbox", ngImport: i0, template: "<ids-checkbox>\r\n <ng-content></ng-content>\r\n</ids-checkbox>", encapsulation: i0.ViewEncapsulation.None });
253
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxComponent, decorators: [{
254
+ type: Component,
255
+ args: [{
256
+ selector: 'id-checkbox',
257
+ templateUrl: './checkbox.component.html',
258
+ encapsulation: ViewEncapsulation.None,
259
+ }]
260
+ }], ctorParameters: function () { return []; } });
261
+
262
+ class IDCheckboxModule {
263
+ }
264
+ IDCheckboxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
265
+ IDCheckboxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxModule, declarations: [IDCheckboxComponent], exports: [IDCheckboxComponent] });
266
+ IDCheckboxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxModule });
267
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxModule, decorators: [{
268
+ type: NgModule,
269
+ args: [{
270
+ declarations: [
271
+ IDCheckboxComponent
272
+ ],
273
+ exports: [
274
+ IDCheckboxComponent
275
+ ],
276
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
277
+ }]
278
+ }] });
279
+
280
+ class IDCheckboxGroupComponent {
281
+ constructor() {
282
+ this.errorMessage = undefined;
283
+ }
284
+ ngOnInit() {
285
+ }
286
+ }
287
+ IDCheckboxGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
288
+ IDCheckboxGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDCheckboxGroupComponent, selector: "id-checkbox-group", inputs: { errorMessage: "errorMessage" }, ngImport: i0, template: "<ids-checkbox-group>\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: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
289
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupComponent, decorators: [{
290
+ type: Component,
291
+ args: [{
292
+ selector: 'id-checkbox-group',
293
+ templateUrl: './checkbox-group.component.html',
294
+ encapsulation: ViewEncapsulation.None,
295
+ }]
296
+ }], ctorParameters: function () { return []; }, propDecorators: { errorMessage: [{
297
+ type: Input
298
+ }] } });
299
+
300
+ class IDCheckboxGroupModule {
301
+ }
302
+ IDCheckboxGroupModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
303
+ IDCheckboxGroupModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupModule, declarations: [IDCheckboxGroupComponent], imports: [CommonModule], exports: [IDCheckboxGroupComponent] });
304
+ IDCheckboxGroupModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupModule, imports: [[CommonModule]] });
305
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDCheckboxGroupModule, decorators: [{
306
+ type: NgModule,
307
+ args: [{
308
+ imports: [CommonModule],
309
+ declarations: [
310
+ IDCheckboxGroupComponent
311
+ ],
312
+ exports: [
313
+ IDCheckboxGroupComponent
314
+ ],
315
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
316
+ }]
317
+ }] });
318
+
319
+ class IDErrorMessageComponent {
320
+ constructor(viewRef) {
321
+ this.viewRef = viewRef;
322
+ this.viewRef.element.nativeElement.setAttribute('slot', 'error-msg');
323
+ }
324
+ ngOnInit() {
325
+ }
326
+ }
327
+ IDErrorMessageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDErrorMessageComponent, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Component });
328
+ IDErrorMessageComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDErrorMessageComponent, selector: "id-error-message", ngImport: i0, template: "<ids-error-message>\r\n <ng-content></ng-content>\r\n</ids-error-message>", encapsulation: i0.ViewEncapsulation.None });
329
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDErrorMessageComponent, decorators: [{
330
+ type: Component,
331
+ args: [{
332
+ selector: 'id-error-message',
333
+ templateUrl: './error-message.component.html',
334
+ encapsulation: ViewEncapsulation.None,
335
+ }]
336
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; } });
337
+
338
+ class IDErrorMessageModule {
339
+ }
340
+ IDErrorMessageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDErrorMessageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
341
+ IDErrorMessageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDErrorMessageModule, declarations: [IDErrorMessageComponent], exports: [IDErrorMessageComponent] });
342
+ IDErrorMessageModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDErrorMessageModule });
343
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDErrorMessageModule, decorators: [{
344
+ type: NgModule,
345
+ args: [{
346
+ declarations: [
347
+ IDErrorMessageComponent
348
+ ],
349
+ exports: [
350
+ IDErrorMessageComponent
351
+ ],
352
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
353
+ }]
354
+ }] });
355
+
356
+ class IDRadioComponent {
357
+ constructor() { }
358
+ ngOnInit() {
359
+ }
360
+ }
361
+ IDRadioComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
362
+ 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 });
363
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioComponent, decorators: [{
364
+ type: Component,
365
+ args: [{
366
+ selector: 'id-radio',
367
+ templateUrl: './radio.component.html',
368
+ encapsulation: ViewEncapsulation.None,
369
+ }]
370
+ }], ctorParameters: function () { return []; } });
371
+
372
+ class IDRadioGroupComponent {
373
+ constructor() {
374
+ this.name = undefined;
375
+ this.legend = undefined;
376
+ this.required = false;
377
+ this.errorMessage = undefined;
378
+ }
379
+ }
380
+ IDRadioGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
381
+ 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: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
382
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioGroupComponent, decorators: [{
383
+ type: Component,
384
+ args: [{
385
+ selector: 'id-radio-group',
386
+ templateUrl: './radio-group.component.html',
387
+ encapsulation: ViewEncapsulation.None,
388
+ }]
389
+ }], ctorParameters: function () { return []; }, propDecorators: { name: [{
390
+ type: Input
391
+ }], legend: [{
392
+ type: Input
393
+ }], required: [{
394
+ type: Input
395
+ }], errorMessage: [{
396
+ type: Input
397
+ }] } });
398
+
399
+ class IDRadioModule {
400
+ }
401
+ IDRadioModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
402
+ IDRadioModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioModule, declarations: [IDRadioComponent,
403
+ IDRadioGroupComponent], imports: [CommonModule], exports: [IDRadioComponent,
404
+ IDRadioGroupComponent] });
405
+ IDRadioModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioModule, imports: [[
406
+ CommonModule
407
+ ]] });
408
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRadioModule, decorators: [{
409
+ type: NgModule,
410
+ args: [{
411
+ imports: [
412
+ CommonModule
413
+ ],
414
+ declarations: [
415
+ IDRadioComponent,
416
+ IDRadioGroupComponent
417
+ ],
418
+ exports: [
419
+ IDRadioComponent,
420
+ IDRadioGroupComponent
421
+ ],
422
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
423
+ }]
424
+ }] });
425
+
426
+ class IDRangeComponent {
427
+ constructor() {
428
+ this.showTicks = false;
429
+ }
430
+ }
431
+ IDRangeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRangeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
432
+ 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 });
433
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRangeComponent, decorators: [{
434
+ type: Component,
435
+ args: [{
436
+ selector: 'id-range',
437
+ templateUrl: './range.component.html',
438
+ encapsulation: ViewEncapsulation.None,
439
+ }]
440
+ }], propDecorators: { showTicks: [{
441
+ type: Input
442
+ }] } });
443
+
444
+ class IDRangeModule {
445
+ }
446
+ IDRangeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRangeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
447
+ IDRangeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRangeModule, declarations: [IDRangeComponent], exports: [IDRangeComponent] });
448
+ IDRangeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRangeModule });
449
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRangeModule, decorators: [{
450
+ type: NgModule,
451
+ args: [{
452
+ declarations: [
453
+ IDRangeComponent
454
+ ],
455
+ exports: [
456
+ IDRangeComponent
457
+ ],
458
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
459
+ }]
460
+ }] });
461
+
462
+ class IDSelectComponent {
463
+ }
464
+ IDSelectComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
465
+ IDSelectComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectComponent, selector: "id-select", ngImport: i0, template: "<ids-select>\r\n <ng-content></ng-content>\r\n</ids-select>", encapsulation: i0.ViewEncapsulation.None });
466
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectComponent, decorators: [{
467
+ type: Component,
468
+ args: [{
469
+ selector: 'id-select',
470
+ templateUrl: './select.component.html',
471
+ encapsulation: ViewEncapsulation.None,
472
+ }]
473
+ }] });
474
+
475
+ class IDSelectModule {
476
+ }
477
+ IDSelectModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
478
+ IDSelectModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectModule, declarations: [IDSelectComponent], exports: [IDSelectComponent] });
479
+ IDSelectModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectModule });
480
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectModule, decorators: [{
481
+ type: NgModule,
482
+ args: [{
483
+ declarations: [
484
+ IDSelectComponent
485
+ ],
486
+ exports: [
487
+ IDSelectComponent
488
+ ],
489
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
490
+ }]
491
+ }] });
492
+
493
+ class IDSelectMultipleComponent {
494
+ constructor() {
495
+ this.label = undefined;
496
+ this.errorMessage = undefined;
497
+ this.placeholder = '';
498
+ }
499
+ }
500
+ IDSelectMultipleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
501
+ IDSelectMultipleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSelectMultipleComponent, selector: "id-select-multiple", inputs: { label: "label", errorMessage: "errorMessage", placeholder: "placeholder" }, ngImport: i0, template: "<ids-select-multiple [label]=\"label\" [placeholder]=\"placeholder\">\r\n <ng-content></ng-content>\r\n <ids-error-message *ngIf=\"errorMessage\">{{errorMessage}}</ids-error-message>\r\n</ids-select-multiple>", directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], encapsulation: i0.ViewEncapsulation.None });
502
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleComponent, decorators: [{
503
+ type: Component,
504
+ args: [{
505
+ selector: 'id-select-multiple',
506
+ templateUrl: './select-multiple.component.html',
507
+ encapsulation: ViewEncapsulation.None,
508
+ }]
509
+ }], propDecorators: { label: [{
510
+ type: Input
511
+ }], errorMessage: [{
512
+ type: Input
513
+ }], placeholder: [{
514
+ type: Input
515
+ }] } });
516
+
517
+ class IDSelectMultipleModule {
518
+ }
519
+ IDSelectMultipleModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
520
+ IDSelectMultipleModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleModule, declarations: [IDSelectMultipleComponent], imports: [CommonModule], exports: [IDSelectMultipleComponent] });
521
+ IDSelectMultipleModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleModule, imports: [[
522
+ CommonModule
523
+ ]] });
524
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSelectMultipleModule, decorators: [{
525
+ type: NgModule,
526
+ args: [{
527
+ imports: [
528
+ CommonModule
529
+ ],
530
+ declarations: [
531
+ IDSelectMultipleComponent
532
+ ],
533
+ exports: [
534
+ IDSelectMultipleComponent
535
+ ],
536
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
537
+ }]
538
+ }] });
539
+
540
+ class IDSpinnerComponent {
541
+ constructor() {
542
+ this.srtext = '';
543
+ this.live = 'polite';
544
+ }
545
+ }
546
+ IDSpinnerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSpinnerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
547
+ IDSpinnerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDSpinnerComponent, selector: "id-spinner", inputs: { srtext: "srtext", live: "live" }, ngImport: i0, template: "<ids-spinner [srtext]=\"srtext\" [live]=\"live\">\r\n <ng-content></ng-content>\r\n</ids-spinner>", encapsulation: i0.ViewEncapsulation.None });
548
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSpinnerComponent, decorators: [{
549
+ type: Component,
550
+ args: [{
551
+ selector: 'id-spinner',
552
+ templateUrl: './spinner.component.html',
553
+ encapsulation: ViewEncapsulation.None,
554
+ }]
555
+ }], propDecorators: { srtext: [{
556
+ type: Input
557
+ }], live: [{
558
+ type: Input
559
+ }] } });
560
+
561
+ class IDSpinnerModule {
562
+ }
563
+ IDSpinnerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSpinnerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
564
+ IDSpinnerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSpinnerModule, declarations: [IDSpinnerComponent], exports: [IDSpinnerComponent] });
565
+ IDSpinnerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSpinnerModule });
566
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDSpinnerModule, decorators: [{
567
+ type: NgModule,
568
+ args: [{
569
+ declarations: [
570
+ IDSpinnerComponent
571
+ ],
572
+ exports: [
573
+ IDSpinnerComponent
574
+ ],
575
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
576
+ }]
577
+ }] });
578
+
579
+ class IDTimeComponent {
580
+ constructor() { }
581
+ }
582
+ IDTimeComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTimeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
583
+ 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 });
584
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTimeComponent, decorators: [{
585
+ type: Component,
586
+ args: [{
587
+ selector: 'id-time',
588
+ templateUrl: './time.component.html',
589
+ encapsulation: ViewEncapsulation.None,
590
+ }]
591
+ }], ctorParameters: function () { return []; } });
592
+
593
+ class IDTimeModule {
594
+ }
595
+ IDTimeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTimeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
596
+ IDTimeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTimeModule, declarations: [IDTimeComponent], exports: [IDTimeComponent] });
597
+ IDTimeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTimeModule });
598
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTimeModule, decorators: [{
599
+ type: NgModule,
600
+ args: [{
601
+ declarations: [
602
+ IDTimeComponent
603
+ ],
604
+ exports: [
605
+ IDTimeComponent
606
+ ],
607
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
608
+ }]
609
+ }] });
610
+
611
+ class IDTextareaComponent {
612
+ constructor() { }
613
+ }
614
+ IDTextareaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTextareaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
615
+ IDTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDTextareaComponent, selector: "id-textarea", ngImport: i0, template: "<ids-textarea>\r\n <ng-content></ng-content>\r\n</ids-textarea>", encapsulation: i0.ViewEncapsulation.None });
616
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTextareaComponent, decorators: [{
617
+ type: Component,
618
+ args: [{
619
+ selector: 'id-textarea',
620
+ templateUrl: './textarea.component.html',
621
+ encapsulation: ViewEncapsulation.None,
622
+ }]
623
+ }], ctorParameters: function () { return []; } });
624
+
625
+ class IDTextareaModule {
626
+ }
627
+ IDTextareaModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTextareaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
628
+ IDTextareaModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTextareaModule, declarations: [IDTextareaComponent], exports: [IDTextareaComponent] });
629
+ IDTextareaModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTextareaModule });
630
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDTextareaModule, decorators: [{
631
+ type: NgModule,
632
+ args: [{
633
+ declarations: [
634
+ IDTextareaComponent
635
+ ],
636
+ exports: [
637
+ IDTextareaComponent
638
+ ],
639
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
640
+ }]
641
+ }] });
642
+
643
+ class IDRowComponent {
644
+ constructor() { }
645
+ }
646
+ IDRowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
647
+ IDRowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDRowComponent, selector: "id-row", ngImport: i0, template: "<ids-row>\r\n <ng-content></ng-content>\r\n</ids-row>" });
648
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRowComponent, decorators: [{
649
+ type: Component,
650
+ args: [{
651
+ selector: 'id-row',
652
+ templateUrl: './row.component.html',
653
+ }]
654
+ }], ctorParameters: function () { return []; } });
655
+
656
+ class IDRowModule {
657
+ }
658
+ IDRowModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRowModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
659
+ IDRowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRowModule, declarations: [IDRowComponent], exports: [IDRowComponent] });
660
+ IDRowModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRowModule });
661
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDRowModule, decorators: [{
662
+ type: NgModule,
663
+ args: [{
664
+ declarations: [
665
+ IDRowComponent
666
+ ],
667
+ exports: [
668
+ IDRowComponent
669
+ ],
670
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
671
+ }]
672
+ }] });
673
+
674
+ class IDColumnComponent {
675
+ constructor() {
676
+ this.cols = "";
677
+ this.mobile = "";
678
+ this.align = "";
679
+ }
680
+ }
681
+ IDColumnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDColumnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
682
+ IDColumnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: IDColumnComponent, selector: "id-col", inputs: { cols: "cols", mobile: "mobile", align: "align" }, ngImport: i0, template: "<ids-col [cols]=\"cols\" [mobile]=\"mobile\" [align]=\"align\">\r\n <ng-content></ng-content>\r\n</ids-col>", styles: ["id-col { display: contents; }"], encapsulation: i0.ViewEncapsulation.None });
683
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDColumnComponent, decorators: [{
684
+ type: Component,
685
+ args: [{
686
+ selector: 'id-col',
687
+ templateUrl: './column.component.html',
688
+ encapsulation: ViewEncapsulation.None,
689
+ styles: ['id-col { display: contents; }']
690
+ }]
691
+ }], ctorParameters: function () { return []; }, propDecorators: { cols: [{
692
+ type: Input
693
+ }], mobile: [{
694
+ type: Input
695
+ }], align: [{
696
+ type: Input
697
+ }] } });
698
+
699
+ class IDColumnModule {
700
+ }
701
+ IDColumnModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDColumnModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
702
+ IDColumnModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDColumnModule, declarations: [IDColumnComponent], exports: [IDColumnComponent] });
703
+ IDColumnModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDColumnModule });
704
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: IDColumnModule, decorators: [{
705
+ type: NgModule,
706
+ args: [{
707
+ declarations: [
708
+ IDColumnComponent
709
+ ],
710
+ exports: [
711
+ IDColumnComponent
712
+ ],
713
+ schemas: [CUSTOM_ELEMENTS_SCHEMA],
714
+ }]
715
+ }] });
716
+
717
+ /*
718
+ * Public API Surface of ids-angular
719
+ */
720
+
721
+ /**
722
+ * Generated bundle index. Do not edit.
723
+ */
724
+
725
+ export { IDAlertComponent, IDAlertModule, IDButtonComponent, IDButtonGroupComponent, IDButtonGroupModule, IDButtonModule, IDCheckboxComponent, IDCheckboxGroupComponent, IDCheckboxGroupModule, IDCheckboxModule, IDColumnComponent, IDColumnModule, IDErrorMessageComponent, IDErrorMessageModule, IDIconComponent, IDIconModule, IDInputComponent, IDInputModule, IDRadioComponent, IDRadioGroupComponent, IDRadioModule, IDRangeComponent, IDRangeModule, IDRowComponent, IDRowModule, IDSelectComponent, IDSelectModule, IDSelectMultipleComponent, IDSelectMultipleModule, IDSpinnerComponent, IDSpinnerModule, IDTextareaComponent, IDTextareaModule, IDTimeComponent, IDTimeModule };
726
+ //# sourceMappingURL=inera-ids-angular.js.map