@theseam/ui-common 0.4.29 → 0.4.30
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/breadcrumbs/breadcrumbs/breadcrumbs.component.scss +1 -1
- package/datatable/datatable/datatable.component.d.ts +61 -9
- package/datatable/datatable-column-filter-menu/datatable-column-filter-menu.component.d.ts +25 -0
- package/datatable/datatable-column-filter-search-date/datatable-column-filter-search-date.component.d.ts +18 -0
- package/datatable/datatable-column-filter-search-numeric/datatable-column-filter-search-numeric.component.d.ts +16 -0
- package/datatable/datatable-column-filter-search-text/datatable-column-filter-search-text.component.d.ts +15 -0
- package/datatable/datatable-menu-bar/datatable-menu-bar.component.d.ts +2 -2
- package/datatable/datatable.module.d.ts +29 -20
- package/datatable/directives/datatable-column-filter-tpl.directive.d.ts +8 -0
- package/datatable/directives/datatable-column-filter.directive.d.ts +10 -0
- package/datatable/models/action-item-column-position.d.ts +13 -0
- package/datatable/models/columns-data-filter.d.ts +57 -0
- package/datatable/models/columns-data-filters/models.d.ts +65 -0
- package/datatable/models/columns-data-filters/search-date.columns-data-filter.d.ts +23 -0
- package/datatable/models/columns-data-filters/search-numeric.columns-data-filter.d.ts +22 -0
- package/datatable/models/columns-data-filters/search-text.columns-data-filter.d.ts +21 -0
- package/datatable/models/columns-data-filters/utils.d.ts +15 -0
- package/datatable/models/datatable-config.d.ts +97 -0
- package/datatable/models/table-column.d.ts +22 -1
- package/datatable/public-api.d.ts +14 -0
- package/datatable/services/columns-filters.service.d.ts +29 -0
- package/datatable/services/columns-manager.service.d.ts +7 -0
- package/datatable/utils/create-action-menu-column.d.ts +1 -1
- package/esm2020/asset-reader/asset-reader-helper.service.mjs +4 -4
- package/esm2020/asset-reader/asset-reader.module.mjs +5 -5
- package/esm2020/asset-reader/encrypted-asset-link.directive.mjs +4 -4
- package/esm2020/breadcrumbs/breadcrumbs/breadcrumbs.component.mjs +5 -5
- package/esm2020/breadcrumbs/breadcrumbs.module.mjs +5 -5
- package/esm2020/breadcrumbs/breadcrumbs.service.mjs +4 -4
- package/esm2020/buttons/badge-button/badge-button.component.mjs +7 -7
- package/esm2020/buttons/button/button.component.mjs +10 -10
- package/esm2020/buttons/buttons.module.mjs +5 -5
- package/esm2020/buttons/progress-circle-button/progress-circle-button.component.mjs +4 -4
- package/esm2020/buttons/toggle-button/toggle-button.component.mjs +4 -4
- package/esm2020/card/card-action/card-action.component.mjs +4 -4
- package/esm2020/card/card-body/card-body.component.mjs +4 -4
- package/esm2020/card/card-footer/card-footer.component.mjs +4 -4
- package/esm2020/card/card-header/card-header.component.mjs +4 -4
- package/esm2020/card/card.component.mjs +4 -4
- package/esm2020/card/card.module.mjs +5 -5
- package/esm2020/carousel/carousel-slide.directive.mjs +4 -4
- package/esm2020/carousel/carousel.component.mjs +4 -4
- package/esm2020/carousel/carousel.module.mjs +5 -5
- package/esm2020/checkbox/checkbox.component.mjs +4 -4
- package/esm2020/checkbox/checkbox.module.mjs +5 -5
- package/esm2020/confirm-dialog/confirm-click.directive.mjs +4 -4
- package/esm2020/confirm-dialog/confirm-dialog.component.mjs +4 -4
- package/esm2020/confirm-dialog/confirm-dialog.module.mjs +5 -5
- package/esm2020/confirm-dialog/confirm-dialog.service.mjs +4 -4
- package/esm2020/data-exporter/data-exporter.module.mjs +5 -5
- package/esm2020/data-exporter/exporters/csv-exporter.mjs +4 -4
- package/esm2020/data-exporter/exporters/xlsx-exporter.mjs +4 -4
- package/esm2020/data-filters/data-filters.module.mjs +5 -5
- package/esm2020/data-filters/filters/data-filter-search/data-filter-search.component.mjs +4 -4
- package/esm2020/data-filters/filters/data-filter-text/data-filter-text.component.mjs +4 -4
- package/esm2020/data-filters/filters/data-filter-toggle-buttons/data-filter-toggle-buttons.component.mjs +4 -4
- package/esm2020/datatable/datatable/datatable.component.mjs +241 -32
- package/esm2020/datatable/datatable-action-menu/datatable-action-menu.component.mjs +5 -5
- package/esm2020/datatable/datatable-action-menu-item/datatable-action-menu-item.component.mjs +4 -4
- package/esm2020/datatable/datatable-column/datatable-column.component.mjs +4 -4
- package/esm2020/datatable/datatable-column-filter-menu/datatable-column-filter-menu.component.mjs +55 -0
- package/esm2020/datatable/datatable-column-filter-search-date/datatable-column-filter-search-date.component.mjs +54 -0
- package/esm2020/datatable/datatable-column-filter-search-numeric/datatable-column-filter-search-numeric.component.mjs +48 -0
- package/esm2020/datatable/datatable-column-filter-search-text/datatable-column-filter-search-text.component.mjs +44 -0
- package/esm2020/datatable/datatable-column-preferences/datatable-column-preferences.component.mjs +4 -4
- package/esm2020/datatable/datatable-column-preferences-button/datatable-column-preferences-button.component.mjs +4 -4
- package/esm2020/datatable/datatable-export-button/datatable-export-button.component.mjs +4 -4
- package/esm2020/datatable/datatable-footer/datatable-footer-tpl.directive.mjs +4 -4
- package/esm2020/datatable/datatable-footer/datatable-footer.directive.mjs +4 -4
- package/esm2020/datatable/datatable-menu-bar/datatable-menu-bar.component.mjs +4 -4
- package/esm2020/datatable/datatable-menu-bar-column-center/datatable-menu-bar-column-center.component.mjs +4 -4
- package/esm2020/datatable/datatable-menu-bar-column-left/datatable-menu-bar-column-left.component.mjs +4 -4
- package/esm2020/datatable/datatable-menu-bar-column-right/datatable-menu-bar-column-right.component.mjs +4 -4
- package/esm2020/datatable/datatable-menu-bar-row/datatable-menu-bar-row.component.mjs +4 -4
- package/esm2020/datatable/datatable-menu-bar-text/datatable-menu-bar-text.component.mjs +4 -4
- package/esm2020/datatable/datatable-row-detail/datatable-row-detail-tpl.directive.mjs +4 -4
- package/esm2020/datatable/datatable-row-detail/datatable-row-detail.directive.mjs +4 -4
- package/esm2020/datatable/datatable.module.mjs +53 -11
- package/esm2020/datatable/directives/datatable-action-menu-item.directive.mjs +4 -4
- package/esm2020/datatable/directives/datatable-action-menu-toggle.directive.mjs +4 -4
- package/esm2020/datatable/directives/datatable-cell-tpl.directive.mjs +4 -4
- package/esm2020/datatable/directives/datatable-column-filter-tpl.directive.mjs +16 -0
- package/esm2020/datatable/directives/datatable-column-filter.directive.mjs +26 -0
- package/esm2020/datatable/directives/datatable-filter.directive.mjs +4 -4
- package/esm2020/datatable/directives/datatable-row-action-item.directive.mjs +4 -4
- package/esm2020/datatable/models/action-item-column-position.mjs +5 -0
- package/esm2020/datatable/models/columns-data-filter.mjs +10 -0
- package/esm2020/datatable/models/columns-data-filters/models.mjs +74 -0
- package/esm2020/datatable/models/columns-data-filters/search-date.columns-data-filter.mjs +113 -0
- package/esm2020/datatable/models/columns-data-filters/search-numeric.columns-data-filter.mjs +104 -0
- package/esm2020/datatable/models/columns-data-filters/search-text.columns-data-filter.mjs +86 -0
- package/esm2020/datatable/models/columns-data-filters/utils.mjs +28 -0
- package/esm2020/datatable/models/datatable-config.mjs +3 -0
- package/esm2020/datatable/models/table-column.mjs +1 -1
- package/esm2020/datatable/public-api.mjs +15 -1
- package/esm2020/datatable/services/columns-alterations-manager.service.mjs +4 -4
- package/esm2020/datatable/services/columns-filters.service.mjs +109 -0
- package/esm2020/datatable/services/columns-manager.service.mjs +30 -5
- package/esm2020/datatable/services/datatable-column-changes.service.mjs +4 -4
- package/esm2020/datatable/services/datatable-preferences.service.mjs +4 -4
- package/esm2020/datatable/services/datatable-scrollbar-helper.service.mjs +4 -4
- package/esm2020/datatable/utils/create-action-menu-column.mjs +4 -3
- package/esm2020/datatable-dynamic/datatable-dynamic-action-menu/datatable-dynamic-action-menu.component.mjs +4 -4
- package/esm2020/datatable-dynamic/datatable-dynamic-filter-container/datatable-dynamic-filter-container.component.mjs +4 -4
- package/esm2020/datatable-dynamic/datatable-dynamic-menu-bar-content/datatable-dynamic-menu-bar-content.component.mjs +4 -4
- package/esm2020/datatable-dynamic/datatable-dynamic.component.mjs +5 -5
- package/esm2020/datatable-dynamic/datatable-dynamic.module.mjs +5 -5
- package/esm2020/datatable-dynamic/directives/datatable-dynamic-action-menu-item.directive.mjs +4 -4
- package/esm2020/datatable-dynamic/dynamic-datatable-def.service.mjs +4 -4
- package/esm2020/datatable-dynamic/dynamic-datatable-row-actions.service.mjs +4 -4
- package/esm2020/dynamic/action/api/dynamic-action-api.service.mjs +4 -4
- package/esm2020/dynamic/action/dynamic-action-helper.service.mjs +4 -4
- package/esm2020/dynamic/action/link/dynamic-action-link.service.mjs +4 -4
- package/esm2020/dynamic/action/modal/dynamic-action-modal.service.mjs +4 -4
- package/esm2020/dynamic/dynamic-value-helper.service.mjs +4 -4
- package/esm2020/dynamic/evaluators/exporters-data-evaluator/exporters-data-evaluator.mjs +4 -4
- package/esm2020/dynamic/evaluators/jexl-evaluator/jexl-evaluator.mjs +4 -4
- package/esm2020/dynamic-component-loader/dynamic-component-loader.module.mjs +5 -5
- package/esm2020/dynamic-component-loader/dynamic-component-loader.service.mjs +4 -4
- package/esm2020/footer-bar/footer-bar/footer-bar.component.mjs +4 -4
- package/esm2020/footer-bar/footer-bar.module.mjs +5 -5
- package/esm2020/form-field/form-field-error.directive.mjs +4 -4
- package/esm2020/form-field/form-field-help-text.directive.mjs +4 -4
- package/esm2020/form-field/form-field-label-tpl.directive.mjs +4 -4
- package/esm2020/form-field/form-field-required-indicator.component.mjs +4 -4
- package/esm2020/form-field/form-field.component.mjs +4 -4
- package/esm2020/form-field/form-field.module.mjs +5 -5
- package/esm2020/form-field/input.directive.mjs +4 -4
- package/esm2020/form-field-error/form-field-error/form-field-error.component.mjs +4 -4
- package/esm2020/form-field-error/form-field-error-list/form-field-error-list-item-tpl.directive.mjs +4 -4
- package/esm2020/form-field-error/form-field-error-list/form-field-error-list-item.directive.mjs +4 -4
- package/esm2020/form-field-error/form-field-error-list/form-field-error-list.component.mjs +4 -4
- package/esm2020/form-field-error/form-field-error.module.mjs +5 -5
- package/esm2020/framework/base-layout/base-layout.component.mjs +16 -6
- package/esm2020/framework/base-layout/base-layout.module.mjs +10 -5
- package/esm2020/framework/base-layout/directives/base-layout-content-footer.directive.mjs +4 -4
- package/esm2020/framework/base-layout/directives/base-layout-content-header.directive.mjs +4 -4
- package/esm2020/framework/base-layout/directives/base-layout-content.directive.mjs +4 -4
- package/esm2020/framework/base-layout/directives/base-layout-nav-toggle.directive.mjs +22 -6
- package/esm2020/framework/base-layout/directives/base-layout-side-bar-footer.directive.mjs +4 -4
- package/esm2020/framework/base-layout/directives/base-layout-side-bar-header.directive.mjs +16 -0
- package/esm2020/framework/base-layout/directives/base-layout-side-bar.directive.mjs +4 -4
- package/esm2020/framework/base-layout/directives/base-layout-top-bar.directive.mjs +4 -4
- package/esm2020/framework/base-layout/index.mjs +2 -1
- package/esm2020/framework/dashboard/dashboard-widget-container/dashboard-widget-container.component.mjs +4 -4
- package/esm2020/framework/dashboard/dashboard-widget-template-container/dashboard-widget-template-container.component.mjs +4 -4
- package/esm2020/framework/dashboard/dashboard-widgets/dashboard-widget-portal-outlet.directive.mjs +4 -4
- package/esm2020/framework/dashboard/dashboard-widgets/dashboard-widgets-preferences.service.mjs +4 -4
- package/esm2020/framework/dashboard/dashboard-widgets/dashboard-widgets.component.mjs +4 -4
- package/esm2020/framework/dashboard/dashboard-widgets/dashboard-widgets.service.mjs +4 -4
- package/esm2020/framework/dashboard/dashboard.component.mjs +4 -4
- package/esm2020/framework/dashboard/dashboard.module.mjs +5 -5
- package/esm2020/framework/dynamic-router/dynamic-router.module.mjs +5 -5
- package/esm2020/framework/dynamic-router/hierarchy-router-outlet/hierarchy-router-outlet.component.mjs +4 -4
- package/esm2020/framework/dynamic-router/resolvers/hierarchy-level.resolver.mjs +4 -4
- package/esm2020/framework/nav/horizontal-nav/horizontal-nav.component.mjs +55 -0
- package/esm2020/framework/nav/index.mjs +6 -0
- package/esm2020/framework/nav/nav-item/nav-item.component.mjs +227 -0
- package/esm2020/framework/nav/nav-utils.mjs +107 -0
- package/esm2020/framework/nav/nav.models.mjs +2 -0
- package/esm2020/framework/nav/nav.module.mjs +67 -0
- package/esm2020/framework/nav/nav.service.mjs +204 -0
- package/esm2020/framework/public-api.mjs +2 -1
- package/esm2020/framework/schema-form/schema-form-framework.component.mjs +4 -4
- package/esm2020/framework/schema-form/schema-form-framework.mjs +4 -4
- package/esm2020/framework/schema-form/schema-form.module.mjs +5 -5
- package/esm2020/framework/schema-form-controls/schema-form-checkbox/schema-form-checkbox.component.mjs +4 -4
- package/esm2020/framework/schema-form-controls/schema-form-divider/schema-form-divider.component.mjs +4 -4
- package/esm2020/framework/schema-form-controls/schema-form-input/schema-form-input.component.mjs +4 -4
- package/esm2020/framework/schema-form-controls/schema-form-number/schema-form-number.component.mjs +4 -4
- package/esm2020/framework/schema-form-controls/schema-form-select/schema-form-select.component.mjs +4 -4
- package/esm2020/framework/schema-form-controls/schema-form-submit/schema-form-submit.component.mjs +4 -4
- package/esm2020/framework/schema-form-controls/schema-form-submit-split/schema-form-submit-split.component.mjs +4 -4
- package/esm2020/framework/schema-form-controls/schema-form-tel/schema-form-tel.component.mjs +4 -4
- package/esm2020/framework/schema-form-controls/schema-form-tiled-select/schema-form-tiled-select.component.mjs +4 -4
- package/esm2020/framework/side-nav/side-nav-item/side-nav-item.component.mjs +29 -68
- package/esm2020/framework/side-nav/side-nav-toggle/side-nav-toggle.component.mjs +14 -7
- package/esm2020/framework/side-nav/side-nav.component.mjs +117 -39
- package/esm2020/framework/side-nav/side-nav.models.mjs +1 -1
- package/esm2020/framework/side-nav/side-nav.module.mjs +11 -41
- package/esm2020/framework/side-nav/side-nav.service.mjs +4 -4
- package/esm2020/framework/top-bar/index.mjs +3 -1
- package/esm2020/framework/top-bar/top-bar-compact-menu-btn-detail.directive.mjs +16 -0
- package/esm2020/framework/top-bar/top-bar-item.directive.mjs +12 -6
- package/esm2020/framework/top-bar/top-bar-menu-btn-detail.directive.mjs +4 -4
- package/esm2020/framework/top-bar/top-bar-menu-button/top-bar-menu-button.component.mjs +8 -6
- package/esm2020/framework/top-bar/top-bar-menu.directive.mjs +4 -4
- package/esm2020/framework/top-bar/top-bar-nav-toggle-btn-detail.directive.mjs +16 -0
- package/esm2020/framework/top-bar/top-bar-title/top-bar-title.component.mjs +4 -4
- package/esm2020/framework/top-bar/top-bar.component.mjs +57 -13
- package/esm2020/framework/top-bar/top-bar.module.mjs +19 -9
- package/esm2020/google-maps/google-maps/google-maps.component.mjs +4 -4
- package/esm2020/google-maps/google-maps-api-loader/lazy-google-maps-api-loader.mjs +4 -4
- package/esm2020/google-maps/google-maps-api-loader/noop-google-maps-api-loader.mjs +4 -4
- package/esm2020/google-maps/google-maps-controls.service.mjs +4 -4
- package/esm2020/google-maps/google-maps-places-autocomplete/google-maps-places-autocomplete.component.mjs +5 -5
- package/esm2020/google-maps/google-maps-places-autocomplete/google-maps-places-autocomplete.directive.mjs +4 -4
- package/esm2020/google-maps/google-maps-recenter-button-control/google-maps-recenter-button-control.component.mjs +4 -4
- package/esm2020/google-maps/google-maps-upload-button-control/google-maps-upload-button-control.component.mjs +4 -4
- package/esm2020/google-maps/google-maps.module.mjs +5 -5
- package/esm2020/google-maps/google-maps.service.mjs +4 -4
- package/esm2020/google-maps/map-control.component.mjs +4 -4
- package/esm2020/google-maps/map-file-drop/map-file-drop.component.mjs +4 -4
- package/esm2020/google-maps/map-value-manager.service.mjs +4 -4
- package/esm2020/graphql/datatable/datatable-graphql.service.mjs +4 -4
- package/esm2020/graphql/datatable/index.mjs +4 -1
- package/esm2020/graphql/datatable/map-filter-states.mjs +1 -1
- package/esm2020/graphql/datatable/map-search-date-columns-data-filter-state-to-gql.mjs +139 -0
- package/esm2020/graphql/datatable/map-search-numeric-columns-data-filter-state-to-gql.mjs +75 -0
- package/esm2020/graphql/datatable/map-search-text-columns-data-filter-state-to-gql.mjs +44 -0
- package/esm2020/icon/icon/icon.component.mjs +4 -4
- package/esm2020/icon/icon-btn/icon-btn.component.mjs +4 -4
- package/esm2020/icon/icon-notification/icon-notification.component.mjs +4 -4
- package/esm2020/icon/icon.module.mjs +5 -5
- package/esm2020/layout/layout.module.mjs +5 -5
- package/esm2020/layout/layout.service.mjs +15 -5
- package/esm2020/loading/loading/loading.component.mjs +4 -4
- package/esm2020/loading/loading-overlay.service.mjs +4 -4
- package/esm2020/loading/loading.module.mjs +5 -5
- package/esm2020/menu/menu-divider.component.mjs +4 -4
- package/esm2020/menu/menu-footer/menu-footer.component.mjs +4 -4
- package/esm2020/menu/menu-footer-action/menu-footer-action.component.mjs +4 -4
- package/esm2020/menu/menu-header/menu-header.component.mjs +4 -4
- package/esm2020/menu/menu-item.component.mjs +4 -4
- package/esm2020/menu/menu-toggle.directive.mjs +9 -4
- package/esm2020/menu/menu.component.mjs +4 -4
- package/esm2020/menu/menu.module.mjs +5 -5
- package/esm2020/modal/directives/modal-close.directive.mjs +4 -4
- package/esm2020/modal/directives/modal-footer-tpl.directive.mjs +4 -4
- package/esm2020/modal/directives/modal-header-icon-tpl.directive.mjs +4 -4
- package/esm2020/modal/directives/modal-header-title-tpl.directive.mjs +4 -4
- package/esm2020/modal/directives/modal-title.directive.mjs +4 -4
- package/esm2020/modal/directives/modal.directive.mjs +4 -4
- package/esm2020/modal/modal/modal.component.mjs +4 -4
- package/esm2020/modal/modal-body/modal-body.component.mjs +4 -4
- package/esm2020/modal/modal-container/modal-container.component.mjs +4 -4
- package/esm2020/modal/modal-footer/modal-footer.component.mjs +4 -4
- package/esm2020/modal/modal-header/modal-header.component.mjs +4 -4
- package/esm2020/modal/modal.module.mjs +5 -5
- package/esm2020/modal/modal.service.mjs +4 -4
- package/esm2020/modal/route-modal/route-modal.component.mjs +4 -4
- package/esm2020/navigation-reload/navigation-reload.service.mjs +4 -4
- package/esm2020/popover/popover/popover.component.mjs +9 -5
- package/esm2020/popover/popover.directive.mjs +8 -4
- package/esm2020/popover/popover.module.mjs +5 -5
- package/esm2020/progress/progress-circle/progress-circle.component.mjs +4 -4
- package/esm2020/progress/progress.module.mjs +5 -5
- package/esm2020/rich-text/rich-text/rich-text.component.mjs +4 -4
- package/esm2020/rich-text/rich-text.module.mjs +5 -5
- package/esm2020/scrollbar/overlay-scrollbar.directive.mjs +4 -4
- package/esm2020/scrollbar/overlay-scrollbars.service.mjs +4 -4
- package/esm2020/scrollbar/scrollbar.module.mjs +5 -5
- package/esm2020/services/asset-loader.service.mjs +4 -4
- package/esm2020/services/font-loader.service.mjs +4 -4
- package/esm2020/services/preferences/preferences-manager.service.mjs +4 -4
- package/esm2020/services/router-helpers.service.mjs +4 -4
- package/esm2020/shared/components/password-input-reveal/password-input-reveal.component.mjs +4 -4
- package/esm2020/shared/directives/auto-focus.directive.mjs +4 -4
- package/esm2020/shared/directives/click-outside.directive.mjs +4 -4
- package/esm2020/shared/directives/disable-control.directive.mjs +4 -4
- package/esm2020/shared/directives/elem-resized.directive.mjs +4 -4
- package/esm2020/shared/directives/hover-class-toggle.directive.mjs +4 -4
- package/esm2020/shared/directives/hover-class.directive.mjs +4 -4
- package/esm2020/shared/directives/ng-select-extra.directive.mjs +4 -4
- package/esm2020/shared/directives/ngx-quill-extra.directive.mjs +4 -4
- package/esm2020/shared/pipes/mask-chars.pipe.mjs +4 -4
- package/esm2020/shared/pipes/truncate.pipe.mjs +4 -4
- package/esm2020/shared/shared.module.mjs +5 -5
- package/esm2020/storage/local-storage.service.mjs +4 -4
- package/esm2020/story-helpers/initial-route.service.mjs +4 -4
- package/esm2020/story-helpers/story-empty-with-route.component.mjs +4 -4
- package/esm2020/story-helpers/story-empty.component.mjs +4 -4
- package/esm2020/story-helpers/story-helper-components.module.mjs +5 -5
- package/esm2020/story-helpers/story-initial-route.mjs +5 -5
- package/esm2020/story-helpers/story-modal-container.component.mjs +4 -4
- package/esm2020/story-helpers/story-preferences-accessor.service.mjs +4 -4
- package/esm2020/story-helpers/story-toastr.service.mjs +4 -4
- package/esm2020/tabbed/directives/tabbed-tab-content.directive.mjs +4 -4
- package/esm2020/tabbed/directives/tabbed-tab.directive.mjs +4 -4
- package/esm2020/tabbed/tabbed-content/tabbed-content.component.mjs +4 -4
- package/esm2020/tabbed/tabbed-item/tabbed-item.component.mjs +4 -4
- package/esm2020/tabbed/tabbed.component.mjs +4 -4
- package/esm2020/tabbed/tabbed.module.mjs +5 -5
- package/esm2020/tabbed/tabbed.service.mjs +4 -4
- package/esm2020/table/public-api.mjs +4 -1
- package/esm2020/table/table/table.component.mjs +92 -7
- package/esm2020/table/table-cell-tpl.directive.mjs +17 -0
- package/esm2020/table/table-column-header-tpl.directive.mjs +17 -0
- package/esm2020/table/table-column.component.mjs +68 -0
- package/esm2020/table/table.module.mjs +25 -9
- package/esm2020/table-cell-type/services/table-cell-types-helpers.service.mjs +4 -4
- package/esm2020/table-cell-type/table-cell-type-selector.component.mjs +4 -4
- package/esm2020/table-cell-type/table-cell-type.module.mjs +5 -5
- package/esm2020/table-cell-types/table-cell-type-currency/table-cell-type-currency.component.mjs +4 -4
- package/esm2020/table-cell-types/table-cell-type-date/table-cell-type-date.component.mjs +4 -4
- package/esm2020/table-cell-types/table-cell-type-decimal/table-cell-type-decimal.component.mjs +4 -4
- package/esm2020/table-cell-types/table-cell-type-icon/table-cell-type-icon.component.mjs +4 -4
- package/esm2020/table-cell-types/table-cell-type-integer/table-cell-type-integer.component.mjs +4 -4
- package/esm2020/table-cell-types/table-cell-type-phone/table-cell-type-phone.component.mjs +4 -4
- package/esm2020/table-cell-types/table-cell-type-progress-circle/table-cell-type-progress-circle.component.mjs +4 -4
- package/esm2020/table-cell-types/table-cell-type-progress-circle-icon/table-cell-type-progress-circle-icon.component.mjs +4 -4
- package/esm2020/table-cell-types/table-cell-type-string/table-cell-type-string.component.mjs +7 -5
- package/esm2020/table-cell-types/table-cell-types.module.mjs +5 -5
- package/esm2020/tel-input/phone-number.pipe.mjs +4 -4
- package/esm2020/tel-input/tel-input/tel-input.component.mjs +4 -4
- package/esm2020/tel-input/tel-input.directive.mjs +4 -4
- package/esm2020/tel-input/tel-input.module.mjs +5 -5
- package/esm2020/tiled-select/components/tiled-select/tiled-select.component.mjs +4 -4
- package/esm2020/tiled-select/components/tiled-select-tile/tiled-select-tile.component.mjs +4 -4
- package/esm2020/tiled-select/components/tiled-select-tile-icon/tiled-select-tile-icon.component.mjs +4 -4
- package/esm2020/tiled-select/directives/tiled-select-tile-icon-tpl.directive.mjs +4 -4
- package/esm2020/tiled-select/directives/tiled-select-tile-label-tpl.directive.mjs +4 -4
- package/esm2020/tiled-select/directives/tiled-select-tile-overlay.directive.mjs +4 -4
- package/esm2020/tiled-select/tiled-select.module.mjs +5 -5
- package/esm2020/toggle-edit/toggle-edit-actions-container/toggle-edit-actions-container.component.mjs +4 -4
- package/esm2020/toggle-edit/toggle-edit-display-tpl.directive.mjs +4 -4
- package/esm2020/toggle-edit/toggle-edit-keyboard-listener.service.mjs +4 -4
- package/esm2020/toggle-edit/toggle-edit.component.mjs +4 -4
- package/esm2020/toggle-edit/toggle-edit.module.mjs +5 -5
- package/esm2020/toggle-group/toggle-group-option.directive.mjs +4 -4
- package/esm2020/toggle-group/toggle-group.directive.mjs +4 -4
- package/esm2020/toggle-group/toggle-group.module.mjs +5 -5
- package/esm2020/unsaved-changes-dialog/unsaved-changes-can-deactivate.mjs +4 -4
- package/esm2020/unsaved-changes-dialog/unsaved-changes-dialog.component.mjs +4 -4
- package/esm2020/unsaved-changes-dialog/unsaved-changes-dialog.guard.mjs +4 -4
- package/esm2020/unsaved-changes-dialog/unsaved-changes-dialog.module.mjs +5 -5
- package/esm2020/utils/geo-json/coerce-feature-collection.mjs +1 -1
- package/esm2020/utils/geo-json/is-feature-collection.validator.mjs +1 -1
- package/esm2020/utils/geo-json/is-only-geometry-types.mjs +1 -1
- package/esm2020/utils/geo-json/merge-polygons.mjs +1 -1
- package/esm2020/utils/geo-json/no-inner-rings.validator.mjs +1 -1
- package/esm2020/utils/geo-json/split-multi-polygons.mjs +1 -1
- package/esm2020/vertical-list-filter/vertical-list-filter.component.mjs +4 -4
- package/esm2020/viewers/html-template-viewer/html-template-viewer.component.mjs +4 -4
- package/esm2020/viewers/html-template-viewer/html-template-viewer.module.mjs +5 -5
- package/esm2020/viewers/pdf-viewer/pdf-page/pdf-page.component.mjs +4 -4
- package/esm2020/viewers/pdf-viewer/pdf-renderer.service.mjs +4 -4
- package/esm2020/viewers/pdf-viewer/pdf-viewer.component.mjs +4 -4
- package/esm2020/viewers/pdf-viewer/pdf-viewer.module.mjs +5 -5
- package/esm2020/widget/directives/widget-drag-handle.directive.mjs +4 -4
- package/esm2020/widget/directives/widget-icon-tpl.directive.mjs +4 -4
- package/esm2020/widget/directives/widget-title-tpl.directive.mjs +4 -4
- package/esm2020/widget/preferences/widget-preferences.service.mjs +4 -4
- package/esm2020/widget/widget/widget.component.mjs +4 -4
- package/esm2020/widget/widget-content-components/widget-button-group/widget-button-group.component.mjs +4 -4
- package/esm2020/widget/widget-content-components/widget-button-group/widget-button-group.module.mjs +5 -5
- package/esm2020/widget/widget-content-components/widget-content-header/widget-content-header.component.mjs +4 -4
- package/esm2020/widget/widget-content-components/widget-content-header/widget-content-header.module.mjs +5 -5
- package/esm2020/widget/widget-content-components/widget-description/widget-description.component.mjs +4 -4
- package/esm2020/widget/widget-content-components/widget-description/widget-description.module.mjs +5 -5
- package/esm2020/widget/widget-content-components/widget-empty-label/widget-empty-label.component.mjs +4 -4
- package/esm2020/widget/widget-content-components/widget-empty-label/widget-empty-label.module.mjs +5 -5
- package/esm2020/widget/widget-content-components/widget-footer-link/widget-footer-link.component.mjs +4 -4
- package/esm2020/widget/widget-content-components/widget-footer-link/widget-footer-link.module.mjs +5 -5
- package/esm2020/widget/widget-content-components/widget-footer-text/widget-footer-text.component.mjs +4 -4
- package/esm2020/widget/widget-content-components/widget-footer-text/widget-footer-text.module.mjs +5 -5
- package/esm2020/widget/widget-content-components/widget-header-badge/widget-header-badge.component.mjs +4 -4
- package/esm2020/widget/widget-content-components/widget-header-badge/widget-header-badge.module.mjs +5 -5
- package/esm2020/widget/widget-content-components/widget-list-group/widget-list-group-item/widget-list-group-item-icon-tpl.directive.mjs +4 -4
- package/esm2020/widget/widget-content-components/widget-list-group/widget-list-group-item/widget-list-group-item.component.mjs +16 -16
- package/esm2020/widget/widget-content-components/widget-list-group/widget-list-group.component.mjs +4 -4
- package/esm2020/widget/widget-content-components/widget-list-group/widget-list-group.module.mjs +5 -5
- package/esm2020/widget/widget-content-components/widget-table/widget-table.component.mjs +4 -4
- package/esm2020/widget/widget-content-components/widget-table/widget-table.module.mjs +5 -5
- package/esm2020/widget/widget-content-components/widget-tile/widget-tile-footer/widget-tile-footer.component.mjs +4 -4
- package/esm2020/widget/widget-content-components/widget-tile/widget-tile-footer-item/widget-tile-footer-item.component.mjs +4 -4
- package/esm2020/widget/widget-content-components/widget-tile/widget-tile-group/widget-tile-group.component.mjs +4 -4
- package/esm2020/widget/widget-content-components/widget-tile/widget-tile-secondary-icon.directive.mjs +4 -4
- package/esm2020/widget/widget-content-components/widget-tile/widget-tile.component.mjs +7 -7
- package/esm2020/widget/widget-content-components/widget-tile/widget-tile.module.mjs +5 -5
- package/esm2020/widget/widget-content-components/widget-tile-list/widget-tile-list.component.mjs +4 -4
- package/esm2020/widget/widget-content-components/widget-tile-list/widget-tile-list.module.mjs +5 -5
- package/esm2020/widget/widget-footer/widget-footer.component.mjs +4 -4
- package/esm2020/widget/widget-registry.service.mjs +4 -4
- package/esm2020/widget/widget.module.mjs +5 -5
- package/fesm2015/theseam-ui-common-asset-reader.mjs +10 -10
- package/fesm2015/theseam-ui-common-asset-reader.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-breadcrumbs.mjs +11 -11
- package/fesm2015/theseam-ui-common-breadcrumbs.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-buttons.mjs +25 -25
- package/fesm2015/theseam-ui-common-buttons.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-card.mjs +19 -19
- package/fesm2015/theseam-ui-common-card.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-carousel.mjs +10 -10
- package/fesm2015/theseam-ui-common-carousel.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-checkbox.mjs +7 -7
- package/fesm2015/theseam-ui-common-checkbox.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-confirm-dialog.mjs +13 -13
- package/fesm2015/theseam-ui-common-confirm-dialog.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-data-exporter.mjs +10 -10
- package/fesm2015/theseam-ui-common-data-exporter.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-data-filters.mjs +13 -13
- package/fesm2015/theseam-ui-common-data-filters.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-datatable-dynamic.mjs +26 -26
- package/fesm2015/theseam-ui-common-datatable-dynamic.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-datatable.mjs +1112 -139
- package/fesm2015/theseam-ui-common-datatable.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-dynamic-component-loader.mjs +7 -7
- package/fesm2015/theseam-ui-common-dynamic-component-loader.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-dynamic.mjs +21 -21
- package/fesm2015/theseam-ui-common-dynamic.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-footer-bar.mjs +7 -7
- package/fesm2015/theseam-ui-common-footer-bar.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-form-field-error.mjs +16 -16
- package/fesm2015/theseam-ui-common-form-field-error.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-form-field.mjs +22 -22
- package/fesm2015/theseam-ui-common-form-field.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-framework.mjs +1026 -277
- package/fesm2015/theseam-ui-common-framework.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-google-maps.mjs +41 -41
- package/fesm2015/theseam-ui-common-google-maps.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-graphql.mjs +257 -4
- package/fesm2015/theseam-ui-common-graphql.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-icon.mjs +13 -13
- package/fesm2015/theseam-ui-common-icon.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-layout.mjs +18 -9
- package/fesm2015/theseam-ui-common-layout.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-loading.mjs +10 -10
- package/fesm2015/theseam-ui-common-loading.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-menu.mjs +30 -25
- package/fesm2015/theseam-ui-common-menu.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-modal.mjs +43 -43
- package/fesm2015/theseam-ui-common-modal.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-navigation-reload.mjs +3 -3
- package/fesm2015/theseam-ui-common-navigation-reload.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-popover.mjs +19 -11
- package/fesm2015/theseam-ui-common-popover.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-progress.mjs +7 -7
- package/fesm2015/theseam-ui-common-progress.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-rich-text.mjs +7 -7
- package/fesm2015/theseam-ui-common-rich-text.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-scrollbar.mjs +10 -10
- package/fesm2015/theseam-ui-common-scrollbar.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-services.mjs +12 -12
- package/fesm2015/theseam-ui-common-services.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-shared.mjs +37 -37
- package/fesm2015/theseam-ui-common-shared.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-storage.mjs +3 -3
- package/fesm2015/theseam-ui-common-storage.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-story-helpers.mjs +26 -26
- package/fesm2015/theseam-ui-common-story-helpers.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-tabbed.mjs +22 -22
- package/fesm2015/theseam-ui-common-tabbed.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-table-cell-type.mjs +10 -10
- package/fesm2015/theseam-ui-common-table-cell-type.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-table-cell-types.mjs +34 -32
- package/fesm2015/theseam-ui-common-table-cell-types.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-table.mjs +207 -15
- package/fesm2015/theseam-ui-common-table.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-tel-input.mjs +13 -13
- package/fesm2015/theseam-ui-common-tel-input.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-tiled-select.mjs +22 -22
- package/fesm2015/theseam-ui-common-tiled-select.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-toggle-edit.mjs +16 -16
- package/fesm2015/theseam-ui-common-toggle-edit.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-toggle-group.mjs +10 -10
- package/fesm2015/theseam-ui-common-toggle-group.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-unsaved-changes-dialog.mjs +13 -13
- package/fesm2015/theseam-ui-common-unsaved-changes-dialog.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-utils.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-vertical-list-filter.mjs +3 -3
- package/fesm2015/theseam-ui-common-vertical-list-filter.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-viewers.mjs +20 -20
- package/fesm2015/theseam-ui-common-viewers.mjs.map +1 -1
- package/fesm2015/theseam-ui-common-widget.mjs +135 -135
- package/fesm2015/theseam-ui-common-widget.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-asset-reader.mjs +10 -10
- package/fesm2020/theseam-ui-common-asset-reader.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-breadcrumbs.mjs +11 -11
- package/fesm2020/theseam-ui-common-breadcrumbs.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-buttons.mjs +25 -25
- package/fesm2020/theseam-ui-common-buttons.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-card.mjs +19 -19
- package/fesm2020/theseam-ui-common-card.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-carousel.mjs +10 -10
- package/fesm2020/theseam-ui-common-carousel.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-checkbox.mjs +7 -7
- package/fesm2020/theseam-ui-common-checkbox.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-confirm-dialog.mjs +13 -13
- package/fesm2020/theseam-ui-common-confirm-dialog.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-data-exporter.mjs +10 -10
- package/fesm2020/theseam-ui-common-data-exporter.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-data-filters.mjs +13 -13
- package/fesm2020/theseam-ui-common-data-filters.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-datatable-dynamic.mjs +26 -26
- package/fesm2020/theseam-ui-common-datatable-dynamic.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-datatable.mjs +1096 -139
- package/fesm2020/theseam-ui-common-datatable.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-dynamic-component-loader.mjs +7 -7
- package/fesm2020/theseam-ui-common-dynamic-component-loader.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-dynamic.mjs +21 -21
- package/fesm2020/theseam-ui-common-dynamic.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-footer-bar.mjs +7 -7
- package/fesm2020/theseam-ui-common-footer-bar.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-form-field-error.mjs +16 -16
- package/fesm2020/theseam-ui-common-form-field-error.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-form-field.mjs +22 -22
- package/fesm2020/theseam-ui-common-form-field.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-framework.mjs +1028 -277
- package/fesm2020/theseam-ui-common-framework.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-google-maps.mjs +41 -41
- package/fesm2020/theseam-ui-common-google-maps.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-graphql.mjs +257 -4
- package/fesm2020/theseam-ui-common-graphql.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-icon.mjs +13 -13
- package/fesm2020/theseam-ui-common-icon.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-layout.mjs +18 -9
- package/fesm2020/theseam-ui-common-layout.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-loading.mjs +10 -10
- package/fesm2020/theseam-ui-common-loading.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-menu.mjs +30 -25
- package/fesm2020/theseam-ui-common-menu.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-modal.mjs +43 -43
- package/fesm2020/theseam-ui-common-modal.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-navigation-reload.mjs +3 -3
- package/fesm2020/theseam-ui-common-navigation-reload.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-popover.mjs +19 -11
- package/fesm2020/theseam-ui-common-popover.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-progress.mjs +7 -7
- package/fesm2020/theseam-ui-common-progress.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-rich-text.mjs +7 -7
- package/fesm2020/theseam-ui-common-rich-text.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-scrollbar.mjs +10 -10
- package/fesm2020/theseam-ui-common-scrollbar.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-services.mjs +12 -12
- package/fesm2020/theseam-ui-common-services.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-shared.mjs +37 -37
- package/fesm2020/theseam-ui-common-shared.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-storage.mjs +3 -3
- package/fesm2020/theseam-ui-common-storage.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-story-helpers.mjs +26 -26
- package/fesm2020/theseam-ui-common-story-helpers.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-tabbed.mjs +22 -22
- package/fesm2020/theseam-ui-common-tabbed.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-table-cell-type.mjs +10 -10
- package/fesm2020/theseam-ui-common-table-cell-type.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-table-cell-types.mjs +34 -32
- package/fesm2020/theseam-ui-common-table-cell-types.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-table.mjs +205 -15
- package/fesm2020/theseam-ui-common-table.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-tel-input.mjs +13 -13
- package/fesm2020/theseam-ui-common-tel-input.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-tiled-select.mjs +22 -22
- package/fesm2020/theseam-ui-common-tiled-select.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-toggle-edit.mjs +16 -16
- package/fesm2020/theseam-ui-common-toggle-edit.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-toggle-group.mjs +10 -10
- package/fesm2020/theseam-ui-common-toggle-group.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-unsaved-changes-dialog.mjs +13 -13
- package/fesm2020/theseam-ui-common-unsaved-changes-dialog.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-utils.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-vertical-list-filter.mjs +3 -3
- package/fesm2020/theseam-ui-common-vertical-list-filter.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-viewers.mjs +20 -20
- package/fesm2020/theseam-ui-common-viewers.mjs.map +1 -1
- package/fesm2020/theseam-ui-common-widget.mjs +135 -135
- package/fesm2020/theseam-ui-common-widget.mjs.map +1 -1
- package/framework/base-layout/base-layout.component.d.ts +4 -2
- package/framework/base-layout/base-layout.component.scss +18 -10
- package/framework/base-layout/base-layout.module.d.ts +11 -10
- package/framework/base-layout/directives/base-layout-nav-toggle.directive.d.ts +8 -3
- package/framework/base-layout/directives/base-layout-side-bar-header.directive.d.ts +9 -0
- package/framework/base-layout/index.d.ts +1 -0
- package/framework/base-layout/styles/_variables.scss +21 -0
- package/framework/nav/_nav-theme.scss +4 -0
- package/framework/nav/horizontal-nav/horizontal-nav.component.d.ts +25 -0
- package/framework/nav/horizontal-nav/horizontal-nav.component.scss +50 -0
- package/framework/nav/index.d.ts +5 -0
- package/framework/nav/nav-item/nav-item.component.d.ts +74 -0
- package/framework/nav/nav-item/nav-item.component.scss +203 -0
- package/framework/nav/nav-utils.d.ts +20 -0
- package/framework/nav/nav.models.d.ts +77 -0
- package/framework/nav/nav.module.d.ts +17 -0
- package/framework/nav/nav.service.d.ts +27 -0
- package/framework/nav/styles/_themes/light/_variables.scss +56 -0
- package/framework/nav/styles/_themes/primary/_variables.scss +56 -0
- package/framework/nav/styles/_utilities.scss +3 -0
- package/framework/nav/styles/_variables.scss +2 -0
- package/framework/public-api.d.ts +1 -0
- package/framework/side-nav/side-nav-item/side-nav-item.component.d.ts +7 -14
- package/framework/side-nav/side-nav-item/side-nav-item.component.scss +7 -5
- package/framework/side-nav/side-nav-toggle/side-nav-toggle.component.d.ts +5 -3
- package/framework/side-nav/side-nav-toggle/side-nav-toggle.component.scss +3 -6
- package/framework/side-nav/side-nav.component.d.ts +13 -1
- package/framework/side-nav/side-nav.component.scss +0 -1
- package/framework/side-nav/side-nav.models.d.ts +7 -1
- package/framework/side-nav/side-nav.module.d.ts +1 -9
- package/framework/side-nav/styles/_themes/light/_variables.scss +24 -14
- package/framework/side-nav/styles/_themes/primary/_variables.scss +8 -0
- package/framework/top-bar/index.d.ts +2 -0
- package/framework/top-bar/top-bar-compact-menu-btn-detail.directive.d.ts +8 -0
- package/framework/top-bar/top-bar-item.directive.d.ts +4 -1
- package/framework/top-bar/top-bar-menu-button/top-bar-menu-button.component.d.ts +5 -2
- package/framework/top-bar/top-bar-nav-toggle-btn-detail.directive.d.ts +8 -0
- package/framework/top-bar/top-bar.component.d.ts +25 -3
- package/framework/top-bar/top-bar.component.scss +7 -2
- package/framework/top-bar/top-bar.module.d.ts +10 -8
- package/graphql/datatable/datatable-graphql.service.d.ts +1 -1
- package/graphql/datatable/index.d.ts +3 -0
- package/graphql/datatable/map-filter-states.d.ts +2 -2
- package/graphql/datatable/map-search-date-columns-data-filter-state-to-gql.d.ts +4 -0
- package/graphql/datatable/map-search-numeric-columns-data-filter-state-to-gql.d.ts +4 -0
- package/graphql/datatable/map-search-text-columns-data-filter-state-to-gql.d.ts +4 -0
- package/layout/layout.service.d.ts +9 -1
- package/menu/menu-toggle.directive.d.ts +2 -1
- package/package.json +3 -3
- package/popover/popover/popover.component.d.ts +4 -1
- package/popover/popover.directive.d.ts +2 -1
- package/styles/vendor/ngx-datatable/_ngx-datatable.scss +83 -14
- package/styles/vendor/ngx-datatable/_themes/bootstrap/_variables.scss +38 -3
- package/table/public-api.d.ts +3 -0
- package/table/table/table.component.d.ts +21 -3
- package/table/table-cell-tpl.directive.d.ts +7 -0
- package/table/table-column-header-tpl.directive.d.ts +7 -0
- package/table/table-column.component.d.ts +24 -0
- package/table/table.module.d.ts +4 -1
|
@@ -5,15 +5,17 @@ import * as i3 from "./top-bar-menu-button/top-bar-menu-button.component";
|
|
|
5
5
|
import * as i4 from "./top-bar-menu.directive";
|
|
6
6
|
import * as i5 from "./top-bar-item.directive";
|
|
7
7
|
import * as i6 from "./top-bar-menu-btn-detail.directive";
|
|
8
|
-
import * as i7 from "
|
|
9
|
-
import * as i8 from "
|
|
10
|
-
import * as i9 from "@
|
|
11
|
-
import * as i10 from "@theseam/ui-common/
|
|
12
|
-
import * as i11 from "@theseam/ui-common/
|
|
13
|
-
import * as i12 from "
|
|
14
|
-
import * as i13 from "@
|
|
8
|
+
import * as i7 from "./top-bar-compact-menu-btn-detail.directive";
|
|
9
|
+
import * as i8 from "./top-bar-nav-toggle-btn-detail.directive";
|
|
10
|
+
import * as i9 from "@angular/common";
|
|
11
|
+
import * as i10 from "@theseam/ui-common/layout";
|
|
12
|
+
import * as i11 from "@theseam/ui-common/buttons";
|
|
13
|
+
import * as i12 from "@theseam/ui-common/icon";
|
|
14
|
+
import * as i13 from "@theseam/ui-common/menu";
|
|
15
|
+
import * as i14 from "../base-layout/base-layout.module";
|
|
16
|
+
import * as i15 from "@angular/router";
|
|
15
17
|
export declare class TheSeamTopBarModule {
|
|
16
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<TheSeamTopBarModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TheSeamTopBarModule, [typeof i1.TheSeamTopBarComponent, typeof i2.TopBarTitleComponent, typeof i3.TopBarMenuButtonComponent, typeof i4.TopBarMenuDirective, typeof i5.TopBarItemDirective, typeof i6.TopBarMenuBtnDetailDirective], [typeof
|
|
19
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TheSeamTopBarModule, [typeof i1.TheSeamTopBarComponent, typeof i2.TopBarTitleComponent, typeof i3.TopBarMenuButtonComponent, typeof i4.TopBarMenuDirective, typeof i5.TopBarItemDirective, typeof i6.TopBarMenuBtnDetailDirective, typeof i7.TopBarCompactMenuBtnDetailDirective, typeof i8.TopBarNavToggleBtnDetailDirective], [typeof i9.CommonModule, typeof i10.TheSeamLayoutModule, typeof i11.TheSeamButtonsModule, typeof i12.TheSeamIconModule, typeof i13.TheSeamMenuModule, typeof i14.TheSeamBaseLayoutModule, typeof i15.RouterModule], [typeof i1.TheSeamTopBarComponent, typeof i3.TopBarMenuButtonComponent, typeof i4.TopBarMenuDirective, typeof i13.TheSeamMenuModule, typeof i5.TopBarItemDirective, typeof i6.TopBarMenuBtnDetailDirective, typeof i7.TopBarCompactMenuBtnDetailDirective, typeof i8.TopBarNavToggleBtnDetailDirective]>;
|
|
18
20
|
static ɵinj: i0.ɵɵInjectorDeclaration<TheSeamTopBarModule>;
|
|
19
21
|
}
|
|
@@ -11,7 +11,7 @@ import * as i0 from "@angular/core";
|
|
|
11
11
|
* rest should be common options shared by all our app's datatables. This may
|
|
12
12
|
* change if it is determined to be too restrictive.
|
|
13
13
|
*/
|
|
14
|
-
export type DatatableQueryOptions<TVariables = OperationVariables, TData = any> = Pick<WatchQueryOptions<TVariables, TData>, 'query'> & Pick<WatchQueryOptions<TVariables, TData>, 'variables'> & Pick<WatchQueryOptions<TVariables, TData>, 'context'>;
|
|
14
|
+
export type DatatableQueryOptions<TVariables extends OperationVariables = OperationVariables, TData = any> = Pick<WatchQueryOptions<TVariables, TData>, 'query'> & Pick<WatchQueryOptions<TVariables, TData>, 'variables'> & Pick<WatchQueryOptions<TVariables, TData>, 'context'>;
|
|
15
15
|
export interface DatatableGraphqlServiceConfig {
|
|
16
16
|
/**
|
|
17
17
|
* Polling interval time in milliseconds.
|
|
@@ -4,3 +4,6 @@ export * from './datatable-graphql-query-ref';
|
|
|
4
4
|
export * from './map-filter-states';
|
|
5
5
|
export * from './mapper-context';
|
|
6
6
|
export * from './get-page-info';
|
|
7
|
+
export * from './map-search-date-columns-data-filter-state-to-gql';
|
|
8
|
+
export * from './map-search-numeric-columns-data-filter-state-to-gql';
|
|
9
|
+
export * from './map-search-text-columns-data-filter-state-to-gql';
|
|
@@ -8,8 +8,8 @@ export interface FilterStateMapperFilter {
|
|
|
8
8
|
[name: string]: any;
|
|
9
9
|
}
|
|
10
10
|
export type FilterStateMapperResult = {
|
|
11
|
-
filter
|
|
12
|
-
variables
|
|
11
|
+
filter: FilterStateMapperFilter;
|
|
12
|
+
variables: FilterStateMapperVariables;
|
|
13
13
|
} | null;
|
|
14
14
|
export type FilterStateMapper = (filterState: DataFilterState, context: MapperContext) => (FilterStateMapperResult | Promise<FilterStateMapperResult> | Observable<FilterStateMapperResult>);
|
|
15
15
|
export interface FilterStateMappers {
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ColumnsDataFilterState, TheSeamColumnsDataFilterDateSearchFormState, TheSeamColumnsDataFilterDateSearchOptions } from "@theseam/ui-common/datatable";
|
|
2
|
+
import { FilterStateMapperResult } from "./map-filter-states";
|
|
3
|
+
import { MapperContext } from "./mapper-context";
|
|
4
|
+
export declare const mapSearchDateColumnsDataFilterStateToGql: (filterState: ColumnsDataFilterState<TheSeamColumnsDataFilterDateSearchFormState, TheSeamColumnsDataFilterDateSearchOptions>, context: MapperContext<any>) => FilterStateMapperResult;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ColumnsDataFilterState, TheSeamColumnsDataFilterNumericSearchFormState } from "@theseam/ui-common/datatable";
|
|
2
|
+
import { FilterStateMapperResult } from "./map-filter-states";
|
|
3
|
+
import { MapperContext } from "./mapper-context";
|
|
4
|
+
export declare const mapSearchNumericColumnsDataFilterStateToGql: (filterState: ColumnsDataFilterState<TheSeamColumnsDataFilterNumericSearchFormState>, context: MapperContext<any>) => FilterStateMapperResult;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ColumnsDataFilterState, TheSeamColumnsDataFilterTextSearchFormState } from "@theseam/ui-common/datatable";
|
|
2
|
+
import { FilterStateMapperResult } from "./map-filter-states";
|
|
3
|
+
import { MapperContext } from "./mapper-context";
|
|
4
|
+
export declare const mapSearchTextColumnsDataFilterStateToGql: (filterState: ColumnsDataFilterState<TheSeamColumnsDataFilterTextSearchFormState>, context: MapperContext<any>) => FilterStateMapperResult;
|
|
@@ -5,11 +5,19 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class TheSeamLayoutService {
|
|
6
6
|
private _media;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Observes if app is a mobile-like size.
|
|
9
|
+
* Default mobile breakpoint is <= 599px,
|
|
10
|
+
* use setMobileBreakpoint() to change size.
|
|
9
11
|
*/
|
|
10
12
|
isMobile$: Observable<boolean>;
|
|
13
|
+
private _mobileBreakpoint;
|
|
14
|
+
mobileBreakpoint$: Observable<MediaQueryAliases>;
|
|
11
15
|
constructor(_media: MediaObserver);
|
|
12
16
|
observe(alias: MediaQueryAliases): Observable<boolean>;
|
|
17
|
+
/**
|
|
18
|
+
* Update breakpoint observed by isMobile$
|
|
19
|
+
*/
|
|
20
|
+
setMobileBreakpoint(alias: MediaQueryAliases): void;
|
|
13
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<TheSeamLayoutService, never>;
|
|
14
22
|
static ɵprov: i0.ɵɵInjectableDeclaration<TheSeamLayoutService>;
|
|
15
23
|
}
|
|
@@ -30,6 +30,7 @@ export declare class MenuToggleDirective implements OnDestroy, AfterContentInit
|
|
|
30
30
|
set positions(val: ConnectionPositionPair[]);
|
|
31
31
|
get positions(): ConnectionPositionPair[];
|
|
32
32
|
private _positions;
|
|
33
|
+
readonly menuToggle: EventEmitter<boolean>;
|
|
33
34
|
seamMenuTogglePositionsOffsetY: number;
|
|
34
35
|
/** Event emitted when the associated menu is opened. */
|
|
35
36
|
readonly menuOpened: EventEmitter<void>;
|
|
@@ -78,5 +79,5 @@ export declare class MenuToggleDirective implements OnDestroy, AfterContentInit
|
|
|
78
79
|
/** Handles the cases where the user hovers over the trigger. */
|
|
79
80
|
private _handleHover;
|
|
80
81
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuToggleDirective, [null, null, null, null, { optional: true; }, { optional: true; self: true; }, { optional: true; }]>;
|
|
81
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuToggleDirective, "[seamMenuToggle]", ["seamMenuToggle"], { "menu": "seamMenuToggle"; "positions": "positions"; "seamMenuTogglePositionsOffsetY": "seamMenuTogglePositionsOffsetY"; }, { "menuOpened": "menuOpened"; "menuClosed": "menuClosed"; }, never, never, false, never>;
|
|
82
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MenuToggleDirective, "[seamMenuToggle]", ["seamMenuToggle"], { "menu": "seamMenuToggle"; "positions": "positions"; "seamMenuTogglePositionsOffsetY": "seamMenuTogglePositionsOffsetY"; }, { "menuToggle": "menuToggle"; "menuOpened": "menuOpened"; "menuClosed": "menuClosed"; }, never, never, false, never>;
|
|
82
83
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theseam/ui-common",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.30",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "^15.0.0",
|
|
6
6
|
"@angular/common": "^15.0.0",
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@fortawesome/angular-fontawesome": "~0.9.0",
|
|
20
20
|
"@marklb/file-type": "~10.6.5",
|
|
21
|
-
"@marklb/ngx-datatable": "18.0.
|
|
21
|
+
"@marklb/ngx-datatable": "~18.0.5",
|
|
22
22
|
"@marklb/ngx-loading": "^10.0.0",
|
|
23
23
|
"@ng-select/ng-select": "~6.1.0",
|
|
24
24
|
"@ng-bootstrap/ng-bootstrap": "~9.1.1",
|
|
25
|
-
"apollo-angular": "^2.
|
|
25
|
+
"apollo-angular": "^4.2.1",
|
|
26
26
|
"overlayscrollbars": "~1.7.3",
|
|
27
27
|
"@types/overlayscrollbars": "~1.7.0",
|
|
28
28
|
"bootstrap": "~4.6.0",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AnimationEvent } from '@angular/animations';
|
|
2
2
|
import { ChangeDetectorRef, OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
3
3
|
import { Subject } from 'rxjs';
|
|
4
|
+
import { TheSeamPopoverDirective } from '../popover.directive';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class PopoverComponent implements OnInit, OnDestroy {
|
|
6
7
|
private _changeDetectorRef;
|
|
@@ -25,6 +26,8 @@ export declare class PopoverComponent implements OnInit, OnDestroy {
|
|
|
25
26
|
get _tabindex(): number;
|
|
26
27
|
template: TemplateRef<any> | undefined | null;
|
|
27
28
|
popoverClass: string | undefined | null;
|
|
29
|
+
popover: TheSeamPopoverDirective | undefined | null;
|
|
30
|
+
popoverContext: any;
|
|
28
31
|
/**
|
|
29
32
|
* Defines a width for a popover that will scale down if the window innerWidth is
|
|
30
33
|
* smaller than the value.
|
|
@@ -43,5 +46,5 @@ export declare class PopoverComponent implements OnInit, OnDestroy {
|
|
|
43
46
|
/** Handle a keyboard event from the menu, delegating to the appropriate action. */
|
|
44
47
|
_handleKeydown(event: KeyboardEvent): void;
|
|
45
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<PopoverComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "seam-popover", never, { "template": "template"; "popoverClass": "popoverClass"; "baseWidth": "baseWidth"; }, {}, never, never, false, never>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PopoverComponent, "seam-popover", never, { "template": "template"; "popoverClass": "popoverClass"; "popover": "popover"; "popoverContext": "popoverContext"; "baseWidth": "baseWidth"; }, {}, never, never, false, never>;
|
|
47
50
|
}
|
|
@@ -9,6 +9,7 @@ export declare class TheSeamPopoverDirective implements OnDestroy {
|
|
|
9
9
|
private _focusMonitor;
|
|
10
10
|
private readonly _ngUnsubscribe;
|
|
11
11
|
seamPopover?: TemplateRef<any> | null;
|
|
12
|
+
seamPopoverContext?: any;
|
|
12
13
|
/**
|
|
13
14
|
* Defines a width for a popover that will scale down if the window innerWidth is
|
|
14
15
|
* smaller than the value.
|
|
@@ -56,5 +57,5 @@ export declare class TheSeamPopoverDirective implements OnDestroy {
|
|
|
56
57
|
/** Returns a stream that emits whenever an action that should close the popover occurs. */
|
|
57
58
|
private _popoverClosingActions;
|
|
58
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<TheSeamPopoverDirective, never>;
|
|
59
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TheSeamPopoverDirective, "[seamPopover]", ["seamPopover"], { "seamPopover": "seamPopover"; "seamPopoverBaseWidth": "seamPopoverBaseWidth"; "seamPopoverDisabled": "seamPopoverDisabled"; }, {}, never, never, false, never>;
|
|
60
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TheSeamPopoverDirective, "[seamPopover]", ["seamPopover"], { "seamPopover": "seamPopover"; "seamPopoverContext": "seamPopoverContext"; "seamPopoverBaseWidth": "seamPopoverBaseWidth"; "seamPopoverDisabled": "seamPopoverDisabled"; }, {}, never, never, false, never>;
|
|
60
61
|
}
|
|
@@ -142,17 +142,19 @@
|
|
|
142
142
|
.datatable-header,
|
|
143
143
|
.datatable-body {
|
|
144
144
|
.datatable-row-left {
|
|
145
|
-
background-color: $datatable-background;
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
145
|
+
background-color: $datatable-left-background;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.datatable-row-even .datatable-row-left {
|
|
149
|
+
background-color: $datatable-left-row-even-background;
|
|
149
150
|
}
|
|
150
151
|
|
|
151
152
|
.datatable-row-right {
|
|
152
|
-
background-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
153
|
+
background-color: $datatable-right-background;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.datatable-row-even .datatable-row-right {
|
|
157
|
+
background-color: $datatable-right-row-even-background;
|
|
156
158
|
}
|
|
157
159
|
}
|
|
158
160
|
|
|
@@ -175,6 +177,11 @@
|
|
|
175
177
|
font-size: $datatable-header-cell-font-size;
|
|
176
178
|
font-weight: $datatable-header-cell-font-weight;
|
|
177
179
|
|
|
180
|
+
.datatable-header-cell-template-wrap {
|
|
181
|
+
display: flex;
|
|
182
|
+
align-items: center;
|
|
183
|
+
}
|
|
184
|
+
|
|
178
185
|
.datatable-header-cell-wrapper {
|
|
179
186
|
position: relative;
|
|
180
187
|
}
|
|
@@ -217,6 +224,27 @@
|
|
|
217
224
|
border-right: none;
|
|
218
225
|
}
|
|
219
226
|
}
|
|
227
|
+
|
|
228
|
+
.datatable-column-header-filter-button {
|
|
229
|
+
position: relative;
|
|
230
|
+
color: $datatable-column-header-filter-button-color;
|
|
231
|
+
&.datatable-column-header-filter-button-active {
|
|
232
|
+
color: $datatable-column-header-filter-button-active-color;
|
|
233
|
+
&::before {
|
|
234
|
+
content: '';
|
|
235
|
+
position: absolute;
|
|
236
|
+
right: 0;
|
|
237
|
+
top: -3px;
|
|
238
|
+
width: 6px;
|
|
239
|
+
height: 6px;
|
|
240
|
+
border-radius: 100%;
|
|
241
|
+
background: $datatable-column-header-filter-button-active-badge-color;
|
|
242
|
+
}
|
|
243
|
+
seam-icon {
|
|
244
|
+
clip-path: path('M6,0C6,5 12,6 16,3L16,16L0,16L0,0L6,0Z');
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
}
|
|
220
248
|
}
|
|
221
249
|
|
|
222
250
|
.datatable-column-header-separator {
|
|
@@ -268,6 +296,9 @@
|
|
|
268
296
|
color: $datatable-body-cell-color;
|
|
269
297
|
font-size: $datatable-body-cell-font-size;
|
|
270
298
|
font-weight: $datatable-body-cell-font-weight;
|
|
299
|
+
.datatable-body-cell-label {
|
|
300
|
+
height: 100%;
|
|
301
|
+
}
|
|
271
302
|
}
|
|
272
303
|
.datatable-body-group-cell {
|
|
273
304
|
vertical-align: top;
|
|
@@ -476,13 +507,51 @@
|
|
|
476
507
|
// }
|
|
477
508
|
|
|
478
509
|
.datatable-action-button {
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
510
|
+
flex: 0 0 auto;
|
|
511
|
+
|
|
512
|
+
@if $datatable-action-button-outline {
|
|
513
|
+
@include button-outline-variant(
|
|
514
|
+
$color: $datatable-action-button-outline-color,
|
|
515
|
+
$color-hover: $datatable-action-button-outline-color-hover,
|
|
516
|
+
$active-background: $datatable-action-button-outline-active-background,
|
|
517
|
+
$active-border: $datatable-action-button-outline-active-border
|
|
518
|
+
);
|
|
519
|
+
|
|
520
|
+
// allow variable override for outline button bg
|
|
521
|
+
background: $datatable-action-button-outline-background;
|
|
522
|
+
|
|
523
|
+
} @else {
|
|
524
|
+
@include button-variant(
|
|
525
|
+
$background: $datatable-action-button-background,
|
|
526
|
+
$border: $datatable-action-button-border,
|
|
527
|
+
$hover-background: $datatable-action-button-hover-background,
|
|
528
|
+
$hover-border: $datatable-action-button-hover-border,
|
|
529
|
+
$active-background: $datatable-action-button-active-background,
|
|
530
|
+
$active-border: $datatable-action-button-active-border
|
|
531
|
+
);
|
|
532
|
+
|
|
533
|
+
// allow variable override for solid button color
|
|
534
|
+
color: $datatable-action-button-color;
|
|
535
|
+
|
|
536
|
+
&:hover {
|
|
537
|
+
color: $datatable-action-button-hover-color;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
&:not(:disabled):not(.disabled):active {
|
|
541
|
+
color: $datatable-action-button-active-color;
|
|
542
|
+
}
|
|
485
543
|
}
|
|
544
|
+
|
|
545
|
+
box-shadow: $datatable-action-button-box-shadow;
|
|
546
|
+
font-size: $datatable-action-button-font-size;
|
|
547
|
+
line-height: $datatable-action-button-line-height;
|
|
548
|
+
|
|
549
|
+
width: $datatable-action-button-width;
|
|
550
|
+
height: $datatable-action-button-height;
|
|
551
|
+
|
|
552
|
+
padding: $datatable-action-button-padding;
|
|
553
|
+
border-radius: $datatable-action-button-border-radius;
|
|
554
|
+
text-align: $datatable-action-button-text-align;
|
|
486
555
|
}
|
|
487
556
|
|
|
488
557
|
/**
|
|
@@ -10,8 +10,12 @@ $datatable-color: $body-color !default;
|
|
|
10
10
|
|
|
11
11
|
// common datatable colors
|
|
12
12
|
$datatable-background: $white !default;
|
|
13
|
-
$datatable-box-shadow: none !default;
|
|
14
13
|
$datatable-row-even-background: rgba(0, 0, 0, 0.05) !default;
|
|
14
|
+
$datatable-left-background: transparent !default;
|
|
15
|
+
$datatable-left-row-even-background: $datatable-left-background !default;
|
|
16
|
+
$datatable-right-background: transparent !default;
|
|
17
|
+
$datatable-right-row-even-background: $datatable-right-background !default;
|
|
18
|
+
$datatable-box-shadow: none !default;
|
|
15
19
|
|
|
16
20
|
// default row and cell background colors
|
|
17
21
|
$datatable-default-background: $white !default;
|
|
@@ -167,8 +171,39 @@ $datatable-summary-row-background: #ddd !default;
|
|
|
167
171
|
$datatable-summary-row-background-hover: #ddd !default;
|
|
168
172
|
$datatable-summary-row-font-weight: bold !default;
|
|
169
173
|
|
|
170
|
-
|
|
171
|
-
$datatable-action-button-background:
|
|
174
|
+
// Action Menu Button Styles
|
|
175
|
+
$datatable-action-button-background: $primary !default;
|
|
176
|
+
$datatable-action-button-border: $datatable-action-button-background !default;
|
|
177
|
+
$datatable-action-button-hover-background: darken($datatable-action-button-background, 7.5%) !default;
|
|
178
|
+
$datatable-action-button-hover-border: darken($datatable-action-button-border, 10%) !default;
|
|
179
|
+
$datatable-action-button-active-background: darken($datatable-action-button-background, 10%) !default;
|
|
180
|
+
$datatable-action-button-active-border: darken($datatable-action-button-border, 12.5%) !default;
|
|
181
|
+
|
|
182
|
+
$datatable-action-button-color: color-yiq($datatable-action-button-background) !default;
|
|
183
|
+
$datatable-action-button-hover-color: color-yiq($datatable-action-button-hover-background) !default;
|
|
184
|
+
$datatable-action-button-active-color: color-yiq($datatable-action-button-active-background) !default;
|
|
185
|
+
|
|
186
|
+
$datatable-action-button-outline: false !default;
|
|
187
|
+
$datatable-action-button-outline-color: $datatable-action-button-background !default;
|
|
188
|
+
$datatable-action-button-outline-color-hover: color-yiq($datatable-action-button-outline-color) !default;
|
|
189
|
+
$datatable-action-button-outline-active-background: $datatable-action-button-outline-color !default;
|
|
190
|
+
$datatable-action-button-outline-active-border: $datatable-action-button-outline-color !default;
|
|
191
|
+
|
|
192
|
+
$datatable-action-button-outline-background: transparent !default;
|
|
193
|
+
|
|
172
194
|
$datatable-action-button-box-shadow: none !default;
|
|
195
|
+
$datatable-action-button-font-size: 20px !default;
|
|
196
|
+
$datatable-action-button-line-height: 1 !default;
|
|
197
|
+
$datatable-action-button-size: 30px !default;
|
|
198
|
+
$datatable-action-button-width: $datatable-action-button-size !default;
|
|
199
|
+
$datatable-action-button-height: $datatable-action-button-size !default;
|
|
200
|
+
$datatable-action-button-padding: 0 !default;
|
|
201
|
+
$datatable-action-button-border-radius: 100% !default;
|
|
202
|
+
$datatable-action-button-text-align: center !default;
|
|
173
203
|
$datatable-action-button-hover-color: $primary !default;
|
|
174
204
|
$datatable-action-button-hover-background: $gray-300 !default;
|
|
205
|
+
|
|
206
|
+
// colors for column header filter button
|
|
207
|
+
$datatable-column-header-filter-button-color: inherit !default;
|
|
208
|
+
$datatable-column-header-filter-button-active-color: $datatable-column-header-filter-button-color !default;
|
|
209
|
+
$datatable-column-header-filter-button-active-badge-color: $primary !default;
|
package/table/public-api.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { BooleanInput } from '@angular/cdk/coercion';
|
|
2
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { AfterContentChecked, EventEmitter, OnChanges, OnInit, QueryList, SimpleChanges, TemplateRef } from '@angular/core';
|
|
3
3
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
4
|
+
import { TheSeamTableColumnComponent } from '../table-column.component';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
/**
|
|
6
7
|
* An optional function passed into the `NgForOf` directive that defines how to track
|
|
@@ -16,10 +17,15 @@ export type TrackByFunction<T> = (index: number, item: T) => any;
|
|
|
16
17
|
export interface ITableColumn {
|
|
17
18
|
prop: string;
|
|
18
19
|
name?: string;
|
|
20
|
+
cellTemplate?: TemplateRef<any>;
|
|
21
|
+
headerTemplate?: TemplateRef<any>;
|
|
22
|
+
cellClass?: string;
|
|
23
|
+
headerClass?: string;
|
|
19
24
|
}
|
|
20
|
-
export declare class TableComponent<T = any> {
|
|
25
|
+
export declare class TableComponent<T = any> implements OnInit, OnChanges, AfterContentChecked {
|
|
21
26
|
private readonly _sanitizer;
|
|
22
27
|
static ngAcceptInputType_hasHeader: BooleanInput;
|
|
28
|
+
private readonly _ngUnsubscribe;
|
|
23
29
|
get columns(): (string | ITableColumn)[] | undefined | null;
|
|
24
30
|
set columns(value: (string | ITableColumn)[] | undefined | null);
|
|
25
31
|
private _columns;
|
|
@@ -33,13 +39,25 @@ export declare class TableComponent<T = any> {
|
|
|
33
39
|
trackBy: TrackByFunction<T> | undefined | null;
|
|
34
40
|
size: 'sm' | 'md' | undefined | null;
|
|
35
41
|
hasHeader: boolean;
|
|
42
|
+
private _pendingColumns?;
|
|
36
43
|
displayedRecords?: ITableColumn[];
|
|
37
44
|
displayedColumns?: string[];
|
|
45
|
+
readonly columnsChange: EventEmitter<{
|
|
46
|
+
previous: ITableColumn[] | undefined;
|
|
47
|
+
current: ITableColumn[];
|
|
48
|
+
}>;
|
|
38
49
|
readonly actionRefreshRequest: EventEmitter<void>;
|
|
50
|
+
set columnComponents(value: QueryList<TheSeamTableColumnComponent> | undefined);
|
|
51
|
+
private _columnComponents;
|
|
52
|
+
private _columnComponentChange;
|
|
39
53
|
constructor(_sanitizer: DomSanitizer);
|
|
54
|
+
ngOnInit(): void;
|
|
55
|
+
ngAfterContentChecked(): void;
|
|
56
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
57
|
+
private _updateColumns;
|
|
40
58
|
private _setColumns;
|
|
41
59
|
triggerActionRefreshRequest(): void;
|
|
42
60
|
_trackByRecords(r: any): any;
|
|
43
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent<any>, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent<any>, "seam-table", never, { "columns": "columns"; "rows": "rows"; "trackBy": "trackBy"; "size": "size"; "hasHeader": "hasHeader"; }, { "actionRefreshRequest": "actionRefreshRequest"; },
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent<any>, "seam-table", never, { "columns": "columns"; "rows": "rows"; "trackBy": "trackBy"; "size": "size"; "hasHeader": "hasHeader"; }, { "columnsChange": "columnsChange"; "actionRefreshRequest": "actionRefreshRequest"; }, ["columnComponents"], never, false, never>;
|
|
45
63
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TheSeamTableCellTplDirective {
|
|
4
|
+
template: TemplateRef<any>;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TheSeamTableCellTplDirective, never>;
|
|
6
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TheSeamTableCellTplDirective, "[seamTableCellTpl]", never, {}, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TheSeamTableColumnHeaderTplDirective {
|
|
4
|
+
template: TemplateRef<any>;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TheSeamTableColumnHeaderTplDirective, never>;
|
|
6
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TheSeamTableColumnHeaderTplDirective, "[seamTableColumnHeaderTpl]", never, {}, {}, never, never, true, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { OnChanges, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
|
+
import { TableColumnProp } from '@marklb/ngx-datatable';
|
|
3
|
+
import { TheSeamTableCellTplDirective } from './table-cell-tpl.directive';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TheSeamTableColumnComponent implements OnChanges {
|
|
6
|
+
name?: string | null;
|
|
7
|
+
prop?: TableColumnProp | null;
|
|
8
|
+
flexGrow?: number | null;
|
|
9
|
+
headerClass?: string | null;
|
|
10
|
+
cellClass?: string | null;
|
|
11
|
+
private _isFirstChange;
|
|
12
|
+
cellTplDirective?: TheSeamTableCellTplDirective;
|
|
13
|
+
_cellTemplateInput?: TemplateRef<any> | null;
|
|
14
|
+
_cellTemplateQuery?: TemplateRef<any>;
|
|
15
|
+
get cellTemplate(): TemplateRef<any> | undefined | null;
|
|
16
|
+
_headerTemplateInput?: TemplateRef<any> | null;
|
|
17
|
+
_headerTemplateQuery?: TemplateRef<any>;
|
|
18
|
+
get headerTemplate(): TemplateRef<any> | undefined | null;
|
|
19
|
+
private readonly _columnChange;
|
|
20
|
+
columnChange$: import("rxjs").Observable<void>;
|
|
21
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TheSeamTableColumnComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TheSeamTableColumnComponent, "seam-table-column", never, { "name": "name"; "prop": "prop"; "flexGrow": "flexGrow"; "headerClass": "headerClass"; "cellClass": "cellClass"; "_cellTemplateInput": "cellTemplate"; "_headerTemplateInput": "headerTemplate"; }, {}, ["cellTplDirective", "_cellTemplateQuery", "_headerTemplateQuery"], never, true, never>;
|
|
24
|
+
}
|
package/table/table.module.d.ts
CHANGED
|
@@ -3,8 +3,11 @@ import * as i1 from "./table/table.component";
|
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
4
|
import * as i3 from "@angular/cdk/table";
|
|
5
5
|
import * as i4 from "@theseam/ui-common/table-cell-type";
|
|
6
|
+
import * as i5 from "./table-column.component";
|
|
7
|
+
import * as i6 from "./table-cell-tpl.directive";
|
|
8
|
+
import * as i7 from "./table-column-header-tpl.directive";
|
|
6
9
|
export declare class TheSeamTableModule {
|
|
7
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<TheSeamTableModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TheSeamTableModule, [typeof i1.TableComponent], [typeof i2.CommonModule, typeof i3.CdkTableModule, typeof i4.TheSeamTableCellTypeModule], [typeof i1.TableComponent]>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TheSeamTableModule, [typeof i1.TableComponent], [typeof i2.CommonModule, typeof i3.CdkTableModule, typeof i4.TheSeamTableCellTypeModule, typeof i5.TheSeamTableColumnComponent, typeof i6.TheSeamTableCellTplDirective, typeof i7.TheSeamTableColumnHeaderTplDirective], [typeof i1.TableComponent, typeof i5.TheSeamTableColumnComponent, typeof i6.TheSeamTableCellTplDirective, typeof i7.TheSeamTableColumnHeaderTplDirective]>;
|
|
9
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<TheSeamTableModule>;
|
|
10
13
|
}
|