@dereekb/dbx-web 11.1.7 → 12.0.0
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/calendar/lib/calendar.base.component.d.ts +10 -1
- package/calendar/lib/calendar.component.d.ts +8 -5
- package/calendar/lib/calendar.module.d.ts +4 -16
- package/calendar/lib/calendar.provider.d.ts +5 -0
- package/calendar/lib/calendar.store.d.ts +13 -9
- package/calendar/lib/index.d.ts +1 -0
- package/esm2022/calendar/lib/calendar.base.component.mjs +26 -12
- package/esm2022/calendar/lib/calendar.component.mjs +19 -17
- package/esm2022/calendar/lib/calendar.mjs +1 -1
- package/esm2022/calendar/lib/calendar.module.mjs +10 -76
- package/esm2022/calendar/lib/calendar.provider.mjs +11 -0
- package/esm2022/calendar/lib/calendar.store.mjs +19 -19
- package/esm2022/calendar/lib/index.mjs +2 -1
- package/esm2022/lib/action/action.confirm.directive.mjs +10 -12
- package/esm2022/lib/action/action.module.mjs +12 -16
- package/esm2022/lib/action/key.trigger.directive.mjs +6 -5
- package/esm2022/lib/action/snackbar/action.snackbar.component.mjs +29 -36
- package/esm2022/lib/action/snackbar/action.snackbar.directive.mjs +14 -27
- package/esm2022/lib/action/snackbar/action.snackbar.generator.mjs +1 -1
- package/esm2022/lib/action/snackbar/action.snackbar.module.mjs +8 -14
- package/esm2022/lib/action/snackbar/action.snackbar.service.mjs +4 -4
- package/esm2022/lib/action/transition/action.transition.module.mjs +14 -13
- package/esm2022/lib/action/transition/transition.safety.dialog.component.mjs +18 -24
- package/esm2022/lib/action/transition/transition.safety.directive.mjs +30 -33
- package/esm2022/lib/button/button.component.mjs +71 -104
- package/esm2022/lib/button/button.module.mjs +44 -12
- package/esm2022/lib/button/button.spacer.directive.mjs +20 -0
- package/esm2022/lib/button/icon/icon.button.component.mjs +48 -32
- package/esm2022/lib/button/icon/icon.button.module.mjs +10 -24
- package/esm2022/lib/button/index.mjs +2 -2
- package/esm2022/lib/button/progress/abstract.progress.button.directive.mjs +103 -0
- package/esm2022/lib/button/progress/bar.button.component.mjs +15 -11
- package/esm2022/lib/button/progress/button.progress.config.mjs +2 -2
- package/esm2022/lib/button/progress/button.progress.module.mjs +13 -28
- package/esm2022/lib/button/progress/button.progress.providers.mjs +18 -0
- package/esm2022/lib/button/progress/index.mjs +2 -1
- package/esm2022/lib/button/progress/spinner.button.component.mjs +66 -38
- package/esm2022/lib/dbx-web.module.mjs +4 -4
- package/esm2022/lib/error/default.error.widget.component.mjs +22 -15
- package/esm2022/lib/error/error.action.directive.mjs +9 -8
- package/esm2022/lib/error/error.api.mjs +1 -1
- package/esm2022/lib/error/error.component.mjs +56 -94
- package/esm2022/lib/error/error.details.component.mjs +15 -14
- package/esm2022/lib/error/error.loading.directive.mjs +20 -20
- package/esm2022/lib/error/error.module.mjs +21 -18
- package/esm2022/lib/error/error.popover.component.mjs +14 -17
- package/esm2022/lib/error/error.snackbar.action.directive.mjs +6 -5
- package/esm2022/lib/error/error.snackbar.component.mjs +57 -39
- package/esm2022/lib/error/error.snackbar.service.mjs +11 -10
- package/esm2022/lib/error/error.view.component.mjs +40 -33
- package/esm2022/lib/error/error.widget.component.mjs +19 -25
- package/esm2022/lib/error/error.widget.directive.mjs +3 -3
- package/esm2022/lib/error/error.widget.service.mjs +7 -7
- package/esm2022/lib/error/state.mjs +1 -1
- package/esm2022/lib/extension/download/text/download.text.component.mjs +46 -56
- package/esm2022/lib/extension/download/text/download.text.module.mjs +11 -33
- package/esm2022/lib/extension/model/index.mjs +2 -2
- package/esm2022/lib/extension/model/model.providers.mjs +42 -0
- package/esm2022/lib/extension/model/model.state.service.mjs +5 -8
- package/esm2022/lib/extension/model/model.tracker.mjs +1 -1
- package/esm2022/lib/extension/model/model.tracker.service.mjs +5 -8
- package/esm2022/lib/extension/model/model.tracker.view.storage.mjs +8 -8
- package/esm2022/lib/extension/model/model.types.mjs +1 -1
- package/esm2022/lib/extension/model/model.types.service.mjs +5 -5
- package/esm2022/lib/extension/model/state/actions/model.actions.mjs +1 -1
- package/esm2022/lib/extension/model/state/effects/tracker.effects.mjs +3 -3
- package/esm2022/lib/extension/structure/structure.body.directive.mjs +6 -5
- package/esm2022/lib/extension/structure/structure.module.mjs +11 -17
- package/esm2022/lib/extension/structure/structure.structure.directive.mjs +10 -6
- package/esm2022/lib/extension/widget/widget.component.mjs +32 -37
- package/esm2022/lib/extension/widget/widget.directive.mjs +3 -3
- package/esm2022/lib/extension/widget/widget.list.component.mjs +31 -20
- package/esm2022/lib/extension/widget/widget.module.mjs +15 -24
- package/esm2022/lib/extension/widget/widget.service.mjs +4 -4
- package/esm2022/lib/index.mjs +2 -2
- package/esm2022/lib/interaction/dialog/abstract.dialog.directive.mjs +3 -3
- package/esm2022/lib/interaction/dialog/dialog.action.directive.mjs +19 -23
- package/esm2022/lib/interaction/dialog/dialog.content.close.component.mjs +23 -22
- package/esm2022/lib/interaction/dialog/dialog.content.directive.mjs +23 -0
- package/esm2022/lib/interaction/dialog/dialog.content.footer.component.mjs +21 -29
- package/esm2022/lib/interaction/dialog/dialog.module.mjs +9 -16
- package/esm2022/lib/interaction/dialog/index.mjs +2 -2
- package/esm2022/lib/interaction/filter/filter.config.mjs +2 -0
- package/esm2022/lib/interaction/filter/filter.menu.mjs +1 -1
- package/esm2022/lib/interaction/filter/filter.module.mjs +9 -54
- package/esm2022/lib/interaction/filter/filter.partial.list.component.mjs +13 -11
- package/esm2022/lib/interaction/filter/filter.partial.menu.component.mjs +22 -29
- package/esm2022/lib/interaction/filter/filter.partial.mjs +13 -24
- package/esm2022/lib/interaction/filter/filter.popover.button.component.mjs +17 -31
- package/esm2022/lib/interaction/filter/filter.popover.button.directive.mjs +10 -12
- package/esm2022/lib/interaction/filter/filter.popover.component.mjs +25 -30
- package/esm2022/lib/interaction/filter/filter.preset.directive.mjs +17 -29
- package/esm2022/lib/interaction/filter/filter.preset.list.component.mjs +13 -11
- package/esm2022/lib/interaction/filter/filter.preset.menu.component.mjs +22 -29
- package/esm2022/lib/interaction/filter/filter.wrapper.component.mjs +23 -29
- package/esm2022/lib/interaction/filter/index.mjs +2 -1
- package/esm2022/lib/interaction/interaction.module.mjs +17 -6
- package/esm2022/lib/interaction/popover/abstract.popover.directive.mjs +3 -3
- package/esm2022/lib/interaction/popover/abstract.popover.ref.directive.mjs +13 -22
- package/esm2022/lib/interaction/popover/index.mjs +2 -2
- package/esm2022/lib/interaction/popover/popover.action.directive.mjs +20 -23
- package/esm2022/lib/interaction/popover/popover.close.component.mjs +12 -8
- package/esm2022/lib/interaction/popover/popover.component.mjs +15 -13
- package/esm2022/lib/interaction/popover/popover.content.component.mjs +20 -13
- package/esm2022/lib/interaction/popover/popover.content.module.mjs +9 -19
- package/esm2022/lib/interaction/popover/popover.controls.directive.mjs +7 -6
- package/esm2022/lib/interaction/popover/popover.coordinator.component.mjs +17 -15
- package/esm2022/lib/interaction/popover/popover.coordinator.service.mjs +4 -4
- package/esm2022/lib/interaction/popover/popover.header.component.mjs +25 -22
- package/esm2022/lib/interaction/popover/popover.module.mjs +8 -18
- package/esm2022/lib/interaction/popover/popover.scroll.content.directive.mjs +41 -0
- package/esm2022/lib/interaction/popover/popover.service.mjs +4 -4
- package/esm2022/lib/interaction/popup/abstract.popup.directive.mjs +3 -3
- package/esm2022/lib/interaction/popup/popup.component.mjs +20 -23
- package/esm2022/lib/interaction/popup/popup.content.component.mjs +21 -14
- package/esm2022/lib/interaction/popup/popup.controls.buttons.component.mjs +49 -26
- package/esm2022/lib/interaction/popup/popup.controls.component.mjs +15 -14
- package/esm2022/lib/interaction/popup/popup.coordinator.component.mjs +15 -12
- package/esm2022/lib/interaction/popup/popup.coordinator.service.mjs +4 -4
- package/esm2022/lib/interaction/popup/popup.mjs +6 -7
- package/esm2022/lib/interaction/popup/popup.module.mjs +8 -19
- package/esm2022/lib/interaction/popup/popup.position.strategy.mjs +1 -1
- package/esm2022/lib/interaction/popup/popup.service.mjs +8 -5
- package/esm2022/lib/interaction/prompt/index.mjs +2 -2
- package/esm2022/lib/interaction/prompt/prompt.box.directive.mjs +19 -0
- package/esm2022/lib/interaction/prompt/prompt.button.confirm.directive.mjs +6 -5
- package/esm2022/lib/interaction/prompt/prompt.component.mjs +16 -17
- package/esm2022/lib/interaction/prompt/prompt.confirm.component.mjs +35 -35
- package/esm2022/lib/interaction/prompt/prompt.confirm.dialog.component.mjs +14 -13
- package/esm2022/lib/interaction/prompt/prompt.confirm.directive.mjs +28 -23
- package/esm2022/lib/interaction/prompt/prompt.module.mjs +9 -18
- package/esm2022/lib/interaction/prompt/prompt.page.component.mjs +11 -8
- package/esm2022/lib/keypress/keydown.listener.directive.mjs +6 -5
- package/esm2022/lib/keypress/keypress.module.mjs +9 -8
- package/esm2022/lib/layout/bar/bar.directive.mjs +14 -11
- package/esm2022/lib/layout/bar/bar.header.component.mjs +31 -26
- package/esm2022/lib/layout/bar/bar.layout.module.mjs +9 -12
- package/esm2022/lib/layout/bar/pagebar.component.mjs +33 -12
- package/esm2022/lib/layout/block/block.layout.module.mjs +10 -12
- package/esm2022/lib/layout/block/two.block.component.mjs +25 -32
- package/esm2022/lib/layout/card/card.box.component.mjs +27 -20
- package/esm2022/lib/layout/card/card.box.container.directive.mjs +20 -0
- package/esm2022/lib/layout/card/card.box.layout.module.mjs +10 -12
- package/esm2022/lib/layout/card/index.mjs +2 -2
- package/esm2022/lib/layout/column/column.layout.module.mjs +9 -7
- package/esm2022/lib/layout/column/one/one.column.component.mjs +16 -15
- package/esm2022/lib/layout/column/one/one.column.module.mjs +9 -9
- package/esm2022/lib/layout/column/two/index.mjs +2 -2
- package/esm2022/lib/layout/column/two/two.column.back.directive.mjs +10 -12
- package/esm2022/lib/layout/column/two/two.column.component.mjs +77 -51
- package/esm2022/lib/layout/column/two/two.column.context.directive.mjs +14 -21
- package/esm2022/lib/layout/column/two/two.column.full.left.directive.mjs +13 -28
- package/esm2022/lib/layout/column/two/two.column.head.directive.mjs +24 -0
- package/esm2022/lib/layout/column/two/two.column.module.mjs +9 -15
- package/esm2022/lib/layout/column/two/two.column.right.component.mjs +90 -49
- package/esm2022/lib/layout/column/two/two.column.sref.directive.mjs +13 -13
- package/esm2022/lib/layout/column/two/two.column.sref.showright.directive.mjs +9 -7
- package/esm2022/lib/layout/column/two/two.column.store.mjs +15 -11
- package/esm2022/lib/layout/compact/compact.directive.mjs +3 -3
- package/esm2022/lib/layout/compact/compact.layout.module.mjs +4 -4
- package/esm2022/lib/layout/compact/compact.mjs +1 -1
- package/esm2022/lib/layout/compact/compact.store.mjs +4 -4
- package/esm2022/lib/layout/content/content.border.directive.mjs +11 -11
- package/esm2022/lib/layout/content/content.box.directive.mjs +12 -15
- package/esm2022/lib/layout/content/content.container.directive.mjs +16 -17
- package/esm2022/lib/layout/content/content.directive.mjs +6 -5
- package/esm2022/lib/layout/content/content.elevate.directive.mjs +10 -11
- package/esm2022/lib/layout/content/content.layout.module.mjs +9 -11
- package/esm2022/lib/layout/content/content.page.directive.mjs +6 -5
- package/esm2022/lib/layout/content/content.pit.directive.mjs +10 -11
- package/esm2022/lib/layout/flag/flag.component.mjs +15 -14
- package/esm2022/lib/layout/flag/flag.layout.module.mjs +8 -13
- package/esm2022/lib/layout/flag/flag.prompt.component.mjs +18 -20
- package/esm2022/lib/layout/flex/flex.group.directive.mjs +21 -47
- package/esm2022/lib/layout/flex/flex.layout.module.mjs +11 -9
- package/esm2022/lib/layout/flex/flex.size.directive.mjs +11 -12
- package/esm2022/lib/layout/item/index.mjs +1 -2
- package/esm2022/lib/layout/item/item.icon.component.mjs +31 -24
- package/esm2022/lib/layout/layout.module.mjs +6 -8
- package/esm2022/lib/layout/list/grid/index.mjs +3 -0
- package/esm2022/lib/layout/list/grid/list.grid.view.component.mjs +98 -0
- package/esm2022/lib/layout/list/grid/list.grid.view.directive.mjs +34 -0
- package/esm2022/lib/layout/list/group/index.mjs +4 -0
- package/esm2022/lib/layout/list/group/list.view.value.group.mjs +32 -0
- package/esm2022/lib/layout/list/group/list.view.value.group.title.directive.mjs +70 -0
- package/esm2022/lib/layout/list/group/list.view.value.group.title.header.component.mjs +60 -0
- package/esm2022/lib/layout/list/group/list.view.value.group.title.mjs +2 -0
- package/esm2022/lib/layout/list/index.mjs +6 -10
- package/esm2022/lib/layout/list/list.component.mjs +109 -135
- package/esm2022/lib/layout/list/list.content.empty.component.mjs +9 -7
- package/esm2022/lib/layout/list/list.directive.mjs +70 -56
- package/esm2022/lib/layout/list/list.layout.module.mjs +59 -49
- package/esm2022/lib/layout/list/list.module.mjs +40 -0
- package/esm2022/lib/layout/list/list.view.directive.mjs +35 -28
- package/esm2022/lib/layout/list/list.view.mjs +1 -1
- package/esm2022/lib/layout/list/list.view.selection.directive.mjs +26 -10
- package/esm2022/lib/layout/list/list.view.value.component.mjs +135 -143
- package/esm2022/lib/layout/list/list.view.value.directive.mjs +12 -18
- package/esm2022/lib/layout/list/list.view.value.item.directive.mjs +3 -3
- package/esm2022/lib/layout/list/list.view.value.mjs +1 -1
- package/esm2022/lib/layout/list/list.view.value.modifier.mjs +1 -1
- package/esm2022/lib/layout/list/list.view.value.selection.component.mjs +80 -68
- package/esm2022/lib/layout/list/list.wrapper.mjs +1 -3
- package/esm2022/lib/layout/list/meta/index.mjs +2 -0
- package/esm2022/lib/layout/list/meta/list.view.meta.icon.component.mjs +39 -0
- package/esm2022/lib/layout/list/modifier/index.mjs +5 -0
- package/esm2022/lib/layout/list/modifier/list.modifier.module.mjs +22 -0
- package/esm2022/lib/layout/list/modifier/list.view.value.modifier.directive.mjs +75 -0
- package/esm2022/lib/layout/list/modifier/list.view.value.modifier.ripple.directive.mjs +37 -0
- package/esm2022/lib/layout/list/modifier/list.view.value.modifier.selection.directive.mjs +35 -0
- package/esm2022/lib/layout/section/section.component.mjs +18 -15
- package/esm2022/lib/layout/section/section.header.component.mjs +123 -106
- package/esm2022/lib/layout/section/section.intro.component.mjs +53 -51
- package/esm2022/lib/layout/section/section.layout.module.mjs +9 -15
- package/esm2022/lib/layout/section/section.mjs +1 -1
- package/esm2022/lib/layout/section/section.page.component.mjs +22 -18
- package/esm2022/lib/layout/section/subsection.component.mjs +13 -10
- package/esm2022/lib/layout/step/step.component.mjs +56 -21
- package/esm2022/lib/layout/step/step.layout.module.mjs +11 -10
- package/esm2022/lib/layout/style/index.mjs +2 -1
- package/esm2022/lib/layout/style/spacer.directive.mjs +6 -5
- package/esm2022/lib/layout/style/style.body.directive.mjs +22 -17
- package/esm2022/lib/layout/style/style.color.directive.mjs +11 -14
- package/esm2022/lib/layout/style/style.directive.mjs +13 -17
- package/esm2022/lib/layout/style/style.layout.module.mjs +8 -10
- package/esm2022/lib/layout/style/style.mjs +4 -1
- package/esm2022/lib/layout/style/style.providers.mjs +21 -0
- package/esm2022/lib/layout/style/style.service.mjs +54 -32
- package/esm2022/lib/layout/style/style.set.directive.mjs +31 -47
- package/esm2022/lib/layout/text/address.component.mjs +43 -22
- package/esm2022/lib/layout/text/compat/form.description.component.mjs +3 -3
- package/esm2022/lib/layout/text/compat/hint.component.mjs +3 -3
- package/esm2022/lib/layout/text/compat/label.component.mjs +3 -3
- package/esm2022/lib/layout/text/compat/note.component.mjs +3 -3
- package/esm2022/lib/layout/text/compat/notice.component.mjs +3 -3
- package/esm2022/lib/layout/text/compat/ok.component.mjs +3 -3
- package/esm2022/lib/layout/text/compat/success.component.mjs +3 -3
- package/esm2022/lib/layout/text/compat/text.compat.module.mjs +4 -4
- package/esm2022/lib/layout/text/compat/warn.component.mjs +3 -3
- package/esm2022/lib/layout/text/detail.block.component.mjs +11 -8
- package/esm2022/lib/layout/text/detail.block.header.component.mjs +24 -13
- package/esm2022/lib/layout/text/icon.spacer.component.mjs +6 -5
- package/esm2022/lib/layout/text/label.block.component.mjs +9 -7
- package/esm2022/lib/layout/text/linkify.component.mjs +13 -10
- package/esm2022/lib/layout/text/text.chip.directive.mjs +6 -5
- package/esm2022/lib/layout/text/text.chips.component.mjs +34 -29
- package/esm2022/lib/layout/text/text.module.mjs +8 -13
- package/esm2022/lib/loading/basic-loading.component.mjs +31 -97
- package/esm2022/lib/loading/loading-progress.component.mjs +47 -54
- package/esm2022/lib/loading/loading.action.directive.mjs +9 -11
- package/esm2022/lib/loading/loading.component.mjs +60 -81
- package/esm2022/lib/loading/loading.module.mjs +8 -13
- package/esm2022/lib/router/layout/anchor/anchor.component.mjs +86 -36
- package/esm2022/lib/router/layout/anchor/anchor.content.component.mjs +26 -14
- package/esm2022/lib/router/layout/anchor/anchor.icon.component.mjs +10 -6
- package/esm2022/lib/router/layout/anchor/anchor.link.component.mjs +9 -7
- package/esm2022/lib/router/layout/anchor/anchor.module.mjs +17 -13
- package/esm2022/lib/router/layout/anchor/anchor.segue.directive.mjs +11 -13
- package/esm2022/lib/router/layout/anchorlist/anchorlist.component.mjs +22 -28
- package/esm2022/lib/router/layout/anchorlist/anchorlist.module.mjs +9 -15
- package/esm2022/lib/router/layout/layout.module.mjs +4 -4
- package/esm2022/lib/router/layout/list/list.module.mjs +9 -7
- package/esm2022/lib/router/layout/list/router.list.directive.mjs +16 -20
- package/esm2022/lib/router/layout/navbar/navbar.component.mjs +41 -87
- package/esm2022/lib/router/layout/navbar/navbar.module.mjs +9 -43
- package/esm2022/lib/router/layout/sidenav/sidenav.button.component.mjs +28 -24
- package/esm2022/lib/router/layout/sidenav/sidenav.component.mjs +91 -71
- package/esm2022/lib/router/layout/sidenav/sidenav.ifdisplaymode.directive.mjs +18 -23
- package/esm2022/lib/router/layout/sidenav/sidenav.module.mjs +8 -22
- package/esm2022/lib/router/layout/sidenav/sidenav.page.component.mjs +37 -46
- package/esm2022/lib/router/layout/sidenav/sidenav.pagebar.component.mjs +18 -18
- package/esm2022/lib/router/provider/ngrouter/anchor.component.mjs +6 -7
- package/esm2022/lib/router/provider/ngrouter/angular.router.providers.mjs +23 -0
- package/esm2022/lib/router/provider/ngrouter/index.mjs +2 -2
- package/esm2022/lib/router/provider/router.provider.config.mjs +8 -1
- package/esm2022/lib/router/provider/uirouter/anchor.component.mjs +14 -12
- package/esm2022/lib/router/provider/uirouter/index.mjs +2 -2
- package/esm2022/lib/router/provider/uirouter/uirouter.router.providers.mjs +23 -0
- package/esm2022/lib/screen/index.mjs +2 -2
- package/esm2022/lib/screen/screen.providers.mjs +22 -0
- package/esm2022/lib/screen/screen.service.mjs +6 -6
- package/esm2022/lib/util/cdk.mjs +1 -1
- package/esm2022/mapbox/lib/index.mjs +3 -2
- package/esm2022/mapbox/lib/mapbox.change.service.mjs +4 -4
- package/esm2022/mapbox/lib/mapbox.injection.component.mjs +13 -12
- package/esm2022/mapbox/lib/mapbox.injection.store.mjs +5 -5
- package/esm2022/mapbox/lib/mapbox.injection.store.provide.mjs +9 -8
- package/esm2022/mapbox/lib/mapbox.layout.component.mjs +93 -117
- package/esm2022/mapbox/lib/mapbox.layout.drawer.component.mjs +8 -8
- package/esm2022/mapbox/lib/mapbox.layout.resize.sync.directive.mjs +9 -8
- package/esm2022/mapbox/lib/mapbox.marker.component.mjs +69 -72
- package/esm2022/mapbox/lib/mapbox.marker.mjs +2 -2
- package/esm2022/mapbox/lib/mapbox.markers.component.mjs +22 -36
- package/esm2022/mapbox/lib/mapbox.menu.component.mjs +33 -31
- package/esm2022/mapbox/lib/mapbox.mjs +1 -1
- package/esm2022/mapbox/lib/mapbox.module.mjs +24 -61
- package/esm2022/mapbox/lib/mapbox.options.mjs +2 -0
- package/esm2022/mapbox/lib/mapbox.providers.mjs +25 -0
- package/esm2022/mapbox/lib/mapbox.rxjs.mjs +1 -1
- package/esm2022/mapbox/lib/mapbox.service.mjs +5 -8
- package/esm2022/mapbox/lib/mapbox.store.map.directive.mjs +7 -6
- package/esm2022/mapbox/lib/mapbox.store.mjs +39 -15
- package/esm2022/mapbox/lib/mapbox.store.provide.mjs +9 -8
- package/esm2022/table/lib/date/date.table.column.header.component.mjs +27 -21
- package/esm2022/table/lib/date/daterange.table.cell.input.component.mjs +39 -46
- package/esm2022/table/lib/date/table.date.module.mjs +8 -58
- package/esm2022/table/lib/table.cell.action.component.mjs +13 -10
- package/esm2022/table/lib/table.cell.input.component.mjs +13 -10
- package/esm2022/table/lib/table.cell.summaryend.component.mjs +13 -10
- package/esm2022/table/lib/table.cell.summarystart.component.mjs +13 -10
- package/esm2022/table/lib/table.column.directive.mjs +10 -17
- package/esm2022/table/lib/table.column.footer.component.mjs +13 -10
- package/esm2022/table/lib/table.column.header.component.mjs +13 -10
- package/esm2022/table/lib/table.component.mjs +31 -24
- package/esm2022/table/lib/table.directive.mjs +16 -22
- package/esm2022/table/lib/table.item.action.component.mjs +20 -17
- package/esm2022/table/lib/table.item.cell.component.mjs +19 -26
- package/esm2022/table/lib/table.item.directive.mjs +10 -17
- package/esm2022/table/lib/table.item.header.component.mjs +15 -11
- package/esm2022/table/lib/table.module.mjs +11 -55
- package/esm2022/table/lib/table.store.mjs +8 -8
- package/fesm2022/dereekb-dbx-web-calendar.mjs +69 -110
- package/fesm2022/dereekb-dbx-web-calendar.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-web-mapbox.mjs +340 -365
- package/fesm2022/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-web-table.mjs +230 -317
- package/fesm2022/dereekb-dbx-web-table.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-web.mjs +8063 -8083
- package/fesm2022/dereekb-dbx-web.mjs.map +1 -1
- package/lib/action/action.confirm.directive.d.ts +4 -5
- package/lib/action/action.module.d.ts +7 -10
- package/lib/action/key.trigger.directive.d.ts +1 -1
- package/lib/action/snackbar/_snackbar.scss +3 -3
- package/lib/action/snackbar/action.snackbar.component.d.ts +15 -14
- package/lib/action/snackbar/action.snackbar.directive.d.ts +5 -7
- package/lib/action/snackbar/action.snackbar.generator.d.ts +9 -9
- package/lib/action/snackbar/action.snackbar.module.d.ts +1 -6
- package/lib/action/transition/action.transition.module.d.ts +7 -6
- package/lib/action/transition/transition.safety.dialog.component.d.ts +5 -9
- package/lib/action/transition/transition.safety.directive.d.ts +10 -7
- package/lib/button/_button.scss +3 -3
- package/lib/button/button.component.d.ts +16 -21
- package/lib/button/button.module.d.ts +10 -7
- package/lib/button/{button.spacer.component.d.ts → button.spacer.directive.d.ts} +1 -1
- package/lib/button/icon/icon.button.component.d.ts +1 -1
- package/lib/button/icon/icon.button.module.d.ts +4 -4
- package/lib/button/index.d.ts +1 -1
- package/lib/button/progress/abstract.progress.button.directive.d.ts +25 -0
- package/lib/button/progress/bar.button.component.d.ts +5 -4
- package/lib/button/progress/bar.button.component.scss +1 -1
- package/lib/button/progress/button.progress.config.d.ts +62 -34
- package/lib/button/progress/button.progress.module.d.ts +4 -10
- package/lib/button/progress/button.progress.providers.d.ts +9 -0
- package/lib/button/progress/index.d.ts +1 -0
- package/lib/button/progress/spinner.button.component.d.ts +18 -7
- package/lib/button/progress/spinner.button.component.scss +34 -7
- package/lib/error/_error.scss +3 -3
- package/lib/error/default.error.widget.component.d.ts +3 -3
- package/lib/error/error.action.directive.d.ts +3 -3
- package/lib/error/error.component.d.ts +21 -28
- package/lib/error/error.details.component.d.ts +2 -2
- package/lib/error/error.loading.directive.d.ts +8 -8
- package/lib/error/error.module.d.ts +4 -7
- package/lib/error/error.popover.component.d.ts +6 -6
- package/lib/error/error.snackbar.action.directive.d.ts +1 -1
- package/lib/error/error.snackbar.component.d.ts +12 -23
- package/lib/error/error.snackbar.service.d.ts +1 -0
- package/lib/error/error.view.component.d.ts +10 -12
- package/lib/error/error.widget.component.d.ts +4 -8
- package/lib/error/error.widget.service.d.ts +1 -1
- package/lib/error/state.d.ts +3 -2
- package/lib/extension/calendar/_calendar.scss +20 -20
- package/lib/extension/download/text/download.text.component.d.ts +16 -14
- package/lib/extension/download/text/download.text.module.d.ts +4 -6
- package/lib/extension/model/index.d.ts +1 -1
- package/lib/extension/model/model.providers.d.ts +13 -0
- package/lib/extension/model/model.tracker.d.ts +7 -7
- package/lib/extension/model/model.tracker.service.d.ts +2 -2
- package/lib/extension/model/model.tracker.view.storage.d.ts +4 -1
- package/lib/extension/model/model.types.d.ts +6 -6
- package/lib/extension/model/model.types.service.d.ts +1 -1
- package/lib/extension/model/state/actions/actions.d.ts +1 -1
- package/lib/extension/model/state/actions/model.actions.d.ts +5 -5
- package/lib/extension/model/state/effects/tracker.effects.d.ts +1 -1
- package/lib/extension/model/state/reducers/model.module.config.d.ts +1 -1
- package/lib/extension/structure/structure.body.directive.d.ts +1 -1
- package/lib/extension/structure/structure.module.d.ts +4 -2
- package/lib/extension/structure/structure.structure.directive.d.ts +5 -2
- package/lib/extension/table/_table.scss +3 -3
- package/lib/extension/widget/widget.component.d.ts +5 -9
- package/lib/extension/widget/widget.list.component.d.ts +8 -4
- package/lib/extension/widget/widget.module.d.ts +8 -4
- package/lib/index.d.ts +1 -1
- package/lib/interaction/dialog/_dialog.scss +3 -3
- package/lib/interaction/dialog/dialog.action.directive.d.ts +7 -6
- package/lib/interaction/dialog/dialog.content.close.component.d.ts +4 -6
- package/lib/interaction/dialog/{dialog.content.component.d.ts → dialog.content.directive.d.ts} +3 -2
- package/lib/interaction/dialog/dialog.content.footer.component.d.ts +10 -10
- package/lib/interaction/dialog/dialog.module.d.ts +2 -9
- package/lib/interaction/dialog/index.d.ts +1 -1
- package/lib/interaction/filter/_filter.scss +3 -3
- package/lib/interaction/filter/filter.config.d.ts +62 -0
- package/lib/interaction/filter/filter.menu.d.ts +3 -3
- package/lib/interaction/filter/filter.module.d.ts +2 -11
- package/lib/interaction/filter/filter.partial.d.ts +5 -7
- package/lib/interaction/filter/filter.partial.list.component.d.ts +1 -1
- package/lib/interaction/filter/filter.partial.menu.component.d.ts +5 -5
- package/lib/interaction/filter/filter.popover.button.component.d.ts +5 -7
- package/lib/interaction/filter/filter.popover.button.directive.d.ts +7 -6
- package/lib/interaction/filter/filter.popover.component.d.ts +15 -71
- package/lib/interaction/filter/filter.preset.directive.d.ts +7 -11
- package/lib/interaction/filter/filter.preset.list.component.d.ts +1 -1
- package/lib/interaction/filter/filter.preset.menu.component.d.ts +5 -5
- package/lib/interaction/filter/filter.wrapper.component.d.ts +5 -5
- package/lib/interaction/filter/index.d.ts +1 -0
- package/lib/interaction/interaction.module.d.ts +13 -4
- package/lib/interaction/popover/_popover.scss +3 -3
- package/lib/interaction/popover/abstract.popover.ref.directive.d.ts +3 -4
- package/lib/interaction/popover/index.d.ts +1 -1
- package/lib/interaction/popover/popover.action.directive.d.ts +7 -6
- package/lib/interaction/popover/popover.close.component.d.ts +1 -1
- package/lib/interaction/popover/popover.component.d.ts +15 -9
- package/lib/interaction/popover/popover.content.component.d.ts +6 -4
- package/lib/interaction/popover/popover.content.module.d.ts +2 -11
- package/lib/interaction/popover/popover.controls.directive.d.ts +3 -2
- package/lib/interaction/popover/popover.coordinator.component.d.ts +2 -2
- package/lib/interaction/popover/popover.header.component.d.ts +4 -3
- package/lib/interaction/popover/popover.module.d.ts +2 -11
- package/lib/interaction/popover/popover.scroll.content.directive.d.ts +13 -0
- package/lib/interaction/popover/popover.service.d.ts +4 -4
- package/lib/interaction/popup/_popup.scss +6 -6
- package/lib/interaction/popup/popup.component.d.ts +19 -19
- package/lib/interaction/popup/popup.content.component.d.ts +2 -1
- package/lib/interaction/popup/popup.controls.buttons.component.d.ts +3 -1
- package/lib/interaction/popup/popup.controls.component.d.ts +2 -2
- package/lib/interaction/popup/popup.coordinator.component.d.ts +3 -2
- package/lib/interaction/popup/popup.coordinator.service.d.ts +1 -1
- package/lib/interaction/popup/popup.d.ts +7 -6
- package/lib/interaction/popup/popup.module.d.ts +1 -10
- package/lib/interaction/popup/popup.position.strategy.d.ts +2 -2
- package/lib/interaction/popup/popup.service.d.ts +4 -4
- package/lib/interaction/prompt/_prompt.scss +4 -4
- package/lib/interaction/prompt/index.d.ts +1 -1
- package/lib/interaction/prompt/prompt.box.directive.d.ts +6 -0
- package/lib/interaction/prompt/prompt.button.confirm.directive.d.ts +1 -1
- package/lib/interaction/prompt/prompt.component.d.ts +3 -3
- package/lib/interaction/prompt/prompt.confirm.component.d.ts +11 -23
- package/lib/interaction/prompt/prompt.confirm.dialog.component.d.ts +2 -3
- package/lib/interaction/prompt/prompt.confirm.directive.d.ts +9 -5
- package/lib/interaction/prompt/prompt.module.d.ts +2 -11
- package/lib/interaction/prompt/prompt.page.component.d.ts +1 -1
- package/lib/interaction/style/_style.scss +6 -6
- package/lib/keypress/keydown.listener.directive.d.ts +1 -1
- package/lib/keypress/keypress.module.d.ts +4 -2
- package/lib/layout/bar/_bar.scss +8 -12
- package/lib/layout/bar/bar.directive.d.ts +3 -3
- package/lib/layout/bar/bar.header.component.d.ts +4 -5
- package/lib/layout/bar/bar.layout.module.d.ts +2 -5
- package/lib/layout/bar/pagebar.component.d.ts +3 -3
- package/lib/layout/block/_block.scss +3 -3
- package/lib/layout/block/block.layout.module.d.ts +3 -4
- package/lib/layout/block/two.block.component.d.ts +8 -8
- package/lib/layout/card/_card.scss +3 -3
- package/lib/layout/card/card.box.component.d.ts +3 -3
- package/lib/layout/card/card.box.container.directive.d.ts +8 -0
- package/lib/layout/card/card.box.layout.module.d.ts +2 -4
- package/lib/layout/card/index.d.ts +1 -1
- package/lib/layout/column/_column.scss +3 -3
- package/lib/layout/column/column.layout.module.d.ts +2 -2
- package/lib/layout/column/one/one.column.component.d.ts +3 -3
- package/lib/layout/column/one/one.column.module.d.ts +4 -3
- package/lib/layout/column/two/index.d.ts +1 -1
- package/lib/layout/column/two/two.column.back.directive.d.ts +3 -3
- package/lib/layout/column/two/two.column.component.d.ts +37 -20
- package/lib/layout/column/two/two.column.context.directive.d.ts +4 -7
- package/lib/layout/column/two/two.column.full.left.directive.d.ts +4 -8
- package/lib/layout/column/two/two.column.head.directive.d.ts +11 -0
- package/lib/layout/column/two/two.column.module.d.ts +2 -8
- package/lib/layout/column/two/two.column.right.component.d.ts +12 -14
- package/lib/layout/column/two/two.column.sref.directive.d.ts +3 -2
- package/lib/layout/column/two/two.column.sref.showright.directive.d.ts +3 -4
- package/lib/layout/column/two/two.column.store.d.ts +17 -9
- package/lib/layout/content/_content.scss +10 -10
- package/lib/layout/content/content.border.directive.d.ts +3 -2
- package/lib/layout/content/content.box.directive.d.ts +3 -3
- package/lib/layout/content/content.container.directive.d.ts +5 -4
- package/lib/layout/content/content.directive.d.ts +1 -1
- package/lib/layout/content/content.elevate.directive.d.ts +2 -2
- package/lib/layout/content/content.layout.module.d.ts +1 -2
- package/lib/layout/content/content.page.directive.d.ts +1 -1
- package/lib/layout/content/content.pit.directive.d.ts +2 -2
- package/lib/layout/flag/_flag.scss +3 -3
- package/lib/layout/flag/flag.component.d.ts +2 -2
- package/lib/layout/flag/flag.layout.module.d.ts +1 -6
- package/lib/layout/flag/flag.prompt.component.d.ts +4 -3
- package/lib/layout/flex/_flex.scss +3 -3
- package/lib/layout/flex/flex.group.directive.d.ts +7 -14
- package/lib/layout/flex/flex.layout.module.d.ts +4 -2
- package/lib/layout/flex/flex.size.directive.d.ts +3 -2
- package/lib/layout/item/_item.scss +3 -3
- package/lib/layout/item/index.d.ts +0 -1
- package/lib/layout/item/item.icon.component.d.ts +3 -3
- package/lib/layout/layout.module.d.ts +5 -7
- package/lib/layout/list/_list.scss +19 -6
- package/lib/layout/list/grid/index.d.ts +2 -0
- package/lib/layout/list/{list.grid.view.component.d.ts → grid/list.grid.view.component.d.ts} +23 -31
- package/lib/layout/list/grid/list.grid.view.directive.d.ts +24 -0
- package/lib/layout/list/group/index.d.ts +3 -0
- package/lib/layout/list/{list.view.value.group.d.ts → group/list.view.value.group.d.ts} +2 -2
- package/lib/layout/list/{list.view.value.group.title.d.ts → group/list.view.value.group.title.d.ts} +1 -1
- package/lib/layout/list/group/list.view.value.group.title.directive.d.ts +15 -0
- package/lib/layout/list/group/list.view.value.group.title.header.component.d.ts +21 -0
- package/lib/layout/list/index.d.ts +5 -9
- package/lib/layout/list/list.component.d.ts +54 -50
- package/lib/layout/list/list.content.empty.component.d.ts +1 -1
- package/lib/layout/list/list.directive.d.ts +35 -15
- package/lib/layout/list/list.layout.module.d.ts +27 -18
- package/lib/layout/list/list.module.d.ts +13 -0
- package/lib/layout/list/list.view.d.ts +8 -8
- package/lib/layout/list/list.view.directive.d.ts +14 -9
- package/lib/layout/list/list.view.selection.directive.d.ts +12 -3
- package/lib/layout/list/list.view.value.component.d.ts +32 -39
- package/lib/layout/list/list.view.value.d.ts +4 -1
- package/lib/layout/list/list.view.value.directive.d.ts +5 -7
- package/lib/layout/list/list.view.value.selection.component.d.ts +14 -13
- package/lib/layout/list/list.wrapper.d.ts +13 -4
- package/lib/layout/list/meta/index.d.ts +1 -0
- package/lib/layout/list/{list.view.meta.icon.component.d.ts → meta/list.view.meta.icon.component.d.ts} +2 -2
- package/lib/layout/list/modifier/index.d.ts +4 -0
- package/lib/layout/list/modifier/list.modifier.module.d.ts +12 -0
- package/lib/layout/list/{list.view.value.modifier.directive.d.ts → modifier/list.view.value.modifier.directive.d.ts} +13 -12
- package/lib/layout/list/{list.view.value.modifier.ripple.directive.d.ts → modifier/list.view.value.modifier.ripple.directive.d.ts} +5 -6
- package/lib/layout/list/{list.view.value.modifier.selection.directive.d.ts → modifier/list.view.value.modifier.selection.directive.d.ts} +5 -6
- package/lib/layout/section/_section.scss +3 -3
- package/lib/layout/section/section.component.d.ts +3 -2
- package/lib/layout/section/section.d.ts +28 -6
- package/lib/layout/section/section.header.component.d.ts +12 -11
- package/lib/layout/section/section.intro.component.d.ts +7 -8
- package/lib/layout/section/section.layout.module.d.ts +2 -7
- package/lib/layout/section/section.page.component.d.ts +4 -3
- package/lib/layout/section/subsection.component.d.ts +1 -1
- package/lib/layout/step/_step.scss +3 -3
- package/lib/layout/step/step.component.d.ts +6 -5
- package/lib/layout/step/step.layout.module.d.ts +4 -3
- package/lib/layout/style/_style.scss +20 -3
- package/lib/layout/style/index.d.ts +1 -0
- package/lib/layout/style/spacer.directive.d.ts +1 -1
- package/lib/layout/style/style.body.directive.d.ts +8 -8
- package/lib/layout/style/style.color.directive.d.ts +3 -3
- package/lib/layout/style/style.d.ts +48 -1
- package/lib/layout/style/style.directive.d.ts +5 -5
- package/lib/layout/style/style.layout.module.d.ts +1 -2
- package/lib/layout/style/style.providers.d.ts +19 -0
- package/lib/layout/style/style.service.d.ts +28 -18
- package/lib/layout/style/style.set.directive.d.ts +18 -16
- package/lib/layout/text/_text.scss +8 -8
- package/lib/layout/text/address.component.d.ts +2 -2
- package/lib/layout/text/detail.block.component.d.ts +1 -1
- package/lib/layout/text/detail.block.header.component.d.ts +1 -1
- package/lib/layout/text/icon.spacer.component.d.ts +1 -1
- package/lib/layout/text/label.block.component.d.ts +1 -1
- package/lib/layout/text/linkify.component.d.ts +3 -2
- package/lib/layout/text/text.chip.directive.d.ts +1 -1
- package/lib/layout/text/text.chips.component.d.ts +3 -4
- package/lib/layout/text/text.module.d.ts +1 -5
- package/lib/loading/_loading.scss +3 -3
- package/lib/loading/basic-loading.component.d.ts +17 -36
- package/lib/loading/loading-progress.component.d.ts +12 -14
- package/lib/loading/loading.action.directive.d.ts +2 -4
- package/lib/loading/loading.component.d.ts +31 -29
- package/lib/loading/loading.module.d.ts +1 -5
- package/lib/router/layout/anchor/_anchor.scss +3 -3
- package/lib/router/layout/anchor/anchor.component.d.ts +7 -12
- package/lib/router/layout/anchor/anchor.content.component.d.ts +4 -3
- package/lib/router/layout/anchor/anchor.icon.component.d.ts +1 -1
- package/lib/router/layout/anchor/anchor.link.component.d.ts +3 -3
- package/lib/router/layout/anchor/anchor.module.d.ts +14 -5
- package/lib/router/layout/anchor/anchor.segue.directive.d.ts +5 -6
- package/lib/router/layout/anchorlist/_anchorlist.scss +6 -6
- package/lib/router/layout/anchorlist/anchorlist.component.d.ts +6 -9
- package/lib/router/layout/anchorlist/anchorlist.module.d.ts +4 -9
- package/lib/router/layout/list/list.module.d.ts +4 -1
- package/lib/router/layout/list/router.list.directive.d.ts +6 -8
- package/lib/router/layout/navbar/_navbar.scss +3 -3
- package/lib/router/layout/navbar/navbar.component.d.ts +22 -29
- package/lib/router/layout/navbar/navbar.module.d.ts +4 -9
- package/lib/router/layout/sidenav/_sidenav.scss +8 -8
- package/lib/router/layout/sidenav/sidenav.button.component.d.ts +3 -4
- package/lib/router/layout/sidenav/sidenav.component.d.ts +19 -18
- package/lib/router/layout/sidenav/sidenav.ifdisplaymode.directive.d.ts +7 -7
- package/lib/router/layout/sidenav/sidenav.module.d.ts +1 -14
- package/lib/router/layout/sidenav/sidenav.page.component.d.ts +7 -10
- package/lib/router/layout/sidenav/sidenav.pagebar.component.d.ts +2 -2
- package/lib/router/provider/ngrouter/anchor.component.d.ts +1 -1
- package/lib/router/provider/ngrouter/angular.router.providers.d.ts +7 -0
- package/lib/router/provider/ngrouter/index.d.ts +1 -1
- package/lib/router/provider/router.provider.config.d.ts +7 -0
- package/lib/router/provider/uirouter/anchor.component.d.ts +6 -5
- package/lib/router/provider/uirouter/index.d.ts +1 -1
- package/lib/router/provider/uirouter/uirouter.router.providers.d.ts +7 -0
- package/lib/screen/index.d.ts +1 -1
- package/lib/screen/screen.providers.d.ts +15 -0
- package/lib/screen/screen.service.d.ts +7 -7
- package/lib/style/_all-typography.scss +1 -1
- package/lib/style/_root-variables.scss +13 -13
- package/lib/style/_theming.scss +4 -2
- package/mapbox/lib/index.d.ts +2 -1
- package/mapbox/lib/mapbox.change.service.d.ts +3 -3
- package/mapbox/lib/mapbox.d.ts +33 -19
- package/mapbox/lib/mapbox.injection.component.d.ts +2 -4
- package/mapbox/lib/mapbox.injection.store.provide.d.ts +1 -1
- package/mapbox/lib/mapbox.layout.component.d.ts +36 -34
- package/mapbox/lib/mapbox.layout.drawer.component.d.ts +2 -2
- package/mapbox/lib/mapbox.layout.resize.sync.directive.d.ts +1 -1
- package/mapbox/lib/mapbox.marker.component.d.ts +6 -11
- package/mapbox/lib/mapbox.marker.d.ts +13 -13
- package/mapbox/lib/mapbox.markers.component.d.ts +5 -11
- package/mapbox/lib/mapbox.menu.component.d.ts +9 -11
- package/mapbox/lib/mapbox.module.d.ts +2 -12
- package/mapbox/lib/mapbox.options.d.ts +11 -0
- package/mapbox/lib/mapbox.providers.d.ts +17 -0
- package/mapbox/lib/mapbox.rxjs.d.ts +6 -6
- package/mapbox/lib/mapbox.service.d.ts +1 -1
- package/mapbox/lib/mapbox.store.d.ts +28 -6
- package/mapbox/lib/mapbox.store.map.directive.d.ts +1 -1
- package/mapbox/lib/mapbox.store.provide.d.ts +1 -1
- package/package.json +14 -16
- package/table/lib/date/date.table.column.header.component.d.ts +3 -3
- package/table/lib/date/daterange.table.cell.input.component.d.ts +14 -12
- package/table/lib/date/table.date.module.d.ts +1 -9
- package/table/lib/table.cell.action.component.d.ts +2 -1
- package/table/lib/table.cell.input.component.d.ts +2 -1
- package/table/lib/table.cell.summaryend.component.d.ts +2 -1
- package/table/lib/table.cell.summarystart.component.d.ts +2 -1
- package/table/lib/table.column.directive.d.ts +3 -6
- package/table/lib/table.column.footer.component.d.ts +3 -3
- package/table/lib/table.column.header.component.d.ts +3 -3
- package/table/lib/table.component.d.ts +13 -8
- package/table/lib/table.directive.d.ts +5 -4
- package/table/lib/table.item.action.component.d.ts +4 -2
- package/table/lib/table.item.cell.component.d.ts +3 -5
- package/table/lib/table.item.directive.d.ts +3 -6
- package/table/lib/table.item.header.component.d.ts +2 -1
- package/table/lib/table.module.d.ts +4 -6
- package/calendar/esm2022/dereekb-dbx-web-calendar.mjs +0 -5
- package/calendar/esm2022/index.mjs +0 -2
- package/calendar/esm2022/lib/calendar.base.component.mjs +0 -54
- package/calendar/esm2022/lib/calendar.component.mjs +0 -54
- package/calendar/esm2022/lib/calendar.mjs +0 -30
- package/calendar/esm2022/lib/calendar.module.mjs +0 -87
- package/calendar/esm2022/lib/calendar.store.mjs +0 -174
- package/calendar/esm2022/lib/index.mjs +0 -6
- package/calendar/fesm2022/dereekb-dbx-web-calendar.mjs +0 -385
- package/calendar/fesm2022/dereekb-dbx-web-calendar.mjs.map +0 -1
- package/calendar/package.json +0 -21
- package/esm2022/lib/button/button.spacer.component.mjs +0 -19
- package/esm2022/lib/button/progress/base.progress.button.directive.mjs +0 -107
- package/esm2022/lib/extension/model/model.module.mjs +0 -66
- package/esm2022/lib/interaction/dialog/dialog.content.component.mjs +0 -23
- package/esm2022/lib/interaction/popover/popover.scroll.content.component.mjs +0 -48
- package/esm2022/lib/interaction/prompt/prompt.box.component.mjs +0 -25
- package/esm2022/lib/layout/card/card.box.container.component.mjs +0 -25
- package/esm2022/lib/layout/column/two/two.column.head.component.mjs +0 -32
- package/esm2022/lib/layout/item/item.layout.module.mjs +0 -19
- package/esm2022/lib/layout/list/list.grid.view.component.mjs +0 -112
- package/esm2022/lib/layout/list/list.grid.view.directive.mjs +0 -15
- package/esm2022/lib/layout/list/list.view.meta.icon.component.mjs +0 -35
- package/esm2022/lib/layout/list/list.view.value.group.mjs +0 -32
- package/esm2022/lib/layout/list/list.view.value.group.title.directive.mjs +0 -131
- package/esm2022/lib/layout/list/list.view.value.group.title.mjs +0 -2
- package/esm2022/lib/layout/list/list.view.value.modifier.directive.mjs +0 -77
- package/esm2022/lib/layout/list/list.view.value.modifier.ripple.directive.mjs +0 -41
- package/esm2022/lib/layout/list/list.view.value.modifier.selection.directive.mjs +0 -39
- package/esm2022/lib/router/provider/ngrouter/angular.router.module.mjs +0 -36
- package/esm2022/lib/router/provider/uirouter/uirouter.router.module.mjs +0 -36
- package/esm2022/lib/screen/screen.module.mjs +0 -24
- package/esm2022/mapbox/lib/options.mjs +0 -2
- package/lib/button/progress/base.progress.button.directive.d.ts +0 -32
- package/lib/extension/model/model.module.d.ts +0 -19
- package/lib/interaction/popover/popover.scroll.content.component.d.ts +0 -13
- package/lib/interaction/prompt/prompt.box.component.d.ts +0 -6
- package/lib/layout/card/card.box.container.component.d.ts +0 -8
- package/lib/layout/column/two/two.column.head.component.d.ts +0 -10
- package/lib/layout/item/item.layout.module.d.ts +0 -9
- package/lib/layout/list/list.grid.view.directive.d.ts +0 -10
- package/lib/layout/list/list.view.value.group.title.directive.d.ts +0 -35
- package/lib/router/provider/ngrouter/angular.router.module.d.ts +0 -12
- package/lib/router/provider/uirouter/uirouter.router.module.d.ts +0 -12
- package/lib/screen/screen.module.d.ts +0 -9
- package/mapbox/esm2022/dereekb-dbx-web-mapbox.mjs +0 -5
- package/mapbox/esm2022/index.mjs +0 -2
- package/mapbox/esm2022/lib/index.mjs +0 -21
- package/mapbox/esm2022/lib/mapbox.change.service.mjs +0 -40
- package/mapbox/esm2022/lib/mapbox.injection.component.mjs +0 -28
- package/mapbox/esm2022/lib/mapbox.injection.store.mjs +0 -39
- package/mapbox/esm2022/lib/mapbox.injection.store.provide.mjs +0 -47
- package/mapbox/esm2022/lib/mapbox.layout.component.mjs +0 -185
- package/mapbox/esm2022/lib/mapbox.layout.drawer.component.mjs +0 -21
- package/mapbox/esm2022/lib/mapbox.layout.resize.sync.directive.mjs +0 -32
- package/mapbox/esm2022/lib/mapbox.marker.component.mjs +0 -135
- package/mapbox/esm2022/lib/mapbox.marker.mjs +0 -16
- package/mapbox/esm2022/lib/mapbox.markers.component.mjs +0 -58
- package/mapbox/esm2022/lib/mapbox.menu.component.mjs +0 -91
- package/mapbox/esm2022/lib/mapbox.mjs +0 -19
- package/mapbox/esm2022/lib/mapbox.module.mjs +0 -108
- package/mapbox/esm2022/lib/mapbox.rxjs.mjs +0 -53
- package/mapbox/esm2022/lib/mapbox.service.mjs +0 -36
- package/mapbox/esm2022/lib/mapbox.store.map.directive.mjs +0 -33
- package/mapbox/esm2022/lib/mapbox.store.mjs +0 -525
- package/mapbox/esm2022/lib/mapbox.store.provide.mjs +0 -47
- package/mapbox/esm2022/lib/mapbox.util.mjs +0 -15
- package/mapbox/esm2022/lib/options.mjs +0 -2
- package/mapbox/fesm2022/dereekb-dbx-web-mapbox.mjs +0 -1449
- package/mapbox/fesm2022/dereekb-dbx-web-mapbox.mjs.map +0 -1
- package/mapbox/lib/options.d.ts +0 -7
- package/mapbox/package.json +0 -21
- package/table/esm2022/dereekb-dbx-web-table.mjs +0 -5
- package/table/esm2022/index.mjs +0 -2
- package/table/esm2022/lib/date/date.table.column.header.component.mjs +0 -49
- package/table/esm2022/lib/date/daterange.table.cell.input.component.mjs +0 -161
- package/table/esm2022/lib/date/index.mjs +0 -4
- package/table/esm2022/lib/date/table.date.module.mjs +0 -68
- package/table/esm2022/lib/index.mjs +0 -18
- package/table/esm2022/lib/table.cell.action.component.mjs +0 -25
- package/table/esm2022/lib/table.cell.input.component.mjs +0 -28
- package/table/esm2022/lib/table.cell.summaryend.component.mjs +0 -25
- package/table/esm2022/lib/table.cell.summarystart.component.mjs +0 -28
- package/table/esm2022/lib/table.column.directive.mjs +0 -27
- package/table/esm2022/lib/table.column.footer.component.mjs +0 -32
- package/table/esm2022/lib/table.column.header.component.mjs +0 -32
- package/table/esm2022/lib/table.component.mjs +0 -55
- package/table/esm2022/lib/table.directive.mjs +0 -34
- package/table/esm2022/lib/table.item.action.component.mjs +0 -32
- package/table/esm2022/lib/table.item.cell.component.mjs +0 -36
- package/table/esm2022/lib/table.item.directive.mjs +0 -27
- package/table/esm2022/lib/table.item.header.component.mjs +0 -24
- package/table/esm2022/lib/table.mjs +0 -2
- package/table/esm2022/lib/table.module.mjs +0 -74
- package/table/esm2022/lib/table.store.mjs +0 -53
- package/table/fesm2022/dereekb-dbx-web-table.mjs +0 -704
- package/table/fesm2022/dereekb-dbx-web-table.mjs.map +0 -1
- package/table/package.json +0 -21
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { DbxPopoverContentComponent } from './popover.content.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Popover scrollable content wrapper component.
|
|
5
|
+
*/
|
|
6
|
+
export declare class DbxPopoverScrollContentDirective {
|
|
7
|
+
readonly appPopoverContentComponent: DbxPopoverContentComponent;
|
|
8
|
+
readonly hasControlsSignal: import("@angular/core").Signal<boolean | undefined>;
|
|
9
|
+
readonly hasHeaderSignal: import("@angular/core").Signal<boolean | undefined>;
|
|
10
|
+
readonly sizingClassesSignal: import("@angular/core").Signal<string>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPopoverScrollContentDirective, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxPopoverScrollContentDirective, "dbx-popover-scroll-content,[dbxPopoverScrollContent],.dbx-popover-scroll-content", never, {}, {}, never, never, true, never>;
|
|
13
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DbxPopoverComponentConfig } from './popover.component';
|
|
1
|
+
import { type DbxPopoverComponentConfig } from './popover.component';
|
|
2
2
|
import { Injector } from '@angular/core';
|
|
3
3
|
import { NgOverlayContainerConfiguration, NgPopoverRef } from 'ng-overlay-container';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -10,9 +10,9 @@ export interface DbxPopoverConfig<O, I, T> extends DbxPopoverComponentConfig<O,
|
|
|
10
10
|
* Used for displaying a popover.
|
|
11
11
|
*/
|
|
12
12
|
export declare class DbxPopoverService {
|
|
13
|
-
private _overlay;
|
|
14
|
-
private _injector;
|
|
15
|
-
private _overlayContainerService;
|
|
13
|
+
private readonly _overlay;
|
|
14
|
+
private readonly _injector;
|
|
15
|
+
private readonly _overlayContainerService;
|
|
16
16
|
open<O, I, T>(config: DbxPopoverConfig<O, I, T>): NgPopoverRef<DbxPopoverComponentConfig<O, I, T>, O>;
|
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPopoverService, never>;
|
|
18
18
|
static ɵprov: i0.ɵɵInjectableDeclaration<DbxPopoverService>;
|
|
@@ -49,10 +49,10 @@ $dbx-popup-border-radius: 4px;
|
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
@mixin color($theme-config) {
|
|
52
|
-
$color-config: theming.get-color-config($theme-config);
|
|
52
|
+
$color-config: theming.m2-get-color-config($theme-config);
|
|
53
53
|
$background: map.get($color-config, 'background');
|
|
54
|
-
$controls-bg-color: theming.get-color-from-palette($background);
|
|
55
|
-
$controls-text-color: theming.get-color-from-palette($background, 'contrast');
|
|
54
|
+
$controls-bg-color: theming.m2-get-color-from-palette($background);
|
|
55
|
+
$controls-text-color: theming.m2-get-color-from-palette($background, 'contrast');
|
|
56
56
|
|
|
57
57
|
.dbx-popup-controls {
|
|
58
58
|
color: $controls-text-color;
|
|
@@ -68,9 +68,9 @@ $dbx-popup-border-radius: 4px;
|
|
|
68
68
|
|
|
69
69
|
@mixin theme($theme-config) {
|
|
70
70
|
@include theming.private-check-duplicate-theme-styles($theme-config, 'dbx-interaction-popup') {
|
|
71
|
-
$color: theming.get-color-config($theme-config);
|
|
72
|
-
$density: theming.get-density-config($theme-config);
|
|
73
|
-
$typography: theming.get-typography-config($theme-config);
|
|
71
|
+
$color: theming.m2-get-color-config($theme-config);
|
|
72
|
+
$density: theming.m2-get-density-config($theme-config);
|
|
73
|
+
$typography: theming.m2-get-typography-config($theme-config);
|
|
74
74
|
|
|
75
75
|
@if $color !=null {
|
|
76
76
|
@include color($theme-config);
|
|
@@ -2,13 +2,13 @@ import { Type, OnDestroy } from '@angular/core';
|
|
|
2
2
|
import { Maybe, PixelsString } from '@dereekb/util';
|
|
3
3
|
import { PopupPosition, PopupPositionOffset } from './popup.position.strategy';
|
|
4
4
|
import { AbstractTransitionWatcherDirective, DbxInjectionComponentConfig } from '@dereekb/dbx-core';
|
|
5
|
-
import { DbxPopupController, DbxPopupKey,
|
|
5
|
+
import { DbxPopupController, DbxPopupKey, DbxPopupWindowStateType } from './popup';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare const APP_POPUP_NORMAL_WIDTH = "700px";
|
|
8
8
|
export declare const APP_POPUP_MINIMIZED_WIDTH = "300px";
|
|
9
9
|
export declare const APP_POPUP_NORMAL_HEIGHT = "auto";
|
|
10
10
|
export declare abstract class DbxPopupComponentController<O, I> extends DbxPopupController<O, I> {
|
|
11
|
-
getClosingValueFn?: (value?: I) => Promise<O>;
|
|
11
|
+
readonly getClosingValueFn?: (value?: I) => Promise<O>;
|
|
12
12
|
}
|
|
13
13
|
export interface DbxPopupComponentConfig<O, I, T> {
|
|
14
14
|
/**
|
|
@@ -16,35 +16,35 @@ export interface DbxPopupComponentConfig<O, I, T> {
|
|
|
16
16
|
*
|
|
17
17
|
* Only one popup should exist at a time given a certain key.
|
|
18
18
|
*/
|
|
19
|
-
key: DbxPopupKey;
|
|
20
|
-
position?: PopupPosition
|
|
21
|
-
offset?: PopupPositionOffset
|
|
22
|
-
closeOnTransition?: boolean
|
|
23
|
-
componentClass: Type<T>;
|
|
24
|
-
data?: I
|
|
25
|
-
isDraggable?: boolean
|
|
26
|
-
init?: (component: T, controller: DbxPopupController<O, I>) => void;
|
|
27
|
-
width?: PixelsString
|
|
28
|
-
height?: PixelsString
|
|
19
|
+
readonly key: DbxPopupKey;
|
|
20
|
+
readonly position?: Maybe<PopupPosition>;
|
|
21
|
+
readonly offset?: Maybe<PopupPositionOffset>;
|
|
22
|
+
readonly closeOnTransition?: Maybe<boolean>;
|
|
23
|
+
readonly componentClass: Type<T>;
|
|
24
|
+
readonly data?: Maybe<I>;
|
|
25
|
+
readonly isDraggable?: Maybe<boolean>;
|
|
26
|
+
readonly init?: (component: T, controller: DbxPopupController<O, I>) => void;
|
|
27
|
+
readonly width?: Maybe<PixelsString>;
|
|
28
|
+
readonly height?: Maybe<PixelsString>;
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
31
|
* Popup component.
|
|
32
32
|
*/
|
|
33
33
|
export declare class DbxPopupComponent<O = unknown, I = unknown, T = unknown> extends AbstractTransitionWatcherDirective implements DbxPopupController<O, I>, OnDestroy {
|
|
34
|
-
private popoverRef;
|
|
35
|
-
private compactContextState;
|
|
34
|
+
private readonly popoverRef;
|
|
35
|
+
private readonly compactContextState;
|
|
36
36
|
private _position;
|
|
37
|
+
readonly config: DbxPopupComponentConfig<O, I, T>;
|
|
38
|
+
readonly key: DbxPopupKey;
|
|
39
|
+
readonly data: Maybe<I>;
|
|
37
40
|
readonly contentConfig: DbxInjectionComponentConfig;
|
|
38
41
|
private readonly closing;
|
|
39
42
|
readonly isClosing$: import("rxjs").Observable<boolean>;
|
|
40
43
|
readonly closing$: import("rxjs").Observable<boolean>;
|
|
41
44
|
private readonly _windowState;
|
|
42
|
-
readonly windowState$: import("rxjs").Observable<
|
|
45
|
+
readonly windowState$: import("rxjs").Observable<DbxPopupWindowStateType>;
|
|
43
46
|
getClosingValueFn?: (value?: I) => Promise<O>;
|
|
44
47
|
constructor();
|
|
45
|
-
get config(): DbxPopupComponentConfig<O, I, T>;
|
|
46
|
-
get key(): DbxPopupKey;
|
|
47
|
-
get data(): Maybe<I>;
|
|
48
48
|
ngOnDestroy(): void;
|
|
49
49
|
protected updateForSuccessfulTransition(): void;
|
|
50
50
|
close(): void;
|
|
@@ -53,5 +53,5 @@ export declare class DbxPopupComponent<O = unknown, I = unknown, T = unknown> ex
|
|
|
53
53
|
normalscreen(): void;
|
|
54
54
|
fullscreen(): void;
|
|
55
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPopupComponent<any, any, any>, never>;
|
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPopupComponent<any, any, any>, "ng-component", never, {}, {}, never, never,
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPopupComponent<any, any, any>, "ng-component", never, {}, {}, never, never, true, never>;
|
|
57
57
|
}
|
|
@@ -5,6 +5,7 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class DbxPopupContentComponent {
|
|
6
6
|
private readonly appPopupController;
|
|
7
7
|
readonly showContent$: import("rxjs").Observable<boolean>;
|
|
8
|
+
readonly showContentSignal: import("@angular/core").Signal<boolean>;
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPopupContentComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPopupContentComponent, "dbx-popup-content", never, {}, {}, never, ["[controls]", "*"],
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPopupContentComponent, "dbx-popup-content", never, {}, {}, never, ["[controls]", "*"], true, never>;
|
|
10
11
|
}
|
|
@@ -6,11 +6,13 @@ export declare class DbxPopupControlButtonsComponent {
|
|
|
6
6
|
private readonly _appPopupController;
|
|
7
7
|
readonly isMinimized$: import("rxjs").Observable<boolean>;
|
|
8
8
|
readonly isFullscreen$: import("rxjs").Observable<boolean>;
|
|
9
|
+
readonly isMinimizedSignal: import("@angular/core").Signal<boolean>;
|
|
10
|
+
readonly isFullscreenSignal: import("@angular/core").Signal<boolean>;
|
|
9
11
|
minimizeClicked(): void;
|
|
10
12
|
maximizeClicked(): void;
|
|
11
13
|
fullscreenClicked(): void;
|
|
12
14
|
normalscreenClicked(): void;
|
|
13
15
|
closeClicked(): void;
|
|
14
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPopupControlButtonsComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPopupControlButtonsComponent, "dbx-popup-control-buttons", never, {}, {}, never, never,
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPopupControlButtonsComponent, "dbx-popup-control-buttons", never, {}, {}, never, never, true, never>;
|
|
16
18
|
}
|
|
@@ -3,7 +3,7 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
* Popup Controls
|
|
4
4
|
*/
|
|
5
5
|
export declare class DbxPopupControlsComponent {
|
|
6
|
-
header
|
|
6
|
+
readonly header: import("@angular/core").InputSignal<string | undefined>;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPopupControlsComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPopupControlsComponent, "dbx-popup-controls", never, { "header": { "alias": "header"; "required": false; }; }, {}, never, never,
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPopupControlsComponent, "dbx-popup-controls", never, { "header": { "alias": "header"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9
9
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
/**
|
|
4
4
|
* Used for coordinating popups and closing/replacing existing ones when a new popup of the same name appears.
|
|
@@ -8,8 +8,9 @@ export declare class DbxPopupCoordinatorComponent implements OnInit, OnDestroy {
|
|
|
8
8
|
private readonly _popup;
|
|
9
9
|
readonly isPopupForKey$: import("rxjs").Observable<boolean>;
|
|
10
10
|
readonly show$: import("rxjs").Observable<boolean>;
|
|
11
|
+
readonly showSignal: import("@angular/core").Signal<boolean | undefined>;
|
|
11
12
|
ngOnInit(): void;
|
|
12
13
|
ngOnDestroy(): void;
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPopupCoordinatorComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPopupCoordinatorComponent, "dbx-popup-coordinator", never, {}, {}, never, ["*"],
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPopupCoordinatorComponent, "dbx-popup-coordinator", never, {}, {}, never, ["*"], true, never>;
|
|
15
16
|
}
|
|
@@ -5,7 +5,7 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
* Used for coordinating popups and closing/replacing existing ones when a new popup of the same name appears.
|
|
6
6
|
*/
|
|
7
7
|
export declare class DbxPopupCoordinatorService implements OnDestroy {
|
|
8
|
-
private _popups;
|
|
8
|
+
private readonly _popups;
|
|
9
9
|
readonly popups$: import("rxjs").Observable<Map<string, DbxPopupController<unknown, unknown>>>;
|
|
10
10
|
ngOnDestroy(): void;
|
|
11
11
|
get popups(): Map<DbxPopupKey, DbxPopupController>;
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import { type Maybe } from '@dereekb/util';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
export type DbxPopupKey = string;
|
|
4
|
-
export declare
|
|
5
|
-
NORMAL
|
|
6
|
-
MINIMIZED
|
|
7
|
-
FULLSCREEN
|
|
8
|
-
}
|
|
4
|
+
export declare const DbxPopupWindowState: {
|
|
5
|
+
readonly NORMAL: "normal";
|
|
6
|
+
readonly MINIMIZED: "minimized";
|
|
7
|
+
readonly FULLSCREEN: "fullscreen";
|
|
8
|
+
};
|
|
9
|
+
export type DbxPopupWindowStateType = (typeof DbxPopupWindowState)[keyof typeof DbxPopupWindowState];
|
|
9
10
|
export declare abstract class DbxPopupController<O = unknown, I = unknown> {
|
|
10
11
|
abstract readonly key: DbxPopupKey;
|
|
11
12
|
abstract readonly data?: Maybe<I>;
|
|
12
|
-
abstract readonly windowState$: Observable<
|
|
13
|
+
abstract readonly windowState$: Observable<DbxPopupWindowStateType>;
|
|
13
14
|
abstract readonly closing$: Observable<boolean>;
|
|
14
15
|
/**
|
|
15
16
|
* Signals for the popup to close.
|
|
@@ -4,17 +4,8 @@ import * as i2 from "./popup.coordinator.component";
|
|
|
4
4
|
import * as i3 from "./popup.content.component";
|
|
5
5
|
import * as i4 from "./popup.controls.component";
|
|
6
6
|
import * as i5 from "./popup.controls.buttons.component";
|
|
7
|
-
import * as i6 from "@angular/common";
|
|
8
|
-
import * as i7 from "@angular/material/icon";
|
|
9
|
-
import * as i8 from "@angular/material/button";
|
|
10
|
-
import * as i9 from "../../button/button.module";
|
|
11
|
-
import * as i10 from "../../router/layout/anchor/anchor.module";
|
|
12
|
-
import * as i11 from "../../action/action.module";
|
|
13
|
-
import * as i12 from "../../layout/style/style.layout.module";
|
|
14
|
-
import * as i13 from "@dereekb/dbx-core";
|
|
15
|
-
import * as i14 from "ng-overlay-container";
|
|
16
7
|
export declare class DbxPopupInteractionModule {
|
|
17
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPopupInteractionModule, never>;
|
|
18
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxPopupInteractionModule, [typeof i1.DbxPopupComponent, typeof i2.DbxPopupCoordinatorComponent, typeof i3.DbxPopupContentComponent, typeof i4.DbxPopupControlsComponent, typeof i5.DbxPopupControlButtonsComponent], [typeof
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxPopupInteractionModule, never, [typeof i1.DbxPopupComponent, typeof i2.DbxPopupCoordinatorComponent, typeof i3.DbxPopupContentComponent, typeof i4.DbxPopupControlsComponent, typeof i5.DbxPopupControlButtonsComponent], [typeof i1.DbxPopupComponent, typeof i2.DbxPopupCoordinatorComponent, typeof i3.DbxPopupContentComponent, typeof i4.DbxPopupControlsComponent, typeof i5.DbxPopupControlButtonsComponent]>;
|
|
19
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<DbxPopupInteractionModule>;
|
|
20
11
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { GlobalPositionStrategy } from '@angular/cdk/overlay';
|
|
2
2
|
export type PopupPosition = 'center' | 'bottom_left' | 'bottom_right';
|
|
3
3
|
export interface PopupPositionOffset {
|
|
4
|
-
x?: string;
|
|
5
|
-
y?: string;
|
|
4
|
+
readonly x?: string;
|
|
5
|
+
readonly y?: string;
|
|
6
6
|
}
|
|
7
7
|
export declare class PopupGlobalPositionStrategy extends GlobalPositionStrategy {
|
|
8
8
|
private _position;
|
|
@@ -3,15 +3,15 @@ import { Injector } from '@angular/core';
|
|
|
3
3
|
import { NgPopoverRef } from 'ng-overlay-container';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export interface DbxPopupConfig<O, I, T> extends DbxPopupComponentConfig<O, I, T> {
|
|
6
|
-
injector?: Injector;
|
|
6
|
+
readonly injector?: Injector;
|
|
7
7
|
}
|
|
8
8
|
/**
|
|
9
9
|
* Used for displaying a popup.
|
|
10
10
|
*/
|
|
11
11
|
export declare class DbxPopupService {
|
|
12
|
-
private _overlay;
|
|
13
|
-
private _injector;
|
|
14
|
-
private _overlayContainerService;
|
|
12
|
+
private readonly _overlay;
|
|
13
|
+
private readonly _injector;
|
|
14
|
+
private readonly _overlayContainerService;
|
|
15
15
|
open<O, I, T>(config: DbxPopupConfig<O, I, T>): NgPopoverRef<DbxPopupComponentConfig<O, I, T>, O>;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPopupService, never>;
|
|
17
17
|
static ɵprov: i0.ɵɵInjectableDeclaration<DbxPopupService>;
|
|
@@ -17,7 +17,7 @@ $dbx-popup-controls-height: 33px;
|
|
|
17
17
|
padding: 40px;
|
|
18
18
|
max-width: $box-max-width;
|
|
19
19
|
|
|
20
|
-
&.
|
|
20
|
+
&.elevate {
|
|
21
21
|
@include theming.elevation(2);
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -31,9 +31,9 @@ $dbx-popup-controls-height: 33px;
|
|
|
31
31
|
|
|
32
32
|
@mixin theme($theme-config) {
|
|
33
33
|
@include theming.private-check-duplicate-theme-styles($theme-config, 'dbx-interaction-prompt') {
|
|
34
|
-
$color: theming.get-color-config($theme-config);
|
|
35
|
-
$density: theming.get-density-config($theme-config);
|
|
36
|
-
$typography: theming.get-typography-config($theme-config);
|
|
34
|
+
$color: theming.m2-get-color-config($theme-config);
|
|
35
|
+
$density: theming.m2-get-density-config($theme-config);
|
|
36
|
+
$typography: theming.m2-get-typography-config($theme-config);
|
|
37
37
|
|
|
38
38
|
@if $color !=null {
|
|
39
39
|
@include color($theme-config);
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class DbxPromptBoxDirective {
|
|
3
|
+
readonly elevate: import("@angular/core").InputSignal<boolean>;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPromptBoxDirective, never>;
|
|
5
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxPromptBoxDirective, "dbx-prompt-box, [dbxPromptBox]", never, { "elevate": { "alias": "elevate"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
6
|
+
}
|
|
@@ -12,5 +12,5 @@ export declare class DbxPromptConfirmButtonDirective implements OnInit, DbxButto
|
|
|
12
12
|
readonly interceptButtonClick: () => Observable<boolean>;
|
|
13
13
|
ngOnInit(): void;
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPromptConfirmButtonDirective, never>;
|
|
15
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxPromptConfirmButtonDirective, "[dbxPromptConfirmButton]", never, {}, {}, never, never,
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxPromptConfirmButtonDirective, "[dbxPromptConfirmButton]", never, {}, {}, never, never, true, never>;
|
|
16
16
|
}
|
|
@@ -4,8 +4,8 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
* Pre-configured prompt.
|
|
5
5
|
*/
|
|
6
6
|
export declare class DbxPromptComponent {
|
|
7
|
-
header
|
|
8
|
-
prompt
|
|
7
|
+
readonly header: import("@angular/core").InputSignal<Maybe<string>>;
|
|
8
|
+
readonly prompt: import("@angular/core").InputSignal<Maybe<string>>;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPromptComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPromptComponent, "dbx-prompt", never, { "header": { "alias": "header"; "required": false; }; "prompt": { "alias": "prompt"; "required": false; }; }, {}, never, ["[hero]", "*"],
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPromptComponent, "dbx-prompt", never, { "header": { "alias": "header"; "required": false; "isSignal": true; }; "prompt": { "alias": "prompt"; "required": false; "isSignal": true; }; }, {}, never, ["[hero]", "*"], true, never>;
|
|
11
11
|
}
|
|
@@ -1,34 +1,22 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { type Maybe } from '@dereekb/util';
|
|
1
|
+
import { Maybe } from '@dereekb/util';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare enum DbxPromptConfirmTypes {
|
|
5
|
-
/**
|
|
6
|
-
* Dialog is for yes/no.
|
|
7
|
-
*/
|
|
8
|
-
NORMAL = "normal",
|
|
9
|
-
/**
|
|
10
|
-
* Dialog is for deleting something.
|
|
11
|
-
*/
|
|
12
|
-
DELETE = "delete"
|
|
13
|
-
}
|
|
14
3
|
export interface DbxPromptConfirmConfig {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
cancelText?: string;
|
|
4
|
+
readonly title?: string;
|
|
5
|
+
readonly prompt?: string;
|
|
6
|
+
readonly confirmText?: string;
|
|
7
|
+
readonly cancelText?: string;
|
|
20
8
|
}
|
|
21
9
|
/**
|
|
22
10
|
* Displays a confirmation dialog.
|
|
23
11
|
*/
|
|
24
12
|
export declare class DbxPromptConfirmComponent {
|
|
25
|
-
|
|
26
|
-
readonly
|
|
27
|
-
readonly
|
|
28
|
-
|
|
29
|
-
|
|
13
|
+
readonly config: import("@angular/core").InputSignal<Maybe<DbxPromptConfirmConfig>>;
|
|
14
|
+
readonly confirmTextSignal: import("@angular/core").Signal<string>;
|
|
15
|
+
readonly cancelTextSignal: import("@angular/core").Signal<string>;
|
|
16
|
+
readonly confirm: import("@angular/core").OutputEmitterRef<void>;
|
|
17
|
+
readonly cancel: import("@angular/core").OutputEmitterRef<void>;
|
|
30
18
|
onConfirm(): void;
|
|
31
19
|
onCancel(): void;
|
|
32
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPromptConfirmComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPromptConfirmComponent, "dbx-prompt-confirm", never, { "config": { "alias": "config"; "required": false; }; }, { "confirm": "confirm"; "cancel": "cancel"; }, never, ["*"],
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPromptConfirmComponent, "dbx-prompt-confirm", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; }, { "confirm": "confirm"; "cancel": "cancel"; }, never, ["*"], true, never>;
|
|
34
22
|
}
|
|
@@ -2,12 +2,11 @@ import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
|
2
2
|
import { DbxInjectionComponentConfig } from '@dereekb/dbx-core';
|
|
3
3
|
import { OnInit } from '@angular/core';
|
|
4
4
|
import { AbstractDialogDirective } from '../dialog/abstract.dialog.directive';
|
|
5
|
-
import { DbxPromptConfirmConfig
|
|
5
|
+
import { DbxPromptConfirmConfig } from './prompt.confirm.component';
|
|
6
6
|
import { type Maybe } from '@dereekb/util';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare const DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG: {
|
|
9
9
|
title: string;
|
|
10
|
-
type: DbxPromptConfirmTypes;
|
|
11
10
|
};
|
|
12
11
|
export interface DbxPromptConfirmDialogConfig extends DbxPromptConfirmConfig {
|
|
13
12
|
component?: DbxInjectionComponentConfig;
|
|
@@ -19,5 +18,5 @@ export declare class DbxPromptConfirmDialogComponent extends AbstractDialogDirec
|
|
|
19
18
|
confirm(): void;
|
|
20
19
|
cancel(): void;
|
|
21
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPromptConfirmDialogComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPromptConfirmDialogComponent, "ng-component", never, {}, {}, never, never,
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPromptConfirmDialogComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
23
22
|
}
|
|
@@ -9,9 +9,12 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
*/
|
|
10
10
|
export declare abstract class AbstractPromptConfirmDirective implements DbxPromptConfirm {
|
|
11
11
|
protected readonly matDialog: MatDialog;
|
|
12
|
-
private
|
|
13
|
-
private
|
|
14
|
-
|
|
12
|
+
private _currentDialogRef?;
|
|
13
|
+
private _currentDialogPromise?;
|
|
14
|
+
/**
|
|
15
|
+
* Config used when showDialog() is called.
|
|
16
|
+
*/
|
|
17
|
+
config?: Maybe<DbxPromptConfirmConfig>;
|
|
15
18
|
showDialog(): Observable<boolean>;
|
|
16
19
|
protected _handleDialogResult(result: boolean): boolean;
|
|
17
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractPromptConfirmDirective, never>;
|
|
@@ -21,7 +24,8 @@ export declare abstract class AbstractPromptConfirmDirective implements DbxPromp
|
|
|
21
24
|
* Directive that shows a confirmation screen.
|
|
22
25
|
*/
|
|
23
26
|
export declare class DbxPromptConfirmDirective extends AbstractPromptConfirmDirective {
|
|
24
|
-
|
|
27
|
+
readonly dbxPromptConfirm: import("@angular/core").InputSignal<Maybe<DbxPromptConfirmConfig>>;
|
|
28
|
+
protected readonly _dbxPromptConfirmConfigEffect: import("@angular/core").EffectRef;
|
|
25
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPromptConfirmDirective, never>;
|
|
26
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxPromptConfirmDirective, "[dbxPromptConfirm]", never, { "
|
|
30
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxPromptConfirmDirective, "[dbxPromptConfirm]", never, { "dbxPromptConfirm": { "alias": "dbxPromptConfirm"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
27
31
|
}
|
|
@@ -1,22 +1,13 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./prompt.component";
|
|
3
|
-
import * as i2 from "./prompt.box.
|
|
3
|
+
import * as i2 from "./prompt.box.directive";
|
|
4
4
|
import * as i3 from "./prompt.page.component";
|
|
5
5
|
import * as i4 from "./prompt.confirm.component";
|
|
6
6
|
import * as i5 from "./prompt.button.confirm.directive";
|
|
7
7
|
import * as i6 from "./prompt.confirm.dialog.component";
|
|
8
8
|
import * as i7 from "./prompt.confirm.directive";
|
|
9
|
-
import * as i8 from "@angular/common";
|
|
10
|
-
import * as i9 from "@angular/material/dialog";
|
|
11
|
-
import * as i10 from "@angular/material/button";
|
|
12
|
-
import * as i11 from "../../layout/text/text.module";
|
|
13
|
-
import * as i12 from "../../button/button.module";
|
|
14
|
-
import * as i13 from "@dereekb/dbx-core";
|
|
15
|
-
import * as i14 from "../dialog/dialog.module";
|
|
16
|
-
import * as i15 from "../../layout/section/section.layout.module";
|
|
17
|
-
import * as i16 from "../../layout/content/content.layout.module";
|
|
18
9
|
export declare class DbxPromptModule {
|
|
19
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPromptModule, never>;
|
|
20
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxPromptModule, [typeof i1.DbxPromptComponent, typeof i2.
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxPromptModule, never, [typeof i1.DbxPromptComponent, typeof i2.DbxPromptBoxDirective, typeof i3.DbxPromptPageComponent, typeof i4.DbxPromptConfirmComponent, typeof i5.DbxPromptConfirmButtonDirective, typeof i6.DbxPromptConfirmDialogComponent, typeof i7.DbxPromptConfirmDirective], [typeof i1.DbxPromptComponent, typeof i2.DbxPromptBoxDirective, typeof i3.DbxPromptPageComponent, typeof i4.DbxPromptConfirmComponent, typeof i5.DbxPromptConfirmButtonDirective, typeof i6.DbxPromptConfirmDialogComponent, typeof i7.DbxPromptConfirmDirective]>;
|
|
21
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<DbxPromptModule>;
|
|
22
13
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class DbxPromptPageComponent {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxPromptPageComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPromptPageComponent, "dbx-prompt-page", never, {}, {}, never, ["*"],
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxPromptPageComponent, "dbx-prompt-page", never, {}, {}, never, ["*"], true, never>;
|
|
5
5
|
}
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
@mixin color($theme-config) {
|
|
14
|
-
$color-config: theming.get-color-config($theme-config);
|
|
14
|
+
$color-config: theming.m2-get-color-config($theme-config);
|
|
15
15
|
$background: map.get($color-config, 'background');
|
|
16
16
|
$foreground: map.get($color-config, 'foreground');
|
|
17
|
-
$cdk-background-color: theming.get-color-from-palette($background, 'background');
|
|
18
|
-
$cdk-text-color: theming.get-color-from-palette($foreground, 'text');
|
|
17
|
+
$cdk-background-color: theming.m2-get-color-from-palette($background, 'background');
|
|
18
|
+
$cdk-text-color: theming.m2-get-color-from-palette($foreground, 'text');
|
|
19
19
|
$cdk-border-color: color.adjust(
|
|
20
20
|
$color: $cdk-text-color,
|
|
21
21
|
$alpha: -0.9
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
|
|
35
35
|
@mixin theme($theme-config) {
|
|
36
36
|
@include theming.private-check-duplicate-theme-styles($theme-config, 'dbx-interaction-style') {
|
|
37
|
-
$color: theming.get-color-config($theme-config);
|
|
38
|
-
$density: theming.get-density-config($theme-config);
|
|
39
|
-
$typography: theming.get-typography-config($theme-config);
|
|
37
|
+
$color: theming.m2-get-color-config($theme-config);
|
|
38
|
+
$density: theming.m2-get-density-config($theme-config);
|
|
39
|
+
$typography: theming.m2-get-typography-config($theme-config);
|
|
40
40
|
|
|
41
41
|
@if $color !=null {
|
|
42
42
|
@include color($theme-config);
|
|
@@ -8,5 +8,5 @@ export declare class DbxWindowKeyDownListenerDirective implements OnDestroy {
|
|
|
8
8
|
ngOnDestroy(): void;
|
|
9
9
|
handleKeyboardEvent(event: KeyboardEvent): void;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxWindowKeyDownListenerDirective, never>;
|
|
11
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxWindowKeyDownListenerDirective, "[dbxWindowKeyDownListener]", never, { "appWindowKeyDownEnabled": { "alias": "appWindowKeyDownEnabled"; "required": false; }; "appWindowKeyDownFilter": { "alias": "appWindowKeyDownFilter"; "required": false; }; }, { "keyPressed": "dbxWindowKeyDownListener"; }, never, never,
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxWindowKeyDownListenerDirective, "[dbxWindowKeyDownListener]", never, { "appWindowKeyDownEnabled": { "alias": "appWindowKeyDownEnabled"; "required": false; }; "appWindowKeyDownFilter": { "alias": "appWindowKeyDownFilter"; "required": false; }; }, { "keyPressed": "dbxWindowKeyDownListener"; }, never, never, true, never>;
|
|
12
12
|
}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./keydown.listener.directive";
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* @deprecated DbxWindowKeyDownListenerDirective is now standalone. Import that instead.
|
|
5
|
+
*/
|
|
4
6
|
export declare class DbxKeypressModule {
|
|
5
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxKeypressModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxKeypressModule, [typeof i1.DbxWindowKeyDownListenerDirective], [typeof
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxKeypressModule, never, [typeof i1.DbxWindowKeyDownListenerDirective], [typeof i1.DbxWindowKeyDownListenerDirective]>;
|
|
7
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<DbxKeypressModule>;
|
|
8
10
|
}
|
package/lib/layout/bar/_bar.scss
CHANGED
|
@@ -10,10 +10,6 @@ $bar-fixed-height: 40px;
|
|
|
10
10
|
|
|
11
11
|
// MARK: Mixin
|
|
12
12
|
@mixin core() {
|
|
13
|
-
.dbx-banner {
|
|
14
|
-
@include theming.elevation(3);
|
|
15
|
-
}
|
|
16
|
-
|
|
17
13
|
.dbx-pagebar.mat-toolbar {
|
|
18
14
|
height: $pagebar-height;
|
|
19
15
|
}
|
|
@@ -41,13 +37,13 @@ $bar-fixed-height: 40px;
|
|
|
41
37
|
}
|
|
42
38
|
|
|
43
39
|
@mixin color($theme-config) {
|
|
44
|
-
$color-config: theming.get-color-config($theme-config);
|
|
40
|
+
$color-config: theming.m2-get-color-config($theme-config);
|
|
45
41
|
$background: map.get($color-config, 'background');
|
|
46
42
|
$primary: map.get($color-config, 'primary');
|
|
47
43
|
$accent: map.get($color-config, 'accent');
|
|
48
44
|
|
|
49
|
-
$dbx-bar-bg-color: theming.get-color-from-palette($background, 'app-bar');
|
|
50
|
-
$dbx-bar-color: theming.get-color-from-palette($background, 'contrast');
|
|
45
|
+
$dbx-bar-bg-color: theming.m2-get-color-from-palette($background, 'app-bar');
|
|
46
|
+
$dbx-bar-color: theming.m2-get-color-from-palette($background, 'contrast');
|
|
51
47
|
|
|
52
48
|
.dbx-pagebar .mat-toolbar {
|
|
53
49
|
// todo?
|
|
@@ -61,18 +57,18 @@ $bar-fixed-height: 40px;
|
|
|
61
57
|
}
|
|
62
58
|
|
|
63
59
|
@mixin typography($theme-config-or-typography-config) {
|
|
64
|
-
$typography-config: theming.get-typography-config($theme-config-or-typography-config);
|
|
60
|
+
$typography-config: theming.m2-get-typography-config($theme-config-or-typography-config);
|
|
65
61
|
|
|
66
62
|
.dbx-bar {
|
|
67
|
-
font-size: theming.font-size($typography-config, 'caption');
|
|
63
|
+
font-size: theming.m2-font-size($typography-config, 'caption');
|
|
68
64
|
}
|
|
69
65
|
}
|
|
70
66
|
|
|
71
67
|
@mixin theme($theme-config) {
|
|
72
68
|
@include theming.private-check-duplicate-theme-styles($theme-config, 'dbx-layout-bar') {
|
|
73
|
-
$color: theming.get-color-config($theme-config);
|
|
74
|
-
$density: theming.get-density-config($theme-config);
|
|
75
|
-
$typography: theming.get-typography-config($theme-config);
|
|
69
|
+
$color: theming.m2-get-color-config($theme-config);
|
|
70
|
+
$density: theming.m2-get-density-config($theme-config);
|
|
71
|
+
$typography: theming.m2-get-typography-config($theme-config);
|
|
76
72
|
|
|
77
73
|
@if $color !=null {
|
|
78
74
|
@include color($theme-config);
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { type Maybe } from '@dereekb/util';
|
|
2
|
-
import { DbxBarColor } from './bar';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
/**
|
|
5
4
|
* Acts as a wrapper for content distributed along a bar.
|
|
6
5
|
*/
|
|
7
6
|
export declare class DbxBarDirective {
|
|
8
|
-
color
|
|
7
|
+
readonly color: import("@angular/core").InputSignal<Maybe<import("@dereekb/dbx-web").DbxThemeColor>>;
|
|
8
|
+
readonly cssClassSignal: import("@angular/core").Signal<string>;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxBarDirective, never>;
|
|
10
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxBarDirective, "dbx-bar,[dbxBar]", never, { "color": { "alias": "color"; "required": false; }; }, {}, never, never,
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxBarDirective, "dbx-bar,[dbxBar]", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
11
11
|
}
|
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import { type Maybe } from '@dereekb/util';
|
|
2
|
-
import { DbxBarColor } from './bar';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
/**
|
|
5
4
|
* Acts as a divider between content and centers a label within a background.
|
|
6
5
|
*/
|
|
7
6
|
export declare class DbxBarHeaderComponent {
|
|
8
|
-
text
|
|
9
|
-
icon
|
|
10
|
-
color
|
|
7
|
+
readonly text: import("@angular/core").InputSignal<Maybe<string>>;
|
|
8
|
+
readonly icon: import("@angular/core").InputSignal<Maybe<string>>;
|
|
9
|
+
readonly color: import("@angular/core").InputSignal<Maybe<import("@dereekb/dbx-web").DbxThemeColor>>;
|
|
11
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxBarHeaderComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxBarHeaderComponent, "dbx-bar-header", never, { "text": { "alias": "text"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, ["*"],
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxBarHeaderComponent, "dbx-bar-header", never, { "text": { "alias": "text"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
13
12
|
}
|