angular-matecu 4.0.0 → 4.0.2

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 (114) hide show
  1. package/README.md +73 -26
  2. package/karma.conf.js +44 -0
  3. package/ng-package.json +13 -0
  4. package/package.json +6 -21
  5. package/src/lib/components/matecu-alert-box/matecu-alert-box.component.html +11 -0
  6. package/src/lib/components/matecu-alert-box/matecu-alert-box.component.scss +39 -0
  7. package/src/lib/components/matecu-alert-box/matecu-alert-box.component.spec.ts +25 -0
  8. package/src/lib/components/matecu-alert-box/matecu-alert-box.component.ts +60 -0
  9. package/src/lib/components/matecu-alert-dialog/matecu-alert-dialog.component.html +14 -0
  10. package/src/lib/components/matecu-alert-dialog/matecu-alert-dialog.component.scss +5 -0
  11. package/src/lib/components/matecu-alert-dialog/matecu-alert-dialog.component.spec.ts +25 -0
  12. package/src/lib/components/matecu-alert-dialog/matecu-alert-dialog.component.ts +53 -0
  13. package/src/lib/components/matecu-alert-snack-bar/matecu-alert-snack-bar.component.html +8 -0
  14. package/src/lib/components/matecu-alert-snack-bar/matecu-alert-snack-bar.component.scss +34 -0
  15. package/src/lib/components/matecu-alert-snack-bar/matecu-alert-snack-bar.component.spec.ts +25 -0
  16. package/src/lib/components/matecu-alert-snack-bar/matecu-alert-snack-bar.component.ts +45 -0
  17. package/src/lib/components/matecu-spinner/matecu-spinner.component.css +15 -0
  18. package/src/lib/components/matecu-spinner/matecu-spinner.component.html +35 -0
  19. package/src/lib/components/matecu-spinner/matecu-spinner.component.spec.ts +25 -0
  20. package/src/lib/components/matecu-spinner/matecu-spinner.component.ts +50 -0
  21. package/src/lib/components/matecu-spinner/spinner-loader.component.scss +13 -0
  22. package/src/lib/components/matecu-topbar-action/matecu-topbar-action.component.html +1 -0
  23. package/src/lib/components/matecu-topbar-action/matecu-topbar-action.component.scss +19 -0
  24. package/src/lib/components/matecu-topbar-action/matecu-topbar-action.component.spec.ts +25 -0
  25. package/src/lib/components/matecu-topbar-action/matecu-topbar-action.component.ts +14 -0
  26. package/src/lib/components/matecu-topbar-body/matecu-topbar-body.component.html +1 -0
  27. package/src/lib/components/matecu-topbar-body/matecu-topbar-body.component.scss +14 -0
  28. package/src/lib/components/matecu-topbar-body/matecu-topbar-body.component.spec.ts +25 -0
  29. package/src/lib/components/matecu-topbar-body/matecu-topbar-body.component.ts +11 -0
  30. package/src/lib/components/matecu-topbar-fab/matecu-topbar-fab.component.html +3 -0
  31. package/src/lib/components/matecu-topbar-fab/matecu-topbar-fab.component.scss +19 -0
  32. package/src/lib/components/matecu-topbar-fab/matecu-topbar-fab.component.spec.ts +25 -0
  33. package/src/lib/components/matecu-topbar-fab/matecu-topbar-fab.component.ts +31 -0
  34. package/src/lib/components/matecu-topbar-header-column/matecu-topbar-header-column.component.html +1 -0
  35. package/src/lib/components/matecu-topbar-header-column/matecu-topbar-header-column.component.scss +8 -0
  36. package/src/lib/components/matecu-topbar-header-column/matecu-topbar-header-column.component.spec.ts +23 -0
  37. package/src/lib/components/matecu-topbar-header-column/matecu-topbar-header-column.component.ts +11 -0
  38. package/src/lib/components/matecu-topbar-header-row/matecu-topbar-header-row.component.html +13 -0
  39. package/src/lib/components/matecu-topbar-header-row/matecu-topbar-header-row.component.scss +34 -0
  40. package/src/lib/components/matecu-topbar-header-row/matecu-topbar-header-row.component.spec.ts +23 -0
  41. package/src/lib/components/matecu-topbar-header-row/matecu-topbar-header-row.component.ts +18 -0
  42. package/src/lib/components/matecu-topbar-layout/matecu-topbar-layout.component.html +7 -0
  43. package/src/lib/components/matecu-topbar-layout/matecu-topbar-layout.component.scss +49 -0
  44. package/src/lib/components/matecu-topbar-layout/matecu-topbar-layout.component.spec.ts +25 -0
  45. package/src/lib/components/matecu-topbar-layout/matecu-topbar-layout.component.ts +112 -0
  46. package/src/lib/components/matecu-topbar-search/matecu-topbar-search.component.html +29 -0
  47. package/src/lib/components/matecu-topbar-search/matecu-topbar-search.component.scss +90 -0
  48. package/src/lib/components/matecu-topbar-search/matecu-topbar-search.component.spec.ts +25 -0
  49. package/src/lib/components/matecu-topbar-search/matecu-topbar-search.component.ts +92 -0
  50. package/src/lib/components/matecu-topbar-title/matecu-topbar-title.component.html +1 -0
  51. package/src/lib/components/matecu-topbar-title/matecu-topbar-title.component.scss +91 -0
  52. package/src/lib/components/matecu-topbar-title/matecu-topbar-title.component.spec.ts +25 -0
  53. package/src/lib/components/matecu-topbar-title/matecu-topbar-title.component.ts +14 -0
  54. package/src/lib/modules/matecu-alert-box/matecu-alert-box.module.ts +16 -0
  55. package/src/lib/modules/matecu-spinner/matecu-spinner.module.ts +14 -0
  56. package/src/lib/modules/matecu-topbar-layout/matecu-topbar-layout.module.ts +45 -0
  57. package/src/lib/services/matecu-snack-bar.service.spec.ts +16 -0
  58. package/src/lib/services/matecu-snack-bar.service.ts +66 -0
  59. package/src/lib/services/matecu-spinner.service.spec.ts +16 -0
  60. package/src/lib/services/matecu-spinner.service.ts +40 -0
  61. package/src/lib/types/matecu-alert-dialog.ts +10 -0
  62. package/{lib/types/matecu-alert-snackbar.d.ts → src/lib/types/matecu-alert-snackbar.ts} +5 -4
  63. package/src/lib/types/matecu-altert-box-type.ts +6 -0
  64. package/{public-api.d.ts → src/public-api.ts} +7 -0
  65. package/src/test.ts +17 -0
  66. package/tsconfig.lib.json +24 -0
  67. package/tsconfig.lib.prod.json +10 -0
  68. package/tsconfig.spec.json +17 -0
  69. package/tslint.json +17 -0
  70. package/angular-matecu-4.0.0.tgz +0 -0
  71. package/esm2022/angular-matecu.mjs +0 -5
  72. package/esm2022/lib/components/matecu-alert-box/matecu-alert-box.component.mjs +0 -67
  73. package/esm2022/lib/components/matecu-alert-dialog/matecu-alert-dialog.component.mjs +0 -54
  74. package/esm2022/lib/components/matecu-alert-snack-bar/matecu-alert-snack-bar.component.mjs +0 -43
  75. package/esm2022/lib/components/matecu-spinner/matecu-spinner.component.mjs +0 -58
  76. package/esm2022/lib/components/matecu-topbar-action/matecu-topbar-action.component.mjs +0 -18
  77. package/esm2022/lib/components/matecu-topbar-body/matecu-topbar-body.component.mjs +0 -17
  78. package/esm2022/lib/components/matecu-topbar-fab/matecu-topbar-fab.component.mjs +0 -43
  79. package/esm2022/lib/components/matecu-topbar-header-column/matecu-topbar-header-column.component.mjs +0 -12
  80. package/esm2022/lib/components/matecu-topbar-header-row/matecu-topbar-header-row.component.mjs +0 -29
  81. package/esm2022/lib/components/matecu-topbar-layout/matecu-topbar-layout.component.mjs +0 -112
  82. package/esm2022/lib/components/matecu-topbar-search/matecu-topbar-search.component.mjs +0 -93
  83. package/esm2022/lib/components/matecu-topbar-title/matecu-topbar-title.component.mjs +0 -18
  84. package/esm2022/lib/modules/matecu-alert-box/matecu-alert-box.module.mjs +0 -24
  85. package/esm2022/lib/modules/matecu-spinner/matecu-spinner.module.mjs +0 -22
  86. package/esm2022/lib/modules/matecu-topbar-layout/matecu-topbar-layout.module.mjs +0 -83
  87. package/esm2022/lib/services/matecu-snack-bar.service.mjs +0 -66
  88. package/esm2022/lib/services/matecu-spinner.service.mjs +0 -44
  89. package/esm2022/lib/types/matecu-alert-dialog.mjs +0 -2
  90. package/esm2022/lib/types/matecu-alert-snackbar.mjs +0 -2
  91. package/esm2022/lib/types/matecu-altert-box-type.mjs +0 -8
  92. package/esm2022/public-api.mjs +0 -32
  93. package/fesm2022/angular-matecu.mjs +0 -735
  94. package/fesm2022/angular-matecu.mjs.map +0 -1
  95. package/index.d.ts +0 -5
  96. package/lib/components/matecu-alert-box/matecu-alert-box.component.d.ts +0 -19
  97. package/lib/components/matecu-alert-dialog/matecu-alert-dialog.component.d.ts +0 -22
  98. package/lib/components/matecu-alert-snack-bar/matecu-alert-snack-bar.component.d.ts +0 -20
  99. package/lib/components/matecu-spinner/matecu-spinner.component.d.ts +0 -20
  100. package/lib/components/matecu-topbar-action/matecu-topbar-action.component.d.ts +0 -9
  101. package/lib/components/matecu-topbar-body/matecu-topbar-body.component.d.ts +0 -6
  102. package/lib/components/matecu-topbar-fab/matecu-topbar-fab.component.d.ts +0 -12
  103. package/lib/components/matecu-topbar-header-column/matecu-topbar-header-column.component.d.ts +0 -5
  104. package/lib/components/matecu-topbar-header-row/matecu-topbar-header-row.component.d.ts +0 -8
  105. package/lib/components/matecu-topbar-layout/matecu-topbar-layout.component.d.ts +0 -27
  106. package/lib/components/matecu-topbar-search/matecu-topbar-search.component.d.ts +0 -27
  107. package/lib/components/matecu-topbar-title/matecu-topbar-title.component.d.ts +0 -9
  108. package/lib/modules/matecu-alert-box/matecu-alert-box.module.d.ts +0 -14
  109. package/lib/modules/matecu-spinner/matecu-spinner.module.d.ts +0 -8
  110. package/lib/modules/matecu-topbar-layout/matecu-topbar-layout.module.d.ts +0 -19
  111. package/lib/services/matecu-snack-bar.service.d.ts +0 -17
  112. package/lib/services/matecu-spinner.service.d.ts +0 -15
  113. package/lib/types/matecu-alert-dialog.d.ts +0 -9
  114. package/lib/types/matecu-altert-box-type.d.ts +0 -6
@@ -1,32 +0,0 @@
1
- /*
2
- * Public API Surface of angular-matecu
3
- */
4
- /**
5
- * spinner
6
- */
7
- export * from './lib/modules/matecu-spinner/matecu-spinner.module';
8
- export * from './lib/components/matecu-spinner/matecu-spinner.component';
9
- export * from './lib/services/matecu-spinner.service';
10
- /**
11
- * topbar-layout
12
- */
13
- export * from './lib/modules/matecu-topbar-layout/matecu-topbar-layout.module';
14
- export * from './lib/components/matecu-topbar-body/matecu-topbar-body.component';
15
- export * from './lib/components/matecu-topbar-fab/matecu-topbar-fab.component';
16
- export * from './lib/components/matecu-topbar-layout/matecu-topbar-layout.component';
17
- export * from './lib/components/matecu-topbar-title/matecu-topbar-title.component';
18
- export * from './lib/components/matecu-topbar-search/matecu-topbar-search.component';
19
- export * from './lib/components/matecu-topbar-action/matecu-topbar-action.component';
20
- export * from './lib/components/matecu-topbar-header-row/matecu-topbar-header-row.component';
21
- export * from './lib/components/matecu-topbar-header-column/matecu-topbar-header-column.component';
22
- /**
23
- * alert-box
24
- */
25
- export * from './lib/modules/matecu-alert-box/matecu-alert-box.module';
26
- export * from './lib/components/matecu-alert-box/matecu-alert-box.component';
27
- export * from './lib/components/matecu-alert-dialog/matecu-alert-dialog.component';
28
- export * from './lib/components/matecu-alert-snack-bar/matecu-alert-snack-bar.component';
29
- export * from './lib/types/matecu-altert-box-type';
30
- export * from './lib/types/matecu-alert-dialog';
31
- export * from './lib/services/matecu-snack-bar.service';
32
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItbWF0ZWN1L3NyYy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUg7O0dBRUc7QUFDSCxjQUFjLG9EQUFvRCxDQUFDO0FBQ25FLGNBQWMsMERBQTBELENBQUM7QUFDekUsY0FBYyx1Q0FBdUMsQ0FBQztBQUV0RDs7R0FFRztBQUNILGNBQWMsZ0VBQWdFLENBQUM7QUFDL0UsY0FBYyxrRUFBa0UsQ0FBQztBQUNqRixjQUFjLGdFQUFnRSxDQUFDO0FBQy9FLGNBQWMsc0VBQXNFLENBQUM7QUFDckYsY0FBYyxvRUFBb0UsQ0FBQztBQUNuRixjQUFjLHNFQUFzRSxDQUFDO0FBQ3JGLGNBQWMsc0VBQXNFLENBQUM7QUFDckYsY0FBYyw4RUFBOEUsQ0FBQztBQUM3RixjQUFjLG9GQUFvRixDQUFDO0FBRW5HOztHQUVHO0FBRUgsY0FBYyx3REFBd0QsQ0FBQztBQUN2RSxjQUFjLDhEQUE4RCxDQUFDO0FBQzdFLGNBQWMsb0VBQW9FLENBQUM7QUFDbkYsY0FBYywwRUFBMEUsQ0FBQztBQUN6RixjQUFjLG9DQUFvQyxDQUFDO0FBQ25ELGNBQWMsaUNBQWlDLENBQUM7QUFDaEQsY0FBYyx5Q0FBeUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4gKiBQdWJsaWMgQVBJIFN1cmZhY2Ugb2YgYW5ndWxhci1tYXRlY3VcbiAqL1xuXG4vKipcbiAqICBzcGlubmVyXG4gKi9cbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZHVsZXMvbWF0ZWN1LXNwaW5uZXIvbWF0ZWN1LXNwaW5uZXIubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvbWF0ZWN1LXNwaW5uZXIvbWF0ZWN1LXNwaW5uZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3NlcnZpY2VzL21hdGVjdS1zcGlubmVyLnNlcnZpY2UnO1xuXG4vKipcbiAqICB0b3BiYXItbGF5b3V0XG4gKi9cbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZHVsZXMvbWF0ZWN1LXRvcGJhci1sYXlvdXQvbWF0ZWN1LXRvcGJhci1sYXlvdXQubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvbWF0ZWN1LXRvcGJhci1ib2R5L21hdGVjdS10b3BiYXItYm9keS5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9tYXRlY3UtdG9wYmFyLWZhYi9tYXRlY3UtdG9wYmFyLWZhYi5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9tYXRlY3UtdG9wYmFyLWxheW91dC9tYXRlY3UtdG9wYmFyLWxheW91dC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9tYXRlY3UtdG9wYmFyLXRpdGxlL21hdGVjdS10b3BiYXItdGl0bGUuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvbWF0ZWN1LXRvcGJhci1zZWFyY2gvbWF0ZWN1LXRvcGJhci1zZWFyY2guY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvbWF0ZWN1LXRvcGJhci1hY3Rpb24vbWF0ZWN1LXRvcGJhci1hY3Rpb24uY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvbWF0ZWN1LXRvcGJhci1oZWFkZXItcm93L21hdGVjdS10b3BiYXItaGVhZGVyLXJvdy5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9tYXRlY3UtdG9wYmFyLWhlYWRlci1jb2x1bW4vbWF0ZWN1LXRvcGJhci1oZWFkZXItY29sdW1uLmNvbXBvbmVudCc7XG5cbi8qKlxuICogIGFsZXJ0LWJveFxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vbGliL21vZHVsZXMvbWF0ZWN1LWFsZXJ0LWJveC9tYXRlY3UtYWxlcnQtYm94Lm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL21hdGVjdS1hbGVydC1ib3gvbWF0ZWN1LWFsZXJ0LWJveC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9tYXRlY3UtYWxlcnQtZGlhbG9nL21hdGVjdS1hbGVydC1kaWFsb2cuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvbWF0ZWN1LWFsZXJ0LXNuYWNrLWJhci9tYXRlY3UtYWxlcnQtc25hY2stYmFyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi90eXBlcy9tYXRlY3UtYWx0ZXJ0LWJveC10eXBlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3R5cGVzL21hdGVjdS1hbGVydC1kaWFsb2cnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvc2VydmljZXMvbWF0ZWN1LXNuYWNrLWJhci5zZXJ2aWNlJztcbiJdfQ==