@gloww/gloww 0.9.0-beta.10
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/README.md +24 -0
- package/compute-version.js +117 -0
- package/esm2020/gloww-gloww.mjs +5 -0
- package/esm2020/lib/Components/code-editor/code-editor.component.mjs +59 -0
- package/esm2020/lib/Components/confirmation/confirmation.component.mjs +43 -0
- package/esm2020/lib/Components/display-objects/display-objects.component.mjs +499 -0
- package/esm2020/lib/Components/display-objects-configuration.mjs +2 -0
- package/esm2020/lib/Components/download-progress/download-progress.component.mjs +119 -0
- package/esm2020/lib/Components/folders/file-edit/file-edit.component.mjs +71 -0
- package/esm2020/lib/Components/folders/folders/folders.component.mjs +180 -0
- package/esm2020/lib/Components/header/header.component.mjs +14 -0
- package/esm2020/lib/Components/html-editor/html-editor.component.mjs +175 -0
- package/esm2020/lib/Components/menu-list-item/menu-list-item.component.mjs +101 -0
- package/esm2020/lib/Components/prompt/prompt.component.mjs +52 -0
- package/esm2020/lib/Components/result-table/result-table.component.mjs +21 -0
- package/esm2020/lib/Components/search-form/search-form.component.mjs +14 -0
- package/esm2020/lib/Components/secure-a/secure-a.component.mjs +31 -0
- package/esm2020/lib/Components/secure-img/secure-img.component.mjs +45 -0
- package/esm2020/lib/Components/upload-doc/upload-doc.component.mjs +95 -0
- package/esm2020/lib/Components/upload-file/upload-file.component.mjs +138 -0
- package/esm2020/lib/Directives/file-sink.directive.mjs +52 -0
- package/esm2020/lib/Models/nav-item.mjs +2 -0
- package/esm2020/lib/Pipes/html-format.pipe.mjs +23 -0
- package/esm2020/lib/Pipes/retry-with-delay.mjs +12 -0
- package/esm2020/lib/Pipes/safe-html.pipe.mjs +22 -0
- package/esm2020/lib/Pipes/secure.pipe.mjs +34 -0
- package/esm2020/lib/Services/dialog.service.mjs +29 -0
- package/esm2020/lib/Services/folder-service-config.mjs +21 -0
- package/esm2020/lib/Services/folder.service.mjs +50 -0
- package/esm2020/lib/Services/gloww.service.mjs +66 -0
- package/esm2020/lib/Services/nav.service.mjs +28 -0
- package/esm2020/lib/Services/version-check.service.mjs +81 -0
- package/esm2020/lib/Services/voice-recognition.service.mjs +55 -0
- package/esm2020/lib/gloww-security/Components/change-password-dlg/change-password-dlg.component.mjs +67 -0
- package/esm2020/lib/gloww-security/Components/login/login.component.mjs +173 -0
- package/esm2020/lib/gloww-security/Components/social-network/social-network.component.mjs +46 -0
- package/esm2020/lib/gloww-security/Components/social-network-dlg/social-network-dlg.component.mjs +52 -0
- package/esm2020/lib/gloww-security/Components/user-menu/user-menu.component.mjs +73 -0
- package/esm2020/lib/gloww-security/Helpers/administrator.guard.mjs +27 -0
- package/esm2020/lib/gloww-security/Helpers/auth.guard.mjs +57 -0
- package/esm2020/lib/gloww-security/Helpers/error.interceptor.mjs +29 -0
- package/esm2020/lib/gloww-security/Helpers/index.mjs +5 -0
- package/esm2020/lib/gloww-security/Helpers/jwt.interceptor.mjs +31 -0
- package/esm2020/lib/gloww-security/Helpers/staging.interceptor.mjs +24 -0
- package/esm2020/lib/gloww-security/Models/oauthassociation.mjs +6 -0
- package/esm2020/lib/gloww-security/Models/user.mjs +3 -0
- package/esm2020/lib/gloww-security/Services/authentication-service-config.mjs +25 -0
- package/esm2020/lib/gloww-security/Services/authentication.service.mjs +205 -0
- package/esm2020/lib/gloww-security/Services/gloww-security.service.mjs +14 -0
- package/esm2020/lib/gloww-security/gloww-security.module.mjs +171 -0
- package/esm2020/lib/gloww.module.mjs +220 -0
- package/esm2020/lib/injection-token.mjs +3 -0
- package/esm2020/public-api.mjs +32 -0
- package/fesm2015/gloww-gloww.mjs +3104 -0
- package/fesm2015/gloww-gloww.mjs.map +1 -0
- package/fesm2020/gloww-gloww.mjs +3065 -0
- package/fesm2020/gloww-gloww.mjs.map +1 -0
- package/gloww-assets/.gitkeep +0 -0
- package/gloww-assets/7SS_logo.svg +1 -0
- package/gloww-assets/7SS_wobl.svg +1 -0
- package/gloww-assets/7stars.png +0 -0
- package/gloww-assets/gloww.svg +316 -0
- package/gloww-assets/images/google_signin_buttons/Google_signin_button.sketch +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_dark_disabled_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_dark_focus_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_dark_normal_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_dark_pressed_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_light_disabled_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_light_focus_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_light_normal_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_light_pressed_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_signin_dark_disabled_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_signin_dark_focus_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_signin_dark_normal_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_signin_dark_pressed_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_signin_light_disabled_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_signin_light_focus_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_signin_light_normal_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/hdpi/btn_google_signin_light_pressed_hdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_dark_disabled_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_dark_focus_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_dark_normal_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_dark_pressed_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_light_disabled_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_light_focus_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_light_normal_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_light_pressed_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_signin_dark_disabled_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_signin_dark_focus_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_signin_dark_normal_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_signin_dark_pressed_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_signin_light_disabled_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_signin_light_focus_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_signin_light_normal_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/ldpi/btn_google_signin_light_pressed_ldpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_dark_disabled_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_dark_focus_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_dark_normal_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_dark_pressed_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_light_disabled_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_light_focus_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_light_normal_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_light_pressed_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_signin_dark_disabled_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_signin_dark_focus_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_signin_dark_normal_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_signin_dark_pressed_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_signin_light_disabled_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_signin_light_focus_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_signin_light_normal_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/mdpi/btn_google_signin_light_pressed_mdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_dark_disabled_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_dark_focus_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_dark_normal_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_dark_pressed_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_light_disabled_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_light_focus_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_light_normal_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_light_pressed_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_signin_dark_disabled_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_signin_dark_focus_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_signin_dark_normal_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_signin_dark_pressed_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_signin_light_disabled_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_signin_light_focus_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_signin_light_normal_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/tvdpi/btn_google_signin_light_pressed_tvdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_dark_disabled_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_dark_focus_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_dark_normal_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_dark_pressed_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_light_disabled_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_light_focus_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_light_normal_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_light_pressed_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_signin_dark_disabled_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_signin_dark_focus_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_signin_dark_normal_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_signin_dark_pressed_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_signin_light_disabled_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_signin_light_focus_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_signin_light_normal_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xhdpi/btn_google_signin_light_pressed_xhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_dark_disabled_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_dark_focus_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_dark_normal_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_dark_pressed_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_light_disabled_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_light_focus_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_light_normal_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_light_pressed_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_signin_dark_disabled_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_signin_dark_focus_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_signin_dark_normal_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_signin_dark_pressed_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_signin_light_disabled_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_signin_light_focus_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_signin_light_normal_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxhdpi/btn_google_signin_light_pressed_xxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_dark_disabled_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_dark_focus_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_dark_normal_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_dark_pressed_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_light_disabled_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_light_focus_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_light_normal_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_light_pressed_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_signin_dark_disabled_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_signin_dark_focus_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_signin_dark_normal_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_signin_dark_pressed_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_signin_light_disabled_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_signin_light_focus_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_signin_light_normal_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/android/xxxhdpi/btn_google_signin_light_pressed_xxxhdpi.9.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_dark_disabled_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_dark_focus_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_dark_normal_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_dark_pressed_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_light_disabled_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_light_focus_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_light_normal_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_light_pressed_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_signin_dark_disabled_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_signin_dark_focus_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_signin_dark_normal_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_signin_dark_pressed_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_signin_light_disabled_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_signin_light_focus_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_signin_light_normal_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/1x/btn_google_signin_light_pressed_ios.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_dark_disabled_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_dark_focus_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_dark_normal_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_dark_pressed_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_light_disabled_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_light_focus_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_light_normal_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_light_pressed_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_signin_dark_disabled_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_signin_dark_focus_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_signin_dark_normal_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_signin_dark_pressed_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_signin_light_disabled_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_signin_light_focus_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_signin_light_normal_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/2x/btn_google_signin_light_pressed_ios@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_dark_disabled_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_dark_focus_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_dark_normal_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_dark_pressed_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_light_disabled_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_light_focus_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_light_normal_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_light_pressed_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_signin_dark_disabled_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_signin_dark_focus_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_signin_dark_normal_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_signin_dark_pressed_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_signin_light_disabled_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_signin_light_focus_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_signin_light_normal_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/ios/3x/btn_google_signin_light_pressed_ios@3x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/1x/btn_google_signin_dark_disabled_web.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/1x/btn_google_signin_dark_focus_web.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/1x/btn_google_signin_dark_normal_web.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/1x/btn_google_signin_dark_pressed_web.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/1x/btn_google_signin_light_disabled_web.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/1x/btn_google_signin_light_focus_web.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/1x/btn_google_signin_light_normal_web.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/1x/btn_google_signin_light_pressed_web.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/2x/btn_google_signin_dark_disabled_web@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/2x/btn_google_signin_dark_focus_web@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/2x/btn_google_signin_dark_normal_web@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/2x/btn_google_signin_dark_pressed_web@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/2x/btn_google_signin_light_disabled_web@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/2x/btn_google_signin_light_focus_web@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/2x/btn_google_signin_light_normal_web@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/2x/btn_google_signin_light_pressed_web@2x.png +0 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_dark_disabled_ios.eps +814 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_dark_disabled_ios.svg +24 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_dark_focus_ios.eps +1866 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_dark_focus_ios.svg +51 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_dark_normal_ios.eps +1031 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_dark_normal_ios.svg +50 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_dark_pressed_ios.eps +1031 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_dark_pressed_ios.svg +50 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_light_disabled_ios.eps +814 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_light_disabled_ios.svg +24 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_light_focus_ios.eps +1837 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_light_focus_ios.svg +44 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_light_normal_ios.eps +1002 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_light_normal_ios.svg +43 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_light_pressed_ios.eps +1002 -0
- package/gloww-assets/images/google_signin_buttons/web/vector/btn_google_light_pressed_ios.svg +43 -0
- package/gloww-assets/swagger.svg +1 -0
- package/gloww-gloww.d.ts +5 -0
- package/lib/Components/code-editor/code-editor.component.d.ts +16 -0
- package/lib/Components/confirmation/confirmation.component.d.ts +20 -0
- package/lib/Components/display-objects/display-objects.component.d.ts +93 -0
- package/lib/Components/display-objects-configuration.d.ts +5 -0
- package/lib/Components/download-progress/download-progress.component.d.ts +30 -0
- package/lib/Components/folders/file-edit/file-edit.component.d.ts +31 -0
- package/lib/Components/folders/folders/folders.component.d.ts +33 -0
- package/lib/Components/header/header.component.d.ts +8 -0
- package/lib/Components/html-editor/html-editor.component.d.ts +36 -0
- package/lib/Components/menu-list-item/menu-list-item.component.d.ts +22 -0
- package/lib/Components/prompt/prompt.component.d.ts +25 -0
- package/lib/Components/result-table/result-table.component.d.ts +11 -0
- package/lib/Components/search-form/search-form.component.d.ts +8 -0
- package/lib/Components/secure-a/secure-a.component.d.ts +13 -0
- package/lib/Components/secure-img/secure-img.component.d.ts +17 -0
- package/lib/Components/upload-doc/upload-doc.component.d.ts +19 -0
- package/lib/Components/upload-file/upload-file.component.d.ts +34 -0
- package/lib/Directives/file-sink.directive.d.ts +11 -0
- package/lib/Models/nav-item.d.ts +8 -0
- package/lib/Pipes/html-format.pipe.d.ts +10 -0
- package/lib/Pipes/retry-with-delay.d.ts +2 -0
- package/lib/Pipes/safe-html.pipe.d.ts +10 -0
- package/lib/Pipes/secure.pipe.d.ts +13 -0
- package/lib/Services/dialog.service.d.ts +11 -0
- package/lib/Services/folder-service-config.d.ts +7 -0
- package/lib/Services/folder.service.d.ts +19 -0
- package/lib/Services/gloww.service.d.ts +23 -0
- package/lib/Services/nav.service.d.ts +13 -0
- package/lib/Services/version-check.service.d.ts +30 -0
- package/lib/Services/voice-recognition.service.d.ts +14 -0
- package/lib/gloww-security/Components/change-password-dlg/change-password-dlg.component.d.ts +19 -0
- package/lib/gloww-security/Components/login/login.component.d.ts +43 -0
- package/lib/gloww-security/Components/social-network/social-network.component.d.ts +25 -0
- package/lib/gloww-security/Components/social-network-dlg/social-network-dlg.component.d.ts +21 -0
- package/lib/gloww-security/Components/user-menu/user-menu.component.d.ts +24 -0
- package/lib/gloww-security/Helpers/administrator.guard.d.ts +14 -0
- package/lib/gloww-security/Helpers/auth.guard.d.ts +14 -0
- package/lib/gloww-security/Helpers/error.interceptor.d.ts +11 -0
- package/lib/gloww-security/Helpers/index.d.ts +4 -0
- package/lib/gloww-security/Helpers/jwt.interceptor.d.ts +11 -0
- package/lib/gloww-security/Helpers/staging.interceptor.d.ts +9 -0
- package/lib/gloww-security/Models/oauthassociation.d.ts +7 -0
- package/lib/gloww-security/Models/user.d.ts +9 -0
- package/lib/gloww-security/Services/authentication-service-config.d.ts +17 -0
- package/lib/gloww-security/Services/authentication.service.d.ts +40 -0
- package/lib/gloww-security/Services/gloww-security.service.d.ts +6 -0
- package/lib/gloww-security/gloww-security.module.d.ts +35 -0
- package/lib/gloww.module.d.ts +59 -0
- package/lib/injection-token.d.ts +2 -0
- package/package.json +40 -0
- package/public-api.d.ts +28 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import { BehaviorSubject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class NavService {
|
|
5
|
+
private router;
|
|
6
|
+
appDrawer: any;
|
|
7
|
+
currentUrl: BehaviorSubject<string>;
|
|
8
|
+
constructor(router: Router);
|
|
9
|
+
closeNav(): void;
|
|
10
|
+
openNav(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NavService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NavService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class VersionCheckService {
|
|
4
|
+
private http;
|
|
5
|
+
private currentHash;
|
|
6
|
+
private callback;
|
|
7
|
+
url: any;
|
|
8
|
+
constructor(http: HttpClient);
|
|
9
|
+
/**
|
|
10
|
+
* Checks in every set frequency the version of frontend application
|
|
11
|
+
* @param url the url to test (default : /version.json)
|
|
12
|
+
* @param frequency - in milliseconds, defaults to 1 minutes
|
|
13
|
+
* @param callback - function to call when the version is different, default askReloadApplication
|
|
14
|
+
*/
|
|
15
|
+
initVersionCheck(url?: string, frequency?: number, callback?: () => void): void;
|
|
16
|
+
askReloadApplication(): void;
|
|
17
|
+
reloadApplication(): void;
|
|
18
|
+
private checkVersion;
|
|
19
|
+
/**
|
|
20
|
+
* Checks if hash has changed.
|
|
21
|
+
* This file has the JS hash, if it is a different one than in the version.json
|
|
22
|
+
* we are dealing with version change
|
|
23
|
+
* @param currentHash currenthash
|
|
24
|
+
* @param newHash newhash
|
|
25
|
+
* @returns the currenthash and newhash are different
|
|
26
|
+
*/
|
|
27
|
+
private hasHashChanged;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VersionCheckService, never>;
|
|
29
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<VersionCheckService>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class VoiceRecognitionService {
|
|
3
|
+
recognition: any;
|
|
4
|
+
isStoppedSpeechRecog: boolean;
|
|
5
|
+
text: string;
|
|
6
|
+
tempWords: any;
|
|
7
|
+
constructor();
|
|
8
|
+
init(): void;
|
|
9
|
+
start(): void;
|
|
10
|
+
stop(): void;
|
|
11
|
+
wordConcat(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VoiceRecognitionService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<VoiceRecognitionService>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
2
|
+
import { OnInit } from '@angular/core';
|
|
3
|
+
import { FormGroup, FormBuilder } from '@angular/forms';
|
|
4
|
+
import { AuthenticationService } from '../../Services/authentication.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ChangePasswordDlgComponent implements OnInit {
|
|
7
|
+
private formBuilder;
|
|
8
|
+
private dialogRef;
|
|
9
|
+
private authenticationService;
|
|
10
|
+
error: string;
|
|
11
|
+
form: FormGroup;
|
|
12
|
+
constructor(formBuilder: FormBuilder, dialogRef: MatDialogRef<ChangePasswordDlgComponent>, authenticationService: AuthenticationService);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
resetError(): void;
|
|
15
|
+
onSubmit(): void;
|
|
16
|
+
cancel(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChangePasswordDlgComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChangePasswordDlgComponent, "gloww-change-password-dlg", never, {}, {}, never, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { Router, ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
4
|
+
import { AuthenticationService } from '../../Services/authentication.service';
|
|
5
|
+
import { AuthenticationServiceConfig } from '../../Services/authentication-service-config';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class LoginComponent implements OnInit {
|
|
8
|
+
private formBuilder;
|
|
9
|
+
private route;
|
|
10
|
+
private router;
|
|
11
|
+
private authenticationService;
|
|
12
|
+
loginForm: FormGroup;
|
|
13
|
+
lostPasswordForm: FormGroup;
|
|
14
|
+
resetPasswordForm: FormGroup;
|
|
15
|
+
loading: boolean;
|
|
16
|
+
submitted: boolean;
|
|
17
|
+
returnUrl: string;
|
|
18
|
+
application: string;
|
|
19
|
+
error: string;
|
|
20
|
+
showDomain: boolean;
|
|
21
|
+
state: number;
|
|
22
|
+
config: AuthenticationServiceConfig;
|
|
23
|
+
oAuthProviders: string[];
|
|
24
|
+
idOauth?: number;
|
|
25
|
+
provider?: string;
|
|
26
|
+
name?: string;
|
|
27
|
+
value?: string;
|
|
28
|
+
constructor(formBuilder: FormBuilder, route: ActivatedRoute, router: Router, authenticationService: AuthenticationService, config?: AuthenticationServiceConfig);
|
|
29
|
+
MatchPassword(fg: FormGroup): boolean;
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
get f(): {
|
|
32
|
+
[key: string]: import("@angular/forms").AbstractControl;
|
|
33
|
+
};
|
|
34
|
+
resetError(): void;
|
|
35
|
+
onConnect(): void;
|
|
36
|
+
onAskResetPasswordCode(): void;
|
|
37
|
+
onResetPassword(): void;
|
|
38
|
+
OAuthSignIn(provider: String): void;
|
|
39
|
+
onOAuthAskCode(): void;
|
|
40
|
+
onOAuthAssociation(): void;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, [null, null, null, null, { optional: true; }]>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "gloww-login", never, {}, {}, never, never>;
|
|
43
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { AuthenticationService } from '../../Services/authentication.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SocialNetworkComponent implements OnInit {
|
|
5
|
+
private authenticationService;
|
|
6
|
+
oAuthProviders: any[];
|
|
7
|
+
callback: EventEmitter<any>;
|
|
8
|
+
icons: {
|
|
9
|
+
Google: string;
|
|
10
|
+
LinkedIN: string;
|
|
11
|
+
Facebook: string;
|
|
12
|
+
Github: string;
|
|
13
|
+
Amazon: string;
|
|
14
|
+
Apple: string;
|
|
15
|
+
Microsoft: string;
|
|
16
|
+
Twitter: string;
|
|
17
|
+
VK: string;
|
|
18
|
+
};
|
|
19
|
+
constructor(authenticationService: AuthenticationService);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
execute(provider: any): void;
|
|
22
|
+
writeobj(provider: any): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SocialNetworkComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SocialNetworkComponent, "gloww-social-network", never, { "oAuthProviders": "oAuthProviders"; }, { "callback": "callback"; }, never, never>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Oauthassociation } from './../../Models/oauthassociation';
|
|
2
|
+
import { OnInit } from '@angular/core';
|
|
3
|
+
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
4
|
+
import { AuthenticationServiceConfig } from '../../Services/authentication-service-config';
|
|
5
|
+
import { AuthenticationService } from '../../Services/authentication.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class SocialNetworkDlgComponent implements OnInit {
|
|
8
|
+
private dialogRef;
|
|
9
|
+
private authenticationService;
|
|
10
|
+
private dialog;
|
|
11
|
+
oAuthProviders: string[];
|
|
12
|
+
oAuthAssociations: Oauthassociation[];
|
|
13
|
+
config: AuthenticationServiceConfig;
|
|
14
|
+
constructor(dialogRef: MatDialogRef<SocialNetworkDlgComponent>, authenticationService: AuthenticationService, dialog: MatDialog, config?: AuthenticationServiceConfig);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
OK(): void;
|
|
17
|
+
OAuthAddAssociation(provider: String): void;
|
|
18
|
+
OAuthDeleteAssociation(association: Oauthassociation): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SocialNetworkDlgComponent, [null, null, null, { optional: true; }]>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SocialNetworkDlgComponent, "gloww-social-network-dlg", never, {}, {}, never, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import { OnInit } from '@angular/core';
|
|
3
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
4
|
+
import { AuthenticationService } from '../../Services/authentication.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class UserMenuComponent implements OnInit {
|
|
7
|
+
private authenticationService;
|
|
8
|
+
private dialog;
|
|
9
|
+
private router;
|
|
10
|
+
size: string;
|
|
11
|
+
imageUser: any;
|
|
12
|
+
loginpage: string;
|
|
13
|
+
showMenuUser: boolean;
|
|
14
|
+
connected: boolean;
|
|
15
|
+
oAuthProviders: string[];
|
|
16
|
+
constructor(authenticationService: AuthenticationService, dialog: MatDialog, router: Router);
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
Logout(): void;
|
|
19
|
+
ChangePassword(): void;
|
|
20
|
+
toggleMenuUser(): void;
|
|
21
|
+
Configuration(): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UserMenuComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UserMenuComponent, "gloww-user-menu", never, { "size": "size"; "imageUser": "imageUser"; "loginpage": "loginpage"; }, {}, never, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { PlatformLocation } from '@angular/common';
|
|
2
|
+
import { ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot, UrlTree } from '@angular/router';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { AuthenticationService } from '../gloww-security.module';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AdministratorGuard implements CanActivate {
|
|
7
|
+
private router;
|
|
8
|
+
private authenticationService;
|
|
9
|
+
private platformLocation;
|
|
10
|
+
constructor(router: Router, authenticationService: AuthenticationService, platformLocation: PlatformLocation);
|
|
11
|
+
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdministratorGuard, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AdministratorGuard>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { PlatformLocation } from '@angular/common';
|
|
2
|
+
import { Router, CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
|
|
3
|
+
import { AuthenticationService } from '../Services/authentication.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AuthGuard implements CanActivate {
|
|
6
|
+
private router;
|
|
7
|
+
private authenticationService;
|
|
8
|
+
private platformLocation;
|
|
9
|
+
private baseHref;
|
|
10
|
+
constructor(router: Router, authenticationService: AuthenticationService, platformLocation: PlatformLocation);
|
|
11
|
+
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): boolean;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthGuard, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthGuard>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { AuthenticationService } from '../Services/authentication.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ErrorInterceptor implements HttpInterceptor {
|
|
6
|
+
private authenticationService;
|
|
7
|
+
constructor(authenticationService: AuthenticationService);
|
|
8
|
+
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorInterceptor, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ErrorInterceptor>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { AuthenticationService } from '../Services/authentication.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class JwtInterceptor implements HttpInterceptor {
|
|
6
|
+
private authenticationService;
|
|
7
|
+
constructor(authenticationService: AuthenticationService);
|
|
8
|
+
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JwtInterceptor, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<JwtInterceptor>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class StagingInterceptor implements HttpInterceptor {
|
|
5
|
+
constructor();
|
|
6
|
+
intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StagingInterceptor, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StagingInterceptor>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class AuthenticationServiceConfig {
|
|
3
|
+
currentUserVariableName?: string;
|
|
4
|
+
authenticationUrl?: string;
|
|
5
|
+
changePasswordUrl?: string;
|
|
6
|
+
askResetPasswordCodeUrl?: string;
|
|
7
|
+
resetPassworUrl?: string;
|
|
8
|
+
environment?: string;
|
|
9
|
+
showDomain?: boolean;
|
|
10
|
+
askGSM?: boolean;
|
|
11
|
+
googleClientId?: string;
|
|
12
|
+
facebookClientId?: string;
|
|
13
|
+
amazonClientId?: string;
|
|
14
|
+
microsoftClientId?: string;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticationServiceConfig, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthenticationServiceConfig>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Oauthassociation } from './../Models/oauthassociation';
|
|
2
|
+
import { HttpClient } from '@angular/common/http';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { User } from '../Models/user';
|
|
5
|
+
import { AuthenticationServiceConfig } from './authentication-service-config';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class AuthenticationService {
|
|
8
|
+
private http;
|
|
9
|
+
private platformId;
|
|
10
|
+
private currentUserSubject;
|
|
11
|
+
currentUser: Observable<User>;
|
|
12
|
+
currentUserVariableName: string;
|
|
13
|
+
authenticationUrl: string;
|
|
14
|
+
changePasswordUrl: string;
|
|
15
|
+
askResetPasswordCodeUrl: string;
|
|
16
|
+
resetPasswordUrl: string;
|
|
17
|
+
OAuthGetProvidersUrl: string;
|
|
18
|
+
OAuthAskCodeUrl: string;
|
|
19
|
+
OAuthAssociationUrl: string;
|
|
20
|
+
OAuthGetAssociationsUrl: string;
|
|
21
|
+
OAuthDeleteAssociationUrl: string;
|
|
22
|
+
environment: string;
|
|
23
|
+
showdomain: boolean;
|
|
24
|
+
hasLocalStorage: boolean;
|
|
25
|
+
constructor(http: HttpClient, platformId: any, config?: AuthenticationServiceConfig);
|
|
26
|
+
get currentUserValue(): User;
|
|
27
|
+
get isConnected(): boolean;
|
|
28
|
+
login(domain: string, username: string, password: string): Observable<any>;
|
|
29
|
+
changePassword(domain: string, username: string, oldpassword: string, newpassword: string): Observable<any>;
|
|
30
|
+
logout(): void;
|
|
31
|
+
askResetPasswordCode(domain: string, firstname: string, lastname: string, email: string, gsm: string): Observable<any>;
|
|
32
|
+
resetPassword(email: string, code: string, password: string): Observable<any>;
|
|
33
|
+
getOAuthProviders(): Observable<string[]>;
|
|
34
|
+
OAuthAskCode(environment: string, login: string, idOauth: number, provider: string, name: string, value: string): Observable<any>;
|
|
35
|
+
OAuthAssociation(environment: string, code: string, idOauth: number, provider: string, name: string, value: string): Observable<any>;
|
|
36
|
+
getOAuthAssociations(): Observable<Oauthassociation[]>;
|
|
37
|
+
OAuthDeleteAssociation(provider: string, idOAuth: number): Observable<Object>;
|
|
38
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticationService, [null, null, { optional: true; }]>;
|
|
39
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AuthenticationService>;
|
|
40
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { AuthenticationServiceConfig } from './Services/authentication-service-config';
|
|
2
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "./Components/login/login.component";
|
|
5
|
+
import * as i2 from "./Components/change-password-dlg/change-password-dlg.component";
|
|
6
|
+
import * as i3 from "./Components/user-menu/user-menu.component";
|
|
7
|
+
import * as i4 from "./Components/social-network-dlg/social-network-dlg.component";
|
|
8
|
+
import * as i5 from "./Components/social-network/social-network.component";
|
|
9
|
+
import * as i6 from "@angular/common";
|
|
10
|
+
import * as i7 from "@angular/forms";
|
|
11
|
+
import * as i8 from "@angular/platform-browser";
|
|
12
|
+
import * as i9 from "@angular/platform-browser/animations";
|
|
13
|
+
import * as i10 from "@angular/flex-layout";
|
|
14
|
+
import * as i11 from "@angular/material/toolbar";
|
|
15
|
+
import * as i12 from "@angular/material/button";
|
|
16
|
+
import * as i13 from "@angular/material/sidenav";
|
|
17
|
+
import * as i14 from "@angular/material/input";
|
|
18
|
+
import * as i15 from "@angular/material/form-field";
|
|
19
|
+
import * as i16 from "@angular/material/card";
|
|
20
|
+
import * as i17 from "@angular/material/dialog";
|
|
21
|
+
import * as i18 from "@angular/common/http";
|
|
22
|
+
import * as i19 from "@angular/router";
|
|
23
|
+
export declare class GlowwSecurityModule {
|
|
24
|
+
static forRoot(authenticationServiceConfig: AuthenticationServiceConfig): ModuleWithProviders<GlowwSecurityModule>;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GlowwSecurityModule, never>;
|
|
26
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GlowwSecurityModule, [typeof i1.LoginComponent, typeof i2.ChangePasswordDlgComponent, typeof i3.UserMenuComponent, typeof i4.SocialNetworkDlgComponent, typeof i5.SocialNetworkComponent], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i7.ReactiveFormsModule, typeof i8.BrowserModule, typeof i9.BrowserAnimationsModule, typeof i10.FlexLayoutModule, typeof i11.MatToolbarModule, typeof i12.MatButtonModule, typeof i13.MatSidenavModule, typeof i14.MatInputModule, typeof i15.MatFormFieldModule, typeof i16.MatCardModule, typeof i17.MatDialogModule, typeof i18.HttpClientModule, typeof i19.RouterModule], [typeof i1.LoginComponent, typeof i19.RouterModule, typeof i3.UserMenuComponent]>;
|
|
27
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<GlowwSecurityModule>;
|
|
28
|
+
}
|
|
29
|
+
export { LoginComponent } from './Components/login/login.component';
|
|
30
|
+
export { AuthenticationService } from './Services/authentication.service';
|
|
31
|
+
export { JwtInterceptor } from './Helpers/jwt.interceptor';
|
|
32
|
+
export { ErrorInterceptor } from './Helpers/error.interceptor';
|
|
33
|
+
export { StagingInterceptor } from './Helpers/staging.interceptor';
|
|
34
|
+
export { AuthGuard } from './Helpers';
|
|
35
|
+
export { AdministratorGuard } from './Helpers/';
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import { FolderServiceConfig } from './Services/folder-service-config';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "./Components/upload-doc/upload-doc.component";
|
|
5
|
+
import * as i2 from "./Pipes/safe-html.pipe";
|
|
6
|
+
import * as i3 from "./Components/display-objects/display-objects.component";
|
|
7
|
+
import * as i4 from "./Components/header/header.component";
|
|
8
|
+
import * as i5 from "./Components/result-table/result-table.component";
|
|
9
|
+
import * as i6 from "./Components/search-form/search-form.component";
|
|
10
|
+
import * as i7 from "./Components/confirmation/confirmation.component";
|
|
11
|
+
import * as i8 from "./Components/prompt/prompt.component";
|
|
12
|
+
import * as i9 from "./Pipes/secure.pipe";
|
|
13
|
+
import * as i10 from "./Components/secure-img/secure-img.component";
|
|
14
|
+
import * as i11 from "./Components/menu-list-item/menu-list-item.component";
|
|
15
|
+
import * as i12 from "./Components/code-editor/code-editor.component";
|
|
16
|
+
import * as i13 from "./Components/html-editor/html-editor.component";
|
|
17
|
+
import * as i14 from "./Pipes/html-format.pipe";
|
|
18
|
+
import * as i15 from "./Components/upload-file/upload-file.component";
|
|
19
|
+
import * as i16 from "./Directives/file-sink.directive";
|
|
20
|
+
import * as i17 from "./Components/folders/file-edit/file-edit.component";
|
|
21
|
+
import * as i18 from "./Components/folders/folders/folders.component";
|
|
22
|
+
import * as i19 from "./Components/download-progress/download-progress.component";
|
|
23
|
+
import * as i20 from "./Components/secure-a/secure-a.component";
|
|
24
|
+
import * as i21 from "@angular/common";
|
|
25
|
+
import * as i22 from "@angular/platform-browser";
|
|
26
|
+
import * as i23 from "@angular/router";
|
|
27
|
+
import * as i24 from "@angular/forms";
|
|
28
|
+
import * as i25 from "@angular/material/dialog";
|
|
29
|
+
import * as i26 from "@angular/material/input";
|
|
30
|
+
import * as i27 from "@angular/material/icon";
|
|
31
|
+
import * as i28 from "@angular/material/button";
|
|
32
|
+
import * as i29 from "@angular/material/card";
|
|
33
|
+
import * as i30 from "@angular/material/progress-spinner";
|
|
34
|
+
import * as i31 from "@angular/material/progress-bar";
|
|
35
|
+
import * as i32 from "@angular/material/table";
|
|
36
|
+
import * as i33 from "@angular/material/select";
|
|
37
|
+
import * as i34 from "@angular/material/paginator";
|
|
38
|
+
import * as i35 from "@angular/material/sort";
|
|
39
|
+
import * as i36 from "@ctrl/ngx-codemirror";
|
|
40
|
+
import * as i37 from "@gloww/angular-editor";
|
|
41
|
+
export declare class GlowwModule {
|
|
42
|
+
static forRoot(folderServiceConfig?: FolderServiceConfig): ModuleWithProviders<GlowwModule>;
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GlowwModule, never>;
|
|
44
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<GlowwModule, [typeof i1.UploadDocComponent, typeof i2.SafeHtmlPipe, typeof i3.DisplayObjectsComponent, typeof i4.HeaderComponent, typeof i5.ResultTableComponent, typeof i6.SearchFormComponent, typeof i7.ConfirmationComponent, typeof i8.PromptComponent, typeof i9.SecurePipe, typeof i10.SecureImgComponent, typeof i11.MenuListItemComponent, typeof i12.CodeEditorComponent, typeof i13.HtmlEditorComponent, typeof i14.HtmlFormatPipe, typeof i15.UploadFileComponent, typeof i16.FileSinkDirective, typeof i17.FileEditComponent, typeof i18.FoldersComponent, typeof i19.DownloadProgressComponent, typeof i20.SecureAComponent], [typeof i21.CommonModule, typeof i22.BrowserModule, typeof i23.RouterModule, typeof i24.FormsModule, typeof i24.ReactiveFormsModule, typeof i25.MatDialogModule, typeof i26.MatInputModule, typeof i27.MatIconModule, typeof i28.MatButtonModule, typeof i29.MatCardModule, typeof i30.MatProgressSpinnerModule, typeof i31.MatProgressBarModule, typeof i32.MatTableModule, typeof i33.MatSelectModule, typeof i34.MatPaginatorModule, typeof i35.MatSortModule, typeof i30.MatProgressSpinnerModule, typeof i36.CodemirrorModule, typeof i37.AngularEditorModule], [typeof i2.SafeHtmlPipe, typeof i1.UploadDocComponent, typeof i15.UploadFileComponent, typeof i3.DisplayObjectsComponent, typeof i4.HeaderComponent, typeof i5.ResultTableComponent, typeof i6.SearchFormComponent, typeof i7.ConfirmationComponent, typeof i8.PromptComponent, typeof i9.SecurePipe, typeof i10.SecureImgComponent, typeof i11.MenuListItemComponent, typeof i12.CodeEditorComponent, typeof i13.HtmlEditorComponent, typeof i14.HtmlFormatPipe, typeof i18.FoldersComponent, typeof i19.DownloadProgressComponent, typeof i20.SecureAComponent]>;
|
|
45
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<GlowwModule>;
|
|
46
|
+
}
|
|
47
|
+
export { VersionCheckService } from './Services/version-check.service';
|
|
48
|
+
export { DialogService } from './Services/dialog.service';
|
|
49
|
+
export { VoiceRecognitionService } from './Services/voice-recognition.service';
|
|
50
|
+
export { DisplayObjectsComponent } from './Components/display-objects/display-objects.component';
|
|
51
|
+
export { HeaderComponent } from './Components/header/header.component';
|
|
52
|
+
export { ResultTableComponent } from './Components/result-table/result-table.component';
|
|
53
|
+
export { SearchFormComponent } from './Components/search-form/search-form.component';
|
|
54
|
+
export { MenuListItemComponent } from './Components/menu-list-item/menu-list-item.component';
|
|
55
|
+
export { CodeEditorComponent } from './Components/code-editor/code-editor.component';
|
|
56
|
+
export { HtmlEditorComponent } from './Components/html-editor/html-editor.component';
|
|
57
|
+
export { FoldersComponent } from './Components/folders/folders/folders.component';
|
|
58
|
+
export { DownloadProgressComponent } from './Components/download-progress/download-progress.component';
|
|
59
|
+
export { SecureAComponent } from './Components/secure-a/secure-a.component';
|
package/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gloww/gloww",
|
|
3
|
+
"version": "0.9.0-beta.10",
|
|
4
|
+
"private": false,
|
|
5
|
+
"peerDependencies": {
|
|
6
|
+
"@angular/common": ">=13.0.0",
|
|
7
|
+
"@angular/core": ">=13.0.0"
|
|
8
|
+
},
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"tslib": "^2.0.0",
|
|
11
|
+
"jwt-decode": "^3.1.2",
|
|
12
|
+
"@ctrl/ngx-codemirror": "^5.1.1",
|
|
13
|
+
"@gloww/angular-editor": "^1.2.2-beta.14",
|
|
14
|
+
"codemirror": "^5.65.0",
|
|
15
|
+
"@angular/material-moment-adapter": "^13.1.2",
|
|
16
|
+
"moment": "^2.29.1",
|
|
17
|
+
"file-saver": "^2.0.5",
|
|
18
|
+
"jszip": "^3.7.1"
|
|
19
|
+
},
|
|
20
|
+
"module": "fesm2015/gloww-gloww.mjs",
|
|
21
|
+
"es2020": "fesm2020/gloww-gloww.mjs",
|
|
22
|
+
"esm2020": "esm2020/gloww-gloww.mjs",
|
|
23
|
+
"fesm2020": "fesm2020/gloww-gloww.mjs",
|
|
24
|
+
"fesm2015": "fesm2015/gloww-gloww.mjs",
|
|
25
|
+
"typings": "gloww-gloww.d.ts",
|
|
26
|
+
"exports": {
|
|
27
|
+
"./package.json": {
|
|
28
|
+
"default": "./package.json"
|
|
29
|
+
},
|
|
30
|
+
".": {
|
|
31
|
+
"types": "./gloww-gloww.d.ts",
|
|
32
|
+
"esm2020": "./esm2020/gloww-gloww.mjs",
|
|
33
|
+
"es2020": "./fesm2020/gloww-gloww.mjs",
|
|
34
|
+
"es2015": "./fesm2015/gloww-gloww.mjs",
|
|
35
|
+
"node": "./fesm2015/gloww-gloww.mjs",
|
|
36
|
+
"default": "./fesm2020/gloww-gloww.mjs"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"sideEffects": false
|
|
40
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export * from './lib/Services/gloww.service';
|
|
2
|
+
export * from './lib/Services/version-check.service';
|
|
3
|
+
export * from './lib/Services/dialog.service';
|
|
4
|
+
export * from './lib/Services/nav.service';
|
|
5
|
+
export * from './lib/gloww.module';
|
|
6
|
+
export * from './lib/Models/nav-item';
|
|
7
|
+
export * from './lib/Pipes/safe-html.pipe';
|
|
8
|
+
export * from './lib/Pipes/secure.pipe';
|
|
9
|
+
export * from './lib/Pipes/html-format.pipe';
|
|
10
|
+
export * from './lib/Components/upload-doc/upload-doc.component';
|
|
11
|
+
export * from './lib/Components/upload-file/upload-file.component';
|
|
12
|
+
export * from './lib/Components/display-objects/display-objects.component';
|
|
13
|
+
export * from './lib/Components/confirmation/confirmation.component';
|
|
14
|
+
export * from './lib/Components/prompt/prompt.component';
|
|
15
|
+
export * from './lib/Components/secure-img/secure-img.component';
|
|
16
|
+
export * from './lib/Components/secure-a/secure-a.component';
|
|
17
|
+
export * from './lib/Components/menu-list-item/menu-list-item.component';
|
|
18
|
+
export * from './lib/Components/code-editor/code-editor.component';
|
|
19
|
+
export * from './lib/Components/html-editor/html-editor.component';
|
|
20
|
+
export * from './lib/Components/folders/folders/folders.component';
|
|
21
|
+
export * from './lib/gloww-security/Components/login/login.component';
|
|
22
|
+
export * from './lib/gloww-security/Components/change-password-dlg/change-password-dlg.component';
|
|
23
|
+
export * from './lib/gloww-security/Components/user-menu/user-menu.component';
|
|
24
|
+
export * from './lib/gloww-security/Services/gloww-security.service';
|
|
25
|
+
export * from './lib/gloww-security/gloww-security.module';
|
|
26
|
+
export * from './lib/gloww-security/Services/authentication-service-config';
|
|
27
|
+
export * from './lib/Services/folder-service-config';
|
|
28
|
+
export * from './lib/Components/download-progress/download-progress.component';
|