@dereekb/dbx-web 0.0.1
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/README.md +7 -0
- package/dereekb-dbx-web.d.ts +5 -0
- package/esm2020/dereekb-dbx-web.mjs +5 -0
- package/esm2020/index.mjs +3 -0
- package/esm2020/lib/action/action.confirm.directive.mjs +52 -0
- package/esm2020/lib/action/action.module.mjs +63 -0
- package/esm2020/lib/action/action.snackbar.component.mjs +105 -0
- package/esm2020/lib/action/index.mjs +6 -0
- package/esm2020/lib/action/key.trigger.directive.mjs +40 -0
- package/esm2020/lib/action/transition/action.transition.module.mjs +50 -0
- package/esm2020/lib/action/transition/index.mjs +4 -0
- package/esm2020/lib/action/transition/transition.safety.dialog.component.mjs +61 -0
- package/esm2020/lib/action/transition/transition.safety.directive.mjs +156 -0
- package/esm2020/lib/button/button.component.mjs +92 -0
- package/esm2020/lib/button/button.module.mjs +43 -0
- package/esm2020/lib/button/button.spacer.component.mjs +18 -0
- package/esm2020/lib/button/index.mjs +4 -0
- package/esm2020/lib/dbx-web.module.mjs +50 -0
- package/esm2020/lib/error/error.action.directive.mjs +32 -0
- package/esm2020/lib/error/error.api.mjs +47 -0
- package/esm2020/lib/error/error.component.mjs +27 -0
- package/esm2020/lib/error/error.loading.directive.mjs +42 -0
- package/esm2020/lib/error/error.module.mjs +36 -0
- package/esm2020/lib/error/index.mjs +7 -0
- package/esm2020/lib/error/state.mjs +17 -0
- package/esm2020/lib/index.mjs +10 -0
- package/esm2020/lib/interaction/dialog/abstract.dialog.directive.mjs +27 -0
- package/esm2020/lib/interaction/dialog/index.mjs +2 -0
- package/esm2020/lib/interaction/index.mjs +5 -0
- package/esm2020/lib/interaction/popover/abstract.popover.directive.mjs +24 -0
- package/esm2020/lib/interaction/popover/abstract.popover.ref.directive.mjs +63 -0
- package/esm2020/lib/interaction/popover/index.mjs +15 -0
- package/esm2020/lib/interaction/popover/popover.action.button.directive.mjs +29 -0
- package/esm2020/lib/interaction/popover/popover.action.directive.mjs +83 -0
- package/esm2020/lib/interaction/popover/popover.component.mjs +143 -0
- package/esm2020/lib/interaction/popover/popover.content.component.mjs +55 -0
- package/esm2020/lib/interaction/popover/popover.controls.component.mjs +35 -0
- package/esm2020/lib/interaction/popover/popover.coordinator.component.mjs +44 -0
- package/esm2020/lib/interaction/popover/popover.coordinator.service.mjs +40 -0
- package/esm2020/lib/interaction/popover/popover.header.component.mjs +52 -0
- package/esm2020/lib/interaction/popover/popover.mjs +3 -0
- package/esm2020/lib/interaction/popover/popover.module.mjs +108 -0
- package/esm2020/lib/interaction/popover/popover.position.strategy.mjs +61 -0
- package/esm2020/lib/interaction/popover/popover.scroll.content.component.mjs +53 -0
- package/esm2020/lib/interaction/popover/popover.service.mjs +45 -0
- package/esm2020/lib/interaction/popup/abstract.popup.directive.mjs +21 -0
- package/esm2020/lib/interaction/popup/index.mjs +11 -0
- package/esm2020/lib/interaction/popup/popup.component.mjs +138 -0
- package/esm2020/lib/interaction/popup/popup.content.component.mjs +40 -0
- package/esm2020/lib/interaction/popup/popup.controls.buttons.component.mjs +72 -0
- package/esm2020/lib/interaction/popup/popup.controls.component.mjs +33 -0
- package/esm2020/lib/interaction/popup/popup.coordinator.component.mjs +44 -0
- package/esm2020/lib/interaction/popup/popup.coordinator.service.mjs +40 -0
- package/esm2020/lib/interaction/popup/popup.mjs +9 -0
- package/esm2020/lib/interaction/popup/popup.module.mjs +81 -0
- package/esm2020/lib/interaction/popup/popup.position.strategy.mjs +45 -0
- package/esm2020/lib/interaction/popup/popup.service.mjs +42 -0
- package/esm2020/lib/interaction/prompt/index.mjs +10 -0
- package/esm2020/lib/interaction/prompt/prompt.box.component.mjs +35 -0
- package/esm2020/lib/interaction/prompt/prompt.button.confirm.directive.mjs +35 -0
- package/esm2020/lib/interaction/prompt/prompt.component.mjs +21 -0
- package/esm2020/lib/interaction/prompt/prompt.confirm.component.mjs +51 -0
- package/esm2020/lib/interaction/prompt/prompt.confirm.dialog.component.mjs +27 -0
- package/esm2020/lib/interaction/prompt/prompt.confirm.directive.mjs +69 -0
- package/esm2020/lib/interaction/prompt/prompt.confirm.mjs +9 -0
- package/esm2020/lib/interaction/prompt/prompt.module.mjs +77 -0
- package/esm2020/lib/interaction/prompt/prompt.page.component.mjs +32 -0
- package/esm2020/lib/keypress/index.mjs +3 -0
- package/esm2020/lib/keypress/keydown.listener.directive.mjs +45 -0
- package/esm2020/lib/keypress/keypress.module.mjs +26 -0
- package/esm2020/lib/layout/block/block.layout.module.mjs +37 -0
- package/esm2020/lib/layout/block/index.mjs +3 -0
- package/esm2020/lib/layout/block/two.block.component.mjs +55 -0
- package/esm2020/lib/layout/card/card.box.component.mjs +49 -0
- package/esm2020/lib/layout/card/card.box.container.component.mjs +25 -0
- package/esm2020/lib/layout/card/card.box.layout.module.mjs +35 -0
- package/esm2020/lib/layout/card/index.mjs +4 -0
- package/esm2020/lib/layout/column/column.layout.module.mjs +21 -0
- package/esm2020/lib/layout/column/index.mjs +4 -0
- package/esm2020/lib/layout/column/one/index.mjs +3 -0
- package/esm2020/lib/layout/column/one/one.column.component.mjs +46 -0
- package/esm2020/lib/layout/column/one/one.column.module.mjs +30 -0
- package/esm2020/lib/layout/column/two/index.mjs +9 -0
- package/esm2020/lib/layout/column/two/two.column.back.directive.mjs +33 -0
- package/esm2020/lib/layout/column/two/two.column.component.mjs +36 -0
- package/esm2020/lib/layout/column/two/two.column.full.left.directive.mjs +40 -0
- package/esm2020/lib/layout/column/two/two.column.head.component.mjs +30 -0
- package/esm2020/lib/layout/column/two/two.column.module.mjs +67 -0
- package/esm2020/lib/layout/column/two/two.column.right.component.mjs +55 -0
- package/esm2020/lib/layout/column/two/two.column.sref.directive.mjs +34 -0
- package/esm2020/lib/layout/column/two/two.column.store.mjs +80 -0
- package/esm2020/lib/layout/compact/compact.directive.mjs +30 -0
- package/esm2020/lib/layout/compact/compact.layout.module.mjs +29 -0
- package/esm2020/lib/layout/compact/compact.mjs +27 -0
- package/esm2020/lib/layout/compact/compact.store.mjs +19 -0
- package/esm2020/lib/layout/compact/index.mjs +5 -0
- package/esm2020/lib/layout/content/content.bordered.component.mjs +26 -0
- package/esm2020/lib/layout/content/content.component.mjs +32 -0
- package/esm2020/lib/layout/content/content.container.component.mjs +66 -0
- package/esm2020/lib/layout/content/content.container.fullwidth.component.mjs +26 -0
- package/esm2020/lib/layout/content/content.layout.module.mjs +44 -0
- package/esm2020/lib/layout/content/index.mjs +6 -0
- package/esm2020/lib/layout/dialog/dialog.content.component.mjs +37 -0
- package/esm2020/lib/layout/dialog/dialog.layout.module.mjs +29 -0
- package/esm2020/lib/layout/dialog/index.mjs +3 -0
- package/esm2020/lib/layout/flag/flag.component.mjs +36 -0
- package/esm2020/lib/layout/flag/flag.layout.module.mjs +38 -0
- package/esm2020/lib/layout/flag/flag.prompt.component.mjs +38 -0
- package/esm2020/lib/layout/flag/index.mjs +4 -0
- package/esm2020/lib/layout/index.mjs +13 -0
- package/esm2020/lib/layout/item/index.mjs +3 -0
- package/esm2020/lib/layout/item/item.icon.component.mjs +47 -0
- package/esm2020/lib/layout/item/item.layout.module.mjs +30 -0
- package/esm2020/lib/layout/layout.module.mjs +57 -0
- package/esm2020/lib/layout/list/index.mjs +3 -0
- package/esm2020/lib/layout/list/list.empty.component.mjs +26 -0
- package/esm2020/lib/layout/list/list.layout.module.mjs +26 -0
- package/esm2020/lib/layout/section/index.mjs +9 -0
- package/esm2020/lib/layout/section/section.box.anchor.component.mjs +39 -0
- package/esm2020/lib/layout/section/section.box.component.mjs +32 -0
- package/esm2020/lib/layout/section/section.component.mjs +54 -0
- package/esm2020/lib/layout/section/section.elevated.component.mjs +26 -0
- package/esm2020/lib/layout/section/section.intro.component.mjs +67 -0
- package/esm2020/lib/layout/section/section.layout.module.mjs +75 -0
- package/esm2020/lib/layout/section/section.page.component.mjs +46 -0
- package/esm2020/lib/layout/section/subsection.component.mjs +35 -0
- package/esm2020/lib/layout/step/index.mjs +3 -0
- package/esm2020/lib/layout/step/step.component.mjs +21 -0
- package/esm2020/lib/layout/step/step.layout.module.mjs +30 -0
- package/esm2020/lib/loading/basic-loading.component.mjs +116 -0
- package/esm2020/lib/loading/index.mjs +5 -0
- package/esm2020/lib/loading/loading-progress.component.mjs +69 -0
- package/esm2020/lib/loading/loading.component.mjs +95 -0
- package/esm2020/lib/loading/loading.module.mjs +53 -0
- package/esm2020/lib/router/anchor/anchor.component.mjs +50 -0
- package/esm2020/lib/router/anchor/anchor.icon.component.mjs +30 -0
- package/esm2020/lib/router/anchor/anchor.module.mjs +43 -0
- package/esm2020/lib/router/anchor/anchor.segue.directive.mjs +32 -0
- package/esm2020/lib/router/anchor/index.mjs +5 -0
- package/esm2020/lib/router/index.mjs +3 -0
- package/esm2020/lib/router/provider/index.mjs +4 -0
- package/esm2020/lib/router/provider/ngrouter/anchor.component.mjs +18 -0
- package/esm2020/lib/router/provider/ngrouter/angular.router.module.mjs +46 -0
- package/esm2020/lib/router/provider/ngrouter/index.mjs +3 -0
- package/esm2020/lib/router/provider/router.provider.config.mjs +3 -0
- package/esm2020/lib/router/provider/uirouter/anchor.component.mjs +18 -0
- package/esm2020/lib/router/provider/uirouter/index.mjs +3 -0
- package/esm2020/lib/router/provider/uirouter/uirouter.router.module.mjs +46 -0
- package/esm2020/lib/text/hint.component.mjs +15 -0
- package/esm2020/lib/text/index.mjs +13 -0
- package/esm2020/lib/text/label.bar.component.mjs +32 -0
- package/esm2020/lib/text/label.component.mjs +18 -0
- package/esm2020/lib/text/link.component.mjs +36 -0
- package/esm2020/lib/text/linkify.component.mjs +48 -0
- package/esm2020/lib/text/note.component.mjs +15 -0
- package/esm2020/lib/text/notice.component.mjs +15 -0
- package/esm2020/lib/text/ok.component.mjs +15 -0
- package/esm2020/lib/text/success.component.mjs +15 -0
- package/esm2020/lib/text/text.chips.component.mjs +32 -0
- package/esm2020/lib/text/text.module.mjs +92 -0
- package/esm2020/lib/text/warn.component.mjs +15 -0
- package/fesm2015/dereekb-dbx-web.mjs +4914 -0
- package/fesm2015/dereekb-dbx-web.mjs.map +1 -0
- package/fesm2020/dereekb-dbx-web.mjs +4885 -0
- package/fesm2020/dereekb-dbx-web.mjs.map +1 -0
- package/index.d.ts +2 -0
- package/lib/action/action.confirm.directive.d.ts +23 -0
- package/lib/action/action.module.d.ts +16 -0
- package/lib/action/action.snackbar.component.d.ts +22 -0
- package/lib/action/index.d.ts +5 -0
- package/lib/action/key.trigger.directive.d.ts +17 -0
- package/lib/action/transition/action.transition.module.d.ts +18 -0
- package/lib/action/transition/index.d.ts +3 -0
- package/lib/action/transition/transition.safety.dialog.component.d.ts +19 -0
- package/lib/action/transition/transition.safety.directive.d.ts +52 -0
- package/lib/button/button.component.d.ts +25 -0
- package/lib/button/button.module.d.ts +12 -0
- package/lib/button/button.spacer.component.d.ts +8 -0
- package/lib/button/index.d.ts +3 -0
- package/lib/dbx-web.module.d.ts +16 -0
- package/lib/error/error.action.directive.d.ts +15 -0
- package/lib/error/error.api.d.ts +13 -0
- package/lib/error/error.component.d.ts +14 -0
- package/lib/error/error.loading.directive.d.ts +19 -0
- package/lib/error/error.module.d.ts +10 -0
- package/lib/error/index.d.ts +6 -0
- package/lib/error/state.d.ts +15 -0
- package/lib/index.d.ts +9 -0
- package/lib/interaction/dialog/abstract.dialog.directive.d.ts +14 -0
- package/lib/interaction/dialog/index.d.ts +1 -0
- package/lib/interaction/index.d.ts +4 -0
- package/lib/interaction/popover/abstract.popover.directive.d.ts +13 -0
- package/lib/interaction/popover/abstract.popover.ref.directive.d.ts +30 -0
- package/lib/interaction/popover/index.d.ts +14 -0
- package/lib/interaction/popover/popover.action.button.directive.d.ts +14 -0
- package/lib/interaction/popover/popover.action.directive.d.ts +33 -0
- package/lib/interaction/popover/popover.component.d.ts +75 -0
- package/lib/interaction/popover/popover.content.component.d.ts +17 -0
- package/lib/interaction/popover/popover.controls.component.d.ts +10 -0
- package/lib/interaction/popover/popover.coordinator.component.d.ts +18 -0
- package/lib/interaction/popover/popover.coordinator.service.d.ts +14 -0
- package/lib/interaction/popover/popover.d.ts +16 -0
- package/lib/interaction/popover/popover.header.component.d.ts +12 -0
- package/lib/interaction/popover/popover.module.d.ts +26 -0
- package/lib/interaction/popover/popover.position.strategy.d.ts +11 -0
- package/lib/interaction/popover/popover.scroll.content.component.d.ts +14 -0
- package/lib/interaction/popover/popover.service.d.ts +22 -0
- package/lib/interaction/popup/abstract.popup.directive.d.ts +12 -0
- package/lib/interaction/popup/index.d.ts +10 -0
- package/lib/interaction/popup/popup.component.d.ts +60 -0
- package/lib/interaction/popup/popup.content.component.d.ts +12 -0
- package/lib/interaction/popup/popup.controls.buttons.component.d.ts +18 -0
- package/lib/interaction/popup/popup.controls.component.d.ts +9 -0
- package/lib/interaction/popup/popup.coordinator.component.d.ts +18 -0
- package/lib/interaction/popup/popup.coordinator.service.d.ts +15 -0
- package/lib/interaction/popup/popup.d.ts +25 -0
- package/lib/interaction/popup/popup.module.d.ts +20 -0
- package/lib/interaction/popup/popup.position.strategy.d.ts +18 -0
- package/lib/interaction/popup/popup.service.d.ts +20 -0
- package/lib/interaction/prompt/index.d.ts +9 -0
- package/lib/interaction/prompt/prompt.box.component.d.ts +8 -0
- package/lib/interaction/prompt/prompt.button.confirm.directive.d.ts +17 -0
- package/lib/interaction/prompt/prompt.component.d.ts +12 -0
- package/lib/interaction/prompt/prompt.confirm.component.d.ts +34 -0
- package/lib/interaction/prompt/prompt.confirm.d.ts +7 -0
- package/lib/interaction/prompt/prompt.confirm.dialog.component.d.ts +12 -0
- package/lib/interaction/prompt/prompt.confirm.directive.d.ts +31 -0
- package/lib/interaction/prompt/prompt.module.d.ts +20 -0
- package/lib/interaction/prompt/prompt.page.component.d.ts +5 -0
- package/lib/keypress/index.d.ts +2 -0
- package/lib/keypress/keydown.listener.directive.d.ts +12 -0
- package/lib/keypress/keypress.module.d.ts +8 -0
- package/lib/layout/block/block.layout.module.d.ts +13 -0
- package/lib/layout/block/index.d.ts +2 -0
- package/lib/layout/block/two.block.component.d.ts +16 -0
- package/lib/layout/card/card.box.component.d.ts +10 -0
- package/lib/layout/card/card.box.container.component.d.ts +8 -0
- package/lib/layout/card/card.box.layout.module.d.ts +10 -0
- package/lib/layout/card/index.d.ts +3 -0
- package/lib/layout/column/column.layout.module.d.ts +8 -0
- package/lib/layout/column/index.d.ts +3 -0
- package/lib/layout/column/one/index.d.ts +2 -0
- package/lib/layout/column/one/one.column.component.d.ts +12 -0
- package/lib/layout/column/one/one.column.module.d.ts +9 -0
- package/lib/layout/column/two/index.d.ts +8 -0
- package/lib/layout/column/two/two.column.back.directive.d.ts +16 -0
- package/lib/layout/column/two/two.column.component.d.ts +21 -0
- package/lib/layout/column/two/two.column.full.left.directive.d.ts +18 -0
- package/lib/layout/column/two/two.column.head.component.d.ts +10 -0
- package/lib/layout/column/two/two.column.module.d.ts +17 -0
- package/lib/layout/column/two/two.column.right.component.d.ts +24 -0
- package/lib/layout/column/two/two.column.sref.directive.d.ts +14 -0
- package/lib/layout/column/two/two.column.store.d.ts +67 -0
- package/lib/layout/compact/compact.d.ts +16 -0
- package/lib/layout/compact/compact.directive.d.ts +14 -0
- package/lib/layout/compact/compact.layout.module.d.ts +11 -0
- package/lib/layout/compact/compact.store.d.ts +13 -0
- package/lib/layout/compact/index.d.ts +4 -0
- package/lib/layout/content/content.bordered.component.d.ts +8 -0
- package/lib/layout/content/content.component.d.ts +9 -0
- package/lib/layout/content/content.container.component.d.ts +34 -0
- package/lib/layout/content/content.container.fullwidth.component.d.ts +8 -0
- package/lib/layout/content/content.layout.module.d.ts +14 -0
- package/lib/layout/content/index.d.ts +5 -0
- package/lib/layout/dialog/dialog.content.component.d.ts +13 -0
- package/lib/layout/dialog/dialog.layout.module.d.ts +11 -0
- package/lib/layout/dialog/index.d.ts +2 -0
- package/lib/layout/flag/flag.component.d.ts +10 -0
- package/lib/layout/flag/flag.layout.module.d.ts +13 -0
- package/lib/layout/flag/flag.prompt.component.d.ts +11 -0
- package/lib/layout/flag/index.d.ts +3 -0
- package/lib/layout/index.d.ts +12 -0
- package/lib/layout/item/index.d.ts +2 -0
- package/lib/layout/item/item.icon.component.d.ts +10 -0
- package/lib/layout/item/item.layout.module.d.ts +9 -0
- package/lib/layout/layout.module.d.ts +17 -0
- package/lib/layout/list/index.d.ts +2 -0
- package/lib/layout/list/list.empty.component.d.ts +8 -0
- package/lib/layout/list/list.layout.module.d.ts +8 -0
- package/lib/layout/section/index.d.ts +8 -0
- package/lib/layout/section/section.box.anchor.component.d.ts +11 -0
- package/lib/layout/section/section.box.component.d.ts +9 -0
- package/lib/layout/section/section.component.d.ts +12 -0
- package/lib/layout/section/section.elevated.component.d.ts +8 -0
- package/lib/layout/section/section.intro.component.d.ts +16 -0
- package/lib/layout/section/section.layout.module.d.ts +21 -0
- package/lib/layout/section/section.page.component.d.ts +10 -0
- package/lib/layout/section/subsection.component.d.ts +9 -0
- package/lib/layout/step/index.d.ts +2 -0
- package/lib/layout/step/step.component.d.ts +9 -0
- package/lib/layout/step/step.layout.module.d.ts +9 -0
- package/lib/loading/basic-loading.component.d.ts +46 -0
- package/lib/loading/index.d.ts +4 -0
- package/lib/loading/loading-progress.component.d.ts +24 -0
- package/lib/loading/loading.component.d.ts +37 -0
- package/lib/loading/loading.module.d.ts +13 -0
- package/lib/router/anchor/anchor.component.d.ts +24 -0
- package/lib/router/anchor/anchor.icon.component.d.ts +11 -0
- package/lib/router/anchor/anchor.module.d.ts +12 -0
- package/lib/router/anchor/anchor.segue.directive.d.ts +20 -0
- package/lib/router/anchor/index.d.ts +4 -0
- package/lib/router/index.d.ts +2 -0
- package/lib/router/provider/index.d.ts +3 -0
- package/lib/router/provider/ngrouter/anchor.component.d.ts +9 -0
- package/lib/router/provider/ngrouter/angular.router.module.d.ts +12 -0
- package/lib/router/provider/ngrouter/index.d.ts +2 -0
- package/lib/router/provider/router.provider.config.d.ts +7 -0
- package/lib/router/provider/uirouter/anchor.component.d.ts +9 -0
- package/lib/router/provider/uirouter/index.d.ts +2 -0
- package/lib/router/provider/uirouter/uirouter.router.module.d.ts +12 -0
- package/lib/text/hint.component.d.ts +5 -0
- package/lib/text/index.d.ts +12 -0
- package/lib/text/label.bar.component.d.ts +10 -0
- package/lib/text/label.component.d.ts +8 -0
- package/lib/text/link.component.d.ts +9 -0
- package/lib/text/linkify.component.d.ts +18 -0
- package/lib/text/note.component.d.ts +5 -0
- package/lib/text/notice.component.d.ts +5 -0
- package/lib/text/ok.component.d.ts +5 -0
- package/lib/text/success.component.d.ts +5 -0
- package/lib/text/text.chips.component.d.ts +13 -0
- package/lib/text/text.module.d.ts +22 -0
- package/lib/text/warn.component.d.ts +5 -0
- package/package.json +59 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { ResizedEvent } from 'angular-resize-event';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Wrapper of a block that is broken into two parts, with the bottom content's height
|
|
6
|
+
* being set to 100% of the height minus the top's height.
|
|
7
|
+
*
|
|
8
|
+
* The block is made up of two divs, a top and a bottom. The top is assigned a static height, and the bottom is given the remainder.
|
|
9
|
+
* The height is calculated from 100%.
|
|
10
|
+
*/
|
|
11
|
+
export declare class DbNgxTwoBlocksComponent {
|
|
12
|
+
twoElement: ElementRef;
|
|
13
|
+
onResized(event: ResizedEvent): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxTwoBlocksComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxTwoBlocksComponent, "dbx-two-block", never, {}, {}, never, ["[top]", "*"]>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Component that formats a card-box of content.
|
|
4
|
+
*/
|
|
5
|
+
export declare class DbNgxCardBoxComponent {
|
|
6
|
+
header?: string;
|
|
7
|
+
icon?: string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxCardBoxComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxCardBoxComponent, "dbx-card-box", never, { "header": "header"; "icon": "icon"; }, {}, never, ["[sectionHeader]", "*"]>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Component that wraps a card box and adds content padding.
|
|
4
|
+
*/
|
|
5
|
+
export declare class DbNgxCardBoxContainerComponent {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxCardBoxContainerComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxCardBoxContainerComponent, "dbx-card-box-container", never, {}, {}, never, ["*"]>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./card.box.component";
|
|
3
|
+
import * as i2 from "./card.box.container.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/material/icon";
|
|
6
|
+
export declare class DbNgxCardBoxLayoutModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxCardBoxLayoutModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxCardBoxLayoutModule, [typeof i1.DbNgxCardBoxComponent, typeof i2.DbNgxCardBoxContainerComponent], [typeof i3.CommonModule, typeof i4.MatIconModule], [typeof i1.DbNgxCardBoxComponent, typeof i2.DbNgxCardBoxContainerComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxCardBoxLayoutModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./one/one.column.module";
|
|
3
|
+
import * as i2 from "./two/two.column.module";
|
|
4
|
+
export declare class DbNgxColumnLayoutModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxColumnLayoutModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxColumnLayoutModule, never, never, [typeof i1.DbNgxOneColumnLayoutModule, typeof i2.DbNgxTwoColumnLayoutModule]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxColumnLayoutModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { TwoColumnsContextStore } from '../two';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Pre-configured Two-columns view that only has a left view and shows full left.
|
|
5
|
+
*/
|
|
6
|
+
export declare class DbNgxOneColumnComponent {
|
|
7
|
+
readonly twoColumnsContextStore: TwoColumnsContextStore;
|
|
8
|
+
constructor(twoColumnsContextStore: TwoColumnsContextStore);
|
|
9
|
+
inSectionPage: boolean;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxOneColumnComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxOneColumnComponent, "dbx-one-column", ["columns"], { "inSectionPage": "inSectionPage"; }, {}, never, ["[top]", "*"]>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./one.column.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../two/two.column.module";
|
|
5
|
+
export declare class DbNgxOneColumnLayoutModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxOneColumnLayoutModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxOneColumnLayoutModule, [typeof i1.DbNgxOneColumnComponent], [typeof i2.CommonModule, typeof i3.DbNgxTwoColumnLayoutModule], [typeof i1.DbNgxOneColumnComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxOneColumnLayoutModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from './two.column.back.directive';
|
|
2
|
+
export * from './two.column.component';
|
|
3
|
+
export * from './two.column.full.left.directive';
|
|
4
|
+
export * from './two.column.head.component';
|
|
5
|
+
export * from './two.column.module';
|
|
6
|
+
export * from './two.column.right.component';
|
|
7
|
+
export * from './two.column.sref.directive';
|
|
8
|
+
export * from './two.column.store';
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { AbstractSubscriptionDirective } from '@dereekb/dbx-core';
|
|
3
|
+
import { TwoColumnsContextStore } from './two.column.store';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Used with an DbNgxTwoColumnsComponent to help respond to a "back" function.
|
|
7
|
+
*/
|
|
8
|
+
export declare class DbNgxTwoColumnsBackDirective extends AbstractSubscriptionDirective implements OnInit {
|
|
9
|
+
readonly twoColumnsContextStore: TwoColumnsContextStore;
|
|
10
|
+
back: EventEmitter<any>;
|
|
11
|
+
constructor(twoColumnsContextStore: TwoColumnsContextStore);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
backClicked(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxTwoColumnsBackDirective, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbNgxTwoColumnsBackDirective, "[dbxTwoColumnsBack]", never, {}, { "back": "dbxTwoColumnsBack"; }, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { TwoColumnsContextStore } from './two.column.store';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Responsive component meant to split a left and right column.
|
|
6
|
+
*
|
|
7
|
+
* The left column is smaller than the right column, which contains the primary content.
|
|
8
|
+
*
|
|
9
|
+
* Requires a TwoColumnsContextStore to be provided.
|
|
10
|
+
*/
|
|
11
|
+
export declare class DbNgxTwoColumnsComponent {
|
|
12
|
+
readonly twoColumnsContextStore: TwoColumnsContextStore;
|
|
13
|
+
readonly showRight$: Observable<boolean>;
|
|
14
|
+
readonly hideRight$: Observable<boolean>;
|
|
15
|
+
readonly showFullLeft$: Observable<boolean>;
|
|
16
|
+
constructor(twoColumnsContextStore: TwoColumnsContextStore);
|
|
17
|
+
reverseSizing: boolean;
|
|
18
|
+
inSectionPage: boolean;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxTwoColumnsComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxTwoColumnsComponent, "dbx-two-columns", ["columns"], { "reverseSizing": "reverseSizing"; "inSectionPage": "inSectionPage"; }, {}, never, ["[left]", "[right]"]>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { OnDestroy } from '@angular/core';
|
|
3
|
+
import { TwoColumnsContextStore } from './two.column.store';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Used with a DbNgxTwoColumnsComponent to set the full left to true.
|
|
7
|
+
*/
|
|
8
|
+
export declare class DbNgxTwoColumnsFullLeftDirective implements OnInit, OnDestroy {
|
|
9
|
+
private readonly _twoColumnsContextStore;
|
|
10
|
+
private _fullLeft;
|
|
11
|
+
get fullLeft(): boolean;
|
|
12
|
+
set fullLeft(fullLeft: boolean);
|
|
13
|
+
constructor(_twoColumnsContextStore: TwoColumnsContextStore);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
ngOnDestroy(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxTwoColumnsFullLeftDirective, never>;
|
|
17
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbNgxTwoColumnsFullLeftDirective, "[dbxTwoColumnsFullLeft]", never, { "fullLeft": "dbxTwoColumnsFullLeft"; }, {}, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Two Columns related component that sits at the top of the content bodies and wraps content.
|
|
4
|
+
*/
|
|
5
|
+
export declare class DbNgxTwoColumnsColumnHeadComponent {
|
|
6
|
+
block?: boolean;
|
|
7
|
+
full?: boolean;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxTwoColumnsColumnHeadComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxTwoColumnsColumnHeadComponent, "dbx-two-columns-head", never, { "block": "block"; "full": "full"; }, {}, never, ["*"]>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./two.column.component";
|
|
3
|
+
import * as i2 from "./two.column.right.component";
|
|
4
|
+
import * as i3 from "./two.column.head.component";
|
|
5
|
+
import * as i4 from "./two.column.sref.directive";
|
|
6
|
+
import * as i5 from "./two.column.back.directive";
|
|
7
|
+
import * as i6 from "./two.column.full.left.directive";
|
|
8
|
+
import * as i7 from "@angular/common";
|
|
9
|
+
import * as i8 from "@angular/material/icon";
|
|
10
|
+
import * as i9 from "@angular/material/button";
|
|
11
|
+
import * as i10 from "../../../router/anchor/anchor.module";
|
|
12
|
+
import * as i11 from "../../content/content.layout.module";
|
|
13
|
+
export declare class DbNgxTwoColumnLayoutModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxTwoColumnLayoutModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxTwoColumnLayoutModule, [typeof i1.DbNgxTwoColumnsComponent, typeof i2.DbNgxTwoColumnsRightComponent, typeof i3.DbNgxTwoColumnsColumnHeadComponent, typeof i4.DbNgxTwoColumnsSrefDirective, typeof i5.DbNgxTwoColumnsBackDirective, typeof i6.DbNgxTwoColumnsFullLeftDirective], [typeof i7.CommonModule, typeof i8.MatIconModule, typeof i9.MatButtonModule, typeof i10.DbNgxAnchorModule, typeof i11.DbNgxContentLayoutModule], [typeof i1.DbNgxTwoColumnsComponent, typeof i2.DbNgxTwoColumnsRightComponent, typeof i3.DbNgxTwoColumnsColumnHeadComponent, typeof i4.DbNgxTwoColumnsSrefDirective, typeof i5.DbNgxTwoColumnsBackDirective, typeof i6.DbNgxTwoColumnsFullLeftDirective]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxTwoColumnLayoutModule>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { AfterViewInit, OnDestroy } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ClickableAnchor } from '@dereekb/dbx-core';
|
|
4
|
+
import { TwoColumnsContextStore } from './two.column.store';
|
|
5
|
+
import { Maybe } from '@dereekb/util';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* Optional responsive component that wraps content on the right side and shows a navigation bar.
|
|
9
|
+
*/
|
|
10
|
+
export declare class DbNgxTwoColumnsRightComponent implements AfterViewInit, OnDestroy {
|
|
11
|
+
private readonly twoColumnsContextStore;
|
|
12
|
+
private _showBack;
|
|
13
|
+
header?: string;
|
|
14
|
+
readonly ref$: Observable<Maybe<ClickableAnchor>>;
|
|
15
|
+
readonly showBack$: Observable<boolean>;
|
|
16
|
+
constructor(twoColumnsContextStore: TwoColumnsContextStore);
|
|
17
|
+
ngAfterViewInit(): void;
|
|
18
|
+
ngOnDestroy(): void;
|
|
19
|
+
get showBack(): boolean;
|
|
20
|
+
set showBack(showBack: boolean);
|
|
21
|
+
backClicked(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxTwoColumnsRightComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxTwoColumnsRightComponent, "dbx-two-columns-right", never, { "header": "header"; "showBack": "showBack"; }, {}, never, ["[nav]", "*"]>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { SegueRef } from '@dereekb/dbx-core';
|
|
2
|
+
import { TwoColumnsContextStore } from './two.column.store';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Used with a DbNgxTwoColumnsComponent to set the backRef of the TwoColumnsContextStore.
|
|
6
|
+
*/
|
|
7
|
+
export declare class DbNgxTwoColumnsSrefDirective {
|
|
8
|
+
private readonly _twoColumnsContextStore;
|
|
9
|
+
constructor(_twoColumnsContextStore: TwoColumnsContextStore);
|
|
10
|
+
set refString(ref: string);
|
|
11
|
+
set ref(ref: SegueRef);
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxTwoColumnsSrefDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbNgxTwoColumnsSrefDirective, "[dbxTwoColumnsSref]", never, { "refString": "dbxTwoColumnsSref"; "ref": "ref"; }, {}, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { OnDestroy, Provider } from '@angular/core';
|
|
2
|
+
import { ComponentStore } from '@ngrx/component-store';
|
|
3
|
+
import { SegueRef } from '@dereekb/dbx-core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export interface TwoColumnsState {
|
|
6
|
+
showRight: boolean;
|
|
7
|
+
/**
|
|
8
|
+
* Whether or not to allow the left to fill up the screen when no right is shown.
|
|
9
|
+
*/
|
|
10
|
+
fullLeft: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* Optional ref to use with TwoColumns that use an sref for the back button.
|
|
13
|
+
*/
|
|
14
|
+
backRef?: SegueRef;
|
|
15
|
+
}
|
|
16
|
+
export declare class TwoColumnsContextStore extends ComponentStore<TwoColumnsState> implements OnDestroy {
|
|
17
|
+
private readonly _back;
|
|
18
|
+
constructor();
|
|
19
|
+
/**
|
|
20
|
+
* Pipes the current state of showRight.
|
|
21
|
+
*/
|
|
22
|
+
readonly showRight$: import("rxjs").Observable<boolean>;
|
|
23
|
+
/**
|
|
24
|
+
* Convenience function for the showRight compliment.
|
|
25
|
+
*/
|
|
26
|
+
readonly hideRight$: import("rxjs").Observable<boolean>;
|
|
27
|
+
/**
|
|
28
|
+
* Pipes the current state of fullLeft.
|
|
29
|
+
*/
|
|
30
|
+
readonly fullLeft$: import("rxjs").Observable<boolean>;
|
|
31
|
+
/**
|
|
32
|
+
* Whether or not to show the full left.
|
|
33
|
+
*/
|
|
34
|
+
readonly showFullLeft$: import("rxjs").Observable<boolean>;
|
|
35
|
+
/**
|
|
36
|
+
* Pipes the current backRef value.
|
|
37
|
+
*/
|
|
38
|
+
readonly backRef$: import("rxjs").Observable<SegueRef<any> | undefined>;
|
|
39
|
+
/**
|
|
40
|
+
* Emits back events.
|
|
41
|
+
*/
|
|
42
|
+
readonly back$: import("rxjs").Observable<void>;
|
|
43
|
+
/**
|
|
44
|
+
* Completely resets the store.
|
|
45
|
+
*/
|
|
46
|
+
readonly reset: () => void;
|
|
47
|
+
/**
|
|
48
|
+
* Changes the state to show right or not.
|
|
49
|
+
*/
|
|
50
|
+
readonly setShowRight: (observableOrValue: boolean | import("rxjs").Observable<boolean>) => import("rxjs").Subscription;
|
|
51
|
+
/**
|
|
52
|
+
* Sets the full left.
|
|
53
|
+
*/
|
|
54
|
+
readonly setFullLeft: (observableOrValue: boolean | import("rxjs").Observable<boolean>) => import("rxjs").Subscription;
|
|
55
|
+
/**
|
|
56
|
+
* Sets the new back ref.
|
|
57
|
+
*/
|
|
58
|
+
readonly setBackRef: (observableOrValue: SegueRef<any> | import("rxjs").Observable<SegueRef<any>>) => import("rxjs").Subscription;
|
|
59
|
+
/**
|
|
60
|
+
* Emits a back event.
|
|
61
|
+
*/
|
|
62
|
+
back(): void;
|
|
63
|
+
ngOnDestroy(): void;
|
|
64
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TwoColumnsContextStore, never>;
|
|
65
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TwoColumnsContextStore>;
|
|
66
|
+
}
|
|
67
|
+
export declare function ProvideTwoColumnsContext(): Provider[];
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Maybe } from '@dereekb/util';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
export declare enum CompactMode {
|
|
4
|
+
FULL = "full",
|
|
5
|
+
COMPACT = "compact"
|
|
6
|
+
}
|
|
7
|
+
export interface CompactModeOptions<T> {
|
|
8
|
+
full?: T;
|
|
9
|
+
compact?: T;
|
|
10
|
+
}
|
|
11
|
+
export interface CompactModeDefaultOptions<T> extends CompactModeOptions<T> {
|
|
12
|
+
defaultMode?: Maybe<CompactMode>;
|
|
13
|
+
}
|
|
14
|
+
export declare type CompactModeOption = CompactMode | boolean;
|
|
15
|
+
export declare function compactModeFromInput(input: CompactMode | boolean): CompactMode;
|
|
16
|
+
export declare function mapCompactModeObs<T>(mode$: Maybe<Observable<CompactMode>>, config: CompactModeDefaultOptions<T>): Observable<Maybe<T>>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { CompactMode } from './compact';
|
|
2
|
+
import { CompactContextStore } from './compact.store';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* CompactContextStore provider.
|
|
6
|
+
*/
|
|
7
|
+
export declare class DbNgxCompactDirective {
|
|
8
|
+
readonly compactContextStore: CompactContextStore;
|
|
9
|
+
mode$: import("rxjs").Observable<CompactMode>;
|
|
10
|
+
constructor(compactContextStore: CompactContextStore);
|
|
11
|
+
set mode(mode: CompactMode | boolean);
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxCompactDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DbNgxCompactDirective, "[dbxCompact]", ["compact"], { "mode": "dbxCompact"; }, {}, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./compact.directive";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
/**
|
|
5
|
+
* Module for block components.
|
|
6
|
+
*/
|
|
7
|
+
export declare class DbNgxCompactLayoutModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxCompactLayoutModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxCompactLayoutModule, [typeof i1.DbNgxCompactDirective], [typeof i2.CommonModule], [typeof i1.DbNgxCompactDirective]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxCompactLayoutModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ComponentStore } from '@ngrx/component-store';
|
|
2
|
+
import { CompactMode } from './compact';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export interface CompactContextState {
|
|
5
|
+
mode: CompactMode;
|
|
6
|
+
}
|
|
7
|
+
export declare class CompactContextStore extends ComponentStore<CompactContextState> {
|
|
8
|
+
constructor();
|
|
9
|
+
readonly mode$: import("rxjs").Observable<CompactMode>;
|
|
10
|
+
readonly setMode: (observableOrValue: boolean | CompactMode | import("rxjs").Observable<boolean | CompactMode>) => import("rxjs").Subscription;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CompactContextStore, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CompactContextStore>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Component that is wrapped with a padded border.
|
|
4
|
+
*/
|
|
5
|
+
export declare class DbNgxBorderedContentComponent {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxBorderedContentComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxBorderedContentComponent, "dbx-bordered-content", never, {}, {}, never, ["*"]>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Component that sets the height of it's content to fill the page with respect to the top two navigation bars.
|
|
4
|
+
*/
|
|
5
|
+
export declare class DbNgxContentComponent {
|
|
6
|
+
hasSecondBar: boolean;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxContentComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxContentComponent, "dbx-content", never, { "hasSecondBar": "hasSecondBar"; }, {}, never, ["*"]>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare enum DbNgxContentContainerPadding {
|
|
3
|
+
NONE = "none",
|
|
4
|
+
MIN = "min",
|
|
5
|
+
SMALL = "small",
|
|
6
|
+
NORMAL = "normal"
|
|
7
|
+
}
|
|
8
|
+
export declare enum DbNgxContentContainerWidth {
|
|
9
|
+
SMALL = "small",
|
|
10
|
+
MEDIUM = "medium",
|
|
11
|
+
WIDE = "wide",
|
|
12
|
+
FULL = "full"
|
|
13
|
+
}
|
|
14
|
+
export declare enum DbNgxContentContainerType {
|
|
15
|
+
/**
|
|
16
|
+
* Full/unrestricted height content.
|
|
17
|
+
*/
|
|
18
|
+
NORMAL = "normal",
|
|
19
|
+
/**
|
|
20
|
+
* Content that has a header above it and should take up the rest of the height of the page.
|
|
21
|
+
*/
|
|
22
|
+
CONTENT = "content"
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Component that limits the max-width of the content.
|
|
26
|
+
*/
|
|
27
|
+
export declare class DbNgxContentContainerComponent {
|
|
28
|
+
type: DbNgxContentContainerType;
|
|
29
|
+
width: DbNgxContentContainerWidth;
|
|
30
|
+
padding: DbNgxContentContainerPadding;
|
|
31
|
+
scrollingContent: boolean;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxContentContainerComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxContentContainerComponent, "dbx-content-container", never, { "type": "type"; "width": "width"; "padding": "padding"; "scrollingContent": "scrollingContent"; }, {}, never, ["*"]>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Component that extends the entire width and has padding.
|
|
4
|
+
*/
|
|
5
|
+
export declare class DbNgxFullWidthContentContainerComponent {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxFullWidthContentContainerComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxFullWidthContentContainerComponent, "dbx-full-width-content-container", never, {}, {}, never, ["*"]>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./content.component";
|
|
3
|
+
import * as i2 from "./content.container.component";
|
|
4
|
+
import * as i3 from "./content.bordered.component";
|
|
5
|
+
import * as i4 from "./content.container.fullwidth.component";
|
|
6
|
+
import * as i5 from "@angular/common";
|
|
7
|
+
/**
|
|
8
|
+
* Module for container-type components.
|
|
9
|
+
*/
|
|
10
|
+
export declare class DbNgxContentLayoutModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxContentLayoutModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxContentLayoutModule, [typeof i1.DbNgxContentComponent, typeof i2.DbNgxContentContainerComponent, typeof i3.DbNgxBorderedContentComponent, typeof i4.DbNgxFullWidthContentContainerComponent], [typeof i5.CommonModule], [typeof i1.DbNgxContentComponent, typeof i2.DbNgxContentContainerComponent, typeof i3.DbNgxBorderedContentComponent, typeof i4.DbNgxFullWidthContentContainerComponent]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxContentLayoutModule>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare enum DbNgxDialogContentContainerWidth {
|
|
3
|
+
NORMAL = "normal",
|
|
4
|
+
WIDE = "wide"
|
|
5
|
+
}
|
|
6
|
+
/**
|
|
7
|
+
* Component used to style a dialog.
|
|
8
|
+
*/
|
|
9
|
+
export declare class DbNgxDialogContentComponent {
|
|
10
|
+
width: DbNgxDialogContentContainerWidth;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxDialogContentComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxDialogContentComponent, "dbx-dialog-content", never, { "width": "width"; }, {}, never, ["*"]>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./dialog.content.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
/**
|
|
5
|
+
* Module for block components.
|
|
6
|
+
*/
|
|
7
|
+
export declare class DbNgxDialogLayoutModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxDialogLayoutModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxDialogLayoutModule, [typeof i1.DbNgxDialogContentComponent], [typeof i2.CommonModule], [typeof i1.DbNgxDialogContentComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxDialogLayoutModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ThemePalette } from '@angular/material/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Toolbar-like component that wraps content. Generally sits at the top of a page.
|
|
5
|
+
*/
|
|
6
|
+
export declare class DbNgxFlagComponent {
|
|
7
|
+
color: ThemePalette;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxFlagComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxFlagComponent, "dbx-flag", never, { "color": "color"; }, {}, never, ["*"]>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./flag.component";
|
|
3
|
+
import * as i2 from "./flag.prompt.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/material/toolbar";
|
|
6
|
+
/**
|
|
7
|
+
* Module for block components.
|
|
8
|
+
*/
|
|
9
|
+
export declare class DbNgxFlagLayoutModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxFlagLayoutModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxFlagLayoutModule, [typeof i1.DbNgxFlagComponent, typeof i2.DbNgxFlagPromptComponent], [typeof i3.CommonModule, typeof i4.MatToolbarModule], [typeof i1.DbNgxFlagComponent, typeof i2.DbNgxFlagPromptComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxFlagLayoutModule>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ThemePalette } from '@angular/material/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Pre-configured dbx-flag prompt to do something.
|
|
5
|
+
*/
|
|
6
|
+
export declare class DbNgxFlagPromptComponent {
|
|
7
|
+
color: ThemePalette;
|
|
8
|
+
text?: string;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxFlagPromptComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxFlagPromptComponent, "dbx-flag-prompt", never, { "color": "color"; "text": "text"; }, {}, never, ["*"]>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from './block';
|
|
2
|
+
export * from './card';
|
|
3
|
+
export * from './column';
|
|
4
|
+
export * from './compact';
|
|
5
|
+
export * from './content';
|
|
6
|
+
export * from './dialog';
|
|
7
|
+
export * from './flag';
|
|
8
|
+
export * from './item';
|
|
9
|
+
export * from './list';
|
|
10
|
+
export * from './section';
|
|
11
|
+
export * from './step';
|
|
12
|
+
export * from './layout.module';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Section piece that puts an icon on the left, and arbitrary content on the right with a header.
|
|
4
|
+
*/
|
|
5
|
+
export declare class DbNgxIconItemComponent {
|
|
6
|
+
icon?: string;
|
|
7
|
+
header?: string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxIconItemComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxIconItemComponent, "dbx-icon-item", never, { "icon": "icon"; "header": "header"; }, {}, never, ["*"]>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./item.icon.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/icon";
|
|
5
|
+
export declare class DbNgxItemLayoutModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxItemLayoutModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxItemLayoutModule, [typeof i1.DbNgxIconItemComponent], [typeof i2.CommonModule, typeof i3.MatIconModule], [typeof i1.DbNgxIconItemComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxItemLayoutModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./block/block.layout.module";
|
|
3
|
+
import * as i2 from "./card/card.box.layout.module";
|
|
4
|
+
import * as i3 from "./column/column.layout.module";
|
|
5
|
+
import * as i4 from "./compact/compact.layout.module";
|
|
6
|
+
import * as i5 from "./content/content.layout.module";
|
|
7
|
+
import * as i6 from "./dialog/dialog.layout.module";
|
|
8
|
+
import * as i7 from "./flag/flag.layout.module";
|
|
9
|
+
import * as i8 from "./item/item.layout.module";
|
|
10
|
+
import * as i9 from "./list/list.layout.module";
|
|
11
|
+
import * as i10 from "./section/section.layout.module";
|
|
12
|
+
import * as i11 from "./step/step.layout.module";
|
|
13
|
+
export declare class DbNgxLayoutModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxLayoutModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxLayoutModule, never, never, [typeof i1.DbNgxBlockLayoutModule, typeof i2.DbNgxCardBoxLayoutModule, typeof i3.DbNgxColumnLayoutModule, typeof i4.DbNgxCompactLayoutModule, typeof i5.DbNgxContentLayoutModule, typeof i6.DbNgxDialogLayoutModule, typeof i7.DbNgxFlagLayoutModule, typeof i8.DbNgxItemLayoutModule, typeof i9.DbNgxListLayoutModule, typeof i10.DbNgxSectionLayoutModule, typeof i11.DbNgxStepLayoutModule]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxLayoutModule>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
/**
|
|
3
|
+
* Component that is centered for use within an empty list.
|
|
4
|
+
*/
|
|
5
|
+
export declare class DbNgxListEmptyContentComponent {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxListEmptyContentComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbNgxListEmptyContentComponent, "dbx-list-empty-content", never, {}, {}, never, ["*"]>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./list.empty.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class DbNgxListLayoutModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbNgxListLayoutModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DbNgxListLayoutModule, [typeof i1.DbNgxListEmptyContentComponent], [typeof i2.CommonModule], [typeof i1.DbNgxListEmptyContentComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DbNgxListLayoutModule>;
|
|
8
|
+
}
|