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