@enigmatry/entry-components 1.15.1-preview.8 → 15.0.0-preview

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 (207) hide show
  1. package/README.md +2 -1
  2. package/assets/fonts/Montserrat/Montserrat-bold.eot +0 -0
  3. package/assets/fonts/Montserrat/Montserrat-bold.ttf +0 -0
  4. package/assets/fonts/Montserrat/Montserrat-bold.woff +0 -0
  5. package/assets/fonts/Montserrat/Montserrat-bold.woff2 +0 -0
  6. package/assets/fonts/OpenSans/OpenSans-bold.eot +0 -0
  7. package/assets/fonts/OpenSans/OpenSans-bold.ttf +0 -0
  8. package/assets/fonts/OpenSans/OpenSans-bold.woff +0 -0
  9. package/assets/fonts/OpenSans/OpenSans-bold.woff2 +0 -0
  10. package/assets/fonts/OpenSans/OpenSans-normal.eot +0 -0
  11. package/assets/fonts/OpenSans/OpenSans-normal.ttf +0 -0
  12. package/assets/fonts/OpenSans/OpenSans-normal.woff +0 -0
  13. package/assets/fonts/OpenSans/OpenSans-normal.woff2 +0 -0
  14. package/assets/fonts/Roboto/Roboto-bold.woff2 +0 -0
  15. package/assets/fonts/Roboto/Roboto-normal.woff2 +0 -0
  16. package/button/README.md +47 -0
  17. package/button/entry-button-config.d.ts +26 -0
  18. package/button/entry-button.directive.d.ts +18 -0
  19. package/button/entry-button.module.d.ts +9 -0
  20. package/{header → button}/index.d.ts +1 -1
  21. package/button/public-api.d.ts +3 -0
  22. package/dialog/README.md +2 -2
  23. package/dialog/entry-dialog-buttons-alignment.type.d.ts +1 -1
  24. package/dialog/entry-dialog-config.model.d.ts +1 -1
  25. package/dialog/entry-dialog.module.d.ts +4 -1
  26. package/esm2020/{header/enigmatry-entry-components-header.mjs → button/enigmatry-entry-components-button.mjs} +1 -1
  27. package/esm2020/button/entry-button-config.mjs +22 -0
  28. package/esm2020/button/entry-button.directive.mjs +56 -0
  29. package/esm2020/button/entry-button.module.mjs +28 -0
  30. package/esm2020/button/public-api.mjs +4 -0
  31. package/esm2020/dialog/dialogs/entry-dialog.component.mjs +8 -5
  32. package/esm2020/dialog/entry-dialog-buttons-alignment.type.mjs +1 -2
  33. package/esm2020/dialog/entry-dialog-config.model.mjs +3 -3
  34. package/esm2020/dialog/entry-dialog.module.mjs +16 -4
  35. package/esm2020/file-input/enigmatry-entry-components-file-input.mjs +5 -0
  36. package/esm2020/file-input/entry-file-input.component.mjs +197 -0
  37. package/esm2020/file-input/entry-file-input.module.mjs +40 -0
  38. package/esm2020/file-input/public-api.mjs +3 -0
  39. package/esm2020/permissions/enigmatry-entry-components-permissions.mjs +5 -0
  40. package/esm2020/permissions/permission-type.mjs +2 -0
  41. package/esm2020/permissions/permission.directive.mjs +35 -0
  42. package/esm2020/permissions/permission.guard.mjs +14 -0
  43. package/esm2020/permissions/permission.module.mjs +29 -0
  44. package/esm2020/permissions/permission.pipe.mjs +20 -0
  45. package/esm2020/permissions/permission.service.mjs +3 -0
  46. package/esm2020/permissions/public-api.mjs +6 -0
  47. package/esm2020/public-api.mjs +4 -3
  48. package/esm2020/search-filter/entry-search-filter.component.mjs +8 -6
  49. package/esm2020/search-filter/entry-search-filter.module.mjs +12 -4
  50. package/esm2020/search-filter/search-filter-input/search-filter-input.component.mjs +9 -4
  51. package/esm2020/table/components/entry-cell/entry-cell.component.mjs +23 -0
  52. package/esm2020/table/components/entry-cell-context-menu/entry-cell-context-menu.component.mjs +33 -0
  53. package/esm2020/table/components/entry-cell-formatted-value/entry-cell-formatted-value.component.mjs +25 -0
  54. package/esm2020/table/components/entry-table/entry-table.component.mjs +248 -0
  55. package/esm2020/table/components/index.mjs +5 -0
  56. package/esm2020/table/enigmatry-entry-components-table.mjs +5 -0
  57. package/esm2020/table/entry-table.module.mjs +84 -0
  58. package/esm2020/table/interfaces/cell-template.mjs +2 -0
  59. package/esm2020/table/interfaces/column-def.mjs +2 -0
  60. package/esm2020/table/interfaces/column-sort-prop.mjs +2 -0
  61. package/esm2020/table/interfaces/column-type-parameter.mjs +2 -0
  62. package/esm2020/table/interfaces/column-type.mjs +2 -0
  63. package/esm2020/table/interfaces/context-menu-item.mjs +2 -0
  64. package/esm2020/table/interfaces/entry-table-config.mjs +18 -0
  65. package/esm2020/table/interfaces/index.mjs +13 -0
  66. package/esm2020/table/interfaces/paged-query.mjs +34 -0
  67. package/esm2020/table/interfaces/pagination.mjs +2 -0
  68. package/esm2020/table/interfaces/row-class-formatter.mjs +2 -0
  69. package/esm2020/table/interfaces/row-context-menu-formatter.mjs +2 -0
  70. package/esm2020/table/interfaces/row-selection-formatter.mjs +2 -0
  71. package/esm2020/table/public-api.mjs +4 -0
  72. package/esm2020/validation/entry-form-errors.component.mjs +7 -3
  73. package/fesm2015/enigmatry-entry-components-button.mjs +110 -0
  74. package/fesm2015/enigmatry-entry-components-button.mjs.map +1 -0
  75. package/fesm2015/enigmatry-entry-components-dialog.mjs +22 -7
  76. package/fesm2015/enigmatry-entry-components-dialog.mjs.map +1 -1
  77. package/fesm2015/enigmatry-entry-components-file-input.mjs +237 -0
  78. package/fesm2015/enigmatry-entry-components-file-input.mjs.map +1 -0
  79. package/fesm2015/enigmatry-entry-components-permissions.mjs +98 -0
  80. package/fesm2015/enigmatry-entry-components-permissions.mjs.map +1 -0
  81. package/fesm2015/enigmatry-entry-components-search-filter.mjs +24 -9
  82. package/fesm2015/enigmatry-entry-components-search-filter.mjs.map +1 -1
  83. package/fesm2015/enigmatry-entry-components-table.mjs +459 -0
  84. package/fesm2015/enigmatry-entry-components-table.mjs.map +1 -0
  85. package/fesm2015/enigmatry-entry-components-validation.mjs +6 -2
  86. package/fesm2015/enigmatry-entry-components-validation.mjs.map +1 -1
  87. package/fesm2015/enigmatry-entry-components.mjs +3 -2
  88. package/fesm2015/enigmatry-entry-components.mjs.map +1 -1
  89. package/fesm2020/enigmatry-entry-components-button.mjs +107 -0
  90. package/fesm2020/enigmatry-entry-components-button.mjs.map +1 -0
  91. package/fesm2020/enigmatry-entry-components-dialog.mjs +22 -7
  92. package/fesm2020/enigmatry-entry-components-dialog.mjs.map +1 -1
  93. package/fesm2020/enigmatry-entry-components-file-input.mjs +240 -0
  94. package/fesm2020/enigmatry-entry-components-file-input.mjs.map +1 -0
  95. package/fesm2020/enigmatry-entry-components-permissions.mjs +97 -0
  96. package/fesm2020/enigmatry-entry-components-permissions.mjs.map +1 -0
  97. package/fesm2020/enigmatry-entry-components-search-filter.mjs +24 -9
  98. package/fesm2020/enigmatry-entry-components-search-filter.mjs.map +1 -1
  99. package/fesm2020/enigmatry-entry-components-table.mjs +450 -0
  100. package/fesm2020/enigmatry-entry-components-table.mjs.map +1 -0
  101. package/fesm2020/enigmatry-entry-components-validation.mjs +6 -2
  102. package/fesm2020/enigmatry-entry-components-validation.mjs.map +1 -1
  103. package/fesm2020/enigmatry-entry-components.mjs +3 -2
  104. package/fesm2020/enigmatry-entry-components.mjs.map +1 -1
  105. package/file-input/README.md +71 -0
  106. package/file-input/entry-file-input.component.d.ts +74 -0
  107. package/file-input/entry-file-input.module.d.ts +12 -0
  108. package/file-input/index.d.ts +5 -0
  109. package/file-input/public-api.d.ts +2 -0
  110. package/package.json +31 -15
  111. package/permissions/README.md +68 -0
  112. package/permissions/index.d.ts +5 -0
  113. package/permissions/permission-type.d.ts +3 -0
  114. package/permissions/permission.directive.d.ts +11 -0
  115. package/permissions/permission.guard.d.ts +2 -0
  116. package/permissions/permission.module.d.ts +9 -0
  117. package/permissions/permission.pipe.d.ts +11 -0
  118. package/permissions/permission.service.d.ts +4 -0
  119. package/permissions/public-api.d.ts +5 -0
  120. package/public-api.d.ts +3 -2
  121. package/search-filter/entry-search-filter.module.d.ts +4 -2
  122. package/search-filter/search-filter-input/search-filter-input.component.d.ts +4 -2
  123. package/styles/_generator.scss +15 -10
  124. package/styles/modules/_default-theme.scss +36 -59
  125. package/styles/modules/components/buttons/_generator.scss +8 -0
  126. package/styles/modules/components/dialogs/_generator.scss +8 -3
  127. package/styles/modules/components/forms/_generator.scss +12 -6
  128. package/styles/modules/components/inputs/_generator.scss +15 -0
  129. package/styles/modules/components/search-filter/_generator.scss +15 -0
  130. package/styles/modules/components/tables/_cells.scss +11 -8
  131. package/styles/modules/components/tables/_no-result.scss +1 -3
  132. package/styles/modules/components/tables/_rows.scss +10 -40
  133. package/styles/modules/components/tables/_sorting.scss +2 -9
  134. package/styles/modules/typography/_fonts.scss +35 -42
  135. package/styles/modules/vendors/angular-material/_generator.scss +46 -0
  136. package/styles/modules/vendors/angular-material/_palette-generator.scss +32 -0
  137. package/styles/modules/vendors/angular-material/_typography-generator.scss +101 -0
  138. package/styles/partials/core/components/_index.scss +3 -3
  139. package/styles/partials/core/components/dialogs/_general.scss +10 -64
  140. package/styles/partials/core/components/forms/_general.scss +9 -13
  141. package/styles/partials/core/components/search-filter/_general.scss +9 -0
  142. package/styles/partials/core/components/tables/_general.scss +17 -0
  143. package/styles/partials/generator-test.scss +38 -0
  144. package/table/README.md +76 -0
  145. package/table/components/entry-cell/entry-cell.component.d.ts +10 -0
  146. package/table/components/entry-cell-context-menu/entry-cell-context-menu.component.d.ts +14 -0
  147. package/table/components/entry-cell-formatted-value/entry-cell-formatted-value.component.d.ts +10 -0
  148. package/table/components/entry-table/entry-table.component.d.ts +81 -0
  149. package/table/components/index.d.ts +4 -0
  150. package/table/entry-table.module.d.ts +20 -0
  151. package/{toolbar → table}/index.d.ts +1 -1
  152. package/table/interfaces/cell-template.d.ts +4 -0
  153. package/table/interfaces/column-def.d.ts +20 -0
  154. package/table/interfaces/column-sort-prop.d.ts +5 -0
  155. package/table/interfaces/column-type-parameter.d.ts +9 -0
  156. package/table/interfaces/column-type.d.ts +1 -0
  157. package/table/interfaces/context-menu-item.d.ts +6 -0
  158. package/table/interfaces/entry-table-config.d.ts +11 -0
  159. package/table/interfaces/index.d.ts +12 -0
  160. package/table/interfaces/paged-query.d.ts +14 -0
  161. package/table/interfaces/pagination.d.ts +19 -0
  162. package/table/interfaces/row-class-formatter.d.ts +3 -0
  163. package/table/interfaces/row-context-menu-formatter.d.ts +4 -0
  164. package/table/interfaces/row-selection-formatter.d.ts +4 -0
  165. package/table/public-api.d.ts +3 -0
  166. package/esm2020/header/entry-header.component.mjs +0 -13
  167. package/esm2020/header/entry-header.module.mjs +0 -24
  168. package/esm2020/header/public-api.mjs +0 -3
  169. package/esm2020/toolbar/enigmatry-entry-components-toolbar.mjs +0 -5
  170. package/esm2020/toolbar/entry-toolbar.component.mjs +0 -43
  171. package/esm2020/toolbar/entry-toolbar.module.mjs +0 -24
  172. package/esm2020/toolbar/public-api.mjs +0 -3
  173. package/fesm2015/enigmatry-entry-components-header.mjs +0 -41
  174. package/fesm2015/enigmatry-entry-components-header.mjs.map +0 -1
  175. package/fesm2015/enigmatry-entry-components-toolbar.mjs +0 -71
  176. package/fesm2015/enigmatry-entry-components-toolbar.mjs.map +0 -1
  177. package/fesm2020/enigmatry-entry-components-header.mjs +0 -41
  178. package/fesm2020/enigmatry-entry-components-header.mjs.map +0 -1
  179. package/fesm2020/enigmatry-entry-components-toolbar.mjs +0 -71
  180. package/fesm2020/enigmatry-entry-components-toolbar.mjs.map +0 -1
  181. package/header/README.md +0 -41
  182. package/header/entry-header.component.d.ts +0 -6
  183. package/header/entry-header.module.d.ts +0 -8
  184. package/header/public-api.d.ts +0 -2
  185. package/styles/modules/components/forms/outlines/_field-outlines.scss +0 -45
  186. package/styles/modules/components/forms/outlines/_form-fields.scss +0 -26
  187. package/styles/modules/components/forms/outlines/_general.scss +0 -9
  188. package/styles/modules/components/forms/selectors/_checkboxes.scss +0 -55
  189. package/styles/modules/components/forms/selectors/_radio-buttons.scss +0 -39
  190. package/styles/modules/components/headers/_generator.scss +0 -12
  191. package/styles/modules/elements/_generator.scss +0 -20
  192. package/styles/modules/elements/anchors/_generator.scss +0 -16
  193. package/styles/modules/elements/buttons/_default.scss +0 -12
  194. package/styles/modules/elements/buttons/_generator.scss +0 -45
  195. package/styles/modules/states/_hover.scss +0 -18
  196. package/styles/partials/core/components/headers/_general.scss +0 -7
  197. package/styles/partials/core/components/tables/_action-cells.scss +0 -26
  198. package/styles/partials/core/components/tables/_cells.scss +0 -39
  199. package/styles/partials/core/components/tables/_index.scss +0 -5
  200. package/styles/partials/core/components/tables/_layout.scss +0 -47
  201. package/styles/partials/core/components/tables/_rows.scss +0 -13
  202. package/styles/partials/core/components/tables/_sorting.scss +0 -8
  203. package/styles/partials/test.scss +0 -35
  204. package/toolbar/README.md +0 -39
  205. package/toolbar/entry-toolbar.component.d.ts +0 -28
  206. package/toolbar/entry-toolbar.module.d.ts +0 -8
  207. package/toolbar/public-api.d.ts +0 -2
@@ -1,77 +1,23 @@
1
- @use 'sass:color';
2
- @use '@enigmatry/scss-foundation/src/modules/display/items';
3
-
4
- $border-dark: #000;
5
- $default-gap: 16px;
6
- $large-gap: calc(#{$default-gap} * 2);
7
-
8
- // TODO: Refactor me. Rename things adequately taking care of context, try minimizing styles required for this to look as expected.
9
- .dialog-container {
10
- /* stylelint-disable-next-line declaration-no-important */
11
- position: absolute !important;
12
- top: $large-gap;
13
- width: 100%;
14
- max: {
15
- /* stylelint-disable-next-line declaration-no-important */
16
- width: 700px !important;
17
- /* stylelint-disable-next-line declaration-no-important */
18
- height: calc(100% - 2 * $large-gap) !important;
19
- }
20
-
21
- &.wide {
22
- /* stylelint-disable-next-line declaration-no-important */
23
- max-width: 85% !important;
24
- }
25
-
26
- &.small {
27
- width: 400px;
28
- }
29
- }
1
+ @use 'scss-foundation/src/modules/display/items';
2
+ @use 'scss-foundation/src/modules/text/modification' as text;
30
3
 
31
4
  .entry-dialog {
32
- &.dialog-form {
33
- height: 100%;
34
- }
35
-
36
5
  .dialog-header {
37
6
  @include items.fully-align(center, space-between, row, nowrap);
38
-
7
+
39
8
  .title {
40
- line-height: 1.2;
41
- }
42
-
43
- .close-button {
44
- margin-left: $default-gap;
45
- border: none;
46
- background: none;
9
+ @include text.ellipsis();
47
10
  }
48
11
  }
49
12
 
50
13
  .dialog-content {
51
- margin: {
52
- top: $default-gap;
53
- bottom: $large-gap;
54
- }
55
- line-height: 1.4;
56
-
57
- &.with-actions {
58
- /* stylelint-disable-next-line declaration-no-important */
59
- max-height: calc(100% - 115px) !important;
60
- }
61
- }
62
-
63
- .button-confirm, .button-cancel {
64
- padding: 10px 20px;
14
+ display: inline-block;
15
+ width: 100%;
16
+ /* stylelint-disable-next-line unit-allowed-list */
17
+ max-height: 50vh;
65
18
  }
66
19
 
67
- .dialog-radio-buttons {
68
- display: block;
69
- padding: 10px 0;
70
- }
71
-
72
- .dialog-radio-button {
73
- display: block;
74
- margin-top: $default-gap;
75
- white-space: break;
20
+ .dialog-actions {
21
+ padding: 0 24px 14px;
76
22
  }
77
23
  }
@@ -1,21 +1,17 @@
1
1
  @use '@enigmatry/scss-foundation/src/modules/display/items';
2
2
 
3
3
  .entry-form {
4
- .action-buttons {
5
- margin-top: 25px;
6
-
7
- .button {
8
- margin-left: 10px;
9
-
10
- &:first-child {
11
- margin-left: 0;
12
- }
13
- }
4
+ .action-buttons .mdc-button:not(:first-child) {
5
+ margin-left: 10px;
14
6
  }
15
- }
16
7
 
17
- .mat-form-field-appearance-outline .mat-form-field-should-float .mat-form-field-label {
18
- top: 31px;
8
+ .entry-checkbox {
9
+ display: block;
10
+ }
11
+
12
+ .mdc-form-field {
13
+ margin-bottom: 10px;
14
+ }
19
15
  }
20
16
 
21
17
  .datetimepicker {
@@ -0,0 +1,9 @@
1
+ @use '@enigmatry/scss-foundation/src/modules/display/items';
2
+
3
+ .search-form-container {
4
+ @include items.align-center();
5
+
6
+ .form-field {
7
+ width: 200px;
8
+ }
9
+ }
@@ -0,0 +1,17 @@
1
+ @use '@enigmatry/scss-foundation/src/modules/display/items';
2
+
3
+ .entry-table {
4
+ display: flex;
5
+ flex-direction: column;
6
+ overflow: auto;
7
+
8
+ .pagination {
9
+ margin-bottom: 10px;
10
+ }
11
+
12
+ .no-results {
13
+ @include items.align-absolute-center();
14
+ flex: 1;
15
+ min-height: 50px;
16
+ }
17
+ }
@@ -0,0 +1,38 @@
1
+ @use '../generator';
2
+
3
+ $custom-theme: (
4
+ general: (
5
+ colors: (
6
+ primary: #FAE3C1,
7
+ disabled: (
8
+ foreground: cyan,
9
+ background: magenta
10
+ )
11
+ ),
12
+ fonts: (
13
+ body: (
14
+ family: 'My-Font',
15
+ size: 41px
16
+ ),
17
+ buttons: (
18
+ size: 26px
19
+ )
20
+ ),
21
+ inputs: (
22
+ background: yellow
23
+ )
24
+ ),
25
+ tables: (
26
+ cells: (
27
+ edge-gap: 11px,
28
+ padding: 202px
29
+ )
30
+ ),
31
+ dialogs: (
32
+ title: (
33
+ size: 42px
34
+ )
35
+ )
36
+ );
37
+
38
+ @include generator.generate-from($custom-theme);
@@ -0,0 +1,76 @@
1
+ # Entry table
2
+
3
+ Reusable table component with context menu, sorting and paging.
4
+
5
+ ## Installation
6
+
7
+ ```
8
+ npm install @enigmatry/entry-components
9
+ ```
10
+
11
+ ## Basic Usage
12
+
13
+ Import the `EntryTableModule` in your `feature.module` or `shared.module`
14
+
15
+ ```typescript
16
+ import { EntryTableModule } from '@enigmatry/entry-components/table';
17
+ ```
18
+
19
+ `component.ts`
20
+
21
+ ```typescript
22
+ import { PagedData, ContextMenuItem, ColumnDef } from '@enigmatry/entry-components/table';
23
+
24
+ @Component({
25
+ ...
26
+ })
27
+ export class UserListComponent implements OnInit {
28
+
29
+ @Input() data: PagedData<GetUsersResponseItem> | null;
30
+
31
+ @Input() columns: ColumnDef[] = [];
32
+ @Input() contextMenuItems: ContextMenuItem[] = [];
33
+
34
+ constructor() { }
35
+
36
+ ngOnInit(): void {
37
+ this.columns = [
38
+ { field: 'id', hide: true, sortable: true },
39
+ { field: 'userName', header: `E-mail`, hide: false, sortable: true },
40
+ { field: 'name', header: `Name`, hide: false, sortable: true },
41
+ { field: 'createdOn', header: `Created on`, hide: false, sortable: true, type: 'date' },
42
+ { field: 'updatedOn', header: `Updated on`, hide: false, sortable: true, type: 'date' }
43
+ ];
44
+ this.contextMenuItems = [
45
+ { id: 'edit', name: `Edit`, icon: 'edit' }
46
+ ];
47
+ }
48
+ }
49
+ ```
50
+
51
+ `component.html`
52
+
53
+ ```html
54
+ <entry-table
55
+ [columns]="columns"
56
+ [data]="data"
57
+ [showPaginator]="true"
58
+ [showContextMenu]="true"
59
+ [contextMenuItems]="contextMenuItems"
60
+ (pageChange)="pageChange.emit($event)"
61
+ (sortChange)="sortChange.emit($event)"
62
+ (rowSelectionChange)="selectionChange.emit($event)"
63
+ (contextMenuItemSelected)="contextMenuItemSelected.emit($event)">
64
+ </entry-table>
65
+ ```
66
+
67
+ ## Compatibility with Angular Versions
68
+
69
+ | @enigmatry/entry-components | Angular version
70
+ |-|-|
71
+ |1.14.x| = 14
72
+ |1.15.x| = 15
73
+
74
+ ## License
75
+
76
+ Apache-2 © Enigmatry
@@ -0,0 +1,10 @@
1
+ import { ColumnDef } from '../../interfaces';
2
+ import * as i0 from "@angular/core";
3
+ export declare class EntryCellComponent<T> {
4
+ rowData: T;
5
+ colDef: ColumnDef;
6
+ get value(): any;
7
+ private getCellValue;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<EntryCellComponent<any>, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<EntryCellComponent<any>, "entry-cell", never, { "rowData": "rowData"; "colDef": "colDef"; }, {}, never, never, false, never>;
10
+ }
@@ -0,0 +1,14 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { RowContextMenuFormatter } from '../../interfaces/row-context-menu-formatter';
3
+ import { ContextMenuItem } from '../../interfaces/context-menu-item';
4
+ import * as i0 from "@angular/core";
5
+ export declare class EntryCellContextMenuComponent implements OnInit {
6
+ items: ContextMenuItem[];
7
+ rowMenuFormatter: RowContextMenuFormatter;
8
+ rowData: any;
9
+ selected: EventEmitter<string>;
10
+ menuItems: ContextMenuItem[];
11
+ ngOnInit(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<EntryCellContextMenuComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<EntryCellContextMenuComponent, "entry-cell-context-menu", never, { "items": "items"; "rowMenuFormatter": "rowMenuFormatter"; "rowData": "rowData"; }, { "selected": "selected"; }, never, never, false, never>;
14
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class EntryCellFormattedValueComponent {
3
+ defaultPercentageMultiplier: number;
4
+ value: string | undefined;
5
+ type: string;
6
+ typeParameter: any | undefined;
7
+ constructor(defaultPercentageMultiplier: number);
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<EntryCellFormattedValueComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<EntryCellFormattedValueComponent, "entry-cell-formatted-value", never, { "value": "value"; "type": "type"; "typeParameter": "typeParameter"; }, {}, never, never, false, never>;
10
+ }
@@ -0,0 +1,81 @@
1
+ import { EventEmitter, OnChanges, TemplateRef, ChangeDetectorRef, ElementRef, SimpleChanges } from '@angular/core';
2
+ import { SelectionModel } from '@angular/cdk/collections';
3
+ import { MatTableDataSource } from '@angular/material/table';
4
+ import { PageEvent } from '@angular/material/paginator';
5
+ import { Sort, SortDirection } from '@angular/material/sort';
6
+ import { ColumnDef, PagedData, RowSelectionFormatter, RowClassFormatter, ContextMenuItem, RowContextMenuFormatter, CellTemplate, EntryTableConfig } from '../../interfaces';
7
+ import * as i0 from "@angular/core";
8
+ export declare class EntryTableComponent<T> implements OnChanges {
9
+ private _config;
10
+ private _elementRef;
11
+ private _changeDetectorRef;
12
+ className: string;
13
+ dataSource: MatTableDataSource<T, import("@angular/material/table").MatTableDataSourcePaginator>;
14
+ displayedColumns: string[];
15
+ columns: ColumnDef[];
16
+ private _data;
17
+ private _page;
18
+ data: T[] | PagedData<T> | null | undefined;
19
+ total: number;
20
+ loading: boolean;
21
+ showPaginator: boolean;
22
+ pageDisabled: boolean;
23
+ showFirstLastButtons: boolean;
24
+ pageIndex: number;
25
+ pageSize: number;
26
+ pageSizeOptions: number[];
27
+ hidePageSize: boolean;
28
+ pageChange: EventEmitter<PageEvent>;
29
+ paginationTemplate: TemplateRef<any>;
30
+ sortActive: string;
31
+ sortDirection: SortDirection;
32
+ sortDisableClear: boolean;
33
+ sortDisabled: boolean;
34
+ sortStart: 'asc' | 'desc';
35
+ sortChange: EventEmitter<Sort>;
36
+ rowHover: boolean;
37
+ rowStriped: boolean;
38
+ rowFocusVisible: boolean;
39
+ rowClick: EventEmitter<T>;
40
+ multiSelectable: boolean;
41
+ rowSelection: SelectionModel<T>;
42
+ rowSelected: T[];
43
+ rowSelectable: boolean;
44
+ showSelectAllCheckbox: boolean;
45
+ rowSelectionFormatter: RowSelectionFormatter;
46
+ rowClassFormatter: RowClassFormatter;
47
+ rowSelectionChange: EventEmitter<T[]>;
48
+ showContextMenu: boolean;
49
+ contextMenuItems: ContextMenuItem[];
50
+ contextMenuTemplate: TemplateRef<any> | null;
51
+ rowContextMenuFormatter: RowContextMenuFormatter;
52
+ contextMenuItemSelected: EventEmitter<{
53
+ itemId: string;
54
+ rowData: T;
55
+ }>;
56
+ noResultText: string;
57
+ noResultTemplate: TemplateRef<any> | null;
58
+ readonly selectionColumn = "selection-column";
59
+ readonly contextMenuColumn = "context-menu-column";
60
+ get hasNoResult(): boolean;
61
+ headerTemplate: TemplateRef<any> | CellTemplate | any;
62
+ cellTemplate: TemplateRef<any> | CellTemplate | any;
63
+ constructor(_config: EntryTableConfig, _elementRef: ElementRef<HTMLElement>, _changeDetectorRef: ChangeDetectorRef);
64
+ detectChanges(): void;
65
+ isTemplateRef(obj: any): boolean;
66
+ getRowClassList(rowData: T, index: number): {
67
+ selected: boolean;
68
+ 'mat-row-odd': number;
69
+ };
70
+ getColumnClassList(colDef: ColumnDef): string;
71
+ ngOnChanges(changes: SimpleChanges): void;
72
+ getIndex(index: number, dataIndex: number): number;
73
+ isAllSelected(): boolean;
74
+ toggleSelectAllCheckbox(): void;
75
+ toggleRowSelection(row: any): void;
76
+ handlePage(e: PageEvent): void;
77
+ scrollToTop(): void;
78
+ private convertToKebabCase;
79
+ static ɵfac: i0.ɵɵFactoryDeclaration<EntryTableComponent<any>, never>;
80
+ static ɵcmp: i0.ɵɵComponentDeclaration<EntryTableComponent<any>, "entry-table", never, { "displayedColumns": "displayedColumns"; "columns": "columns"; "data": "data"; "total": "total"; "loading": "loading"; "showPaginator": "showPaginator"; "pageDisabled": "pageDisabled"; "showFirstLastButtons": "showFirstLastButtons"; "pageIndex": "pageIndex"; "pageSize": "pageSize"; "pageSizeOptions": "pageSizeOptions"; "hidePageSize": "hidePageSize"; "paginationTemplate": "paginationTemplate"; "sortActive": "sortActive"; "sortDirection": "sortDirection"; "sortDisableClear": "sortDisableClear"; "sortDisabled": "sortDisabled"; "sortStart": "sortStart"; "rowHover": "rowHover"; "rowStriped": "rowStriped"; "rowFocusVisible": "rowFocusVisible"; "multiSelectable": "multiSelectable"; "rowSelected": "rowSelected"; "rowSelectable": "rowSelectable"; "showSelectAllCheckbox": "showSelectAllCheckbox"; "rowSelectionFormatter": "rowSelectionFormatter"; "rowClassFormatter": "rowClassFormatter"; "showContextMenu": "showContextMenu"; "contextMenuItems": "contextMenuItems"; "contextMenuTemplate": "contextMenuTemplate"; "rowContextMenuFormatter": "rowContextMenuFormatter"; "noResultText": "noResultText"; "noResultTemplate": "noResultTemplate"; "headerTemplate": "headerTemplate"; "cellTemplate": "cellTemplate"; }, { "pageChange": "pageChange"; "sortChange": "sortChange"; "rowClick": "rowClick"; "rowSelectionChange": "rowSelectionChange"; "contextMenuItemSelected": "contextMenuItemSelected"; }, never, never, false, never>;
81
+ }
@@ -0,0 +1,4 @@
1
+ export * from './entry-table/entry-table.component';
2
+ export * from './entry-cell/entry-cell.component';
3
+ export * from './entry-cell-context-menu/entry-cell-context-menu.component';
4
+ export * from './entry-cell-formatted-value/entry-cell-formatted-value.component';
@@ -0,0 +1,20 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./components/entry-table/entry-table.component";
3
+ import * as i2 from "./components/entry-cell/entry-cell.component";
4
+ import * as i3 from "./components/entry-cell-context-menu/entry-cell-context-menu.component";
5
+ import * as i4 from "./components/entry-cell-formatted-value/entry-cell-formatted-value.component";
6
+ import * as i5 from "@angular/common";
7
+ import * as i6 from "@angular/forms";
8
+ import * as i7 from "@angular/material/table";
9
+ import * as i8 from "@angular/material/sort";
10
+ import * as i9 from "@angular/material/paginator";
11
+ import * as i10 from "@angular/material/checkbox";
12
+ import * as i11 from "@angular/material/icon";
13
+ import * as i12 from "@angular/material/menu";
14
+ import * as i13 from "@angular/material/radio";
15
+ import * as i14 from "@angular/material/button";
16
+ export declare class EntryTableModule {
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<EntryTableModule, never>;
18
+ static ɵmod: i0.ɵɵNgModuleDeclaration<EntryTableModule, [typeof i1.EntryTableComponent, typeof i2.EntryCellComponent, typeof i3.EntryCellContextMenuComponent, typeof i4.EntryCellFormattedValueComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.MatTableModule, typeof i8.MatSortModule, typeof i9.MatPaginatorModule, typeof i10.MatCheckboxModule, typeof i11.MatIconModule, typeof i12.MatMenuModule, typeof i13.MatRadioModule, typeof i5.CommonModule, typeof i14.MatButtonModule], [typeof i1.EntryTableComponent, typeof i2.EntryCellComponent, typeof i3.EntryCellContextMenuComponent, typeof i4.EntryCellFormattedValueComponent]>;
19
+ static ɵinj: i0.ɵɵInjectorDeclaration<EntryTableModule>;
20
+ }
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
- /// <amd-module name="@enigmatry/entry-components/toolbar" />
4
+ /// <amd-module name="@enigmatry/entry-components/table" />
5
5
  export * from './public-api';
@@ -0,0 +1,4 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ export interface CellTemplate {
3
+ [key: string]: TemplateRef<any>;
4
+ }
@@ -0,0 +1,20 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { ColumnSortProp } from './column-sort-prop';
3
+ import { ColumnTypeParameter } from './column-type-parameter';
4
+ import { ColumnType } from './column-type';
5
+ export interface ColumnDef {
6
+ field: string;
7
+ header?: string;
8
+ hide?: boolean;
9
+ pinned?: 'left' | 'right';
10
+ width?: string;
11
+ sortable?: boolean | string;
12
+ sortProp?: ColumnSortProp;
13
+ type?: ColumnType;
14
+ typeParameter?: ColumnTypeParameter;
15
+ cellTemplate?: TemplateRef<any> | null;
16
+ class?: string;
17
+ customProperties?: {
18
+ [key: string]: any;
19
+ };
20
+ }
@@ -0,0 +1,5 @@
1
+ export interface ColumnSortProp {
2
+ id?: string;
3
+ start?: 'asc' | 'desc';
4
+ disableClear?: boolean;
5
+ }
@@ -0,0 +1,9 @@
1
+ export interface ColumnTypeParameter {
2
+ name?: string;
3
+ currencyCode?: string;
4
+ display?: string | boolean;
5
+ digitsInfo?: string;
6
+ format?: string;
7
+ locale?: string;
8
+ timezone?: string;
9
+ }
@@ -0,0 +1 @@
1
+ export declare type ColumnType = 'boolean' | 'number' | 'currency' | 'percent' | 'date' | 'link';
@@ -0,0 +1,6 @@
1
+ export interface ContextMenuItem {
2
+ id: string;
3
+ name: string;
4
+ icon?: string;
5
+ disabled?: boolean;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ export declare class EntryTableConfig {
3
+ showPaginator: boolean;
4
+ showFirstLastButtons: boolean;
5
+ pageSize: number;
6
+ pageSizeOptions: number[];
7
+ hidePageSize: boolean;
8
+ noResultsText: string;
9
+ }
10
+ export declare const ENTRY_TABLE_CONFIG: InjectionToken<EntryTableConfig>;
11
+ export declare const DEFAULT_PERCENTAGE_MULTIPLIER: InjectionToken<number>;
@@ -0,0 +1,12 @@
1
+ export * from './pagination';
2
+ export * from './entry-table-config';
3
+ export * from './paged-query';
4
+ export * from './cell-template';
5
+ export * from './column-def';
6
+ export * from './column-sort-prop';
7
+ export * from './column-type-parameter';
8
+ export * from './column-type';
9
+ export * from './context-menu-item';
10
+ export * from './row-class-formatter';
11
+ export * from './row-context-menu-formatter';
12
+ export * from './row-selection-formatter';
@@ -0,0 +1,14 @@
1
+ import { Params } from '@angular/router';
2
+ import { OnPage, OnSort, PageEvent, SortDirection, SortEvent } from './pagination';
3
+ export declare const defaultPageSize = 10;
4
+ export declare const defaultPageNumber = 1;
5
+ export declare class PagedQuery implements OnPage, OnSort {
6
+ pageNumber: number;
7
+ pageSize: number;
8
+ sortBy?: string;
9
+ sortDirection?: SortDirection;
10
+ sortChange(sort: SortEvent): void;
11
+ pageChange(page: PageEvent): void;
12
+ applyRouteChanges(queryParams: Params): void;
13
+ getRouteQueryParams(): Params;
14
+ }
@@ -0,0 +1,19 @@
1
+ import { Sort as SortEvent } from '@angular/material/sort';
2
+ import { PageEvent } from '@angular/material/paginator';
3
+ export { Sort as SortEvent, SortDirection } from '@angular/material/sort';
4
+ export { PageEvent } from '@angular/material/paginator';
5
+ export interface PagedData<T> {
6
+ items?: T[];
7
+ pageSize?: number;
8
+ pageNumber?: number;
9
+ totalCount?: number;
10
+ totalPages?: number;
11
+ hasPreviousPage?: boolean;
12
+ hasNextPage?: boolean;
13
+ }
14
+ export interface OnSort {
15
+ sortChange(sort: SortEvent): void;
16
+ }
17
+ export interface OnPage {
18
+ pageChange(page: PageEvent): void;
19
+ }
@@ -0,0 +1,3 @@
1
+ export interface RowClassFormatter {
2
+ [className: string]: (rowData: any) => boolean;
3
+ }
@@ -0,0 +1,4 @@
1
+ import { ContextMenuItem } from './context-menu-item';
2
+ export interface RowContextMenuFormatter {
3
+ items: (rowData: any) => ContextMenuItem[];
4
+ }
@@ -0,0 +1,4 @@
1
+ export interface RowSelectionFormatter {
2
+ disabled?: (rowData: any) => boolean;
3
+ hideCheckbox?: (rowData: any) => boolean;
4
+ }
@@ -0,0 +1,3 @@
1
+ export * from './interfaces';
2
+ export * from './components';
3
+ export { EntryTableModule } from './entry-table.module';
@@ -1,13 +0,0 @@
1
- import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class EntryHeaderComponent {
4
- }
5
- EntryHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EntryHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
6
- EntryHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.9", type: EntryHeaderComponent, selector: "entry-header", inputs: { title: "title" }, ngImport: i0, template: "<header class=\"entry-header\">\n <div class=\"space-between\">\n <h1 class=\"title item\">{{title}}</h1>\n <ng-content select=\"[buttons]\"></ng-content>\n </div>\n <div class=\"row content\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</header>", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush });
7
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EntryHeaderComponent, decorators: [{
8
- type: Component,
9
- args: [{ selector: 'entry-header', changeDetection: ChangeDetectionStrategy.OnPush, template: "<header class=\"entry-header\">\n <div class=\"space-between\">\n <h1 class=\"title item\">{{title}}</h1>\n <ng-content select=\"[buttons]\"></ng-content>\n </div>\n <div class=\"row content\">\n <ng-content select=\"[content]\"></ng-content>\n </div>\n</header>" }]
10
- }], propDecorators: { title: [{
11
- type: Input
12
- }] } });
13
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW50cnktaGVhZGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvZW50cnktY29tcG9uZW50cy9oZWFkZXIvZW50cnktaGVhZGVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL2xpYnMvZW50cnktY29tcG9uZW50cy9oZWFkZXIvZW50cnktaGVhZGVyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQVExRSxNQUFNLE9BQU8sb0JBQW9COztpSEFBcEIsb0JBQW9CO3FHQUFwQixvQkFBb0IsZ0ZDUmpDLHFSQVFTOzJGREFJLG9CQUFvQjtrQkFOaEMsU0FBUzsrQkFDRSxjQUFjLG1CQUdQLHVCQUF1QixDQUFDLE1BQU07OEJBR3RDLEtBQUs7c0JBQWIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2VudHJ5LWhlYWRlcicsXG4gIHRlbXBsYXRlVXJsOiAnLi9lbnRyeS1oZWFkZXIuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9lbnRyeS1oZWFkZXIuY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2hcbn0pXG5leHBvcnQgY2xhc3MgRW50cnlIZWFkZXJDb21wb25lbnQge1xuICBASW5wdXQoKSB0aXRsZTogc3RyaW5nO1xufVxuIiwiPGhlYWRlciBjbGFzcz1cImVudHJ5LWhlYWRlclwiPlxuICA8ZGl2IGNsYXNzPVwic3BhY2UtYmV0d2VlblwiPlxuICAgIDxoMSBjbGFzcz1cInRpdGxlIGl0ZW1cIj57e3RpdGxlfX08L2gxPlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cIltidXR0b25zXVwiPjwvbmctY29udGVudD5cbiAgPC9kaXY+XG4gIDxkaXYgY2xhc3M9XCJyb3cgY29udGVudFwiPlxuICAgIDxuZy1jb250ZW50IHNlbGVjdD1cIltjb250ZW50XVwiPjwvbmctY29udGVudD5cbiAgPC9kaXY+XG48L2hlYWRlcj4iXX0=
@@ -1,24 +0,0 @@
1
- import { NgModule } from '@angular/core';
2
- import { CommonModule } from '@angular/common';
3
- import { EntryHeaderComponent } from './entry-header.component';
4
- import * as i0 from "@angular/core";
5
- export class EntryHeaderModule {
6
- }
7
- EntryHeaderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EntryHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
8
- EntryHeaderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.9", ngImport: i0, type: EntryHeaderModule, declarations: [EntryHeaderComponent], imports: [CommonModule], exports: [EntryHeaderComponent] });
9
- EntryHeaderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EntryHeaderModule, imports: [CommonModule] });
10
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EntryHeaderModule, decorators: [{
11
- type: NgModule,
12
- args: [{
13
- declarations: [
14
- EntryHeaderComponent
15
- ],
16
- imports: [
17
- CommonModule
18
- ],
19
- exports: [
20
- EntryHeaderComponent
21
- ]
22
- }]
23
- }] });
24
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW50cnktaGVhZGVyLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvZW50cnktY29tcG9uZW50cy9oZWFkZXIvZW50cnktaGVhZGVyLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQzs7QUFhaEUsTUFBTSxPQUFPLGlCQUFpQjs7OEdBQWpCLGlCQUFpQjsrR0FBakIsaUJBQWlCLGlCQVQxQixvQkFBb0IsYUFHcEIsWUFBWSxhQUdaLG9CQUFvQjsrR0FHWCxpQkFBaUIsWUFOMUIsWUFBWTsyRkFNSCxpQkFBaUI7a0JBWDdCLFFBQVE7bUJBQUM7b0JBQ1IsWUFBWSxFQUFFO3dCQUNaLG9CQUFvQjtxQkFDckI7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLFlBQVk7cUJBQ2I7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLG9CQUFvQjtxQkFDckI7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IEVudHJ5SGVhZGVyQ29tcG9uZW50IH0gZnJvbSAnLi9lbnRyeS1oZWFkZXIuY29tcG9uZW50JztcblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbXG4gICAgRW50cnlIZWFkZXJDb21wb25lbnRcbiAgXSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZVxuICBdLFxuICBleHBvcnRzOiBbXG4gICAgRW50cnlIZWFkZXJDb21wb25lbnRcbiAgXVxufSlcbmV4cG9ydCBjbGFzcyBFbnRyeUhlYWRlck1vZHVsZSB7IH1cbiJdfQ==
@@ -1,3 +0,0 @@
1
- export { EntryHeaderComponent } from './entry-header.component';
2
- export { EntryHeaderModule } from './entry-header.module';
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvZW50cnktY29tcG9uZW50cy9oZWFkZXIvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUNoRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIlxuZXhwb3J0IHsgRW50cnlIZWFkZXJDb21wb25lbnQgfSBmcm9tICcuL2VudHJ5LWhlYWRlci5jb21wb25lbnQnO1xuZXhwb3J0IHsgRW50cnlIZWFkZXJNb2R1bGUgfSBmcm9tICcuL2VudHJ5LWhlYWRlci5tb2R1bGUnO1xuIl19
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public-api';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW5pZ21hdHJ5LWVudHJ5LWNvbXBvbmVudHMtdG9vbGJhci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvZW50cnktY29tcG9uZW50cy90b29sYmFyL2VuaWdtYXRyeS1lbnRyeS1jb21wb25lbnRzLXRvb2xiYXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==