@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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ng-atomic/components",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.5.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"module": "fesm2015/ng-atomic-components.mjs",
|
|
6
6
|
"es2020": "fesm2020/ng-atomic-components.mjs",
|
|
@@ -44,6 +44,14 @@
|
|
|
44
44
|
"node": "./fesm2015/ng-atomic-components-atoms-smart-menu-button.mjs",
|
|
45
45
|
"default": "./fesm2020/ng-atomic-components-atoms-smart-menu-button.mjs"
|
|
46
46
|
},
|
|
47
|
+
"./extras/editor": {
|
|
48
|
+
"types": "./extras/editor/index.d.ts",
|
|
49
|
+
"esm2020": "./esm2020/extras/editor/ng-atomic-components-extras-editor.mjs",
|
|
50
|
+
"es2020": "./fesm2020/ng-atomic-components-extras-editor.mjs",
|
|
51
|
+
"es2015": "./fesm2015/ng-atomic-components-extras-editor.mjs",
|
|
52
|
+
"node": "./fesm2015/ng-atomic-components-extras-editor.mjs",
|
|
53
|
+
"default": "./fesm2020/ng-atomic-components-extras-editor.mjs"
|
|
54
|
+
},
|
|
47
55
|
"./frames/auto-layout": {
|
|
48
56
|
"types": "./frames/auto-layout/index.d.ts",
|
|
49
57
|
"esm2020": "./esm2020/frames/auto-layout/ng-atomic-components-frames-auto-layout.mjs",
|
|
@@ -68,6 +76,14 @@
|
|
|
68
76
|
"node": "./fesm2015/ng-atomic-components-frames-drawer.mjs",
|
|
69
77
|
"default": "./fesm2020/ng-atomic-components-frames-drawer.mjs"
|
|
70
78
|
},
|
|
79
|
+
"./frames/fab": {
|
|
80
|
+
"types": "./frames/fab/index.d.ts",
|
|
81
|
+
"esm2020": "./esm2020/frames/fab/ng-atomic-components-frames-fab.mjs",
|
|
82
|
+
"es2020": "./fesm2020/ng-atomic-components-frames-fab.mjs",
|
|
83
|
+
"es2015": "./fesm2015/ng-atomic-components-frames-fab.mjs",
|
|
84
|
+
"node": "./fesm2015/ng-atomic-components-frames-fab.mjs",
|
|
85
|
+
"default": "./fesm2020/ng-atomic-components-frames-fab.mjs"
|
|
86
|
+
},
|
|
71
87
|
"./frames/line-up": {
|
|
72
88
|
"types": "./frames/line-up/index.d.ts",
|
|
73
89
|
"esm2020": "./esm2020/frames/line-up/ng-atomic-components-frames-line-up.mjs",
|
|
@@ -76,6 +92,14 @@
|
|
|
76
92
|
"node": "./fesm2015/ng-atomic-components-frames-line-up.mjs",
|
|
77
93
|
"default": "./fesm2020/ng-atomic-components-frames-line-up.mjs"
|
|
78
94
|
},
|
|
95
|
+
"./frames/loading": {
|
|
96
|
+
"types": "./frames/loading/index.d.ts",
|
|
97
|
+
"esm2020": "./esm2020/frames/loading/ng-atomic-components-frames-loading.mjs",
|
|
98
|
+
"es2020": "./fesm2020/ng-atomic-components-frames-loading.mjs",
|
|
99
|
+
"es2015": "./fesm2015/ng-atomic-components-frames-loading.mjs",
|
|
100
|
+
"node": "./fesm2015/ng-atomic-components-frames-loading.mjs",
|
|
101
|
+
"default": "./fesm2020/ng-atomic-components-frames-loading.mjs"
|
|
102
|
+
},
|
|
79
103
|
"./frames/overlay": {
|
|
80
104
|
"types": "./frames/overlay/index.d.ts",
|
|
81
105
|
"esm2020": "./esm2020/frames/overlay/ng-atomic-components-frames-overlay.mjs",
|
|
@@ -180,6 +204,14 @@
|
|
|
180
204
|
"node": "./fesm2015/ng-atomic-components-molecules-textarea-field.mjs",
|
|
181
205
|
"default": "./fesm2020/ng-atomic-components-molecules-textarea-field.mjs"
|
|
182
206
|
},
|
|
207
|
+
"./molecules/tree-column": {
|
|
208
|
+
"types": "./molecules/tree-column/index.d.ts",
|
|
209
|
+
"esm2020": "./esm2020/molecules/tree-column/ng-atomic-components-molecules-tree-column.mjs",
|
|
210
|
+
"es2020": "./fesm2020/ng-atomic-components-molecules-tree-column.mjs",
|
|
211
|
+
"es2015": "./fesm2015/ng-atomic-components-molecules-tree-column.mjs",
|
|
212
|
+
"node": "./fesm2015/ng-atomic-components-molecules-tree-column.mjs",
|
|
213
|
+
"default": "./fesm2020/ng-atomic-components-molecules-tree-column.mjs"
|
|
214
|
+
},
|
|
183
215
|
"./organisms/action-buttons-section": {
|
|
184
216
|
"types": "./organisms/action-buttons-section/index.d.ts",
|
|
185
217
|
"esm2020": "./esm2020/organisms/action-buttons-section/ng-atomic-components-organisms-action-buttons-section.mjs",
|
|
@@ -220,6 +252,30 @@
|
|
|
220
252
|
"node": "./fesm2015/ng-atomic-components-organisms-date-input-section.mjs",
|
|
221
253
|
"default": "./fesm2020/ng-atomic-components-organisms-date-input-section.mjs"
|
|
222
254
|
},
|
|
255
|
+
"./organisms/filters-section": {
|
|
256
|
+
"types": "./organisms/filters-section/index.d.ts",
|
|
257
|
+
"esm2020": "./esm2020/organisms/filters-section/ng-atomic-components-organisms-filters-section.mjs",
|
|
258
|
+
"es2020": "./fesm2020/ng-atomic-components-organisms-filters-section.mjs",
|
|
259
|
+
"es2015": "./fesm2015/ng-atomic-components-organisms-filters-section.mjs",
|
|
260
|
+
"node": "./fesm2015/ng-atomic-components-organisms-filters-section.mjs",
|
|
261
|
+
"default": "./fesm2020/ng-atomic-components-organisms-filters-section.mjs"
|
|
262
|
+
},
|
|
263
|
+
"./organisms/graphql-editor": {
|
|
264
|
+
"types": "./organisms/graphql-editor/index.d.ts",
|
|
265
|
+
"esm2020": "./esm2020/organisms/graphql-editor/ng-atomic-components-organisms-graphql-editor.mjs",
|
|
266
|
+
"es2020": "./fesm2020/ng-atomic-components-organisms-graphql-editor.mjs",
|
|
267
|
+
"es2015": "./fesm2015/ng-atomic-components-organisms-graphql-editor.mjs",
|
|
268
|
+
"node": "./fesm2015/ng-atomic-components-organisms-graphql-editor.mjs",
|
|
269
|
+
"default": "./fesm2020/ng-atomic-components-organisms-graphql-editor.mjs"
|
|
270
|
+
},
|
|
271
|
+
"./organisms/grid-toolbar": {
|
|
272
|
+
"types": "./organisms/grid-toolbar/index.d.ts",
|
|
273
|
+
"esm2020": "./esm2020/organisms/grid-toolbar/ng-atomic-components-organisms-grid-toolbar.mjs",
|
|
274
|
+
"es2020": "./fesm2020/ng-atomic-components-organisms-grid-toolbar.mjs",
|
|
275
|
+
"es2015": "./fesm2015/ng-atomic-components-organisms-grid-toolbar.mjs",
|
|
276
|
+
"node": "./fesm2015/ng-atomic-components-organisms-grid-toolbar.mjs",
|
|
277
|
+
"default": "./fesm2020/ng-atomic-components-organisms-grid-toolbar.mjs"
|
|
278
|
+
},
|
|
223
279
|
"./organisms/heading": {
|
|
224
280
|
"types": "./organisms/heading/index.d.ts",
|
|
225
281
|
"esm2020": "./esm2020/organisms/heading/ng-atomic-components-organisms-heading.mjs",
|
|
@@ -370,22 +426,29 @@
|
|
|
370
426
|
"tslib": "^2.3.0"
|
|
371
427
|
},
|
|
372
428
|
"peerDependencies": {
|
|
373
|
-
"@storybook/addons": "6.
|
|
374
|
-
"@storybook/theming": "6.
|
|
375
|
-
"@angular/core": "15.
|
|
376
|
-
"@angular/platform-browser": "15.
|
|
377
|
-
"@ng-atomic/elements": "5.
|
|
378
|
-
"@angular/cdk": "15.
|
|
379
|
-
"@angular/material": "15.
|
|
380
|
-
"@
|
|
381
|
-
"rxjs": "7.
|
|
382
|
-
"@ng-atomic/common": "5.
|
|
383
|
-
"@
|
|
384
|
-
"@ng-atomic/storybook": "5.4.1",
|
|
429
|
+
"@storybook/addons": "^6.4.10",
|
|
430
|
+
"@storybook/theming": "^6.4.10",
|
|
431
|
+
"@angular/core": "^15.0.0",
|
|
432
|
+
"@angular/platform-browser": "^15.0.0",
|
|
433
|
+
"@ng-atomic/elements": "5.5.0",
|
|
434
|
+
"@angular/cdk": "^15.0.0",
|
|
435
|
+
"@angular/material": "^15.0.0",
|
|
436
|
+
"@angular/forms": "^15.0.0",
|
|
437
|
+
"rxjs": "^7.0.0",
|
|
438
|
+
"@ng-atomic/common": "5.5.0",
|
|
439
|
+
"@ng-atomic/storybook": "5.5.0",
|
|
385
440
|
"@storybook/angular": "6.5.13",
|
|
386
|
-
"@
|
|
387
|
-
"
|
|
388
|
-
"@angular/
|
|
389
|
-
"
|
|
441
|
+
"@codemirror/state": "6.2.0",
|
|
442
|
+
"codemirror": "^6.0.1",
|
|
443
|
+
"@angular/animations": "^15.0.0",
|
|
444
|
+
"resize-observer-polyfill": "^1.5.1",
|
|
445
|
+
"@angular/router": "^15.0.0",
|
|
446
|
+
"@angular/platform-browser-dynamic": "^15.0.0",
|
|
447
|
+
"@codemirror/view": "6.9.3",
|
|
448
|
+
"@codemirror/commands": "6.2.2",
|
|
449
|
+
"@codemirror/autocomplete": "^6.0.0",
|
|
450
|
+
"@codemirror/language": "6.0.0",
|
|
451
|
+
"@codemirror/theme-one-dark": "^6.0.0",
|
|
452
|
+
"cm6-graphql": "^0.0.4"
|
|
390
453
|
}
|
|
391
|
-
}
|
|
454
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { Action } from '@ng-atomic/common/models';
|
|
3
|
-
import { FormGroup, FormControl } from '@
|
|
3
|
+
import { FormGroup, FormControl } from '@angular/forms';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare enum ActionId {
|
|
6
6
|
SIGN_IN = "[@ng-atomic/components] Sign In",
|
|
@@ -19,5 +19,5 @@ export declare class EntranceTemplate {
|
|
|
19
19
|
actions: Action<any>[];
|
|
20
20
|
action: EventEmitter<Action<any>>;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<EntranceTemplate, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EntranceTemplate, "templates-entrance", never, { "form": "form"; "isEmailSectionShown": "isEmailSectionShown"; "isPasswordSectionShown": "isPasswordSectionShown"; "actions": "actions"; }, { "action": "action"; }, never, never,
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EntranceTemplate, "templates-entrance", never, { "form": "form"; "isEmailSectionShown": "isEmailSectionShown"; "isPasswordSectionShown": "isPasswordSectionShown"; "actions": "actions"; }, { "action": "action"; }, never, never, true, never>;
|
|
23
23
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class LoadingTemplate {
|
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingTemplate, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingTemplate, "templates-loading", never, {}, {}, never, never,
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingTemplate, "templates-loading", never, {}, {}, never, never, true, never>;
|
|
5
5
|
}
|
|
@@ -5,5 +5,5 @@ export declare class MenuTemplate {
|
|
|
5
5
|
actions: Action<string>[];
|
|
6
6
|
action: EventEmitter<Action<any>>;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<MenuTemplate, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MenuTemplate, "templates-menu", never, { "actions": "actions"; }, { "action": "action"; }, never, ["[header]", "[footer]"],
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MenuTemplate, "templates-menu", never, { "actions": "actions"; }, { "action": "action"; }, never, ["[header]", "[footer]"], true, never>;
|
|
9
9
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { AbstractControl } from '@angular/forms';
|
|
3
3
|
import { Action } from '@ng-atomic/common/models';
|
|
4
|
-
import { FormGroup } from '@
|
|
4
|
+
import { FormGroup } from '@angular/forms';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare enum ActionId {
|
|
7
7
|
BACK = "[@ng-atomic/components/templates/smart-crud] Back",
|
|
@@ -1,14 +1,21 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { LegacyPageEvent as PageEvent } from '@angular/material/legacy-paginator';
|
|
3
3
|
import { Action } from '@ng-atomic/common/models';
|
|
4
|
-
import { FormControl } from '@
|
|
4
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare enum ActionId {
|
|
7
7
|
BACK = "[@ng-atomic/components/templates/smart-index] Back",
|
|
8
|
-
TABLE_HEADER_CLICK = "[@ng-atomic/components/templates/smart-index] Table Header Click"
|
|
8
|
+
TABLE_HEADER_CLICK = "[@ng-atomic/components/templates/smart-index] Table Header Click",
|
|
9
|
+
ITEM_CLICK = "[@ng-atomic/components/templates/smart-index] Item Click"
|
|
9
10
|
}
|
|
10
11
|
export declare class SmartIndexTemplate<T> {
|
|
11
12
|
protected ActionId: typeof ActionId;
|
|
13
|
+
tableChildrenKey: string;
|
|
14
|
+
form: FormGroup<{
|
|
15
|
+
pageIndex: FormControl<number>;
|
|
16
|
+
pageSize: FormControl<number>;
|
|
17
|
+
length: FormControl<number>;
|
|
18
|
+
}>;
|
|
12
19
|
queryControl: FormControl<string>;
|
|
13
20
|
title: string;
|
|
14
21
|
description?: string;
|
|
@@ -30,5 +37,5 @@ export declare class SmartIndexTemplate<T> {
|
|
|
30
37
|
pageChange: EventEmitter<PageEvent>;
|
|
31
38
|
onAction(action: Action): void;
|
|
32
39
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartIndexTemplate<any>, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartIndexTemplate<any>, "templates-smart-index", never, { "queryControl": "queryControl"; "title": "title"; "description": "description"; "items": "items"; "itemActions": "itemActions"; "navStartActions": "navStartActions"; "navEndActions": "navEndActions"; "properties": "properties"; "selectedIdSet": "selectedIdSet"; "sortKey": "sortKey"; "sortOrder": "sortOrder"; "page": "page"; "pageSizeOptions": "pageSizeOptions"; "queryPlaceholder": "queryPlaceholder"; "device": "device"; }, { "action": "action"; "backButtonClick": "backButtonClick"; "checkboxClick": "checkboxClick"; "pageChange": "pageChange"; }, never, never, true, never>;
|
|
40
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartIndexTemplate<any>, "templates-smart-index", never, { "tableChildrenKey": "tableChildrenKey"; "form": "form"; "queryControl": "queryControl"; "title": "title"; "description": "description"; "items": "items"; "itemActions": "itemActions"; "navStartActions": "navStartActions"; "navEndActions": "navEndActions"; "properties": "properties"; "selectedIdSet": "selectedIdSet"; "sortKey": "sortKey"; "sortOrder": "sortOrder"; "page": "page"; "pageSizeOptions": "pageSizeOptions"; "queryPlaceholder": "queryPlaceholder"; "device": "device"; }, { "action": "action"; "backButtonClick": "backButtonClick"; "checkboxClick": "checkboxClick"; "pageChange": "pageChange"; }, never, never, true, never>;
|
|
34
41
|
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./chips-input.atom";
|
|
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
|
-
export declare class ChipsInputModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ChipsInputModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ChipsInputModule, [typeof i1.ChipsInputAtom], [typeof i2.CommonModule, typeof i3.ReactiveFormsModule, typeof i4.MatLegacyChipsModule, typeof i5.MatIconModule, typeof i6.MatLegacyInputModule], [typeof i1.ChipsInputAtom]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ChipsInputModule>;
|
|
12
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./icon.atom";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/icon";
|
|
5
|
-
export declare class IconModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IconModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IconModule, [typeof i1.IconAtom], [typeof i2.CommonModule, typeof i3.MatIconModule], [typeof i1.IconAtom]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<IconModule>;
|
|
9
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./smart-menu-button.atom";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/button";
|
|
5
|
-
import * as i4 from "@angular/material/icon";
|
|
6
|
-
import * as i5 from "@angular/material/menu";
|
|
7
|
-
export declare class SmartMenuButtonModule {
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartMenuButtonModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SmartMenuButtonModule, [typeof i1.SmartMenuButtonAtom], [typeof i2.CommonModule, typeof i3.MatButtonModule, typeof i4.MatIconModule, typeof i5.MatMenuModule], [typeof i1.SmartMenuButtonAtom]>;
|
|
10
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SmartMenuButtonModule>;
|
|
11
|
-
}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { ReactiveFormsModule } from '@angular/forms';
|
|
4
|
-
import { MatLegacyChipsModule as MatChipsModule } from '@angular/material/legacy-chips';
|
|
5
|
-
import { MatIconModule } from '@angular/material/icon';
|
|
6
|
-
import { MatLegacyInputModule as MatInputModule } from '@angular/material/legacy-input';
|
|
7
|
-
import { ChipsInputAtom } from './chips-input.atom';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export class ChipsInputModule {
|
|
10
|
-
}
|
|
11
|
-
ChipsInputModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ChipsInputModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
12
|
-
ChipsInputModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: ChipsInputModule, bootstrap: [ChipsInputAtom], declarations: [ChipsInputAtom], imports: [CommonModule,
|
|
13
|
-
ReactiveFormsModule,
|
|
14
|
-
// Materials
|
|
15
|
-
MatChipsModule,
|
|
16
|
-
MatIconModule,
|
|
17
|
-
MatInputModule], exports: [ChipsInputAtom] });
|
|
18
|
-
ChipsInputModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ChipsInputModule, imports: [CommonModule,
|
|
19
|
-
ReactiveFormsModule,
|
|
20
|
-
// Materials
|
|
21
|
-
MatChipsModule,
|
|
22
|
-
MatIconModule,
|
|
23
|
-
MatInputModule] });
|
|
24
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ChipsInputModule, decorators: [{
|
|
25
|
-
type: NgModule,
|
|
26
|
-
args: [{
|
|
27
|
-
declarations: [
|
|
28
|
-
ChipsInputAtom
|
|
29
|
-
],
|
|
30
|
-
imports: [
|
|
31
|
-
CommonModule,
|
|
32
|
-
ReactiveFormsModule,
|
|
33
|
-
// Materials
|
|
34
|
-
MatChipsModule,
|
|
35
|
-
MatIconModule,
|
|
36
|
-
MatInputModule,
|
|
37
|
-
],
|
|
38
|
-
exports: [
|
|
39
|
-
ChipsInputAtom
|
|
40
|
-
],
|
|
41
|
-
bootstrap: [ChipsInputAtom],
|
|
42
|
-
}]
|
|
43
|
-
}] });
|
|
44
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hpcHMtaW5wdXQubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvQG5nLWF0b21pYy9jb21wb25lbnRzL3NyYy9hdG9tcy9jaGlwcy1pbnB1dC9jaGlwcy1pbnB1dC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDckQsT0FBTyxFQUFFLG9CQUFvQixJQUFJLGNBQWMsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQ3hGLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN2RCxPQUFPLEVBQUUsb0JBQW9CLElBQUksY0FBYyxFQUFFLE1BQU0sZ0NBQWdDLENBQUM7QUFDeEYsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLG9CQUFvQixDQUFDOztBQW9CcEQsTUFBTSxPQUFPLGdCQUFnQjs7NkdBQWhCLGdCQUFnQjs4R0FBaEIsZ0JBQWdCLGNBRmYsY0FBYyxrQkFieEIsY0FBYyxhQUdkLFlBQVk7UUFDWixtQkFBbUI7UUFDbkIsWUFBWTtRQUNaLGNBQWM7UUFDZCxhQUFhO1FBQ2IsY0FBYyxhQUdkLGNBQWM7OEdBSUwsZ0JBQWdCLFlBWnpCLFlBQVk7UUFDWixtQkFBbUI7UUFDbkIsWUFBWTtRQUNaLGNBQWM7UUFDZCxhQUFhO1FBQ2IsY0FBYzsyRkFPTCxnQkFBZ0I7a0JBakI1QixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWixjQUFjO3FCQUNmO29CQUNELE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLG1CQUFtQjt3QkFDbkIsWUFBWTt3QkFDWixjQUFjO3dCQUNkLGFBQWE7d0JBQ2IsY0FBYztxQkFDZjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsY0FBYztxQkFDZjtvQkFDRCxTQUFTLEVBQUUsQ0FBQyxjQUFjLENBQUM7aUJBQzVCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBSZWFjdGl2ZUZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHsgTWF0TGVnYWN5Q2hpcHNNb2R1bGUgYXMgTWF0Q2hpcHNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9sZWdhY3ktY2hpcHMnO1xuaW1wb3J0IHsgTWF0SWNvbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2ljb24nO1xuaW1wb3J0IHsgTWF0TGVnYWN5SW5wdXRNb2R1bGUgYXMgTWF0SW5wdXRNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9sZWdhY3ktaW5wdXQnO1xuaW1wb3J0IHsgQ2hpcHNJbnB1dEF0b20gfSBmcm9tICcuL2NoaXBzLWlucHV0LmF0b20nO1xuXG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW1xuICAgIENoaXBzSW5wdXRBdG9tXG4gIF0sXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgUmVhY3RpdmVGb3Jtc01vZHVsZSxcbiAgICAvLyBNYXRlcmlhbHNcbiAgICBNYXRDaGlwc01vZHVsZSxcbiAgICBNYXRJY29uTW9kdWxlLFxuICAgIE1hdElucHV0TW9kdWxlLFxuICBdLFxuICBleHBvcnRzOiBbXG4gICAgQ2hpcHNJbnB1dEF0b21cbiAgXSxcbiAgYm9vdHN0cmFwOiBbQ2hpcHNJbnB1dEF0b21dLFxufSlcbmV4cG9ydCBjbGFzcyBDaGlwc0lucHV0TW9kdWxlIHsgfSJdfQ==
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { MatIconModule } from '@angular/material/icon';
|
|
4
|
-
import { IconAtom } from './icon.atom';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class IconModule {
|
|
7
|
-
}
|
|
8
|
-
IconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: IconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
9
|
-
IconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: IconModule, declarations: [IconAtom], imports: [CommonModule,
|
|
10
|
-
// Material
|
|
11
|
-
MatIconModule], exports: [IconAtom] });
|
|
12
|
-
IconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: IconModule, imports: [CommonModule,
|
|
13
|
-
// Material
|
|
14
|
-
MatIconModule] });
|
|
15
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: IconModule, decorators: [{
|
|
16
|
-
type: NgModule,
|
|
17
|
-
args: [{
|
|
18
|
-
declarations: [
|
|
19
|
-
IconAtom
|
|
20
|
-
],
|
|
21
|
-
imports: [
|
|
22
|
-
CommonModule,
|
|
23
|
-
// Material
|
|
24
|
-
MatIconModule,
|
|
25
|
-
],
|
|
26
|
-
exports: [
|
|
27
|
-
IconAtom
|
|
28
|
-
]
|
|
29
|
-
}]
|
|
30
|
-
}] });
|
|
31
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaWNvbi5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL2F0b21zL2ljb24vaWNvbi5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGFBQWEsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxhQUFhLENBQUM7O0FBaUJ2QyxNQUFNLE9BQU8sVUFBVTs7dUdBQVYsVUFBVTt3R0FBVixVQUFVLGlCQVhuQixRQUFRLGFBR1IsWUFBWTtRQUNaLFdBQVc7UUFDWCxhQUFhLGFBR2IsUUFBUTt3R0FHQyxVQUFVLFlBUm5CLFlBQVk7UUFDWixXQUFXO1FBQ1gsYUFBYTsyRkFNSixVQUFVO2tCQWJ0QixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWixRQUFRO3FCQUNUO29CQUNELE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLFdBQVc7d0JBQ1gsYUFBYTtxQkFDZDtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsUUFBUTtxQkFDVDtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTWF0SWNvbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2ljb24nO1xuaW1wb3J0IHsgSWNvbkF0b20gfSBmcm9tICcuL2ljb24uYXRvbSc7XG5cblxuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBJY29uQXRvbVxuICBdLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIC8vIE1hdGVyaWFsXG4gICAgTWF0SWNvbk1vZHVsZSxcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIEljb25BdG9tXG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgSWNvbk1vZHVsZSB7IH1cbiJdfQ==
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { MatButtonModule } from '@angular/material/button';
|
|
4
|
-
import { MatIconModule } from '@angular/material/icon';
|
|
5
|
-
import { MatMenuModule } from '@angular/material/menu';
|
|
6
|
-
import { SmartMenuButtonAtom } from './smart-menu-button.atom';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export class SmartMenuButtonModule {
|
|
9
|
-
}
|
|
10
|
-
SmartMenuButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: SmartMenuButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
11
|
-
SmartMenuButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: SmartMenuButtonModule, declarations: [SmartMenuButtonAtom], imports: [CommonModule,
|
|
12
|
-
// Material
|
|
13
|
-
MatButtonModule,
|
|
14
|
-
MatIconModule,
|
|
15
|
-
MatMenuModule], exports: [SmartMenuButtonAtom] });
|
|
16
|
-
SmartMenuButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: SmartMenuButtonModule, imports: [CommonModule,
|
|
17
|
-
// Material
|
|
18
|
-
MatButtonModule,
|
|
19
|
-
MatIconModule,
|
|
20
|
-
MatMenuModule] });
|
|
21
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: SmartMenuButtonModule, decorators: [{
|
|
22
|
-
type: NgModule,
|
|
23
|
-
args: [{
|
|
24
|
-
declarations: [SmartMenuButtonAtom],
|
|
25
|
-
imports: [
|
|
26
|
-
CommonModule,
|
|
27
|
-
// Material
|
|
28
|
-
MatButtonModule,
|
|
29
|
-
MatIconModule,
|
|
30
|
-
MatMenuModule,
|
|
31
|
-
],
|
|
32
|
-
exports: [SmartMenuButtonAtom]
|
|
33
|
-
}]
|
|
34
|
-
}] });
|
|
35
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnQtbWVudS1idXR0b24ubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvQG5nLWF0b21pYy9jb21wb25lbnRzL3NyYy9hdG9tcy9zbWFydC1tZW51LWJ1dHRvbi9zbWFydC1tZW51LWJ1dHRvbi5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzNELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN2RCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFFdkQsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7O0FBYy9ELE1BQU0sT0FBTyxxQkFBcUI7O2tIQUFyQixxQkFBcUI7bUhBQXJCLHFCQUFxQixpQkFWakIsbUJBQW1CLGFBRWhDLFlBQVk7UUFDWixXQUFXO1FBQ1gsZUFBZTtRQUNmLGFBQWE7UUFDYixhQUFhLGFBRUwsbUJBQW1CO21IQUVsQixxQkFBcUIsWUFSOUIsWUFBWTtRQUNaLFdBQVc7UUFDWCxlQUFlO1FBQ2YsYUFBYTtRQUNiLGFBQWE7MkZBSUoscUJBQXFCO2tCQVhqQyxRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRSxDQUFDLG1CQUFtQixDQUFDO29CQUNuQyxPQUFPLEVBQUU7d0JBQ1AsWUFBWTt3QkFDWixXQUFXO3dCQUNYLGVBQWU7d0JBQ2YsYUFBYTt3QkFDYixhQUFhO3FCQUNkO29CQUNELE9BQU8sRUFBRSxDQUFDLG1CQUFtQixDQUFDO2lCQUMvQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTWF0QnV0dG9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvYnV0dG9uJztcbmltcG9ydCB7IE1hdEljb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9pY29uJztcbmltcG9ydCB7IE1hdE1lbnVNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9tZW51JztcblxuaW1wb3J0IHsgU21hcnRNZW51QnV0dG9uQXRvbSB9IGZyb20gJy4vc21hcnQtbWVudS1idXR0b24uYXRvbSc7XG5cblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbU21hcnRNZW51QnV0dG9uQXRvbV0sXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgLy8gTWF0ZXJpYWxcbiAgICBNYXRCdXR0b25Nb2R1bGUsXG4gICAgTWF0SWNvbk1vZHVsZSxcbiAgICBNYXRNZW51TW9kdWxlLFxuICBdLFxuICBleHBvcnRzOiBbU21hcnRNZW51QnV0dG9uQXRvbV1cbn0pXG5leHBvcnQgY2xhc3MgU21hcnRNZW51QnV0dG9uTW9kdWxlIHsgfSJdfQ==
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { AutoLayoutFrame } from './auto-layout.frame';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class AutoLayoutModule {
|
|
6
|
-
}
|
|
7
|
-
AutoLayoutModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: AutoLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
8
|
-
AutoLayoutModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: AutoLayoutModule, declarations: [AutoLayoutFrame], imports: [CommonModule], exports: [AutoLayoutFrame] });
|
|
9
|
-
AutoLayoutModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: AutoLayoutModule, imports: [CommonModule] });
|
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: AutoLayoutModule, decorators: [{
|
|
11
|
-
type: NgModule,
|
|
12
|
-
args: [{
|
|
13
|
-
declarations: [
|
|
14
|
-
AutoLayoutFrame
|
|
15
|
-
],
|
|
16
|
-
imports: [
|
|
17
|
-
CommonModule
|
|
18
|
-
],
|
|
19
|
-
exports: [
|
|
20
|
-
AutoLayoutFrame
|
|
21
|
-
]
|
|
22
|
-
}]
|
|
23
|
-
}] });
|
|
24
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0by1sYXlvdXQubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvQG5nLWF0b21pYy9jb21wb25lbnRzL3NyYy9mcmFtZXMvYXV0by1sYXlvdXQvYXV0by1sYXlvdXQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBRS9DLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQzs7QUFjdEQsTUFBTSxPQUFPLGdCQUFnQjs7NkdBQWhCLGdCQUFnQjs4R0FBaEIsZ0JBQWdCLGlCQVR6QixlQUFlLGFBR2YsWUFBWSxhQUdaLGVBQWU7OEdBR04sZ0JBQWdCLFlBTnpCLFlBQVk7MkZBTUgsZ0JBQWdCO2tCQVg1QixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWixlQUFlO3FCQUNoQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsWUFBWTtxQkFDYjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsZUFBZTtxQkFDaEI7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcblxuaW1wb3J0IHsgQXV0b0xheW91dEZyYW1lIH0gZnJvbSAnLi9hdXRvLWxheW91dC5mcmFtZSc7XG5cblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbXG4gICAgQXV0b0xheW91dEZyYW1lXG4gIF0sXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGVcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIEF1dG9MYXlvdXRGcmFtZVxuICBdXG59KVxuZXhwb3J0IGNsYXNzIEF1dG9MYXlvdXRNb2R1bGUgeyB9Il19
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { MatLegacyCardModule as MatCardModule } from '@angular/material/legacy-card';
|
|
4
|
-
import { CardFrame } from './card.frame';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class CardModule {
|
|
7
|
-
}
|
|
8
|
-
CardModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: CardModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
9
|
-
CardModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: CardModule, declarations: [CardFrame], imports: [CommonModule,
|
|
10
|
-
// Material
|
|
11
|
-
MatCardModule], exports: [CardFrame] });
|
|
12
|
-
CardModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: CardModule, imports: [CommonModule,
|
|
13
|
-
// Material
|
|
14
|
-
MatCardModule] });
|
|
15
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: CardModule, decorators: [{
|
|
16
|
-
type: NgModule,
|
|
17
|
-
args: [{
|
|
18
|
-
declarations: [
|
|
19
|
-
CardFrame
|
|
20
|
-
],
|
|
21
|
-
imports: [
|
|
22
|
-
CommonModule,
|
|
23
|
-
// Material
|
|
24
|
-
MatCardModule,
|
|
25
|
-
],
|
|
26
|
-
exports: [
|
|
27
|
-
CardFrame
|
|
28
|
-
]
|
|
29
|
-
}]
|
|
30
|
-
}] });
|
|
31
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL2ZyYW1lcy9jYXJkL2NhcmQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxtQkFBbUIsSUFBSSxhQUFhLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQztBQUNyRixPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sY0FBYyxDQUFDOztBQWlCekMsTUFBTSxPQUFPLFVBQVU7O3VHQUFWLFVBQVU7d0dBQVYsVUFBVSxpQkFYbkIsU0FBUyxhQUdULFlBQVk7UUFDWixXQUFXO1FBQ1gsYUFBYSxhQUdiLFNBQVM7d0dBR0EsVUFBVSxZQVJuQixZQUFZO1FBQ1osV0FBVztRQUNYLGFBQWE7MkZBTUosVUFBVTtrQkFidEIsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUU7d0JBQ1osU0FBUztxQkFDVjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsWUFBWTt3QkFDWixXQUFXO3dCQUNYLGFBQWE7cUJBQ2Q7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLFNBQVM7cUJBQ1Y7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE1hdExlZ2FjeUNhcmRNb2R1bGUgYXMgTWF0Q2FyZE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2xlZ2FjeS1jYXJkJztcbmltcG9ydCB7IENhcmRGcmFtZSB9IGZyb20gJy4vY2FyZC5mcmFtZSc7XG5cblxuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBDYXJkRnJhbWVcbiAgXSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICAvLyBNYXRlcmlhbFxuICAgIE1hdENhcmRNb2R1bGUsXG4gIF0sXG4gIGV4cG9ydHM6IFtcbiAgICBDYXJkRnJhbWVcbiAgXVxufSlcbmV4cG9ydCBjbGFzcyBDYXJkTW9kdWxlIHsgfSJdfQ==
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { MatSidenavModule } from '@angular/material/sidenav';
|
|
4
|
-
import { DrawerFrame } from './drawer.frame';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class DrawerModule {
|
|
7
|
-
}
|
|
8
|
-
DrawerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: DrawerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
9
|
-
DrawerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: DrawerModule, declarations: [DrawerFrame], imports: [CommonModule,
|
|
10
|
-
MatSidenavModule], exports: [DrawerFrame] });
|
|
11
|
-
DrawerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: DrawerModule, imports: [CommonModule,
|
|
12
|
-
MatSidenavModule] });
|
|
13
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: DrawerModule, decorators: [{
|
|
14
|
-
type: NgModule,
|
|
15
|
-
args: [{
|
|
16
|
-
declarations: [DrawerFrame],
|
|
17
|
-
imports: [
|
|
18
|
-
CommonModule,
|
|
19
|
-
MatSidenavModule,
|
|
20
|
-
],
|
|
21
|
-
exports: [DrawerFrame]
|
|
22
|
-
}]
|
|
23
|
-
}] });
|
|
24
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJhd2VyLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL0BuZy1hdG9taWMvY29tcG9uZW50cy9zcmMvZnJhbWVzL2RyYXdlci9kcmF3ZXIubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBRTdELE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7QUFZN0MsTUFBTSxPQUFPLFlBQVk7O3lHQUFaLFlBQVk7MEdBQVosWUFBWSxpQkFQUixXQUFXLGFBRXhCLFlBQVk7UUFDWixnQkFBZ0IsYUFFUixXQUFXOzBHQUVWLFlBQVksWUFMckIsWUFBWTtRQUNaLGdCQUFnQjsyRkFJUCxZQUFZO2tCQVJ4QixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRSxDQUFDLFdBQVcsQ0FBQztvQkFDM0IsT0FBTyxFQUFFO3dCQUNQLFlBQVk7d0JBQ1osZ0JBQWdCO3FCQUNqQjtvQkFDRCxPQUFPLEVBQUUsQ0FBQyxXQUFXLENBQUM7aUJBQ3ZCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBNYXRTaWRlbmF2TW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvc2lkZW5hdic7XG5cbmltcG9ydCB7IERyYXdlckZyYW1lIH0gZnJvbSAnLi9kcmF3ZXIuZnJhbWUnO1xuXG5cblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbRHJhd2VyRnJhbWVdLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIE1hdFNpZGVuYXZNb2R1bGUsXG4gIF0sXG4gIGV4cG9ydHM6IFtEcmF3ZXJGcmFtZV1cbn0pXG5leHBvcnQgY2xhc3MgRHJhd2VyTW9kdWxlIHsgfSJdfQ==
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { MatLegacyProgressSpinnerModule as MatProgressSpinnerModule } from '@angular/material/legacy-progress-spinner';
|
|
4
|
-
import { OverlayFrame } from './overlay.frame';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class OverlayModule {
|
|
7
|
-
}
|
|
8
|
-
OverlayModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: OverlayModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
9
|
-
OverlayModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: OverlayModule, declarations: [OverlayFrame], imports: [CommonModule,
|
|
10
|
-
MatProgressSpinnerModule], exports: [OverlayFrame] });
|
|
11
|
-
OverlayModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: OverlayModule, imports: [CommonModule,
|
|
12
|
-
MatProgressSpinnerModule] });
|
|
13
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: OverlayModule, decorators: [{
|
|
14
|
-
type: NgModule,
|
|
15
|
-
args: [{
|
|
16
|
-
declarations: [OverlayFrame],
|
|
17
|
-
imports: [
|
|
18
|
-
CommonModule,
|
|
19
|
-
MatProgressSpinnerModule
|
|
20
|
-
],
|
|
21
|
-
exports: [
|
|
22
|
-
OverlayFrame
|
|
23
|
-
]
|
|
24
|
-
}]
|
|
25
|
-
}] });
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3ZlcmxheS5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL2ZyYW1lcy9vdmVybGF5L292ZXJsYXkubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSw4QkFBOEIsSUFBSSx3QkFBd0IsRUFBRSxNQUFNLDJDQUEyQyxDQUFDO0FBQ3ZILE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQzs7QUFZL0MsTUFBTSxPQUFPLGFBQWE7OzBHQUFiLGFBQWE7MkdBQWIsYUFBYSxpQkFUVCxZQUFZLGFBRXpCLFlBQVk7UUFDWix3QkFBd0IsYUFHeEIsWUFBWTsyR0FHSCxhQUFhLFlBUHRCLFlBQVk7UUFDWix3QkFBd0I7MkZBTWYsYUFBYTtrQkFWekIsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQzVCLE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLHdCQUF3QjtxQkFDekI7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLFlBQVk7cUJBQ2I7aUJBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE1hdExlZ2FjeVByb2dyZXNzU3Bpbm5lck1vZHVsZSBhcyBNYXRQcm9ncmVzc1NwaW5uZXJNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9sZWdhY3ktcHJvZ3Jlc3Mtc3Bpbm5lcic7XG5pbXBvcnQgeyBPdmVybGF5RnJhbWUgfSBmcm9tICcuL292ZXJsYXkuZnJhbWUnO1xuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtPdmVybGF5RnJhbWVdLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIE1hdFByb2dyZXNzU3Bpbm5lck1vZHVsZVxuICBdLFxuICBleHBvcnRzOiBbXG4gICAgT3ZlcmxheUZyYW1lXG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgT3ZlcmxheU1vZHVsZSB7IH1cblxuIl19
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { IosSafariScrollBuggyfillModule } from '@ng-atomic/common/directives/ios-safari-scroll-buggyfill';
|
|
4
|
-
import { ScrollFrame } from './scroll.frame';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class ScrollModule {
|
|
7
|
-
}
|
|
8
|
-
ScrollModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ScrollModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
9
|
-
ScrollModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: ScrollModule, declarations: [ScrollFrame], imports: [CommonModule,
|
|
10
|
-
IosSafariScrollBuggyfillModule], exports: [ScrollFrame] });
|
|
11
|
-
ScrollModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ScrollModule, imports: [CommonModule,
|
|
12
|
-
IosSafariScrollBuggyfillModule] });
|
|
13
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: ScrollModule, decorators: [{
|
|
14
|
-
type: NgModule,
|
|
15
|
-
args: [{
|
|
16
|
-
declarations: [
|
|
17
|
-
ScrollFrame
|
|
18
|
-
],
|
|
19
|
-
imports: [
|
|
20
|
-
CommonModule,
|
|
21
|
-
IosSafariScrollBuggyfillModule,
|
|
22
|
-
],
|
|
23
|
-
exports: [
|
|
24
|
-
ScrollFrame
|
|
25
|
-
]
|
|
26
|
-
}]
|
|
27
|
-
}] });
|
|
28
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2Nyb2xsLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL0BuZy1hdG9taWMvY29tcG9uZW50cy9zcmMvZnJhbWVzL3Njcm9sbC9zY3JvbGwubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSw4QkFBOEIsRUFBRSxNQUFNLDBEQUEwRCxDQUFDO0FBQzFHLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7QUFlN0MsTUFBTSxPQUFPLFlBQVk7O3lHQUFaLFlBQVk7MEdBQVosWUFBWSxpQkFWckIsV0FBVyxhQUdYLFlBQVk7UUFDWiw4QkFBOEIsYUFHOUIsV0FBVzswR0FHRixZQUFZLFlBUHJCLFlBQVk7UUFDWiw4QkFBOEI7MkZBTXJCLFlBQVk7a0JBWnhCLFFBQVE7bUJBQUM7b0JBQ1IsWUFBWSxFQUFFO3dCQUNaLFdBQVc7cUJBQ1o7b0JBQ0QsT0FBTyxFQUFFO3dCQUNQLFlBQVk7d0JBQ1osOEJBQThCO3FCQUMvQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsV0FBVztxQkFDWjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgSW9zU2FmYXJpU2Nyb2xsQnVnZ3lmaWxsTW9kdWxlIH0gZnJvbSAnQG5nLWF0b21pYy9jb21tb24vZGlyZWN0aXZlcy9pb3Mtc2FmYXJpLXNjcm9sbC1idWdneWZpbGwnO1xuaW1wb3J0IHsgU2Nyb2xsRnJhbWUgfSBmcm9tICcuL3Njcm9sbC5mcmFtZSc7XG5cblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbXG4gICAgU2Nyb2xsRnJhbWVcbiAgXSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBJb3NTYWZhcmlTY3JvbGxCdWdneWZpbGxNb2R1bGUsXG4gIF0sXG4gIGV4cG9ydHM6IFtcbiAgICBTY3JvbGxGcmFtZVxuICBdXG59KVxuZXhwb3J0IGNsYXNzIFNjcm9sbE1vZHVsZSB7IH1cbiJdfQ==
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { SmartMenuFrame } from './smart-menu.frame';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class SmartMenuModule {
|
|
6
|
-
}
|
|
7
|
-
SmartMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: SmartMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
8
|
-
SmartMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.3", ngImport: i0, type: SmartMenuModule, declarations: [SmartMenuFrame], imports: [CommonModule], exports: [SmartMenuFrame] });
|
|
9
|
-
SmartMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: SmartMenuModule, imports: [CommonModule] });
|
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.3", ngImport: i0, type: SmartMenuModule, decorators: [{
|
|
11
|
-
type: NgModule,
|
|
12
|
-
args: [{
|
|
13
|
-
declarations: [SmartMenuFrame],
|
|
14
|
-
imports: [
|
|
15
|
-
CommonModule
|
|
16
|
-
],
|
|
17
|
-
exports: [SmartMenuFrame]
|
|
18
|
-
}]
|
|
19
|
-
}] });
|
|
20
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnQtbWVudS5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9AbmctYXRvbWljL2NvbXBvbmVudHMvc3JjL2ZyYW1lcy9zbWFydC1tZW51L3NtYXJ0LW1lbnUubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQzs7QUFXcEQsTUFBTSxPQUFPLGVBQWU7OzRHQUFmLGVBQWU7NkdBQWYsZUFBZSxpQkFOWCxjQUFjLGFBRTNCLFlBQVksYUFFSixjQUFjOzZHQUViLGVBQWUsWUFKeEIsWUFBWTsyRkFJSCxlQUFlO2tCQVAzQixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRSxDQUFDLGNBQWMsQ0FBQztvQkFDOUIsT0FBTyxFQUFFO3dCQUNQLFlBQVk7cUJBQ2I7b0JBQ0QsT0FBTyxFQUFFLENBQUMsY0FBYyxDQUFDO2lCQUMxQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgU21hcnRNZW51RnJhbWUgfSBmcm9tICcuL3NtYXJ0LW1lbnUuZnJhbWUnO1xuXG5cblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbU21hcnRNZW51RnJhbWVdLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlXG4gIF0sXG4gIGV4cG9ydHM6IFtTbWFydE1lbnVGcmFtZV1cbn0pXG5leHBvcnQgY2xhc3MgU21hcnRNZW51TW9kdWxlIHsgfVxuIl19
|