@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 @@
1
+ {"version":3,"file":"inera-ids-angular.js","sources":["../../../projects/ids-angular/src/lib/alert/alert.component.ts","../../../projects/ids-angular/src/lib/alert/alert.component.html","../../../projects/ids-angular/src/lib/alert/alert.module.ts","../../../projects/ids-angular/src/lib/button/button.component.ts","../../../projects/ids-angular/src/lib/button/button.component.html","../../../projects/ids-angular/src/lib/button/button.module.ts","../../../projects/ids-angular/src/lib/button-group/button-group.component.ts","../../../projects/ids-angular/src/lib/button-group/button-group.component.html","../../../projects/ids-angular/src/lib/button-group/button-group.module.ts","../../../projects/ids-angular/src/lib/icon/icon.component.ts","../../../projects/ids-angular/src/lib/icon/icon.component.html","../../../projects/ids-angular/src/lib/icon/icon.module.ts","../../../projects/ids-angular/src/lib/form/input/input.component.ts","../../../projects/ids-angular/src/lib/form/input/input.component.html","../../../projects/ids-angular/src/lib/form/input/input.module.ts","../../../projects/ids-angular/src/lib/form/checkbox/checkbox.component.ts","../../../projects/ids-angular/src/lib/form/checkbox/checkbox.component.html","../../../projects/ids-angular/src/lib/form/checkbox/checkbox.module.ts","../../../projects/ids-angular/src/lib/form/checkbox-group/checkbox-group.component.ts","../../../projects/ids-angular/src/lib/form/checkbox-group/checkbox-group.component.html","../../../projects/ids-angular/src/lib/form/checkbox-group/checkbox-group.module.ts","../../../projects/ids-angular/src/lib/form/error-message/error-message.component.ts","../../../projects/ids-angular/src/lib/form/error-message/error-message.component.html","../../../projects/ids-angular/src/lib/form/error-message/error-message.module.ts","../../../projects/ids-angular/src/lib/form/radio/radio.component.ts","../../../projects/ids-angular/src/lib/form/radio/radio.component.html","../../../projects/ids-angular/src/lib/form/radio/radio-group.component.ts","../../../projects/ids-angular/src/lib/form/radio/radio-group.component.html","../../../projects/ids-angular/src/lib/form/radio/radio.module.ts","../../../projects/ids-angular/src/lib/form/range/range.component.ts","../../../projects/ids-angular/src/lib/form/range/range.component.html","../../../projects/ids-angular/src/lib/form/range/range.module.ts","../../../projects/ids-angular/src/lib/form/select/select.component.ts","../../../projects/ids-angular/src/lib/form/select/select.component.html","../../../projects/ids-angular/src/lib/form/select/select.module.ts","../../../projects/ids-angular/src/lib/form/select-multiple/select-multiple.component.ts","../../../projects/ids-angular/src/lib/form/select-multiple/select-multiple.component.html","../../../projects/ids-angular/src/lib/form/select-multiple/select-multiple.module.ts","../../../projects/ids-angular/src/lib/form/spinner/spinner.component.ts","../../../projects/ids-angular/src/lib/form/spinner/spinner.component.html","../../../projects/ids-angular/src/lib/form/spinner/spinner.module.ts","../../../projects/ids-angular/src/lib/form/time/time.component.ts","../../../projects/ids-angular/src/lib/form/time/time.component.html","../../../projects/ids-angular/src/lib/form/time/time.module.ts","../../../projects/ids-angular/src/lib/form/textarea/textarea.component.ts","../../../projects/ids-angular/src/lib/form/textarea/textarea.component.html","../../../projects/ids-angular/src/lib/form/textarea/textarea.module.ts","../../../projects/ids-angular/src/lib/grid/row/row.component.ts","../../../projects/ids-angular/src/lib/grid/row/row.component.html","../../../projects/ids-angular/src/lib/grid/row/row.module.ts","../../../projects/ids-angular/src/lib/grid/column/column.component.ts","../../../projects/ids-angular/src/lib/grid/column/column.component.html","../../../projects/ids-angular/src/lib/grid/column/column.module.ts","../../../projects/ids-angular/src/public-api.ts","../../../projects/ids-angular/src/inera-ids-angular.ts"],"sourcesContent":["import { Component, EventEmitter, Input, OnInit, Output, ViewEncapsulation } from '@angular/core';\n\n@Component({\n selector: 'id-alert',\n templateUrl: './alert.component.html',\n styles: [':host { display: block; }']\n})\nexport class IDAlertComponent {\n\n constructor() { }\n\n @Input()\n dismissible: boolean = false;\n\n @Input()\n headline: String = '';\n\n @Input()\n live: String = '';\n\n @Input()\n type: String = '';\n\n @Output()\n closed: EventEmitter<boolean> = new EventEmitter();\n\n}\n","<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>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\nimport { IDAlertComponent } from './alert.component';\nimport '@inera/ids-core/components/alert/register';\n\n@NgModule({\n declarations: [\n IDAlertComponent\n ],\n exports: [\n IDAlertComponent\n ],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class IDAlertModule { }\n","import { Component, HostBinding, Input, OnInit, ViewEncapsulation } from '@angular/core';\n\n@Component({\n selector: 'id-button',\n templateUrl: './button.component.html',\n encapsulation: ViewEncapsulation.None,\n})\nexport class IDButtonComponent {\n\n constructor() { }\n\n @Input()\n secondary: boolean = false;\n @Input()\n toggle: boolean = false;\n @Input()\n active: boolean = false;\n @Input()\n submit: boolean = false;\n @HostBinding('class.ids-btn-search')\n @Input()\n search: boolean = false;\n @Input()\n disabled: boolean = false;\n @Input()\n type: string | undefined = undefined;\n\n}\n","<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>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\nimport { IDButtonComponent } from './button.component';\nimport '@inera/ids-core/components/button/register';\n\n@NgModule({\n declarations: [\n IDButtonComponent\n ],\n exports: [\n IDButtonComponent\n ],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class IDButtonModule { }\n","import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core';\n\n@Component({\n selector: 'id-button-group',\n templateUrl: './button-group.component.html',\n encapsulation: ViewEncapsulation.None,\n})\nexport class IDButtonGroupComponent {\n\n constructor() { }\n\n @Input()\n rtl:boolean = false;\n\n}\n","<ids-button-group [rtl]=\"rtl\">\n <ng-content></ng-content>\n</ids-button-group>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\nimport { IDButtonGroupComponent } from './button-group.component';\nimport '@inera/ids-core/components/button-group/register';\n\n@NgModule({\n declarations: [\n IDButtonGroupComponent\n ],\n exports: [\n IDButtonGroupComponent\n ],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class IDButtonGroupModule { }\n","import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core';\n\n@Component({\n selector: 'id-icon',\n templateUrl: './icon.component.html',\n encapsulation: ViewEncapsulation.None,\n})\nexport class IDIconComponent implements OnInit {\n\n constructor() { }\n\n @Input()\n name: String | undefined = undefined;\n @Input()\n color: String | undefined = undefined;\n @Input()\n color2: String | undefined = undefined;\n @Input()\n size: 'm' | 's' | 'xs' = 'm';\n @Input()\n width: String | undefined = undefined;\n @Input()\n height: String | undefined = undefined;\n\n ngOnInit(): void {\n }\n\n}\n","<ids-icon \n [name]=\"name\"\n [color]=\"color\"\n [color2]=\"color2\"\n [size]=\"size\"\n [width]=\"width\"\n [height]=\"height\">\n</ids-icon >","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\nimport { IDIconComponent } from './icon.component';\nimport '@inera/ids-core/components/icon/register';\n\n@NgModule({\n declarations: [\n IDIconComponent\n ],\n exports: [\n IDIconComponent\n ],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class IDIconModule { }\n","import { Component, OnInit, ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-input',\r\n templateUrl: './input.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDInputComponent {\r\n\r\n}\r\n","<ids-input>\r\n <ng-content></ng-content>\r\n</ids-input>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDInputComponent } from './input.component';\r\nimport '@inera/ids-core/components/form/input/register';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDInputComponent\r\n ],\r\n exports: [\r\n IDInputComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDInputModule { }\r\n","import { Component, OnInit, ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-checkbox',\r\n templateUrl: './checkbox.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDCheckboxComponent {\r\n\r\n constructor() { }\r\n\r\n}\r\n","<ids-checkbox>\r\n <ng-content></ng-content>\r\n</ids-checkbox>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDCheckboxComponent } from './checkbox.component';\r\nimport '@inera/ids-core/components/form/checkbox/register';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDCheckboxComponent\r\n ],\r\n exports: [\r\n IDCheckboxComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDCheckboxModule { }\r\n","import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-checkbox-group',\r\n templateUrl: './checkbox-group.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDCheckboxGroupComponent implements OnInit {\r\n\r\n @Input()\r\n errorMessage: string | undefined = undefined;\r\n\r\n constructor() { }\r\n\r\n ngOnInit(): void {\r\n }\r\n\r\n}\r\n","<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","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDCheckboxGroupComponent } from './checkbox-group.component';\r\nimport '@inera/ids-core/components/form/checkbox-group/register';\r\nimport '@inera/ids-core/components/form/error-message/register';\r\nimport { CommonModule } from '@angular/common';\r\n\r\n@NgModule({\r\n imports: [CommonModule],\r\n declarations: [\r\n IDCheckboxGroupComponent\r\n ],\r\n exports: [\r\n IDCheckboxGroupComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDCheckboxGroupModule { }\r\n","import { Component, OnInit, ViewContainerRef, ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-error-message',\r\n templateUrl: './error-message.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDErrorMessageComponent implements OnInit {\r\n\r\n constructor(private readonly viewRef: ViewContainerRef) {\r\n this.viewRef.element.nativeElement.setAttribute('slot', 'error-msg');\r\n }\r\n\r\n ngOnInit(): void {\r\n }\r\n\r\n}\r\n","<ids-error-message>\r\n <ng-content></ng-content>\r\n</ids-error-message>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDErrorMessageComponent } from './error-message.component';\r\nimport '@inera/ids-core/components/form/error-message/register';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDErrorMessageComponent\r\n ],\r\n exports: [\r\n IDErrorMessageComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDErrorMessageModule { }\r\n","import { Component, OnInit, ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-radio',\r\n templateUrl: './radio.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDRadioComponent implements OnInit {\r\n\r\n constructor() { }\r\n\r\n ngOnInit(): void {\r\n }\r\n\r\n}\r\n","<ids-radio>\r\n <ng-content></ng-content>\r\n</ids-radio>","import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-radio-group',\r\n templateUrl: './radio-group.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDRadioGroupComponent {\r\n\r\n @Input()\r\n name: string | undefined = undefined;\r\n\r\n @Input()\r\n legend: string | undefined = undefined;\r\n\r\n @Input()\r\n required: boolean = false;\r\n\r\n @Input()\r\n errorMessage: string | undefined = undefined;\r\n\r\n constructor() { }\r\n\r\n}\r\n","<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>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDRadioComponent } from './radio.component';\r\nimport '@inera/ids-core/components/form/radio/register';\r\nimport { IDRadioGroupComponent } from './radio-group.component';\r\nimport { CommonModule } from '@angular/common';\r\n\r\n@NgModule({\r\n imports: [\r\n CommonModule\r\n ],\r\n declarations: [\r\n IDRadioComponent,\r\n IDRadioGroupComponent\r\n ],\r\n exports: [\r\n IDRadioComponent,\r\n IDRadioGroupComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDRadioModule { }\r\n","import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-range',\r\n templateUrl: './range.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDRangeComponent {\r\n\r\n @Input()\r\n showTicks: Boolean = false;\r\n\r\n}\r\n","<ids-range [showticks]=\"showTicks\">\r\n <ng-content></ng-content>\r\n</ids-range>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDRangeComponent } from './range.component';\r\nimport '@inera/ids-core/components/form/range/register';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDRangeComponent\r\n ],\r\n exports: [\r\n IDRangeComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDRangeModule { }\r\n","import { Component, OnInit, ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-select',\r\n templateUrl: './select.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDSelectComponent {\r\n\r\n}\r\n","<ids-select>\r\n <ng-content></ng-content>\r\n</ids-select>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDSelectComponent } from './select.component';\r\nimport '@inera/ids-core/components/form/select/register';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDSelectComponent\r\n ],\r\n exports: [\r\n IDSelectComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDSelectModule { }\r\n","import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-select-multiple',\r\n templateUrl: './select-multiple.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDSelectMultipleComponent {\r\n\r\n @Input()\r\n label: String | undefined = undefined;\r\n\r\n @Input()\r\n errorMessage: String | undefined = undefined;\r\n\r\n @Input()\r\n placeholder: String = '';\r\n\r\n}\r\n","<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>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDSelectMultipleComponent, } from './select-multiple.component';\r\nimport '@inera/ids-core/components/form/select-multiple/register';\r\nimport '@inera/ids-core/components/icon/register';\r\nimport { CommonModule } from '@angular/common';\r\n\r\n@NgModule({\r\n imports: [\r\n CommonModule\r\n ],\r\n declarations: [\r\n IDSelectMultipleComponent\r\n ],\r\n exports: [\r\n IDSelectMultipleComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDSelectMultipleModule { }\r\n","import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-spinner',\r\n templateUrl: './spinner.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDSpinnerComponent {\r\n\r\n @Input()\r\n srtext: String | undefined = '';\r\n\r\n @Input()\r\n live: String = 'polite';\r\n\r\n}\r\n","<ids-spinner [srtext]=\"srtext\" [live]=\"live\">\r\n <ng-content></ng-content>\r\n</ids-spinner>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDSpinnerComponent } from './spinner.component';\r\nimport '@inera/ids-core/components/form/spinner/register';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDSpinnerComponent\r\n ],\r\n exports: [\r\n IDSpinnerComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDSpinnerModule { }\r\n","import { Component, OnInit, ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-time',\r\n templateUrl: './time.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDTimeComponent {\r\n\r\n constructor() { }\r\n\r\n}\r\n","<ids-time>\r\n <ng-content></ng-content>\r\n</ids-time>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDTimeComponent } from './time.component';\r\nimport '@inera/ids-core/components/form/time/register';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDTimeComponent\r\n ],\r\n exports: [\r\n IDTimeComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDTimeModule { }\r\n","import { Component, OnInit, ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-textarea',\r\n templateUrl: './textarea.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n})\r\nexport class IDTextareaComponent {\r\n\r\n constructor() { }\r\n\r\n}\r\n","<ids-textarea>\r\n <ng-content></ng-content>\r\n</ids-textarea>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDTextareaComponent } from './textarea.component';\r\nimport '@inera/ids-core/components/form/textarea/register';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDTextareaComponent\r\n ],\r\n exports: [\r\n IDTextareaComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDTextareaModule { }\r\n","import { Component, OnInit, ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-row',\r\n templateUrl: './row.component.html',\r\n})\r\nexport class IDRowComponent {\r\n\r\n constructor() { }\r\n\r\n}\r\n","<ids-row>\r\n <ng-content></ng-content>\r\n</ids-row>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDRowComponent } from './row.component';\r\nimport '@inera/ids-core/components/grid/row/register';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDRowComponent\r\n ],\r\n exports: [\r\n IDRowComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDRowModule { }\r\n","import { Component, Input, OnInit, ViewEncapsulation } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'id-col',\r\n templateUrl: './column.component.html',\r\n encapsulation: ViewEncapsulation.None,\r\n styles: ['id-col { display: contents; }']\r\n})\r\nexport class IDColumnComponent {\r\n\r\n @Input()\r\n cols: String = \"\"\r\n\r\n @Input()\r\n mobile: String = \"\"\r\n\r\n @Input()\r\n align: String = \"\"\r\n\r\n constructor() { }\r\n\r\n}\r\n","<ids-col [cols]=\"cols\" [mobile]=\"mobile\" [align]=\"align\">\r\n <ng-content></ng-content>\r\n</ids-col>","import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\r\nimport { IDColumnComponent } from './column.component';\r\nimport '@inera/ids-core/components/grid/column/register';\r\n\r\n@NgModule({\r\n declarations: [\r\n IDColumnComponent\r\n ],\r\n exports: [\r\n IDColumnComponent\r\n ],\r\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\r\n})\r\nexport class IDColumnModule { }\r\n","/*\n * Public API Surface of ids-angular\n */\nexport * from './lib/alert/alert.component';\nexport * from './lib/alert/alert.module';\nexport * from './lib/button/button.component';\nexport * from './lib/button/button.module';\nexport * from './lib/button-group/button-group.component';\nexport * from './lib/button-group/button-group.module';\nexport * from './lib/icon/icon.component';\nexport * from './lib/icon/icon.module';\nexport * from './lib/form/input/input.component';\nexport * from './lib/form/input/input.module';\nexport * from './lib/form/checkbox/checkbox.component';\nexport * from './lib/form/checkbox/checkbox.module';\nexport * from './lib/form/checkbox-group/checkbox-group.component';\nexport * from './lib/form/checkbox-group/checkbox-group.module';\nexport * from './lib/form/error-message/error-message.component';\nexport * from './lib/form/error-message/error-message.module';\nexport * from './lib/form/radio/radio.component';\nexport * from './lib/form/radio/radio-group.component';\nexport * from './lib/form/radio/radio.module';\nexport * from './lib/form/range/range.component';\nexport * from './lib/form/range/range.module';\nexport * from './lib/form/select/select.component';\nexport * from './lib/form/select/select.module';\nexport * from './lib/form/select-multiple/select-multiple.component';\nexport * from './lib/form/select-multiple/select-multiple.module';\nexport * from './lib/form/spinner/spinner.component';\nexport * from './lib/form/spinner/spinner.module';\nexport * from './lib/form/time/time.component';\nexport * from './lib/form/time/time.module';\nexport * from './lib/form/textarea/textarea.component';\nexport * from './lib/form/textarea/textarea.module';\nexport * from './lib/grid/row/row.component';\nexport * from './lib/grid/row/row.module';\nexport * from './lib/grid/column/column.component';\nexport * from './lib/grid/column/column.module';\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@inera/ids-angular" />
5
+ export * from './public-api';
@@ -0,0 +1,12 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class IDAlertComponent {
4
+ constructor();
5
+ dismissible: boolean;
6
+ headline: String;
7
+ live: String;
8
+ type: String;
9
+ closed: EventEmitter<boolean>;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDAlertComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDAlertComponent, "id-alert", never, { "dismissible": "dismissible"; "headline": "headline"; "live": "live"; "type": "type"; }, { "closed": "closed"; }, never, ["*"]>;
12
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/alert/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./alert.component";
4
+ export declare class IDAlertModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDAlertModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDAlertModule, [typeof i1.IDAlertComponent], never, [typeof i1.IDAlertComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDAlertModule>;
8
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDButtonComponent {
3
+ constructor();
4
+ secondary: boolean;
5
+ toggle: boolean;
6
+ active: boolean;
7
+ submit: boolean;
8
+ search: boolean;
9
+ disabled: boolean;
10
+ type: string | undefined;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDButtonComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDButtonComponent, "id-button", never, { "secondary": "secondary"; "toggle": "toggle"; "active": "active"; "submit": "submit"; "search": "search"; "disabled": "disabled"; "type": "type"; }, {}, never, ["*"]>;
13
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/button/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./button.component";
4
+ export declare class IDButtonModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDButtonModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDButtonModule, [typeof i1.IDButtonComponent], never, [typeof i1.IDButtonComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDButtonModule>;
8
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDButtonGroupComponent {
3
+ constructor();
4
+ rtl: boolean;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDButtonGroupComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDButtonGroupComponent, "id-button-group", never, { "rtl": "rtl"; }, {}, never, ["*"]>;
7
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/button-group/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./button-group.component";
4
+ export declare class IDButtonGroupModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDButtonGroupModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDButtonGroupModule, [typeof i1.IDButtonGroupComponent], never, [typeof i1.IDButtonGroupComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDButtonGroupModule>;
8
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDCheckboxComponent {
3
+ constructor();
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDCheckboxComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDCheckboxComponent, "id-checkbox", never, {}, {}, never, ["*"]>;
6
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/form/checkbox/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./checkbox.component";
4
+ export declare class IDCheckboxModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDCheckboxModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDCheckboxModule, [typeof i1.IDCheckboxComponent], never, [typeof i1.IDCheckboxComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDCheckboxModule>;
8
+ }
@@ -0,0 +1,9 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class IDCheckboxGroupComponent implements OnInit {
4
+ errorMessage: string | undefined;
5
+ constructor();
6
+ ngOnInit(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDCheckboxGroupComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDCheckboxGroupComponent, "id-checkbox-group", never, { "errorMessage": "errorMessage"; }, {}, never, ["*"]>;
9
+ }
@@ -0,0 +1,10 @@
1
+ import '@inera/ids-core/components/form/checkbox-group/register';
2
+ import '@inera/ids-core/components/form/error-message/register';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "./checkbox-group.component";
5
+ import * as i2 from "@angular/common";
6
+ export declare class IDCheckboxGroupModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDCheckboxGroupModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDCheckboxGroupModule, [typeof i1.IDCheckboxGroupComponent], [typeof i2.CommonModule], [typeof i1.IDCheckboxGroupComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDCheckboxGroupModule>;
10
+ }
@@ -0,0 +1,9 @@
1
+ import { OnInit, ViewContainerRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class IDErrorMessageComponent implements OnInit {
4
+ private readonly viewRef;
5
+ constructor(viewRef: ViewContainerRef);
6
+ ngOnInit(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDErrorMessageComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDErrorMessageComponent, "id-error-message", never, {}, {}, never, ["*"]>;
9
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/form/error-message/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./error-message.component";
4
+ export declare class IDErrorMessageModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDErrorMessageModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDErrorMessageModule, [typeof i1.IDErrorMessageComponent], never, [typeof i1.IDErrorMessageComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDErrorMessageModule>;
8
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDInputComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDInputComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDInputComponent, "id-input", never, {}, {}, never, ["*"]>;
5
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/form/input/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./input.component";
4
+ export declare class IDInputModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDInputModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDInputModule, [typeof i1.IDInputComponent], never, [typeof i1.IDInputComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDInputModule>;
8
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDRadioGroupComponent {
3
+ name: string | undefined;
4
+ legend: string | undefined;
5
+ required: boolean;
6
+ errorMessage: string | undefined;
7
+ constructor();
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDRadioGroupComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDRadioGroupComponent, "id-radio-group", never, { "name": "name"; "legend": "legend"; "required": "required"; "errorMessage": "errorMessage"; }, {}, never, ["*"]>;
10
+ }
@@ -0,0 +1,8 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class IDRadioComponent implements OnInit {
4
+ constructor();
5
+ ngOnInit(): void;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDRadioComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDRadioComponent, "id-radio", never, {}, {}, never, ["*"]>;
8
+ }
@@ -0,0 +1,10 @@
1
+ import '@inera/ids-core/components/form/radio/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./radio.component";
4
+ import * as i2 from "./radio-group.component";
5
+ import * as i3 from "@angular/common";
6
+ export declare class IDRadioModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDRadioModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDRadioModule, [typeof i1.IDRadioComponent, typeof i2.IDRadioGroupComponent], [typeof i3.CommonModule], [typeof i1.IDRadioComponent, typeof i2.IDRadioGroupComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDRadioModule>;
10
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDRangeComponent {
3
+ showTicks: Boolean;
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDRangeComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDRangeComponent, "id-range", never, { "showTicks": "showTicks"; }, {}, never, ["*"]>;
6
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/form/range/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./range.component";
4
+ export declare class IDRangeModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDRangeModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDRangeModule, [typeof i1.IDRangeComponent], never, [typeof i1.IDRangeComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDRangeModule>;
8
+ }
@@ -0,0 +1,5 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDSelectComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDSelectComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDSelectComponent, "id-select", never, {}, {}, never, ["*"]>;
5
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/form/select/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./select.component";
4
+ export declare class IDSelectModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDSelectModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDSelectModule, [typeof i1.IDSelectComponent], never, [typeof i1.IDSelectComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDSelectModule>;
8
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDSelectMultipleComponent {
3
+ label: String | undefined;
4
+ errorMessage: String | undefined;
5
+ placeholder: String;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDSelectMultipleComponent, never>;
7
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDSelectMultipleComponent, "id-select-multiple", never, { "label": "label"; "errorMessage": "errorMessage"; "placeholder": "placeholder"; }, {}, never, ["*"]>;
8
+ }
@@ -0,0 +1,10 @@
1
+ import '@inera/ids-core/components/form/select-multiple/register';
2
+ import '@inera/ids-core/components/icon/register';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "./select-multiple.component";
5
+ import * as i2 from "@angular/common";
6
+ export declare class IDSelectMultipleModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDSelectMultipleModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDSelectMultipleModule, [typeof i1.IDSelectMultipleComponent], [typeof i2.CommonModule], [typeof i1.IDSelectMultipleComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDSelectMultipleModule>;
10
+ }
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDSpinnerComponent {
3
+ srtext: String | undefined;
4
+ live: String;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDSpinnerComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDSpinnerComponent, "id-spinner", never, { "srtext": "srtext"; "live": "live"; }, {}, never, ["*"]>;
7
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/form/spinner/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./spinner.component";
4
+ export declare class IDSpinnerModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDSpinnerModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDSpinnerModule, [typeof i1.IDSpinnerComponent], never, [typeof i1.IDSpinnerComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDSpinnerModule>;
8
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDTextareaComponent {
3
+ constructor();
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDTextareaComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDTextareaComponent, "id-textarea", never, {}, {}, never, ["*"]>;
6
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/form/textarea/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./textarea.component";
4
+ export declare class IDTextareaModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDTextareaModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDTextareaModule, [typeof i1.IDTextareaComponent], never, [typeof i1.IDTextareaComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDTextareaModule>;
8
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDTimeComponent {
3
+ constructor();
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDTimeComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDTimeComponent, "id-time", never, {}, {}, never, ["*"]>;
6
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/form/time/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./time.component";
4
+ export declare class IDTimeModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDTimeModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDTimeModule, [typeof i1.IDTimeComponent], never, [typeof i1.IDTimeComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDTimeModule>;
8
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDColumnComponent {
3
+ cols: String;
4
+ mobile: String;
5
+ align: String;
6
+ constructor();
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDColumnComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDColumnComponent, "id-col", never, { "cols": "cols"; "mobile": "mobile"; "align": "align"; }, {}, never, ["*"]>;
9
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/grid/column/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./column.component";
4
+ export declare class IDColumnModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDColumnModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDColumnModule, [typeof i1.IDColumnComponent], never, [typeof i1.IDColumnComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDColumnModule>;
8
+ }
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class IDRowComponent {
3
+ constructor();
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDRowComponent, never>;
5
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDRowComponent, "id-row", never, {}, {}, never, ["*"]>;
6
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/grid/row/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./row.component";
4
+ export declare class IDRowModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDRowModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDRowModule, [typeof i1.IDRowComponent], never, [typeof i1.IDRowComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDRowModule>;
8
+ }
@@ -0,0 +1,14 @@
1
+ import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class IDIconComponent implements OnInit {
4
+ constructor();
5
+ name: String | undefined;
6
+ color: String | undefined;
7
+ color2: String | undefined;
8
+ size: 'm' | 's' | 'xs';
9
+ width: String | undefined;
10
+ height: String | undefined;
11
+ ngOnInit(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDIconComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<IDIconComponent, "id-icon", never, { "name": "name"; "color": "color"; "color2": "color2"; "size": "size"; "width": "width"; "height": "height"; }, {}, never, never>;
14
+ }
@@ -0,0 +1,8 @@
1
+ import '@inera/ids-core/components/icon/register';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "./icon.component";
4
+ export declare class IDIconModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IDIconModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IDIconModule, [typeof i1.IDIconComponent], never, [typeof i1.IDIconComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IDIconModule>;
8
+ }
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@inera/ids-angular",
3
+ "version": "1.0.0",
4
+ "peerDependencies": {
5
+ "@angular/common": "^12.2.0",
6
+ "@angular/core": "^12.2.0",
7
+ "@inera/ids-core": "^1.1.1"
8
+ },
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "license": "UNLICENSED",
13
+ "dependencies": {
14
+ "tslib": "^2.3.0"
15
+ },
16
+ "main": "bundles/inera-ids-angular.umd.js",
17
+ "module": "fesm2015/inera-ids-angular.js",
18
+ "es2015": "fesm2015/inera-ids-angular.js",
19
+ "esm2015": "esm2015/inera-ids-angular.js",
20
+ "fesm2015": "fesm2015/inera-ids-angular.js",
21
+ "typings": "inera-ids-angular.d.ts",
22
+ "sideEffects": false
23
+ }
@@ -0,0 +1,35 @@
1
+ export * from './lib/alert/alert.component';
2
+ export * from './lib/alert/alert.module';
3
+ export * from './lib/button/button.component';
4
+ export * from './lib/button/button.module';
5
+ export * from './lib/button-group/button-group.component';
6
+ export * from './lib/button-group/button-group.module';
7
+ export * from './lib/icon/icon.component';
8
+ export * from './lib/icon/icon.module';
9
+ export * from './lib/form/input/input.component';
10
+ export * from './lib/form/input/input.module';
11
+ export * from './lib/form/checkbox/checkbox.component';
12
+ export * from './lib/form/checkbox/checkbox.module';
13
+ export * from './lib/form/checkbox-group/checkbox-group.component';
14
+ export * from './lib/form/checkbox-group/checkbox-group.module';
15
+ export * from './lib/form/error-message/error-message.component';
16
+ export * from './lib/form/error-message/error-message.module';
17
+ export * from './lib/form/radio/radio.component';
18
+ export * from './lib/form/radio/radio-group.component';
19
+ export * from './lib/form/radio/radio.module';
20
+ export * from './lib/form/range/range.component';
21
+ export * from './lib/form/range/range.module';
22
+ export * from './lib/form/select/select.component';
23
+ export * from './lib/form/select/select.module';
24
+ export * from './lib/form/select-multiple/select-multiple.component';
25
+ export * from './lib/form/select-multiple/select-multiple.module';
26
+ export * from './lib/form/spinner/spinner.component';
27
+ export * from './lib/form/spinner/spinner.module';
28
+ export * from './lib/form/time/time.component';
29
+ export * from './lib/form/time/time.module';
30
+ export * from './lib/form/textarea/textarea.component';
31
+ export * from './lib/form/textarea/textarea.module';
32
+ export * from './lib/grid/row/row.component';
33
+ export * from './lib/grid/row/row.module';
34
+ export * from './lib/grid/column/column.component';
35
+ export * from './lib/grid/column/column.module';