sidesys-generic-ui 0.0.19 → 0.0.21
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/karma.conf.js +44 -0
- package/ng-package.json +8 -0
- package/package.json +15 -33
- package/src/lib/alert/index.ts +2 -0
- package/src/lib/alert/s-alert.component.css +0 -0
- package/src/lib/alert/s-alert.component.html +3 -0
- package/src/lib/alert/s-alert.component.spec.ts +25 -0
- package/src/lib/alert/s-alert.component.ts +19 -0
- package/src/lib/alert/s-alert.module.ts +15 -0
- package/src/lib/avatar/components/profile-group/index.ts +2 -0
- package/src/lib/avatar/components/profile-group/s-profile-group.component.html +9 -0
- package/src/lib/avatar/components/profile-group/s-profile-group.component.scss +40 -0
- package/src/lib/avatar/components/profile-group/s-profile-group.component.spec.ts +25 -0
- package/src/lib/avatar/components/profile-group/s-profile-group.component.ts +59 -0
- package/src/lib/avatar/components/profile-group/s-profile-group.module.ts +17 -0
- package/src/lib/avatar/index.ts +2 -0
- package/src/lib/avatar/s-avatar.component.html +50 -0
- package/src/lib/avatar/s-avatar.component.scss +239 -0
- package/src/lib/avatar/s-avatar.component.spec.ts +25 -0
- package/src/lib/avatar/s-avatar.component.ts +42 -0
- package/src/lib/avatar/s-avatar.module.ts +19 -0
- package/src/lib/badge/index.ts +2 -0
- package/src/lib/badge/s-badge.component.html +4 -0
- package/src/lib/badge/s-badge.component.scss +65 -0
- package/src/lib/badge/s-badge.component.spec.ts +25 -0
- package/src/lib/badge/s-badge.component.ts +19 -0
- package/src/lib/badge/s-badge.module.ts +16 -0
- package/src/lib/blockquote/index.ts +2 -0
- package/src/lib/blockquote/s-blockquote.component.css +24 -0
- package/src/lib/blockquote/s-blockquote.component.html +5 -0
- package/src/lib/blockquote/s-blockquote.component.spec.ts +25 -0
- package/src/lib/blockquote/s-blockquote.component.ts +17 -0
- package/src/lib/blockquote/s-blockquote.module.ts +15 -0
- package/{lib/breadcrum/index.d.ts → src/lib/breadcrum/index.ts} +1 -0
- package/src/lib/breadcrum/interface/breadcrum-nav.interface.ts +6 -0
- package/src/lib/breadcrum/interface/index.ts +1 -0
- package/src/lib/breadcrum/s-breadcrum.component.html +11 -0
- package/src/lib/breadcrum/s-breadcrum.component.scss +89 -0
- package/src/lib/breadcrum/s-breadcrum.component.spec.ts +25 -0
- package/src/lib/breadcrum/s-breadcrum.component.ts +27 -0
- package/src/lib/breadcrum/s-breadcrum.module.ts +18 -0
- package/src/lib/button/button.module.ts +16 -0
- package/src/lib/button/components/button/s-button.component.html +14 -0
- package/src/lib/button/components/button/s-button.component.scss +237 -0
- package/src/lib/button/components/button/s-button.component.spec.ts +25 -0
- package/src/lib/button/components/button/s-button.component.ts +45 -0
- package/src/lib/button/components/button/styles/s-button-loading.scss +62 -0
- package/src/lib/button/components/button/styles/s-button-themes.scss +162 -0
- package/src/lib/button/index.ts +2 -0
- package/{lib/card/index.d.ts → src/lib/card/index.ts} +1 -1
- package/src/lib/card/s-card-models.ts +11 -0
- package/src/lib/card/s-card.component.html +28 -0
- package/src/lib/card/s-card.component.scss +117 -0
- package/src/lib/card/s-card.component.spec.ts +25 -0
- package/src/lib/card/s-card.component.ts +55 -0
- package/src/lib/card/s-card.module.ts +26 -0
- package/src/lib/checkbox/index.ts +2 -0
- package/src/lib/checkbox/s-checkbox.component.html +4 -0
- package/src/lib/checkbox/s-checkbox.component.scss +63 -0
- package/src/lib/checkbox/s-checkbox.component.spec.ts +25 -0
- package/src/lib/checkbox/s-checkbox.component.ts +55 -0
- package/src/lib/checkbox/s-checkbox.module.ts +17 -0
- package/{lib/company-logo/index.d.ts → src/lib/company-logo/index.ts} +1 -1
- package/src/lib/company-logo/s-company-logo.component.html +3 -0
- package/src/lib/company-logo/s-company-logo.component.scss +14 -0
- package/src/lib/company-logo/s-company-logo.component.spec.ts +25 -0
- package/src/lib/company-logo/s-company-logo.component.ts +38 -0
- package/src/lib/company-logo/s-company-logo.module.ts +16 -0
- package/src/lib/content/index.ts +2 -0
- package/src/lib/content/s-content.component.html +3 -0
- package/src/lib/content/s-content.component.scss +20 -0
- package/src/lib/content/s-content.component.spec.ts +25 -0
- package/src/lib/content/s-content.component.ts +32 -0
- package/src/lib/content/s-content.module.ts +20 -0
- package/{lib/drop-down/index.d.ts → src/lib/drop-down/index.ts} +1 -1
- package/src/lib/drop-down/s-drop-down-button.ts +4 -0
- package/src/lib/drop-down/s-drop-down.component.html +5 -0
- package/src/lib/drop-down/s-drop-down.component.scss +34 -0
- package/src/lib/drop-down/s-drop-down.component.spec.ts +25 -0
- package/src/lib/drop-down/s-drop-down.component.ts +33 -0
- package/src/lib/drop-down/s-drop-down.module.ts +12 -0
- package/src/lib/fonts-material.scss +15 -0
- package/src/lib/fonts.scss +184 -0
- package/{lib/footer/index.d.ts → src/lib/footer/index.ts} +1 -1
- package/src/lib/footer/s-footer.component.html +4 -0
- package/src/lib/footer/s-footer.component.scss +25 -0
- package/src/lib/footer/s-footer.component.spec.ts +25 -0
- package/src/lib/footer/s-footer.component.ts +14 -0
- package/src/lib/footer/s-footer.module.ts +18 -0
- package/{lib/form/index.d.ts → src/lib/form/index.ts} +1 -1
- package/src/lib/form/s-form-control.ts +65 -0
- package/src/lib/form/s-form.component.html +60 -0
- package/src/lib/form/s-form.component.scss +7 -0
- package/src/lib/form/s-form.component.spec.ts +25 -0
- package/src/lib/form/s-form.component.ts +131 -0
- package/src/lib/form/s-form.module.ts +29 -0
- package/src/lib/icon/index.ts +2 -0
- package/src/lib/icon/s-icon.component.css +3 -0
- package/src/lib/icon/s-icon.component.html +8 -0
- package/src/lib/icon/s-icon.component.spec.ts +25 -0
- package/src/lib/icon/s-icon.component.ts +39 -0
- package/src/lib/icon/s-icon.module.ts +16 -0
- package/src/lib/icon/s-icons.ts +55 -0
- package/src/lib/icon-material/index.ts +2 -0
- package/src/lib/icon-material/s-icon-material.component.html +5 -0
- package/src/lib/icon-material/s-icon-material.component.scss +38 -0
- package/src/lib/icon-material/s-icon-material.component.spec.ts +25 -0
- package/src/lib/icon-material/s-icon-material.component.ts +51 -0
- package/src/lib/icon-material/s-icon-material.module.ts +14 -0
- package/src/lib/input/components/error-control/s-error-control.component.html +4 -0
- package/src/lib/input/components/error-control/s-error-control.component.scss +54 -0
- package/src/lib/input/components/error-control/s-error-control.component.spec.ts +25 -0
- package/src/lib/input/components/error-control/s-error-control.component.ts +50 -0
- package/src/lib/input/components/input-text/s-input-text.component.html +270 -0
- package/src/lib/input/components/input-text/s-input-text.component.scss +312 -0
- package/src/lib/input/components/input-text/s-input-text.component.spec.ts +25 -0
- package/src/lib/input/components/input-text/s-input-text.component.ts +311 -0
- package/src/lib/input/components/input-textarea/s-input-textarea.component.html +15 -0
- package/src/lib/input/components/input-textarea/s-input-textarea.component.scss +62 -0
- package/src/lib/input/components/input-textarea/s-input-textarea.component.spec.ts +25 -0
- package/src/lib/input/components/input-textarea/s-input-textarea.component.ts +82 -0
- package/src/lib/input/input.module.ts +30 -0
- package/src/lib/link/index.ts +2 -0
- package/src/lib/link/s-link.component.html +8 -0
- package/src/lib/link/s-link.component.scss +69 -0
- package/src/lib/link/s-link.component.spec.ts +25 -0
- package/src/lib/link/s-link.component.ts +24 -0
- package/src/lib/link/s-link.module.ts +15 -0
- package/src/lib/list/index.ts +2 -0
- package/src/lib/list/s-list.component.html +10 -0
- package/src/lib/list/s-list.component.scss +85 -0
- package/src/lib/list/s-list.component.spec.ts +25 -0
- package/src/lib/list/s-list.component.ts +21 -0
- package/src/lib/list/s-list.module.ts +17 -0
- package/src/lib/list-simple/index.ts +2 -0
- package/src/lib/list-simple/s-list-simple.component.html +3 -0
- package/src/lib/list-simple/s-list-simple.component.scss +146 -0
- package/src/lib/list-simple/s-list-simple.component.spec.ts +25 -0
- package/src/lib/list-simple/s-list-simple.component.ts +19 -0
- package/src/lib/list-simple/s-list-simple.module.ts +17 -0
- package/{lib/login/index.d.ts → src/lib/login/index.ts} +1 -1
- package/src/lib/login/s-login-event.ts +4 -0
- package/src/lib/login/s-login-images.ts +3 -0
- package/{lib/login/s-login-model.d.ts → src/lib/login/s-login-model.ts} +3 -3
- package/src/lib/login/s-login.component.html +46 -0
- package/src/lib/login/s-login.component.scss +69 -0
- package/src/lib/login/s-login.component.ts +92 -0
- package/src/lib/login/s-login.module.ts +24 -0
- package/src/lib/navbar/components/icon-menu/components/s-notificaction.component.ts +35 -0
- package/src/lib/navbar/components/icon-menu/components/s-notification.component.html +38 -0
- package/src/lib/navbar/components/icon-menu/components/s-notification.component.scss +93 -0
- package/src/lib/navbar/components/icon-menu/index.ts +4 -0
- package/src/lib/navbar/components/icon-menu/s-icon-menu-model.ts +21 -0
- package/src/lib/navbar/components/icon-menu/s-icon-menu.component.html +43 -0
- package/src/lib/navbar/components/icon-menu/s-icon-menu.component.scss +95 -0
- package/src/lib/navbar/components/icon-menu/s-icon-menu.component.ts +65 -0
- package/src/lib/navbar/components/icon-menu/s-icon-menu.module.ts +32 -0
- package/{lib/navbar/components/menu-config/index.d.ts → src/lib/navbar/components/menu-config/index.ts} +1 -1
- package/src/lib/navbar/components/menu-config/s-menu-config-model.ts +5 -0
- package/src/lib/navbar/components/menu-config/s-menu-config.component.html +1 -0
- package/src/lib/navbar/components/menu-config/s-menu-config.component.scss +0 -0
- package/src/lib/navbar/components/menu-config/s-menu-config.component.ts +34 -0
- package/src/lib/navbar/components/menu-config/s-menu-config.module.ts +21 -0
- package/{lib/navbar/components/menu-main/index.d.ts → src/lib/navbar/components/menu-main/index.ts} +1 -1
- package/src/lib/navbar/components/menu-main/s-menu-main-model.ts +7 -0
- package/src/lib/navbar/components/menu-main/s-menu-main.component.html +34 -0
- package/src/lib/navbar/components/menu-main/s-menu-main.component.scss +129 -0
- package/src/lib/navbar/components/menu-main/s-menu-main.component.ts +35 -0
- package/src/lib/navbar/components/menu-main/s-menu-main.module.ts +23 -0
- package/{lib/navbar/components/search-menu/index.d.ts → src/lib/navbar/components/search-menu/index.ts} +1 -1
- package/src/lib/navbar/components/search-menu/s-search-menu.component.html +1 -0
- package/src/lib/navbar/components/search-menu/s-search-menu.component.scss +0 -0
- package/src/lib/navbar/components/search-menu/s-search-menu.component.ts +34 -0
- package/src/lib/navbar/components/search-menu/s-search-menu.module.ts +19 -0
- package/{lib/navbar/index.d.ts → src/lib/navbar/index.ts} +3 -0
- package/src/lib/navbar/s-navbar.component.html +34 -0
- package/src/lib/navbar/s-navbar.component.scss +92 -0
- package/src/lib/navbar/s-navbar.component.ts +72 -0
- package/src/lib/navbar/s-navbar.module.ts +35 -0
- package/{lib/pagination/index.d.ts → src/lib/pagination/index.ts} +1 -1
- package/src/lib/pagination/new/s-pag-model.ts +4 -0
- package/src/lib/pagination/new/s-pag.component.html +27 -0
- package/src/lib/pagination/new/s-pag.component.scss +63 -0
- package/src/lib/pagination/new/s-pag.component.ts +99 -0
- package/src/lib/pagination/s-pagination.component.html +6 -0
- package/src/lib/pagination/s-pagination.component.scss +15 -0
- package/src/lib/pagination/s-pagination.component.ts +79 -0
- package/src/lib/pagination/s-pagination.module.ts +25 -0
- package/src/lib/popup/index.ts +2 -0
- package/src/lib/popup/s-popup.component.html +24 -0
- package/src/lib/popup/s-popup.component.scss +127 -0
- package/src/lib/popup/s-popup.component.spec.ts +25 -0
- package/src/lib/popup/s-popup.component.ts +125 -0
- package/src/lib/popup/s-popup.module.ts +23 -0
- package/src/lib/precode/index.ts +2 -0
- package/src/lib/precode/s-precode.component.html +7 -0
- package/src/lib/precode/s-precode.component.scss +53 -0
- package/src/lib/precode/s-precode.component.spec.ts +25 -0
- package/src/lib/precode/s-precode.component.ts +29 -0
- package/src/lib/precode/s-precode.module.ts +20 -0
- package/src/lib/progressbar/index.ts +2 -0
- package/src/lib/progressbar/s-progressbar.component.html +15 -0
- package/src/lib/progressbar/s-progressbar.component.scss +51 -0
- package/src/lib/progressbar/s-progressbar.component.spec.ts +25 -0
- package/src/lib/progressbar/s-progressbar.component.ts +20 -0
- package/src/lib/progressbar/s-progressbar.module.ts +16 -0
- package/src/lib/progressbar/temperature/temperature.component.ts +25 -0
- package/src/lib/radio/index.ts +2 -0
- package/src/lib/radio/s-radio.component.html +4 -0
- package/src/lib/radio/s-radio.component.scss +57 -0
- package/src/lib/radio/s-radio.component.spec.ts +25 -0
- package/src/lib/radio/s-radio.component.ts +55 -0
- package/src/lib/radio/s-radio.module.ts +17 -0
- package/src/lib/reset.scss +43 -0
- package/{lib/select/index.d.ts → src/lib/select/index.ts} +1 -1
- package/src/lib/select/s-select-model.ts +27 -0
- package/src/lib/select/s-select.module.ts +33 -0
- package/src/lib/select/select-multiple/s-select-multiple.component.html +44 -0
- package/src/lib/select/select-multiple/s-select-multiple.component.scss +200 -0
- package/src/lib/select/select-multiple/s-select-multiple.component.ts +106 -0
- package/src/lib/select/select-normal/s-select.component.html +3 -0
- package/src/lib/select/select-normal/s-select.component.scss +15 -0
- package/src/lib/select/select-normal/s-select.component.spec.ts +25 -0
- package/src/lib/select/select-normal/s-select.component.ts +21 -0
- package/src/lib/select/select-simple/s-select-simple.component.html +57 -0
- package/src/lib/select/select-simple/s-select-simple.component.scss +189 -0
- package/src/lib/select/select-simple/s-select-simple.component.ts +118 -0
- package/src/lib/shared/image-loader.directive.ts +28 -0
- package/src/lib/shared/localstorage.service.ts +64 -0
- package/src/lib/shared/shared.module.ts +17 -0
- package/{lib/sidebar/index.d.ts → src/lib/sidebar/index.ts} +1 -1
- package/src/lib/sidebar/s-sidebar-model.ts +19 -0
- package/src/lib/sidebar/s-sidebar.component.html +63 -0
- package/src/lib/sidebar/s-sidebar.component.scss +300 -0
- package/src/lib/sidebar/s-sidebar.component.spec.ts +25 -0
- package/src/lib/sidebar/s-sidebar.component.ts +81 -0
- package/src/lib/sidebar/s-sidebar.module.ts +24 -0
- package/src/lib/spinner/index.ts +2 -0
- package/src/lib/spinner/s-spinner.component.html +1 -0
- package/src/lib/spinner/s-spinner.component.scss +265 -0
- package/src/lib/spinner/s-spinner.component.spec.ts +25 -0
- package/src/lib/spinner/s-spinner.component.ts +21 -0
- package/src/lib/spinner/s-spinner.module.ts +16 -0
- package/src/lib/stepper/index.ts +2 -0
- package/src/lib/stepper/s-stepper.component.css +0 -0
- package/src/lib/stepper/s-stepper.component.html +3 -0
- package/src/lib/stepper/s-stepper.component.spec.ts +25 -0
- package/src/lib/stepper/s-stepper.component.ts +19 -0
- package/src/lib/stepper/s-stepper.module.ts +15 -0
- package/{lib/sub-menu/index.d.ts → src/lib/sub-menu/index.ts} +1 -1
- package/src/lib/sub-menu/s-sub-menu-model.ts +33 -0
- package/src/lib/sub-menu/s-sub-menu.component.html +77 -0
- package/src/lib/sub-menu/s-sub-menu.component.scss +99 -0
- package/src/lib/sub-menu/s-sub-menu.component.spec.ts +25 -0
- package/src/lib/sub-menu/s-sub-menu.component.ts +56 -0
- package/src/lib/sub-menu/s-sub-menu.module.ts +25 -0
- package/{lib/table/index.d.ts → src/lib/table/index.ts} +1 -1
- package/src/lib/table/s-table-content.ts +30 -0
- package/src/lib/table/s-table.component.html +24 -0
- package/src/lib/table/s-table.component.scss +49 -0
- package/src/lib/table/s-table.component.spec.ts +25 -0
- package/src/lib/table/s-table.component.ts +87 -0
- package/src/lib/table/s-table.module.ts +12 -0
- package/src/lib/table-t/s-tablet.component.html +18 -0
- package/src/lib/table-t/s-tablet.component.scss +41 -0
- package/src/lib/table-t/s-tablet.component.spec.ts +25 -0
- package/src/lib/table-t/s-tablet.component.ts +223 -0
- package/src/lib/table-t/s-tablet.module.ts +10 -0
- package/{lib/tabs/index.d.ts → src/lib/tabs/index.ts} +1 -1
- package/{lib/tabs/models/configTabs.interface.d.ts → src/lib/tabs/models/configTabs.interface.ts} +1 -1
- package/{lib/tabs/models/tab.interface.d.ts → src/lib/tabs/models/tab.interface.ts} +1 -1
- package/src/lib/tabs/s-tabs.component.html +8 -0
- package/src/lib/tabs/s-tabs.component.scss +49 -0
- package/src/lib/tabs/s-tabs.component.spec.ts +25 -0
- package/src/lib/tabs/s-tabs.component.ts +38 -0
- package/src/lib/tabs/s-tabs.module.ts +17 -0
- package/src/lib/tag/index.ts +2 -0
- package/src/lib/tag/s-tag.component.html +3 -0
- package/src/lib/tag/s-tag.component.scss +117 -0
- package/src/lib/tag/s-tag.component.spec.ts +25 -0
- package/src/lib/tag/s-tag.component.ts +17 -0
- package/src/lib/tag/s-tag.module.ts +17 -0
- package/{lib/text-search/index.d.ts → src/lib/text-search/index.ts} +1 -1
- package/src/lib/text-search/s-text-search.component.html +4 -0
- package/src/lib/text-search/s-text-search.component.scss +23 -0
- package/src/lib/text-search/s-text-search.component.spec.ts +25 -0
- package/src/lib/text-search/s-text-search.component.ts +30 -0
- package/src/lib/text-search/s-text-search.module.ts +16 -0
- package/src/lib/theme/index.ts +2 -0
- package/src/lib/theme/s-theme.component.scss +1 -0
- package/src/lib/theme/s-theme.component.spec.ts +25 -0
- package/src/lib/theme/s-theme.component.ts +12 -0
- package/src/lib/theme/s-theme.module.ts +15 -0
- package/src/lib/theme.scss +662 -0
- package/src/lib/thumbnail/index.ts +2 -0
- package/src/lib/thumbnail/s-thumbnail-model.ts +5 -0
- package/src/lib/thumbnail/s-thumbnail.component.html +3 -0
- package/src/lib/thumbnail/s-thumbnail.component.scss +6 -0
- package/src/lib/thumbnail/s-thumbnail.component.spec.ts +25 -0
- package/src/lib/thumbnail/s-thumbnail.component.ts +22 -0
- package/src/lib/thumbnail/s-thumbnail.module.ts +17 -0
- package/{lib/toast/index.d.ts → src/lib/toast/index.ts} +1 -1
- package/src/lib/toast/s-toast-service.ts +31 -0
- package/src/lib/toast/s-toast.component.html +16 -0
- package/src/lib/toast/s-toast.component.scss +200 -0
- package/src/lib/toast/s-toast.component.spec.ts +25 -0
- package/src/lib/toast/s-toast.component.ts +86 -0
- package/src/lib/toast/s-toast.module.ts +19 -0
- package/src/lib/toggle-switch/index.ts +2 -0
- package/src/lib/toggle-switch/s-toggle-switch.component.html +10 -0
- package/src/lib/toggle-switch/s-toggle-switch.component.scss +199 -0
- package/src/lib/toggle-switch/s-toggle-switch.component.spec.ts +25 -0
- package/src/lib/toggle-switch/s-toggle-switch.component.ts +72 -0
- package/src/lib/toggle-switch/s-toggle-switch.module.ts +20 -0
- package/src/lib/tooltip/directive/s-tooltip-directive.ts +26 -0
- package/{lib/tooltip/index.d.ts → src/lib/tooltip/index.ts} +1 -1
- package/src/lib/tooltip/s-tooltip-model.ts +6 -0
- package/src/lib/tooltip/s-tooltip.component.html +4 -0
- package/src/lib/tooltip/s-tooltip.component.scss +112 -0
- package/src/lib/tooltip/s-tooltip.component.spec.ts +25 -0
- package/src/lib/tooltip/s-tooltip.component.ts +79 -0
- package/src/lib/tooltip/s-tooltip.module.ts +16 -0
- package/{lib/tree-list/index.d.ts → src/lib/tree-list/index.ts} +1 -1
- package/{lib/tree-list/models/tree-node.interface.d.ts → src/lib/tree-list/models/tree-node.interface.ts} +3 -1
- package/src/lib/tree-list/s-tree-list.component.html +29 -0
- package/src/lib/tree-list/s-tree-list.component.scss +46 -0
- package/src/lib/tree-list/s-tree-list.component.ts +127 -0
- package/src/lib/tree-list/s-tree-list.module.ts +22 -0
- package/src/lib/variables.scss +107 -0
- package/src/test.ts +16 -0
- package/tsconfig.lib.json +21 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +17 -0
- package/esm2020/lib/alert/index.mjs +0 -3
- package/esm2020/lib/alert/s-alert.component.mjs +0 -15
- package/esm2020/lib/alert/s-alert.module.mjs +0 -22
- package/esm2020/lib/avatar/components/profile-group/index.mjs +0 -3
- package/esm2020/lib/avatar/components/profile-group/s-profile-group.component.mjs +0 -55
- package/esm2020/lib/avatar/components/profile-group/s-profile-group.module.mjs +0 -26
- package/esm2020/lib/avatar/index.mjs +0 -3
- package/esm2020/lib/avatar/s-avatar.component.mjs +0 -49
- package/esm2020/lib/avatar/s-avatar.module.mjs +0 -30
- package/esm2020/lib/badge/index.mjs +0 -3
- package/esm2020/lib/badge/s-badge.component.mjs +0 -26
- package/esm2020/lib/badge/s-badge.module.mjs +0 -26
- package/esm2020/lib/blockquote/index.mjs +0 -3
- package/esm2020/lib/blockquote/s-blockquote.component.mjs +0 -14
- package/esm2020/lib/blockquote/s-blockquote.module.mjs +0 -22
- package/esm2020/lib/breadcrum/index.mjs +0 -3
- package/esm2020/lib/breadcrum/s-breadcrum.component.mjs +0 -38
- package/esm2020/lib/breadcrum/s-breadcrum.module.mjs +0 -30
- package/esm2020/lib/button/button.module.mjs +0 -24
- package/esm2020/lib/button/components/button/s-button.component.mjs +0 -62
- package/esm2020/lib/button/index.mjs +0 -3
- package/esm2020/lib/card/index.mjs +0 -4
- package/esm2020/lib/card/s-card-models.mjs +0 -11
- package/esm2020/lib/card/s-card.component.mjs +0 -76
- package/esm2020/lib/card/s-card.module.mjs +0 -44
- package/esm2020/lib/checkbox/index.mjs +0 -3
- package/esm2020/lib/checkbox/s-checkbox.component.mjs +0 -66
- package/esm2020/lib/checkbox/s-checkbox.module.mjs +0 -26
- package/esm2020/lib/company-logo/index.mjs +0 -3
- package/esm2020/lib/company-logo/s-company-logo.component.mjs +0 -35
- package/esm2020/lib/company-logo/s-company-logo.module.mjs +0 -22
- package/esm2020/lib/content/index.mjs +0 -3
- package/esm2020/lib/content/s-content.component.mjs +0 -30
- package/esm2020/lib/content/s-content.module.mjs +0 -26
- package/esm2020/lib/drop-down/index.mjs +0 -4
- package/esm2020/lib/drop-down/s-drop-down-button.mjs +0 -7
- package/esm2020/lib/drop-down/s-drop-down.component.mjs +0 -37
- package/esm2020/lib/drop-down/s-drop-down.module.mjs +0 -18
- package/esm2020/lib/footer/index.mjs +0 -3
- package/esm2020/lib/footer/s-footer.component.mjs +0 -15
- package/esm2020/lib/footer/s-footer.module.mjs +0 -28
- package/esm2020/lib/form/index.mjs +0 -4
- package/esm2020/lib/form/s-form-control.mjs +0 -59
- package/esm2020/lib/form/s-form.component.mjs +0 -130
- package/esm2020/lib/form/s-form.module.mjs +0 -51
- package/esm2020/lib/icon/index.mjs +0 -3
- package/esm2020/lib/icon/s-icon.component.mjs +0 -41
- package/esm2020/lib/icon/s-icon.module.mjs +0 -22
- package/esm2020/lib/icon/s-icons.mjs +0 -55
- package/esm2020/lib/icon-material/index.mjs +0 -3
- package/esm2020/lib/icon-material/s-icon-material.component.mjs +0 -57
- package/esm2020/lib/icon-material/s-icon-material.module.mjs +0 -22
- package/esm2020/lib/input/components/error-control/s-error-control.component.mjs +0 -52
- package/esm2020/lib/input/components/input-text/s-input-text.component.mjs +0 -317
- package/esm2020/lib/input/components/input-textarea/s-input-textarea.component.mjs +0 -99
- package/esm2020/lib/input/index.mjs +0 -5
- package/esm2020/lib/input/input.module.mjs +0 -49
- package/esm2020/lib/link/index.mjs +0 -3
- package/esm2020/lib/link/s-link.component.mjs +0 -33
- package/esm2020/lib/link/s-link.module.mjs +0 -22
- package/esm2020/lib/list/index.mjs +0 -3
- package/esm2020/lib/list/s-list.component.mjs +0 -24
- package/esm2020/lib/list/s-list.module.mjs +0 -26
- package/esm2020/lib/list-simple/index.mjs +0 -3
- package/esm2020/lib/list-simple/s-list-simple.component.mjs +0 -17
- package/esm2020/lib/list-simple/s-list-simple.module.mjs +0 -26
- package/esm2020/lib/login/index.mjs +0 -5
- package/esm2020/lib/login/s-login-event.mjs +0 -3
- package/esm2020/lib/login/s-login-images.mjs +0 -4
- package/esm2020/lib/login/s-login-model.mjs +0 -3
- package/esm2020/lib/login/s-login.component.mjs +0 -97
- package/esm2020/lib/login/s-login.module.mjs +0 -32
- package/esm2020/lib/navbar/components/icon-menu/components/s-notificaction.component.mjs +0 -41
- package/esm2020/lib/navbar/components/icon-menu/index.mjs +0 -5
- package/esm2020/lib/navbar/components/icon-menu/s-icon-menu-model.mjs +0 -3
- package/esm2020/lib/navbar/components/icon-menu/s-icon-menu.component.mjs +0 -70
- package/esm2020/lib/navbar/components/icon-menu/s-icon-menu.module.mjs +0 -53
- package/esm2020/lib/navbar/components/menu-config/index.mjs +0 -4
- package/esm2020/lib/navbar/components/menu-config/s-menu-config-model.mjs +0 -8
- package/esm2020/lib/navbar/components/menu-config/s-menu-config.component.mjs +0 -39
- package/esm2020/lib/navbar/components/menu-config/s-menu-config.module.mjs +0 -35
- package/esm2020/lib/navbar/components/menu-main/index.mjs +0 -4
- package/esm2020/lib/navbar/components/menu-main/s-menu-main-model.mjs +0 -3
- package/esm2020/lib/navbar/components/menu-main/s-menu-main.component.mjs +0 -28
- package/esm2020/lib/navbar/components/menu-main/s-menu-main.module.mjs +0 -39
- package/esm2020/lib/navbar/components/search-menu/index.mjs +0 -3
- package/esm2020/lib/navbar/components/search-menu/s-search-menu.component.mjs +0 -38
- package/esm2020/lib/navbar/components/search-menu/s-search-menu.module.mjs +0 -31
- package/esm2020/lib/navbar/index.mjs +0 -9
- package/esm2020/lib/navbar/s-navbar.component.mjs +0 -95
- package/esm2020/lib/navbar/s-navbar.module.mjs +0 -63
- package/esm2020/lib/pagination/index.mjs +0 -4
- package/esm2020/lib/pagination/new/s-pag-model.mjs +0 -7
- package/esm2020/lib/pagination/new/s-pag.component.mjs +0 -98
- package/esm2020/lib/pagination/s-pagination.component.mjs +0 -84
- package/esm2020/lib/pagination/s-pagination.module.mjs +0 -41
- package/esm2020/lib/popup/index.mjs +0 -3
- package/esm2020/lib/popup/s-popup.component.mjs +0 -139
- package/esm2020/lib/popup/s-popup.module.mjs +0 -36
- package/esm2020/lib/precode/index.mjs +0 -3
- package/esm2020/lib/precode/s-precode.component.mjs +0 -32
- package/esm2020/lib/precode/s-precode.module.mjs +0 -32
- package/esm2020/lib/progressbar/index.mjs +0 -3
- package/esm2020/lib/progressbar/s-progressbar.component.mjs +0 -27
- package/esm2020/lib/progressbar/s-progressbar.module.mjs +0 -26
- package/esm2020/lib/progressbar/temperature/temperature.component.mjs +0 -25
- package/esm2020/lib/radio/index.mjs +0 -3
- package/esm2020/lib/radio/s-radio.component.mjs +0 -67
- package/esm2020/lib/radio/s-radio.module.mjs +0 -26
- package/esm2020/lib/select/index.mjs +0 -6
- package/esm2020/lib/select/s-select-model.mjs +0 -9
- package/esm2020/lib/select/s-select.module.mjs +0 -54
- package/esm2020/lib/select/select-multiple/s-select-multiple.component.mjs +0 -127
- package/esm2020/lib/select/select-normal/s-select.component.mjs +0 -28
- package/esm2020/lib/select/select-simple/s-select-simple.component.mjs +0 -132
- package/esm2020/lib/shared/image-loader.directive.mjs +0 -31
- package/esm2020/lib/shared/localstorage.service.mjs +0 -64
- package/esm2020/lib/shared/shared.module.mjs +0 -24
- package/esm2020/lib/sidebar/index.mjs +0 -4
- package/esm2020/lib/sidebar/s-sidebar-model.mjs +0 -2
- package/esm2020/lib/sidebar/s-sidebar.component.mjs +0 -82
- package/esm2020/lib/sidebar/s-sidebar.module.mjs +0 -40
- package/esm2020/lib/spinner/index.mjs +0 -3
- package/esm2020/lib/spinner/s-spinner.component.mjs +0 -27
- package/esm2020/lib/spinner/s-spinner.module.mjs +0 -24
- package/esm2020/lib/stepper/index.mjs +0 -3
- package/esm2020/lib/stepper/s-stepper.component.mjs +0 -15
- package/esm2020/lib/stepper/s-stepper.module.mjs +0 -22
- package/esm2020/lib/sub-menu/index.mjs +0 -4
- package/esm2020/lib/sub-menu/s-sub-menu-model.mjs +0 -15
- package/esm2020/lib/sub-menu/s-sub-menu.component.mjs +0 -64
- package/esm2020/lib/sub-menu/s-sub-menu.module.mjs +0 -42
- package/esm2020/lib/table/index.mjs +0 -4
- package/esm2020/lib/table/s-table-content.mjs +0 -37
- package/esm2020/lib/table/s-table.component.mjs +0 -96
- package/esm2020/lib/table/s-table.module.mjs +0 -20
- package/esm2020/lib/table-t/index.mjs +0 -3
- package/esm2020/lib/table-t/s-tablet.component.mjs +0 -203
- package/esm2020/lib/table-t/s-tablet.module.mjs +0 -18
- package/esm2020/lib/tabs/index.mjs +0 -4
- package/esm2020/lib/tabs/models/configTabs.interface.mjs +0 -2
- package/esm2020/lib/tabs/models/index.mjs +0 -3
- package/esm2020/lib/tabs/models/tab.interface.mjs +0 -2
- package/esm2020/lib/tabs/s-tabs.component.mjs +0 -36
- package/esm2020/lib/tabs/s-tabs.module.mjs +0 -26
- package/esm2020/lib/tag/index.mjs +0 -3
- package/esm2020/lib/tag/s-tag.component.mjs +0 -22
- package/esm2020/lib/tag/s-tag.module.mjs +0 -26
- package/esm2020/lib/text-search/index.mjs +0 -3
- package/esm2020/lib/text-search/s-text-search.component.mjs +0 -29
- package/esm2020/lib/text-search/s-text-search.module.mjs +0 -26
- package/esm2020/lib/theme/index.mjs +0 -3
- package/esm2020/lib/theme/s-theme.component.mjs +0 -11
- package/esm2020/lib/theme/s-theme.module.mjs +0 -22
- package/esm2020/lib/thumbnail/index.mjs +0 -3
- package/esm2020/lib/thumbnail/s-thumbnail.component.mjs +0 -23
- package/esm2020/lib/thumbnail/s-thumbnail.module.mjs +0 -26
- package/esm2020/lib/toast/index.mjs +0 -4
- package/esm2020/lib/toast/s-toast-service.mjs +0 -30
- package/esm2020/lib/toast/s-toast.component.mjs +0 -86
- package/esm2020/lib/toast/s-toast.module.mjs +0 -28
- package/esm2020/lib/toggle-switch/index.mjs +0 -3
- package/esm2020/lib/toggle-switch/s-toggle-switch.component.mjs +0 -85
- package/esm2020/lib/toggle-switch/s-toggle-switch.module.mjs +0 -32
- package/esm2020/lib/tooltip/directive/s-tooltip-directive.mjs +0 -31
- package/esm2020/lib/tooltip/index.mjs +0 -4
- package/esm2020/lib/tooltip/s-tooltip.component.mjs +0 -80
- package/esm2020/lib/tooltip/s-tooltip.module.mjs +0 -25
- package/esm2020/lib/tree-list/index.mjs +0 -4
- package/esm2020/lib/tree-list/models/index.mjs +0 -2
- package/esm2020/lib/tree-list/models/tree-node.interface.mjs +0 -2
- package/esm2020/lib/tree-list/s-tree-list.component.mjs +0 -114
- package/esm2020/lib/tree-list/s-tree-list.module.mjs +0 -36
- package/esm2020/public-api.mjs +0 -44
- package/esm2020/sidesys-generic-ui.mjs +0 -5
- package/fesm2015/sidesys-generic-ui.mjs +0 -4770
- package/fesm2015/sidesys-generic-ui.mjs.map +0 -1
- package/fesm2020/sidesys-generic-ui.mjs +0 -4752
- package/fesm2020/sidesys-generic-ui.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/alert/index.d.ts +0 -2
- package/lib/alert/s-alert.component.d.ts +0 -8
- package/lib/alert/s-alert.module.d.ts +0 -8
- package/lib/avatar/components/profile-group/index.d.ts +0 -2
- package/lib/avatar/components/profile-group/s-profile-group.component.d.ts +0 -12
- package/lib/avatar/components/profile-group/s-profile-group.module.d.ts +0 -9
- package/lib/avatar/index.d.ts +0 -2
- package/lib/avatar/s-avatar.component.d.ts +0 -19
- package/lib/avatar/s-avatar.module.d.ts +0 -10
- package/lib/badge/index.d.ts +0 -2
- package/lib/badge/s-badge.component.d.ts +0 -11
- package/lib/badge/s-badge.module.d.ts +0 -9
- package/lib/blockquote/index.d.ts +0 -2
- package/lib/blockquote/s-blockquote.component.d.ts +0 -8
- package/lib/blockquote/s-blockquote.module.d.ts +0 -8
- package/lib/breadcrum/s-breadcrum.component.d.ts +0 -17
- package/lib/breadcrum/s-breadcrum.module.d.ts +0 -10
- package/lib/button/button.module.d.ts +0 -8
- package/lib/button/components/button/s-button.component.d.ts +0 -21
- package/lib/button/index.d.ts +0 -2
- package/lib/card/s-card-models.d.ts +0 -6
- package/lib/card/s-card.component.d.ts +0 -32
- package/lib/card/s-card.module.d.ts +0 -13
- package/lib/checkbox/index.d.ts +0 -2
- package/lib/checkbox/s-checkbox.component.d.ts +0 -21
- package/lib/checkbox/s-checkbox.module.d.ts +0 -9
- package/lib/company-logo/s-company-logo.component.d.ts +0 -13
- package/lib/company-logo/s-company-logo.module.d.ts +0 -8
- package/lib/content/index.d.ts +0 -2
- package/lib/content/s-content.component.d.ts +0 -14
- package/lib/content/s-content.module.d.ts +0 -8
- package/lib/drop-down/s-drop-down-button.d.ts +0 -4
- package/lib/drop-down/s-drop-down.component.d.ts +0 -20
- package/lib/drop-down/s-drop-down.module.d.ts +0 -8
- package/lib/footer/s-footer.component.d.ts +0 -6
- package/lib/footer/s-footer.module.d.ts +0 -9
- package/lib/form/s-form-control.d.ts +0 -26
- package/lib/form/s-form.component.d.ts +0 -33
- package/lib/form/s-form.module.d.ts +0 -14
- package/lib/icon/index.d.ts +0 -2
- package/lib/icon/s-icon.component.d.ts +0 -18
- package/lib/icon/s-icon.module.d.ts +0 -8
- package/lib/icon/s-icons.d.ts +0 -8
- package/lib/icon-material/index.d.ts +0 -2
- package/lib/icon-material/s-icon-material.component.d.ts +0 -19
- package/lib/icon-material/s-icon-material.module.d.ts +0 -8
- package/lib/input/components/error-control/s-error-control.component.d.ts +0 -13
- package/lib/input/components/input-text/s-input-text.component.d.ts +0 -59
- package/lib/input/components/input-textarea/s-input-textarea.component.d.ts +0 -33
- package/lib/input/input.module.d.ts +0 -13
- package/lib/link/index.d.ts +0 -2
- package/lib/link/s-link.component.d.ts +0 -14
- package/lib/link/s-link.module.d.ts +0 -8
- package/lib/list/index.d.ts +0 -2
- package/lib/list/s-list.component.d.ts +0 -11
- package/lib/list/s-list.module.d.ts +0 -9
- package/lib/list-simple/index.d.ts +0 -2
- package/lib/list-simple/s-list-simple.component.d.ts +0 -9
- package/lib/list-simple/s-list-simple.module.d.ts +0 -9
- package/lib/login/s-login-event.d.ts +0 -4
- package/lib/login/s-login-images.d.ts +0 -3
- package/lib/login/s-login.component.d.ts +0 -35
- package/lib/login/s-login.module.d.ts +0 -10
- package/lib/navbar/components/icon-menu/components/s-notificaction.component.d.ts +0 -16
- package/lib/navbar/components/icon-menu/index.d.ts +0 -4
- package/lib/navbar/components/icon-menu/s-icon-menu-model.d.ts +0 -20
- package/lib/navbar/components/icon-menu/s-icon-menu.component.d.ts +0 -23
- package/lib/navbar/components/icon-menu/s-icon-menu.module.d.ts +0 -15
- package/lib/navbar/components/menu-config/s-menu-config-model.d.ts +0 -5
- package/lib/navbar/components/menu-config/s-menu-config.component.d.ts +0 -19
- package/lib/navbar/components/menu-config/s-menu-config.module.d.ts +0 -11
- package/lib/navbar/components/menu-main/s-menu-main-model.d.ts +0 -7
- package/lib/navbar/components/menu-main/s-menu-main.component.d.ts +0 -13
- package/lib/navbar/components/menu-main/s-menu-main.module.d.ts +0 -12
- package/lib/navbar/components/search-menu/s-search-menu.component.d.ts +0 -17
- package/lib/navbar/components/search-menu/s-search-menu.module.d.ts +0 -10
- package/lib/navbar/s-navbar.component.d.ts +0 -36
- package/lib/navbar/s-navbar.module.d.ts +0 -18
- package/lib/pagination/new/s-pag-model.d.ts +0 -4
- package/lib/pagination/new/s-pag.component.d.ts +0 -32
- package/lib/pagination/s-pagination.component.d.ts +0 -27
- package/lib/pagination/s-pagination.module.d.ts +0 -12
- package/lib/popup/index.d.ts +0 -2
- package/lib/popup/s-popup.component.d.ts +0 -39
- package/lib/popup/s-popup.module.d.ts +0 -10
- package/lib/precode/index.d.ts +0 -2
- package/lib/precode/s-precode.component.d.ts +0 -11
- package/lib/precode/s-precode.module.d.ts +0 -10
- package/lib/progressbar/index.d.ts +0 -2
- package/lib/progressbar/s-progressbar.component.d.ts +0 -11
- package/lib/progressbar/s-progressbar.module.d.ts +0 -9
- package/lib/progressbar/temperature/temperature.component.d.ts +0 -11
- package/lib/radio/index.d.ts +0 -2
- package/lib/radio/s-radio.component.d.ts +0 -21
- package/lib/radio/s-radio.module.d.ts +0 -9
- package/lib/select/s-select-model.d.ts +0 -25
- package/lib/select/s-select.module.d.ts +0 -15
- package/lib/select/select-multiple/s-select-multiple.component.d.ts +0 -32
- package/lib/select/select-normal/s-select.component.d.ts +0 -12
- package/lib/select/select-simple/s-select-simple.component.d.ts +0 -36
- package/lib/shared/image-loader.directive.d.ts +0 -13
- package/lib/shared/localstorage.service.d.ts +0 -14
- package/lib/shared/shared.module.d.ts +0 -8
- package/lib/sidebar/s-sidebar-model.d.ts +0 -13
- package/lib/sidebar/s-sidebar.component.d.ts +0 -28
- package/lib/sidebar/s-sidebar.module.d.ts +0 -12
- package/lib/spinner/index.d.ts +0 -2
- package/lib/spinner/s-spinner.component.d.ts +0 -12
- package/lib/spinner/s-spinner.module.d.ts +0 -8
- package/lib/stepper/index.d.ts +0 -2
- package/lib/stepper/s-stepper.component.d.ts +0 -8
- package/lib/stepper/s-stepper.module.d.ts +0 -8
- package/lib/sub-menu/s-sub-menu-model.d.ts +0 -30
- package/lib/sub-menu/s-sub-menu.component.d.ts +0 -19
- package/lib/sub-menu/s-sub-menu.module.d.ts +0 -13
- package/lib/table/s-table-content.d.ts +0 -26
- package/lib/table/s-table.component.d.ts +0 -28
- package/lib/table/s-table.module.d.ts +0 -10
- package/lib/table-t/s-tablet.component.d.ts +0 -65
- package/lib/table-t/s-tablet.module.d.ts +0 -8
- package/lib/tabs/s-tabs.component.d.ts +0 -15
- package/lib/tabs/s-tabs.module.d.ts +0 -9
- package/lib/tag/index.d.ts +0 -2
- package/lib/tag/s-tag.component.d.ts +0 -8
- package/lib/tag/s-tag.module.d.ts +0 -9
- package/lib/text-search/s-text-search.component.d.ts +0 -13
- package/lib/text-search/s-text-search.module.d.ts +0 -9
- package/lib/theme/index.d.ts +0 -2
- package/lib/theme/s-theme.component.d.ts +0 -5
- package/lib/theme/s-theme.module.d.ts +0 -8
- package/lib/thumbnail/index.d.ts +0 -2
- package/lib/thumbnail/s-thumbnail.component.d.ts +0 -11
- package/lib/thumbnail/s-thumbnail.module.d.ts +0 -9
- package/lib/toast/s-toast-service.d.ts +0 -11
- package/lib/toast/s-toast.component.d.ts +0 -25
- package/lib/toast/s-toast.module.d.ts +0 -9
- package/lib/toggle-switch/index.d.ts +0 -2
- package/lib/toggle-switch/s-toggle-switch.component.d.ts +0 -25
- package/lib/toggle-switch/s-toggle-switch.module.d.ts +0 -10
- package/lib/tooltip/directive/s-tooltip-directive.d.ts +0 -12
- package/lib/tooltip/s-tooltip.component.d.ts +0 -19
- package/lib/tooltip/s-tooltip.module.d.ts +0 -9
- package/lib/tree-list/s-tree-list.component.d.ts +0 -24
- package/lib/tree-list/s-tree-list.module.d.ts +0 -11
- /package/{lib/input/index.d.ts → src/lib/input/index.ts} +0 -0
- /package/{lib/table-t/index.d.ts → src/lib/table-t/index.ts} +0 -0
- /package/{lib/tabs/models/index.d.ts → src/lib/tabs/models/index.ts} +0 -0
- /package/{lib/tree-list/models/index.d.ts → src/lib/tree-list/models/index.ts} +0 -0
- /package/{public-api.d.ts → src/public-api.ts} +0 -0
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./s-popup.component";
|
|
3
|
-
import * as i2 from "../button/button.module";
|
|
4
|
-
import * as i3 from "@angular/common";
|
|
5
|
-
import * as i4 from "../icon-material/s-icon-material.module";
|
|
6
|
-
export declare class SPopupModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SPopupModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SPopupModule, [typeof i1.SPopupComponent, typeof i1.STemplatePopup], [typeof i2.SButtonModule, typeof i3.CommonModule, typeof i4.SIconMaterialModule], [typeof i1.SPopupComponent, typeof i1.STemplatePopup]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SPopupModule>;
|
|
10
|
-
}
|
package/lib/precode/index.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class SPrecodeComponent implements OnInit {
|
|
4
|
-
expand: boolean;
|
|
5
|
-
copyId?: string;
|
|
6
|
-
constructor();
|
|
7
|
-
ngOnInit(): void;
|
|
8
|
-
copyCode(): Promise<void>;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SPrecodeComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SPrecodeComponent, "s-precode", never, { "expand": "expand"; "copyId": "copyId"; }, {}, never, ["*"], false>;
|
|
11
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./s-precode.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../icon-material/s-icon-material.module";
|
|
5
|
-
import * as i4 from "../button/button.module";
|
|
6
|
-
export declare class SPrecodeModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SPrecodeModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SPrecodeModule, [typeof i1.SPrecodeComponent], [typeof i2.CommonModule, typeof i3.SIconMaterialModule, typeof i4.SButtonModule], [typeof i1.SPrecodeComponent]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SPrecodeModule>;
|
|
10
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { TemperatureComponent } from './temperature/temperature.component';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SProgressbarComponent extends TemperatureComponent implements OnInit {
|
|
5
|
-
percentage: number;
|
|
6
|
-
customColor: string;
|
|
7
|
-
color: string;
|
|
8
|
-
ngOnInit(): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SProgressbarComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SProgressbarComponent, "s-progressbar", never, { "percentage": "percentage"; "customColor": "customColor"; }, {}, never, never, false>;
|
|
11
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./s-progressbar.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../icon-material/s-icon-material.module";
|
|
5
|
-
export declare class SProgressbarModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SProgressbarModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SProgressbarModule, [typeof i1.SProgressbarComponent], [typeof i2.CommonModule, typeof i3.SIconMaterialModule], [typeof i1.SProgressbarComponent]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SProgressbarModule>;
|
|
9
|
-
}
|
package/lib/radio/index.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SRadioComponent implements OnInit, ControlValueAccessor {
|
|
5
|
-
onChange: (_: any) => void;
|
|
6
|
-
onTouch: () => void;
|
|
7
|
-
value: string;
|
|
8
|
-
model: string;
|
|
9
|
-
name: string;
|
|
10
|
-
disabled: boolean;
|
|
11
|
-
label: string;
|
|
12
|
-
emitSelection: EventEmitter<string>;
|
|
13
|
-
constructor();
|
|
14
|
-
ngOnInit(): void;
|
|
15
|
-
doCheck(event: string): void;
|
|
16
|
-
writeValue(value: any): void;
|
|
17
|
-
registerOnChange(fn: any): void;
|
|
18
|
-
registerOnTouched(fn: any): void;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SRadioComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SRadioComponent, "s-radio", never, { "value": "value"; "model": "model"; "name": "name"; "disabled": "disabled"; "label": "label"; }, { "emitSelection": "emitSelection"; }, never, never, false>;
|
|
21
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./s-radio.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/forms";
|
|
5
|
-
export declare class SRadioModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SRadioModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SRadioModule, [typeof i1.SRadioComponent], [typeof i2.CommonModule, typeof i3.FormsModule], [typeof i1.SRadioComponent]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SRadioModule>;
|
|
9
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
export declare class SSelectMultipleModel {
|
|
2
|
-
title: string;
|
|
3
|
-
value: string | number | boolean;
|
|
4
|
-
inputType?: 'checkbox' | 'radio';
|
|
5
|
-
key?: string | number;
|
|
6
|
-
user?: SSelectUser;
|
|
7
|
-
}
|
|
8
|
-
export declare class SSelectSimpleModel {
|
|
9
|
-
title: string;
|
|
10
|
-
value: string | number | boolean;
|
|
11
|
-
key?: string | number;
|
|
12
|
-
user?: SSelectUser;
|
|
13
|
-
}
|
|
14
|
-
export declare class SSelectModel {
|
|
15
|
-
key: string | number;
|
|
16
|
-
value: string | number | boolean;
|
|
17
|
-
user?: SSelectUser;
|
|
18
|
-
}
|
|
19
|
-
export declare class SSelectUser {
|
|
20
|
-
name?: string;
|
|
21
|
-
display?: 'avatar' | 'icon' | 'letters';
|
|
22
|
-
letters?: string;
|
|
23
|
-
url?: string;
|
|
24
|
-
status?: 'approved' | 'declined' | 'blocked' | 'online' | 'offline' | 'busy';
|
|
25
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./select-normal/s-select.component";
|
|
3
|
-
import * as i2 from "./select-simple/s-select-simple.component";
|
|
4
|
-
import * as i3 from "./select-multiple/s-select-multiple.component";
|
|
5
|
-
import * as i4 from "@angular/common";
|
|
6
|
-
import * as i5 from "../icon-material/s-icon-material.module";
|
|
7
|
-
import * as i6 from "../avatar/s-avatar.module";
|
|
8
|
-
import * as i7 from "../checkbox/s-checkbox.module";
|
|
9
|
-
import * as i8 from "../radio/s-radio.module";
|
|
10
|
-
import * as i9 from "../avatar/components/profile-group/s-profile-group.module";
|
|
11
|
-
export declare class SSelectModule {
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SSelectModule, never>;
|
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SSelectModule, [typeof i1.SSelectComponent, typeof i2.SSelectSimpleComponent, typeof i3.SSelectMultipleComponent], [typeof i4.CommonModule, typeof i5.SIconMaterialModule, typeof i6.SAvatarModule, typeof i7.SCheckboxModule, typeof i8.SRadioModule, typeof i9.SProfileGroupModule], [typeof i1.SSelectComponent, typeof i2.SSelectSimpleComponent, typeof i3.SSelectMultipleComponent]>;
|
|
14
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SSelectModule>;
|
|
15
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from "@angular/core";
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SSelectMultipleComponent implements OnInit, ControlValueAccessor {
|
|
5
|
-
onChange: (_: any) => void;
|
|
6
|
-
onTouch: () => void;
|
|
7
|
-
disabled: boolean;
|
|
8
|
-
placeholder: string;
|
|
9
|
-
options: any[];
|
|
10
|
-
selectEvent: EventEmitter<any>;
|
|
11
|
-
selectLabel: string;
|
|
12
|
-
readOnly: boolean;
|
|
13
|
-
get display(): string;
|
|
14
|
-
set display(val: string);
|
|
15
|
-
size: 'sm' | 'md';
|
|
16
|
-
clickInside: boolean;
|
|
17
|
-
disabledstyle: string;
|
|
18
|
-
isOpen: boolean;
|
|
19
|
-
_display: any;
|
|
20
|
-
countSelected: any;
|
|
21
|
-
ngOnInit(): void;
|
|
22
|
-
openDropDown(): void;
|
|
23
|
-
changeItem(item: any): void;
|
|
24
|
-
countSelect(): void;
|
|
25
|
-
writeValue(value: any): void;
|
|
26
|
-
registerOnChange(fn: any): void;
|
|
27
|
-
registerOnTouched(fn: any): void;
|
|
28
|
-
clicked(): void;
|
|
29
|
-
clickedOut(): void;
|
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SSelectMultipleComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SSelectMultipleComponent, "s-select-multiple", never, { "disabled": "disabled"; "placeholder": "placeholder"; "options": "options"; "selectLabel": "label"; "readOnly": "readOnly"; "display": "display"; "size": "size"; }, { "selectEvent": "selectEvent"; }, never, never, false>;
|
|
32
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { SSelectModel } from '../s-select-model';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SSelectComponent {
|
|
5
|
-
options?: SSelectModel[];
|
|
6
|
-
class: string;
|
|
7
|
-
selectEvent: EventEmitter<string | number>;
|
|
8
|
-
constructor();
|
|
9
|
-
onSelect(event: any): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SSelectComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SSelectComponent, "s-select", never, { "options": "options"; "class": "class"; }, { "selectEvent": "selectEvent"; }, never, never, false>;
|
|
12
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from "@angular/core";
|
|
2
|
-
import { SSelectSimpleModel } from "../s-select-model";
|
|
3
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class SSelectSimpleComponent implements OnInit, ControlValueAccessor {
|
|
6
|
-
onChange: (_: any) => void;
|
|
7
|
-
onTouch: () => void;
|
|
8
|
-
disabled: boolean;
|
|
9
|
-
placeholder: string;
|
|
10
|
-
options: SSelectSimpleModel[];
|
|
11
|
-
selectedValue?: any;
|
|
12
|
-
selectLabel: string;
|
|
13
|
-
readOnly: boolean;
|
|
14
|
-
get display(): string;
|
|
15
|
-
set display(val: string);
|
|
16
|
-
size: 'sm' | 'md';
|
|
17
|
-
selectEvent: EventEmitter<SSelectSimpleModel>;
|
|
18
|
-
disabledstyle: string;
|
|
19
|
-
isOpen: boolean;
|
|
20
|
-
activeIndex: number;
|
|
21
|
-
_display: any;
|
|
22
|
-
value: any;
|
|
23
|
-
clickInside: boolean;
|
|
24
|
-
constructor();
|
|
25
|
-
ngOnInit(): void;
|
|
26
|
-
selectIndex(): Promise<void>;
|
|
27
|
-
openDropDown(): void;
|
|
28
|
-
getSelectedValue(e: SSelectSimpleModel): void;
|
|
29
|
-
writeValue(value: any): Promise<void>;
|
|
30
|
-
registerOnChange(fn: any): void;
|
|
31
|
-
registerOnTouched(fn: any): void;
|
|
32
|
-
clicked(): void;
|
|
33
|
-
clickedOut(): void;
|
|
34
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SSelectSimpleComponent, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SSelectSimpleComponent, "s-select-simple", never, { "disabled": "disabled"; "placeholder": "placeholder"; "options": "options"; "selectedValue": "selectedValue"; "selectLabel": "selectLabel"; "readOnly": "readOnly"; "display": "display"; "size": "size"; }, { "selectEvent": "selectEvent"; }, never, never, false>;
|
|
36
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { ElementRef, Renderer2, OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ImageLoaderDirective implements OnInit {
|
|
4
|
-
private el;
|
|
5
|
-
private renderer;
|
|
6
|
-
private readonly loadingClass;
|
|
7
|
-
constructor(el: ElementRef, renderer: Renderer2);
|
|
8
|
-
ngOnInit(): void;
|
|
9
|
-
private showLoadingSkeleton;
|
|
10
|
-
private hideLoadingSkeleton;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ImageLoaderDirective, never>;
|
|
12
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ImageLoaderDirective, "img[appImageLoader]", never, {}, {}, never, never, false>;
|
|
13
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class LocalstorageService {
|
|
4
|
-
refreshLocalStorage: EventEmitter<any>;
|
|
5
|
-
constructor();
|
|
6
|
-
saveItem(key: string, data: any): void;
|
|
7
|
-
getItem(key: string): any;
|
|
8
|
-
getStringItem(key: string): any;
|
|
9
|
-
deleteItem(key: string): void;
|
|
10
|
-
deleteItems(keys: any[]): void;
|
|
11
|
-
clearAll(): void;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LocalstorageService, never>;
|
|
13
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<LocalstorageService>;
|
|
14
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./image-loader.directive";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class SharedModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.ImageLoaderDirective], [typeof i2.CommonModule], [typeof i1.ImageLoaderDirective]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
|
8
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export declare class SMenuItem {
|
|
2
|
-
title?: string;
|
|
3
|
-
link?: string;
|
|
4
|
-
icon?: string;
|
|
5
|
-
expanded?: boolean;
|
|
6
|
-
children?: SMenuItem[];
|
|
7
|
-
hidden?: boolean;
|
|
8
|
-
badge?: string;
|
|
9
|
-
badgeType?: string;
|
|
10
|
-
dot?: boolean;
|
|
11
|
-
separate?: boolean;
|
|
12
|
-
separateText?: string;
|
|
13
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { SMenuItem } from './s-sidebar-model';
|
|
3
|
-
import { LocalstorageService } from '../shared/localstorage.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class SSidebarComponent implements OnInit {
|
|
6
|
-
localStorage: LocalstorageService;
|
|
7
|
-
/**
|
|
8
|
-
* Menu items
|
|
9
|
-
*/
|
|
10
|
-
menu: SMenuItem[];
|
|
11
|
-
expand: boolean;
|
|
12
|
-
showExpand: boolean;
|
|
13
|
-
theme?: string;
|
|
14
|
-
navegate: EventEmitter<string>;
|
|
15
|
-
clickEventMenu: EventEmitter<Event>;
|
|
16
|
-
constructor(localStorage: LocalstorageService);
|
|
17
|
-
ngOnInit(): void;
|
|
18
|
-
clickParent(item: SMenuItem): void;
|
|
19
|
-
actionExpandItem(item: SMenuItem): void;
|
|
20
|
-
actionExpandMenu(): void;
|
|
21
|
-
restartSelectedItems(): void;
|
|
22
|
-
toogleMenu(event: Event): void;
|
|
23
|
-
onClickEventMenu(event: Event): void;
|
|
24
|
-
loadDataFromLocalStorage(): void;
|
|
25
|
-
refreshExpand(): void;
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SSidebarComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SSidebarComponent, "s-sidebar", never, { "menu": "menu"; "expand": "expand"; "showExpand": "showExpand"; "theme": "theme"; }, { "navegate": "navegate"; "clickEventMenu": "clickEventMenu"; }, never, never, false>;
|
|
28
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./s-sidebar.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../icon/s-icon.module";
|
|
5
|
-
import * as i4 from "@angular/router";
|
|
6
|
-
import * as i5 from "../icon-material/s-icon-material.module";
|
|
7
|
-
import * as i6 from "../badge/s-badge.module";
|
|
8
|
-
export declare class SSidebarModule {
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SSidebarModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SSidebarModule, [typeof i1.SSidebarComponent], [typeof i2.CommonModule, typeof i3.SIconModule, typeof i4.RouterModule, typeof i5.SIconMaterialModule, typeof i6.SBadgeModule], [typeof i1.SSidebarComponent, typeof i4.RouterModule]>;
|
|
11
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SSidebarModule>;
|
|
12
|
-
}
|
package/lib/spinner/index.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class SSpinnerComponent implements OnInit {
|
|
4
|
-
type: "one" | "two" | "tree" | "four" | "five" | "six" | "seven";
|
|
5
|
-
size: "md" | "lg" | "xl";
|
|
6
|
-
invert: boolean;
|
|
7
|
-
expand: boolean;
|
|
8
|
-
constructor();
|
|
9
|
-
ngOnInit(): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SSpinnerComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SSpinnerComponent, "s-spinner", never, { "type": "type"; "size": "size"; "invert": "invert"; "expand": "expand"; }, {}, never, never, false>;
|
|
12
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./s-spinner.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class SSpinnerModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SSpinnerModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SSpinnerModule, [typeof i1.SSpinnerComponent], [typeof i2.CommonModule], [typeof i1.SSpinnerComponent]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SSpinnerModule>;
|
|
8
|
-
}
|
package/lib/stepper/index.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class SStepperComponent implements OnInit {
|
|
4
|
-
constructor();
|
|
5
|
-
ngOnInit(): void;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SStepperComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SStepperComponent, "s-stepper", never, {}, {}, never, never, false>;
|
|
8
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./s-stepper.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class SStepperModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SStepperModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SStepperModule, [typeof i1.SStepperComponent], [typeof i2.CommonModule], [typeof i1.SStepperComponent]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SStepperModule>;
|
|
8
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
export declare class SSubMenu {
|
|
2
|
-
header?: SSubMenuHeader;
|
|
3
|
-
items: SSubMenuItem[];
|
|
4
|
-
}
|
|
5
|
-
export declare class SSubMenuItem {
|
|
6
|
-
id?: any;
|
|
7
|
-
title?: string;
|
|
8
|
-
help?: string;
|
|
9
|
-
icon?: boolean;
|
|
10
|
-
iconName?: string;
|
|
11
|
-
link?: string;
|
|
12
|
-
hidden?: boolean;
|
|
13
|
-
inputType?: string;
|
|
14
|
-
value?: boolean;
|
|
15
|
-
separate?: boolean;
|
|
16
|
-
action?: any;
|
|
17
|
-
}
|
|
18
|
-
export declare class SSubMenuHeader {
|
|
19
|
-
type: string;
|
|
20
|
-
title?: string;
|
|
21
|
-
user?: SUser;
|
|
22
|
-
}
|
|
23
|
-
export declare class SUser {
|
|
24
|
-
name?: string;
|
|
25
|
-
email?: string;
|
|
26
|
-
url?: string;
|
|
27
|
-
status?: string;
|
|
28
|
-
display?: string;
|
|
29
|
-
letters?: string;
|
|
30
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { SSubMenu, SSubMenuItem } from './s-sub-menu-model';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SSubMenuComponent implements OnInit {
|
|
5
|
-
private menuOpened;
|
|
6
|
-
private clickInside;
|
|
7
|
-
menu: SSubMenu;
|
|
8
|
-
changeMenuEvent: EventEmitter<any>;
|
|
9
|
-
closeMenuEvent: EventEmitter<any>;
|
|
10
|
-
constructor();
|
|
11
|
-
ngOnInit(): void;
|
|
12
|
-
clicked(): void;
|
|
13
|
-
clickedOut(): void;
|
|
14
|
-
changeItem(item: SSubMenuItem): void;
|
|
15
|
-
selectItem(item: SSubMenuItem): void;
|
|
16
|
-
ngAfterViewInit(): void;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SSubMenuComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SSubMenuComponent, "s-sub-menu", never, { "menu": "menu"; }, { "changeMenuEvent": "changeMenuEvent"; "closeMenuEvent": "closeMenuEvent"; }, never, never, false>;
|
|
19
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./s-sub-menu.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../icon-material/s-icon-material.module";
|
|
5
|
-
import * as i4 from "@angular/router";
|
|
6
|
-
import * as i5 from "../checkbox/s-checkbox.module";
|
|
7
|
-
import * as i6 from "../radio/s-radio.module";
|
|
8
|
-
import * as i7 from "../avatar/components/profile-group/s-profile-group.module";
|
|
9
|
-
export declare class SSubMenuModule {
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SSubMenuModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SSubMenuModule, [typeof i1.SSubMenuComponent], [typeof i2.CommonModule, typeof i3.SIconMaterialModule, typeof i4.RouterModule, typeof i5.SCheckboxModule, typeof i6.SRadioModule, typeof i7.SProfileGroupModule], [typeof i1.SSubMenuComponent]>;
|
|
12
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SSubMenuModule>;
|
|
13
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
export declare class STableContent {
|
|
2
|
-
headers: STableHeader[];
|
|
3
|
-
rows: STableRow[];
|
|
4
|
-
}
|
|
5
|
-
export declare class STableHeader {
|
|
6
|
-
text: string;
|
|
7
|
-
key: string;
|
|
8
|
-
flex: number;
|
|
9
|
-
isEnableColumn: boolean;
|
|
10
|
-
disable: boolean;
|
|
11
|
-
}
|
|
12
|
-
export declare class STableColumn {
|
|
13
|
-
value: string | boolean;
|
|
14
|
-
key: string;
|
|
15
|
-
}
|
|
16
|
-
export declare class STableRow {
|
|
17
|
-
readonly: boolean;
|
|
18
|
-
columns: STableColumn[];
|
|
19
|
-
}
|
|
20
|
-
export declare class STableActionColumn {
|
|
21
|
-
text: string;
|
|
22
|
-
edit: boolean;
|
|
23
|
-
delete: boolean;
|
|
24
|
-
block: boolean;
|
|
25
|
-
flex: number;
|
|
26
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { STableActionColumn } from '../../public-api';
|
|
3
|
-
import { STableContent, STableHeader, STableRow } from './s-table-content';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class STableComponent implements OnInit {
|
|
6
|
-
content?: STableContent;
|
|
7
|
-
actions: STableActionColumn;
|
|
8
|
-
showSearch: boolean;
|
|
9
|
-
editIcon: string;
|
|
10
|
-
deleteIcon: string;
|
|
11
|
-
blockIcon: string;
|
|
12
|
-
searchEvent: EventEmitter<string>;
|
|
13
|
-
editEvent: EventEmitter<STableRow>;
|
|
14
|
-
deleteEvent: EventEmitter<STableRow>;
|
|
15
|
-
blockEvent: EventEmitter<STableRow>;
|
|
16
|
-
toggleSwitchEvent: EventEmitter<STableRow>;
|
|
17
|
-
constructor();
|
|
18
|
-
ngOnInit(): void;
|
|
19
|
-
getRowColumn(r: STableRow, c: STableHeader): string | boolean;
|
|
20
|
-
getRowColumnBool(r: STableRow, c: STableHeader): boolean;
|
|
21
|
-
onSearch(event: string): void;
|
|
22
|
-
editClick(row: STableRow): void;
|
|
23
|
-
deleteClick(row: STableRow): void;
|
|
24
|
-
blockClick(row: STableRow): void;
|
|
25
|
-
onToggleSwitch(switchEvent: boolean, key: string, row: STableRow): void;
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<STableComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<STableComponent, "s-table", never, { "content": "content"; "actions": "actions"; "showSearch": "showSearch"; "editIcon": "editIcon"; "deleteIcon": "deleteIcon"; "blockIcon": "blockIcon"; }, { "searchEvent": "searchEvent"; "editEvent": "editEvent"; "deleteEvent": "deleteEvent"; "blockEvent": "blockEvent"; "toggleSwitchEvent": "toggleSwitchEvent"; }, never, never, false>;
|
|
28
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./s-table.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../text-search/s-text-search.module";
|
|
5
|
-
import * as i4 from "../toggle-switch/s-toggle-switch.module";
|
|
6
|
-
export declare class STableModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<STableModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<STableModule, [typeof i1.STableComponent], [typeof i2.CommonModule, typeof i3.STextSearchModule, typeof i4.SToggleSwitchModule], [typeof i1.STableComponent]>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<STableModule>;
|
|
10
|
-
}
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
import { AfterContentInit, EventEmitter, OnChanges, OnInit, SimpleChanges, TemplateRef } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class STabletComponent implements OnInit, OnChanges {
|
|
4
|
-
updateDataEvent: EventEmitter<any>;
|
|
5
|
-
data: any;
|
|
6
|
-
loading: boolean;
|
|
7
|
-
caption: TemplateRef<any>;
|
|
8
|
-
header: TemplateRef<any>;
|
|
9
|
-
bodyloading: TemplateRef<any>;
|
|
10
|
-
body: TemplateRef<any>;
|
|
11
|
-
initData: any;
|
|
12
|
-
constructor();
|
|
13
|
-
ngOnInit(): void;
|
|
14
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
15
|
-
updateData(_dataSort?: any): void;
|
|
16
|
-
restartData(): void;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<STabletComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<STabletComponent, "s-tablet", never, { "data": "data"; "loading": "loading"; "caption": "caption"; "header": "header"; "bodyloading": "bodyloading"; "body": "body"; }, { "updateDataEvent": "updateDataEvent"; }, never, ["*"], false>;
|
|
19
|
-
}
|
|
20
|
-
export declare class SortableColumn implements OnInit {
|
|
21
|
-
data: STabletComponent;
|
|
22
|
-
field: string;
|
|
23
|
-
pSortableColumnDisabled: boolean;
|
|
24
|
-
_dataSort: any;
|
|
25
|
-
sorted: boolean;
|
|
26
|
-
sortOrder: string;
|
|
27
|
-
constructor(data: STabletComponent);
|
|
28
|
-
ngOnInit(): void;
|
|
29
|
-
compareValues(key: any, order?: string): (a: {
|
|
30
|
-
[x: string]: any;
|
|
31
|
-
hasOwnProperty: (arg0: any) => any;
|
|
32
|
-
}, b: {
|
|
33
|
-
[x: string]: any;
|
|
34
|
-
hasOwnProperty: (arg0: any) => any;
|
|
35
|
-
}) => number;
|
|
36
|
-
updateSortState(): void;
|
|
37
|
-
onClick(event: MouseEvent): void;
|
|
38
|
-
isEnabled(): boolean;
|
|
39
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SortableColumn, never>;
|
|
40
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SortableColumn, "[SSorteableColumn]", never, { "field": "SSorteableColumn"; "pSortableColumnDisabled": "pSortableColumnDisabled"; }, {}, never, never, false>;
|
|
41
|
-
}
|
|
42
|
-
export declare class InputSearch implements OnInit {
|
|
43
|
-
private data;
|
|
44
|
-
fields: string;
|
|
45
|
-
_dataFilter: any;
|
|
46
|
-
inputTimeout?: any;
|
|
47
|
-
dataBeforeSearch: any;
|
|
48
|
-
constructor(data: STabletComponent);
|
|
49
|
-
ngOnInit(): void;
|
|
50
|
-
ngOnChanges(res: any): void;
|
|
51
|
-
filterItems(query: any): void;
|
|
52
|
-
onEnterKey(e: any): void;
|
|
53
|
-
search(e: any): void;
|
|
54
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputSearch, never>;
|
|
55
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<InputSearch, "[SInputSearch]", never, { "fields": "SInputSearch"; }, {}, never, never, false>;
|
|
56
|
-
}
|
|
57
|
-
export declare class STemplate implements AfterContentInit {
|
|
58
|
-
private element;
|
|
59
|
-
table: STabletComponent;
|
|
60
|
-
field: string;
|
|
61
|
-
constructor(element: TemplateRef<any>, table: STabletComponent);
|
|
62
|
-
ngAfterContentInit(): void;
|
|
63
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<STemplate, never>;
|
|
64
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<STemplate, "[STemplate]", never, { "field": "STemplate"; }, {}, never, never, false>;
|
|
65
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./s-tablet.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class STabletModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<STabletModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<STabletModule, [typeof i1.STabletComponent, typeof i1.InputSearch, typeof i1.SortableColumn, typeof i1.STemplate], [typeof i2.CommonModule], [typeof i1.STabletComponent, typeof i1.InputSearch, typeof i1.SortableColumn, typeof i1.STemplate]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<STabletModule>;
|
|
8
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
import { IConfigTabs, ITab } from './models';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class STabsComponent implements OnInit {
|
|
5
|
-
tabs?: ITab[];
|
|
6
|
-
configTabs?: IConfigTabs;
|
|
7
|
-
eventSelect: EventEmitter<ITab>;
|
|
8
|
-
tabsConfig?: ITab[];
|
|
9
|
-
constructor();
|
|
10
|
-
ngOnInit(): void;
|
|
11
|
-
getBackground(): boolean;
|
|
12
|
-
selectTab(tab: ITab): void;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<STabsComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<STabsComponent, "s-tabs", never, { "tabs": "tabs"; "configTabs": "configTabs"; }, { "eventSelect": "eventSelect"; }, never, never, false>;
|
|
15
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./s-tabs.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "../icon-material/s-icon-material.module";
|
|
5
|
-
export declare class STabsModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<STabsModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<STabsModule, [typeof i1.STabsComponent], [typeof i2.CommonModule, typeof i3.SIconMaterialModule], [typeof i1.STabsComponent]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<STabsModule>;
|
|
9
|
-
}
|
package/lib/tag/index.d.ts
DELETED