@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,32 @@
|
|
|
1
|
+
import { Component, Input } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "@angular/material/chips";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
5
|
+
import * as i3 from "@angular/material/tooltip";
|
|
6
|
+
export class DbNgxTextChipsComponent {
|
|
7
|
+
}
|
|
8
|
+
DbNgxTextChipsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.0", ngImport: i0, type: DbNgxTextChipsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
9
|
+
DbNgxTextChipsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.0", type: DbNgxTextChipsComponent, selector: "dbx-text-chips", inputs: { chips: "chips" }, ngImport: i0, template: `
|
|
10
|
+
<mat-chip-list *ngIf="chips" [multiple]="false">
|
|
11
|
+
<mat-chip *ngFor="let chip of chips" selected [color]="chip.color" [matTooltip]="chip.tooltip!" matTooltipPosition="above">
|
|
12
|
+
{{chip.text}}
|
|
13
|
+
</mat-chip>
|
|
14
|
+
</mat-chip-list>
|
|
15
|
+
`, isInline: true, components: [{ type: i1.MatChipList, selector: "mat-chip-list", inputs: ["errorStateMatcher", "multiple", "compareWith", "value", "required", "placeholder", "disabled", "aria-orientation", "selectable", "tabIndex"], outputs: ["change", "valueChange"], exportAs: ["matChipList"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1.MatChip, selector: "mat-basic-chip, [mat-basic-chip], mat-chip, [mat-chip]", inputs: ["color", "disableRipple", "tabIndex", "selected", "value", "selectable", "disabled", "removable"], outputs: ["selectionChange", "destroyed", "removed"], exportAs: ["matChip"] }, { type: i3.MatTooltip, selector: "[matTooltip]", exportAs: ["matTooltip"] }] });
|
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.0", ngImport: i0, type: DbNgxTextChipsComponent, decorators: [{
|
|
17
|
+
type: Component,
|
|
18
|
+
args: [{
|
|
19
|
+
selector: 'dbx-text-chips',
|
|
20
|
+
template: `
|
|
21
|
+
<mat-chip-list *ngIf="chips" [multiple]="false">
|
|
22
|
+
<mat-chip *ngFor="let chip of chips" selected [color]="chip.color" [matTooltip]="chip.tooltip!" matTooltipPosition="above">
|
|
23
|
+
{{chip.text}}
|
|
24
|
+
</mat-chip>
|
|
25
|
+
</mat-chip-list>
|
|
26
|
+
`,
|
|
27
|
+
// TODO: styleUrls: ['./text.scss']
|
|
28
|
+
}]
|
|
29
|
+
}], propDecorators: { chips: [{
|
|
30
|
+
type: Input
|
|
31
|
+
}] } });
|
|
32
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC5jaGlwcy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9kYngtd2ViL3NyYy9saWIvdGV4dC90ZXh0LmNoaXBzLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7QUFxQmpELE1BQU0sT0FBTyx1QkFBdUI7O29IQUF2Qix1QkFBdUI7d0dBQXZCLHVCQUF1QixrRkFUeEI7Ozs7OztHQU1UOzJGQUdVLHVCQUF1QjtrQkFYbkMsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsZ0JBQWdCO29CQUMxQixRQUFRLEVBQUU7Ozs7OztHQU1UO29CQUNELG1DQUFtQztpQkFDcEM7OEJBSUMsS0FBSztzQkFESixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTWF5YmUgfSBmcm9tICdAZGVyZWVrYi91dGlsJztcblxuZXhwb3J0IGludGVyZmFjZSBUZXh0Q2hpcDxUID0gYW55PiB7XG4gIHRleHQ6IHN0cmluZztcbiAgdG9vbHRpcD86IHN0cmluZztcbiAgY29sb3I/OiAncHJpbWFyeScgfCAnYWNjZW50JztcbiAgZGF0YT86IFQ7XG59XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2RieC10ZXh0LWNoaXBzJyxcbiAgdGVtcGxhdGU6IGBcbiAgPG1hdC1jaGlwLWxpc3QgKm5nSWY9XCJjaGlwc1wiIFttdWx0aXBsZV09XCJmYWxzZVwiPlxuICAgIDxtYXQtY2hpcCAqbmdGb3I9XCJsZXQgY2hpcCBvZiBjaGlwc1wiIHNlbGVjdGVkIFtjb2xvcl09XCJjaGlwLmNvbG9yXCIgW21hdFRvb2x0aXBdPVwiY2hpcC50b29sdGlwIVwiIG1hdFRvb2x0aXBQb3NpdGlvbj1cImFib3ZlXCI+XG4gICAgICB7e2NoaXAudGV4dH19XG4gICAgPC9tYXQtY2hpcD5cbiAgPC9tYXQtY2hpcC1saXN0PlxuICBgLFxuICAvLyBUT0RPOiBzdHlsZVVybHM6IFsnLi90ZXh0LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBEYk5neFRleHRDaGlwc0NvbXBvbmVudDxUID0gYW55PiB7XG5cbiAgQElucHV0KClcbiAgY2hpcHM/OiBNYXliZTxUZXh0Q2hpcDxUPltdPjtcblxufVxuIl19
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { NgModule } from '@angular/core';
|
|
3
|
+
import { MatChipsModule } from '@angular/material/chips';
|
|
4
|
+
import { MatIconModule } from '@angular/material/icon';
|
|
5
|
+
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
6
|
+
import { DbNgxAnchorModule } from '../router';
|
|
7
|
+
import { DbNgxHintComponent } from './hint.component';
|
|
8
|
+
import { DbNgxLabelBarComponent } from './label.bar.component';
|
|
9
|
+
import { DbNgxLabelComponent } from './label.component';
|
|
10
|
+
import { DbNgxLinkComponent } from './link.component';
|
|
11
|
+
import { DbNgxLinkifyComponent } from './linkify.component';
|
|
12
|
+
import { DbNgxNoteComponent } from './note.component';
|
|
13
|
+
import { DbNgxNoticeComponent } from './notice.component';
|
|
14
|
+
import { DbNgxOkComponent } from './ok.component';
|
|
15
|
+
import { DbNgxSuccessComponent } from './success.component';
|
|
16
|
+
import { DbNgxTextChipsComponent } from './text.chips.component';
|
|
17
|
+
import { DbNgxWarnComponent } from './warn.component';
|
|
18
|
+
import * as i0 from "@angular/core";
|
|
19
|
+
export class DbNgxTextModule {
|
|
20
|
+
}
|
|
21
|
+
DbNgxTextModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.0", ngImport: i0, type: DbNgxTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
22
|
+
DbNgxTextModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.2.0", ngImport: i0, type: DbNgxTextModule, declarations: [DbNgxNoteComponent,
|
|
23
|
+
DbNgxNoticeComponent,
|
|
24
|
+
DbNgxSuccessComponent,
|
|
25
|
+
DbNgxWarnComponent,
|
|
26
|
+
DbNgxHintComponent,
|
|
27
|
+
DbNgxLinkComponent,
|
|
28
|
+
DbNgxLabelComponent,
|
|
29
|
+
DbNgxLinkifyComponent,
|
|
30
|
+
DbNgxOkComponent,
|
|
31
|
+
DbNgxTextChipsComponent,
|
|
32
|
+
DbNgxLabelBarComponent], imports: [CommonModule,
|
|
33
|
+
MatChipsModule,
|
|
34
|
+
MatTooltipModule,
|
|
35
|
+
MatIconModule,
|
|
36
|
+
DbNgxAnchorModule], exports: [DbNgxNoteComponent,
|
|
37
|
+
DbNgxNoticeComponent,
|
|
38
|
+
DbNgxSuccessComponent,
|
|
39
|
+
DbNgxWarnComponent,
|
|
40
|
+
DbNgxHintComponent,
|
|
41
|
+
DbNgxLinkComponent,
|
|
42
|
+
DbNgxLabelComponent,
|
|
43
|
+
DbNgxLinkifyComponent,
|
|
44
|
+
DbNgxOkComponent,
|
|
45
|
+
DbNgxTextChipsComponent,
|
|
46
|
+
DbNgxLabelBarComponent] });
|
|
47
|
+
DbNgxTextModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.0", ngImport: i0, type: DbNgxTextModule, imports: [[
|
|
48
|
+
CommonModule,
|
|
49
|
+
MatChipsModule,
|
|
50
|
+
MatTooltipModule,
|
|
51
|
+
MatIconModule,
|
|
52
|
+
DbNgxAnchorModule
|
|
53
|
+
]] });
|
|
54
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.0", ngImport: i0, type: DbNgxTextModule, decorators: [{
|
|
55
|
+
type: NgModule,
|
|
56
|
+
args: [{
|
|
57
|
+
imports: [
|
|
58
|
+
CommonModule,
|
|
59
|
+
MatChipsModule,
|
|
60
|
+
MatTooltipModule,
|
|
61
|
+
MatIconModule,
|
|
62
|
+
DbNgxAnchorModule
|
|
63
|
+
],
|
|
64
|
+
declarations: [
|
|
65
|
+
DbNgxNoteComponent,
|
|
66
|
+
DbNgxNoticeComponent,
|
|
67
|
+
DbNgxSuccessComponent,
|
|
68
|
+
DbNgxWarnComponent,
|
|
69
|
+
DbNgxHintComponent,
|
|
70
|
+
DbNgxLinkComponent,
|
|
71
|
+
DbNgxLabelComponent,
|
|
72
|
+
DbNgxLinkifyComponent,
|
|
73
|
+
DbNgxOkComponent,
|
|
74
|
+
DbNgxTextChipsComponent,
|
|
75
|
+
DbNgxLabelBarComponent
|
|
76
|
+
],
|
|
77
|
+
exports: [
|
|
78
|
+
DbNgxNoteComponent,
|
|
79
|
+
DbNgxNoticeComponent,
|
|
80
|
+
DbNgxSuccessComponent,
|
|
81
|
+
DbNgxWarnComponent,
|
|
82
|
+
DbNgxHintComponent,
|
|
83
|
+
DbNgxLinkComponent,
|
|
84
|
+
DbNgxLabelComponent,
|
|
85
|
+
DbNgxLinkifyComponent,
|
|
86
|
+
DbNgxOkComponent,
|
|
87
|
+
DbNgxTextChipsComponent,
|
|
88
|
+
DbNgxLabelBarComponent
|
|
89
|
+
],
|
|
90
|
+
}]
|
|
91
|
+
}] });
|
|
92
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9kYngtd2ViL3NyYy9saWIvdGV4dC90ZXh0Lm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFDekQsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzdELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLFdBQVcsQ0FBQztBQUM5QyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUN0RCxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUMvRCxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUN4RCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUN0RCxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUM1RCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUN0RCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUMxRCxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUNsRCxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUM1RCxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNqRSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7QUFxQ3RELE1BQU0sT0FBTyxlQUFlOzs0R0FBZixlQUFlOzZHQUFmLGVBQWUsaUJBMUJ4QixrQkFBa0I7UUFDbEIsb0JBQW9CO1FBQ3BCLHFCQUFxQjtRQUNyQixrQkFBa0I7UUFDbEIsa0JBQWtCO1FBQ2xCLGtCQUFrQjtRQUNsQixtQkFBbUI7UUFDbkIscUJBQXFCO1FBQ3JCLGdCQUFnQjtRQUNoQix1QkFBdUI7UUFDdkIsc0JBQXNCLGFBakJ0QixZQUFZO1FBQ1osY0FBYztRQUNkLGdCQUFnQjtRQUNoQixhQUFhO1FBQ2IsaUJBQWlCLGFBZ0JqQixrQkFBa0I7UUFDbEIsb0JBQW9CO1FBQ3BCLHFCQUFxQjtRQUNyQixrQkFBa0I7UUFDbEIsa0JBQWtCO1FBQ2xCLGtCQUFrQjtRQUNsQixtQkFBbUI7UUFDbkIscUJBQXFCO1FBQ3JCLGdCQUFnQjtRQUNoQix1QkFBdUI7UUFDdkIsc0JBQXNCOzZHQUdiLGVBQWUsWUFsQ2pCO1lBQ1AsWUFBWTtZQUNaLGNBQWM7WUFDZCxnQkFBZ0I7WUFDaEIsYUFBYTtZQUNiLGlCQUFpQjtTQUNsQjsyRkE0QlUsZUFBZTtrQkFuQzNCLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFO3dCQUNQLFlBQVk7d0JBQ1osY0FBYzt3QkFDZCxnQkFBZ0I7d0JBQ2hCLGFBQWE7d0JBQ2IsaUJBQWlCO3FCQUNsQjtvQkFDRCxZQUFZLEVBQUU7d0JBQ1osa0JBQWtCO3dCQUNsQixvQkFBb0I7d0JBQ3BCLHFCQUFxQjt3QkFDckIsa0JBQWtCO3dCQUNsQixrQkFBa0I7d0JBQ2xCLGtCQUFrQjt3QkFDbEIsbUJBQW1CO3dCQUNuQixxQkFBcUI7d0JBQ3JCLGdCQUFnQjt3QkFDaEIsdUJBQXVCO3dCQUN2QixzQkFBc0I7cUJBQ3ZCO29CQUNELE9BQU8sRUFBRTt3QkFDUCxrQkFBa0I7d0JBQ2xCLG9CQUFvQjt3QkFDcEIscUJBQXFCO3dCQUNyQixrQkFBa0I7d0JBQ2xCLGtCQUFrQjt3QkFDbEIsa0JBQWtCO3dCQUNsQixtQkFBbUI7d0JBQ25CLHFCQUFxQjt3QkFDckIsZ0JBQWdCO3dCQUNoQix1QkFBdUI7d0JBQ3ZCLHNCQUFzQjtxQkFDdkI7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE1hdENoaXBzTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvY2hpcHMnO1xuaW1wb3J0IHsgTWF0SWNvbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2ljb24nO1xuaW1wb3J0IHsgTWF0VG9vbHRpcE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL3Rvb2x0aXAnO1xuaW1wb3J0IHsgRGJOZ3hBbmNob3JNb2R1bGUgfSBmcm9tICcuLi9yb3V0ZXInO1xuaW1wb3J0IHsgRGJOZ3hIaW50Q29tcG9uZW50IH0gZnJvbSAnLi9oaW50LmNvbXBvbmVudCc7XG5pbXBvcnQgeyBEYk5neExhYmVsQmFyQ29tcG9uZW50IH0gZnJvbSAnLi9sYWJlbC5iYXIuY29tcG9uZW50JztcbmltcG9ydCB7IERiTmd4TGFiZWxDb21wb25lbnQgfSBmcm9tICcuL2xhYmVsLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBEYk5neExpbmtDb21wb25lbnQgfSBmcm9tICcuL2xpbmsuY29tcG9uZW50JztcbmltcG9ydCB7IERiTmd4TGlua2lmeUNvbXBvbmVudCB9IGZyb20gJy4vbGlua2lmeS5jb21wb25lbnQnO1xuaW1wb3J0IHsgRGJOZ3hOb3RlQ29tcG9uZW50IH0gZnJvbSAnLi9ub3RlLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBEYk5neE5vdGljZUNvbXBvbmVudCB9IGZyb20gJy4vbm90aWNlLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBEYk5neE9rQ29tcG9uZW50IH0gZnJvbSAnLi9vay5jb21wb25lbnQnO1xuaW1wb3J0IHsgRGJOZ3hTdWNjZXNzQ29tcG9uZW50IH0gZnJvbSAnLi9zdWNjZXNzLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBEYk5neFRleHRDaGlwc0NvbXBvbmVudCB9IGZyb20gJy4vdGV4dC5jaGlwcy5jb21wb25lbnQnO1xuaW1wb3J0IHsgRGJOZ3hXYXJuQ29tcG9uZW50IH0gZnJvbSAnLi93YXJuLmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgTWF0Q2hpcHNNb2R1bGUsXG4gICAgTWF0VG9vbHRpcE1vZHVsZSxcbiAgICBNYXRJY29uTW9kdWxlLFxuICAgIERiTmd4QW5jaG9yTW9kdWxlXG4gIF0sXG4gIGRlY2xhcmF0aW9uczogW1xuICAgIERiTmd4Tm90ZUNvbXBvbmVudCxcbiAgICBEYk5neE5vdGljZUNvbXBvbmVudCxcbiAgICBEYk5neFN1Y2Nlc3NDb21wb25lbnQsXG4gICAgRGJOZ3hXYXJuQ29tcG9uZW50LFxuICAgIERiTmd4SGludENvbXBvbmVudCxcbiAgICBEYk5neExpbmtDb21wb25lbnQsXG4gICAgRGJOZ3hMYWJlbENvbXBvbmVudCxcbiAgICBEYk5neExpbmtpZnlDb21wb25lbnQsXG4gICAgRGJOZ3hPa0NvbXBvbmVudCxcbiAgICBEYk5neFRleHRDaGlwc0NvbXBvbmVudCxcbiAgICBEYk5neExhYmVsQmFyQ29tcG9uZW50XG4gIF0sXG4gIGV4cG9ydHM6IFtcbiAgICBEYk5neE5vdGVDb21wb25lbnQsXG4gICAgRGJOZ3hOb3RpY2VDb21wb25lbnQsXG4gICAgRGJOZ3hTdWNjZXNzQ29tcG9uZW50LFxuICAgIERiTmd4V2FybkNvbXBvbmVudCxcbiAgICBEYk5neEhpbnRDb21wb25lbnQsXG4gICAgRGJOZ3hMaW5rQ29tcG9uZW50LFxuICAgIERiTmd4TGFiZWxDb21wb25lbnQsXG4gICAgRGJOZ3hMaW5raWZ5Q29tcG9uZW50LFxuICAgIERiTmd4T2tDb21wb25lbnQsXG4gICAgRGJOZ3hUZXh0Q2hpcHNDb21wb25lbnQsXG4gICAgRGJOZ3hMYWJlbEJhckNvbXBvbmVudFxuICBdLFxufSlcbmV4cG9ydCBjbGFzcyBEYk5neFRleHRNb2R1bGUgeyB9XG4iXX0=
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class DbNgxWarnComponent {
|
|
4
|
+
}
|
|
5
|
+
DbNgxWarnComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.0", ngImport: i0, type: DbNgxWarnComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
6
|
+
DbNgxWarnComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.0", type: DbNgxWarnComponent, selector: "dbx-warn", ngImport: i0, template: `<p class="dbx-warn"><ng-content></ng-content></p>`, isInline: true });
|
|
7
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.0", ngImport: i0, type: DbNgxWarnComponent, decorators: [{
|
|
8
|
+
type: Component,
|
|
9
|
+
args: [{
|
|
10
|
+
selector: 'dbx-warn',
|
|
11
|
+
template: `<p class="dbx-warn"><ng-content></ng-content></p>`,
|
|
12
|
+
// TODO: styleUrls: ['./text.scss']
|
|
13
|
+
}]
|
|
14
|
+
}] });
|
|
15
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2Fybi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9kYngtd2ViL3NyYy9saWIvdGV4dC93YXJuLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFpQixNQUFNLGVBQWUsQ0FBQzs7QUFPekQsTUFBTSxPQUFPLGtCQUFrQjs7K0dBQWxCLGtCQUFrQjttR0FBbEIsa0JBQWtCLGdEQUhuQixtREFBbUQ7MkZBR2xELGtCQUFrQjtrQkFMOUIsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsVUFBVTtvQkFDcEIsUUFBUSxFQUFFLG1EQUFtRDtvQkFDN0QsbUNBQW1DO2lCQUNwQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdkYngtd2FybicsXG4gIHRlbXBsYXRlOiBgPHAgY2xhc3M9XCJkYngtd2FyblwiPjxuZy1jb250ZW50PjwvbmctY29udGVudD48L3A+YCxcbiAgLy8gVE9ETzogc3R5bGVVcmxzOiBbJy4vdGV4dC5zY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgRGJOZ3hXYXJuQ29tcG9uZW50IHt9XG4iXX0=
|