@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,28 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { NavigationListModule } from '@ng-atomic/components/organisms/navigation-list';
|
|
4
|
-
import { MenuTemplate } from './menu.template';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class MenuModule {
|
|
7
|
-
}
|
|
8
|
-
MenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
9
|
-
MenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: MenuModule, bootstrap: [MenuTemplate], declarations: [MenuTemplate], imports: [CommonModule,
|
|
10
|
-
// Organisms
|
|
11
|
-
NavigationListModule], exports: [MenuTemplate] });
|
|
12
|
-
MenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MenuModule, imports: [CommonModule,
|
|
13
|
-
// Organisms
|
|
14
|
-
NavigationListModule] });
|
|
15
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: MenuModule, decorators: [{
|
|
16
|
-
type: NgModule,
|
|
17
|
-
args: [{
|
|
18
|
-
declarations: [MenuTemplate],
|
|
19
|
-
imports: [
|
|
20
|
-
CommonModule,
|
|
21
|
-
// Organisms
|
|
22
|
-
NavigationListModule,
|
|
23
|
-
],
|
|
24
|
-
exports: [MenuTemplate],
|
|
25
|
-
bootstrap: [MenuTemplate],
|
|
26
|
-
}]
|
|
27
|
-
}] });
|
|
28
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVudS5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL3RlbXBsYXRlcy9tZW51L21lbnUubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGlEQUFpRCxDQUFDO0FBRXZGLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQzs7QUFhL0MsTUFBTSxPQUFPLFVBQVU7O3VHQUFWLFVBQVU7d0dBQVYsVUFBVSxjQUZULFlBQVksa0JBUFQsWUFBWSxhQUV6QixZQUFZO1FBQ1osWUFBWTtRQUNaLG9CQUFvQixhQUVaLFlBQVk7d0dBR1gsVUFBVSxZQVBuQixZQUFZO1FBQ1osWUFBWTtRQUNaLG9CQUFvQjsyRkFLWCxVQUFVO2tCQVZ0QixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDNUIsT0FBTyxFQUFFO3dCQUNQLFlBQVk7d0JBQ1osWUFBWTt3QkFDWixvQkFBb0I7cUJBQ3JCO29CQUNELE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDdkIsU0FBUyxFQUFFLENBQUMsWUFBWSxDQUFDO2lCQUMxQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmF2aWdhdGlvbkxpc3RNb2R1bGUgfSBmcm9tICdAbmctYXRvbWljL2NvbXBvbmVudHMvb3JnYW5pc21zL25hdmlnYXRpb24tbGlzdCc7XG5cbmltcG9ydCB7IE1lbnVUZW1wbGF0ZSB9IGZyb20gJy4vbWVudS50ZW1wbGF0ZSc7XG5cblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbTWVudVRlbXBsYXRlXSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICAvLyBPcmdhbmlzbXNcbiAgICBOYXZpZ2F0aW9uTGlzdE1vZHVsZSxcbiAgXSxcbiAgZXhwb3J0czogW01lbnVUZW1wbGF0ZV0sXG4gIGJvb3RzdHJhcDogW01lbnVUZW1wbGF0ZV0sXG59KVxuZXhwb3J0IGNsYXNzIE1lbnVNb2R1bGUgeyB9XG5cbiJdfQ==
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./auto-layout.frame";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class AutoLayoutModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AutoLayoutModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AutoLayoutModule, [typeof i1.AutoLayoutFrame], [typeof i2.CommonModule], [typeof i1.AutoLayoutFrame]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<AutoLayoutModule>;
|
|
8
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./card.frame";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/legacy-card";
|
|
5
|
-
export declare class CardModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CardModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CardModule, [typeof i1.CardFrame], [typeof i2.CommonModule, typeof i3.MatLegacyCardModule], [typeof i1.CardFrame]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<CardModule>;
|
|
9
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./drawer.frame";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/sidenav";
|
|
5
|
-
export declare class DrawerModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DrawerModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DrawerModule, [typeof i1.DrawerFrame], [typeof i2.CommonModule, typeof i3.MatSidenavModule], [typeof i1.DrawerFrame]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<DrawerModule>;
|
|
9
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./overlay.frame";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/legacy-progress-spinner";
|
|
5
|
-
export declare class OverlayModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OverlayModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<OverlayModule, [typeof i1.OverlayFrame], [typeof i2.CommonModule, typeof i3.MatLegacyProgressSpinnerModule], [typeof i1.OverlayFrame]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<OverlayModule>;
|
|
9
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./scroll.frame";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@ng-atomic/common/directives/ios-safari-scroll-buggyfill";
|
|
5
|
-
export declare class ScrollModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ScrollModule, [typeof i1.ScrollFrame], [typeof i2.CommonModule, typeof i3.IosSafariScrollBuggyfillModule], [typeof i1.ScrollFrame]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ScrollModule>;
|
|
9
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./smart-menu.frame";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class SmartMenuModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartMenuModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartMenuModule, [typeof i1.SmartMenuFrame], [typeof i2.CommonModule], [typeof i1.SmartMenuFrame]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SmartMenuModule>;
|
|
8
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./actions-column.molecule";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/table";
|
|
5
|
-
import * as i4 from "@angular/material/menu";
|
|
6
|
-
import * as i5 from "@angular/material/button";
|
|
7
|
-
import * as i6 from "@angular/material/icon";
|
|
8
|
-
import * as i7 from "@ng-atomic/components/atoms/smart-menu-button";
|
|
9
|
-
export declare class ActionsColumnModule {
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ActionsColumnModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ActionsColumnModule, [typeof i1.ActionsColumnMolecule], [typeof i2.CommonModule, typeof i3.MatTableModule, typeof i4.MatMenuModule, typeof i5.MatButtonModule, typeof i6.MatIconModule, typeof i7.SmartMenuButtonModule], [typeof i1.ActionsColumnMolecule]>;
|
|
12
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ActionsColumnModule>;
|
|
13
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./checkbox-column.molecule";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/legacy-table";
|
|
5
|
-
import * as i4 from "@angular/material/legacy-checkbox";
|
|
6
|
-
export declare class CheckboxColumnModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxColumnModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CheckboxColumnModule, [typeof i1.CheckboxColumnMolecule], [typeof i2.CommonModule, typeof i3.MatLegacyTableModule, typeof i4.MatLegacyCheckboxModule], [typeof i1.CheckboxColumnMolecule]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<CheckboxColumnModule>;
|
|
10
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./chips-input-field.molecule";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/forms";
|
|
5
|
-
import * as i4 from "@angular/material/legacy-chips";
|
|
6
|
-
import * as i5 from "@angular/material/icon";
|
|
7
|
-
import * as i6 from "@angular/material/legacy-input";
|
|
8
|
-
import * as i7 from "@angular/material/legacy-form-field";
|
|
9
|
-
import * as i8 from "@ng-atomic/components/atoms/chips-input";
|
|
10
|
-
export declare class ChipsInputFieldModule {
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ChipsInputFieldModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ChipsInputFieldModule, [typeof i1.ChipsInputFieldMolecule], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.MatLegacyChipsModule, typeof i5.MatIconModule, typeof i6.MatLegacyInputModule, typeof i7.MatLegacyFormFieldModule, typeof i6.MatLegacyInputModule, typeof i8.ChipsInputModule], [typeof i1.ChipsInputFieldMolecule]>;
|
|
13
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ChipsInputFieldModule>;
|
|
14
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./date-input-field.molecule";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/forms";
|
|
5
|
-
import * as i4 from "@angular/material/legacy-input";
|
|
6
|
-
import * as i5 from "@angular/material/datepicker";
|
|
7
|
-
import * as i6 from "@ng-atomic/common/utils";
|
|
8
|
-
export declare class DateInputFieldModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DateInputFieldModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DateInputFieldModule, [typeof i1.DateInputFieldMolecule], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.MatLegacyInputModule, typeof i5.MatDatepickerModule, typeof i6.MatDayjsDateModule], [typeof i1.DateInputFieldMolecule]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<DateInputFieldModule>;
|
|
12
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./header.molecule";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class HeaderModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<HeaderModule, [typeof i1.HeaderMolecule], [typeof i2.CommonModule], [typeof i1.HeaderMolecule]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<HeaderModule>;
|
|
8
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./navigation-list-item.molecule";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/legacy-list";
|
|
5
|
-
import * as i4 from "@ng-atomic/components/atoms/icon";
|
|
6
|
-
export declare class NavigationListItemModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationListItemModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NavigationListItemModule, [typeof i1.NavigationListItemMolecule], [typeof i2.CommonModule, typeof i3.MatLegacyListModule, typeof i4.IconModule], [typeof i1.NavigationListItemMolecule]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<NavigationListItemModule>;
|
|
10
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./select-input-field.molecule";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/forms";
|
|
5
|
-
import * as i4 from "@angular/material/select";
|
|
6
|
-
export declare class SelectInputFieldModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectInputFieldModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SelectInputFieldModule, [typeof i1.SelectInputFieldMolecule], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.MatSelectModule], [typeof i1.SelectInputFieldMolecule]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SelectInputFieldModule>;
|
|
10
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./smart-column.molecule";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/cdk/clipboard";
|
|
5
|
-
import * as i4 from "@ng-atomic/common/pipes/smart-exp";
|
|
6
|
-
import * as i5 from "@ng-atomic/common/pipes/data-accessor";
|
|
7
|
-
import * as i6 from "@angular/material/button";
|
|
8
|
-
import * as i7 from "@angular/material/icon";
|
|
9
|
-
import * as i8 from "@angular/material/table";
|
|
10
|
-
import * as i9 from "@angular/material/tooltip";
|
|
11
|
-
export declare class SmartColumnModule {
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartColumnModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartColumnModule, [typeof i1.SmartColumnMolecule], [typeof i2.CommonModule, typeof i3.ClipboardModule, typeof i4.SmartExpModule, typeof i5.DataAccessorPipe, typeof i6.MatButtonModule, typeof i7.MatIconModule, typeof i8.MatTableModule, typeof i9.MatTooltipModule], [typeof i1.SmartColumnMolecule]>;
|
|
14
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SmartColumnModule>;
|
|
15
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./text-input-field.molecule";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/forms";
|
|
5
|
-
import * as i4 from "@angular/material/input";
|
|
6
|
-
export declare class TextInputFieldModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TextInputFieldModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TextInputFieldModule, [typeof i1.TextInputFieldMolecule], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.MatInputModule], [typeof i1.TextInputFieldMolecule]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<TextInputFieldModule>;
|
|
10
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./textarea-field.molecule";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/forms";
|
|
5
|
-
import * as i4 from "@angular/material/input";
|
|
6
|
-
export declare class TextareaFieldModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TextareaFieldModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TextareaFieldModule, [typeof i1.TextareaFieldMolecule], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.MatInputModule], [typeof i1.TextareaFieldMolecule]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<TextareaFieldModule>;
|
|
10
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./action-buttons-section.organism";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/legacy-button";
|
|
5
|
-
export declare class ActionButtonsSectionModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ActionButtonsSectionModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ActionButtonsSectionModule, [typeof i1.ActionButtonsSectionOrganism], [typeof i2.CommonModule, typeof i3.MatLegacyButtonModule], [typeof i1.ActionButtonsSectionOrganism]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ActionButtonsSectionModule>;
|
|
9
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./back-navigator.organism";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/legacy-button";
|
|
5
|
-
import * as i4 from "@angular/material/icon";
|
|
6
|
-
import * as i5 from "@angular/material/toolbar";
|
|
7
|
-
import * as i6 from "@ng-atomic/components/atoms/smart-menu-button";
|
|
8
|
-
export declare class BackNavigatorModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BackNavigatorModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BackNavigatorModule, [typeof i1.BackNavigatorOrganism], [typeof i2.CommonModule, typeof i3.MatLegacyButtonModule, typeof i4.MatIconModule, typeof i5.MatToolbarModule, typeof i6.SmartMenuButtonModule], [typeof i1.BackNavigatorOrganism]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<BackNavigatorModule>;
|
|
12
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./card-input-section.organism";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@ng-atomic/components/molecules/text-input-field";
|
|
5
|
-
export declare class CardInputSectionModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CardInputSectionModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CardInputSectionModule, [typeof i1.CardInputSectionOrganism], [typeof i2.CommonModule, typeof i3.TextInputFieldModule], [typeof i1.CardInputSectionOrganism]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<CardInputSectionModule>;
|
|
9
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./cvc-and-exp-input-section.organism";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@ng-atomic/components/molecules/select-input-field";
|
|
5
|
-
import * as i4 from "@ng-atomic/components/molecules/text-input-field";
|
|
6
|
-
export declare class CvcAndExpInputSectionModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CvcAndExpInputSectionModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CvcAndExpInputSectionModule, [typeof i1.CvcAndExpInputSectionOrganism], [typeof i2.CommonModule, typeof i3.SelectInputFieldModule, typeof i4.TextInputFieldModule], [typeof i1.CvcAndExpInputSectionOrganism]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<CvcAndExpInputSectionModule>;
|
|
10
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./date-input-section.organism";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@ng-atomic/components/molecules/date-input-field";
|
|
5
|
-
export declare class DateInputSectionModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DateInputSectionModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DateInputSectionModule, [typeof i1.DateInputSectionOrganism], [typeof i2.CommonModule, typeof i3.DateInputFieldModule], [typeof i1.DateInputSectionOrganism]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<DateInputSectionModule>;
|
|
9
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./heading.organism";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class HeadingModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HeadingModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<HeadingModule, [typeof i1.HeadingOrganism], [typeof i2.CommonModule], [typeof i1.HeadingOrganism]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<HeadingModule>;
|
|
8
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./navigation-list.organism";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/legacy-list";
|
|
5
|
-
import * as i4 from "@ng-atomic/components/molecules/navigation-list-item";
|
|
6
|
-
export declare class NavigationListModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationListModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NavigationListModule, [typeof i1.NavigationListOrganism], [typeof i2.CommonModule, typeof i3.MatLegacyListModule, typeof i4.NavigationListItemModule], [typeof i1.NavigationListOrganism]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<NavigationListModule>;
|
|
10
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./navigator.organism";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/legacy-button";
|
|
5
|
-
import * as i4 from "@angular/material/icon";
|
|
6
|
-
import * as i5 from "@angular/material/toolbar";
|
|
7
|
-
import * as i6 from "@ng-atomic/components/atoms/smart-menu-button";
|
|
8
|
-
export declare class NavigatorModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NavigatorModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NavigatorModule, [typeof i1.NavigatorOrganism], [typeof i2.CommonModule, typeof i3.MatLegacyButtonModule, typeof i4.MatIconModule, typeof i5.MatToolbarModule, typeof i6.SmartMenuButtonModule], [typeof i1.NavigatorOrganism]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<NavigatorModule>;
|
|
12
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./paginator.organism";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/legacy-paginator";
|
|
5
|
-
import * as i4 from "@ng-atomic/components/frames/auto-layout";
|
|
6
|
-
import * as i5 from "@ng-atomic/components/molecules/chips-input-field";
|
|
7
|
-
export declare class PaginatorModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PaginatorModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PaginatorModule, [typeof i1.PaginatorOrganism], [typeof i2.CommonModule, typeof i3.MatLegacyPaginatorModule, typeof i4.AutoLayoutModule, typeof i5.ChipsInputFieldModule], [typeof i1.PaginatorOrganism]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<PaginatorModule>;
|
|
11
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./select-input-section.organism";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@ng-atomic/components/molecules/select-input-field";
|
|
5
|
-
export declare class SelectInputSectionModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectInputSectionModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SelectInputSectionModule, [typeof i1.SelectInputSectionOrganism], [typeof i2.CommonModule, typeof i3.SelectInputFieldModule], [typeof i1.SelectInputSectionOrganism]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SelectInputSectionModule>;
|
|
9
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./smart-list.organism";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/legacy-list";
|
|
5
|
-
import * as i4 from "@angular/material/icon";
|
|
6
|
-
import * as i5 from "@angular/material/core";
|
|
7
|
-
import * as i6 from "@ng-atomic/common/pipes/data-accessor";
|
|
8
|
-
export declare class SmartListModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartListModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartListModule, [typeof i1.SmartListOrganism], [typeof i2.CommonModule, typeof i3.MatLegacyListModule, typeof i4.MatIconModule, typeof i5.MatRippleModule, typeof i6.DataAccessorPipe], [typeof i1.SmartListOrganism]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SmartListModule>;
|
|
12
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./smart-table.organism";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@ng-atomic/common/pipes/domain";
|
|
5
|
-
import * as i4 from "@angular/material/legacy-table";
|
|
6
|
-
import * as i5 from "@angular/material/legacy-checkbox";
|
|
7
|
-
import * as i6 from "@angular/material/legacy-menu";
|
|
8
|
-
import * as i7 from "@angular/material/legacy-button";
|
|
9
|
-
import * as i8 from "@angular/material/icon";
|
|
10
|
-
import * as i9 from "@ng-atomic/components/molecules/actions-column";
|
|
11
|
-
import * as i10 from "@ng-atomic/components/molecules/checkbox-column";
|
|
12
|
-
import * as i11 from "@ng-atomic/components/molecules/smart-column";
|
|
13
|
-
export declare class SmartTableModule {
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartTableModule, never>;
|
|
15
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartTableModule, [typeof i1.SmartTableOrganism], [typeof i2.CommonModule, typeof i3.DomainModule, typeof i4.MatLegacyTableModule, typeof i5.MatLegacyCheckboxModule, typeof i6.MatLegacyMenuModule, typeof i7.MatLegacyButtonModule, typeof i8.MatIconModule, typeof i9.ActionsColumnModule, typeof i10.CheckboxColumnModule, typeof i11.SmartColumnModule], [typeof i1.SmartTableOrganism]>;
|
|
16
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SmartTableModule>;
|
|
17
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./social-login-section.organism";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/legacy-button";
|
|
5
|
-
export declare class SocialLoginSectionModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SocialLoginSectionModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SocialLoginSectionModule, [typeof i1.SocialLoginSectionOrganism], [typeof i2.CommonModule, typeof i3.MatLegacyButtonModule], [typeof i1.SocialLoginSectionOrganism]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SocialLoginSectionModule>;
|
|
9
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./text-input-section.organism";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@ng-atomic/components/molecules/text-input-field";
|
|
5
|
-
export declare class TextInputSectionModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TextInputSectionModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TextInputSectionModule, [typeof i1.TextInputSectionOrganism], [typeof i2.CommonModule, typeof i3.TextInputFieldModule], [typeof i1.TextInputSectionOrganism]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<TextInputSectionModule>;
|
|
9
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./textarea-section.organism";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@ng-atomic/components/molecules/textarea-field";
|
|
5
|
-
export declare class TextareaSectionModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TextareaSectionModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TextareaSectionModule, [typeof i1.TextareaSectionOrganism], [typeof i2.CommonModule, typeof i3.TextareaFieldModule], [typeof i1.TextareaSectionOrganism]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<TextareaSectionModule>;
|
|
9
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./top-navigator.organism";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/toolbar";
|
|
5
|
-
import * as i4 from "@angular/material/legacy-menu";
|
|
6
|
-
import * as i5 from "@ng-atomic/components/atoms/smart-menu-button";
|
|
7
|
-
export declare class TopNavigatorModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TopNavigatorModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TopNavigatorModule, [typeof i1.TopNavigatorOrganism], [typeof i2.CommonModule, typeof i3.MatToolbarModule, typeof i4.MatLegacyMenuModule, typeof i5.SmartMenuButtonModule], [typeof i1.TopNavigatorOrganism]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<TopNavigatorModule>;
|
|
11
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./entrance.template";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@ng-atomic/components/frames/auto-layout";
|
|
5
|
-
import * as i4 from "@ng-atomic/components/frames/card";
|
|
6
|
-
import * as i5 from "@ng-atomic/components/organisms/action-buttons-section";
|
|
7
|
-
import * as i6 from "@ng-atomic/components/organisms/heading";
|
|
8
|
-
import * as i7 from "@ng-atomic/components/organisms/social-login-section";
|
|
9
|
-
import * as i8 from "@ng-atomic/components/organisms/text-input-section";
|
|
10
|
-
export declare class EntranceModule {
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EntranceModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<EntranceModule, [typeof i1.EntranceTemplate], [typeof i2.CommonModule, typeof i3.AutoLayoutModule, typeof i4.CardModule, typeof i5.ActionButtonsSectionModule, typeof i6.HeadingModule, typeof i7.SocialLoginSectionModule, typeof i8.TextInputSectionModule], [typeof i1.EntranceTemplate]>;
|
|
13
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<EntranceModule>;
|
|
14
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./loading.template";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/legacy-progress-spinner";
|
|
5
|
-
export declare class LoadingModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LoadingModule, [typeof i1.LoadingTemplate], [typeof i2.CommonModule, typeof i3.MatLegacyProgressSpinnerModule], [typeof i1.LoadingTemplate]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<LoadingModule>;
|
|
9
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./menu.template";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@ng-atomic/components/organisms/navigation-list";
|
|
5
|
-
export declare class MenuModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MenuModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MenuModule, [typeof i1.MenuTemplate], [typeof i2.CommonModule, typeof i3.NavigationListModule], [typeof i1.MenuTemplate]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<MenuModule>;
|
|
9
|
-
}
|