@carefirst/library 1.3.9 → 1.3.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (130) hide show
  1. package/.eslintrc.json +31 -0
  2. package/ng-package.json +8 -0
  3. package/package.json +11 -14
  4. package/src/lib/components/alert/alert.component.html +0 -0
  5. package/src/lib/components/alert/alert.component.scss +63 -0
  6. package/src/lib/components/alert/alert.component.spec.ts +23 -0
  7. package/src/lib/components/alert/alert.component.ts +73 -0
  8. package/src/lib/components/badge/badge.component.html +5 -0
  9. package/src/lib/components/badge/badge.component.scss +96 -0
  10. package/src/lib/components/badge/badge.component.spec.ts +23 -0
  11. package/src/lib/components/badge/badge.component.ts +61 -0
  12. package/src/lib/components/button/button.component.html +20 -0
  13. package/src/lib/components/button/button.component.scss +153 -0
  14. package/src/lib/components/button/button.component.spec.ts +21 -0
  15. package/src/lib/components/button/button.component.ts +94 -0
  16. package/src/lib/components/calendar/calendar.component.html +9 -0
  17. package/src/lib/components/calendar/calendar.component.scss +34 -0
  18. package/src/lib/components/calendar/calendar.component.spec.ts +23 -0
  19. package/src/lib/components/calendar/calendar.component.ts +53 -0
  20. package/src/lib/components/chat-bubble/chat-bubble.component.html +9 -0
  21. package/src/lib/components/chat-bubble/chat-bubble.component.scss +31 -0
  22. package/src/lib/components/chat-bubble/chat-bubble.component.spec.ts +23 -0
  23. package/src/lib/components/chat-bubble/chat-bubble.component.ts +43 -0
  24. package/src/lib/components/form-input/form-input.component.html +37 -0
  25. package/src/lib/components/form-input/form-input.component.scss +23 -0
  26. package/src/lib/components/form-input/form-input.component.spec.ts +23 -0
  27. package/src/lib/components/form-input/form-input.component.ts +95 -0
  28. package/src/lib/components/form-input-select/form-input-select.component.html +27 -0
  29. package/src/lib/components/form-input-select/form-input-select.component.scss +40 -0
  30. package/src/lib/components/form-input-select/form-input-select.component.spec.ts +23 -0
  31. package/src/lib/components/form-input-select/form-input-select.component.ts +61 -0
  32. package/src/lib/components/form-input-text-area/form-input-text-area.component.html +29 -0
  33. package/src/lib/components/form-input-text-area/form-input-text-area.component.scss +19 -0
  34. package/src/lib/components/form-input-text-area/form-input-text-area.component.spec.ts +23 -0
  35. package/src/lib/components/form-input-text-area/form-input-text-area.component.ts +76 -0
  36. package/src/lib/components/form-validation/form-validation.component.html +8 -0
  37. package/src/lib/components/form-validation/form-validation.component.scss +8 -0
  38. package/src/lib/components/form-validation/form-validation.component.spec.ts +23 -0
  39. package/src/lib/components/form-validation/form-validation.component.ts +34 -0
  40. package/src/lib/components/icon/icon.component.html +529 -0
  41. package/src/lib/components/icon/icon.component.scss +61 -0
  42. package/src/lib/components/icon/icon.component.spec.ts +21 -0
  43. package/src/lib/components/icon/icon.component.ts +40 -0
  44. package/src/lib/components/logo/logo.component.html +10 -0
  45. package/src/lib/components/logo/logo.component.scss +5 -0
  46. package/src/lib/components/logo/logo.component.spec.ts +23 -0
  47. package/src/lib/components/logo/logo.component.ts +21 -0
  48. package/src/lib/components/notification/notification.component.html +39 -0
  49. package/src/lib/components/notification/notification.component.scss +20 -0
  50. package/src/lib/components/notification/notification.component.spec.ts +21 -0
  51. package/src/lib/components/notification/notification.component.ts +23 -0
  52. package/src/lib/components/page/page.component.html +5 -0
  53. package/src/lib/components/page/page.component.scss +35 -0
  54. package/src/lib/components/page/page.component.spec.ts +21 -0
  55. package/src/lib/components/page/page.component.ts +42 -0
  56. package/src/lib/components/spacer/spacer.component.html +4 -0
  57. package/src/lib/components/spacer/spacer.component.scss +27 -0
  58. package/src/lib/components/spacer/spacer.component.spec.ts +21 -0
  59. package/src/lib/components/spacer/spacer.component.ts +43 -0
  60. package/src/lib/components/spinner/spinner.component.html +1 -0
  61. package/src/lib/components/spinner/spinner.component.scss +14 -0
  62. package/src/lib/components/spinner/spinner.component.spec.ts +23 -0
  63. package/src/lib/components/spinner/spinner.component.ts +33 -0
  64. package/src/lib/directives/button-loader.directive.spec.ts +8 -0
  65. package/src/lib/directives/button-loader.directive.ts +77 -0
  66. package/src/lib/interfaces/alert.interface.ts +20 -0
  67. package/src/lib/interfaces/icon.interface.ts +62 -0
  68. package/src/lib/interfaces/input.interface.ts +8 -0
  69. package/src/lib/interfaces/notification.interface.ts +15 -0
  70. package/src/lib/interfaces/spacer.interface.ts +6 -0
  71. package/src/lib/library.module.ts +66 -0
  72. package/src/lib/utils/attribute.util.ts +66 -0
  73. package/src/lib/utils/form-validators-utility.ts +186 -0
  74. package/{public-api.d.ts → src/public-api.ts} +18 -0
  75. package/tsconfig.lib.json +12 -0
  76. package/tsconfig.lib.prod.json +10 -0
  77. package/tsconfig.spec.json +14 -0
  78. package/esm2022/carefirst-library.mjs +0 -2
  79. package/esm2022/lib/components/alert/alert.component.mjs +0 -56
  80. package/esm2022/lib/components/badge/badge.component.mjs +0 -39
  81. package/esm2022/lib/components/button/button.component.mjs +0 -87
  82. package/esm2022/lib/components/calendar/calendar.component.mjs +0 -39
  83. package/esm2022/lib/components/chat-bubble/chat-bubble.component.mjs +0 -31
  84. package/esm2022/lib/components/form-input/form-input.component.mjs +0 -87
  85. package/esm2022/lib/components/form-input-select/form-input-select.component.mjs +0 -46
  86. package/esm2022/lib/components/form-input-text-area/form-input-text-area.component.mjs +0 -61
  87. package/esm2022/lib/components/form-validation/form-validation.component.mjs +0 -20
  88. package/esm2022/lib/components/icon/icon.component.mjs +0 -29
  89. package/esm2022/lib/components/logo/logo.component.mjs +0 -18
  90. package/esm2022/lib/components/notification/notification.component.mjs +0 -22
  91. package/esm2022/lib/components/page/page.component.mjs +0 -31
  92. package/esm2022/lib/components/spacer/spacer.component.mjs +0 -30
  93. package/esm2022/lib/components/spinner/spinner.component.mjs +0 -19
  94. package/esm2022/lib/directives/button-loader.directive.mjs +0 -41
  95. package/esm2022/lib/interfaces/alert.interface.mjs +0 -2
  96. package/esm2022/lib/interfaces/icon.interface.mjs +0 -52
  97. package/esm2022/lib/interfaces/input.interface.mjs +0 -2
  98. package/esm2022/lib/interfaces/notification.interface.mjs +0 -2
  99. package/esm2022/lib/interfaces/spacer.interface.mjs +0 -2
  100. package/esm2022/lib/library.module.mjs +0 -100
  101. package/esm2022/lib/utils/attribute.util.mjs +0 -34
  102. package/esm2022/lib/utils/form-validators-utility.mjs +0 -113
  103. package/esm2022/public-api.mjs +0 -24
  104. package/fesm2022/carefirst-library.mjs +0 -885
  105. package/fesm2022/carefirst-library.mjs.map +0 -1
  106. package/index.d.ts +0 -2
  107. package/lib/components/alert/alert.component.d.ts +0 -14
  108. package/lib/components/badge/badge.component.d.ts +0 -15
  109. package/lib/components/button/button.component.d.ts +0 -30
  110. package/lib/components/calendar/calendar.component.d.ts +0 -15
  111. package/lib/components/chat-bubble/chat-bubble.component.d.ts +0 -13
  112. package/lib/components/form-input/form-input.component.d.ts +0 -37
  113. package/lib/components/form-input-select/form-input-select.component.d.ts +0 -21
  114. package/lib/components/form-input-text-area/form-input-text-area.component.d.ts +0 -27
  115. package/lib/components/form-validation/form-validation.component.d.ts +0 -9
  116. package/lib/components/icon/icon.component.d.ts +0 -13
  117. package/lib/components/logo/logo.component.d.ts +0 -7
  118. package/lib/components/notification/notification.component.d.ts +0 -9
  119. package/lib/components/page/page.component.d.ts +0 -13
  120. package/lib/components/spacer/spacer.component.d.ts +0 -14
  121. package/lib/components/spinner/spinner.component.d.ts +0 -9
  122. package/lib/directives/button-loader.directive.d.ts +0 -12
  123. package/lib/interfaces/alert.interface.d.ts +0 -11
  124. package/lib/interfaces/icon.interface.d.ts +0 -4
  125. package/lib/interfaces/input.interface.d.ts +0 -4
  126. package/lib/interfaces/notification.interface.d.ts +0 -11
  127. package/lib/interfaces/spacer.interface.d.ts +0 -3
  128. package/lib/library.module.d.ts +0 -25
  129. package/lib/utils/attribute.util.d.ts +0 -4
  130. package/lib/utils/form-validators-utility.d.ts +0 -8
@@ -1,24 +0,0 @@
1
- export * from './lib/library.module';
2
- export * from './lib/directives/button-loader.directive';
3
- export * from './lib/utils/form-validators-utility';
4
- export * from './lib/components/alert/alert.component';
5
- export * from './lib/components/page/page.component';
6
- export * from './lib/components/button/button.component';
7
- export * from './lib/components/spacer/spacer.component';
8
- export * from './lib/components/icon/icon.component';
9
- export * from './lib/components/notification/notification.component';
10
- export * from './lib/components/logo/logo.component';
11
- export * from './lib/components/calendar/calendar.component';
12
- export * from './lib/components/form-validation/form-validation.component';
13
- export * from './lib/components/form-input/form-input.component';
14
- export * from './lib/components/form-input-select/form-input-select.component';
15
- export * from './lib/components/form-input-text-area/form-input-text-area.component';
16
- export * from './lib/components/chat-bubble/chat-bubble.component';
17
- export * from './lib/components/badge/badge.component';
18
- export * from './lib/components/spinner/spinner.component';
19
- export * as CFAlertI from './lib/interfaces/alert.interface';
20
- export * as CFIconI from './lib/interfaces/icon.interface';
21
- export * as CFSpacerI from './lib/interfaces/spacer.interface';
22
- export * as CFNotificationI from './lib/interfaces/notification.interface';
23
- export * as CFInputI from './lib/interfaces/input.interface';
24
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2NhcmVmaXJzdC9saWJyYXJ5L3NyYy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQWNBLGNBQWMsc0JBQXNCLENBQUM7QUFFckMsY0FBYywwQ0FBMEMsQ0FBQztBQUV6RCxjQUFjLHFDQUFxQyxDQUFDO0FBRXBELGNBQWMsd0NBQXdDLENBQUM7QUFDdkQsY0FBYyxzQ0FBc0MsQ0FBQztBQUNyRCxjQUFjLDBDQUEwQyxDQUFDO0FBQ3pELGNBQWMsMENBQTBDLENBQUM7QUFDekQsY0FBYyxzQ0FBc0MsQ0FBQztBQUNyRCxjQUFjLHNEQUFzRCxDQUFDO0FBQ3JFLGNBQWMsc0NBQXNDLENBQUM7QUFDckQsY0FBYyw4Q0FBOEMsQ0FBQztBQUM3RCxjQUFjLDREQUE0RCxDQUFDO0FBQzNFLGNBQWMsa0RBQWtELENBQUM7QUFDakUsY0FBYyxnRUFBZ0UsQ0FBQztBQUMvRSxjQUFjLHNFQUFzRSxDQUFDO0FBQ3JGLGNBQWMsb0RBQW9ELENBQUM7QUFDbkUsY0FBYyx3Q0FBd0MsQ0FBQztBQUN2RCxjQUFjLDRDQUE0QyxDQUFDO0FBRTNELE9BQU8sS0FBSyxRQUFRLE1BQU0sa0NBQWtDLENBQUM7QUFDN0QsT0FBTyxLQUFLLE9BQU8sTUFBTSxpQ0FBaUMsQ0FBQztBQUMzRCxPQUFPLEtBQUssU0FBUyxNQUFNLG1DQUFtQyxDQUFDO0FBQy9ELE9BQU8sS0FBSyxlQUFlLE1BQU0seUNBQXlDLENBQUM7QUFDM0UsT0FBTyxLQUFLLFFBQVEsTUFBTSxrQ0FBa0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4gKiBQdWJsaWMgQVBJIFN1cmZhY2Ugb2YgbGlicmFyeVxuICovXG5cbi8qPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT1cbj09PT09PT09PT09PT09PT09PT09PSBVU0FHRSA9PT09PT09PT09PT09PT09PT09PT1cbkluY2x1ZGUgaW4gZ2xvYmFsLnNjc3M6XG4gIC0gQGltcG9ydCAnLi4vbm9kZV9tb2R1bGVzL0BjYXJlZmlyc3QvbGlicmFyeS9wdWJsaWMvc3R5bGVzL2luZGV4LnNjc3MnO1xuQWRkIHRvIGFwcCBtb2R1bGU6XG4gIC0gaW1wb3J0IHsgQ2FyZUZpcnN0TGlicmFyeU1vZHVsZSB9IGZyb20gJ0BjYXJlZmlyc3QvbGlicmFyeSc7XG4gIC0gQWRkIFwiQ2FyZUZpcnN0TGlicmFyeU1vZHVsZVwiIHRvIGltcG9ydHNcbj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09Ki9cblxuLy8tLS0gTW9kdWxlc1xuZXhwb3J0ICogZnJvbSAnLi9saWIvbGlicmFyeS5tb2R1bGUnO1xuLy8tLS0gRGlyZWN0aXZlc1xuZXhwb3J0ICogZnJvbSAnLi9saWIvZGlyZWN0aXZlcy9idXR0b24tbG9hZGVyLmRpcmVjdGl2ZSc7XG4vLyAtLS0gVXRpbGl0aWVzXG5leHBvcnQgKiBmcm9tICcuL2xpYi91dGlscy9mb3JtLXZhbGlkYXRvcnMtdXRpbGl0eSc7XG4vLy0tLSBDb21wb25lbnRzXG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2FsZXJ0L2FsZXJ0LmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3BhZ2UvcGFnZS5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9idXR0b24vYnV0dG9uLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3NwYWNlci9zcGFjZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvaWNvbi9pY29uLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL25vdGlmaWNhdGlvbi9ub3RpZmljYXRpb24uY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvbG9nby9sb2dvLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NhbGVuZGFyL2NhbGVuZGFyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2Zvcm0tdmFsaWRhdGlvbi9mb3JtLXZhbGlkYXRpb24uY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvZm9ybS1pbnB1dC9mb3JtLWlucHV0LmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2Zvcm0taW5wdXQtc2VsZWN0L2Zvcm0taW5wdXQtc2VsZWN0LmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2Zvcm0taW5wdXQtdGV4dC1hcmVhL2Zvcm0taW5wdXQtdGV4dC1hcmVhLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2NoYXQtYnViYmxlL2NoYXQtYnViYmxlLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2JhZGdlL2JhZGdlLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3NwaW5uZXIvc3Bpbm5lci5jb21wb25lbnQnO1xuLy8tLS0gSW50ZXJmYWNlc1xuZXhwb3J0ICogYXMgQ0ZBbGVydEkgZnJvbSAnLi9saWIvaW50ZXJmYWNlcy9hbGVydC5pbnRlcmZhY2UnO1xuZXhwb3J0ICogYXMgQ0ZJY29uSSBmcm9tICcuL2xpYi9pbnRlcmZhY2VzL2ljb24uaW50ZXJmYWNlJztcbmV4cG9ydCAqIGFzIENGU3BhY2VySSBmcm9tICcuL2xpYi9pbnRlcmZhY2VzL3NwYWNlci5pbnRlcmZhY2UnO1xuZXhwb3J0ICogYXMgQ0ZOb3RpZmljYXRpb25JIGZyb20gJy4vbGliL2ludGVyZmFjZXMvbm90aWZpY2F0aW9uLmludGVyZmFjZSc7XG5leHBvcnQgKiBhcyBDRklucHV0SSBmcm9tICcuL2xpYi9pbnRlcmZhY2VzL2lucHV0LmludGVyZmFjZSc7XG4iXX0=