@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
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@dereekb/dbx-web",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^13.1.0",
|
|
6
|
+
"@angular/core": "^13.1.0",
|
|
7
|
+
"linkify-string": "^3.0.4",
|
|
8
|
+
"@angular/material": "13.2.0",
|
|
9
|
+
"@dereekb/rxjs": "0.0.1",
|
|
10
|
+
"rxjs": "^7.5.2",
|
|
11
|
+
"@dereekb/util": "0.0.1",
|
|
12
|
+
"extra-set": "^2.2.11",
|
|
13
|
+
"ms": "^3.0.0-canary.1",
|
|
14
|
+
"@dereekb/dbx-core": "0.0.1",
|
|
15
|
+
"@ngrx/component-store": "^13.0.2",
|
|
16
|
+
"@ngrx/data": "^13.0.2",
|
|
17
|
+
"@ngrx/effects": "^13.0.2",
|
|
18
|
+
"@ngrx/entity": "^13.0.2",
|
|
19
|
+
"@ngrx/store": "^13.0.2",
|
|
20
|
+
"@angular/platform-browser": "13.2.0",
|
|
21
|
+
"date-fns": "2.28.0",
|
|
22
|
+
"@dereekb/date": "0.0.1",
|
|
23
|
+
"date-fns-tz": "1.2.2",
|
|
24
|
+
"class-transformer": "0.5.1",
|
|
25
|
+
"class-validator": "0.13.2",
|
|
26
|
+
"reflect-metadata": "0.1.13",
|
|
27
|
+
"rrule": "dereekb/rrule#17adf5708d6567b4d01a3a8afd106261421ea492",
|
|
28
|
+
"@angular/router": "13.2.0",
|
|
29
|
+
"@uirouter/core": "^6.0.8",
|
|
30
|
+
"mat-progress-buttons": "9.3.1",
|
|
31
|
+
"ng-overlay-container": "11.0.4",
|
|
32
|
+
"@angular/cdk": "13.2.0",
|
|
33
|
+
"angular-resize-event": "^3.1.1",
|
|
34
|
+
"@uirouter/angular": "^9.1.0"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"tslib": "^2.3.0"
|
|
38
|
+
},
|
|
39
|
+
"module": "fesm2015/dereekb-dbx-web.mjs",
|
|
40
|
+
"es2020": "fesm2020/dereekb-dbx-web.mjs",
|
|
41
|
+
"esm2020": "esm2020/dereekb-dbx-web.mjs",
|
|
42
|
+
"fesm2020": "fesm2020/dereekb-dbx-web.mjs",
|
|
43
|
+
"fesm2015": "fesm2015/dereekb-dbx-web.mjs",
|
|
44
|
+
"typings": "dereekb-dbx-web.d.ts",
|
|
45
|
+
"exports": {
|
|
46
|
+
"./package.json": {
|
|
47
|
+
"default": "./package.json"
|
|
48
|
+
},
|
|
49
|
+
".": {
|
|
50
|
+
"types": "./dereekb-dbx-web.d.ts",
|
|
51
|
+
"esm2020": "./esm2020/dereekb-dbx-web.mjs",
|
|
52
|
+
"es2020": "./fesm2020/dereekb-dbx-web.mjs",
|
|
53
|
+
"es2015": "./fesm2015/dereekb-dbx-web.mjs",
|
|
54
|
+
"node": "./fesm2015/dereekb-dbx-web.mjs",
|
|
55
|
+
"default": "./fesm2020/dereekb-dbx-web.mjs"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"sideEffects": false
|
|
59
|
+
}
|