@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,2 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export { NavigationListItemModule } from './navigation-list-item.module';
|
|
1
|
+
export * from './navigation-list-item.molecule';
|
|
@@ -4,5 +4,5 @@ export declare class NavigationListItemMolecule {
|
|
|
4
4
|
action: Action;
|
|
5
5
|
selected: boolean;
|
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationListItemMolecule, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavigationListItemMolecule, "molecules-navigation-list-item", never, { "action": "action"; "selected": "selected"; }, {}, never, never,
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavigationListItemMolecule, "molecules-navigation-list-item", never, { "action": "action"; "selected": "selected"; }, {}, never, never, true, never>;
|
|
8
8
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FormControl } from '@
|
|
1
|
+
import { FormControl } from '@angular/forms';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export interface Option<T> {
|
|
4
4
|
name: string;
|
|
@@ -6,9 +6,10 @@ export interface Option<T> {
|
|
|
6
6
|
}
|
|
7
7
|
export declare class SelectInputFieldMolecule<T> {
|
|
8
8
|
label: string;
|
|
9
|
+
appearance: 'outline' | 'fill';
|
|
9
10
|
control: FormControl<T>;
|
|
10
11
|
options: Option<T>[];
|
|
11
12
|
value: (item: Option<T>) => T;
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectInputFieldMolecule<any>, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectInputFieldMolecule<any>, "molecules-select-input-field", never, { "label": "label"; "control": "control"; "options": "options"; }, {}, never, never,
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectInputFieldMolecule<any>, "molecules-select-input-field", never, { "label": "label"; "appearance": "appearance"; "control": "control"; "options": "options"; }, {}, never, never, true, never>;
|
|
14
15
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { MatTextColumn } from '@angular/material/table';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class SmartColumnMolecule<T> extends MatTextColumn<T> {
|
|
5
5
|
sort: 'asc' | 'desc' | 'none';
|
|
@@ -7,5 +7,5 @@ export declare class SmartColumnMolecule<T> extends MatTextColumn<T> {
|
|
|
7
7
|
text: string;
|
|
8
8
|
copied(): void;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartColumnMolecule<any>, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartColumnMolecule<any>, "molecules-smart-column", never, { "sort": "sort"; }, { "headerClick": "headerClick"; }, never, never,
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartColumnMolecule<any>, "molecules-smart-column", never, { "sort": "sort"; }, { "headerClick": "headerClick"; }, never, never, true, never>;
|
|
11
11
|
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export { TextInputFieldModule } from './text-input-field.module';
|
|
1
|
+
export * from './text-input-field.molecule';
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { FormControl } from '@
|
|
1
|
+
import { FormControl } from '@angular/forms';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class TextInputFieldMolecule {
|
|
4
|
+
appearance: 'outline' | 'fill';
|
|
4
5
|
type: 'text' | 'number' | 'password';
|
|
5
6
|
name?: string;
|
|
6
7
|
label: string;
|
|
@@ -8,5 +9,5 @@ export declare class TextInputFieldMolecule {
|
|
|
8
9
|
placeholder: string;
|
|
9
10
|
hint?: string;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextInputFieldMolecule, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextInputFieldMolecule, "molecules-text-input-field", never, { "type": "type"; "name": "name"; "label": "label"; "control": "control"; "placeholder": "placeholder"; "hint": "hint"; }, {}, never, never,
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextInputFieldMolecule, "molecules-text-input-field", never, { "appearance": "appearance"; "type": "type"; "name": "name"; "label": "label"; "control": "control"; "placeholder": "placeholder"; "hint": "hint"; }, {}, never, never, true, never>;
|
|
12
13
|
}
|
|
@@ -14,5 +14,5 @@ export declare class TextareaFieldMolecule {
|
|
|
14
14
|
action: EventEmitter<Action<any>>;
|
|
15
15
|
protected onKeyup($event: any): void;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextareaFieldMolecule, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextareaFieldMolecule, "molecules-textarea-field", never, { "label": "label"; "hint": "hint"; "placeholder": "placeholder"; "control": "control"; "rows": "rows"; }, { "action": "action"; }, never, never,
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextareaFieldMolecule, "molecules-textarea-field", never, { "label": "label"; "hint": "hint"; "placeholder": "placeholder"; "control": "control"; "rows": "rows"; }, { "action": "action"; }, never, never, true, never>;
|
|
18
18
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './tree-column.molecule';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { MatTextColumn } from '@angular/material/table';
|
|
3
|
+
import { FlatTreeControl } from '@angular/cdk/tree';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TreeColumnMolecule<T> extends MatTextColumn<T> {
|
|
6
|
+
sort: 'asc' | 'desc' | 'none';
|
|
7
|
+
headerClick: EventEmitter<void>;
|
|
8
|
+
text: string;
|
|
9
|
+
get key(): string;
|
|
10
|
+
copied(): void;
|
|
11
|
+
treeControl: FlatTreeControl<any, any>;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TreeColumnMolecule<any>, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TreeColumnMolecule<any>, "molecules-tree-column", never, { "sort": "sort"; "treeControl": "treeControl"; }, { "headerClick": "headerClick"; }, never, never, true, never>;
|
|
14
|
+
}
|
|
@@ -6,5 +6,5 @@ export declare class ActionButtonsSectionOrganism {
|
|
|
6
6
|
action: EventEmitter<Action<any>>;
|
|
7
7
|
trackById: (item: Action) => string;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActionButtonsSectionOrganism, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ActionButtonsSectionOrganism, "organisms-action-buttons-section", never, { "actions": "actions"; }, { "action": "action"; }, never, never,
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionButtonsSectionOrganism, "organisms-action-buttons-section", never, { "actions": "actions"; }, { "action": "action"; }, never, never, true, never>;
|
|
10
10
|
}
|
|
@@ -9,5 +9,5 @@ export declare class BackNavigatorOrganism {
|
|
|
9
9
|
backButtonClick: EventEmitter<void>;
|
|
10
10
|
action: EventEmitter<Action<any>>;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<BackNavigatorOrganism, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BackNavigatorOrganism, "organisms-back-navigator", never, { "canBack": "canBack"; "title": "title"; "description": "description"; "items": "items"; }, { "backButtonClick": "backButtonClick"; "action": "action"; }, never, never,
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BackNavigatorOrganism, "organisms-back-navigator", never, { "canBack": "canBack"; "title": "title"; "description": "description"; "items": "items"; }, { "backButtonClick": "backButtonClick"; "action": "action"; }, never, never, true, never>;
|
|
13
13
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { FormControl } from '@
|
|
1
|
+
import { FormControl } from '@angular/forms';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class CardInputSectionOrganism {
|
|
4
4
|
control: FormControl<string>;
|
|
5
5
|
label: string;
|
|
6
6
|
placeholder: string;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardInputSectionOrganism, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardInputSectionOrganism, "organisms-card-input-section", never, { "control": "control"; "label": "label"; "placeholder": "placeholder"; }, {}, never, never,
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardInputSectionOrganism, "organisms-card-input-section", never, { "control": "control"; "label": "label"; "placeholder": "placeholder"; }, {}, never, never, true, never>;
|
|
9
9
|
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export { CardInputSectionModule } from './card-input-section.module';
|
|
1
|
+
export * from './card-input-section.organism';
|
|
@@ -6,5 +6,5 @@ export declare class CvcAndExpInputSectionOrganism {
|
|
|
6
6
|
monthOptions: Option<number>[];
|
|
7
7
|
form: UntypedFormGroup;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<CvcAndExpInputSectionOrganism, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CvcAndExpInputSectionOrganism, "organisms-cvc-and-exp-input-section", never, { "form": "form"; }, {}, never, never,
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CvcAndExpInputSectionOrganism, "organisms-cvc-and-exp-input-section", never, { "form": "form"; }, {}, never, never, true, never>;
|
|
10
10
|
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export { CvcAndExpInputSectionModule } from './cvc-and-exp-input-section.module';
|
|
1
|
+
export * from './cvc-and-exp-input-section.organism';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FormControl } from '@
|
|
1
|
+
import { FormControl } from '@angular/forms';
|
|
2
2
|
import dayjs from 'dayjs';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class DateInputSectionOrganism {
|
|
@@ -6,5 +6,5 @@ export declare class DateInputSectionOrganism {
|
|
|
6
6
|
label: string;
|
|
7
7
|
placeholder: string;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DateInputSectionOrganism, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DateInputSectionOrganism, "organisms-date-input-section", never, { "control": "control"; "label": "label"; "placeholder": "placeholder"; }, {}, never, never,
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DateInputSectionOrganism, "organisms-date-input-section", never, { "control": "control"; "label": "label"; "placeholder": "placeholder"; }, {}, never, never, true, never>;
|
|
10
10
|
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { FormArray, FormControl, FormGroup } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FiltersSectionOrganism {
|
|
4
|
+
modifiable: boolean;
|
|
5
|
+
form: FormArray<FormGroup<{
|
|
6
|
+
column: FormControl<string>;
|
|
7
|
+
operator: FormControl<string>;
|
|
8
|
+
value: FormControl<string>;
|
|
9
|
+
}>>;
|
|
10
|
+
columns: string[];
|
|
11
|
+
get columnOptions(): {
|
|
12
|
+
name: string;
|
|
13
|
+
value: string;
|
|
14
|
+
}[];
|
|
15
|
+
protected addFilter(): void;
|
|
16
|
+
protected removeFilter(i: number): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FiltersSectionOrganism, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FiltersSectionOrganism, "organisms-filters-section", never, { "modifiable": "modifiable"; "form": "form"; "columns": "columns"; }, {}, never, never, true, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './filters-section.organism';
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { EditorState } from '@codemirror/state';
|
|
3
|
+
import { AbstractControl } from '@angular/forms';
|
|
4
|
+
import { Action } from '@ng-atomic/common/models';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class GraphqlExtractor {
|
|
7
|
+
extract(output: string): string;
|
|
8
|
+
insert(query: string): string;
|
|
9
|
+
}
|
|
10
|
+
export declare enum ActionId {
|
|
11
|
+
EXECUTE = "execute",
|
|
12
|
+
SAVE = "save"
|
|
13
|
+
}
|
|
14
|
+
export declare class GraphqlEditorOrganism {
|
|
15
|
+
private readonly value$;
|
|
16
|
+
private readonly schema$;
|
|
17
|
+
private stop;
|
|
18
|
+
state: EditorState;
|
|
19
|
+
state$: import("rxjs").Observable<EditorState>;
|
|
20
|
+
private readonly _control;
|
|
21
|
+
control: AbstractControl;
|
|
22
|
+
set schema(value: any);
|
|
23
|
+
keyActions: {
|
|
24
|
+
key: string;
|
|
25
|
+
actionId: string;
|
|
26
|
+
}[];
|
|
27
|
+
action: EventEmitter<Action<any>>;
|
|
28
|
+
ngOnInit(): void;
|
|
29
|
+
private setValue;
|
|
30
|
+
makeEditorState({ schema, value }: {
|
|
31
|
+
schema: any;
|
|
32
|
+
value: string;
|
|
33
|
+
}): EditorState;
|
|
34
|
+
private execute;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GraphqlEditorOrganism, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GraphqlEditorOrganism, "organisms-graphql-editor", never, { "control": "control"; "schema": "schema"; "keyActions": "keyActions"; }, { "action": "action"; }, never, never, true, never>;
|
|
37
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './graphql-editor.organism';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { FormArray, FormControl, FormGroup } from '@angular/forms';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class GridToolbarOrganism {
|
|
4
|
+
form: FormGroup<{
|
|
5
|
+
filters: FormArray<FormGroup<{
|
|
6
|
+
column: FormControl<string>;
|
|
7
|
+
operator: FormControl<string>;
|
|
8
|
+
value: FormControl<string>;
|
|
9
|
+
}>>;
|
|
10
|
+
}>;
|
|
11
|
+
columns: string[];
|
|
12
|
+
get columnOptions(): {
|
|
13
|
+
name: string;
|
|
14
|
+
value: string;
|
|
15
|
+
}[];
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GridToolbarOrganism, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GridToolbarOrganism, "organisms-grid-toolbar", never, { "form": "form"; "columns": "columns"; }, {}, never, never, true, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './grid-toolbar.organism';
|
|
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class HeadingOrganism {
|
|
3
3
|
level: 1 | 2 | 3 | 4 | 5 | 6;
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<HeadingOrganism, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<HeadingOrganism, "organisms-heading", never, { "level": "level"; }, {}, never, ["*"],
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HeadingOrganism, "organisms-heading", never, { "level": "level"; }, {}, never, ["*"], true, never>;
|
|
6
6
|
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export { NavigationListModule } from './navigation-list.module';
|
|
1
|
+
export * from './navigation-list.organism';
|
|
@@ -5,5 +5,5 @@ export declare class NavigationListOrganism {
|
|
|
5
5
|
actions: Action<string>[];
|
|
6
6
|
action: EventEmitter<Action<any>>;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationListOrganism, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavigationListOrganism, "organisms-navigation-list", never, { "actions": "actions"; }, { "action": "action"; }, never, never,
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavigationListOrganism, "organisms-navigation-list", never, { "actions": "actions"; }, { "action": "action"; }, never, never, true, never>;
|
|
9
9
|
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export { NavigatorModule } from './navigator.module';
|
|
1
|
+
export * from './navigator.organism';
|
|
@@ -6,5 +6,5 @@ export declare class NavigatorOrganism {
|
|
|
6
6
|
endActions: Action[];
|
|
7
7
|
action: EventEmitter<Action<any>>;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavigatorOrganism, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavigatorOrganism, "organisms-navigator", never, { "startActions": "startActions"; "endActions": "endActions"; }, { "action": "action"; }, never, ["*"],
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavigatorOrganism, "organisms-navigator", never, { "startActions": "startActions"; "endActions": "endActions"; }, { "action": "action"; }, never, ["*"], true, never>;
|
|
10
10
|
}
|
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { LegacyPageEvent as PageEvent } from '@angular/material/legacy-paginator';
|
|
3
|
-
import { FormControl } from '@
|
|
3
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class PaginatorOrganism {
|
|
6
6
|
control: FormControl<string>;
|
|
7
|
+
form: FormGroup<{
|
|
8
|
+
pageIndex: FormControl<number>;
|
|
9
|
+
pageSize: FormControl<number>;
|
|
10
|
+
length: FormControl<number>;
|
|
11
|
+
}>;
|
|
7
12
|
placeholder: string;
|
|
8
13
|
page: PageEvent;
|
|
9
14
|
pageSizeOptions: number[];
|
|
10
15
|
pageChange: EventEmitter<PageEvent>;
|
|
16
|
+
protected onPageChange(page: PageEvent): void;
|
|
11
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaginatorOrganism, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PaginatorOrganism, "organisms-paginator", never, { "control": "control"; "placeholder": "placeholder"; "page": "page"; "pageSizeOptions": "pageSizeOptions"; }, { "pageChange": "pageChange"; }, never, never,
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaginatorOrganism, "organisms-paginator", never, { "control": "control"; "form": "form"; "placeholder": "placeholder"; "page": "page"; "pageSizeOptions": "pageSizeOptions"; }, { "pageChange": "pageChange"; }, never, never, true, never>;
|
|
13
19
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FormControl } from '@
|
|
1
|
+
import { FormControl } from '@angular/forms';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class SelectInputSectionOrganism<T> {
|
|
4
4
|
label: string;
|
|
@@ -8,5 +8,5 @@ export declare class SelectInputSectionOrganism<T> {
|
|
|
8
8
|
value: T;
|
|
9
9
|
}[];
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelectInputSectionOrganism<any>, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectInputSectionOrganism<any>, "organisms-select-input-section", never, { "label": "label"; "control": "control"; "options": "options"; }, {}, never, never,
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelectInputSectionOrganism<any>, "organisms-select-input-section", never, { "label": "label"; "control": "control"; "options": "options"; }, {}, never, never, true, never>;
|
|
12
12
|
}
|
|
@@ -8,7 +8,6 @@ export declare enum ActionId {
|
|
|
8
8
|
export declare class SmartListOrganism<T> {
|
|
9
9
|
private dataAccessor;
|
|
10
10
|
constructor(dataAccessor: DataAccessor<T>);
|
|
11
|
-
statusAccessor: (data: any) => any;
|
|
12
11
|
items: T[];
|
|
13
12
|
action: EventEmitter<Action<any>>;
|
|
14
13
|
get statusMap(): {
|
|
@@ -17,5 +16,5 @@ export declare class SmartListOrganism<T> {
|
|
|
17
16
|
get statuses(): string[];
|
|
18
17
|
protected onItemClick(item: T): void;
|
|
19
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartListOrganism<any>, [{ optional: true; }]>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartListOrganism<any>, "organisms-smart-list", never, { "items": "items"; }, { "action": "action"; }, never, never,
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartListOrganism<any>, "organisms-smart-list", never, { "items": "items"; }, { "action": "action"; }, never, never, true, never>;
|
|
21
20
|
}
|
|
@@ -1,14 +1,19 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { Actions, Action } from '@ng-atomic/common/models';
|
|
3
|
+
import { FlatTreeControl } from '@angular/cdk/tree';
|
|
4
|
+
import { MatTreeFlatDataSource } from '@angular/material/tree';
|
|
5
|
+
import { DataSource } from '@angular/cdk/collections';
|
|
3
6
|
import * as i0 from "@angular/core";
|
|
4
7
|
interface Sort {
|
|
5
8
|
key?: string;
|
|
6
9
|
order?: 'desc' | 'asc';
|
|
7
10
|
}
|
|
8
11
|
export declare class SmartTableOrganism<Item extends object> {
|
|
12
|
+
protected dataSource: DataSource<Item>;
|
|
9
13
|
_columns: (keyof Item)[];
|
|
10
14
|
get columns(): (keyof Item | string)[];
|
|
11
|
-
|
|
15
|
+
childrenKey: string;
|
|
16
|
+
set items(items: Item[]);
|
|
12
17
|
itemActions: Actions;
|
|
13
18
|
pageSize: number;
|
|
14
19
|
selectedIdSet: Set<string>;
|
|
@@ -19,7 +24,9 @@ export declare class SmartTableOrganism<Item extends object> {
|
|
|
19
24
|
pageChange: EventEmitter<any>;
|
|
20
25
|
itemCheck: EventEmitter<[Item, boolean]>;
|
|
21
26
|
protected trackByColumnName: (columnName: string) => string;
|
|
27
|
+
protected treeControl: FlatTreeControl<any, any>;
|
|
28
|
+
buildTreeFlatDatasource<T = any>(data: T[], key?: string): MatTreeFlatDataSource<any, any, any>;
|
|
22
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartTableOrganism<any>, never>;
|
|
23
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartTableOrganism<any>, "organisms-smart-table", never, { "_columns": "columns"; "items": "items"; "itemActions": "itemActions"; "pageSize": "pageSize"; "selectedIdSet": "selectedIdSet"; "sort": "sort"; }, { "action": "action"; "headerClick": "headerClick"; "checkboxClick": "checkboxClick"; "pageChange": "pageChange"; "itemCheck": "itemCheck"; }, never, never,
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartTableOrganism<any>, "organisms-smart-table", never, { "_columns": "columns"; "childrenKey": "childrenKey"; "items": "items"; "itemActions": "itemActions"; "pageSize": "pageSize"; "selectedIdSet": "selectedIdSet"; "sort": "sort"; }, { "action": "action"; "headerClick": "headerClick"; "checkboxClick": "checkboxClick"; "pageChange": "pageChange"; "itemCheck": "itemCheck"; }, never, never, true, never>;
|
|
24
31
|
}
|
|
25
32
|
export {};
|
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class SocialLoginSectionOrganism {
|
|
4
4
|
signInWithGoogleButtonClick: EventEmitter<void>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<SocialLoginSectionOrganism, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SocialLoginSectionOrganism, "organisms-social-login-section", never, {}, { "signInWithGoogleButtonClick": "signInWithGoogleButtonClick"; }, never, never,
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SocialLoginSectionOrganism, "organisms-social-login-section", never, {}, { "signInWithGoogleButtonClick": "signInWithGoogleButtonClick"; }, never, never, true, never>;
|
|
7
7
|
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export { TextInputSectionModule } from './text-input-section.module';
|
|
1
|
+
export * from './text-input-section.organism';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FormControl } from '@
|
|
1
|
+
import { FormControl } from '@angular/forms';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class TextInputSectionOrganism {
|
|
4
4
|
label: string;
|
|
@@ -7,5 +7,5 @@ export declare class TextInputSectionOrganism {
|
|
|
7
7
|
hint?: string;
|
|
8
8
|
control: FormControl<string>;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextInputSectionOrganism, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextInputSectionOrganism, "organisms-text-input-section", never, { "label": "label"; "placeholder": "placeholder"; "type": "type"; "hint": "hint"; "control": "control"; }, {}, never, never,
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextInputSectionOrganism, "organisms-text-input-section", never, { "label": "label"; "placeholder": "placeholder"; "type": "type"; "hint": "hint"; "control": "control"; }, {}, never, never, true, never>;
|
|
11
11
|
}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export { TextareaSectionModule } from './textarea-section.module';
|
|
1
|
+
export * from './textarea-section.organism';
|
|
@@ -8,5 +8,5 @@ export declare class TextareaSectionOrganism {
|
|
|
8
8
|
control: FormControl<string>;
|
|
9
9
|
action: EventEmitter<Action<any>>;
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextareaSectionOrganism, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextareaSectionOrganism, "organisms-textarea-section", never, { "label": "label"; "rows": "rows"; "control": "control"; }, { "action": "action"; }, never, never,
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextareaSectionOrganism, "organisms-textarea-section", never, { "label": "label"; "rows": "rows"; "control": "control"; }, { "action": "action"; }, never, never, true, never>;
|
|
12
12
|
}
|
|
@@ -9,5 +9,5 @@ export declare class TopNavigatorOrganism {
|
|
|
9
9
|
id: string;
|
|
10
10
|
}) => string;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<TopNavigatorOrganism, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TopNavigatorOrganism, "organisms-top-navigator", never, { "title": "title"; "items": "items"; }, { "action": "action"; }, never, never,
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TopNavigatorOrganism, "organisms-top-navigator", never, { "title": "title"; "items": "items"; }, { "action": "action"; }, never, never, true, never>;
|
|
13
13
|
}
|