@firestitch/list 13.0.2 → 13.0.4
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.
- package/app/classes/actions-controller.d.ts +20 -20
- package/app/classes/columns-controller.d.ts +71 -71
- package/app/classes/data-controller.d.ts +91 -91
- package/app/classes/external-params-controller.d.ts +32 -32
- package/app/classes/index.d.ts +2 -2
- package/app/classes/list-controller.d.ts +191 -191
- package/app/classes/pagination-controller.d.ts +198 -196
- package/app/classes/persistance-controller.d.ts +10 -10
- package/app/classes/reorder-controller.d.ts +68 -68
- package/app/classes/selection-controller.d.ts +155 -155
- package/app/classes/sorting-controller.d.ts +65 -65
- package/app/components/body/body.component.d.ts +28 -28
- package/app/components/body/row/actions/actions.component.d.ts +36 -36
- package/app/components/body/row/cell/cell.component.d.ts +22 -22
- package/app/components/body/row/inline-action/inline-action.component.d.ts +13 -13
- package/app/components/body/row/menu-action/menu-action.component.d.ts +20 -20
- package/app/components/body/row/row.component.d.ts +85 -85
- package/app/components/customize-cols/customize-cols.component.d.ts +17 -17
- package/app/components/footer/footer-row/footer-cell/footer-cell.component.d.ts +7 -7
- package/app/components/footer/footer-row/footer-row.component.d.ts +14 -14
- package/app/components/footer/footer.component.d.ts +15 -15
- package/app/components/head/head-cell/head-cell.component.d.ts +14 -14
- package/app/components/head/head.component.d.ts +49 -49
- package/app/components/list/list.component.d.ts +128 -126
- package/app/components/loader/loader.component.d.ts +14 -14
- package/app/components/manage-saved-filters/manage-saved-filters.component.d.ts +13 -13
- package/app/components/pagination/pagination.component.d.ts +14 -14
- package/app/components/saved-filters/saved-filters.component.d.ts +15 -15
- package/app/components/status/status.component.d.ts +21 -21
- package/app/directives/cell/cell.directive.d.ts +8 -8
- package/app/directives/column/column.directive.d.ts +33 -33
- package/app/directives/content/content.directive.d.ts +5 -5
- package/app/directives/content-init/content-init.directive.d.ts +9 -9
- package/app/directives/draggable-list/draggable-list.directive.d.ts +95 -95
- package/app/directives/draggable-row/draggable-row.directive.d.ts +23 -23
- package/app/directives/empty-state/empty-state.directive.d.ts +5 -5
- package/app/directives/footer/footer.directive.d.ts +8 -8
- package/app/directives/group-expand-trigger/group-expand-trigger.directive.d.ts +10 -10
- package/app/directives/group-footer/group-footer.directive.d.ts +6 -6
- package/app/directives/group-header/group-header.directive.d.ts +6 -6
- package/app/directives/header/header.directive.d.ts +8 -8
- package/app/directives/heading/heading.directive.d.ts +5 -5
- package/app/directives/heading-container/heading-container.directive.d.ts +5 -5
- package/app/directives/index.d.ts +3 -3
- package/app/directives/subheading/subheading.directive.d.ts +5 -5
- package/app/enums/button-type.enum.d.ts +7 -7
- package/app/enums/page-change-type.enum.d.ts +4 -4
- package/app/enums/pagination-strategy.enum.d.ts +5 -5
- package/app/enums/row-type.enum.d.ts +6 -6
- package/app/enums/state.enum.d.ts +9 -9
- package/app/fs-list.module.d.ts +60 -60
- package/app/fs-list.providers.d.ts +3 -3
- package/app/interfaces/cellconfig.interface.d.ts +5 -5
- package/app/interfaces/column-config.interface.d.ts +2 -2
- package/app/interfaces/draggable-list.interface.d.ts +7 -7
- package/app/interfaces/external-params.interface.d.ts +13 -13
- package/app/interfaces/index.d.ts +4 -4
- package/app/interfaces/listconfig.interface.d.ts +247 -247
- package/app/interfaces/pagination-state.interface.d.ts +9 -0
- package/app/interfaces/pagination.interface.d.ts +13 -13
- package/app/interfaces/sorting-change-event.interface.d.ts +4 -4
- package/app/models/column-async-attribute.d.ts +5 -5
- package/app/models/column-attributes.d.ts +39 -39
- package/app/models/column.model.d.ts +60 -60
- package/app/models/row/base-row.d.ts +13 -13
- package/app/models/row/child-row.d.ts +12 -12
- package/app/models/row/group-footer-row.d.ts +10 -10
- package/app/models/row/group-row.d.ts +16 -16
- package/app/models/row/simple-row.d.ts +5 -5
- package/app/models/row-action.model.d.ts +29 -29
- package/app/models/row.d.ts +34 -34
- package/app/models/styleConfig.model.d.ts +31 -31
- package/app/pipes/action-label.d.ts +8 -8
- package/app/pipes/index.d.ts +1 -1
- package/app/services/group-expand-notifier.service.d.ts +11 -11
- package/bundles/firestitch-list.umd.js +7222 -0
- package/bundles/firestitch-list.umd.js.map +1 -0
- package/{esm2020/app/classes/actions-controller.mjs → esm2015/app/classes/actions-controller.js} +55 -55
- package/{esm2020/app/classes/columns-controller.mjs → esm2015/app/classes/columns-controller.js} +205 -205
- package/esm2015/app/classes/data-controller.js +365 -0
- package/esm2015/app/classes/external-params-controller.js +147 -0
- package/{esm2020/app/classes/index.mjs → esm2015/app/classes/index.js} +3 -3
- package/esm2015/app/classes/list-controller.js +754 -0
- package/esm2015/app/classes/pagination-controller.js +479 -0
- package/{esm2020/app/classes/persistance-controller.mjs → esm2015/app/classes/persistance-controller.js} +19 -19
- package/esm2015/app/classes/reorder-controller.js +183 -0
- package/esm2015/app/classes/selection-controller.js +468 -0
- package/{esm2020/app/classes/sorting-controller.mjs → esm2015/app/classes/sorting-controller.js} +183 -183
- package/esm2015/app/components/body/body.component.js +69 -0
- package/esm2015/app/components/body/row/actions/actions.component.js +102 -0
- package/esm2015/app/components/body/row/cell/cell.component.js +113 -0
- package/esm2015/app/components/body/row/inline-action/inline-action.component.js +37 -0
- package/esm2015/app/components/body/row/menu-action/menu-action.component.js +50 -0
- package/esm2015/app/components/body/row/row.component.js +330 -0
- package/esm2015/app/components/customize-cols/customize-cols.component.js +72 -0
- package/esm2015/app/components/footer/footer-row/footer-cell/footer-cell.component.js +20 -0
- package/esm2015/app/components/footer/footer-row/footer-row.component.js +33 -0
- package/esm2015/app/components/footer/footer.component.js +36 -0
- package/esm2015/app/components/head/head-cell/head-cell.component.js +34 -0
- package/esm2015/app/components/head/head.component.js +108 -0
- package/esm2015/app/components/list/list.component.js +397 -0
- package/esm2015/app/components/loader/loader.component.js +45 -0
- package/esm2015/app/components/manage-saved-filters/manage-saved-filters.component.js +79 -0
- package/esm2015/app/components/pagination/pagination.component.js +42 -0
- package/esm2015/app/components/saved-filters/saved-filters.component.js +32 -0
- package/esm2015/app/components/status/status.component.js +72 -0
- package/{esm2020/app/directives/cell/cell.directive.mjs → esm2015/app/directives/cell/cell.directive.js} +18 -18
- package/{esm2020/app/directives/column/column.directive.mjs → esm2015/app/directives/column/column.directive.js} +112 -112
- package/{esm2020/app/directives/content/content.directive.mjs → esm2015/app/directives/content/content.directive.js} +13 -13
- package/{esm2020/app/directives/content-init/content-init.directive.mjs → esm2015/app/directives/content-init/content-init.directive.js} +22 -22
- package/esm2015/app/directives/draggable-list/draggable-list.directive.js +330 -0
- package/esm2015/app/directives/draggable-row/draggable-row.directive.js +79 -0
- package/{esm2020/app/directives/empty-state/empty-state.directive.mjs → esm2015/app/directives/empty-state/empty-state.directive.js} +13 -13
- package/{esm2020/app/directives/footer/footer.directive.mjs → esm2015/app/directives/footer/footer.directive.js} +18 -18
- package/{esm2020/app/directives/group-expand-trigger/group-expand-trigger.directive.mjs → esm2015/app/directives/group-expand-trigger/group-expand-trigger.directive.js} +26 -26
- package/{esm2020/app/directives/group-footer/group-footer.directive.mjs → esm2015/app/directives/group-footer/group-footer.directive.js} +14 -14
- package/{esm2020/app/directives/group-header/group-header.directive.mjs → esm2015/app/directives/group-header/group-header.directive.js} +14 -14
- package/{esm2020/app/directives/header/header.directive.mjs → esm2015/app/directives/header/header.directive.js} +18 -18
- package/{esm2020/app/directives/heading/heading.directive.mjs → esm2015/app/directives/heading/heading.directive.js} +13 -13
- package/{esm2020/app/directives/heading-container/heading-container.directive.mjs → esm2015/app/directives/heading-container/heading-container.directive.js} +13 -13
- package/{esm2020/app/directives/index.mjs → esm2015/app/directives/index.js} +4 -4
- package/{esm2020/app/directives/subheading/subheading.directive.mjs → esm2015/app/directives/subheading/subheading.directive.js} +13 -13
- package/{esm2020/app/enums/button-type.enum.mjs → esm2015/app/enums/button-type.enum.js} +9 -9
- package/{esm2020/app/enums/page-change-type.enum.mjs → esm2015/app/enums/page-change-type.enum.js} +6 -6
- package/{esm2020/app/enums/pagination-strategy.enum.mjs → esm2015/app/enums/pagination-strategy.enum.js} +7 -7
- package/{esm2020/app/enums/row-type.enum.mjs → esm2015/app/enums/row-type.enum.js} +7 -7
- package/{esm2020/app/enums/state.enum.mjs → esm2015/app/enums/state.enum.js} +11 -11
- package/{esm2020/app/fs-list.module.mjs → esm2015/app/fs-list.module.js} +246 -246
- package/{esm2020/app/fs-list.providers.mjs → esm2015/app/fs-list.providers.js} +4 -4
- package/{esm2020/app/interfaces/cellconfig.interface.mjs → esm2015/app/interfaces/cellconfig.interface.js} +2 -2
- package/{esm2020/app/interfaces/column-config.interface.mjs → esm2015/app/interfaces/column-config.interface.js} +1 -1
- package/{esm2020/app/interfaces/draggable-list.interface.mjs → esm2015/app/interfaces/draggable-list.interface.js} +2 -2
- package/esm2015/app/interfaces/external-params.interface.js +2 -0
- package/{esm2020/app/interfaces/index.mjs → esm2015/app/interfaces/index.js} +5 -5
- package/{esm2020/app/interfaces/listconfig.interface.mjs → esm2015/app/interfaces/listconfig.interface.js} +1 -1
- package/esm2015/app/interfaces/pagination-state.interface.js +2 -0
- package/esm2015/app/interfaces/pagination.interface.js +2 -0
- package/{esm2020/app/interfaces/sorting-change-event.interface.mjs → esm2015/app/interfaces/sorting-change-event.interface.js} +2 -2
- package/{esm2020/app/models/column-async-attribute.mjs → esm2015/app/models/column-async-attribute.js} +13 -13
- package/{esm2020/app/models/column-attributes.mjs → esm2015/app/models/column-attributes.js} +130 -130
- package/{esm2020/app/models/column.model.mjs → esm2015/app/models/column.model.js} +162 -162
- package/{esm2020/app/models/row/base-row.mjs → esm2015/app/models/row/base-row.js} +23 -23
- package/{esm2020/app/models/row/child-row.mjs → esm2015/app/models/row/child-row.js} +28 -28
- package/{esm2020/app/models/row/group-footer-row.mjs → esm2015/app/models/row/group-footer-row.js} +20 -20
- package/{esm2020/app/models/row/group-row.mjs → esm2015/app/models/row/group-row.js} +44 -44
- package/{esm2020/app/models/row/simple-row.mjs → esm2015/app/models/row/simple-row.js} +10 -10
- package/esm2015/app/models/row-action.model.js +90 -0
- package/{esm2020/app/models/row.mjs → esm2015/app/models/row.js} +88 -88
- package/{esm2020/app/models/styleConfig.model.mjs → esm2015/app/models/styleConfig.model.js} +75 -75
- package/{esm2020/app/pipes/action-label.mjs → esm2015/app/pipes/action-label.js} +17 -17
- package/{esm2020/app/pipes/index.mjs → esm2015/app/pipes/index.js} +1 -1
- package/{esm2020/app/services/group-expand-notifier.service.mjs → esm2015/app/services/group-expand-notifier.service.js} +26 -26
- package/{esm2020/firestitch-list.mjs → esm2015/firestitch-list.js} +4 -4
- package/{esm2020/public_api.mjs → esm2015/public_api.js} +46 -46
- package/fesm2015/{firestitch-list.mjs → firestitch-list.js} +5803 -5711
- package/fesm2015/firestitch-list.js.map +1 -0
- package/firestitch-list.d.ts +5 -5
- package/package.json +7 -20
- package/public_api.d.ts +41 -40
- package/esm2020/app/classes/data-controller.mjs +0 -367
- package/esm2020/app/classes/external-params-controller.mjs +0 -147
- package/esm2020/app/classes/list-controller.mjs +0 -752
- package/esm2020/app/classes/pagination-controller.mjs +0 -467
- package/esm2020/app/classes/reorder-controller.mjs +0 -182
- package/esm2020/app/classes/selection-controller.mjs +0 -468
- package/esm2020/app/components/body/body.component.mjs +0 -64
- package/esm2020/app/components/body/row/actions/actions.component.mjs +0 -97
- package/esm2020/app/components/body/row/cell/cell.component.mjs +0 -107
- package/esm2020/app/components/body/row/inline-action/inline-action.component.mjs +0 -33
- package/esm2020/app/components/body/row/menu-action/menu-action.component.mjs +0 -46
- package/esm2020/app/components/body/row/row.component.mjs +0 -323
- package/esm2020/app/components/customize-cols/customize-cols.component.mjs +0 -68
- package/esm2020/app/components/footer/footer-row/footer-cell/footer-cell.component.mjs +0 -16
- package/esm2020/app/components/footer/footer-row/footer-row.component.mjs +0 -28
- package/esm2020/app/components/footer/footer.component.mjs +0 -31
- package/esm2020/app/components/head/head-cell/head-cell.component.mjs +0 -29
- package/esm2020/app/components/head/head.component.mjs +0 -103
- package/esm2020/app/components/list/list.component.mjs +0 -388
- package/esm2020/app/components/loader/loader.component.mjs +0 -40
- package/esm2020/app/components/manage-saved-filters/manage-saved-filters.component.mjs +0 -76
- package/esm2020/app/components/pagination/pagination.component.mjs +0 -37
- package/esm2020/app/components/saved-filters/saved-filters.component.mjs +0 -29
- package/esm2020/app/components/status/status.component.mjs +0 -66
- package/esm2020/app/directives/draggable-list/draggable-list.directive.mjs +0 -328
- package/esm2020/app/directives/draggable-row/draggable-row.directive.mjs +0 -78
- package/esm2020/app/interfaces/external-params.interface.mjs +0 -2
- package/esm2020/app/interfaces/pagination.interface.mjs +0 -2
- package/esm2020/app/models/row-action.model.mjs +0 -90
- package/fesm2015/firestitch-list.mjs.map +0 -1
- package/fesm2020/firestitch-list.mjs +0 -5846
- package/fesm2020/firestitch-list.mjs.map +0 -1
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Public API Surface of fs-menu
|
|
3
|
-
*/
|
|
4
|
-
// Modules
|
|
5
|
-
export { FsListModule } from './app/fs-list.module';
|
|
6
|
-
// Providers
|
|
7
|
-
export { FS_LIST_CONFIG, FS_LIST_DEFAULT_CONFIG } from './app/fs-list.providers';
|
|
8
|
-
// Components
|
|
9
|
-
export { FsBodyComponent } from './app/components/body/body.component';
|
|
10
|
-
export { FsCellComponent } from './app/components/body/row/cell/cell.component';
|
|
11
|
-
export { FsRowComponent } from './app/components/body/row/row.component';
|
|
12
|
-
export { FsFooterCellComponent, } from './app/components/footer/footer-row/footer-cell/footer-cell.component';
|
|
13
|
-
export { FsFooterRowComponent } from './app/components/footer/footer-row/footer-row.component';
|
|
14
|
-
export { FsFooterComponent } from './app/components/footer/footer.component';
|
|
15
|
-
export { FsHeadCellComponent } from './app/components/head/head-cell/head-cell.component';
|
|
16
|
-
export { FsHeadComponent } from './app/components/head/head.component';
|
|
17
|
-
export { FsListComponent } from './app/components/list/list.component';
|
|
18
|
-
export { FsListLoaderComponent } from './app/components/loader/loader.component';
|
|
19
|
-
export { FsPaginationComponent } from './app/components/pagination/pagination.component';
|
|
20
|
-
export { FsStatusComponent } from './app/components/status/status.component';
|
|
21
|
-
// Directives
|
|
22
|
-
export { FsListHeadingContainerDirective, FsListHeadingDirective, FsListSubheadingDirective } from './app/directives';
|
|
23
|
-
export { FsListCellDirective } from './app/directives/cell/cell.directive';
|
|
24
|
-
export { FsListColumnDirective } from './app/directives/column/column.directive';
|
|
25
|
-
export { FsListContentDirective } from './app/directives/content/content.directive';
|
|
26
|
-
export { FsListEmptyStateDirective } from './app/directives/empty-state/empty-state.directive';
|
|
27
|
-
export { FsListFooterDirective } from './app/directives/footer/footer.directive';
|
|
28
|
-
export { FsListGroupExpandTriggerDirective } from './app/directives/group-expand-trigger/group-expand-trigger.directive';
|
|
29
|
-
export { FsListGroupFooterDirective } from './app/directives/group-footer/group-footer.directive';
|
|
30
|
-
export { FsListGroupHeaderDirective } from './app/directives/group-header/group-header.directive';
|
|
31
|
-
export { FsListHeaderDirective } from './app/directives/header/header.directive';
|
|
32
|
-
// Models
|
|
33
|
-
export { List } from './app/classes/list-controller';
|
|
34
|
-
export { PaginationController } from './app/classes/pagination-controller';
|
|
35
|
-
export { ReorderController, ReorderPosition } from './app/classes/reorder-controller';
|
|
36
|
-
export { SelectionChangeType, SelectionController } from './app/classes/selection-controller';
|
|
37
|
-
export { SortingController } from './app/classes/sorting-controller';
|
|
38
|
-
export { Column, SortingDirection } from './app/models/column.model';
|
|
39
|
-
export { RowAction } from './app/models/row-action.model';
|
|
40
|
-
export { StyleConfig } from './app/models/styleConfig.model';
|
|
41
|
-
// Enums
|
|
42
|
-
export { ActionType } from './app/enums/button-type.enum';
|
|
43
|
-
export { PaginationStrategy } from './app/enums/pagination-strategy.enum';
|
|
44
|
-
export { RowType } from './app/enums/row-type.enum';
|
|
45
|
-
export { FsListState } from './app/enums/state.enum';
|
|
46
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
/*
|
|
2
|
+
* Public API Surface of fs-menu
|
|
3
|
+
*/
|
|
4
|
+
// Modules
|
|
5
|
+
export { FsListModule } from './app/fs-list.module';
|
|
6
|
+
// Providers
|
|
7
|
+
export { FS_LIST_CONFIG, FS_LIST_DEFAULT_CONFIG } from './app/fs-list.providers';
|
|
8
|
+
// Components
|
|
9
|
+
export { FsBodyComponent } from './app/components/body/body.component';
|
|
10
|
+
export { FsCellComponent } from './app/components/body/row/cell/cell.component';
|
|
11
|
+
export { FsRowComponent } from './app/components/body/row/row.component';
|
|
12
|
+
export { FsFooterCellComponent, } from './app/components/footer/footer-row/footer-cell/footer-cell.component';
|
|
13
|
+
export { FsFooterRowComponent } from './app/components/footer/footer-row/footer-row.component';
|
|
14
|
+
export { FsFooterComponent } from './app/components/footer/footer.component';
|
|
15
|
+
export { FsHeadCellComponent } from './app/components/head/head-cell/head-cell.component';
|
|
16
|
+
export { FsHeadComponent } from './app/components/head/head.component';
|
|
17
|
+
export { FsListComponent } from './app/components/list/list.component';
|
|
18
|
+
export { FsListLoaderComponent } from './app/components/loader/loader.component';
|
|
19
|
+
export { FsPaginationComponent } from './app/components/pagination/pagination.component';
|
|
20
|
+
export { FsStatusComponent } from './app/components/status/status.component';
|
|
21
|
+
// Directives
|
|
22
|
+
export { FsListHeadingContainerDirective, FsListHeadingDirective, FsListSubheadingDirective } from './app/directives';
|
|
23
|
+
export { FsListCellDirective } from './app/directives/cell/cell.directive';
|
|
24
|
+
export { FsListColumnDirective } from './app/directives/column/column.directive';
|
|
25
|
+
export { FsListContentDirective } from './app/directives/content/content.directive';
|
|
26
|
+
export { FsListEmptyStateDirective } from './app/directives/empty-state/empty-state.directive';
|
|
27
|
+
export { FsListFooterDirective } from './app/directives/footer/footer.directive';
|
|
28
|
+
export { FsListGroupExpandTriggerDirective } from './app/directives/group-expand-trigger/group-expand-trigger.directive';
|
|
29
|
+
export { FsListGroupFooterDirective } from './app/directives/group-footer/group-footer.directive';
|
|
30
|
+
export { FsListGroupHeaderDirective } from './app/directives/group-header/group-header.directive';
|
|
31
|
+
export { FsListHeaderDirective } from './app/directives/header/header.directive';
|
|
32
|
+
// Models
|
|
33
|
+
export { List } from './app/classes/list-controller';
|
|
34
|
+
export { PaginationController } from './app/classes/pagination-controller';
|
|
35
|
+
export { ReorderController, ReorderPosition } from './app/classes/reorder-controller';
|
|
36
|
+
export { SelectionChangeType, SelectionController } from './app/classes/selection-controller';
|
|
37
|
+
export { SortingController } from './app/classes/sorting-controller';
|
|
38
|
+
export { Column, SortingDirection } from './app/models/column.model';
|
|
39
|
+
export { RowAction } from './app/models/row-action.model';
|
|
40
|
+
export { StyleConfig } from './app/models/styleConfig.model';
|
|
41
|
+
// Enums
|
|
42
|
+
export { ActionType } from './app/enums/button-type.enum';
|
|
43
|
+
export { PaginationStrategy } from './app/enums/pagination-strategy.enum';
|
|
44
|
+
export { RowType } from './app/enums/row-type.enum';
|
|
45
|
+
export { FsListState } from './app/enums/state.enum';
|
|
46
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9wdWJsaWNfYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsVUFBVTtBQUNWLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUVwRCxZQUFZO0FBQ1osT0FBTyxFQUFFLGNBQWMsRUFBRSxzQkFBc0IsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBRWpGLGFBQWE7QUFDYixPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUFDdkUsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLCtDQUErQyxDQUFDO0FBQ2hGLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSx5Q0FBeUMsQ0FBQztBQUN6RSxPQUFPLEVBQ0wscUJBQXFCLEdBQ3RCLE1BQU0sc0VBQXNFLENBQUM7QUFDOUUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0seURBQXlELENBQUM7QUFDL0YsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sMENBQTBDLENBQUM7QUFDN0UsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0scURBQXFELENBQUM7QUFDMUYsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHNDQUFzQyxDQUFDO0FBQ3ZFLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQztBQUN2RSxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSwwQ0FBMEMsQ0FBQztBQUNqRixPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxrREFBa0QsQ0FBQztBQUN6RixPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSwwQ0FBMEMsQ0FBQztBQUU3RSxhQUFhO0FBQ2IsT0FBTyxFQUFFLCtCQUErQixFQUFFLHNCQUFzQixFQUFFLHlCQUF5QixFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDdEgsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUFDM0UsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sMENBQTBDLENBQUM7QUFDakYsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sNENBQTRDLENBQUM7QUFDcEYsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sb0RBQW9ELENBQUM7QUFDL0YsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sMENBQTBDLENBQUM7QUFDakYsT0FBTyxFQUFFLGlDQUFpQyxFQUFFLE1BQU0sc0VBQXNFLENBQUM7QUFDekgsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sc0RBQXNELENBQUM7QUFDbEcsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sc0RBQXNELENBQUM7QUFDbEcsT0FBTyxFQUFFLHFCQUFxQixFQUFFLE1BQU0sMENBQTBDLENBQUM7QUFFakYsU0FBUztBQUNULE9BQU8sRUFBRSxJQUFJLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxxQ0FBcUMsQ0FBQztBQUMzRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsZUFBZSxFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUFDdEYsT0FBTyxFQUFFLG1CQUFtQixFQUFFLG1CQUFtQixFQUFFLE1BQU0sb0NBQW9DLENBQUM7QUFDOUYsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUFDckUsT0FBTyxFQUFFLE1BQU0sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQ3JFLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUMxRCxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sZ0NBQWdDLENBQUM7QUFrQjdELFFBQVE7QUFDUixPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDMUQsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sc0NBQXNDLENBQUM7QUFDMUUsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQ3BELE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qXG4gKiBQdWJsaWMgQVBJIFN1cmZhY2Ugb2YgZnMtbWVudVxuICovXG5cbi8vIE1vZHVsZXNcbmV4cG9ydCB7IEZzTGlzdE1vZHVsZSB9IGZyb20gJy4vYXBwL2ZzLWxpc3QubW9kdWxlJztcblxuLy8gUHJvdmlkZXJzXG5leHBvcnQgeyBGU19MSVNUX0NPTkZJRywgRlNfTElTVF9ERUZBVUxUX0NPTkZJRyB9IGZyb20gJy4vYXBwL2ZzLWxpc3QucHJvdmlkZXJzJztcblxuLy8gQ29tcG9uZW50c1xuZXhwb3J0IHsgRnNCb2R5Q29tcG9uZW50IH0gZnJvbSAnLi9hcHAvY29tcG9uZW50cy9ib2R5L2JvZHkuY29tcG9uZW50JztcbmV4cG9ydCB7IEZzQ2VsbENvbXBvbmVudCB9IGZyb20gJy4vYXBwL2NvbXBvbmVudHMvYm9keS9yb3cvY2VsbC9jZWxsLmNvbXBvbmVudCc7XG5leHBvcnQgeyBGc1Jvd0NvbXBvbmVudCB9IGZyb20gJy4vYXBwL2NvbXBvbmVudHMvYm9keS9yb3cvcm93LmNvbXBvbmVudCc7XG5leHBvcnQge1xuICBGc0Zvb3RlckNlbGxDb21wb25lbnQsXG59IGZyb20gJy4vYXBwL2NvbXBvbmVudHMvZm9vdGVyL2Zvb3Rlci1yb3cvZm9vdGVyLWNlbGwvZm9vdGVyLWNlbGwuY29tcG9uZW50JztcbmV4cG9ydCB7IEZzRm9vdGVyUm93Q29tcG9uZW50IH0gZnJvbSAnLi9hcHAvY29tcG9uZW50cy9mb290ZXIvZm9vdGVyLXJvdy9mb290ZXItcm93LmNvbXBvbmVudCc7XG5leHBvcnQgeyBGc0Zvb3RlckNvbXBvbmVudCB9IGZyb20gJy4vYXBwL2NvbXBvbmVudHMvZm9vdGVyL2Zvb3Rlci5jb21wb25lbnQnO1xuZXhwb3J0IHsgRnNIZWFkQ2VsbENvbXBvbmVudCB9IGZyb20gJy4vYXBwL2NvbXBvbmVudHMvaGVhZC9oZWFkLWNlbGwvaGVhZC1jZWxsLmNvbXBvbmVudCc7XG5leHBvcnQgeyBGc0hlYWRDb21wb25lbnQgfSBmcm9tICcuL2FwcC9jb21wb25lbnRzL2hlYWQvaGVhZC5jb21wb25lbnQnO1xuZXhwb3J0IHsgRnNMaXN0Q29tcG9uZW50IH0gZnJvbSAnLi9hcHAvY29tcG9uZW50cy9saXN0L2xpc3QuY29tcG9uZW50JztcbmV4cG9ydCB7IEZzTGlzdExvYWRlckNvbXBvbmVudCB9IGZyb20gJy4vYXBwL2NvbXBvbmVudHMvbG9hZGVyL2xvYWRlci5jb21wb25lbnQnO1xuZXhwb3J0IHsgRnNQYWdpbmF0aW9uQ29tcG9uZW50IH0gZnJvbSAnLi9hcHAvY29tcG9uZW50cy9wYWdpbmF0aW9uL3BhZ2luYXRpb24uY29tcG9uZW50JztcbmV4cG9ydCB7IEZzU3RhdHVzQ29tcG9uZW50IH0gZnJvbSAnLi9hcHAvY29tcG9uZW50cy9zdGF0dXMvc3RhdHVzLmNvbXBvbmVudCc7XG5cbi8vIERpcmVjdGl2ZXNcbmV4cG9ydCB7IEZzTGlzdEhlYWRpbmdDb250YWluZXJEaXJlY3RpdmUsIEZzTGlzdEhlYWRpbmdEaXJlY3RpdmUsIEZzTGlzdFN1YmhlYWRpbmdEaXJlY3RpdmUgfSBmcm9tICcuL2FwcC9kaXJlY3RpdmVzJztcbmV4cG9ydCB7IEZzTGlzdENlbGxEaXJlY3RpdmUgfSBmcm9tICcuL2FwcC9kaXJlY3RpdmVzL2NlbGwvY2VsbC5kaXJlY3RpdmUnO1xuZXhwb3J0IHsgRnNMaXN0Q29sdW1uRGlyZWN0aXZlIH0gZnJvbSAnLi9hcHAvZGlyZWN0aXZlcy9jb2x1bW4vY29sdW1uLmRpcmVjdGl2ZSc7XG5leHBvcnQgeyBGc0xpc3RDb250ZW50RGlyZWN0aXZlIH0gZnJvbSAnLi9hcHAvZGlyZWN0aXZlcy9jb250ZW50L2NvbnRlbnQuZGlyZWN0aXZlJztcbmV4cG9ydCB7IEZzTGlzdEVtcHR5U3RhdGVEaXJlY3RpdmUgfSBmcm9tICcuL2FwcC9kaXJlY3RpdmVzL2VtcHR5LXN0YXRlL2VtcHR5LXN0YXRlLmRpcmVjdGl2ZSc7XG5leHBvcnQgeyBGc0xpc3RGb290ZXJEaXJlY3RpdmUgfSBmcm9tICcuL2FwcC9kaXJlY3RpdmVzL2Zvb3Rlci9mb290ZXIuZGlyZWN0aXZlJztcbmV4cG9ydCB7IEZzTGlzdEdyb3VwRXhwYW5kVHJpZ2dlckRpcmVjdGl2ZSB9IGZyb20gJy4vYXBwL2RpcmVjdGl2ZXMvZ3JvdXAtZXhwYW5kLXRyaWdnZXIvZ3JvdXAtZXhwYW5kLXRyaWdnZXIuZGlyZWN0aXZlJztcbmV4cG9ydCB7IEZzTGlzdEdyb3VwRm9vdGVyRGlyZWN0aXZlIH0gZnJvbSAnLi9hcHAvZGlyZWN0aXZlcy9ncm91cC1mb290ZXIvZ3JvdXAtZm9vdGVyLmRpcmVjdGl2ZSc7XG5leHBvcnQgeyBGc0xpc3RHcm91cEhlYWRlckRpcmVjdGl2ZSB9IGZyb20gJy4vYXBwL2RpcmVjdGl2ZXMvZ3JvdXAtaGVhZGVyL2dyb3VwLWhlYWRlci5kaXJlY3RpdmUnO1xuZXhwb3J0IHsgRnNMaXN0SGVhZGVyRGlyZWN0aXZlIH0gZnJvbSAnLi9hcHAvZGlyZWN0aXZlcy9oZWFkZXIvaGVhZGVyLmRpcmVjdGl2ZSc7XG5cbi8vIE1vZGVsc1xuZXhwb3J0IHsgTGlzdCB9IGZyb20gJy4vYXBwL2NsYXNzZXMvbGlzdC1jb250cm9sbGVyJztcbmV4cG9ydCB7IFBhZ2luYXRpb25Db250cm9sbGVyIH0gZnJvbSAnLi9hcHAvY2xhc3Nlcy9wYWdpbmF0aW9uLWNvbnRyb2xsZXInO1xuZXhwb3J0IHsgUmVvcmRlckNvbnRyb2xsZXIsIFJlb3JkZXJQb3NpdGlvbiB9IGZyb20gJy4vYXBwL2NsYXNzZXMvcmVvcmRlci1jb250cm9sbGVyJztcbmV4cG9ydCB7IFNlbGVjdGlvbkNoYW5nZVR5cGUsIFNlbGVjdGlvbkNvbnRyb2xsZXIgfSBmcm9tICcuL2FwcC9jbGFzc2VzL3NlbGVjdGlvbi1jb250cm9sbGVyJztcbmV4cG9ydCB7IFNvcnRpbmdDb250cm9sbGVyIH0gZnJvbSAnLi9hcHAvY2xhc3Nlcy9zb3J0aW5nLWNvbnRyb2xsZXInO1xuZXhwb3J0IHsgQ29sdW1uLCBTb3J0aW5nRGlyZWN0aW9uIH0gZnJvbSAnLi9hcHAvbW9kZWxzL2NvbHVtbi5tb2RlbCc7XG5leHBvcnQgeyBSb3dBY3Rpb24gfSBmcm9tICcuL2FwcC9tb2RlbHMvcm93LWFjdGlvbi5tb2RlbCc7XG5leHBvcnQgeyBTdHlsZUNvbmZpZyB9IGZyb20gJy4vYXBwL21vZGVscy9zdHlsZUNvbmZpZy5tb2RlbCc7XG5cbi8vIEludGVyZmFjZXNcbmV4cG9ydCB7IENlbGxDb25maWcgfSBmcm9tICcuL2FwcC9pbnRlcmZhY2VzL2NlbGxjb25maWcuaW50ZXJmYWNlJztcbmV4cG9ydCB7XG4gIEZzTGlzdEFic3RyYWN0Um93LCBGc0xpc3RBY3Rpb24sIEZzTGlzdEFjdGlvblNlbGVjdGVkLCBGc0xpc3RDZWxsQ29uZmlnLCBGc0xpc3RDb2x1bW4sIEZzTGlzdENvbHVtbkNoYW5nZUZuLCBGc0xpc3RDb2x1bW5Db25maWcsIEZzTGlzdENvbHVtbkxvYWRGbiwgRnNMaXN0Q29uZmlnLCBGc0xpc3RFbXB0eVN0YXRlQ29uZmlnLCBGc0xpc3RGZXRjaEZuLCBGc0xpc3RGZXRjaE9wdGlvbnMsIEZzTGlzdEZldGNoU3Vic2NyaXB0aW9uLCBGc0xpc3RGb290ZXJDb25maWcsIEZzTGlzdEdyb3VwQ29uZmlnLCBGc0xpc3RIZWFkZXJDb25maWcsXG4gIEZzTGlzdE5vUmVzdWx0c0NvbmZpZyxcbiAgRnNMaXN0UmVvcmRlckNvbmZpZywgRnNMaXN0UmVvcmRlckRhdGEsIEZzTGlzdFJlb3JkZXJEb25lQ2FsbGJhY2ssIEZzTGlzdFJlb3JkZXJNb3ZlSW5Hcm91cENhbGxiYWNrLCBGc0xpc3RSZW9yZGVyTW92ZWRDYWxsYmFjaywgRnNMaXN0UmVzdG9yZUNvbmZpZywgRnNMaXN0Um93QWN0aW9uLCBGc0xpc3RSb3dBY3Rpb25GaWxlLCBGc0xpc3RSb3dBY3Rpb25GaWxlRm4sIEZzTGlzdFJvd0FjdGlvbkdyb3VwLCBGc0xpc3RSb3dBY3Rpb25MaW5rLFxuICBGc0xpc3RSb3dBY3Rpb25MaW5rRm4sIEZzTGlzdFJvd0NsYXNzT3B0aW9ucywgRnNMaXN0U2Nyb2xsYWJsZUNvbmZpZyxcbiAgRnNMaXN0U2VsZWN0aW9uQ29uZmlnLFxuICBGc0xpc3RTb3J0c0NvbmZpZywgRnNMaXN0U3RhdGVWYWxpZGF0aW9uRm4sIEZzTGlzdFRyYWNrQnlGbixcbiAgRnNMaXN0VHJhY2tCeVRhcmdldFJvd0ZuLFxuICBGc1BhZ2luZyxcbn0gZnJvbSAnLi9hcHAvaW50ZXJmYWNlcy9saXN0Y29uZmlnLmludGVyZmFjZSc7XG5leHBvcnQgeyBRdWVyeU9mZnNldFN0cmF0ZWd5LCBRdWVyeVBhZ2VTdHJhdGVneSB9IGZyb20gJy4vYXBwL2ludGVyZmFjZXMvcGFnaW5hdGlvbi5pbnRlcmZhY2UnO1xuZXhwb3J0IHsgU29ydGluZ0NoYW5nZUV2ZW50IH0gZnJvbSAnLi9hcHAvaW50ZXJmYWNlcy9zb3J0aW5nLWNoYW5nZS1ldmVudC5pbnRlcmZhY2UnO1xuZXhwb3J0IHsgSVBhZ2luYXRpb25TdGF0ZSB9IGZyb20gJy4vYXBwL2ludGVyZmFjZXMvcGFnaW5hdGlvbi1zdGF0ZS5pbnRlcmZhY2UnO1xuXG4vLyBFbnVtc1xuZXhwb3J0IHsgQWN0aW9uVHlwZSB9IGZyb20gJy4vYXBwL2VudW1zL2J1dHRvbi10eXBlLmVudW0nO1xuZXhwb3J0IHsgUGFnaW5hdGlvblN0cmF0ZWd5IH0gZnJvbSAnLi9hcHAvZW51bXMvcGFnaW5hdGlvbi1zdHJhdGVneS5lbnVtJztcbmV4cG9ydCB7IFJvd1R5cGUgfSBmcm9tICcuL2FwcC9lbnVtcy9yb3ctdHlwZS5lbnVtJztcbmV4cG9ydCB7IEZzTGlzdFN0YXRlIH0gZnJvbSAnLi9hcHAvZW51bXMvc3RhdGUuZW51bSc7XG5cbiJdfQ==
|