@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
|
@@ -1,4 +1,51 @@
|
|
|
1
|
-
import { CssClass, type Maybe } from '@dereekb/util';
|
|
1
|
+
import { CharacterPrefixSuffixCleanString, CssClass, DashPrefixString, type Maybe } from '@dereekb/util';
|
|
2
|
+
/**
|
|
3
|
+
* An kebab-case style name that uniquely identifies a styling for an app.
|
|
4
|
+
*
|
|
5
|
+
* Examples: 'doc-app'
|
|
6
|
+
*/
|
|
7
|
+
export type DbxStyleName = string;
|
|
8
|
+
/**
|
|
9
|
+
* A suffix that can be added to a style class to differentiate a separate mode.
|
|
10
|
+
*
|
|
11
|
+
* Dark mode is an example, with the suffix 'dark' or '-dark'. The suffix does not have to
|
|
12
|
+
*/
|
|
13
|
+
export type DbxStyleClassSuffix = DbxStyleClassCleanSuffix | DbxStyleClassDashSuffix;
|
|
14
|
+
/**
|
|
15
|
+
* A DbxStyleClassSuffix that does not start with a dash.
|
|
16
|
+
*
|
|
17
|
+
* Dark mode is an example, with the suffix 'dark'.
|
|
18
|
+
*/
|
|
19
|
+
export type DbxStyleClassCleanSuffix = CharacterPrefixSuffixCleanString;
|
|
20
|
+
/**
|
|
21
|
+
* A DbxStyleClassSuffix that starts with a dash.
|
|
22
|
+
*
|
|
23
|
+
* Dark mode is an example, with the suffix '-dark'.
|
|
24
|
+
*/
|
|
25
|
+
export type DbxStyleClassDashSuffix = DashPrefixString;
|
|
26
|
+
export declare const dbxStyleClassCleanSuffix: {
|
|
27
|
+
<T extends string>(input: T | `-${T}` | `${T}`): T;
|
|
28
|
+
(input: string): string;
|
|
29
|
+
};
|
|
30
|
+
/**
|
|
31
|
+
* A style class that is a combination of a style name and a suffix.
|
|
32
|
+
*
|
|
33
|
+
* Examples:
|
|
34
|
+
* - 'doc-app': the default style of an app
|
|
35
|
+
* - 'doc-app-dark': the dark mode style of an app
|
|
36
|
+
*/
|
|
37
|
+
export type DbxStyleClass = string | `${DbxStyleName}${DbxStyleClassSuffix}`;
|
|
38
|
+
export declare const DBX_DARK_STYLE_CLASS_SUFFIX: DbxStyleClassSuffix;
|
|
39
|
+
export interface DbxStyleConfig {
|
|
40
|
+
/**
|
|
41
|
+
* Root style class name.
|
|
42
|
+
*/
|
|
43
|
+
readonly style: DbxStyleClass;
|
|
44
|
+
/**
|
|
45
|
+
* Set of all allowed DbxStyleClassSuffixes for the DbxStyleClass in the config, if applicable.
|
|
46
|
+
*/
|
|
47
|
+
readonly suffixes?: Set<DbxStyleClassSuffix>;
|
|
48
|
+
}
|
|
2
49
|
export type DbxThemeColorMain = 'primary' | 'accent' | 'warn';
|
|
3
50
|
export type DbxThemeColorExtra = 'notice' | 'ok' | 'success' | 'grey';
|
|
4
51
|
export type DbxThemeColorExtraSecondary = 'background' | 'disabled';
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { AbstractSubscriptionDirective } from '@dereekb/dbx-core';
|
|
3
|
+
import { Maybe } from '@dereekb/util';
|
|
2
4
|
import * as i0 from "@angular/core";
|
|
3
5
|
/**
|
|
4
6
|
* Used to retrieve the current app styling from the DbxStyleService.
|
|
5
7
|
*/
|
|
6
|
-
export declare class DbxStyleDirective extends AbstractSubscriptionDirective {
|
|
8
|
+
export declare class DbxStyleDirective extends AbstractSubscriptionDirective implements OnInit {
|
|
7
9
|
private readonly _styleService;
|
|
8
|
-
|
|
9
|
-
cssClass: string;
|
|
10
|
-
constructor();
|
|
10
|
+
readonly styleClassNameSignal: import("@angular/core").WritableSignal<Maybe<string>>;
|
|
11
11
|
ngOnInit(): void;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxStyleDirective, never>;
|
|
13
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxStyleDirective, "dbx-style, [dbxStyle], .dbx-style", never, {}, {}, never, never,
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxStyleDirective, "dbx-style, [dbxStyle], .dbx-style", never, {}, {}, never, never, true, never>;
|
|
14
14
|
}
|
|
@@ -4,9 +4,8 @@ import * as i2 from "./spacer.directive";
|
|
|
4
4
|
import * as i3 from "./style.directive";
|
|
5
5
|
import * as i4 from "./style.set.directive";
|
|
6
6
|
import * as i5 from "./style.body.directive";
|
|
7
|
-
import * as i6 from "@angular/common";
|
|
8
7
|
export declare class DbxStyleLayoutModule {
|
|
9
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxStyleLayoutModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxStyleLayoutModule, [typeof i1.DbxColorDirective, typeof i2.DbxSpacerDirective, typeof i3.DbxStyleDirective, typeof i4.DbxSetStyleDirective, typeof i5.DbxStyleBodyDirective], [typeof
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxStyleLayoutModule, never, [typeof i1.DbxColorDirective, typeof i2.DbxSpacerDirective, typeof i3.DbxStyleDirective, typeof i4.DbxSetStyleDirective, typeof i5.DbxStyleBodyDirective], [typeof i1.DbxColorDirective, typeof i2.DbxSpacerDirective, typeof i3.DbxStyleDirective, typeof i4.DbxSetStyleDirective, typeof i5.DbxStyleBodyDirective]>;
|
|
11
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<DbxStyleLayoutModule>;
|
|
12
11
|
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EnvironmentProviders } from '@angular/core';
|
|
2
|
+
import { DbxStyleConfig } from './style';
|
|
3
|
+
/**
|
|
4
|
+
* Configuration for provideDbxStyleService().
|
|
5
|
+
*/
|
|
6
|
+
export interface ProvideDbxStyleServiceConfig {
|
|
7
|
+
/**
|
|
8
|
+
* Default style configuration, if applicable.
|
|
9
|
+
*
|
|
10
|
+
* If null, the DbxStyleService will not have a default style
|
|
11
|
+
*/
|
|
12
|
+
readonly dbxStyleConfig: DbxStyleConfig | null;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Provides EnvironmentalProviders for a DbxStyleService and the default config.
|
|
16
|
+
*
|
|
17
|
+
* @returns
|
|
18
|
+
*/
|
|
19
|
+
export declare function provideDbxStyleService(config: ProvideDbxStyleServiceConfig): EnvironmentProviders;
|
|
@@ -1,34 +1,44 @@
|
|
|
1
1
|
import { Destroyable, type Maybe } from '@dereekb/util';
|
|
2
|
+
import { ObservableOrValue } from '@dereekb/rxjs';
|
|
2
3
|
import { Observable } from 'rxjs';
|
|
3
4
|
import { InjectionToken } from '@angular/core';
|
|
5
|
+
import { DbxStyleClass, DbxStyleClassCleanSuffix, DbxStyleClassSuffix, DbxStyleConfig } from './style';
|
|
4
6
|
import * as i0 from "@angular/core";
|
|
5
7
|
export declare const DBX_STYLE_DEFAULT_CONFIG_TOKEN: InjectionToken<unknown>;
|
|
6
|
-
export interface DbxStyleConfig {
|
|
7
|
-
/**
|
|
8
|
-
* Root style name.
|
|
9
|
-
*/
|
|
10
|
-
style: string;
|
|
11
|
-
/**
|
|
12
|
-
* Suffixes available to this configuration.
|
|
13
|
-
*/
|
|
14
|
-
suffixes?: Set<string>;
|
|
15
|
-
}
|
|
16
8
|
/**
|
|
17
9
|
* Used for managing styles within an app.
|
|
18
10
|
*/
|
|
19
11
|
export declare class DbxStyleService implements Destroyable {
|
|
20
12
|
private readonly _defaultConfig;
|
|
21
13
|
private readonly _config;
|
|
22
|
-
private readonly
|
|
14
|
+
private readonly _styleClassSuffix;
|
|
23
15
|
readonly config$: Observable<DbxStyleConfig>;
|
|
24
|
-
readonly
|
|
25
|
-
readonly
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
16
|
+
readonly styleClassSuffix$: Observable<Maybe<string>>;
|
|
17
|
+
readonly styleClassName$: Observable<string>;
|
|
18
|
+
/**
|
|
19
|
+
* Returns the style class given the input configuration.
|
|
20
|
+
*
|
|
21
|
+
* @param configObs Observable containing the configuration to use.
|
|
22
|
+
* @returns DbxStyleClass
|
|
23
|
+
*/
|
|
24
|
+
getStyleClassWithConfig(configObs: Observable<DbxStyleConfig>): Observable<DbxStyleClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Toggles the dark suffix on/off for the service.
|
|
27
|
+
*
|
|
28
|
+
* @param toggle Whether to toggle the suffix on or off
|
|
29
|
+
*/
|
|
30
|
+
toggleDarkSuffix(toggle?: Maybe<boolean>): void;
|
|
31
|
+
/**
|
|
32
|
+
* Toggles the arbitrary suffix on/off for the service.
|
|
33
|
+
*
|
|
34
|
+
* @param suffix The suffix to toggle
|
|
35
|
+
* @param toggle Whether to toggle the suffix on or off
|
|
36
|
+
*/
|
|
37
|
+
toggleSuffix(suffix: DbxStyleClassSuffix, toggle?: Maybe<boolean>): void;
|
|
38
|
+
get currentStyleClassSuffix(): Maybe<DbxStyleClassCleanSuffix>;
|
|
39
|
+
setStyleClassSuffix(suffix: Maybe<DbxStyleClassSuffix>): void;
|
|
30
40
|
setDefaultConfig(defaultConfig: DbxStyleConfig): void;
|
|
31
|
-
setConfig(config:
|
|
41
|
+
setConfig(config: ObservableOrValue<DbxStyleConfig>): void;
|
|
32
42
|
destroy(): void;
|
|
33
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxStyleService, never>;
|
|
34
44
|
static ɵprov: i0.ɵɵInjectableDeclaration<DbxStyleService>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
+
import { AbstractSubscriptionDirective } from '@dereekb/dbx-core';
|
|
1
2
|
import { type Maybe } from '@dereekb/util';
|
|
2
3
|
import { Observable } from 'rxjs';
|
|
3
|
-
import { OnDestroy,
|
|
4
|
-
import { DbxStyleConfig,
|
|
5
|
-
import { AbstractSubscriptionDirective } from '@dereekb/dbx-core';
|
|
4
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
5
|
+
import { DbxStyleConfig, DbxStyleClass } from './style';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
/**
|
|
8
8
|
* Used to denote which app style to use for all children below this.
|
|
@@ -10,22 +10,24 @@ import * as i0 from "@angular/core";
|
|
|
10
10
|
* Will update the parent DbxStyleService.
|
|
11
11
|
*/
|
|
12
12
|
export declare class DbxSetStyleDirective extends AbstractSubscriptionDirective implements OnDestroy, OnInit {
|
|
13
|
-
private readonly
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
private readonly _styleService;
|
|
14
|
+
/**
|
|
15
|
+
* The input DbxStyleName to style the host element with.
|
|
16
|
+
*/
|
|
17
|
+
readonly dbxSetStyle: import("@angular/core").InputSignal<string | undefined>;
|
|
18
|
+
/**
|
|
19
|
+
* The input suffixes to allow to be applied to the
|
|
20
|
+
*/
|
|
21
|
+
readonly suffixes: import("@angular/core").InputSignal<Maybe<string>>;
|
|
22
|
+
/**
|
|
23
|
+
* The output style class to apply to the host element.
|
|
24
|
+
*/
|
|
25
|
+
readonly outputStyleClassSignal: import("@angular/core").WritableSignal<string>;
|
|
17
26
|
readonly style$: Observable<string>;
|
|
18
27
|
readonly suffixes$: Observable<Set<string>>;
|
|
19
28
|
readonly config$: Observable<DbxStyleConfig>;
|
|
20
|
-
readonly
|
|
21
|
-
outputStyle: string;
|
|
22
|
-
constructor();
|
|
29
|
+
readonly styleClass$: Observable<DbxStyleClass>;
|
|
23
30
|
ngOnInit(): void;
|
|
24
|
-
ngOnDestroy(): void;
|
|
25
|
-
get style(): string;
|
|
26
|
-
set style(style: string);
|
|
27
|
-
get suffixes(): Maybe<string>;
|
|
28
|
-
set suffixes(suffixes: Maybe<string>);
|
|
29
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxSetStyleDirective, never>;
|
|
30
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxSetStyleDirective, "[dbxSetStyle]", never, { "
|
|
32
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxSetStyleDirective, "[dbxSetStyle]", never, { "dbxSetStyle": { "alias": "dbxSetStyle"; "required": false; "isSignal": true; }; "suffixes": { "alias": "suffixes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
31
33
|
}
|
|
@@ -174,14 +174,14 @@ $dbx-detail-block-content-offset: 30px;
|
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
@mixin color($theme-config) {
|
|
177
|
-
$color-config: theming.get-color-config($theme-config);
|
|
177
|
+
$color-config: theming.m2-get-color-config($theme-config);
|
|
178
178
|
$accent: map.get($color-config, 'accent');
|
|
179
179
|
$warn: map.get($color-config, 'warn');
|
|
180
180
|
$background: map.get($color-config, 'background');
|
|
181
181
|
$foreground: map.get($color-config, 'foreground');
|
|
182
182
|
|
|
183
|
-
$text-color: theming.get-color-from-palette($foreground, 'text');
|
|
184
|
-
$border-color: theming.get-color-from-palette($background, 'background');
|
|
183
|
+
$text-color: theming.m2-get-color-from-palette($foreground, 'text');
|
|
184
|
+
$border-color: theming.m2-get-color-from-palette($background, 'background');
|
|
185
185
|
$outlined-text-color: transparentize($border-color, 0.6);
|
|
186
186
|
|
|
187
187
|
$is-dark: map.get($theme-config, is-dark);
|
|
@@ -222,12 +222,12 @@ $dbx-detail-block-content-offset: 30px;
|
|
|
222
222
|
}
|
|
223
223
|
|
|
224
224
|
@mixin typography($theme-config-or-typography-config) {
|
|
225
|
-
$typography-config: theming.get-typography-config($theme-config-or-typography-config);
|
|
225
|
+
$typography-config: theming.m2-get-typography-config($theme-config-or-typography-config);
|
|
226
226
|
|
|
227
227
|
.dbx-label,
|
|
228
228
|
.dbx-sublabel,
|
|
229
229
|
.dbx-chip-sublabel {
|
|
230
|
-
font-size: theming.font-size($typography-config, 'caption');
|
|
230
|
+
font-size: theming.m2-font-size($typography-config, 'caption');
|
|
231
231
|
}
|
|
232
232
|
|
|
233
233
|
.dbx-chip-sublabel {
|
|
@@ -237,9 +237,9 @@ $dbx-detail-block-content-offset: 30px;
|
|
|
237
237
|
|
|
238
238
|
@mixin theme($theme-config) {
|
|
239
239
|
@include theming.private-check-duplicate-theme-styles($theme-config, 'dbx-text') {
|
|
240
|
-
$color: theming.get-color-config($theme-config);
|
|
241
|
-
$density: theming.get-density-config($theme-config);
|
|
242
|
-
$typography: theming.get-typography-config($theme-config);
|
|
240
|
+
$color: theming.m2-get-color-config($theme-config);
|
|
241
|
+
$density: theming.m2-get-density-config($theme-config);
|
|
242
|
+
$typography: theming.m2-get-typography-config($theme-config);
|
|
243
243
|
|
|
244
244
|
@if $color !=null {
|
|
245
245
|
@include color($theme-config);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Maybe, UnitedStatesAddressWithContact } from '@dereekb/util';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class DbxUnitedStatesAddressComponent {
|
|
4
|
-
address
|
|
4
|
+
address?: Maybe<Partial<UnitedStatesAddressWithContact>>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxUnitedStatesAddressComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxUnitedStatesAddressComponent, "dbx-us-address", never, { "address": { "alias": "address"; "required": false; }; }, {}, never, never,
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxUnitedStatesAddressComponent, "dbx-us-address", never, { "address": { "alias": "address"; "required": false; }; }, {}, never, never, true, never>;
|
|
7
7
|
}
|
|
@@ -7,5 +7,5 @@ export declare class DbxDetailBlockComponent {
|
|
|
7
7
|
icon?: Maybe<string>;
|
|
8
8
|
header?: Maybe<string>;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxDetailBlockComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxDetailBlockComponent, "dbx-detail-block", never, { "icon": { "alias": "icon"; "required": false; }; "header": { "alias": "header"; "required": false; }; }, {}, never, ["[header]", "*"],
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxDetailBlockComponent, "dbx-detail-block", never, { "icon": { "alias": "icon"; "required": false; }; "header": { "alias": "header"; "required": false; }; }, {}, never, ["[header]", "*"], true, never>;
|
|
11
11
|
}
|
|
@@ -4,5 +4,5 @@ export declare class DbxDetailBlockHeaderComponent {
|
|
|
4
4
|
icon?: Maybe<string>;
|
|
5
5
|
header?: Maybe<string>;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxDetailBlockHeaderComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxDetailBlockHeaderComponent, "dbx-detail-block-header", never, { "icon": { "alias": "icon"; "required": false; }; "header": { "alias": "header"; "required": false; }; }, {}, never, ["*"],
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxDetailBlockHeaderComponent, "dbx-detail-block-header", never, { "icon": { "alias": "icon"; "required": false; }; "header": { "alias": "header"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
8
8
|
}
|
|
@@ -4,5 +4,5 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
*/
|
|
5
5
|
export declare class DbxIconSpacerDirective {
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxIconSpacerDirective, never>;
|
|
7
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxIconSpacerDirective, "dbx-icon-spacer,[dbxIconSpacer]", never, {}, {}, never, never,
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxIconSpacerDirective, "dbx-icon-spacer,[dbxIconSpacer]", never, {}, {}, never, never, true, never>;
|
|
8
8
|
}
|
|
@@ -6,5 +6,5 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
export declare class DbxLabelBlockComponent {
|
|
7
7
|
header?: Maybe<string>;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxLabelBlockComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxLabelBlockComponent, "dbx-label-block", never, { "header": { "alias": "header"; "required": false; }; }, {}, never, ["*"],
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxLabelBlockComponent, "dbx-label-block", never, { "header": { "alias": "header"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
10
10
|
}
|
|
@@ -6,12 +6,13 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
*/
|
|
7
7
|
export declare class DbxLinkifyComponent implements OnDestroy {
|
|
8
8
|
private readonly sanitizer;
|
|
9
|
-
private _text;
|
|
9
|
+
private readonly _text;
|
|
10
10
|
readonly linkifiedText$: import("rxjs").Observable<string | undefined>;
|
|
11
11
|
readonly linkifiedBody$: import("rxjs").Observable<import("@angular/platform-browser").SafeHtml | undefined>;
|
|
12
|
+
readonly linkifiedBodySignal: import("@angular/core").Signal<import("@angular/platform-browser").SafeHtml | undefined>;
|
|
12
13
|
ngOnDestroy(): void;
|
|
13
14
|
get text(): Maybe<string>;
|
|
14
15
|
set text(text: Maybe<string>);
|
|
15
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxLinkifyComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxLinkifyComponent, "dbx-linkify", never, { "text": { "alias": "text"; "required": false; }; }, {}, never, never,
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxLinkifyComponent, "dbx-linkify", never, { "text": { "alias": "text"; "required": false; }; }, {}, never, never, true, never>;
|
|
17
18
|
}
|
|
@@ -5,5 +5,5 @@ export declare class DbxChipDirective {
|
|
|
5
5
|
block?: Maybe<boolean>;
|
|
6
6
|
get style(): string;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxChipDirective, never>;
|
|
8
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxChipDirective, "dbx-chip", never, { "small": { "alias": "small"; "required": false; }; "block": { "alias": "block"; "required": false; }; }, {}, never, never,
|
|
8
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxChipDirective, "dbx-chip", never, { "small": { "alias": "small"; "required": false; }; "block": { "alias": "block"; "required": false; }; }, {}, never, never, true, never>;
|
|
9
9
|
}
|
|
@@ -8,9 +8,8 @@ export interface TextChip<T = unknown> {
|
|
|
8
8
|
data?: T;
|
|
9
9
|
}
|
|
10
10
|
export declare class DbxTextChipsComponent<T = unknown> {
|
|
11
|
-
defaultSelection
|
|
12
|
-
chips
|
|
13
|
-
trackChipByText(index: number, chip: TextChip<T>): string;
|
|
11
|
+
readonly defaultSelection: import("@angular/core").InputSignal<Maybe<boolean>>;
|
|
12
|
+
readonly chips: import("@angular/core").InputSignal<Maybe<TextChip<T>[]>>;
|
|
14
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxTextChipsComponent<any>, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxTextChipsComponent<any>, "dbx-text-chips", never, { "defaultSelection": { "alias": "defaultSelection"; "required": false; }; "chips": { "alias": "chips"; "required": false; }; }, {}, never, never,
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxTextChipsComponent<any>, "dbx-text-chips", never, { "defaultSelection": { "alias": "defaultSelection"; "required": false; "isSignal": true; }; "chips": { "alias": "chips"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
16
15
|
}
|
|
@@ -7,12 +7,8 @@ import * as i5 from "./label.block.component";
|
|
|
7
7
|
import * as i6 from "./linkify.component";
|
|
8
8
|
import * as i7 from "./text.chips.component";
|
|
9
9
|
import * as i8 from "./icon.spacer.component";
|
|
10
|
-
import * as i9 from "@angular/common";
|
|
11
|
-
import * as i10 from "@angular/material/chips";
|
|
12
|
-
import * as i11 from "@angular/material/tooltip";
|
|
13
|
-
import * as i12 from "@angular/material/icon";
|
|
14
10
|
export declare class DbxTextModule {
|
|
15
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxTextModule, never>;
|
|
16
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxTextModule, [typeof i1.DbxUnitedStatesAddressComponent, typeof i2.DbxChipDirective, typeof i3.DbxDetailBlockComponent, typeof i4.DbxDetailBlockHeaderComponent, typeof i5.DbxLabelBlockComponent, typeof i6.DbxLinkifyComponent, typeof i7.DbxTextChipsComponent, typeof i8.DbxIconSpacerDirective], [typeof
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxTextModule, never, [typeof i1.DbxUnitedStatesAddressComponent, typeof i2.DbxChipDirective, typeof i3.DbxDetailBlockComponent, typeof i4.DbxDetailBlockHeaderComponent, typeof i5.DbxLabelBlockComponent, typeof i6.DbxLinkifyComponent, typeof i7.DbxTextChipsComponent, typeof i8.DbxIconSpacerDirective], [typeof i1.DbxUnitedStatesAddressComponent, typeof i2.DbxChipDirective, typeof i3.DbxDetailBlockComponent, typeof i4.DbxDetailBlockHeaderComponent, typeof i5.DbxLabelBlockComponent, typeof i6.DbxLinkifyComponent, typeof i7.DbxTextChipsComponent, typeof i8.DbxIconSpacerDirective]>;
|
|
17
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<DbxTextModule>;
|
|
18
14
|
}
|
|
@@ -33,9 +33,9 @@ $linear-line-height: 4px;
|
|
|
33
33
|
|
|
34
34
|
@mixin theme($theme-config) {
|
|
35
35
|
@include theming.private-check-duplicate-theme-styles($theme-config, 'dbx-loading') {
|
|
36
|
-
$color: theming.get-color-config($theme-config);
|
|
37
|
-
$density: theming.get-density-config($theme-config);
|
|
38
|
-
$typography: theming.get-typography-config($theme-config);
|
|
36
|
+
$color: theming.m2-get-color-config($theme-config);
|
|
37
|
+
$density: theming.m2-get-density-config($theme-config);
|
|
38
|
+
$typography: theming.m2-get-typography-config($theme-config);
|
|
39
39
|
|
|
40
40
|
@if $color !=null {
|
|
41
41
|
@include color($theme-config);
|
|
@@ -1,46 +1,27 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ThemePalette } from '@angular/material/core';
|
|
3
|
-
import { ProgressBarMode } from '@angular/material/progress-bar';
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
4
2
|
import { ErrorInput, type Maybe } from '@dereekb/util';
|
|
5
|
-
import { ProgressSpinnerMode } from '@angular/material/progress-spinner';
|
|
6
|
-
import { DbxThemeColor } from '../layout/style/style';
|
|
7
3
|
import * as i0 from "@angular/core";
|
|
8
4
|
/**
|
|
9
5
|
* DbxBasicLoadingComponent loading state.
|
|
10
6
|
*/
|
|
11
|
-
export
|
|
12
|
-
NONE = -1,
|
|
13
|
-
LOADING = 0,
|
|
14
|
-
CONTENT = 1,
|
|
15
|
-
ERROR = 2
|
|
16
|
-
}
|
|
7
|
+
export type LoadingComponentState = 'none' | 'loading' | 'content' | 'error';
|
|
17
8
|
/**
|
|
18
9
|
* Basic loading component.
|
|
19
10
|
*/
|
|
20
|
-
export declare class DbxBasicLoadingComponent
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
readonly
|
|
27
|
-
readonly
|
|
28
|
-
readonly
|
|
29
|
-
readonly
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
linear: Maybe<boolean>;
|
|
35
|
-
ngOnDestroy(): void;
|
|
36
|
-
get show(): boolean;
|
|
37
|
-
set show(show: Maybe<boolean>);
|
|
38
|
-
get loading(): Maybe<boolean>;
|
|
39
|
-
set loading(loading: Maybe<boolean>);
|
|
40
|
-
get error(): Maybe<ErrorInput>;
|
|
41
|
-
set error(error: Maybe<ErrorInput>);
|
|
42
|
-
set customErrorContent(customErrorContent: Maybe<ElementRef>);
|
|
43
|
-
set customLoadingContent(customLoadingContent: Maybe<ElementRef>);
|
|
11
|
+
export declare class DbxBasicLoadingComponent {
|
|
12
|
+
readonly customError: import("@angular/core").Signal<Maybe<ElementRef<any>>>;
|
|
13
|
+
readonly customLoading: import("@angular/core").Signal<Maybe<ElementRef<any>>>;
|
|
14
|
+
readonly diameter: import("@angular/core").InputSignal<Maybe<number>>;
|
|
15
|
+
readonly mode: import("@angular/core").InputSignal<"determinate" | "indeterminate" | "buffer" | "query">;
|
|
16
|
+
readonly color: import("@angular/core").InputSignal<"primary" | "accent" | "warn" | "notice" | "ok" | "success" | "grey" | "background" | "disabled" | undefined>;
|
|
17
|
+
readonly text: import("@angular/core").InputSignal<Maybe<string>>;
|
|
18
|
+
readonly linear: import("@angular/core").InputSignal<Maybe<boolean>>;
|
|
19
|
+
readonly show: import("@angular/core").InputSignal<Maybe<boolean>>;
|
|
20
|
+
readonly loading: import("@angular/core").InputSignal<Maybe<boolean>>;
|
|
21
|
+
readonly error: import("@angular/core").InputSignal<Maybe<ErrorInput>>;
|
|
22
|
+
readonly stateSignal: import("@angular/core").Signal<LoadingComponentState>;
|
|
23
|
+
readonly hasNoCustomErrorSignal: import("@angular/core").Signal<boolean>;
|
|
24
|
+
readonly hasNoCustomLoadingSignal: import("@angular/core").Signal<boolean>;
|
|
44
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxBasicLoadingComponent, never>;
|
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxBasicLoadingComponent, "dbx-basic-loading", never, { "diameter": { "alias": "diameter"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "color": { "alias": "color"; "required": false; }; "text": { "alias": "text"; "required": false; }; "linear": { "alias": "linear"; "required": false; }; "show": { "alias": "show"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "error": { "alias": "error"; "required": false; }; }, {}, never, ["*", "[loading]", "[error]", "[errorAction]"],
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxBasicLoadingComponent, "dbx-basic-loading", never, { "diameter": { "alias": "diameter"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "linear": { "alias": "linear"; "required": false; "isSignal": true; }; "show": { "alias": "show"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; }, {}, never, ["*", "[loading]", "[error]", "[errorAction]"], true, never>;
|
|
46
27
|
}
|
|
@@ -1,25 +1,23 @@
|
|
|
1
|
-
import { ThemePalette } from '@angular/material/core';
|
|
2
1
|
import { ProgressBarMode } from '@angular/material/progress-bar';
|
|
3
2
|
import { ProgressSpinnerMode } from '@angular/material/progress-spinner';
|
|
4
3
|
import { type Maybe } from '@dereekb/util';
|
|
5
|
-
import { DbxThemeColor } from '../layout/style/style';
|
|
6
4
|
import * as i0 from "@angular/core";
|
|
7
5
|
export declare const DEFAULT_LOADING_PROGRESS_DIAMETER = 96;
|
|
8
6
|
/**
|
|
9
7
|
* Basic loading progress component.
|
|
10
8
|
*/
|
|
11
9
|
export declare class DbxLoadingProgressComponent {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
10
|
+
readonly defaultDiameter = 96;
|
|
11
|
+
readonly diameter: import("@angular/core").InputSignal<Maybe<number>>;
|
|
12
|
+
readonly text: import("@angular/core").InputSignal<Maybe<string>>;
|
|
13
|
+
readonly linear: import("@angular/core").InputSignal<Maybe<boolean>>;
|
|
14
|
+
readonly mode: import("@angular/core").InputSignal<"determinate" | "indeterminate" | "buffer" | "query">;
|
|
15
|
+
readonly color: import("@angular/core").InputSignal<"primary" | "accent" | "warn" | "notice" | "ok" | "success" | "grey" | "background" | "disabled" | undefined>;
|
|
16
|
+
readonly value: import("@angular/core").InputSignal<Maybe<number>>;
|
|
17
|
+
readonly bufferValue: import("@angular/core").InputSignal<Maybe<number>>;
|
|
18
|
+
readonly bmode: import("@angular/core").Signal<ProgressBarMode>;
|
|
19
|
+
readonly smode: import("@angular/core").Signal<ProgressSpinnerMode>;
|
|
20
|
+
readonly diameterSignal: import("@angular/core").Signal<number>;
|
|
23
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxLoadingProgressComponent, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxLoadingProgressComponent, "dbx-loading-progress", never, { "
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxLoadingProgressComponent, "dbx-loading-progress", never, { "diameter": { "alias": "diameter"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "linear": { "alias": "linear"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "bufferValue": { "alias": "bufferValue"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
25
23
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { DbxActionContextStoreSourceInstance } from '@dereekb/dbx-core';
|
|
2
2
|
import { OnInit, OnDestroy } from '@angular/core';
|
|
3
|
-
import { LoadingStateContextInstance } from '@dereekb/rxjs';
|
|
4
3
|
import { DbxLoadingComponent } from './loading.component';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
/**
|
|
@@ -9,10 +8,9 @@ import * as i0 from "@angular/core";
|
|
|
9
8
|
export declare class DbxActionLoadingContextDirective implements OnInit, OnDestroy {
|
|
10
9
|
readonly loadingComponent: DbxLoadingComponent;
|
|
11
10
|
readonly source: DbxActionContextStoreSourceInstance<any, any>;
|
|
12
|
-
private _context;
|
|
13
|
-
get context(): LoadingStateContextInstance<unknown, import("@dereekb/rxjs").LoadingState<any>>;
|
|
11
|
+
private readonly _context;
|
|
14
12
|
ngOnInit(): void;
|
|
15
13
|
ngOnDestroy(): void;
|
|
16
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxActionLoadingContextDirective, never>;
|
|
17
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxActionLoadingContextDirective, "[dbxActionLoadingContext]", never, {}, {}, never, never,
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxActionLoadingContextDirective, "[dbxActionLoadingContext]", never, {}, {}, never, never, true, never>;
|
|
18
16
|
}
|
|
@@ -1,43 +1,45 @@
|
|
|
1
1
|
import { Observable } from 'rxjs';
|
|
2
|
-
import {
|
|
3
|
-
import { ThemePalette } from '@angular/material/core';
|
|
2
|
+
import { Signal } from '@angular/core';
|
|
4
3
|
import { ProgressBarMode } from '@angular/material/progress-bar';
|
|
5
|
-
import { LoadingContext } from '@dereekb/rxjs';
|
|
4
|
+
import { LoadingContext, LoadingContextEvent, MaybeObservableOrValue } from '@dereekb/rxjs';
|
|
6
5
|
import { ErrorInput, type Maybe } from '@dereekb/util';
|
|
7
|
-
import { DbxThemeColor } from '../layout/style/style';
|
|
8
6
|
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* State of a DbxLoadingComponent.
|
|
9
|
+
*/
|
|
9
10
|
export interface DbxLoadingComponentState {
|
|
10
|
-
loading: boolean;
|
|
11
|
-
error: Maybe<ErrorInput>;
|
|
11
|
+
readonly loading: boolean;
|
|
12
|
+
readonly error: Maybe<ErrorInput>;
|
|
12
13
|
}
|
|
13
14
|
/**
|
|
14
15
|
* Loading View component that provides content sections for loading, error, and an error action.
|
|
15
16
|
*/
|
|
16
|
-
export declare class DbxLoadingComponent
|
|
17
|
-
readonly
|
|
18
|
-
private _context;
|
|
19
|
-
private _inputLoading;
|
|
20
|
-
private _inputError;
|
|
21
|
-
readonly state$: Observable<DbxLoadingComponentState>;
|
|
22
|
-
readonly loading$: Observable<boolean>;
|
|
23
|
-
readonly error$: Observable<Maybe<ErrorInput>>;
|
|
24
|
-
show?: Maybe<boolean>;
|
|
25
|
-
text?: Maybe<string>;
|
|
26
|
-
mode: ProgressBarMode;
|
|
27
|
-
color: ThemePalette | DbxThemeColor;
|
|
28
|
-
diameter?: Maybe<number>;
|
|
29
|
-
linear?: Maybe<boolean>;
|
|
17
|
+
export declare class DbxLoadingComponent {
|
|
18
|
+
private readonly _contextOverrideSignal;
|
|
30
19
|
/**
|
|
31
20
|
* Whether or not to add padding to the linear presentation when linear is complete. This prevents the linear bar from pushing content around.
|
|
32
21
|
*/
|
|
33
|
-
padding
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
22
|
+
readonly padding: import("@angular/core").InputSignal<Maybe<boolean>>;
|
|
23
|
+
readonly show: import("@angular/core").InputSignal<Maybe<boolean>>;
|
|
24
|
+
readonly text: import("@angular/core").InputSignal<Maybe<string>>;
|
|
25
|
+
readonly mode: import("@angular/core").InputSignal<ProgressBarMode>;
|
|
26
|
+
readonly color: import("@angular/core").InputSignal<"primary" | "accent" | "warn" | "notice" | "ok" | "success" | "grey" | "background" | "disabled" | undefined>;
|
|
27
|
+
readonly diameter: import("@angular/core").InputSignal<Maybe<number>>;
|
|
28
|
+
readonly linear: import("@angular/core").InputSignal<Maybe<boolean>>;
|
|
29
|
+
readonly loading: import("@angular/core").InputSignal<Maybe<boolean>>;
|
|
30
|
+
readonly error: import("@angular/core").InputSignal<Maybe<ErrorInput>>;
|
|
31
|
+
readonly context: import("@angular/core").InputSignal<MaybeObservableOrValue<LoadingContext<LoadingContextEvent>>>;
|
|
32
|
+
readonly contextSignal: Signal<MaybeObservableOrValue<LoadingContext>>;
|
|
33
|
+
readonly contextStream$: Observable<Maybe<LoadingContextEvent>>;
|
|
34
|
+
readonly contextStreamSignal: Signal<Maybe<LoadingContextEvent>>;
|
|
35
|
+
readonly stateSignal: Signal<DbxLoadingComponentState>;
|
|
36
|
+
readonly showPaddingSignal: Signal<boolean | null | undefined>;
|
|
37
|
+
/**
|
|
38
|
+
* Sets/overrides the context directly.
|
|
39
|
+
*
|
|
40
|
+
* @param context Context source to use as an override.
|
|
41
|
+
*/
|
|
42
|
+
setContext(context: MaybeObservableOrValue<LoadingContext>): void;
|
|
41
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxLoadingComponent, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxLoadingComponent, "dbx-loading", never, { "
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxLoadingComponent, "dbx-loading", never, { "padding": { "alias": "padding"; "required": false; "isSignal": true; }; "show": { "alias": "show"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "diameter": { "alias": "diameter"; "required": false; "isSignal": true; }; "linear": { "alias": "linear"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "context": { "alias": "context"; "required": false; "isSignal": true; }; }, {}, never, ["[loading]", "*", "[error]", "[errorAction]"], true, never>;
|
|
43
45
|
}
|
|
@@ -3,12 +3,8 @@ import * as i1 from "./loading.component";
|
|
|
3
3
|
import * as i2 from "./basic-loading.component";
|
|
4
4
|
import * as i3 from "./loading-progress.component";
|
|
5
5
|
import * as i4 from "./loading.action.directive";
|
|
6
|
-
import * as i5 from "@angular/common";
|
|
7
|
-
import * as i6 from "../error/error.module";
|
|
8
|
-
import * as i7 from "@angular/material/progress-spinner";
|
|
9
|
-
import * as i8 from "@angular/material/progress-bar";
|
|
10
6
|
export declare class DbxLoadingModule {
|
|
11
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxLoadingModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxLoadingModule, [typeof i1.DbxLoadingComponent, typeof i2.DbxBasicLoadingComponent, typeof i3.DbxLoadingProgressComponent, typeof i4.DbxActionLoadingContextDirective], [typeof
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbxLoadingModule, never, [typeof i1.DbxLoadingComponent, typeof i2.DbxBasicLoadingComponent, typeof i3.DbxLoadingProgressComponent, typeof i4.DbxActionLoadingContextDirective], [typeof i1.DbxLoadingComponent, typeof i2.DbxBasicLoadingComponent, typeof i3.DbxLoadingProgressComponent, typeof i4.DbxActionLoadingContextDirective]>;
|
|
13
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<DbxLoadingModule>;
|
|
14
10
|
}
|