@ng-atomic/components 5.4.1 → 5.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/atoms/chips-input/chips-input.atom.d.ts +3 -3
- package/atoms/chips-input/index.d.ts +1 -2
- package/atoms/icon/icon.atom.d.ts +1 -1
- package/atoms/icon/index.d.ts +1 -2
- package/atoms/smart-menu-button/index.d.ts +1 -2
- package/atoms/smart-menu-button/smart-menu-button.atom.d.ts +1 -1
- package/esm2020/atoms/chips-input/chips-input.atom.mjs +52 -6
- package/esm2020/atoms/chips-input/index.mjs +2 -3
- package/esm2020/atoms/icon/icon.atom.mjs +8 -4
- package/esm2020/atoms/icon/index.mjs +2 -3
- package/esm2020/atoms/smart-menu-button/index.mjs +2 -3
- package/esm2020/atoms/smart-menu-button/smart-menu-button.atom.mjs +12 -3
- package/esm2020/extras/editor/editor.component.mjs +41 -0
- package/esm2020/extras/editor/index.mjs +2 -0
- package/esm2020/extras/editor/ng-atomic-components-extras-editor.mjs +5 -0
- package/esm2020/frames/auto-layout/auto-layout.frame.mjs +6 -3
- package/esm2020/frames/auto-layout/index.mjs +1 -2
- package/esm2020/frames/card/card.frame.mjs +9 -4
- package/esm2020/frames/card/index.mjs +1 -2
- package/esm2020/frames/drawer/drawer.frame.mjs +8 -4
- package/esm2020/frames/drawer/index.mjs +2 -3
- package/esm2020/frames/fab/fab.frame.mjs +56 -0
- package/esm2020/frames/fab/fab.service.mjs +26 -0
- package/esm2020/frames/fab/index.mjs +2 -0
- package/esm2020/frames/fab/ng-atomic-components-frames-fab.mjs +5 -0
- package/esm2020/frames/line-up/line-up.frame.mjs +17 -5
- package/esm2020/frames/loading/index.mjs +2 -0
- package/esm2020/frames/loading/loading.frame.mjs +29 -0
- package/esm2020/frames/loading/ng-atomic-components-frames-loading.mjs +5 -0
- package/esm2020/frames/overlay/index.mjs +1 -2
- package/esm2020/frames/overlay/overlay.frame.mjs +8 -3
- package/esm2020/frames/scroll/index.mjs +1 -2
- package/esm2020/frames/scroll/scroll.frame.mjs +8 -3
- package/esm2020/frames/smart-menu/index.mjs +1 -2
- package/esm2020/frames/smart-menu/smart-menu.frame.mjs +6 -3
- package/esm2020/molecules/actions-column/actions-column.molecule.mjs +16 -4
- package/esm2020/molecules/actions-column/index.mjs +1 -2
- package/esm2020/molecules/checkbox-column/checkbox-column.molecule.mjs +16 -5
- package/esm2020/molecules/checkbox-column/index.mjs +1 -2
- package/esm2020/molecules/chips-input-field/chips-input-field.molecule.mjs +22 -7
- package/esm2020/molecules/chips-input-field/index.mjs +1 -2
- package/esm2020/molecules/date-input-field/date-input-field.molecule.mjs +19 -8
- package/esm2020/molecules/date-input-field/index.mjs +2 -3
- package/esm2020/molecules/header/header.molecule.mjs +6 -3
- package/esm2020/molecules/header/index.mjs +2 -3
- package/esm2020/molecules/navigation-list-item/index.mjs +2 -3
- package/esm2020/molecules/navigation-list-item/navigation-list-item.molecule.mjs +32 -7
- package/esm2020/molecules/select-input-field/index.mjs +1 -2
- package/esm2020/molecules/select-input-field/select-input-field.molecule.mjs +14 -5
- package/esm2020/molecules/smart-column/index.mjs +1 -2
- package/esm2020/molecules/smart-column/smart-column.molecule.mjs +24 -9
- package/esm2020/molecules/text-input-field/index.mjs +2 -3
- package/esm2020/molecules/text-input-field/text-input-field.molecule.mjs +15 -6
- package/esm2020/molecules/textarea-field/index.mjs +1 -2
- package/esm2020/molecules/textarea-field/textarea-field.molecule.mjs +10 -4
- package/esm2020/molecules/tree-column/index.mjs +2 -0
- package/esm2020/molecules/tree-column/ng-atomic-components-molecules-tree-column.mjs +5 -0
- package/esm2020/molecules/tree-column/tree-column.molecule.mjs +128 -0
- package/esm2020/organisms/action-buttons-section/action-buttons-section.organism.mjs +9 -4
- package/esm2020/organisms/action-buttons-section/index.mjs +1 -2
- package/esm2020/organisms/back-navigator/back-navigator.organism.mjs +15 -5
- package/esm2020/organisms/back-navigator/index.mjs +1 -2
- package/esm2020/organisms/card-input-section/card-input-section.organism.mjs +9 -5
- package/esm2020/organisms/card-input-section/index.mjs +2 -3
- package/esm2020/organisms/cvc-and-exp-input-section/cvc-and-exp-input-section.organism.mjs +11 -6
- package/esm2020/organisms/cvc-and-exp-input-section/index.mjs +2 -3
- package/esm2020/organisms/date-input-section/date-input-section.organism.mjs +11 -6
- package/esm2020/organisms/date-input-section/index.mjs +1 -2
- package/esm2020/organisms/filters-section/filters-section.organism.mjs +129 -0
- package/esm2020/organisms/filters-section/index.mjs +2 -0
- package/esm2020/organisms/filters-section/ng-atomic-components-organisms-filters-section.mjs +5 -0
- package/esm2020/organisms/graphql-editor/graphql-editor.organism.mjs +115 -0
- package/esm2020/organisms/graphql-editor/index.mjs +2 -0
- package/esm2020/organisms/graphql-editor/ng-atomic-components-organisms-graphql-editor.mjs +5 -0
- package/esm2020/organisms/grid-toolbar/grid-toolbar.organism.mjs +68 -0
- package/esm2020/organisms/grid-toolbar/index.mjs +2 -0
- package/esm2020/organisms/grid-toolbar/ng-atomic-components-organisms-grid-toolbar.mjs +5 -0
- package/esm2020/organisms/heading/heading.organism.mjs +6 -3
- package/esm2020/organisms/heading/index.mjs +1 -2
- package/esm2020/organisms/navigation-list/index.mjs +2 -3
- package/esm2020/organisms/navigation-list/navigation-list.organism.mjs +11 -5
- package/esm2020/organisms/navigator/index.mjs +2 -3
- package/esm2020/organisms/navigator/navigator.organism.mjs +14 -4
- package/esm2020/organisms/paginator/index.mjs +1 -2
- package/esm2020/organisms/paginator/paginator.organism.mjs +40 -7
- package/esm2020/organisms/select-input-section/index.mjs +1 -2
- package/esm2020/organisms/select-input-section/select-input-section.organism.mjs +10 -6
- package/esm2020/organisms/smart-list/index.mjs +1 -2
- package/esm2020/organisms/smart-list/smart-list.organism.mjs +45 -8
- package/esm2020/organisms/smart-table/index.mjs +1 -2
- package/esm2020/organisms/smart-table/smart-table.organism.mjs +45 -9
- package/esm2020/organisms/social-login-section/index.mjs +1 -2
- package/esm2020/organisms/social-login-section/social-login-section.organism.mjs +9 -4
- package/esm2020/organisms/text-input-section/index.mjs +2 -3
- package/esm2020/organisms/text-input-section/text-input-section.organism.mjs +9 -5
- package/esm2020/organisms/textarea-section/index.mjs +2 -3
- package/esm2020/organisms/textarea-section/textarea-section.organism.mjs +8 -4
- package/esm2020/organisms/top-navigator/index.mjs +1 -2
- package/esm2020/organisms/top-navigator/top-navigator.organism.mjs +12 -4
- package/esm2020/templates/entrance/entrance.template.mjs +19 -9
- package/esm2020/templates/entrance/index.mjs +1 -2
- package/esm2020/templates/loading/index.mjs +1 -2
- package/esm2020/templates/loading/loading.template.mjs +9 -4
- package/esm2020/templates/menu/index.mjs +1 -2
- package/esm2020/templates/menu/menu.template.mjs +8 -4
- package/esm2020/templates/smart-crud/smart-crud.template.mjs +22 -43
- package/esm2020/templates/smart-index/smart-index.template.mjs +36 -35
- package/extras/editor/editor.component.d.ts +12 -0
- package/extras/editor/index.d.ts +1 -0
- package/fesm2015/ng-atomic-components-atoms-chips-input.mjs +51 -46
- package/fesm2015/ng-atomic-components-atoms-chips-input.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-atoms-icon.mjs +10 -33
- package/fesm2015/ng-atomic-components-atoms-icon.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-atoms-smart-menu-button.mjs +10 -33
- package/fesm2015/ng-atomic-components-atoms-smart-menu-button.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-extras-editor.mjs +52 -0
- package/fesm2015/ng-atomic-components-extras-editor.mjs.map +1 -0
- package/fesm2015/ng-atomic-components-frames-auto-layout.mjs +7 -25
- package/fesm2015/ng-atomic-components-frames-auto-layout.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-frames-card.mjs +9 -32
- package/fesm2015/ng-atomic-components-frames-card.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-frames-drawer.mjs +8 -24
- package/fesm2015/ng-atomic-components-frames-drawer.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-frames-fab.mjs +84 -0
- package/fesm2015/ng-atomic-components-frames-fab.mjs.map +1 -0
- package/fesm2015/ng-atomic-components-frames-line-up.mjs +16 -4
- package/fesm2015/ng-atomic-components-frames-line-up.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-frames-loading.mjs +36 -0
- package/fesm2015/ng-atomic-components-frames-loading.mjs.map +1 -0
- package/fesm2015/ng-atomic-components-frames-overlay.mjs +8 -26
- package/fesm2015/ng-atomic-components-frames-overlay.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-frames-scroll.mjs +6 -26
- package/fesm2015/ng-atomic-components-frames-scroll.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-frames-smart-menu.mjs +7 -21
- package/fesm2015/ng-atomic-components-frames-smart-menu.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-molecules-actions-column.mjs +18 -52
- package/fesm2015/ng-atomic-components-molecules-actions-column.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-molecules-checkbox-column.mjs +18 -43
- package/fesm2015/ng-atomic-components-molecules-checkbox-column.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-molecules-chips-input-field.mjs +24 -62
- package/fesm2015/ng-atomic-components-molecules-chips-input-field.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-molecules-date-input-field.mjs +19 -43
- package/fesm2015/ng-atomic-components-molecules-date-input-field.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-molecules-header.mjs +7 -25
- package/fesm2015/ng-atomic-components-molecules-header.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-molecules-navigation-list-item.mjs +32 -42
- package/fesm2015/ng-atomic-components-molecules-navigation-list-item.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-molecules-select-input-field.mjs +14 -34
- package/fesm2015/ng-atomic-components-molecules-select-input-field.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-molecules-smart-column.mjs +20 -58
- package/fesm2015/ng-atomic-components-molecules-smart-column.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-molecules-text-input-field.mjs +15 -38
- package/fesm2015/ng-atomic-components-molecules-text-input-field.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-molecules-textarea-field.mjs +10 -32
- package/fesm2015/ng-atomic-components-molecules-textarea-field.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-molecules-tree-column.mjs +135 -0
- package/fesm2015/ng-atomic-components-molecules-tree-column.mjs.map +1 -0
- package/fesm2015/ng-atomic-components-organisms-action-buttons-section.mjs +10 -36
- package/fesm2015/ng-atomic-components-organisms-action-buttons-section.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-organisms-back-navigator.mjs +14 -47
- package/fesm2015/ng-atomic-components-organisms-back-navigator.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-organisms-card-input-section.mjs +10 -30
- package/fesm2015/ng-atomic-components-organisms-card-input-section.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-organisms-cvc-and-exp-input-section.mjs +12 -36
- package/fesm2015/ng-atomic-components-organisms-cvc-and-exp-input-section.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-organisms-date-input-section.mjs +12 -32
- package/fesm2015/ng-atomic-components-organisms-date-input-section.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-organisms-filters-section.mjs +136 -0
- package/fesm2015/ng-atomic-components-organisms-filters-section.mjs.map +1 -0
- package/fesm2015/ng-atomic-components-organisms-graphql-editor.mjs +121 -0
- package/fesm2015/ng-atomic-components-organisms-graphql-editor.mjs.map +1 -0
- package/fesm2015/ng-atomic-components-organisms-grid-toolbar.mjs +75 -0
- package/fesm2015/ng-atomic-components-organisms-grid-toolbar.mjs.map +1 -0
- package/fesm2015/ng-atomic-components-organisms-heading.mjs +7 -25
- package/fesm2015/ng-atomic-components-organisms-heading.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-organisms-navigation-list.mjs +12 -37
- package/fesm2015/ng-atomic-components-organisms-navigation-list.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-organisms-navigator.mjs +14 -43
- package/fesm2015/ng-atomic-components-organisms-navigator.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-organisms-paginator.mjs +40 -49
- package/fesm2015/ng-atomic-components-organisms-paginator.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-organisms-select-input-section.mjs +11 -35
- package/fesm2015/ng-atomic-components-organisms-select-input-section.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-organisms-smart-list.mjs +43 -42
- package/fesm2015/ng-atomic-components-organisms-smart-list.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-organisms-smart-table.mjs +42 -73
- package/fesm2015/ng-atomic-components-organisms-smart-table.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-organisms-social-login-section.mjs +10 -33
- package/fesm2015/ng-atomic-components-organisms-social-login-section.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-organisms-text-input-section.mjs +10 -34
- package/fesm2015/ng-atomic-components-organisms-text-input-section.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-organisms-textarea-section.mjs +9 -29
- package/fesm2015/ng-atomic-components-organisms-textarea-section.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-organisms-top-navigator.mjs +12 -43
- package/fesm2015/ng-atomic-components-organisms-top-navigator.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-templates-entrance.mjs +19 -63
- package/fesm2015/ng-atomic-components-templates-entrance.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-templates-loading.mjs +9 -35
- package/fesm2015/ng-atomic-components-templates-loading.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-templates-menu.mjs +9 -30
- package/fesm2015/ng-atomic-components-templates-menu.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-templates-smart-crud.mjs +20 -41
- package/fesm2015/ng-atomic-components-templates-smart-crud.mjs.map +1 -1
- package/fesm2015/ng-atomic-components-templates-smart-index.mjs +35 -34
- package/fesm2015/ng-atomic-components-templates-smart-index.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-atoms-chips-input.mjs +51 -46
- package/fesm2020/ng-atomic-components-atoms-chips-input.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-atoms-icon.mjs +9 -32
- package/fesm2020/ng-atomic-components-atoms-icon.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-atoms-smart-menu-button.mjs +10 -33
- package/fesm2020/ng-atomic-components-atoms-smart-menu-button.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-extras-editor.mjs +48 -0
- package/fesm2020/ng-atomic-components-extras-editor.mjs.map +1 -0
- package/fesm2020/ng-atomic-components-frames-auto-layout.mjs +7 -25
- package/fesm2020/ng-atomic-components-frames-auto-layout.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-frames-card.mjs +9 -32
- package/fesm2020/ng-atomic-components-frames-card.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-frames-drawer.mjs +8 -24
- package/fesm2020/ng-atomic-components-frames-drawer.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-frames-fab.mjs +84 -0
- package/fesm2020/ng-atomic-components-frames-fab.mjs.map +1 -0
- package/fesm2020/ng-atomic-components-frames-line-up.mjs +16 -4
- package/fesm2020/ng-atomic-components-frames-line-up.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-frames-loading.mjs +36 -0
- package/fesm2020/ng-atomic-components-frames-loading.mjs.map +1 -0
- package/fesm2020/ng-atomic-components-frames-overlay.mjs +8 -26
- package/fesm2020/ng-atomic-components-frames-overlay.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-frames-scroll.mjs +6 -26
- package/fesm2020/ng-atomic-components-frames-scroll.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-frames-smart-menu.mjs +7 -21
- package/fesm2020/ng-atomic-components-frames-smart-menu.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-molecules-actions-column.mjs +18 -52
- package/fesm2020/ng-atomic-components-molecules-actions-column.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-molecules-checkbox-column.mjs +18 -43
- package/fesm2020/ng-atomic-components-molecules-checkbox-column.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-molecules-chips-input-field.mjs +24 -62
- package/fesm2020/ng-atomic-components-molecules-chips-input-field.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-molecules-date-input-field.mjs +19 -43
- package/fesm2020/ng-atomic-components-molecules-date-input-field.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-molecules-header.mjs +7 -25
- package/fesm2020/ng-atomic-components-molecules-header.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-molecules-navigation-list-item.mjs +32 -42
- package/fesm2020/ng-atomic-components-molecules-navigation-list-item.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-molecules-select-input-field.mjs +14 -34
- package/fesm2020/ng-atomic-components-molecules-select-input-field.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-molecules-smart-column.mjs +20 -58
- package/fesm2020/ng-atomic-components-molecules-smart-column.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-molecules-text-input-field.mjs +15 -38
- package/fesm2020/ng-atomic-components-molecules-text-input-field.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-molecules-textarea-field.mjs +10 -32
- package/fesm2020/ng-atomic-components-molecules-textarea-field.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-molecules-tree-column.mjs +135 -0
- package/fesm2020/ng-atomic-components-molecules-tree-column.mjs.map +1 -0
- package/fesm2020/ng-atomic-components-organisms-action-buttons-section.mjs +10 -36
- package/fesm2020/ng-atomic-components-organisms-action-buttons-section.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-organisms-back-navigator.mjs +14 -47
- package/fesm2020/ng-atomic-components-organisms-back-navigator.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-organisms-card-input-section.mjs +10 -30
- package/fesm2020/ng-atomic-components-organisms-card-input-section.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-organisms-cvc-and-exp-input-section.mjs +12 -36
- package/fesm2020/ng-atomic-components-organisms-cvc-and-exp-input-section.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-organisms-date-input-section.mjs +12 -32
- package/fesm2020/ng-atomic-components-organisms-date-input-section.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-organisms-filters-section.mjs +136 -0
- package/fesm2020/ng-atomic-components-organisms-filters-section.mjs.map +1 -0
- package/fesm2020/ng-atomic-components-organisms-graphql-editor.mjs +120 -0
- package/fesm2020/ng-atomic-components-organisms-graphql-editor.mjs.map +1 -0
- package/fesm2020/ng-atomic-components-organisms-grid-toolbar.mjs +75 -0
- package/fesm2020/ng-atomic-components-organisms-grid-toolbar.mjs.map +1 -0
- package/fesm2020/ng-atomic-components-organisms-heading.mjs +7 -25
- package/fesm2020/ng-atomic-components-organisms-heading.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-organisms-navigation-list.mjs +12 -37
- package/fesm2020/ng-atomic-components-organisms-navigation-list.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-organisms-navigator.mjs +14 -43
- package/fesm2020/ng-atomic-components-organisms-navigator.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-organisms-paginator.mjs +41 -49
- package/fesm2020/ng-atomic-components-organisms-paginator.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-organisms-select-input-section.mjs +11 -35
- package/fesm2020/ng-atomic-components-organisms-select-input-section.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-organisms-smart-list.mjs +43 -42
- package/fesm2020/ng-atomic-components-organisms-smart-list.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-organisms-smart-table.mjs +43 -73
- package/fesm2020/ng-atomic-components-organisms-smart-table.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-organisms-social-login-section.mjs +10 -33
- package/fesm2020/ng-atomic-components-organisms-social-login-section.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-organisms-text-input-section.mjs +10 -34
- package/fesm2020/ng-atomic-components-organisms-text-input-section.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-organisms-textarea-section.mjs +9 -29
- package/fesm2020/ng-atomic-components-organisms-textarea-section.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-organisms-top-navigator.mjs +12 -43
- package/fesm2020/ng-atomic-components-organisms-top-navigator.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-templates-entrance.mjs +19 -63
- package/fesm2020/ng-atomic-components-templates-entrance.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-templates-loading.mjs +9 -35
- package/fesm2020/ng-atomic-components-templates-loading.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-templates-menu.mjs +9 -30
- package/fesm2020/ng-atomic-components-templates-menu.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-templates-smart-crud.mjs +20 -42
- package/fesm2020/ng-atomic-components-templates-smart-crud.mjs.map +1 -1
- package/fesm2020/ng-atomic-components-templates-smart-index.mjs +35 -34
- package/fesm2020/ng-atomic-components-templates-smart-index.mjs.map +1 -1
- package/frames/auto-layout/auto-layout.frame.d.ts +1 -1
- package/frames/auto-layout/index.d.ts +0 -1
- package/frames/card/card.frame.d.ts +1 -1
- package/frames/card/index.d.ts +0 -1
- package/frames/drawer/drawer.frame.d.ts +1 -1
- package/frames/drawer/index.d.ts +1 -2
- package/frames/fab/fab.frame.d.ts +15 -0
- package/frames/fab/fab.service.d.ts +12 -0
- package/frames/fab/index.d.ts +1 -0
- package/frames/loading/index.d.ts +1 -0
- package/frames/loading/loading.frame.d.ts +6 -0
- package/frames/overlay/index.d.ts +0 -1
- package/frames/overlay/overlay.frame.d.ts +1 -1
- package/frames/scroll/index.d.ts +0 -1
- package/frames/scroll/scroll.frame.d.ts +1 -1
- package/frames/smart-menu/index.d.ts +0 -1
- package/frames/smart-menu/smart-menu.frame.d.ts +1 -1
- package/molecules/actions-column/actions-column.molecule.d.ts +1 -1
- package/molecules/actions-column/index.d.ts +0 -1
- package/molecules/checkbox-column/checkbox-column.molecule.d.ts +1 -1
- package/molecules/checkbox-column/index.d.ts +0 -1
- package/molecules/chips-input-field/chips-input-field.molecule.d.ts +4 -4
- package/molecules/chips-input-field/index.d.ts +0 -1
- package/molecules/date-input-field/date-input-field.molecule.d.ts +5 -5
- package/molecules/date-input-field/index.d.ts +1 -2
- package/molecules/header/header.molecule.d.ts +1 -1
- package/molecules/header/index.d.ts +1 -2
- package/molecules/navigation-list-item/index.d.ts +1 -2
- package/molecules/navigation-list-item/navigation-list-item.molecule.d.ts +1 -1
- package/molecules/select-input-field/index.d.ts +0 -1
- package/molecules/select-input-field/select-input-field.molecule.d.ts +3 -2
- package/molecules/smart-column/index.d.ts +0 -1
- package/molecules/smart-column/smart-column.molecule.d.ts +2 -2
- package/molecules/text-input-field/index.d.ts +1 -2
- package/molecules/text-input-field/text-input-field.molecule.d.ts +3 -2
- package/molecules/textarea-field/index.d.ts +0 -1
- package/molecules/textarea-field/textarea-field.molecule.d.ts +1 -1
- package/molecules/tree-column/index.d.ts +1 -0
- package/molecules/tree-column/tree-column.molecule.d.ts +14 -0
- package/organisms/action-buttons-section/action-buttons-section.organism.d.ts +1 -1
- package/organisms/action-buttons-section/index.d.ts +0 -1
- package/organisms/back-navigator/back-navigator.organism.d.ts +1 -1
- package/organisms/back-navigator/index.d.ts +0 -1
- package/organisms/card-input-section/card-input-section.organism.d.ts +2 -2
- package/organisms/card-input-section/index.d.ts +1 -2
- package/organisms/cvc-and-exp-input-section/cvc-and-exp-input-section.organism.d.ts +1 -1
- package/organisms/cvc-and-exp-input-section/index.d.ts +1 -2
- package/organisms/date-input-section/date-input-section.organism.d.ts +2 -2
- package/organisms/date-input-section/index.d.ts +0 -1
- package/organisms/filters-section/filters-section.organism.d.ts +19 -0
- package/organisms/filters-section/index.d.ts +1 -0
- package/organisms/graphql-editor/graphql-editor.organism.d.ts +37 -0
- package/organisms/graphql-editor/index.d.ts +1 -0
- package/organisms/grid-toolbar/grid-toolbar.organism.d.ts +18 -0
- package/organisms/grid-toolbar/index.d.ts +1 -0
- package/organisms/heading/heading.organism.d.ts +1 -1
- package/organisms/heading/index.d.ts +0 -1
- package/organisms/navigation-list/index.d.ts +1 -2
- package/organisms/navigation-list/navigation-list.organism.d.ts +1 -1
- package/organisms/navigator/index.d.ts +1 -2
- package/organisms/navigator/navigator.organism.d.ts +1 -1
- package/organisms/paginator/index.d.ts +0 -1
- package/organisms/paginator/paginator.organism.d.ts +8 -2
- package/organisms/select-input-section/index.d.ts +0 -1
- package/organisms/select-input-section/select-input-section.organism.d.ts +2 -2
- package/organisms/smart-list/index.d.ts +0 -1
- package/organisms/smart-list/smart-list.organism.d.ts +1 -2
- package/organisms/smart-table/index.d.ts +0 -1
- package/organisms/smart-table/smart-table.organism.d.ts +9 -2
- package/organisms/social-login-section/index.d.ts +0 -1
- package/organisms/social-login-section/social-login-section.organism.d.ts +1 -1
- package/organisms/text-input-section/index.d.ts +1 -2
- package/organisms/text-input-section/text-input-section.organism.d.ts +2 -2
- package/organisms/textarea-section/index.d.ts +1 -2
- package/organisms/textarea-section/textarea-section.organism.d.ts +1 -1
- package/organisms/top-navigator/index.d.ts +0 -1
- package/organisms/top-navigator/top-navigator.organism.d.ts +1 -1
- package/package.json +81 -18
- package/templates/entrance/entrance.template.d.ts +2 -2
- package/templates/entrance/index.d.ts +0 -1
- package/templates/loading/index.d.ts +0 -1
- package/templates/loading/loading.template.d.ts +1 -1
- package/templates/menu/index.d.ts +0 -1
- package/templates/menu/menu.template.d.ts +1 -1
- package/templates/smart-crud/smart-crud.template.d.ts +1 -1
- package/templates/smart-index/smart-index.template.d.ts +10 -3
- package/atoms/chips-input/chips-input.module.d.ts +0 -12
- package/atoms/icon/icon.module.d.ts +0 -9
- package/atoms/smart-menu-button/smart-menu-button.module.d.ts +0 -11
- package/esm2020/atoms/chips-input/chips-input.module.mjs +0 -44
- package/esm2020/atoms/icon/icon.module.mjs +0 -31
- package/esm2020/atoms/smart-menu-button/smart-menu-button.module.mjs +0 -35
- package/esm2020/frames/auto-layout/auto-layout.module.mjs +0 -24
- package/esm2020/frames/card/card.module.mjs +0 -31
- package/esm2020/frames/drawer/drawer.module.mjs +0 -24
- package/esm2020/frames/overlay/overlay.module.mjs +0 -26
- package/esm2020/frames/scroll/scroll.module.mjs +0 -28
- package/esm2020/frames/smart-menu/smart-menu.module.mjs +0 -20
- package/esm2020/molecules/actions-column/actions-column.module.mjs +0 -49
- package/esm2020/molecules/checkbox-column/checkbox-column.module.mjs +0 -39
- package/esm2020/molecules/chips-input-field/chips-input-field.module.mjs +0 -56
- package/esm2020/molecules/date-input-field/date-input-field.module.mjs +0 -38
- package/esm2020/molecules/header/header.module.mjs +0 -24
- package/esm2020/molecules/navigation-list-item/navigation-list-item.module.mjs +0 -38
- package/esm2020/molecules/select-input-field/select-input-field.module.mjs +0 -32
- package/esm2020/molecules/smart-column/smart-column.module.mjs +0 -56
- package/esm2020/molecules/text-input-field/text-input-field.module.mjs +0 -37
- package/esm2020/molecules/textarea-field/textarea-field.module.mjs +0 -32
- package/esm2020/organisms/action-buttons-section/action-buttons-section.module.mjs +0 -34
- package/esm2020/organisms/back-navigator/back-navigator.module.mjs +0 -46
- package/esm2020/organisms/card-input-section/card-input-section.module.mjs +0 -27
- package/esm2020/organisms/cvc-and-exp-input-section/cvc-and-exp-input-section.module.mjs +0 -31
- package/esm2020/organisms/date-input-section/date-input-section.module.mjs +0 -28
- package/esm2020/organisms/heading/heading.module.mjs +0 -24
- package/esm2020/organisms/navigation-list/navigation-list.module.mjs +0 -34
- package/esm2020/organisms/navigator/navigator.module.mjs +0 -42
- package/esm2020/organisms/paginator/paginator.module.mjs +0 -45
- package/esm2020/organisms/select-input-section/select-input-section.module.mjs +0 -31
- package/esm2020/organisms/smart-list/smart-list.module.mjs +0 -39
- package/esm2020/organisms/smart-table/smart-table.module.mjs +0 -69
- package/esm2020/organisms/social-login-section/social-login-section.module.mjs +0 -31
- package/esm2020/organisms/text-input-section/text-input-section.module.mjs +0 -31
- package/esm2020/organisms/textarea-section/textarea-section.module.mjs +0 -27
- package/esm2020/organisms/top-navigator/top-navigator.module.mjs +0 -42
- package/esm2020/templates/entrance/entrance.module.mjs +0 -57
- package/esm2020/templates/loading/loading.module.mjs +0 -34
- package/esm2020/templates/menu/menu.module.mjs +0 -28
- package/frames/auto-layout/auto-layout.module.d.ts +0 -8
- package/frames/card/card.module.d.ts +0 -9
- package/frames/drawer/drawer.module.d.ts +0 -9
- package/frames/overlay/overlay.module.d.ts +0 -9
- package/frames/scroll/scroll.module.d.ts +0 -9
- package/frames/smart-menu/smart-menu.module.d.ts +0 -8
- package/molecules/actions-column/actions-column.module.d.ts +0 -13
- package/molecules/checkbox-column/checkbox-column.module.d.ts +0 -10
- package/molecules/chips-input-field/chips-input-field.module.d.ts +0 -14
- package/molecules/date-input-field/date-input-field.module.d.ts +0 -12
- package/molecules/header/header.module.d.ts +0 -8
- package/molecules/navigation-list-item/navigation-list-item.module.d.ts +0 -10
- package/molecules/select-input-field/select-input-field.module.d.ts +0 -10
- package/molecules/smart-column/smart-column.module.d.ts +0 -15
- package/molecules/text-input-field/text-input-field.module.d.ts +0 -10
- package/molecules/textarea-field/textarea-field.module.d.ts +0 -10
- package/organisms/action-buttons-section/action-buttons-section.module.d.ts +0 -9
- package/organisms/back-navigator/back-navigator.module.d.ts +0 -12
- package/organisms/card-input-section/card-input-section.module.d.ts +0 -9
- package/organisms/cvc-and-exp-input-section/cvc-and-exp-input-section.module.d.ts +0 -10
- package/organisms/date-input-section/date-input-section.module.d.ts +0 -9
- package/organisms/heading/heading.module.d.ts +0 -8
- package/organisms/navigation-list/navigation-list.module.d.ts +0 -10
- package/organisms/navigator/navigator.module.d.ts +0 -12
- package/organisms/paginator/paginator.module.d.ts +0 -11
- package/organisms/select-input-section/select-input-section.module.d.ts +0 -9
- package/organisms/smart-list/smart-list.module.d.ts +0 -12
- package/organisms/smart-table/smart-table.module.d.ts +0 -17
- package/organisms/social-login-section/social-login-section.module.d.ts +0 -9
- package/organisms/text-input-section/text-input-section.module.d.ts +0 -9
- package/organisms/textarea-section/textarea-section.module.d.ts +0 -9
- package/organisms/top-navigator/top-navigator.module.d.ts +0 -11
- package/templates/entrance/entrance.module.d.ts +0 -14
- package/templates/loading/loading.module.d.ts +0 -9
- package/templates/menu/menu.module.d.ts +0 -9
|
@@ -1,15 +1,21 @@
|
|
|
1
1
|
import { COMMA, ENTER, SPACE } from '@angular/cdk/keycodes';
|
|
2
2
|
import { ChangeDetectorRef, Component, Input } from '@angular/core';
|
|
3
|
-
import {
|
|
3
|
+
import { MatChipsModule } from '@angular/material/chips';
|
|
4
|
+
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
5
|
+
import { FormControl, ReactiveFormsModule } from '@angular/forms';
|
|
4
6
|
import { ReplaySubject, takeUntil } from 'rxjs';
|
|
5
7
|
import { ChipsManager } from '@ng-atomic/common/services/chips-manager';
|
|
8
|
+
import { CommonModule } from '@angular/common';
|
|
9
|
+
import { MatIconModule } from '@angular/material/icon';
|
|
10
|
+
import { MatInputModule } from '@angular/material/input';
|
|
11
|
+
import { ChipsInputAtom } from '@ng-atomic/components/atoms/chips-input';
|
|
6
12
|
import * as i0 from "@angular/core";
|
|
7
13
|
import * as i1 from "@ng-atomic/common/services/chips-manager";
|
|
8
14
|
import * as i2 from "@angular/common";
|
|
9
|
-
import * as i3 from "@angular/material/
|
|
15
|
+
import * as i3 from "@angular/material/chips";
|
|
10
16
|
import * as i4 from "@angular/material/icon";
|
|
11
|
-
import * as i5 from "@angular/material/
|
|
12
|
-
import * as i6 from "@angular/material/
|
|
17
|
+
import * as i5 from "@angular/material/input";
|
|
18
|
+
import * as i6 from "@angular/material/form-field";
|
|
13
19
|
export class ChipsInputFieldMolecule {
|
|
14
20
|
constructor(cd, chipsManager) {
|
|
15
21
|
this.cd = cd;
|
|
@@ -44,10 +50,19 @@ export class ChipsInputFieldMolecule {
|
|
|
44
50
|
}
|
|
45
51
|
}
|
|
46
52
|
ChipsInputFieldMolecule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ChipsInputFieldMolecule, deps: [{ token: i0.ChangeDetectorRef }, { token: i1.ChipsManager }], target: i0.ɵɵFactoryTarget.Component });
|
|
47
|
-
ChipsInputFieldMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.3", type: ChipsInputFieldMolecule, selector: "molecules-chips-input-field", inputs: { appearance: "appearance", control: "control", floatLabel: "floatLabel", label: "label", hint: "hint", placeholder: "placeholder", separators: "separators" }, providers: [ChipsManager], ngImport: i0, template: "<mat-form-field [appearance]=\"appearance\" [floatLabel]=\"floatLabel\">\n <mat-label>{{ label }}</mat-label>\n <mat-chip-
|
|
53
|
+
ChipsInputFieldMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.3", type: ChipsInputFieldMolecule, isStandalone: true, selector: "molecules-chips-input-field", inputs: { appearance: "appearance", control: "control", floatLabel: "floatLabel", label: "label", hint: "hint", placeholder: "placeholder", separators: "separators" }, providers: [ChipsManager], ngImport: i0, template: "<mat-form-field [appearance]=\"appearance\" [floatLabel]=\"floatLabel\">\n <mat-label>{{ label }}</mat-label>\n <mat-chip-grid #chipGrid aria-label=\"Enter fruits\">\n <mat-chip-row *ngFor=\"let chip of chipsManager.chips\"\n (removed)=\"remove(chip)\"\n [editable]=\"false\"\n >\n {{ chip }}\n <button matChipRemove><mat-icon>cancel</mat-icon></button>\n </mat-chip-row>\n <input\n matInput\n [placeholder]=\"placeholder\"\n [matChipInputFor]=\"chipGrid\"\n [matChipInputSeparatorKeyCodes]=\"separators\"\n [matChipInputAddOnBlur]=\"true\"\n (matChipInputTokenEnd)=\"onChiInputTokenEnd($event)\"\n >\n </mat-chip-grid>\n <mat-hint *ngIf=\"hint\">{{ hint }}</mat-hint>\n</mat-form-field>", styles: [":host{display:flex;justify-content:flex-start;align-items:center;width:100%;height:100%}:host mat-form-field{width:100%;height:100%}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i3.MatChipGrid, selector: "mat-chip-grid", inputs: ["tabIndex", "disabled", "placeholder", "required", "value", "errorStateMatcher"], outputs: ["change", "valueChange"] }, { kind: "directive", type: i3.MatChipInput, selector: "input[matChipInputFor]", inputs: ["matChipInputFor", "matChipInputAddOnBlur", "matChipInputSeparatorKeyCodes", "placeholder", "id", "disabled"], outputs: ["matChipInputTokenEnd"], exportAs: ["matChipInput", "matChipInputFor"] }, { kind: "directive", type: i3.MatChipRemove, selector: "[matChipRemove]" }, { kind: "component", type: i3.MatChipRow, selector: "mat-chip-row, [mat-chip-row], mat-basic-chip-row, [mat-basic-chip-row]", inputs: ["color", "disabled", "disableRipple", "tabIndex", "editable"], outputs: ["edited"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i5.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "component", type: i6.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i6.MatLabel, selector: "mat-label" }, { kind: "directive", type: i6.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "ngmodule", type: MatFormFieldModule }] });
|
|
48
54
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ChipsInputFieldMolecule, decorators: [{
|
|
49
55
|
type: Component,
|
|
50
|
-
args: [{ selector: 'molecules-chips-input-field',
|
|
56
|
+
args: [{ selector: 'molecules-chips-input-field', standalone: true, imports: [
|
|
57
|
+
CommonModule,
|
|
58
|
+
ReactiveFormsModule,
|
|
59
|
+
MatChipsModule,
|
|
60
|
+
MatIconModule,
|
|
61
|
+
MatInputModule,
|
|
62
|
+
MatFormFieldModule,
|
|
63
|
+
MatInputModule,
|
|
64
|
+
ChipsInputAtom,
|
|
65
|
+
], providers: [ChipsManager], template: "<mat-form-field [appearance]=\"appearance\" [floatLabel]=\"floatLabel\">\n <mat-label>{{ label }}</mat-label>\n <mat-chip-grid #chipGrid aria-label=\"Enter fruits\">\n <mat-chip-row *ngFor=\"let chip of chipsManager.chips\"\n (removed)=\"remove(chip)\"\n [editable]=\"false\"\n >\n {{ chip }}\n <button matChipRemove><mat-icon>cancel</mat-icon></button>\n </mat-chip-row>\n <input\n matInput\n [placeholder]=\"placeholder\"\n [matChipInputFor]=\"chipGrid\"\n [matChipInputSeparatorKeyCodes]=\"separators\"\n [matChipInputAddOnBlur]=\"true\"\n (matChipInputTokenEnd)=\"onChiInputTokenEnd($event)\"\n >\n </mat-chip-grid>\n <mat-hint *ngIf=\"hint\">{{ hint }}</mat-hint>\n</mat-form-field>", styles: [":host{display:flex;justify-content:flex-start;align-items:center;width:100%;height:100%}:host mat-form-field{width:100%;height:100%}\n"] }]
|
|
51
66
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i1.ChipsManager }]; }, propDecorators: { appearance: [{
|
|
52
67
|
type: Input
|
|
53
68
|
}], control: [{
|
|
@@ -63,4 +78,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
|
|
|
63
78
|
}], separators: [{
|
|
64
79
|
type: Input
|
|
65
80
|
}] } });
|
|
66
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
81
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hpcHMtaW5wdXQtZmllbGQubW9sZWN1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL21vbGVjdWxlcy9jaGlwcy1pbnB1dC1maWVsZC9jaGlwcy1pbnB1dC1maWVsZC5tb2xlY3VsZS50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL0BuZy1hdG9taWMvY29tcG9uZW50cy9zcmMvbW9sZWN1bGVzL2NoaXBzLWlucHV0LWZpZWxkL2NoaXBzLWlucHV0LWZpZWxkLm1vbGVjdWxlLmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLEtBQUssRUFBRSxLQUFLLEVBQUUsS0FBSyxFQUFFLE1BQU0sdUJBQXVCLENBQUM7QUFDNUQsT0FBTyxFQUFFLGlCQUFpQixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDcEUsT0FBTyxFQUFxQixjQUFjLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUM1RSxPQUFPLEVBQTBCLGtCQUFrQixFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDMUYsT0FBTyxFQUFFLFdBQVcsRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxhQUFhLEVBQUUsU0FBUyxFQUFFLE1BQU0sTUFBTSxDQUFDO0FBQ2hELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSwwQ0FBMEMsQ0FBQztBQUN4RSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN6RCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0seUNBQXlDLENBQUM7Ozs7Ozs7O0FBcUJ6RSxNQUFNLE9BQU8sdUJBQXVCO0lBeUJsQyxZQUNVLEVBQXFCLEVBQ3RCLFlBQTBCO1FBRHpCLE9BQUUsR0FBRixFQUFFLENBQW1CO1FBQ3RCLGlCQUFZLEdBQVosWUFBWSxDQUFjO1FBeEJuQyxlQUFVLEdBQTJCLFNBQVMsQ0FBQztRQUcvQyxZQUFPLEdBQUcsSUFBSSxXQUFXLENBQVMsRUFBRSxDQUFDLENBQUM7UUFHdEMsZUFBVSxHQUFHLE1BQU0sQ0FBQztRQUdwQixVQUFLLEdBQUcsT0FBTyxDQUFDO1FBR2hCLFNBQUksR0FBRyxNQUFNLENBQUM7UUFHZCxnQkFBVyxHQUFHLGFBQWEsQ0FBQztRQUc1QixlQUFVLEdBQUcsQ0FBQyxLQUFLLEVBQUUsS0FBSyxFQUFFLEtBQUssQ0FBVSxDQUFDO1FBRTNCLGFBQVEsR0FBRyxJQUFJLGFBQWEsQ0FBTyxDQUFDLENBQUMsQ0FBQztJQUtuRCxDQUFDO0lBRUwsUUFBUTtRQUNOLElBQUksQ0FBQyxZQUFZLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsS0FBTSxDQUFDLENBQUM7UUFDaEQsSUFBSSxDQUFDLE9BQU8sQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUM1QixTQUFTLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUN6QixDQUFDLFNBQVMsQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFO1lBQ3BCLElBQUksQ0FBQyxZQUFZLENBQUMsUUFBUSxDQUFDLEtBQU0sQ0FBQyxDQUFDO1lBQ25DLElBQUksQ0FBQyxFQUFFLENBQUMsWUFBWSxFQUFFLENBQUM7UUFDekIsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQsV0FBVztRQUNULElBQUksQ0FBQyxRQUFRLENBQUMsSUFBSSxFQUFFLENBQUM7SUFDdkIsQ0FBQztJQUVELGtCQUFrQixDQUFDLEtBQXdCO1FBQ3pDLElBQUksQ0FBQyxZQUFZLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUNuQyxJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLFFBQVEsRUFBRSxDQUFDLENBQUM7UUFDcEQsS0FBSyxDQUFDLEtBQUssQ0FBQyxLQUFLLEdBQUcsRUFBRSxDQUFDO0lBQ3pCLENBQUM7SUFFRCxNQUFNLENBQUMsS0FBYTtRQUNsQixJQUFJLENBQUMsWUFBWSxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUNoQyxJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLFFBQVEsRUFBRSxDQUFDLENBQUM7SUFDdEQsQ0FBQzs7b0hBckRVLHVCQUF1Qjt3R0FBdkIsdUJBQXVCLGtQQUZ2QixDQUFDLFlBQVksQ0FBQywwQkM3QjNCLHN2QkFvQmlCLCtMREhiLFlBQVksK1BBQ1osbUJBQW1CLDhCQUNuQixjQUFjLDB5QkFDZCxhQUFhLG1MQUNiLGNBQWMsOHNCQUNkLGtCQUFrQjsyRkFTVCx1QkFBdUI7a0JBbEJuQyxTQUFTOytCQUNFLDZCQUE2QixjQUMzQixJQUFJLFdBQ1A7d0JBQ1AsWUFBWTt3QkFDWixtQkFBbUI7d0JBQ25CLGNBQWM7d0JBQ2QsYUFBYTt3QkFDYixjQUFjO3dCQUNkLGtCQUFrQjt3QkFDbEIsY0FBYzt3QkFDZCxjQUFjO3FCQUNmLGFBSVUsQ0FBQyxZQUFZLENBQUM7bUlBS3pCLFVBQVU7c0JBRFQsS0FBSztnQkFJTixPQUFPO3NCQUROLEtBQUs7Z0JBSU4sVUFBVTtzQkFEVCxLQUFLO2dCQUlOLEtBQUs7c0JBREosS0FBSztnQkFJTixJQUFJO3NCQURILEtBQUs7Z0JBSU4sV0FBVztzQkFEVixLQUFLO2dCQUlOLFVBQVU7c0JBRFQsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENPTU1BLCBFTlRFUiwgU1BBQ0UgfSBmcm9tICdAYW5ndWxhci9jZGsva2V5Y29kZXMnO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0b3JSZWYsIENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IE1hdENoaXBJbnB1dEV2ZW50LCBNYXRDaGlwc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2NoaXBzJztcbmltcG9ydCB7IE1hdEZvcm1GaWVsZEFwcGVhcmFuY2UsIE1hdEZvcm1GaWVsZE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2Zvcm0tZmllbGQnO1xuaW1wb3J0IHsgRm9ybUNvbnRyb2wsIFJlYWN0aXZlRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBSZXBsYXlTdWJqZWN0LCB0YWtlVW50aWwgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IENoaXBzTWFuYWdlciB9IGZyb20gJ0BuZy1hdG9taWMvY29tbW9uL3NlcnZpY2VzL2NoaXBzLW1hbmFnZXInO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE1hdEljb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9pY29uJztcbmltcG9ydCB7IE1hdElucHV0TW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvaW5wdXQnO1xuaW1wb3J0IHsgQ2hpcHNJbnB1dEF0b20gfSBmcm9tICdAbmctYXRvbWljL2NvbXBvbmVudHMvYXRvbXMvY2hpcHMtaW5wdXQnO1xuXG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ21vbGVjdWxlcy1jaGlwcy1pbnB1dC1maWVsZCcsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgUmVhY3RpdmVGb3Jtc01vZHVsZSxcbiAgICBNYXRDaGlwc01vZHVsZSxcbiAgICBNYXRJY29uTW9kdWxlLFxuICAgIE1hdElucHV0TW9kdWxlLFxuICAgIE1hdEZvcm1GaWVsZE1vZHVsZSxcbiAgICBNYXRJbnB1dE1vZHVsZSxcbiAgICBDaGlwc0lucHV0QXRvbSxcbiAgXSxcbiAgdGVtcGxhdGVVcmw6ICcuL2NoaXBzLWlucHV0LWZpZWxkLm1vbGVjdWxlLmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9jaGlwcy1pbnB1dC1maWVsZC5tb2xlY3VsZS5zY3NzJ10sXG4gIC8vIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBwcm92aWRlcnM6IFtDaGlwc01hbmFnZXJdLFxufSlcbmV4cG9ydCBjbGFzcyBDaGlwc0lucHV0RmllbGRNb2xlY3VsZSB7XG5cbiAgQElucHV0KClcbiAgYXBwZWFyYW5jZTogTWF0Rm9ybUZpZWxkQXBwZWFyYW5jZSA9ICdvdXRsaW5lJztcblxuICBASW5wdXQoKVxuICBjb250cm9sID0gbmV3IEZvcm1Db250cm9sPHN0cmluZz4oJycpO1xuXG4gIEBJbnB1dCgpXG4gIGZsb2F0TGFiZWwgPSAnYXV0byc7XG5cbiAgQElucHV0KClcbiAgbGFiZWwgPSAnbGFiZWwnO1xuXG4gIEBJbnB1dCgpXG4gIGhpbnQgPSAnaGludCc7XG5cbiAgQElucHV0KClcbiAgcGxhY2Vob2xkZXIgPSAncGxhY2Vob2xkZXInO1xuXG4gIEBJbnB1dCgpXG4gIHNlcGFyYXRvcnMgPSBbRU5URVIsIENPTU1BLCBTUEFDRV0gYXMgY29uc3Q7XG5cbiAgcHJpdmF0ZSByZWFkb25seSBkZXN0cm95JCA9IG5ldyBSZXBsYXlTdWJqZWN0PHZvaWQ+KDEpO1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgY2Q6IENoYW5nZURldGVjdG9yUmVmLFxuICAgIHB1YmxpYyBjaGlwc01hbmFnZXI6IENoaXBzTWFuYWdlcixcbiAgKSB7IH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLmNoaXBzTWFuYWdlci5zZXRWYWx1ZSh0aGlzLmNvbnRyb2wudmFsdWUhKTtcbiAgICB0aGlzLmNvbnRyb2wudmFsdWVDaGFuZ2VzLnBpcGUoXG4gICAgICB0YWtlVW50aWwodGhpcy5kZXN0cm95JCksXG4gICAgKS5zdWJzY3JpYmUoKHZhbHVlKSA9PiB7XG4gICAgICB0aGlzLmNoaXBzTWFuYWdlci5zZXRWYWx1ZSh2YWx1ZSEpO1xuICAgICAgdGhpcy5jZC5tYXJrRm9yQ2hlY2soKTtcbiAgICB9KTtcbiAgfVxuXG4gIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMuZGVzdHJveSQubmV4dCgpO1xuICB9XG5cbiAgb25DaGlJbnB1dFRva2VuRW5kKGV2ZW50OiBNYXRDaGlwSW5wdXRFdmVudCk6IHZvaWQge1xuICAgIHRoaXMuY2hpcHNNYW5hZ2VyLmFkZChldmVudC52YWx1ZSk7XG4gICAgdGhpcy5jb250cm9sLnNldFZhbHVlKHRoaXMuY2hpcHNNYW5hZ2VyLmdldFZhbHVlKCkpO1xuICAgIGV2ZW50LmlucHV0LnZhbHVlID0gJyc7XG4gIH1cblxuICByZW1vdmUodmFsdWU6IHN0cmluZyk6IHZvaWQge1xuICAgIHRoaXMuY2hpcHNNYW5hZ2VyLnJlbW92ZSh2YWx1ZSk7XG4gICAgdGhpcy5jb250cm9sLnNldFZhbHVlKHRoaXMuY2hpcHNNYW5hZ2VyLmdldFZhbHVlKCkpO1xuICB9XG59XG4iLCI8bWF0LWZvcm0tZmllbGQgW2FwcGVhcmFuY2VdPVwiYXBwZWFyYW5jZVwiIFtmbG9hdExhYmVsXT1cImZsb2F0TGFiZWxcIj5cbiAgPG1hdC1sYWJlbD57eyBsYWJlbCB9fTwvbWF0LWxhYmVsPlxuICA8bWF0LWNoaXAtZ3JpZCAjY2hpcEdyaWQgYXJpYS1sYWJlbD1cIkVudGVyIGZydWl0c1wiPlxuICAgIDxtYXQtY2hpcC1yb3cgKm5nRm9yPVwibGV0IGNoaXAgb2YgY2hpcHNNYW5hZ2VyLmNoaXBzXCJcbiAgICAgIChyZW1vdmVkKT1cInJlbW92ZShjaGlwKVwiXG4gICAgICBbZWRpdGFibGVdPVwiZmFsc2VcIlxuICAgID5cbiAgICAgIHt7IGNoaXAgfX1cbiAgICAgIDxidXR0b24gbWF0Q2hpcFJlbW92ZT48bWF0LWljb24+Y2FuY2VsPC9tYXQtaWNvbj48L2J1dHRvbj5cbiAgICA8L21hdC1jaGlwLXJvdz5cbiAgICA8aW5wdXRcbiAgICAgIG1hdElucHV0XG4gICAgICBbcGxhY2Vob2xkZXJdPVwicGxhY2Vob2xkZXJcIlxuICAgICAgW21hdENoaXBJbnB1dEZvcl09XCJjaGlwR3JpZFwiXG4gICAgICBbbWF0Q2hpcElucHV0U2VwYXJhdG9yS2V5Q29kZXNdPVwic2VwYXJhdG9yc1wiXG4gICAgICBbbWF0Q2hpcElucHV0QWRkT25CbHVyXT1cInRydWVcIlxuICAgICAgKG1hdENoaXBJbnB1dFRva2VuRW5kKT1cIm9uQ2hpSW5wdXRUb2tlbkVuZCgkZXZlbnQpXCJcbiAgICA+XG4gIDwvbWF0LWNoaXAtZ3JpZD5cbiAgPG1hdC1oaW50ICpuZ0lmPVwiaGludFwiPnt7IGhpbnQgfX08L21hdC1oaW50PlxuPC9tYXQtZm9ybS1maWVsZD4iXX0=
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export { ChipsInputFieldModule } from './chips-input-field.module';
|
|
2
1
|
export * from './chips-input-field.molecule';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL21vbGVjdWxlcy9jaGlwcy1pbnB1dC1maWVsZC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDhCQUE4QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jaGlwcy1pbnB1dC1maWVsZC5tb2xlY3VsZSc7XG4iXX0=
|
|
@@ -1,16 +1,21 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
1
2
|
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
2
|
-
import { FormControl } from '@
|
|
3
|
+
import { FormControl, ReactiveFormsModule } from '@angular/forms';
|
|
4
|
+
import { MatDatepickerModule } from '@angular/material/datepicker';
|
|
5
|
+
import { MatInputModule } from '@angular/material/input';
|
|
6
|
+
import { MatDayjsDateModule } from '@ng-atomic/common/utils';
|
|
7
|
+
import dayjs from 'dayjs';
|
|
3
8
|
import { filter } from 'rxjs/operators';
|
|
4
9
|
import * as i0 from "@angular/core";
|
|
5
10
|
import * as i1 from "@angular/common";
|
|
6
11
|
import * as i2 from "@angular/forms";
|
|
7
|
-
import * as i3 from "@angular/material/
|
|
8
|
-
import * as i4 from "@angular/material/
|
|
12
|
+
import * as i3 from "@angular/material/input";
|
|
13
|
+
import * as i4 from "@angular/material/form-field";
|
|
9
14
|
import * as i5 from "@angular/material/datepicker";
|
|
10
15
|
export class DateInputFieldMolecule {
|
|
11
16
|
constructor() {
|
|
12
|
-
this._control = new FormControl();
|
|
13
|
-
this.control = new FormControl();
|
|
17
|
+
this._control = new FormControl(dayjs());
|
|
18
|
+
this.control = new FormControl(dayjs());
|
|
14
19
|
this.label = '';
|
|
15
20
|
this.placeholder = '';
|
|
16
21
|
}
|
|
@@ -21,10 +26,16 @@ export class DateInputFieldMolecule {
|
|
|
21
26
|
}
|
|
22
27
|
}
|
|
23
28
|
DateInputFieldMolecule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: DateInputFieldMolecule, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
24
|
-
DateInputFieldMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.3", type: DateInputFieldMolecule, selector: "molecules-date-input-field", inputs: { control: "control", label: "label", placeholder: "placeholder", hint: "hint" }, host: { classAttribute: "molecule field" }, ngImport: i0, template: "<mat-form-field appearance=\"outline\">\n <mat-label>{{ label }}</mat-label>\n <input matInput [formControl]=\"_control\" [placeholder]=\"placeholder\" [matDatepicker]=\"picker\">\n <mat-datepicker-toggle matSuffix [for]=\"picker\"></mat-datepicker-toggle>\n <mat-datepicker #picker></mat-datepicker>\n <mat-hint *ngIf=\"hint\">{{ hint }}</mat-hint>\n</mat-form-field>", styles: [":host{--horizontal-padding: 16px;--horizontal-padding-SCOPED-IN-date-input-field-
|
|
29
|
+
DateInputFieldMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.3", type: DateInputFieldMolecule, isStandalone: true, selector: "molecules-date-input-field", inputs: { control: "control", label: "label", placeholder: "placeholder", hint: "hint" }, host: { classAttribute: "molecule field" }, ngImport: i0, template: "<mat-form-field appearance=\"outline\">\n <mat-label>{{ label }}</mat-label>\n <input matInput [formControl]=\"_control\" [placeholder]=\"placeholder\" [matDatepicker]=\"picker\">\n <mat-datepicker-toggle matSuffix [for]=\"picker\"></mat-datepicker-toggle>\n <mat-datepicker #picker></mat-datepicker>\n <mat-hint *ngIf=\"hint\">{{ hint }}</mat-hint>\n</mat-form-field>", styles: [":host{--horizontal-padding: 16px;--horizontal-padding-SCOPED-IN-date-input-field-KaSF: var(--horizontal-padding)}:host{display:block;width:100%}:host mat-form-field{width:100%}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "component", type: i4.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i4.MatLabel, selector: "mat-label" }, { kind: "directive", type: i4.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i4.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "ngmodule", type: MatDatepickerModule }, { kind: "component", type: i5.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }, { kind: "directive", type: i5.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { kind: "component", type: i5.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { kind: "ngmodule", type: MatDayjsDateModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
25
30
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: DateInputFieldMolecule, decorators: [{
|
|
26
31
|
type: Component,
|
|
27
|
-
args: [{ selector: 'molecules-date-input-field',
|
|
32
|
+
args: [{ selector: 'molecules-date-input-field', standalone: true, imports: [
|
|
33
|
+
CommonModule,
|
|
34
|
+
ReactiveFormsModule,
|
|
35
|
+
MatInputModule,
|
|
36
|
+
MatDatepickerModule,
|
|
37
|
+
MatDayjsDateModule,
|
|
38
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, host: { class: 'molecule field' }, template: "<mat-form-field appearance=\"outline\">\n <mat-label>{{ label }}</mat-label>\n <input matInput [formControl]=\"_control\" [placeholder]=\"placeholder\" [matDatepicker]=\"picker\">\n <mat-datepicker-toggle matSuffix [for]=\"picker\"></mat-datepicker-toggle>\n <mat-datepicker #picker></mat-datepicker>\n <mat-hint *ngIf=\"hint\">{{ hint }}</mat-hint>\n</mat-form-field>", styles: [":host{--horizontal-padding: 16px;--horizontal-padding-SCOPED-IN-date-input-field-KaSF: var(--horizontal-padding)}:host{display:block;width:100%}:host mat-form-field{width:100%}\n"] }]
|
|
28
39
|
}], propDecorators: { control: [{
|
|
29
40
|
type: Input
|
|
30
41
|
}], label: [{
|
|
@@ -34,4 +45,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImpor
|
|
|
34
45
|
}], hint: [{
|
|
35
46
|
type: Input
|
|
36
47
|
}] } });
|
|
37
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
48
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS1pbnB1dC1maWVsZC5tb2xlY3VsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL0BuZy1hdG9taWMvY29tcG9uZW50cy9zcmMvbW9sZWN1bGVzL2RhdGUtaW5wdXQtZmllbGQvZGF0ZS1pbnB1dC1maWVsZC5tb2xlY3VsZS50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL0BuZy1hdG9taWMvY29tcG9uZW50cy9zcmMvbW9sZWN1bGVzL2RhdGUtaW5wdXQtZmllbGQvZGF0ZS1pbnB1dC1maWVsZC5tb2xlY3VsZS5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxRSxPQUFPLEVBQUUsV0FBVyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDbEUsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDbkUsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQ3pELE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQzdELE9BQU8sS0FBZ0IsTUFBTSxPQUFPLENBQUM7QUFDckMsT0FBTyxFQUFFLE1BQU0sRUFBRSxNQUFNLGdCQUFnQixDQUFDOzs7Ozs7O0FBaUJ4QyxNQUFNLE9BQU8sc0JBQXNCO0lBZm5DO1FBZ0JxQixhQUFRLEdBQUcsSUFBSSxXQUFXLENBQVEsS0FBSyxFQUFFLENBQUMsQ0FBQztRQUc5RCxZQUFPLEdBQUcsSUFBSSxXQUFXLENBQVEsS0FBSyxFQUFFLENBQUMsQ0FBQztRQUcxQyxVQUFLLEdBQUcsRUFBRSxDQUFDO1FBR1gsZ0JBQVcsR0FBRyxFQUFFLENBQUM7S0FhbEI7SUFSQyxRQUFRO1FBQ04sSUFBSSxDQUFDLFFBQVEsQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUM3QixNQUFNLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLEtBQUssS0FBSyxLQUFLLENBQUMsQ0FDOUMsQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO1FBRW5ELElBQUksQ0FBQyxPQUFPLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUM7UUFDNUUsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUM3QyxDQUFDOzttSEF0QlUsc0JBQXNCO3VHQUF0QixzQkFBc0IsNE5DeEJuQyx1WEFNaUIsMk9ET2IsWUFBWSxrSUFDWixtQkFBbUIseWtCQUNuQixjQUFjLCswQkFDZCxtQkFBbUIsaWdCQUNuQixrQkFBa0I7MkZBT1Qsc0JBQXNCO2tCQWZsQyxTQUFTOytCQUNFLDRCQUE0QixjQUMxQixJQUFJLFdBQ1A7d0JBQ1AsWUFBWTt3QkFDWixtQkFBbUI7d0JBQ25CLGNBQWM7d0JBQ2QsbUJBQW1CO3dCQUNuQixrQkFBa0I7cUJBQ25CLG1CQUdnQix1QkFBdUIsQ0FBQyxNQUFNLFFBQ3pDLEVBQUMsS0FBSyxFQUFFLGdCQUFnQixFQUFDOzhCQU0vQixPQUFPO3NCQUROLEtBQUs7Z0JBSU4sS0FBSztzQkFESixLQUFLO2dCQUlOLFdBQVc7c0JBRFYsS0FBSztnQkFJTixJQUFJO3NCQURILEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvcm1Db250cm9sLCBSZWFjdGl2ZUZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHsgTWF0RGF0ZXBpY2tlck1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2RhdGVwaWNrZXInO1xuaW1wb3J0IHsgTWF0SW5wdXRNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9pbnB1dCc7XG5pbXBvcnQgeyBNYXREYXlqc0RhdGVNb2R1bGUgfSBmcm9tICdAbmctYXRvbWljL2NvbW1vbi91dGlscyc7XG5pbXBvcnQgZGF5anMsIHsgRGF5anMgfSBmcm9tICdkYXlqcyc7XG5pbXBvcnQgeyBmaWx0ZXIgfSBmcm9tICdyeGpzL29wZXJhdG9ycyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ21vbGVjdWxlcy1kYXRlLWlucHV0LWZpZWxkJyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxuICAgIE1hdElucHV0TW9kdWxlLFxuICAgIE1hdERhdGVwaWNrZXJNb2R1bGUsXG4gICAgTWF0RGF5anNEYXRlTW9kdWxlLFxuICBdLFxuICB0ZW1wbGF0ZVVybDogJy4vZGF0ZS1pbnB1dC1maWVsZC5tb2xlY3VsZS5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZGF0ZS1pbnB1dC1maWVsZC5tb2xlY3VsZS5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBob3N0OiB7Y2xhc3M6ICdtb2xlY3VsZSBmaWVsZCd9LFxufSlcbmV4cG9ydCBjbGFzcyBEYXRlSW5wdXRGaWVsZE1vbGVjdWxlIHtcbiAgcHJvdGVjdGVkIHJlYWRvbmx5IF9jb250cm9sID0gbmV3IEZvcm1Db250cm9sPERheWpzPihkYXlqcygpKTtcblxuICBASW5wdXQoKVxuICBjb250cm9sID0gbmV3IEZvcm1Db250cm9sPERheWpzPihkYXlqcygpKTtcblxuICBASW5wdXQoKVxuICBsYWJlbCA9ICcnO1xuXG4gIEBJbnB1dCgpXG4gIHBsYWNlaG9sZGVyID0gJyc7XG5cbiAgQElucHV0KClcbiAgaGludD86IHN0cmluZztcblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLl9jb250cm9sLnZhbHVlQ2hhbmdlcy5waXBlKFxuICAgICAgZmlsdGVyKHZhbHVlID0+IHRoaXMuY29udHJvbC52YWx1ZSAhPT0gdmFsdWUpLFxuICAgICkuc3Vic2NyaWJlKHZhbHVlID0+IHRoaXMuY29udHJvbC5zZXRWYWx1ZSh2YWx1ZSkpO1xuXG4gICAgdGhpcy5jb250cm9sLnZhbHVlQ2hhbmdlcy5zdWJzY3JpYmUodmFsdWUgPT4gdGhpcy5fY29udHJvbC5zZXRWYWx1ZSh2YWx1ZSkpO1xuICAgIHRoaXMuX2NvbnRyb2wuc2V0VmFsdWUodGhpcy5jb250cm9sLnZhbHVlKTtcbiAgfVxufVxuIiwiPG1hdC1mb3JtLWZpZWxkIGFwcGVhcmFuY2U9XCJvdXRsaW5lXCI+XG4gIDxtYXQtbGFiZWw+e3sgbGFiZWwgfX08L21hdC1sYWJlbD5cbiAgPGlucHV0IG1hdElucHV0IFtmb3JtQ29udHJvbF09XCJfY29udHJvbFwiIFtwbGFjZWhvbGRlcl09XCJwbGFjZWhvbGRlclwiIFttYXREYXRlcGlja2VyXT1cInBpY2tlclwiPlxuICA8bWF0LWRhdGVwaWNrZXItdG9nZ2xlIG1hdFN1ZmZpeCBbZm9yXT1cInBpY2tlclwiPjwvbWF0LWRhdGVwaWNrZXItdG9nZ2xlPlxuICA8bWF0LWRhdGVwaWNrZXIgI3BpY2tlcj48L21hdC1kYXRlcGlja2VyPlxuICA8bWF0LWhpbnQgKm5nSWY9XCJoaW50XCI+e3sgaGludCB9fTwvbWF0LWhpbnQ+XG48L21hdC1mb3JtLWZpZWxkPiJdfQ==
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL21vbGVjdWxlcy9kYXRlLWlucHV0LWZpZWxkL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQ3JFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLDJCQUEyQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHsgRGF0ZUlucHV0RmllbGRNb2xlY3VsZSB9IGZyb20gJy4vZGF0ZS1pbnB1dC1maWVsZC5tb2xlY3VsZSc7XG5leHBvcnQgeyBEYXRlSW5wdXRGaWVsZE1vZHVsZSB9IGZyb20gJy4vZGF0ZS1pbnB1dC1maWVsZC5tb2R1bGUnO1xuIl19
|
|
1
|
+
export * from './date-input-field.molecule';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL21vbGVjdWxlcy9kYXRlLWlucHV0LWZpZWxkL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsNkJBQTZCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2RhdGUtaW5wdXQtZmllbGQubW9sZWN1bGUnO1xuIl19
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
1
2
|
import { Component, ChangeDetectionStrategy, Input } from '@angular/core';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export class HeaderMolecule {
|
|
@@ -6,13 +7,15 @@ export class HeaderMolecule {
|
|
|
6
7
|
}
|
|
7
8
|
}
|
|
8
9
|
HeaderMolecule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: HeaderMolecule, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
9
|
-
HeaderMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.3", type: HeaderMolecule, selector: "molecules-header", inputs: { title: "title", description: "description" }, ngImport: i0, template: "<span class=\"title\">{{ title ?? '' }}</span>\n<span class=\"description\">{{ description ?? '' }}</span>\n", styles: [":host{display:block}:host{display:flex;flex-direction:row;justify-content:center;align-items:flex-end}:host .description{line-height:1em;font-size:12px;margin-bottom:8px;margin-left:4px}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
10
|
+
HeaderMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.3", type: HeaderMolecule, isStandalone: true, selector: "molecules-header", inputs: { title: "title", description: "description" }, ngImport: i0, template: "<span class=\"title\">{{ title ?? '' }}</span>\n<span class=\"description\">{{ description ?? '' }}</span>\n", styles: [":host{display:block}:host{display:flex;flex-direction:row;justify-content:center;align-items:flex-end}:host .description{line-height:1em;font-size:12px;margin-bottom:8px;margin-left:4px}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
10
11
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: HeaderMolecule, decorators: [{
|
|
11
12
|
type: Component,
|
|
12
|
-
args: [{ selector: 'molecules-header',
|
|
13
|
+
args: [{ selector: 'molecules-header', standalone: true, imports: [
|
|
14
|
+
CommonModule,
|
|
15
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<span class=\"title\">{{ title ?? '' }}</span>\n<span class=\"description\">{{ description ?? '' }}</span>\n", styles: [":host{display:block}:host{display:flex;flex-direction:row;justify-content:center;align-items:flex-end}:host .description{line-height:1em;font-size:12px;margin-bottom:8px;margin-left:4px}\n"] }]
|
|
13
16
|
}], propDecorators: { title: [{
|
|
14
17
|
type: Input
|
|
15
18
|
}], description: [{
|
|
16
19
|
type: Input
|
|
17
20
|
}] } });
|
|
18
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
21
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGVhZGVyLm1vbGVjdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvQG5nLWF0b21pYy9jb21wb25lbnRzL3NyYy9tb2xlY3VsZXMvaGVhZGVyL2hlYWRlci5tb2xlY3VsZS50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL0BuZy1hdG9taWMvY29tcG9uZW50cy9zcmMvbW9sZWN1bGVzL2hlYWRlci9oZWFkZXIubW9sZWN1bGUuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFNBQVMsRUFBRSx1QkFBdUIsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBWTFFLE1BQU0sT0FBTyxjQUFjO0lBVjNCO1FBYUUsVUFBSyxHQUFHLE9BQU8sQ0FBQztLQUtqQjs7MkdBUlksY0FBYzsrRkFBZCxjQUFjLG9JQ2IzQiw4R0FFQSxxUERLSSxZQUFZOzJGQU1ILGNBQWM7a0JBVjFCLFNBQVM7K0JBQ0Usa0JBQWtCLGNBQ2hCLElBQUksV0FDUDt3QkFDUCxZQUFZO3FCQUNiLG1CQUdnQix1QkFBdUIsQ0FBQyxNQUFNOzhCQUsvQyxLQUFLO3NCQURKLEtBQUs7Z0JBSU4sV0FBVztzQkFEVixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENvbXBvbmVudCwgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ21vbGVjdWxlcy1oZWFkZXInLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICBdLFxuICB0ZW1wbGF0ZVVybDogJy4vaGVhZGVyLm1vbGVjdWxlLmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9oZWFkZXIubW9sZWN1bGUuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaFxufSlcbmV4cG9ydCBjbGFzcyBIZWFkZXJNb2xlY3VsZSB7XG5cbiAgQElucHV0KClcbiAgdGl0bGUgPSAndGl0bGUnO1xuXG4gIEBJbnB1dCgpXG4gIGRlc2NyaXB0aW9uPzogc3RyaW5nO1xuXG59XG4iLCI8c3BhbiBjbGFzcz1cInRpdGxlXCI+e3sgdGl0bGUgPz8gJycgfX08L3NwYW4+XG48c3BhbiBjbGFzcz1cImRlc2NyaXB0aW9uXCI+e3sgZGVzY3JpcHRpb24gPz8gJycgfX08L3NwYW4+XG4iXX0=
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL21vbGVjdWxlcy9oZWFkZXIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLG1CQUFtQixDQUFDO0FBQ25ELE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB7IEhlYWRlck1vbGVjdWxlIH0gZnJvbSAnLi9oZWFkZXIubW9sZWN1bGUnO1xuZXhwb3J0IHsgSGVhZGVyTW9kdWxlIH0gZnJvbSAnLi9oZWFkZXIubW9kdWxlJztcbiJdfQ==
|
|
1
|
+
export * from './header.molecule';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL21vbGVjdWxlcy9oZWFkZXIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxtQkFBbUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vaGVhZGVyLm1vbGVjdWxlJztcbiJdfQ==
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL21vbGVjdWxlcy9uYXZpZ2F0aW9uLWxpc3QtaXRlbS9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUM3RSxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB7IE5hdmlnYXRpb25MaXN0SXRlbU1vbGVjdWxlIH0gZnJvbSAnLi9uYXZpZ2F0aW9uLWxpc3QtaXRlbS5tb2xlY3VsZSc7XG5leHBvcnQgeyBOYXZpZ2F0aW9uTGlzdEl0ZW1Nb2R1bGUgfSBmcm9tICcuL25hdmlnYXRpb24tbGlzdC1pdGVtLm1vZHVsZSc7XG4iXX0=
|
|
1
|
+
export * from './navigation-list-item.molecule';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL21vbGVjdWxlcy9uYXZpZ2F0aW9uLWxpc3QtaXRlbS9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGlDQUFpQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9uYXZpZ2F0aW9uLWxpc3QtaXRlbS5tb2xlY3VsZSc7XG4iXX0=
|
|
@@ -1,21 +1,46 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { Component, ChangeDetectionStrategy, Input } from '@angular/core';
|
|
3
|
+
import { MatIconModule } from '@angular/material/icon';
|
|
4
|
+
import { MatListModule } from '@angular/material/list';
|
|
5
|
+
import { IconAtom } from '@ng-atomic/components/atoms/icon';
|
|
2
6
|
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/material/
|
|
4
|
-
import * as i2 from "@angular/material/legacy-list";
|
|
5
|
-
import * as i3 from "@ng-atomic/components/atoms/icon";
|
|
7
|
+
import * as i1 from "@angular/material/list";
|
|
6
8
|
export class NavigationListItemMolecule {
|
|
7
9
|
constructor() {
|
|
8
10
|
this.selected = false;
|
|
9
11
|
}
|
|
10
12
|
}
|
|
11
13
|
NavigationListItemMolecule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: NavigationListItemMolecule, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12
|
-
NavigationListItemMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.3", type: NavigationListItemMolecule, selector: "molecules-navigation-list-item", inputs: { action: "action", selected: "selected" }, ngImport: i0, template:
|
|
14
|
+
NavigationListItemMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.3", type: NavigationListItemMolecule, isStandalone: true, selector: "molecules-navigation-list-item", inputs: { action: "action", selected: "selected" }, ngImport: i0, template: `
|
|
15
|
+
<mat-list-item>
|
|
16
|
+
<atoms-icon
|
|
17
|
+
matListItemIcon
|
|
18
|
+
[name]="action?.icon"
|
|
19
|
+
[color]="action?.color"
|
|
20
|
+
></atoms-icon>
|
|
21
|
+
<div matListItemTitle>{{ action.name }}</div>
|
|
22
|
+
</mat-list-item>
|
|
23
|
+
`, isInline: true, styles: [":host{display:block}:host{--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-label-text-color: white}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: MatIconModule }, { kind: "ngmodule", type: MatListModule }, { kind: "component", type: i1.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "directive", type: i1.MatListItemIcon, selector: "[matListItemIcon]" }, { kind: "directive", type: i1.MatListItemTitle, selector: "[matListItemTitle]" }, { kind: "component", type: IconAtom, selector: "atoms-icon", inputs: ["name", "color"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
13
24
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: NavigationListItemMolecule, decorators: [{
|
|
14
25
|
type: Component,
|
|
15
|
-
args: [{ selector: 'molecules-navigation-list-item',
|
|
26
|
+
args: [{ selector: 'molecules-navigation-list-item', standalone: true, imports: [
|
|
27
|
+
CommonModule,
|
|
28
|
+
MatIconModule,
|
|
29
|
+
MatListModule,
|
|
30
|
+
IconAtom,
|
|
31
|
+
], template: `
|
|
32
|
+
<mat-list-item>
|
|
33
|
+
<atoms-icon
|
|
34
|
+
matListItemIcon
|
|
35
|
+
[name]="action?.icon"
|
|
36
|
+
[color]="action?.color"
|
|
37
|
+
></atoms-icon>
|
|
38
|
+
<div matListItemTitle>{{ action.name }}</div>
|
|
39
|
+
</mat-list-item>
|
|
40
|
+
`, changeDetection: ChangeDetectionStrategy.OnPush, styles: [":host{display:block}:host{--mdc-list-list-item-hover-label-text-color: white;--mdc-list-list-item-label-text-color: white}\n"] }]
|
|
16
41
|
}], propDecorators: { action: [{
|
|
17
42
|
type: Input
|
|
18
43
|
}], selected: [{
|
|
19
44
|
type: Input
|
|
20
45
|
}] } });
|
|
21
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
46
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmF2aWdhdGlvbi1saXN0LWl0ZW0ubW9sZWN1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL21vbGVjdWxlcy9uYXZpZ2F0aW9uLWxpc3QtaXRlbS9uYXZpZ2F0aW9uLWxpc3QtaXRlbS5tb2xlY3VsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFNBQVMsRUFBRSx1QkFBdUIsRUFBcUIsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzdGLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN2RCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFFdkQsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGtDQUFrQyxDQUFDOzs7QUF5QjVELE1BQU0sT0FBTywwQkFBMEI7SUF2QnZDO1FBNkJFLGFBQVEsR0FBRyxLQUFLLENBQUM7S0FFbEI7O3VIQVJZLDBCQUEwQjsyR0FBMUIsMEJBQTBCLDhJQWQzQjs7Ozs7Ozs7O0dBU1QscU1BZEMsWUFBWSw4QkFDWixhQUFhLDhCQUNiLGFBQWEsb1dBQ2IsUUFBUTsyRkFnQkMsMEJBQTBCO2tCQXZCdEMsU0FBUzsrQkFDRSxnQ0FBZ0MsY0FDOUIsSUFBSSxXQUNQO3dCQUNQLFlBQVk7d0JBQ1osYUFBYTt3QkFDYixhQUFhO3dCQUNiLFFBQVE7cUJBQ1QsWUFDUzs7Ozs7Ozs7O0dBU1QsbUJBR2dCLHVCQUF1QixDQUFDLE1BQU07OEJBSy9DLE1BQU07c0JBREwsS0FBSztnQkFJTixRQUFRO3NCQURQLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ29tcG9uZW50LCBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgVmlld0VuY2Fwc3VsYXRpb24sIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBNYXRJY29uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvaWNvbic7XG5pbXBvcnQgeyBNYXRMaXN0TW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvbGlzdCc7XG5pbXBvcnQgeyBBY3Rpb24gfSBmcm9tICdAbmctYXRvbWljL2NvbW1vbi9tb2RlbHMnO1xuaW1wb3J0IHsgSWNvbkF0b20gfSBmcm9tICdAbmctYXRvbWljL2NvbXBvbmVudHMvYXRvbXMvaWNvbic7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ21vbGVjdWxlcy1uYXZpZ2F0aW9uLWxpc3QtaXRlbScsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgTWF0SWNvbk1vZHVsZSxcbiAgICBNYXRMaXN0TW9kdWxlLFxuICAgIEljb25BdG9tLFxuICBdLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxtYXQtbGlzdC1pdGVtPlxuICAgICAgPGF0b21zLWljb25cbiAgICAgICAgbWF0TGlzdEl0ZW1JY29uXG4gICAgICAgIFtuYW1lXT1cImFjdGlvbj8uaWNvblwiXG4gICAgICAgIFtjb2xvcl09XCJhY3Rpb24/LmNvbG9yXCJcbiAgICAgID48L2F0b21zLWljb24+XG4gICAgICA8ZGl2IG1hdExpc3RJdGVtVGl0bGU+e3sgYWN0aW9uLm5hbWUgfX08L2Rpdj5cbiAgICA8L21hdC1saXN0LWl0ZW0+XG4gIGAsXG4gIHN0eWxlVXJsczogWycuL25hdmlnYXRpb24tbGlzdC1pdGVtLm1vbGVjdWxlLnNjc3MnXSxcbiAgLy8gZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIE5hdmlnYXRpb25MaXN0SXRlbU1vbGVjdWxlIHtcblxuICBASW5wdXQoKVxuICBhY3Rpb24hOiBBY3Rpb247XG5cbiAgQElucHV0KClcbiAgc2VsZWN0ZWQgPSBmYWxzZTtcblxufVxuIl19
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export { SelectInputFieldModule } from './select-input-field.module';
|
|
2
1
|
export * from './select-input-field.molecule';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL21vbGVjdWxlcy9zZWxlY3QtaW5wdXQtZmllbGQvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYywrQkFBK0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc2VsZWN0LWlucHV0LWZpZWxkLm1vbGVjdWxlJztcbiJdfQ==
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
1
2
|
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
2
|
-
import { FormControl } from '@
|
|
3
|
+
import { FormControl, ReactiveFormsModule } from '@angular/forms';
|
|
4
|
+
import { MatSelectModule } from '@angular/material/select';
|
|
3
5
|
import * as i0 from "@angular/core";
|
|
4
6
|
import * as i1 from "@angular/common";
|
|
5
7
|
import * as i2 from "@angular/forms";
|
|
@@ -9,21 +11,28 @@ import * as i5 from "@angular/material/core";
|
|
|
9
11
|
export class SelectInputFieldMolecule {
|
|
10
12
|
constructor() {
|
|
11
13
|
this.label = '';
|
|
12
|
-
this.
|
|
14
|
+
this.appearance = 'outline';
|
|
15
|
+
this.control = new FormControl({});
|
|
13
16
|
this.options = [];
|
|
14
17
|
this.value = (item) => item?.value;
|
|
15
18
|
}
|
|
16
19
|
}
|
|
17
20
|
SelectInputFieldMolecule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: SelectInputFieldMolecule, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
18
|
-
SelectInputFieldMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.3", type: SelectInputFieldMolecule, selector: "molecules-select-input-field", inputs: { label: "label", control: "control", options: "options" }, host: { classAttribute: "molecule input-field field" }, ngImport: i0, template: "<mat-form-field appearance=\"
|
|
21
|
+
SelectInputFieldMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.3", type: SelectInputFieldMolecule, isStandalone: true, selector: "molecules-select-input-field", inputs: { label: "label", appearance: "appearance", control: "control", options: "options" }, host: { classAttribute: "molecule input-field field" }, ngImport: i0, template: "<mat-form-field [appearance]=\"appearance\">\n <mat-label>{{ label }}</mat-label>\n <mat-select [formControl]=\"control\">\n <mat-option *ngFor=\"let option of options; trackBy value;\" [value]=\"option.value\">\n {{ option.name }}\n </mat-option>\n </mat-select>\n</mat-form-field>", styles: [":host{--horizontal-padding: 16px;--horizontal-padding-SCOPED-IN-select-input-field-3Sv1: var(--horizontal-padding)}:host{display:block;width:100%}:host mat-form-field{width:100%}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: MatSelectModule }, { kind: "component", type: i3.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i3.MatLabel, selector: "mat-label" }, { kind: "component", type: i4.MatSelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex", "hideSingleSelectionIndicator"], exportAs: ["matSelect"] }, { kind: "component", type: i5.MatOption, selector: "mat-option", exportAs: ["matOption"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
19
22
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: SelectInputFieldMolecule, decorators: [{
|
|
20
23
|
type: Component,
|
|
21
|
-
args: [{ selector: 'molecules-select-input-field',
|
|
24
|
+
args: [{ selector: 'molecules-select-input-field', standalone: true, imports: [
|
|
25
|
+
CommonModule,
|
|
26
|
+
ReactiveFormsModule,
|
|
27
|
+
MatSelectModule,
|
|
28
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, host: { class: 'molecule input-field field' }, template: "<mat-form-field [appearance]=\"appearance\">\n <mat-label>{{ label }}</mat-label>\n <mat-select [formControl]=\"control\">\n <mat-option *ngFor=\"let option of options; trackBy value;\" [value]=\"option.value\">\n {{ option.name }}\n </mat-option>\n </mat-select>\n</mat-form-field>", styles: [":host{--horizontal-padding: 16px;--horizontal-padding-SCOPED-IN-select-input-field-3Sv1: var(--horizontal-padding)}:host{display:block;width:100%}:host mat-form-field{width:100%}\n"] }]
|
|
22
29
|
}], propDecorators: { label: [{
|
|
23
30
|
type: Input
|
|
31
|
+
}], appearance: [{
|
|
32
|
+
type: Input
|
|
24
33
|
}], control: [{
|
|
25
34
|
type: Input
|
|
26
35
|
}], options: [{
|
|
27
36
|
type: Input
|
|
28
37
|
}] } });
|
|
29
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0LWlucHV0LWZpZWxkLm1vbGVjdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvQG5nLWF0b21pYy9jb21wb25lbnRzL3NyYy9tb2xlY3VsZXMvc2VsZWN0LWlucHV0LWZpZWxkL3NlbGVjdC1pbnB1dC1maWVsZC5tb2xlY3VsZS50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL0BuZy1hdG9taWMvY29tcG9uZW50cy9zcmMvbW9sZWN1bGVzL3NlbGVjdC1pbnB1dC1maWVsZC9zZWxlY3QtaW5wdXQtZmllbGQubW9sZWN1bGUuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUUsT0FBTyxFQUFFLFdBQVcsRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQzs7Ozs7OztBQW9CM0QsTUFBTSxPQUFPLHdCQUF3QjtJQWJyQztRQWdCRSxVQUFLLEdBQVcsRUFBRSxDQUFDO1FBR25CLGVBQVUsR0FBdUIsU0FBUyxDQUFDO1FBRzNDLFlBQU8sR0FBRyxJQUFJLFdBQVcsQ0FBSSxFQUFPLENBQUMsQ0FBQztRQUd0QyxZQUFPLEdBQWdCLEVBQUUsQ0FBQztRQUUxQixVQUFLLEdBQUcsQ0FBQyxJQUFlLEVBQUUsRUFBRSxDQUFDLElBQUksRUFBRSxLQUFLLENBQUM7S0FFMUM7O3FIQWhCWSx3QkFBd0I7eUdBQXhCLHdCQUF3Qiw4T0N2QnJDLDBTQU9pQiw2T0RPYixZQUFZLDJKQUNaLG1CQUFtQix5VEFDbkIsZUFBZTsyRkFPTix3QkFBd0I7a0JBYnBDLFNBQVM7K0JBQ0UsOEJBQThCLGNBQzVCLElBQUksV0FDUDt3QkFDUCxZQUFZO3dCQUNaLG1CQUFtQjt3QkFDbkIsZUFBZTtxQkFDaEIsbUJBR2dCLHVCQUF1QixDQUFDLE1BQU0sUUFDekMsRUFBQyxLQUFLLEVBQUUsNEJBQTRCLEVBQUM7OEJBSzNDLEtBQUs7c0JBREosS0FBSztnQkFJTixVQUFVO3NCQURULEtBQUs7Z0JBSU4sT0FBTztzQkFETixLQUFLO2dCQUlOLE9BQU87c0JBRE4sS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybUNvbnRyb2wsIFJlYWN0aXZlRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBNYXRTZWxlY3RNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9zZWxlY3QnO1xuXG5leHBvcnQgaW50ZXJmYWNlIE9wdGlvbjxUPiB7XG4gIG5hbWU6IHN0cmluZztcbiAgdmFsdWU6IFQ7XG59XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ21vbGVjdWxlcy1zZWxlY3QtaW5wdXQtZmllbGQnLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIFJlYWN0aXZlRm9ybXNNb2R1bGUsXG4gICAgTWF0U2VsZWN0TW9kdWxlLFxuICBdLFxuICB0ZW1wbGF0ZVVybDogJy4vc2VsZWN0LWlucHV0LWZpZWxkLm1vbGVjdWxlLmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9zZWxlY3QtaW5wdXQtZmllbGQubW9sZWN1bGUuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaG9zdDoge2NsYXNzOiAnbW9sZWN1bGUgaW5wdXQtZmllbGQgZmllbGQnfSxcbn0pXG5leHBvcnQgY2xhc3MgU2VsZWN0SW5wdXRGaWVsZE1vbGVjdWxlPFQ+IHtcblxuICBASW5wdXQoKVxuICBsYWJlbDogc3RyaW5nID0gJyc7XG5cbiAgQElucHV0KClcbiAgYXBwZWFyYW5jZTogJ291dGxpbmUnIHwgJ2ZpbGwnID0gJ291dGxpbmUnO1xuXG4gIEBJbnB1dCgpXG4gIGNvbnRyb2wgPSBuZXcgRm9ybUNvbnRyb2w8VD4oe30gYXMgVCk7XG5cbiAgQElucHV0KClcbiAgb3B0aW9uczogT3B0aW9uPFQ+W10gPSBbXTtcblxuICB2YWx1ZSA9IChpdGVtOiBPcHRpb248VD4pID0+IGl0ZW0/LnZhbHVlOyBcblxufVxuIiwiPG1hdC1mb3JtLWZpZWxkIFthcHBlYXJhbmNlXT1cImFwcGVhcmFuY2VcIj5cbiAgPG1hdC1sYWJlbD57eyBsYWJlbCB9fTwvbWF0LWxhYmVsPlxuICA8bWF0LXNlbGVjdCBbZm9ybUNvbnRyb2xdPVwiY29udHJvbFwiPlxuICAgIDxtYXQtb3B0aW9uICpuZ0Zvcj1cImxldCBvcHRpb24gb2Ygb3B0aW9uczsgdHJhY2tCeSB2YWx1ZTtcIiBbdmFsdWVdPVwib3B0aW9uLnZhbHVlXCI+XG4gICAgICB7eyBvcHRpb24ubmFtZSB9fVxuICAgIDwvbWF0LW9wdGlvbj5cbiAgPC9tYXQtc2VsZWN0PlxuPC9tYXQtZm9ybS1maWVsZD4iXX0=
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export { SmartColumnModule } from './smart-column.module';
|
|
2
1
|
export * from './smart-column.molecule';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL21vbGVjdWxlcy9zbWFydC1jb2x1bW4vaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vc21hcnQtY29sdW1uLm1vbGVjdWxlJztcbiJdfQ==
|
|
@@ -1,13 +1,19 @@
|
|
|
1
|
+
import { ClipboardModule } from '@angular/cdk/clipboard';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
1
3
|
import { ChangeDetectionStrategy, Input, Output, EventEmitter, Component, ViewEncapsulation } from '@angular/core';
|
|
2
|
-
import {
|
|
4
|
+
import { MatButtonModule } from '@angular/material/button';
|
|
5
|
+
import { MatIconModule } from '@angular/material/icon';
|
|
6
|
+
import { MatTableModule, MatTextColumn } from '@angular/material/table';
|
|
7
|
+
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
8
|
+
import { DataAccessorPipe } from '@ng-atomic/common/pipes/data-accessor';
|
|
9
|
+
import { SmartExpModule } from '@ng-atomic/common/pipes/smart-exp';
|
|
3
10
|
import * as i0 from "@angular/core";
|
|
4
11
|
import * as i1 from "@angular/common";
|
|
5
12
|
import * as i2 from "@angular/cdk/clipboard";
|
|
6
|
-
import * as i3 from "@
|
|
7
|
-
import * as i4 from "@angular/material/
|
|
8
|
-
import * as i5 from "@angular/material/
|
|
9
|
-
import * as i6 from "@
|
|
10
|
-
import * as i7 from "@ng-atomic/common/pipes/data-accessor";
|
|
13
|
+
import * as i3 from "@ng-atomic/common/pipes/smart-exp";
|
|
14
|
+
import * as i4 from "@angular/material/icon";
|
|
15
|
+
import * as i5 from "@angular/material/table";
|
|
16
|
+
import * as i6 from "@angular/material/tooltip";
|
|
11
17
|
export class SmartColumnMolecule extends MatTextColumn {
|
|
12
18
|
constructor() {
|
|
13
19
|
super(...arguments);
|
|
@@ -21,13 +27,22 @@ export class SmartColumnMolecule extends MatTextColumn {
|
|
|
21
27
|
}
|
|
22
28
|
}
|
|
23
29
|
SmartColumnMolecule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: SmartColumnMolecule, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
24
|
-
SmartColumnMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.3", type: SmartColumnMolecule, selector: "molecules-smart-column", inputs: { sort: "sort" }, outputs: { headerClick: "headerClick" }, usesInheritance: true, ngImport: i0, template: "<ng-container matColumnDef>\n <th\n mat-header-cell\n *matHeaderCellDef\n [style.text-align]=\"justify\"\n (click)=\"headerClick.emit()\"\n >\n <p class=\"nowrap\" style=\"display: flex; align-items: center;\">\n <span>{{headerText}}</span>\n <ng-container [ngSwitch]=\"sort\">\n <mat-icon class=\"order\" *ngSwitchCase=\"'asc'\">south</mat-icon>\n <mat-icon class=\"order\" *ngSwitchCase=\"'desc'\">north</mat-icon>\n </ng-container>\n </p>\n </th>\n <td mat-cell *matCellDef=\"let data\" [style.text-align]=\"justify\">\n <p class=\"nowrap\"\n [cdkCopyToClipboard]=\"data | dataAccessor: name | smartExp: name\"\n (click)=\"copied(); tooltip.show()\"\n #tooltip=\"matTooltip\" [matTooltip]=\"text\" matTooltipPosition=\"below\"\n >\n {{ data | dataAccessor: name }}\n </p>\n </td>\n</ng-container>", styles: ["th[mat-header-cell],td[mat-cell]{cursor:pointer}th[mat-header-cell] mat-icon.order,td[mat-cell] mat-icon.order{width:12px;height:12px;font-size:12px}th[mat-header-cell] .nowrap,td[mat-cell] .nowrap{
|
|
30
|
+
SmartColumnMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.3", type: SmartColumnMolecule, isStandalone: true, selector: "molecules-smart-column", inputs: { sort: "sort" }, outputs: { headerClick: "headerClick" }, usesInheritance: true, ngImport: i0, template: "<ng-container matColumnDef>\n <th\n mat-header-cell\n *matHeaderCellDef\n [style.text-align]=\"justify\"\n (click)=\"headerClick.emit()\"\n >\n <p class=\"nowrap\" style=\"display: flex; align-items: center;\">\n <span>{{headerText}}</span>\n <ng-container [ngSwitch]=\"sort\">\n <mat-icon class=\"order\" *ngSwitchCase=\"'asc'\">south</mat-icon>\n <mat-icon class=\"order\" *ngSwitchCase=\"'desc'\">north</mat-icon>\n </ng-container>\n </p>\n </th>\n <td mat-cell *matCellDef=\"let data\" [style.text-align]=\"justify\">\n <p class=\"nowrap\"\n [cdkCopyToClipboard]=\"data | dataAccessor: name | smartExp: name\"\n (click)=\"copied(); tooltip.show()\"\n #tooltip=\"matTooltip\" [matTooltip]=\"text\" matTooltipPosition=\"below\"\n >\n {{ data | dataAccessor: name }}\n </p>\n </td>\n</ng-container>", styles: ["th[mat-header-cell],td[mat-cell]{cursor:pointer}th[mat-header-cell] mat-icon.order,td[mat-cell] mat-icon.order{width:12px;height:12px;font-size:12px}th[mat-header-cell] .nowrap,td[mat-cell] .nowrap{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "ngmodule", type: ClipboardModule }, { kind: "directive", type: i2.CdkCopyToClipboard, selector: "[cdkCopyToClipboard]", inputs: ["cdkCopyToClipboard", "cdkCopyToClipboardAttempts"], outputs: ["cdkCopyToClipboardCopied"] }, { kind: "ngmodule", type: SmartExpModule }, { kind: "pipe", type: i3.SmartExpPipe, name: "smartExp" }, { kind: "pipe", type: DataAccessorPipe, name: "dataAccessor" }, { kind: "ngmodule", type: MatButtonModule }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatTableModule }, { kind: "directive", type: i5.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { kind: "directive", type: i5.MatColumnDef, selector: "[matColumnDef]", inputs: ["sticky", "matColumnDef"] }, { kind: "directive", type: i5.MatCellDef, selector: "[matCellDef]" }, { kind: "directive", type: i5.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i5.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "ngmodule", type: MatTooltipModule }, { kind: "directive", type: i6.MatTooltip, selector: "[matTooltip]", exportAs: ["matTooltip"] }], changeDetection: i0.ChangeDetectionStrategy.Default, encapsulation: i0.ViewEncapsulation.None });
|
|
25
31
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: SmartColumnMolecule, decorators: [{
|
|
26
32
|
type: Component,
|
|
27
|
-
args: [{ selector: 'molecules-smart-column',
|
|
33
|
+
args: [{ selector: 'molecules-smart-column', standalone: true, imports: [
|
|
34
|
+
CommonModule,
|
|
35
|
+
ClipboardModule,
|
|
36
|
+
SmartExpModule,
|
|
37
|
+
DataAccessorPipe,
|
|
38
|
+
MatButtonModule,
|
|
39
|
+
MatIconModule,
|
|
40
|
+
MatTableModule,
|
|
41
|
+
MatTooltipModule,
|
|
42
|
+
], encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.Default, template: "<ng-container matColumnDef>\n <th\n mat-header-cell\n *matHeaderCellDef\n [style.text-align]=\"justify\"\n (click)=\"headerClick.emit()\"\n >\n <p class=\"nowrap\" style=\"display: flex; align-items: center;\">\n <span>{{headerText}}</span>\n <ng-container [ngSwitch]=\"sort\">\n <mat-icon class=\"order\" *ngSwitchCase=\"'asc'\">south</mat-icon>\n <mat-icon class=\"order\" *ngSwitchCase=\"'desc'\">north</mat-icon>\n </ng-container>\n </p>\n </th>\n <td mat-cell *matCellDef=\"let data\" [style.text-align]=\"justify\">\n <p class=\"nowrap\"\n [cdkCopyToClipboard]=\"data | dataAccessor: name | smartExp: name\"\n (click)=\"copied(); tooltip.show()\"\n #tooltip=\"matTooltip\" [matTooltip]=\"text\" matTooltipPosition=\"below\"\n >\n {{ data | dataAccessor: name }}\n </p>\n </td>\n</ng-container>", styles: ["th[mat-header-cell],td[mat-cell]{cursor:pointer}th[mat-header-cell] mat-icon.order,td[mat-cell] mat-icon.order{width:12px;height:12px;font-size:12px}th[mat-header-cell] .nowrap,td[mat-cell] .nowrap{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}\n"] }]
|
|
28
43
|
}], propDecorators: { sort: [{
|
|
29
44
|
type: Input
|
|
30
45
|
}], headerClick: [{
|
|
31
46
|
type: Output
|
|
32
47
|
}] } });
|
|
33
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
48
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnQtY29sdW1uLm1vbGVjdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvQG5nLWF0b21pYy9jb21wb25lbnRzL3NyYy9tb2xlY3VsZXMvc21hcnQtY29sdW1uL3NtYXJ0LWNvbHVtbi5tb2xlY3VsZS50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL0BuZy1hdG9taWMvY29tcG9uZW50cy9zcmMvbW9sZWN1bGVzL3NtYXJ0LWNvbHVtbi9zbWFydC1jb2x1bW4ubW9sZWN1bGUuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDekQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLFlBQVksRUFBRSxTQUFTLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDbkgsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzNELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN2RCxPQUFPLEVBQUUsY0FBYyxFQUFFLGFBQWEsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQ3hFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzdELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLHVDQUF1QyxDQUFDO0FBQ3pFLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQzs7Ozs7Ozs7QUFvQm5FLE1BQU0sT0FBTyxtQkFBdUIsU0FBUSxhQUFnQjtJQWxCNUQ7O1FBcUJFLFNBQUksR0FBNEIsTUFBTSxDQUFDO1FBR3ZDLGdCQUFXLEdBQUcsSUFBSSxZQUFZLEVBQVEsQ0FBQztRQUV2QyxTQUFJLEdBQUcsTUFBTSxDQUFDO0tBTWY7SUFKQyxNQUFNO1FBQ0osSUFBSSxDQUFDLElBQUksR0FBRyxTQUFTLENBQUM7UUFDdEIsVUFBVSxDQUFDLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxJQUFJLEdBQUcsTUFBTSxFQUFFLElBQUksQ0FBQyxDQUFDO0lBQzdDLENBQUM7O2dIQWJVLG1CQUFtQjtvR0FBbkIsbUJBQW1CLDRLQzVCaEMsazNCQXdCZSwyVERWWCxZQUFZLDBOQUNaLGVBQWUseU5BQ2YsY0FBYyxxRkFDZCxnQkFBZ0Isb0RBQ2hCLGVBQWUsOEJBQ2YsYUFBYSxtTEFDYixjQUFjLGtkQUNkLGdCQUFnQjsyRkFPUCxtQkFBbUI7a0JBbEIvQixTQUFTOytCQUNFLHdCQUF3QixjQUN0QixJQUFJLFdBQ1A7d0JBQ1AsWUFBWTt3QkFDWixlQUFlO3dCQUNmLGNBQWM7d0JBQ2QsZ0JBQWdCO3dCQUNoQixlQUFlO3dCQUNmLGFBQWE7d0JBQ2IsY0FBYzt3QkFDZCxnQkFBZ0I7cUJBQ2pCLGlCQUdjLGlCQUFpQixDQUFDLElBQUksbUJBQ3BCLHVCQUF1QixDQUFDLE9BQU87OEJBS2hELElBQUk7c0JBREgsS0FBSztnQkFJTixXQUFXO3NCQURWLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDbGlwYm9hcmRNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jZGsvY2xpcGJvYXJkJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgSW5wdXQsIE91dHB1dCwgRXZlbnRFbWl0dGVyLCBDb21wb25lbnQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBNYXRCdXR0b25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9idXR0b24nO1xuaW1wb3J0IHsgTWF0SWNvbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2ljb24nO1xuaW1wb3J0IHsgTWF0VGFibGVNb2R1bGUsIE1hdFRleHRDb2x1bW4gfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC90YWJsZSc7XG5pbXBvcnQgeyBNYXRUb29sdGlwTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvdG9vbHRpcCc7XG5pbXBvcnQgeyBEYXRhQWNjZXNzb3JQaXBlIH0gZnJvbSAnQG5nLWF0b21pYy9jb21tb24vcGlwZXMvZGF0YS1hY2Nlc3Nvcic7XG5pbXBvcnQgeyBTbWFydEV4cE1vZHVsZSB9IGZyb20gJ0BuZy1hdG9taWMvY29tbW9uL3BpcGVzL3NtYXJ0LWV4cCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ21vbGVjdWxlcy1zbWFydC1jb2x1bW4nLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIENsaXBib2FyZE1vZHVsZSxcbiAgICBTbWFydEV4cE1vZHVsZSxcbiAgICBEYXRhQWNjZXNzb3JQaXBlLFxuICAgIE1hdEJ1dHRvbk1vZHVsZSxcbiAgICBNYXRJY29uTW9kdWxlLFxuICAgIE1hdFRhYmxlTW9kdWxlLFxuICAgIE1hdFRvb2x0aXBNb2R1bGUsXG4gIF0sXG4gIHRlbXBsYXRlVXJsOiAnLi9zbWFydC1jb2x1bW4ubW9sZWN1bGUuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3NtYXJ0LWNvbHVtbi5tb2xlY3VsZS5zY3NzJ10sXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuRGVmYXVsdCxcbn0pXG5leHBvcnQgY2xhc3MgU21hcnRDb2x1bW5Nb2xlY3VsZTxUPiBleHRlbmRzIE1hdFRleHRDb2x1bW48VD4ge1xuXG4gIEBJbnB1dCgpXG4gIHNvcnQ6ICdhc2MnIHwgJ2Rlc2MnIHwgJ25vbmUnID0gJ25vbmUnO1xuXG4gIEBPdXRwdXQoKVxuICBoZWFkZXJDbGljayA9IG5ldyBFdmVudEVtaXR0ZXI8dm9pZD4oKTtcblxuICB0ZXh0ID0gJ2NvcHknO1xuXG4gIGNvcGllZCgpIHtcbiAgICB0aGlzLnRleHQgPSAnY29waWVkISc7XG4gICAgc2V0VGltZW91dCgoKSA9PiB0aGlzLnRleHQgPSAnY29weScsIDEwMDApO1xuICB9XG59XG4iLCI8bmctY29udGFpbmVyIG1hdENvbHVtbkRlZj5cbiAgPHRoXG4gICAgbWF0LWhlYWRlci1jZWxsXG4gICAgKm1hdEhlYWRlckNlbGxEZWZcbiAgICBbc3R5bGUudGV4dC1hbGlnbl09XCJqdXN0aWZ5XCJcbiAgICAoY2xpY2spPVwiaGVhZGVyQ2xpY2suZW1pdCgpXCJcbiAgPlxuICAgIDxwIGNsYXNzPVwibm93cmFwXCIgc3R5bGU9XCJkaXNwbGF5OiBmbGV4OyBhbGlnbi1pdGVtczogY2VudGVyO1wiPlxuICAgICAgPHNwYW4+e3toZWFkZXJUZXh0fX08L3NwYW4+XG4gICAgICA8bmctY29udGFpbmVyIFtuZ1N3aXRjaF09XCJzb3J0XCI+XG4gICAgICAgIDxtYXQtaWNvbiBjbGFzcz1cIm9yZGVyXCIgKm5nU3dpdGNoQ2FzZT1cIidhc2MnXCI+c291dGg8L21hdC1pY29uPlxuICAgICAgICA8bWF0LWljb24gY2xhc3M9XCJvcmRlclwiICpuZ1N3aXRjaENhc2U9XCInZGVzYydcIj5ub3J0aDwvbWF0LWljb24+XG4gICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8L3A+XG4gIDwvdGg+XG4gIDx0ZCBtYXQtY2VsbCAqbWF0Q2VsbERlZj1cImxldCBkYXRhXCIgW3N0eWxlLnRleHQtYWxpZ25dPVwianVzdGlmeVwiPlxuICAgIDxwIGNsYXNzPVwibm93cmFwXCJcbiAgICAgIFtjZGtDb3B5VG9DbGlwYm9hcmRdPVwiZGF0YSB8IGRhdGFBY2Nlc3NvcjogbmFtZSB8IHNtYXJ0RXhwOiBuYW1lXCJcbiAgICAgIChjbGljayk9XCJjb3BpZWQoKTsgdG9vbHRpcC5zaG93KClcIlxuICAgICAgI3Rvb2x0aXA9XCJtYXRUb29sdGlwXCIgW21hdFRvb2x0aXBdPVwidGV4dFwiIG1hdFRvb2x0aXBQb3NpdGlvbj1cImJlbG93XCJcbiAgICA+XG4gICAgICB7eyBkYXRhIHwgZGF0YUFjY2Vzc29yOiBuYW1lIH19XG4gICAgPC9wPlxuICA8L3RkPlxuPC9uZy1jb250YWluZXI+Il19
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL21vbGVjdWxlcy90ZXh0LWlucHV0LWZpZWxkL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLDZCQUE2QixDQUFDO0FBQ3JFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLDJCQUEyQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHsgVGV4dElucHV0RmllbGRNb2xlY3VsZSB9IGZyb20gJy4vdGV4dC1pbnB1dC1maWVsZC5tb2xlY3VsZSc7XG5leHBvcnQgeyBUZXh0SW5wdXRGaWVsZE1vZHVsZSB9IGZyb20gJy4vdGV4dC1pbnB1dC1maWVsZC5tb2R1bGUnO1xuIl19
|
|
1
|
+
export * from './text-input-field.molecule';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL21vbGVjdWxlcy90ZXh0LWlucHV0LWZpZWxkL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsNkJBQTZCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3RleHQtaW5wdXQtZmllbGQubW9sZWN1bGUnO1xuIl19
|