@chat21/chat21-ionic 2.0.13 → 3.0.5-9.2
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/.github/workflows/docker-community-push-latest.yml +22 -0
- package/.github/workflows/docker-image-tag-community-tag-push.yml +21 -0
- package/CHANGELOG.md +637 -212
- package/Dockerfile +1 -2
- package/LICENSE +21 -661
- package/README.md +40 -9
- package/angular.json +230 -0
- package/browserslist +12 -0
- package/config.xml +60 -47
- package/deploy_pre.sh +14 -12
- package/deploy_prod.sh +26 -6
- package/env.sample +28 -9
- package/ionic.config.json +2 -2
- package/karma.conf.js +31 -0
- package/nginx.conf +1 -1
- package/package.json +91 -105
- package/publish_pre.sh +33 -0
- package/publish_prod.sh +33 -0
- package/resources/Android/icon/drawable-hdpi-icon.png +0 -0
- package/resources/Android/icon/drawable-ldpi-icon.png +0 -0
- package/resources/Android/icon/drawable-mdpi-icon.png +0 -0
- package/resources/Android/icon/drawable-xhdpi-icon.png +0 -0
- package/resources/Android/icon/drawable-xxhdpi-icon.png +0 -0
- package/resources/Android/icon/drawable-xxxhdpi-icon.png +0 -0
- package/resources/Android/icon.png +0 -0
- package/resources/Android/splash/drawable-land-hdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-land-ldpi-screen.png +0 -0
- package/resources/Android/splash/drawable-land-mdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-land-xhdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-land-xxhdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-land-xxxhdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-hdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-ldpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-mdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-xhdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-xxhdpi-screen.png +0 -0
- package/resources/Android/splash/drawable-port-xxxhdpi-screen.png +0 -0
- package/resources/Android/splash.png +0 -0
- package/src/app/app-routing.module.ts +90 -0
- package/src/app/app.component.html +26 -0
- package/src/app/app.component.scss +11 -0
- package/src/app/app.component.spec.ts +47 -0
- package/src/app/app.component.ts +1154 -128
- package/src/app/app.module.ts +314 -135
- package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.html +143 -0
- package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.scss +335 -0
- package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.spec.ts +179 -0
- package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.ts +303 -0
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.html +149 -0
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.scss +199 -0
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.spec.ts +24 -0
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.ts +97 -0
- package/src/app/chatlib/conversation-detail/message/avatar/avatar.component.html +17 -0
- package/src/app/chatlib/conversation-detail/message/avatar/avatar.component.scss +83 -0
- package/src/app/chatlib/conversation-detail/message/avatar/avatar.component.spec.ts +27 -0
- package/src/app/chatlib/conversation-detail/message/avatar/avatar.component.ts +43 -0
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.html +76 -0
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.scss +51 -0
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.spec.ts +84 -0
- package/src/app/chatlib/conversation-detail/message/bubble-message/bubble-message.component.ts +215 -0
- package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.html +3 -0
- package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.scss +83 -0
- package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.spec.ts +25 -0
- package/src/app/chatlib/conversation-detail/message/buttons/action-button/action-button.component.ts +37 -0
- package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.html +24 -0
- package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.scss +61 -0
- package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.spec.ts +25 -0
- package/src/app/chatlib/conversation-detail/message/buttons/link-button/link-button.component.ts +30 -0
- package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.html +3 -0
- package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.scss +47 -0
- package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.spec.ts +25 -0
- package/src/app/chatlib/conversation-detail/message/buttons/text-button/text-button.component.ts +29 -0
- package/src/app/chatlib/conversation-detail/message/frame/frame.component.html +3 -0
- package/{bin/chat21-ionic → src/app/chatlib/conversation-detail/message/frame/frame.component.scss} +0 -0
- package/src/app/chatlib/conversation-detail/message/frame/frame.component.spec.ts +25 -0
- package/src/app/chatlib/conversation-detail/message/frame/frame.component.ts +33 -0
- package/src/app/chatlib/conversation-detail/message/image/image.component.html +10 -0
- package/src/app/chatlib/conversation-detail/message/image/image.component.scss +34 -0
- package/src/app/chatlib/conversation-detail/message/image/image.component.spec.ts +35 -0
- package/src/app/chatlib/conversation-detail/message/image/image.component.ts +78 -0
- package/src/app/chatlib/conversation-detail/message/info-message/info-message.component.html +2 -0
- package/src/app/chatlib/conversation-detail/message/info-message/info-message.component.scss +15 -0
- package/src/app/chatlib/conversation-detail/message/info-message/info-message.component.spec.ts +27 -0
- package/src/app/chatlib/conversation-detail/message/info-message/info-message.component.ts +35 -0
- package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.html +56 -0
- package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.scss +169 -0
- package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.spec.ts +33 -0
- package/src/app/chatlib/conversation-detail/message/message-attachment/message-attachment.component.ts +80 -0
- package/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.html +18 -0
- package/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.scss +27 -0
- package/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.spec.ts +25 -0
- package/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.ts +24 -0
- package/src/app/chatlib/conversation-detail/message/text/text.component.html +5 -0
- package/src/app/chatlib/conversation-detail/message/text/text.component.scss +26 -0
- package/src/app/chatlib/conversation-detail/message/text/text.component.spec.ts +33 -0
- package/src/app/chatlib/conversation-detail/message/text/text.component.ts +56 -0
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.html +154 -0
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.scss +222 -0
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.spec.ts +24 -0
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.ts +113 -0
- package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.html +46 -0
- package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.scss +200 -0
- package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.spec.ts +27 -0
- package/src/app/chatlib/list-conversations-component/list-conversations/list-conversations.component.ts +135 -0
- package/src/app/components/authentication/login/login.component.html +65 -0
- package/src/app/components/authentication/login/login.component.scss +85 -0
- package/src/app/components/authentication/login/login.component.spec.ts +24 -0
- package/src/app/components/authentication/login/login.component.ts +174 -0
- package/src/app/components/contacts-directory/contacts-directory.component.html +22 -0
- package/src/app/components/contacts-directory/contacts-directory.component.scss +123 -0
- package/src/app/components/contacts-directory/contacts-directory.component.spec.ts +24 -0
- package/src/app/components/contacts-directory/contacts-directory.component.ts +109 -0
- package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.html +3 -0
- package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.scss +21 -0
- package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.spec.ts +24 -0
- package/src/app/components/conversation-detail/bubble-day-message/bubble-day-message.component.ts +14 -0
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.html +54 -0
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.scss +98 -0
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.spec.ts +24 -0
- package/src/app/components/conversation-detail/bubble-my-message/bubble-my-message.component.ts +84 -0
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.html +30 -0
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.scss +83 -0
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.spec.ts +24 -0
- package/src/app/components/conversation-detail/bubble-others-message/bubble-others-message.component.ts +68 -0
- package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.html +3 -0
- package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.scss +10 -0
- package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.spec.ts +24 -0
- package/src/app/components/conversation-detail/bubble-system-message/bubble-system-message.component.ts +14 -0
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.html +71 -0
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.scss +161 -0
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.spec.ts +24 -0
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.ts +133 -0
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.html +64 -0
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.scss +124 -0
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.spec.ts +25 -0
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.ts +685 -0
- package/src/app/components/conversation-detail/option-header/option-header.component.html +13 -0
- package/src/app/components/conversation-detail/option-header/option-header.component.scss +0 -0
- package/src/app/components/conversation-detail/option-header/option-header.component.spec.ts +24 -0
- package/src/app/components/conversation-detail/option-header/option-header.component.ts +24 -0
- package/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.html +64 -0
- package/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.scss +135 -0
- package/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.spec.ts +24 -0
- package/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.ts +53 -0
- package/src/app/components/conversation-info/conversation-info.module.ts +13 -0
- package/src/app/components/conversation-info/info-content/info-content.component.html +18 -0
- package/src/app/components/conversation-info/info-content/info-content.component.scss +5 -0
- package/src/app/components/conversation-info/info-content/info-content.component.spec.ts +24 -0
- package/src/app/components/conversation-info/info-content/info-content.component.ts +395 -0
- package/src/app/components/conversation-info/info-direct/info-direct.component.html +57 -0
- package/src/app/components/conversation-info/info-direct/info-direct.component.scss +62 -0
- package/src/app/components/conversation-info/info-direct/info-direct.component.spec.ts +24 -0
- package/src/app/components/conversation-info/info-direct/info-direct.component.ts +67 -0
- package/src/app/components/conversation-info/info-group/info-group.component.html +115 -0
- package/src/app/components/conversation-info/info-group/info-group.component.scss +80 -0
- package/src/app/components/conversation-info/info-group/info-group.component.spec.ts +24 -0
- package/src/app/components/conversation-info/info-group/info-group.component.ts +218 -0
- package/src/app/components/conversation-info/info-support-group/info-support-group.component.html +6 -0
- package/src/app/components/conversation-info/info-support-group/info-support-group.component.scss +0 -0
- package/src/app/components/conversation-info/info-support-group/info-support-group.component.spec.ts +24 -0
- package/src/app/components/conversation-info/info-support-group/info-support-group.component.ts +29 -0
- package/src/app/components/ddp-header/ddp-header.component.html +31 -0
- package/src/app/components/ddp-header/ddp-header.component.scss +26 -0
- package/src/app/components/ddp-header/ddp-header.component.spec.ts +24 -0
- package/src/app/components/ddp-header/ddp-header.component.ts +33 -0
- package/src/app/components/image-viewer/image-viewer.component.html +23 -0
- package/src/app/components/image-viewer/image-viewer.component.scss +107 -0
- package/src/app/components/image-viewer/image-viewer.component.spec.ts +24 -0
- package/src/app/components/image-viewer/image-viewer.component.ts +38 -0
- package/src/app/components/project-item/project-item.component.html +147 -0
- package/src/app/components/project-item/project-item.component.scss +669 -0
- package/src/app/components/project-item/project-item.component.spec.ts +24 -0
- package/src/app/components/project-item/project-item.component.ts +350 -0
- package/src/app/components/utils/avatar-profile/avatar-profile.component.html +12 -0
- package/src/app/components/utils/avatar-profile/avatar-profile.component.scss +29 -0
- package/src/app/components/utils/avatar-profile/avatar-profile.component.spec.ts +24 -0
- package/src/app/components/utils/avatar-profile/avatar-profile.component.ts +41 -0
- package/src/app/components/utils/user-presence/user-presence.component.html +2 -0
- package/src/app/components/utils/user-presence/user-presence.component.scss +24 -0
- package/src/app/components/utils/user-presence/user-presence.component.spec.ts +24 -0
- package/src/app/components/utils/user-presence/user-presence.component.ts +159 -0
- package/src/app/directives/autofocus.directive.ts +41 -0
- package/src/app/directives/html-entities-encode.pipe.spec.ts +8 -0
- package/src/app/directives/html-entities-encode.pipe.ts +17 -0
- package/src/app/directives/marked.pipe.spec.ts +8 -0
- package/src/app/directives/marked.pipe.ts +27 -0
- package/src/app/directives/safe-html.pipe.ts +16 -0
- package/src/app/pages/authentication/login/login-routing.module.ts +17 -0
- package/src/app/pages/authentication/login/login.module.ts +39 -0
- package/src/app/pages/authentication/login/login.page.html +7 -0
- package/src/app/pages/authentication/login/login.page.scss +5 -0
- package/src/app/pages/authentication/login/login.page.spec.ts +24 -0
- package/src/app/pages/authentication/login/login.page.ts +187 -0
- package/src/app/pages/contacts-directory/contacts-directory-routing.module.ts +17 -0
- package/src/app/pages/contacts-directory/contacts-directory.module.ts +42 -0
- package/src/app/pages/contacts-directory/contacts-directory.page.html +19 -0
- package/src/app/pages/contacts-directory/contacts-directory.page.scss +0 -0
- package/src/app/pages/contacts-directory/contacts-directory.page.spec.ts +24 -0
- package/src/app/pages/contacts-directory/contacts-directory.page.ts +125 -0
- package/src/app/pages/conversation-detail/conversation-detail-routing.module.ts +17 -0
- package/src/app/pages/conversation-detail/conversation-detail.module.ts +69 -0
- package/src/app/pages/conversation-detail/conversation-detail.page.html +191 -0
- package/src/app/pages/conversation-detail/conversation-detail.page.scss +492 -0
- package/src/app/pages/conversation-detail/conversation-detail.page.spec.ts +24 -0
- package/src/app/pages/conversation-detail/conversation-detail.page.ts +1525 -0
- package/src/app/pages/conversations-list/conversations-list-routing.module.ts +17 -0
- package/src/app/pages/conversations-list/conversations-list.module.ts +43 -0
- package/src/app/pages/conversations-list/conversations-list.page.html +112 -0
- package/src/app/pages/conversations-list/conversations-list.page.scss +302 -0
- package/src/app/pages/conversations-list/conversations-list.page.spec.ts +24 -0
- package/src/app/pages/conversations-list/conversations-list.page.ts +1032 -0
- package/src/app/pages/details/details-routing.module.ts +17 -0
- package/src/app/pages/details/details.module.ts +21 -0
- package/src/app/pages/details/details.page.html +28 -0
- package/src/app/pages/details/details.page.scss +23 -0
- package/src/app/pages/details/details.page.spec.ts +24 -0
- package/src/app/pages/details/details.page.ts +65 -0
- package/src/app/pages/loader-preview/loader-preview-routing.module.ts +17 -0
- package/src/app/pages/loader-preview/loader-preview.module.ts +29 -0
- package/src/app/pages/loader-preview/loader-preview.page.html +62 -0
- package/src/app/pages/loader-preview/loader-preview.page.scss +117 -0
- package/src/app/pages/loader-preview/loader-preview.page.spec.ts +24 -0
- package/src/app/pages/loader-preview/loader-preview.page.ts +353 -0
- package/src/app/pages/profile-info/profile-info-routing.module.ts +17 -0
- package/src/app/pages/profile-info/profile-info.module.ts +41 -0
- package/src/app/pages/profile-info/profile-info.page.html +86 -0
- package/src/app/pages/profile-info/profile-info.page.scss +264 -0
- package/src/app/pages/profile-info/profile-info.page.spec.ts +24 -0
- package/src/app/pages/profile-info/profile-info.page.ts +223 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations-routing.module.ts +17 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations.module.ts +22 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.html +22 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.scss +79 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.spec.ts +24 -0
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.ts +116 -0
- package/src/app/services/app-config.ts +107 -0
- package/src/app/services/canned-responses/canned-responses.service.spec.ts +12 -0
- package/src/app/services/canned-responses/canned-responses.service.ts +49 -0
- package/src/app/services/contacts/contacts.service.spec.ts +12 -0
- package/src/app/services/contacts/contacts.service.ts +172 -0
- package/src/app/services/events-service.ts +79 -0
- package/src/app/services/nav-proxy.service.spec.ts +12 -0
- package/src/app/services/nav-proxy.service.ts +80 -0
- package/src/app/services/network-service/network.service.spec.ts +12 -0
- package/src/app/services/network-service/network.service.ts +46 -0
- package/src/app/services/tiledesk/tiledesk.service.spec.ts +12 -0
- package/src/app/services/tiledesk/tiledesk.service.ts +99 -0
- package/src/app/services/websocket/websocket-js.ts +560 -0
- package/src/app/services/websocket/websocket.service.spec.ts +12 -0
- package/src/app/services/websocket/websocket.service.ts +292 -0
- package/src/app/shared/shared-conversation-info.module.ts +33 -0
- package/src/app/shared/shared.module.ts +130 -0
- package/src/{utils → app/utils}/constants.ts-e +0 -0
- package/src/app/utils/scrollbar-theme.directive.ts +63 -0
- package/src/assets/i18n/en.json +122 -38
- package/src/assets/i18n/it.json +101 -10
- package/src/assets/icon/favicon.ico +0 -0
- package/src/assets/icon/ionic_favicon.png +0 -0
- package/src/assets/images/f21ico-done.svg +1 -0
- package/src/assets/images/f21ico-done_all.svg +1 -0
- package/src/assets/images/f21ico-schedule.svg +1 -0
- package/src/assets/images/file-alt-solid.png +0 -0
- package/src/assets/images/no_conversation.jpg +0 -0
- package/src/assets/{img → images}/no_image.png +0 -0
- package/src/assets/js/chat21client.js +1027 -0
- package/src/assets/js/mqtt/4.1.0/mqtt.min.js +1 -0
- package/src/assets/js/mqtt/4.2.6/mqtt.min.js +1 -0
- package/src/assets/js/mqtt/4.2.8/mqtt.min.js +1 -0
- package/src/assets/logo.png +0 -0
- package/src/assets/shapes.svg +1 -0
- package/src/assets/sounds/pling.mp3 +0 -0
- package/src/assets/transparent.png +0 -0
- package/src/chat-config-mqtt-ver-uploaded.json +22 -0
- package/src/chat-config-mqtt.json +26 -0
- package/src/chat-config-pre-test.json +32 -0
- package/src/chat-config-pre.json +23 -0
- package/src/chat-config-template.json +20 -6
- package/src/chat-config.json +30 -0
- package/src/{models → chat21-core/models}/conversation.ts +6 -2
- package/src/{models → chat21-core/models}/group.ts +7 -5
- package/src/{models → chat21-core/models}/message.ts +8 -8
- package/src/{models → chat21-core/models}/upload.ts +5 -5
- package/src/{models → chat21-core/models}/user.ts +2 -1
- package/src/chat21-core/providers/abstract/app-storage.service.spec.ts +15 -0
- package/src/chat21-core/providers/abstract/app-storage.service.ts +17 -0
- package/src/chat21-core/providers/abstract/archivedconversations-handler.service.spec.ts +13 -0
- package/src/chat21-core/providers/abstract/archivedconversations-handler.service.ts +34 -0
- package/src/chat21-core/providers/abstract/conversation-handler-builder.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/conversation-handler-builder.service.ts +11 -0
- package/src/chat21-core/providers/abstract/conversation-handler.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/conversation-handler.service.ts +43 -0
- package/src/chat21-core/providers/abstract/conversations-handler.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/conversations-handler.service.ts +42 -0
- package/src/chat21-core/providers/abstract/groups-handler.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/groups-handler.service.ts +28 -0
- package/src/chat21-core/providers/abstract/image-repo.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/image-repo.service.ts +26 -0
- package/src/chat21-core/providers/abstract/logger.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/logger.service.ts +16 -0
- package/src/chat21-core/providers/abstract/messagingAuth.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/messagingAuth.service.ts +54 -0
- package/src/chat21-core/providers/abstract/notifications.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/notifications.service.ts +31 -0
- package/src/chat21-core/providers/abstract/presence.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/presence.service.ts +34 -0
- package/src/chat21-core/providers/abstract/typing.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/typing.service.ts +31 -0
- package/src/chat21-core/providers/abstract/upload.service.spec.ts +12 -0
- package/src/chat21-core/providers/abstract/upload.service.ts +39 -0
- package/src/chat21-core/providers/chat-manager.ts +282 -0
- package/src/chat21-core/providers/custom-translate.service.spec.ts +12 -0
- package/src/chat21-core/providers/custom-translate.service.ts +42 -0
- package/src/chat21-core/providers/firebase/firebase-archivedconversations-handler.ts +476 -0
- package/src/chat21-core/providers/firebase/firebase-auth-service.ts +376 -0
- package/src/chat21-core/providers/firebase/firebase-conversation-handler-builder.service.ts +19 -0
- package/src/chat21-core/providers/firebase/firebase-conversation-handler.ts +416 -0
- package/src/chat21-core/providers/firebase/firebase-conversations-handler.ts +570 -0
- package/src/chat21-core/providers/firebase/firebase-groups-handler.ts +303 -0
- package/src/chat21-core/providers/firebase/firebase-image-repo.ts +40 -0
- package/src/chat21-core/providers/firebase/firebase-init-service.ts +31 -0
- package/src/chat21-core/providers/firebase/firebase-notifications.ts +246 -0
- package/src/chat21-core/providers/firebase/firebase-presence.service.ts +190 -0
- package/src/chat21-core/providers/firebase/firebase-typing.service.ts +93 -0
- package/src/chat21-core/providers/firebase/firebase-upload.service.ts +106 -0
- package/src/chat21-core/providers/localSessionStorage.ts +215 -0
- package/src/chat21-core/providers/logger/customLogger.ts +70 -0
- package/src/chat21-core/providers/logger/loggerInstance.ts +20 -0
- package/src/chat21-core/providers/mqtt/chat-service.ts +44 -0
- package/src/chat21-core/providers/mqtt/mqtt-archivedconversations-handler.ts +707 -0
- package/src/chat21-core/providers/mqtt/mqtt-auth-service.ts +313 -0
- package/src/chat21-core/providers/mqtt/mqtt-conversation-handler-builder.service.ts +25 -0
- package/src/chat21-core/providers/mqtt/mqtt-conversation-handler.ts +446 -0
- package/src/chat21-core/providers/mqtt/mqtt-conversations-handler.ts +601 -0
- package/src/chat21-core/providers/mqtt/mqtt-groups-handler.ts +139 -0
- package/src/chat21-core/providers/mqtt/mqtt-notifications.ts +122 -0
- package/src/chat21-core/providers/mqtt/mqtt-presence.service.ts +229 -0
- package/src/chat21-core/providers/mqtt/mqtt-typing.service.ts +93 -0
- package/src/chat21-core/providers/native/native-image-repo.ts +30 -0
- package/src/chat21-core/providers/native/native-upload-service.ts +85 -0
- package/src/chat21-core/providers/tiledesk/tiledesk-auth.service.spec.ts +12 -0
- package/src/chat21-core/providers/tiledesk/tiledesk-auth.service.ts +211 -0
- package/src/chat21-core/utils/constants.ts +109 -0
- package/src/chat21-core/utils/user-typing/user-typing.component.html +6 -0
- package/src/chat21-core/utils/user-typing/user-typing.component.scss +62 -0
- package/src/chat21-core/utils/user-typing/user-typing.component.spec.ts +24 -0
- package/src/chat21-core/utils/user-typing/user-typing.component.ts +114 -0
- package/src/chat21-core/utils/utils-message.ts +117 -0
- package/src/chat21-core/utils/utils-user.ts +46 -0
- package/src/chat21-core/utils/utils.ts +893 -0
- package/src/firebase-messaging-sw-template.js +1 -1
- package/src/global.scss +585 -0
- package/src/index.html +71 -42
- package/src/main.ts +12 -0
- package/src/manifest.json +0 -11
- package/src/models/department.ts +12 -0
- package/src/polyfills.ts +73 -0
- package/src/test.ts +21 -0
- package/src/theme/variables.scss +236 -93
- package/src/variables.scss +30 -0
- package/src/zone-flags.ts +5 -0
- package/tsconfig.app.json +14 -0
- package/tsconfig.json +23 -18
- package/tsconfig.spec.json +19 -0
- package/tslint.json +84 -7
- package/app.json +0 -7
- package/curl +0 -1
- package/deploy_dev.sh +0 -28
- package/docs/changelog.html +0 -227
- package/docs/classes/ConversationModel.html +0 -1022
- package/docs/classes/GroupModel.html +0 -527
- package/docs/classes/MessageModel.html +0 -843
- package/docs/classes/UploadModel.html +0 -417
- package/docs/classes/UserModel.html +0 -728
- package/docs/classes/_DetailPage.html +0 -144
- package/docs/classes/_MasterPage.html +0 -144
- package/docs/components/ArchivedConversationsPage.html +0 -1024
- package/docs/components/ChatBubble.html +0 -327
- package/docs/components/DettaglioConversazionePage.html +0 -6060
- package/docs/components/ElasticTextarea.html +0 -619
- package/docs/components/InfoAdvancedPage.html +0 -656
- package/docs/components/InfoConversationPage.html +0 -5681
- package/docs/components/InfoMessagePage.html +0 -993
- package/docs/components/InfoUserPage.html +0 -1420
- package/docs/components/ListaConversazioniPage.html +0 -3576
- package/docs/components/LoginPage.html +0 -1457
- package/docs/components/MyApp.html +0 -1388
- package/docs/components/PlaceholderPage.html +0 -397
- package/docs/components/PopoverPage.html +0 -986
- package/docs/components/PopoverProfilePage.html +0 -639
- package/docs/components/ProfilePage.html +0 -1187
- package/docs/components/RegisterPage.html +0 -1271
- package/docs/components/ResetpwdPage.html +0 -1039
- package/docs/components/UpdateImageProfilePage.html +0 -997
- package/docs/components/UsersPage.html +0 -1297
- package/docs/coverage.html +0 -1421
- package/docs/dependencies.html +0 -210
- package/docs/directives/AutosizeDirective.html +0 -556
- package/docs/fonts/FontAwesome.otf +0 -0
- package/docs/fonts/fontawesome-webfont.eot +0 -0
- package/docs/fonts/fontawesome-webfont.svg +0 -685
- package/docs/fonts/fontawesome-webfont.ttf +0 -0
- package/docs/fonts/fontawesome-webfont.woff +0 -0
- package/docs/fonts/fontawesome-webfont.woff2 +0 -0
- package/docs/fonts/ionicons.eot +0 -0
- package/docs/fonts/ionicons.svg +0 -2090
- package/docs/fonts/ionicons.ttf +0 -0
- package/docs/fonts/ionicons.woff +0 -0
- package/docs/fonts/ionicons.woff2 +0 -0
- package/docs/fonts/roboto-v15-latin-300.eot +0 -0
- package/docs/fonts/roboto-v15-latin-300.svg +0 -314
- package/docs/fonts/roboto-v15-latin-300.ttf +0 -0
- package/docs/fonts/roboto-v15-latin-300.woff +0 -0
- package/docs/fonts/roboto-v15-latin-300.woff2 +0 -0
- package/docs/fonts/roboto-v15-latin-700.eot +0 -0
- package/docs/fonts/roboto-v15-latin-700.svg +0 -310
- package/docs/fonts/roboto-v15-latin-700.ttf +0 -0
- package/docs/fonts/roboto-v15-latin-700.woff +0 -0
- package/docs/fonts/roboto-v15-latin-700.woff2 +0 -0
- package/docs/fonts/roboto-v15-latin-italic.eot +0 -0
- package/docs/fonts/roboto-v15-latin-italic.svg +0 -323
- package/docs/fonts/roboto-v15-latin-italic.ttf +0 -0
- package/docs/fonts/roboto-v15-latin-italic.woff +0 -0
- package/docs/fonts/roboto-v15-latin-italic.woff2 +0 -0
- package/docs/fonts/roboto-v15-latin-regular.eot +0 -0
- package/docs/fonts/roboto-v15-latin-regular.svg +0 -308
- package/docs/fonts/roboto-v15-latin-regular.ttf +0 -0
- package/docs/fonts/roboto-v15-latin-regular.woff +0 -0
- package/docs/fonts/roboto-v15-latin-regular.woff2 +0 -0
- package/docs/graph/dependencies.svg +0 -870
- package/docs/images/compodoc-vectorise-inverted.png +0 -0
- package/docs/images/compodoc-vectorise-inverted.svg +0 -201
- package/docs/images/compodoc-vectorise.png +0 -0
- package/docs/images/compodoc-vectorise.svg +0 -201
- package/docs/images/coverage-badge-documentation.svg +0 -9
- package/docs/images/coverage-badge.svg +0 -9
- package/docs/images/favicon.ico +0 -0
- package/docs/index.html +0 -233
- package/docs/injectables/AppConfigProvider.html +0 -411
- package/docs/injectables/AuthService.html +0 -1016
- package/docs/injectables/ChatArchivedConversationsHandler.html +0 -1832
- package/docs/injectables/ChatContactsSynchronizer.html +0 -841
- package/docs/injectables/ChatConversationHandler.html +0 -1960
- package/docs/injectables/ChatConversationsHandler.html +0 -2584
- package/docs/injectables/ChatManager.html +0 -1779
- package/docs/injectables/ChatPresenceHandler.html +0 -1187
- package/docs/injectables/CustomTranslateService.html +0 -496
- package/docs/injectables/DatabaseProvider.html +0 -1444
- package/docs/injectables/GroupService.html +0 -1458
- package/docs/injectables/MessagingService.html +0 -1165
- package/docs/injectables/NavProxyService.html +0 -1028
- package/docs/injectables/TiledeskConversationProvider.html +0 -945
- package/docs/injectables/UploadService.html +0 -791
- package/docs/injectables/UserService.html +0 -1612
- package/docs/js/compodoc.js +0 -14
- package/docs/js/lazy-load-graphs.js +0 -44
- package/docs/js/libs/EventDispatcher.js +0 -5
- package/docs/js/libs/bootstrap-native.js +0 -2
- package/docs/js/libs/clipboard.min.js +0 -7
- package/docs/js/libs/custom-elements-es5-adapter.js +0 -15
- package/docs/js/libs/custom-elements.min.js +0 -38
- package/docs/js/libs/d3.v3.min.js +0 -2
- package/docs/js/libs/deep-iterator.js +0 -2
- package/docs/js/libs/es6-shim.min.js +0 -11
- package/docs/js/libs/htmlparser.js +0 -23
- package/docs/js/libs/innersvg.js +0 -9
- package/docs/js/libs/lit-html.js +0 -1
- package/docs/js/libs/prism.js +0 -14
- package/docs/js/libs/promise.min.js +0 -6
- package/docs/js/libs/svg-pan-zoom.min.js +0 -3
- package/docs/js/libs/tablesort.min.js +0 -6
- package/docs/js/libs/tablesort.number.min.js +0 -6
- package/docs/js/libs/vis.min.js +0 -46
- package/docs/js/libs/zepto.min.js +0 -2
- package/docs/js/menu-wc.js +0 -594
- package/docs/js/menu.js +0 -261
- package/docs/js/routes.js +0 -280
- package/docs/js/search/lunr.min.js +0 -6
- package/docs/js/search/search-lunr.js +0 -67
- package/docs/js/search/search.js +0 -268
- package/docs/js/search/search_index.js +0 -4
- package/docs/js/sourceCode.js +0 -58
- package/docs/js/svg-pan-zoom.controls.js +0 -53
- package/docs/js/tabs.js +0 -21
- package/docs/js/tree.js +0 -147
- package/docs/license.html +0 -664
- package/docs/miscellaneous/functions.html +0 -2417
- package/docs/miscellaneous/variables.html +0 -994
- package/docs/modules/AppModule/dependencies.svg +0 -454
- package/docs/modules/AppModule.html +0 -967
- package/docs/modules/ArchivedConversationsPageModule/dependencies.svg +0 -50
- package/docs/modules/ArchivedConversationsPageModule.html +0 -225
- package/docs/modules/DettaglioConversazionePageModule/dependencies.svg +0 -66
- package/docs/modules/DettaglioConversazionePageModule.html +0 -256
- package/docs/modules/InfoAdvancedPageModule/dependencies.svg +0 -50
- package/docs/modules/InfoAdvancedPageModule.html +0 -225
- package/docs/modules/InfoConversationPageModule/dependencies.svg +0 -50
- package/docs/modules/InfoConversationPageModule.html +0 -227
- package/docs/modules/InfoUserPageModule/dependencies.svg +0 -50
- package/docs/modules/InfoUserPageModule.html +0 -225
- package/docs/modules/ListaConversazioniPageModule/dependencies.svg +0 -66
- package/docs/modules/ListaConversazioniPageModule.html +0 -255
- package/docs/modules/LoginModule/dependencies.svg +0 -66
- package/docs/modules/LoginModule.html +0 -253
- package/docs/modules/PlaceholderPageModule/dependencies.svg +0 -66
- package/docs/modules/PlaceholderPageModule.html +0 -253
- package/docs/modules/PopoverPageModule/dependencies.svg +0 -66
- package/docs/modules/PopoverPageModule.html +0 -253
- package/docs/modules/PopoverProfilePageModule/dependencies.svg +0 -66
- package/docs/modules/PopoverProfilePageModule.html +0 -253
- package/docs/modules/ProfilePageModule/dependencies.svg +0 -66
- package/docs/modules/ProfilePageModule.html +0 -253
- package/docs/modules/RegisterModule/dependencies.svg +0 -66
- package/docs/modules/RegisterModule.html +0 -253
- package/docs/modules/ResetpwdModule/dependencies.svg +0 -66
- package/docs/modules/ResetpwdModule.html +0 -253
- package/docs/modules/UpdateImageProfilePageModule/dependencies.svg +0 -66
- package/docs/modules/UpdateImageProfilePageModule.html +0 -253
- package/docs/modules/UsersModule/dependencies.svg +0 -66
- package/docs/modules/UsersModule.html +0 -253
- package/docs/modules.html +0 -379
- package/docs/overview.html +0 -1033
- package/docs/styles/bootstrap-card.css +0 -219
- package/docs/styles/bootstrap.min.css +0 -5
- package/docs/styles/compodoc.css +0 -996
- package/docs/styles/font-awesome.min.css +0 -4
- package/docs/styles/ionicons.min.css +0 -11
- package/docs/styles/laravel.css +0 -69
- package/docs/styles/material.css +0 -109
- package/docs/styles/original.css +0 -47
- package/docs/styles/postmark.css +0 -224
- package/docs/styles/prism.css +0 -267
- package/docs/styles/readthedocs.css +0 -108
- package/docs/styles/reset.css +0 -48
- package/docs/styles/stripe.css +0 -65
- package/docs/styles/style.css +0 -7
- package/docs/styles/tablesort.css +0 -33
- package/docs/styles/vagrant.css +0 -96
- package/firebase-functions/.firebaserc +0 -5
- package/firebase-functions/firebase.json +0 -1
- package/firebase-functions/functions/index.js +0 -208
- package/firebase-functions/functions/package.json +0 -9
- package/google-services.json +0 -42
- package/hooks/README.md +0 -196
- package/resources/android/icon/drawable-hdpi-icon.png +0 -0
- package/resources/android/icon/drawable-ldpi-icon.png +0 -0
- package/resources/android/icon/drawable-mdpi-icon.png +0 -0
- package/resources/android/icon/drawable-xhdpi-icon.png +0 -0
- package/resources/android/icon/drawable-xxhdpi-icon.png +0 -0
- package/resources/android/icon/drawable-xxxhdpi-icon.png +0 -0
- package/resources/android/splash/drawable-land-hdpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-ldpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-mdpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-xhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-xxhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-land-xxxhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-hdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-ldpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-mdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-xhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-xxhdpi-screen.png +0 -0
- package/resources/android/splash/drawable-port-xxxhdpi-screen.png +0 -0
- package/resources/icon.png +0 -0
- package/resources/icon.png.md5 +0 -1
- package/resources/ios/icon/icon-1024.png +0 -0
- package/resources/ios/icon/icon-40.png +0 -0
- package/resources/ios/icon/icon-40@2x.png +0 -0
- package/resources/ios/icon/icon-40@3x.png +0 -0
- package/resources/ios/icon/icon-50.png +0 -0
- package/resources/ios/icon/icon-50@2x.png +0 -0
- package/resources/ios/icon/icon-60.png +0 -0
- package/resources/ios/icon/icon-60@2x.png +0 -0
- package/resources/ios/icon/icon-60@3x.png +0 -0
- package/resources/ios/icon/icon-72.png +0 -0
- package/resources/ios/icon/icon-72@2x.png +0 -0
- package/resources/ios/icon/icon-76.png +0 -0
- package/resources/ios/icon/icon-76@2x.png +0 -0
- package/resources/ios/icon/icon-83.5@2x.png +0 -0
- package/resources/ios/icon/icon-small.png +0 -0
- package/resources/ios/icon/icon-small@2x.png +0 -0
- package/resources/ios/icon/icon-small@3x.png +0 -0
- package/resources/ios/icon/icon.png +0 -0
- package/resources/ios/icon/icon@2x.png +0 -0
- package/resources/ios/splash/Default-568h@2x~iphone.png +0 -0
- package/resources/ios/splash/Default-667h.png +0 -0
- package/resources/ios/splash/Default-736h.png +0 -0
- package/resources/ios/splash/Default-Landscape-736h.png +0 -0
- package/resources/ios/splash/Default-Landscape@2x~ipad.png +0 -0
- package/resources/ios/splash/Default-Landscape@~ipadpro.png +0 -0
- package/resources/ios/splash/Default-Landscape~ipad.png +0 -0
- package/resources/ios/splash/Default-Portrait@2x~ipad.png +0 -0
- package/resources/ios/splash/Default-Portrait@~ipadpro.png +0 -0
- package/resources/ios/splash/Default-Portrait~ipad.png +0 -0
- package/resources/ios/splash/Default@2x~iphone.png +0 -0
- package/resources/ios/splash/Default@2x~universal~anyany.png +0 -0
- package/resources/ios/splash/Default~iphone.png +0 -0
- package/resources/splash.png +0 -0
- package/resources/splash.png.md5 +0 -1
- package/server.js +0 -7
- package/src/app/app.html +0 -56
- package/src/app/app.scss +0 -236
- package/src/app/main.ts +0 -9
- package/src/assets/chat-background.jpg +0 -0
- package/src/assets/chat21-ionic-pattern-2.svg +0 -5110
- package/src/assets/chat21-ionic-pattern.png +0 -0
- package/src/assets/chat21-ionic-pattern.svg +0 -1
- package/src/assets/download.svg +0 -1
- package/src/assets/dummyDump.sql +0 -1
- package/src/assets/icon/favicon_old.ico +0 -0
- package/src/assets/img/c21-down-gray.svg +0 -1
- package/src/assets/img/chat21-icon.png +0 -0
- package/src/assets/img/f21ico-attached.svg +0 -1
- package/src/assets/img/f21ico-close.svg +0 -1
- package/src/assets/img/f21ico-photo.svg +0 -1
- package/src/assets/img/ic_keyboard_arrow_down_black_24px.svg +0 -4
- package/src/assets/img/ic_keyboard_arrow_down_white_24px.svg +0 -4
- package/src/assets/img/icon.png +0 -0
- package/src/assets/message-mine.png +0 -0
- package/src/assets/message-other.png +0 -0
- package/src/assets/pling.mp3 +0 -0
- package/src/assets/splash.png +0 -0
- package/src/declarations.d.ts +0 -14
- package/src/directives/autosize/autosize.ts +0 -82
- package/src/environments/environment.pre.ts +0 -22
- package/src/environments/environment.prod.ts +0 -22
- package/src/environments/environment.ts +0 -21
- package/src/pages/_DetailPage.ts +0 -1
- package/src/pages/_MasterPage.ts +0 -1
- package/src/pages/archived-conversations/archived-conversations.html +0 -32
- package/src/pages/archived-conversations/archived-conversations.module.ts +0 -13
- package/src/pages/archived-conversations/archived-conversations.scss +0 -153
- package/src/pages/archived-conversations/archived-conversations.ts +0 -121
- package/src/pages/authentication/login/login.html +0 -58
- package/src/pages/authentication/login/login.module.ts +0 -16
- package/src/pages/authentication/login/login.scss +0 -121
- package/src/pages/authentication/login/login.ts +0 -221
- package/src/pages/authentication/register/register.html +0 -88
- package/src/pages/authentication/register/register.module.ts +0 -16
- package/src/pages/authentication/register/register.scss +0 -95
- package/src/pages/authentication/register/register.ts +0 -122
- package/src/pages/authentication/resetpwd/resetpwd.html +0 -40
- package/src/pages/authentication/resetpwd/resetpwd.module.ts +0 -16
- package/src/pages/authentication/resetpwd/resetpwd.scss +0 -102
- package/src/pages/authentication/resetpwd/resetpwd.ts +0 -93
- package/src/pages/components/chatBubble_old/chatBubble.scss +0 -83
- package/src/pages/components/chatBubble_old/chatBubble.ts +0 -30
- package/src/pages/components/elasticTextarea_old.ts +0 -46
- package/src/pages/dettaglio-conversazione/dettaglio-conversazione.html +0 -261
- package/src/pages/dettaglio-conversazione/dettaglio-conversazione.module.ts +0 -19
- package/src/pages/dettaglio-conversazione/dettaglio-conversazione.scss +0 -701
- package/src/pages/dettaglio-conversazione/dettaglio-conversazione.ts +0 -1395
- package/src/pages/index.ts +0 -5
- package/src/pages/info-advanced/info-advanced.html +0 -90
- package/src/pages/info-advanced/info-advanced.module.ts +0 -13
- package/src/pages/info-advanced/info-advanced.scss +0 -196
- package/src/pages/info-advanced/info-advanced.ts +0 -44
- package/src/pages/info-conversation/info-conversation.html +0 -225
- package/src/pages/info-conversation/info-conversation.module.ts +0 -15
- package/src/pages/info-conversation/info-conversation.scss +0 -444
- package/src/pages/info-conversation/info-conversation.ts +0 -1233
- package/src/pages/info-message/info-message.html +0 -74
- package/src/pages/info-message/info-message.module.ts +0 -13
- package/src/pages/info-message/info-message.scss +0 -216
- package/src/pages/info-message/info-message.ts +0 -89
- package/src/pages/info-user/info-user.html +0 -89
- package/src/pages/info-user/info-user.module.ts +0 -13
- package/src/pages/info-user/info-user.scss +0 -187
- package/src/pages/info-user/info-user.ts +0 -177
- package/src/pages/lista-conversazioni/lista-conversazioni.html +0 -88
- package/src/pages/lista-conversazioni/lista-conversazioni.module.ts +0 -18
- package/src/pages/lista-conversazioni/lista-conversazioni.scss +0 -245
- package/src/pages/lista-conversazioni/lista-conversazioni.ts +0 -736
- package/src/pages/placeholder/placeholder.html +0 -3
- package/src/pages/placeholder/placeholder.module.ts +0 -16
- package/src/pages/placeholder/placeholder.scss +0 -23
- package/src/pages/placeholder/placeholder.ts +0 -18
- package/src/pages/popover/popover.html +0 -27
- package/src/pages/popover/popover.module.ts +0 -16
- package/src/pages/popover/popover.scss +0 -23
- package/src/pages/popover/popover.ts +0 -95
- package/src/pages/popover-profile/popover-profile.html +0 -20
- package/src/pages/popover-profile/popover-profile.module.ts +0 -16
- package/src/pages/popover-profile/popover-profile.scss +0 -10
- package/src/pages/popover-profile/popover-profile.ts +0 -40
- package/src/pages/profile/profile.html +0 -54
- package/src/pages/profile/profile.module.ts +0 -16
- package/src/pages/profile/profile.scss +0 -45
- package/src/pages/profile/profile.ts +0 -108
- package/src/pages/update-image-profile/update-image-profile.html +0 -39
- package/src/pages/update-image-profile/update-image-profile.module.ts +0 -16
- package/src/pages/update-image-profile/update-image-profile.scss +0 -50
- package/src/pages/update-image-profile/update-image-profile.ts +0 -111
- package/src/pages/users/users.html +0 -55
- package/src/pages/users/users.module.ts +0 -16
- package/src/pages/users/users.scss +0 -10
- package/src/pages/users/users.ts +0 -222
- package/src/providers/app-config/app-config.ts +0 -33
- package/src/providers/auth-service.ts +0 -140
- package/src/providers/canned-responses-service/canned-responses-service.ts +0 -57
- package/src/providers/chat-archived-conversations-handler.ts +0 -283
- package/src/providers/chat-contacts-synchronizer.ts +0 -179
- package/src/providers/chat-conversation-handler.ts +0 -547
- package/src/providers/chat-conversations-handler.ts +0 -519
- package/src/providers/chat-manager/chat-manager.ts +0 -246
- package/src/providers/chat-presence-handler.ts +0 -188
- package/src/providers/database/database.ts +0 -214
- package/src/providers/group/group.ts +0 -243
- package/src/providers/messaging-service.ts +0 -267
- package/src/providers/nav-proxy.ts +0 -104
- package/src/providers/tiledesk-conversation/tiledesk-conversation.ts +0 -134
- package/src/providers/translate-service.ts +0 -61
- package/src/providers/upload-service/upload-service.ts +0 -117
- package/src/providers/user/user.ts +0 -320
- package/src/service-worker.js +0 -30
- package/src/utils/constants.ts +0 -73
- package/src/utils/utils.ts +0 -548
- package/src/videochat.php +0 -20
|
Binary file
|
|
@@ -1,201 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
-
|
|
4
|
-
<svg
|
|
5
|
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
6
|
-
xmlns:cc="http://creativecommons.org/ns#"
|
|
7
|
-
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
8
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
9
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
11
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
-
width="542.98999"
|
|
13
|
-
height="542.98999"
|
|
14
|
-
id="svg2"
|
|
15
|
-
version="1.1"
|
|
16
|
-
inkscape:version="0.48.4 r9939"
|
|
17
|
-
sodipodi:docname="compodoc.svg"
|
|
18
|
-
inkscape:export-filename="/home/SII/vogloblinsky/Bureau/compodoc.png"
|
|
19
|
-
inkscape:export-xdpi="72"
|
|
20
|
-
inkscape:export-ydpi="72">
|
|
21
|
-
<defs
|
|
22
|
-
id="defs4" />
|
|
23
|
-
<sodipodi:namedview
|
|
24
|
-
id="base"
|
|
25
|
-
pagecolor="#ffffff"
|
|
26
|
-
bordercolor="#666666"
|
|
27
|
-
borderopacity="1.0"
|
|
28
|
-
inkscape:pageopacity="0.0"
|
|
29
|
-
inkscape:pageshadow="2"
|
|
30
|
-
inkscape:zoom="0.98994949"
|
|
31
|
-
inkscape:cx="394.86152"
|
|
32
|
-
inkscape:cy="152.29997"
|
|
33
|
-
inkscape:document-units="px"
|
|
34
|
-
inkscape:current-layer="layer1"
|
|
35
|
-
showgrid="false"
|
|
36
|
-
inkscape:window-width="1887"
|
|
37
|
-
inkscape:window-height="1056"
|
|
38
|
-
inkscape:window-x="1953"
|
|
39
|
-
inkscape:window-y="24"
|
|
40
|
-
inkscape:window-maximized="1"
|
|
41
|
-
fit-margin-top="0"
|
|
42
|
-
fit-margin-left="0"
|
|
43
|
-
fit-margin-right="0"
|
|
44
|
-
fit-margin-bottom="0" />
|
|
45
|
-
<metadata
|
|
46
|
-
id="metadata7">
|
|
47
|
-
<rdf:RDF>
|
|
48
|
-
<cc:Work
|
|
49
|
-
rdf:about="">
|
|
50
|
-
<dc:format>image/svg+xml</dc:format>
|
|
51
|
-
<dc:type
|
|
52
|
-
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
53
|
-
<dc:title></dc:title>
|
|
54
|
-
</cc:Work>
|
|
55
|
-
</rdf:RDF>
|
|
56
|
-
</metadata>
|
|
57
|
-
<g
|
|
58
|
-
inkscape:label="Calque 1"
|
|
59
|
-
inkscape:groupmode="layer"
|
|
60
|
-
id="layer1"
|
|
61
|
-
transform="translate(-109.30421,14.576914)">
|
|
62
|
-
<g
|
|
63
|
-
id="g3075"
|
|
64
|
-
transform="matrix(-0.34202014,0.93969262,-0.93969262,-0.34202014,789.34114,36.353292)">
|
|
65
|
-
<path
|
|
66
|
-
id="path254"
|
|
67
|
-
style="fill:#f03949;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
68
|
-
d="m 126.98485,359.06758 340,0 0,-65 -340,0 0,65 z"
|
|
69
|
-
inkscape:connector-curvature="0" />
|
|
70
|
-
<path
|
|
71
|
-
id="path256"
|
|
72
|
-
style="fill:#f78f22;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
73
|
-
d="m 306.35985,326.56758 c 0,-13.46125 -10.9125,-24.37375 -24.37375,-24.37375 -13.46125,0 -24.37375,10.9125 -24.37375,24.37375 0,13.46125 10.9125,24.37375 24.37375,24.37375 13.46125,0 24.37375,-10.9125 24.37375,-24.37375"
|
|
74
|
-
inkscape:connector-curvature="0" />
|
|
75
|
-
<path
|
|
76
|
-
id="path266"
|
|
77
|
-
style="fill:#1a3a5c;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
78
|
-
d="m 173.23485,359.06758 28.75,0 0,-65 -28.75,0 0,65 z"
|
|
79
|
-
inkscape:connector-curvature="0" />
|
|
80
|
-
<path
|
|
81
|
-
sodipodi:nodetypes="ccccccccccccccccccsccccc"
|
|
82
|
-
id="path268"
|
|
83
|
-
style="fill:#e73440;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
84
|
-
d="m 466.98485,326.56758 -27.5,0 0,-32.5 27.5,0 0,32.5 m -41.25,0 -38.78935,0.25254 -1.26269,-32.24746 62.02286,1.01015 -2.77792,31.23731 m -57.9429,-0.25254 -10,0 0,-32.5 10,0 0,32.5 m -23.75,0 -56.875,0 0,0 c 0,-13.46125 -10.9125,-24.37375 -24.37375,-24.37375 -13.46125,0 -24.37375,10.9125 -24.37375,24.37375 l -55.6275,0 0,-32.5 176.40229,0.25254 1.01015,32.5"
|
|
85
|
-
inkscape:connector-curvature="0" />
|
|
86
|
-
<path
|
|
87
|
-
id="path258"
|
|
88
|
-
style="fill:#3f1928;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
89
|
-
d="m 383.23485,359.06758 13.75,0 0,-65 -13.75,0 0,65 z"
|
|
90
|
-
inkscape:connector-curvature="0" />
|
|
91
|
-
<path
|
|
92
|
-
id="path260"
|
|
93
|
-
style="fill:#3f1928;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
94
|
-
d="m 405.73485,359.06758 13.75,0 0,-65 -13.75,0 0,65 z"
|
|
95
|
-
inkscape:connector-curvature="0" />
|
|
96
|
-
<path
|
|
97
|
-
id="path278"
|
|
98
|
-
style="fill:#e73440;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
99
|
-
d="m 173.23485,326.56758 -7.5,0 0,-32.5 7.5,0 0,32.5 m -21.25,0 -25,0 0,-32.5 25,0 0,32.5"
|
|
100
|
-
inkscape:connector-curvature="0" />
|
|
101
|
-
<path
|
|
102
|
-
id="path280"
|
|
103
|
-
style="fill:#e73440;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
104
|
-
d="m 151.98485,326.56758 13.75,0 0,-32.5 -13.75,0 0,32.5 z"
|
|
105
|
-
inkscape:connector-curvature="0" />
|
|
106
|
-
<path
|
|
107
|
-
id="path282"
|
|
108
|
-
style="fill:#183452;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
109
|
-
d="m 173.23485,326.56758 28.75,0 0,-32.5 -28.75,0 0,32.5 z"
|
|
110
|
-
inkscape:connector-curvature="0" />
|
|
111
|
-
</g>
|
|
112
|
-
<g
|
|
113
|
-
id="g3914"
|
|
114
|
-
transform="translate(16.162441,0.605492)">
|
|
115
|
-
<rect
|
|
116
|
-
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)"
|
|
117
|
-
style="fill:#5cc0ae;fill-opacity:1"
|
|
118
|
-
y="209.84224"
|
|
119
|
-
x="-77.023102"
|
|
120
|
-
height="44.285713"
|
|
121
|
-
width="180"
|
|
122
|
-
id="rect3090" />
|
|
123
|
-
<rect
|
|
124
|
-
transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)"
|
|
125
|
-
style="fill:#f1c40f;fill-opacity:1"
|
|
126
|
-
y="33.689053"
|
|
127
|
-
x="209.69711"
|
|
128
|
-
height="44.285713"
|
|
129
|
-
width="180"
|
|
130
|
-
id="rect3090-7-2" />
|
|
131
|
-
</g>
|
|
132
|
-
<g
|
|
133
|
-
id="g3919"
|
|
134
|
-
transform="translate(-2.0203046,-106.78207)">
|
|
135
|
-
<path
|
|
136
|
-
inkscape:connector-curvature="0"
|
|
137
|
-
id="rect3090-7-2-4"
|
|
138
|
-
d="m 623.00576,279.17227 -127.28125,127.28125 31.3125,31.3125 127.28125,-127.28125 -31.3125,-31.3125 z"
|
|
139
|
-
style="fill:#f03949;fill-opacity:1" />
|
|
140
|
-
<rect
|
|
141
|
-
transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)"
|
|
142
|
-
style="fill:#3498db;fill-opacity:1"
|
|
143
|
-
y="-242.99538"
|
|
144
|
-
x="502.17584"
|
|
145
|
-
height="44.285713"
|
|
146
|
-
width="180"
|
|
147
|
-
id="rect3090-7" />
|
|
148
|
-
</g>
|
|
149
|
-
<flowRoot
|
|
150
|
-
xml:space="preserve"
|
|
151
|
-
id="flowRoot3935"
|
|
152
|
-
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
|
153
|
-
transform="translate(109.30421,32.871674)"><flowRegion
|
|
154
|
-
id="flowRegion3937"><rect
|
|
155
|
-
id="rect3939"
|
|
156
|
-
width="355.5737"
|
|
157
|
-
height="240.41631"
|
|
158
|
-
x="331.33005"
|
|
159
|
-
y="610.32037" /></flowRegion><flowPara
|
|
160
|
-
id="flowPara3941" /></flowRoot> <g
|
|
161
|
-
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
|
162
|
-
id="text3943-1-6-0">
|
|
163
|
-
<path
|
|
164
|
-
d="m 212.84736,436.93307 c -0.33003,0.42004 -0.66003,0.75004 -0.99,0.99 -0.30003,0.24004 -0.75003,0.36004 -1.35,0.36 -0.57003,4e-5 -1.12503,-0.16496 -1.665,-0.495 -0.54003,-0.35996 -1.18503,-0.74996 -1.935,-1.17 -0.75003,-0.44996 -1.65003,-0.83996 -2.7,-1.17 -1.02003,-0.35996 -2.29502,-0.53996 -3.825,-0.54 -1.95002,4e-5 -3.66002,0.36004 -5.13,1.08 -1.47002,0.69004 -2.70001,1.69504 -3.69,3.015 -0.96001,1.32004 -1.68001,2.92504 -2.16,4.815 -0.48001,1.86003 -0.72001,3.97503 -0.72,6.345 -10e-6,2.46002 0.25499,4.65002 0.765,6.57 0.53999,1.92002 1.30499,3.54002 2.295,4.86 0.98999,1.29001 2.18998,2.28001 3.6,2.97 1.40998,0.66001 2.99998,0.99001 4.77,0.99 1.76998,1e-5 3.19497,-0.20999 4.275,-0.63 1.10997,-0.44999 2.03997,-0.92999 2.79,-1.44 0.74997,-0.53999 1.39497,-1.01999 1.935,-1.44 0.56997,-0.44998 1.19997,-0.67498 1.89,-0.675 0.89997,2e-5 1.57497,0.34502 2.025,1.035 l 3.195,4.05 c -1.23004,1.44001 -2.56504,2.65501 -4.005,3.645 -1.44003,0.96001 -2.94003,1.74001 -4.5,2.34 -1.53003,0.57 -3.12003,0.975 -4.77,1.215 -1.62002,0.24 -3.24002,0.36 -4.86,0.36 -2.85002,0 -5.53501,-0.525 -8.055,-1.575 -2.52001,-1.07999 -4.72501,-2.63999 -6.615,-4.68 -1.89,-2.03999 -3.39,-4.52999 -4.5,-7.47 -1.08,-2.96998 -1.62,-6.34498 -1.62,-10.125 0,-3.38997 0.48,-6.52497 1.44,-9.405 0.99,-2.90996 2.43,-5.41496 4.32,-7.515 1.88999,-2.12995 4.22999,-3.79495 7.02,-4.995 2.78999,-1.19995 5.99998,-1.79995 9.63,-1.8 3.44998,5e-5 6.46497,0.55505 9.045,1.665 2.60997,1.11005 4.94996,2.70005 7.02,4.77 l -2.925,4.05"
|
|
165
|
-
style="font-size:90px;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Lato;-inkscape-font-specification:Lato Bold"
|
|
166
|
-
id="path3007" />
|
|
167
|
-
<path
|
|
168
|
-
d="m 242.74143,426.44807 c 3.41997,5e-5 6.52496,0.55505 9.315,1.665 2.81996,1.11005 5.21996,2.68505 7.2,4.725 2.00995,2.04004 3.55495,4.53004 4.635,7.47 1.07995,2.94003 1.61995,6.22503 1.62,9.855 -5e-5,3.66002 -0.54005,6.96002 -1.62,9.9 -1.08005,2.94001 -2.62505,5.44501 -4.635,7.515 -1.98004,2.07001 -4.38004,3.66001 -7.2,4.77 -2.79004,1.11 -5.89503,1.665 -9.315,1.665 -3.45003,0 -6.58502,-0.555 -9.405,-1.665 -2.82002,-1.10999 -5.23501,-2.69999 -7.245,-4.77 -1.98001,-2.06999 -3.52501,-4.57499 -4.635,-7.515 -1.08001,-2.93998 -1.62001,-6.23998 -1.62,-9.9 -1e-5,-3.62997 0.53999,-6.91497 1.62,-9.855 1.10999,-2.93996 2.65499,-5.42996 4.635,-7.47 2.00999,-2.03995 4.42498,-3.61495 7.245,-4.725 2.81998,-1.10995 5.95497,-1.66495 9.405,-1.665 m 0,39.015 c 3.83997,10e-6 6.67496,-1.28999 8.505,-3.87 1.85996,-2.57998 2.78996,-6.35998 2.79,-11.34 -4e-5,-4.97997 -0.93004,-8.77496 -2.79,-11.385 -1.83004,-2.60996 -4.66503,-3.91496 -8.505,-3.915 -3.90003,4e-5 -6.79502,1.32004 -8.685,3.96 -1.86002,2.61004 -2.79002,6.39003 -2.79,11.34 -2e-5,4.95002 0.92998,8.73002 2.79,11.34 1.88998,2.58001 4.78497,3.87001 8.685,3.87"
|
|
169
|
-
style="font-size:90px;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Lato;-inkscape-font-specification:Lato Bold"
|
|
170
|
-
id="path3009" />
|
|
171
|
-
<path
|
|
172
|
-
d="m 273.99111,473.33807 0,-46.17 6.795,0 c 1.43999,5e-5 2.38499,0.67505 2.835,2.025 l 0.72,3.42 c 0.80999,-0.89995 1.64999,-1.72495 2.52,-2.475 0.89998,-0.74995 1.84498,-1.39495 2.835,-1.935 1.01998,-0.53995 2.09998,-0.95995 3.24,-1.26 1.16998,-0.32995 2.44498,-0.49495 3.825,-0.495 2.90997,5e-5 5.29497,0.79505 7.155,2.385 1.88997,1.56005 3.29997,3.64504 4.23,6.255 0.71996,-1.52996 1.61996,-2.83496 2.7,-3.915 1.07996,-1.10995 2.26496,-2.00995 3.555,-2.7 1.28996,-0.68995 2.65496,-1.19995 4.095,-1.53 1.46995,-0.32995 2.93995,-0.49495 4.41,-0.495 2.54995,5e-5 4.81494,0.39005 6.795,1.17 1.97994,0.78005 3.64494,1.92005 4.995,3.42 1.34994,1.50004 2.36994,3.33004 3.06,5.49 0.71993,2.16004 1.07993,4.63504 1.08,7.425 l 0,29.385 -11.115,0 0,-29.385 c -6e-5,-2.93996 -0.64505,-5.14496 -1.935,-6.615 -1.29005,-1.49996 -3.18005,-2.24996 -5.67,-2.25 -1.14005,4e-5 -2.20505,0.19504 -3.195,0.585 -0.96004,0.39004 -1.81504,0.96004 -2.565,1.71 -0.72004,0.72004 -1.29004,1.63504 -1.71,2.745 -0.42004,1.11004 -0.63004,2.38503 -0.63,3.825 l 0,29.385 -11.16,0 0,-29.385 c -3e-5,-3.08996 -0.63003,-5.33996 -1.89,-6.75 -1.23003,-1.40996 -3.04502,-2.11496 -5.445,-2.115 -1.62002,4e-5 -3.13502,0.40504 -4.545,1.215 -1.38002,0.78004 -2.67001,1.86004 -3.87,3.24 l 0,33.795 -11.115,0"
|
|
173
|
-
style="font-size:90px;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Lato;-inkscape-font-specification:Lato Bold"
|
|
174
|
-
id="path3011" />
|
|
175
|
-
<path
|
|
176
|
-
d="m 349.40127,488.41307 0,-61.245 6.795,0 c 1.43999,5e-5 2.38499,0.67505 2.835,2.025 l 0.9,4.275 c 1.85998,-2.12995 3.98998,-3.85495 6.39,-5.175 2.42998,-1.31995 5.26497,-1.97995 8.505,-1.98 2.51997,5e-5 4.81496,0.52505 6.885,1.575 2.09996,1.05005 3.89996,2.58005 5.4,4.59 1.52996,1.98004 2.69995,4.44004 3.51,7.38 0.83995,2.91003 1.25995,6.25503 1.26,10.035 -5e-5,3.45002 -0.46505,6.64502 -1.395,9.585 -0.93005,2.94001 -2.26504,5.49001 -4.005,7.65 -1.71004,2.16001 -3.79504,3.85501 -6.255,5.085 -2.43003,1.2 -5.16003,1.8 -8.19,1.8 -2.61003,0 -4.83002,-0.39 -6.66,-1.17 -1.80002,-0.80999 -3.42002,-1.91999 -4.86,-3.33 l 0,18.9 -11.115,0 m 21.6,-53.325 c -2.31002,4e-5 -4.29002,0.49504 -5.94,1.485 -1.62002,0.96004 -3.13502,2.32504 -4.545,4.095 l 0,20.7 c 1.25998,1.56001 2.62498,2.65501 4.095,3.285 1.49998,0.60001 3.11998,0.90001 4.86,0.9 1.67997,1e-5 3.19497,-0.31499 4.545,-0.945 1.34997,-0.62999 2.48997,-1.58999 3.42,-2.88 0.95997,-1.28998 1.69496,-2.90998 2.205,-4.86 0.50996,-1.97998 0.76496,-4.30498 0.765,-6.975 -4e-5,-2.69997 -0.22504,-4.97997 -0.675,-6.84 -0.42004,-1.88996 -1.03503,-3.41996 -1.845,-4.59 -0.81003,-1.16996 -1.80003,-2.02496 -2.97,-2.565 -1.14003,-0.53996 -2.44503,-0.80996 -3.915,-0.81"
|
|
177
|
-
style="font-size:90px;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Lato;-inkscape-font-specification:Lato Bold"
|
|
178
|
-
id="path3013" />
|
|
179
|
-
<path
|
|
180
|
-
d="m 420.98361,426.44807 c 3.41997,5e-5 6.52497,0.55505 9.315,1.665 2.81997,1.11005 5.21996,2.68505 7.2,4.725 2.00996,2.04004 3.55496,4.53004 4.635,7.47 1.07996,2.94003 1.61996,6.22503 1.62,9.855 -4e-5,3.66002 -0.54004,6.96002 -1.62,9.9 -1.08004,2.94001 -2.62504,5.44501 -4.635,7.515 -1.98004,2.07001 -4.38003,3.66001 -7.2,4.77 -2.79003,1.11 -5.89503,1.665 -9.315,1.665 -3.45002,0 -6.58502,-0.555 -9.405,-1.665 -2.82001,-1.10999 -5.23501,-2.69999 -7.245,-4.77 -1.98,-2.06999 -3.525,-4.57499 -4.635,-7.515 -1.08,-2.93998 -1.62,-6.23998 -1.62,-9.9 0,-3.62997 0.54,-6.91497 1.62,-9.855 1.11,-2.93996 2.655,-5.42996 4.635,-7.47 2.00999,-2.03995 4.42499,-3.61495 7.245,-4.725 2.81998,-1.10995 5.95498,-1.66495 9.405,-1.665 m 0,39.015 c 3.83997,10e-6 6.67497,-1.28999 8.505,-3.87 1.85997,-2.57998 2.78997,-6.35998 2.79,-11.34 -3e-5,-4.97997 -0.93003,-8.77496 -2.79,-11.385 -1.83003,-2.60996 -4.66503,-3.91496 -8.505,-3.915 -3.90002,4e-5 -6.79502,1.32004 -8.685,3.96 -1.86001,2.61004 -2.79001,6.39003 -2.79,11.34 -10e-6,4.95002 0.92999,8.73002 2.79,11.34 1.88998,2.58001 4.78498,3.87001 8.685,3.87"
|
|
181
|
-
style="font-size:90px;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Lato;-inkscape-font-specification:Lato Bold"
|
|
182
|
-
id="path3015" />
|
|
183
|
-
</g>
|
|
184
|
-
<g
|
|
185
|
-
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Sans"
|
|
186
|
-
id="text3947-4-8-1">
|
|
187
|
-
<path
|
|
188
|
-
d="m 486.71076,472.6759 c -0.78004,0 -1.23004,-0.39 -1.35,-1.17 l -0.45,-7.065 c -1.98004,2.70001 -4.29003,4.84501 -6.93,6.435 -2.64003,1.59 -5.61003,2.385 -8.91,2.385 -5.52002,0 -9.81001,-1.905 -12.87,-5.715 -3.06001,-3.80999 -4.59001,-9.52498 -4.59,-17.145 -1e-5,-3.26997 0.41999,-6.31497 1.26,-9.135 0.86999,-2.84996 2.12999,-5.30996 3.78,-7.38 1.64999,-2.09996 3.67499,-3.74995 6.075,-4.95 2.42998,-1.19995 5.21998,-1.79995 8.37,-1.8 3.02997,5e-5 5.65497,0.57005 7.875,1.71 2.21996,1.11005 4.15496,2.74504 5.805,4.905 l 0,-26.55 4.275,0 0,65.475 -2.34,0 m -16.425,-2.88 c 2.93997,10e-6 5.60997,-0.76499 8.01,-2.295 2.42997,-1.52999 4.58996,-3.67499 6.48,-6.435 l 0,-23.49 c -1.71004,-2.57996 -3.61504,-4.39496 -5.715,-5.445 -2.07003,-1.07996 -4.44003,-1.61995 -7.11,-1.62 -2.64002,5e-5 -4.95002,0.48005 -6.93,1.44 -1.98002,0.96004 -3.64502,2.32504 -4.995,4.095 -1.32001,1.74004 -2.32501,3.84004 -3.015,6.3 -0.66001,2.43003 -0.99001,5.11503 -0.99,8.055 -10e-6,6.66002 1.21499,11.56501 3.645,14.715 2.45998,3.12001 5.99998,4.68001 10.62,4.68"
|
|
189
|
-
style="font-size:90px;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Lato;-inkscape-font-specification:Lato Light"
|
|
190
|
-
id="path3018" />
|
|
191
|
-
<path
|
|
192
|
-
d="m 521.52107,427.1809 c 3.20997,5e-5 6.07497,0.55505 8.595,1.665 2.54997,1.08005 4.69496,2.62504 6.435,4.635 1.73996,2.01004 3.05996,4.44004 3.96,7.29 0.92996,2.82003 1.39496,5.98503 1.395,9.495 -4e-5,3.51002 -0.46504,6.67502 -1.395,9.495 -0.90004,2.82001 -2.22004,5.23501 -3.96,7.245 -1.74004,2.01001 -3.88503,3.55501 -6.435,4.635 -2.52003,1.08 -5.38503,1.62 -8.595,1.62 -3.21002,0 -6.09002,-0.54 -8.64,-1.62 -2.52001,-1.07999 -4.66501,-2.62499 -6.435,-4.635 -1.74001,-2.00999 -3.07501,-4.42499 -4.005,-7.245 -0.9,-2.81998 -1.35,-5.98498 -1.35,-9.495 0,-3.50997 0.45,-6.67497 1.35,-9.495 0.92999,-2.84996 2.26499,-5.27996 4.005,-7.29 1.76999,-2.00996 3.91499,-3.55495 6.435,-4.635 2.54998,-1.10995 5.42998,-1.66495 8.64,-1.665 m 0,42.705 c 2.66997,1e-5 4.99497,-0.44999 6.975,-1.35 2.00997,-0.92999 3.67497,-2.24999 4.995,-3.96 1.34996,-1.70999 2.35496,-3.76498 3.015,-6.165 0.65996,-2.42998 0.98996,-5.14498 0.99,-8.145 -4e-5,-2.96997 -0.33004,-5.66997 -0.99,-8.1 -0.66004,-2.42996 -1.66504,-4.49996 -3.015,-6.21 -1.32003,-1.73996 -2.98503,-3.07496 -4.995,-4.005 -1.98003,-0.92996 -4.30503,-1.39495 -6.975,-1.395 -2.67002,5e-5 -5.01002,0.46504 -7.02,1.395 -1.98001,0.93004 -3.64501,2.26504 -4.995,4.005 -1.32001,1.71004 -2.32501,3.78004 -3.015,6.21 -0.66001,2.43003 -0.99001,5.13003 -0.99,8.1 -1e-5,3.00002 0.32999,5.71502 0.99,8.145 0.68999,2.40002 1.69499,4.45501 3.015,6.165 1.34999,1.71001 3.01499,3.03001 4.995,3.96 2.00998,0.90001 4.34998,1.35001 7.02,1.35"
|
|
193
|
-
style="font-size:90px;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Lato;-inkscape-font-specification:Lato Light"
|
|
194
|
-
id="path3020" />
|
|
195
|
-
<path
|
|
196
|
-
d="m 584.16951,433.8859 c -0.15004,0.15004 -0.30004,0.28504 -0.45,0.405 -0.12004,0.09 -0.30004,0.13504 -0.54,0.135 -0.30004,4e-5 -0.70504,-0.19496 -1.215,-0.585 -0.51004,-0.41996 -1.20003,-0.86996 -2.07,-1.35 -0.87003,-0.47996 -1.96503,-0.91496 -3.285,-1.305 -1.29003,-0.41995 -2.86503,-0.62995 -4.725,-0.63 -2.58002,5e-5 -4.87502,0.46504 -6.885,1.395 -1.98002,0.90004 -3.66002,2.20504 -5.04,3.915 -1.38001,1.71004 -2.43001,3.78004 -3.15,6.21 -0.69001,2.43003 -1.03501,5.16003 -1.035,8.19 -10e-6,3.15002 0.35999,5.94002 1.08,8.37 0.74999,2.43001 1.79999,4.48501 3.15,6.165 1.34998,1.65001 2.98498,2.91001 4.905,3.78 1.91998,0.87001 4.04998,1.30501 6.39,1.305 2.15997,1e-5 3.95997,-0.25499 5.4,-0.765 1.46997,-0.50999 2.66997,-1.06499 3.6,-1.665 0.95996,-0.59999 1.70996,-1.15499 2.25,-1.665 0.53996,-0.50999 0.98996,-0.76499 1.35,-0.765 0.35996,1e-5 0.65996,0.15001 0.9,0.45 l 1.125,1.44 c -0.69004,0.90001 -1.56004,1.74001 -2.61,2.52 -1.05004,0.78001 -2.23504,1.45501 -3.555,2.025 -1.32003,0.57 -2.76003,1.005 -4.32,1.305 -1.53003,0.33 -3.13503,0.495 -4.815,0.495 -2.85002,0 -5.46002,-0.51 -7.83,-1.53 -2.34001,-1.04999 -4.36501,-2.54999 -6.075,-4.5 -1.68001,-1.97999 -3.00001,-4.39499 -3.96,-7.245 -0.93001,-2.84998 -1.39501,-6.08998 -1.395,-9.72 -10e-6,-3.41997 0.44999,-6.53997 1.35,-9.36 0.89999,-2.81996 2.21999,-5.24996 3.96,-7.29 1.73999,-2.03996 3.85499,-3.61495 6.345,-4.725 2.51998,-1.13995 5.39998,-1.70995 8.64,-1.71 2.90997,5e-5 5.48997,0.46505 7.74,1.395 2.24996,0.93005 4.21496,2.19005 5.895,3.78 l -1.125,1.53"
|
|
197
|
-
style="font-size:90px;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Lato;-inkscape-font-specification:Lato Light"
|
|
198
|
-
id="path3022" />
|
|
199
|
-
</g>
|
|
200
|
-
</g>
|
|
201
|
-
</svg>
|
|
Binary file
|
|
@@ -1,201 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
-
|
|
4
|
-
<svg
|
|
5
|
-
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
6
|
-
xmlns:cc="http://creativecommons.org/ns#"
|
|
7
|
-
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
8
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
9
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
10
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
11
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
-
width="542.98999"
|
|
13
|
-
height="542.98999"
|
|
14
|
-
id="svg2"
|
|
15
|
-
version="1.1"
|
|
16
|
-
inkscape:version="0.48.4 r9939"
|
|
17
|
-
sodipodi:docname="compodoc.svg"
|
|
18
|
-
inkscape:export-filename="/home/SII/vogloblinsky/Bureau/compodoc.png"
|
|
19
|
-
inkscape:export-xdpi="72"
|
|
20
|
-
inkscape:export-ydpi="72">
|
|
21
|
-
<defs
|
|
22
|
-
id="defs4" />
|
|
23
|
-
<sodipodi:namedview
|
|
24
|
-
id="base"
|
|
25
|
-
pagecolor="#ffffff"
|
|
26
|
-
bordercolor="#666666"
|
|
27
|
-
borderopacity="1.0"
|
|
28
|
-
inkscape:pageopacity="0.0"
|
|
29
|
-
inkscape:pageshadow="2"
|
|
30
|
-
inkscape:zoom="0.98994949"
|
|
31
|
-
inkscape:cx="394.86152"
|
|
32
|
-
inkscape:cy="152.29997"
|
|
33
|
-
inkscape:document-units="px"
|
|
34
|
-
inkscape:current-layer="layer1"
|
|
35
|
-
showgrid="false"
|
|
36
|
-
inkscape:window-width="1887"
|
|
37
|
-
inkscape:window-height="1056"
|
|
38
|
-
inkscape:window-x="1953"
|
|
39
|
-
inkscape:window-y="24"
|
|
40
|
-
inkscape:window-maximized="1"
|
|
41
|
-
fit-margin-top="0"
|
|
42
|
-
fit-margin-left="0"
|
|
43
|
-
fit-margin-right="0"
|
|
44
|
-
fit-margin-bottom="0" />
|
|
45
|
-
<metadata
|
|
46
|
-
id="metadata7">
|
|
47
|
-
<rdf:RDF>
|
|
48
|
-
<cc:Work
|
|
49
|
-
rdf:about="">
|
|
50
|
-
<dc:format>image/svg+xml</dc:format>
|
|
51
|
-
<dc:type
|
|
52
|
-
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
53
|
-
<dc:title></dc:title>
|
|
54
|
-
</cc:Work>
|
|
55
|
-
</rdf:RDF>
|
|
56
|
-
</metadata>
|
|
57
|
-
<g
|
|
58
|
-
inkscape:label="Calque 1"
|
|
59
|
-
inkscape:groupmode="layer"
|
|
60
|
-
id="layer1"
|
|
61
|
-
transform="translate(-109.30421,14.576914)">
|
|
62
|
-
<g
|
|
63
|
-
id="g3075"
|
|
64
|
-
transform="matrix(-0.34202014,0.93969262,-0.93969262,-0.34202014,789.34114,36.353292)">
|
|
65
|
-
<path
|
|
66
|
-
id="path254"
|
|
67
|
-
style="fill:#f03949;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
68
|
-
d="m 126.98485,359.06758 340,0 0,-65 -340,0 0,65 z"
|
|
69
|
-
inkscape:connector-curvature="0" />
|
|
70
|
-
<path
|
|
71
|
-
id="path256"
|
|
72
|
-
style="fill:#f78f22;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
73
|
-
d="m 306.35985,326.56758 c 0,-13.46125 -10.9125,-24.37375 -24.37375,-24.37375 -13.46125,0 -24.37375,10.9125 -24.37375,24.37375 0,13.46125 10.9125,24.37375 24.37375,24.37375 13.46125,0 24.37375,-10.9125 24.37375,-24.37375"
|
|
74
|
-
inkscape:connector-curvature="0" />
|
|
75
|
-
<path
|
|
76
|
-
id="path266"
|
|
77
|
-
style="fill:#1a3a5c;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
78
|
-
d="m 173.23485,359.06758 28.75,0 0,-65 -28.75,0 0,65 z"
|
|
79
|
-
inkscape:connector-curvature="0" />
|
|
80
|
-
<path
|
|
81
|
-
sodipodi:nodetypes="ccccccccccccccccccsccccc"
|
|
82
|
-
id="path268"
|
|
83
|
-
style="fill:#e73440;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
84
|
-
d="m 466.98485,326.56758 -27.5,0 0,-32.5 27.5,0 0,32.5 m -41.25,0 -38.78935,0.25254 -1.26269,-32.24746 62.02286,1.01015 -2.77792,31.23731 m -57.9429,-0.25254 -10,0 0,-32.5 10,0 0,32.5 m -23.75,0 -56.875,0 0,0 c 0,-13.46125 -10.9125,-24.37375 -24.37375,-24.37375 -13.46125,0 -24.37375,10.9125 -24.37375,24.37375 l -55.6275,0 0,-32.5 176.40229,0.25254 1.01015,32.5"
|
|
85
|
-
inkscape:connector-curvature="0" />
|
|
86
|
-
<path
|
|
87
|
-
id="path258"
|
|
88
|
-
style="fill:#3f1928;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
89
|
-
d="m 383.23485,359.06758 13.75,0 0,-65 -13.75,0 0,65 z"
|
|
90
|
-
inkscape:connector-curvature="0" />
|
|
91
|
-
<path
|
|
92
|
-
id="path260"
|
|
93
|
-
style="fill:#3f1928;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
94
|
-
d="m 405.73485,359.06758 13.75,0 0,-65 -13.75,0 0,65 z"
|
|
95
|
-
inkscape:connector-curvature="0" />
|
|
96
|
-
<path
|
|
97
|
-
id="path278"
|
|
98
|
-
style="fill:#e73440;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
99
|
-
d="m 173.23485,326.56758 -7.5,0 0,-32.5 7.5,0 0,32.5 m -21.25,0 -25,0 0,-32.5 25,0 0,32.5"
|
|
100
|
-
inkscape:connector-curvature="0" />
|
|
101
|
-
<path
|
|
102
|
-
id="path280"
|
|
103
|
-
style="fill:#e73440;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
104
|
-
d="m 151.98485,326.56758 13.75,0 0,-32.5 -13.75,0 0,32.5 z"
|
|
105
|
-
inkscape:connector-curvature="0" />
|
|
106
|
-
<path
|
|
107
|
-
id="path282"
|
|
108
|
-
style="fill:#183452;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
|
109
|
-
d="m 173.23485,326.56758 28.75,0 0,-32.5 -28.75,0 0,32.5 z"
|
|
110
|
-
inkscape:connector-curvature="0" />
|
|
111
|
-
</g>
|
|
112
|
-
<g
|
|
113
|
-
id="g3914"
|
|
114
|
-
transform="translate(16.162441,0.605492)">
|
|
115
|
-
<rect
|
|
116
|
-
transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)"
|
|
117
|
-
style="fill:#5cc0ae;fill-opacity:1"
|
|
118
|
-
y="209.84224"
|
|
119
|
-
x="-77.023102"
|
|
120
|
-
height="44.285713"
|
|
121
|
-
width="180"
|
|
122
|
-
id="rect3090" />
|
|
123
|
-
<rect
|
|
124
|
-
transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)"
|
|
125
|
-
style="fill:#f1c40f;fill-opacity:1"
|
|
126
|
-
y="33.689053"
|
|
127
|
-
x="209.69711"
|
|
128
|
-
height="44.285713"
|
|
129
|
-
width="180"
|
|
130
|
-
id="rect3090-7-2" />
|
|
131
|
-
</g>
|
|
132
|
-
<g
|
|
133
|
-
id="g3919"
|
|
134
|
-
transform="translate(-2.0203046,-106.78207)">
|
|
135
|
-
<path
|
|
136
|
-
inkscape:connector-curvature="0"
|
|
137
|
-
id="rect3090-7-2-4"
|
|
138
|
-
d="m 623.00576,279.17227 -127.28125,127.28125 31.3125,31.3125 127.28125,-127.28125 -31.3125,-31.3125 z"
|
|
139
|
-
style="fill:#f03949;fill-opacity:1" />
|
|
140
|
-
<rect
|
|
141
|
-
transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)"
|
|
142
|
-
style="fill:#3498db;fill-opacity:1"
|
|
143
|
-
y="-242.99538"
|
|
144
|
-
x="502.17584"
|
|
145
|
-
height="44.285713"
|
|
146
|
-
width="180"
|
|
147
|
-
id="rect3090-7" />
|
|
148
|
-
</g>
|
|
149
|
-
<flowRoot
|
|
150
|
-
xml:space="preserve"
|
|
151
|
-
id="flowRoot3935"
|
|
152
|
-
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
|
153
|
-
transform="translate(109.30421,32.871674)"><flowRegion
|
|
154
|
-
id="flowRegion3937"><rect
|
|
155
|
-
id="rect3939"
|
|
156
|
-
width="355.5737"
|
|
157
|
-
height="240.41631"
|
|
158
|
-
x="331.33005"
|
|
159
|
-
y="610.32037" /></flowRegion><flowPara
|
|
160
|
-
id="flowPara3941" /></flowRoot> <g
|
|
161
|
-
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
|
162
|
-
id="text3943-1-6-0">
|
|
163
|
-
<path
|
|
164
|
-
d="m 212.84736,436.93307 c -0.33003,0.42004 -0.66003,0.75004 -0.99,0.99 -0.30003,0.24004 -0.75003,0.36004 -1.35,0.36 -0.57003,4e-5 -1.12503,-0.16496 -1.665,-0.495 -0.54003,-0.35996 -1.18503,-0.74996 -1.935,-1.17 -0.75003,-0.44996 -1.65003,-0.83996 -2.7,-1.17 -1.02003,-0.35996 -2.29502,-0.53996 -3.825,-0.54 -1.95002,4e-5 -3.66002,0.36004 -5.13,1.08 -1.47002,0.69004 -2.70001,1.69504 -3.69,3.015 -0.96001,1.32004 -1.68001,2.92504 -2.16,4.815 -0.48001,1.86003 -0.72001,3.97503 -0.72,6.345 -10e-6,2.46002 0.25499,4.65002 0.765,6.57 0.53999,1.92002 1.30499,3.54002 2.295,4.86 0.98999,1.29001 2.18998,2.28001 3.6,2.97 1.40998,0.66001 2.99998,0.99001 4.77,0.99 1.76998,1e-5 3.19497,-0.20999 4.275,-0.63 1.10997,-0.44999 2.03997,-0.92999 2.79,-1.44 0.74997,-0.53999 1.39497,-1.01999 1.935,-1.44 0.56997,-0.44998 1.19997,-0.67498 1.89,-0.675 0.89997,2e-5 1.57497,0.34502 2.025,1.035 l 3.195,4.05 c -1.23004,1.44001 -2.56504,2.65501 -4.005,3.645 -1.44003,0.96001 -2.94003,1.74001 -4.5,2.34 -1.53003,0.57 -3.12003,0.975 -4.77,1.215 -1.62002,0.24 -3.24002,0.36 -4.86,0.36 -2.85002,0 -5.53501,-0.525 -8.055,-1.575 -2.52001,-1.07999 -4.72501,-2.63999 -6.615,-4.68 -1.89,-2.03999 -3.39,-4.52999 -4.5,-7.47 -1.08,-2.96998 -1.62,-6.34498 -1.62,-10.125 0,-3.38997 0.48,-6.52497 1.44,-9.405 0.99,-2.90996 2.43,-5.41496 4.32,-7.515 1.88999,-2.12995 4.22999,-3.79495 7.02,-4.995 2.78999,-1.19995 5.99998,-1.79995 9.63,-1.8 3.44998,5e-5 6.46497,0.55505 9.045,1.665 2.60997,1.11005 4.94996,2.70005 7.02,4.77 l -2.925,4.05"
|
|
165
|
-
style="font-size:90px;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Lato;-inkscape-font-specification:Lato Bold"
|
|
166
|
-
id="path3007" />
|
|
167
|
-
<path
|
|
168
|
-
d="m 242.74143,426.44807 c 3.41997,5e-5 6.52496,0.55505 9.315,1.665 2.81996,1.11005 5.21996,2.68505 7.2,4.725 2.00995,2.04004 3.55495,4.53004 4.635,7.47 1.07995,2.94003 1.61995,6.22503 1.62,9.855 -5e-5,3.66002 -0.54005,6.96002 -1.62,9.9 -1.08005,2.94001 -2.62505,5.44501 -4.635,7.515 -1.98004,2.07001 -4.38004,3.66001 -7.2,4.77 -2.79004,1.11 -5.89503,1.665 -9.315,1.665 -3.45003,0 -6.58502,-0.555 -9.405,-1.665 -2.82002,-1.10999 -5.23501,-2.69999 -7.245,-4.77 -1.98001,-2.06999 -3.52501,-4.57499 -4.635,-7.515 -1.08001,-2.93998 -1.62001,-6.23998 -1.62,-9.9 -1e-5,-3.62997 0.53999,-6.91497 1.62,-9.855 1.10999,-2.93996 2.65499,-5.42996 4.635,-7.47 2.00999,-2.03995 4.42498,-3.61495 7.245,-4.725 2.81998,-1.10995 5.95497,-1.66495 9.405,-1.665 m 0,39.015 c 3.83997,10e-6 6.67496,-1.28999 8.505,-3.87 1.85996,-2.57998 2.78996,-6.35998 2.79,-11.34 -4e-5,-4.97997 -0.93004,-8.77496 -2.79,-11.385 -1.83004,-2.60996 -4.66503,-3.91496 -8.505,-3.915 -3.90003,4e-5 -6.79502,1.32004 -8.685,3.96 -1.86002,2.61004 -2.79002,6.39003 -2.79,11.34 -2e-5,4.95002 0.92998,8.73002 2.79,11.34 1.88998,2.58001 4.78497,3.87001 8.685,3.87"
|
|
169
|
-
style="font-size:90px;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Lato;-inkscape-font-specification:Lato Bold"
|
|
170
|
-
id="path3009" />
|
|
171
|
-
<path
|
|
172
|
-
d="m 273.99111,473.33807 0,-46.17 6.795,0 c 1.43999,5e-5 2.38499,0.67505 2.835,2.025 l 0.72,3.42 c 0.80999,-0.89995 1.64999,-1.72495 2.52,-2.475 0.89998,-0.74995 1.84498,-1.39495 2.835,-1.935 1.01998,-0.53995 2.09998,-0.95995 3.24,-1.26 1.16998,-0.32995 2.44498,-0.49495 3.825,-0.495 2.90997,5e-5 5.29497,0.79505 7.155,2.385 1.88997,1.56005 3.29997,3.64504 4.23,6.255 0.71996,-1.52996 1.61996,-2.83496 2.7,-3.915 1.07996,-1.10995 2.26496,-2.00995 3.555,-2.7 1.28996,-0.68995 2.65496,-1.19995 4.095,-1.53 1.46995,-0.32995 2.93995,-0.49495 4.41,-0.495 2.54995,5e-5 4.81494,0.39005 6.795,1.17 1.97994,0.78005 3.64494,1.92005 4.995,3.42 1.34994,1.50004 2.36994,3.33004 3.06,5.49 0.71993,2.16004 1.07993,4.63504 1.08,7.425 l 0,29.385 -11.115,0 0,-29.385 c -6e-5,-2.93996 -0.64505,-5.14496 -1.935,-6.615 -1.29005,-1.49996 -3.18005,-2.24996 -5.67,-2.25 -1.14005,4e-5 -2.20505,0.19504 -3.195,0.585 -0.96004,0.39004 -1.81504,0.96004 -2.565,1.71 -0.72004,0.72004 -1.29004,1.63504 -1.71,2.745 -0.42004,1.11004 -0.63004,2.38503 -0.63,3.825 l 0,29.385 -11.16,0 0,-29.385 c -3e-5,-3.08996 -0.63003,-5.33996 -1.89,-6.75 -1.23003,-1.40996 -3.04502,-2.11496 -5.445,-2.115 -1.62002,4e-5 -3.13502,0.40504 -4.545,1.215 -1.38002,0.78004 -2.67001,1.86004 -3.87,3.24 l 0,33.795 -11.115,0"
|
|
173
|
-
style="font-size:90px;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Lato;-inkscape-font-specification:Lato Bold"
|
|
174
|
-
id="path3011" />
|
|
175
|
-
<path
|
|
176
|
-
d="m 349.40127,488.41307 0,-61.245 6.795,0 c 1.43999,5e-5 2.38499,0.67505 2.835,2.025 l 0.9,4.275 c 1.85998,-2.12995 3.98998,-3.85495 6.39,-5.175 2.42998,-1.31995 5.26497,-1.97995 8.505,-1.98 2.51997,5e-5 4.81496,0.52505 6.885,1.575 2.09996,1.05005 3.89996,2.58005 5.4,4.59 1.52996,1.98004 2.69995,4.44004 3.51,7.38 0.83995,2.91003 1.25995,6.25503 1.26,10.035 -5e-5,3.45002 -0.46505,6.64502 -1.395,9.585 -0.93005,2.94001 -2.26504,5.49001 -4.005,7.65 -1.71004,2.16001 -3.79504,3.85501 -6.255,5.085 -2.43003,1.2 -5.16003,1.8 -8.19,1.8 -2.61003,0 -4.83002,-0.39 -6.66,-1.17 -1.80002,-0.80999 -3.42002,-1.91999 -4.86,-3.33 l 0,18.9 -11.115,0 m 21.6,-53.325 c -2.31002,4e-5 -4.29002,0.49504 -5.94,1.485 -1.62002,0.96004 -3.13502,2.32504 -4.545,4.095 l 0,20.7 c 1.25998,1.56001 2.62498,2.65501 4.095,3.285 1.49998,0.60001 3.11998,0.90001 4.86,0.9 1.67997,1e-5 3.19497,-0.31499 4.545,-0.945 1.34997,-0.62999 2.48997,-1.58999 3.42,-2.88 0.95997,-1.28998 1.69496,-2.90998 2.205,-4.86 0.50996,-1.97998 0.76496,-4.30498 0.765,-6.975 -4e-5,-2.69997 -0.22504,-4.97997 -0.675,-6.84 -0.42004,-1.88996 -1.03503,-3.41996 -1.845,-4.59 -0.81003,-1.16996 -1.80003,-2.02496 -2.97,-2.565 -1.14003,-0.53996 -2.44503,-0.80996 -3.915,-0.81"
|
|
177
|
-
style="font-size:90px;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Lato;-inkscape-font-specification:Lato Bold"
|
|
178
|
-
id="path3013" />
|
|
179
|
-
<path
|
|
180
|
-
d="m 420.98361,426.44807 c 3.41997,5e-5 6.52497,0.55505 9.315,1.665 2.81997,1.11005 5.21996,2.68505 7.2,4.725 2.00996,2.04004 3.55496,4.53004 4.635,7.47 1.07996,2.94003 1.61996,6.22503 1.62,9.855 -4e-5,3.66002 -0.54004,6.96002 -1.62,9.9 -1.08004,2.94001 -2.62504,5.44501 -4.635,7.515 -1.98004,2.07001 -4.38003,3.66001 -7.2,4.77 -2.79003,1.11 -5.89503,1.665 -9.315,1.665 -3.45002,0 -6.58502,-0.555 -9.405,-1.665 -2.82001,-1.10999 -5.23501,-2.69999 -7.245,-4.77 -1.98,-2.06999 -3.525,-4.57499 -4.635,-7.515 -1.08,-2.93998 -1.62,-6.23998 -1.62,-9.9 0,-3.62997 0.54,-6.91497 1.62,-9.855 1.11,-2.93996 2.655,-5.42996 4.635,-7.47 2.00999,-2.03995 4.42499,-3.61495 7.245,-4.725 2.81998,-1.10995 5.95498,-1.66495 9.405,-1.665 m 0,39.015 c 3.83997,10e-6 6.67497,-1.28999 8.505,-3.87 1.85997,-2.57998 2.78997,-6.35998 2.79,-11.34 -3e-5,-4.97997 -0.93003,-8.77496 -2.79,-11.385 -1.83003,-2.60996 -4.66503,-3.91496 -8.505,-3.915 -3.90002,4e-5 -6.79502,1.32004 -8.685,3.96 -1.86001,2.61004 -2.79001,6.39003 -2.79,11.34 -10e-6,4.95002 0.92999,8.73002 2.79,11.34 1.88998,2.58001 4.78498,3.87001 8.685,3.87"
|
|
181
|
-
style="font-size:90px;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Lato;-inkscape-font-specification:Lato Bold"
|
|
182
|
-
id="path3015" />
|
|
183
|
-
</g>
|
|
184
|
-
<g
|
|
185
|
-
style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
|
|
186
|
-
id="text3947-4-8-1">
|
|
187
|
-
<path
|
|
188
|
-
d="m 486.71076,472.6759 c -0.78004,0 -1.23004,-0.39 -1.35,-1.17 l -0.45,-7.065 c -1.98004,2.70001 -4.29003,4.84501 -6.93,6.435 -2.64003,1.59 -5.61003,2.385 -8.91,2.385 -5.52002,0 -9.81001,-1.905 -12.87,-5.715 -3.06001,-3.80999 -4.59001,-9.52498 -4.59,-17.145 -1e-5,-3.26997 0.41999,-6.31497 1.26,-9.135 0.86999,-2.84996 2.12999,-5.30996 3.78,-7.38 1.64999,-2.09996 3.67499,-3.74995 6.075,-4.95 2.42998,-1.19995 5.21998,-1.79995 8.37,-1.8 3.02997,5e-5 5.65497,0.57005 7.875,1.71 2.21996,1.11005 4.15496,2.74504 5.805,4.905 l 0,-26.55 4.275,0 0,65.475 -2.34,0 m -16.425,-2.88 c 2.93997,10e-6 5.60997,-0.76499 8.01,-2.295 2.42997,-1.52999 4.58996,-3.67499 6.48,-6.435 l 0,-23.49 c -1.71004,-2.57996 -3.61504,-4.39496 -5.715,-5.445 -2.07003,-1.07996 -4.44003,-1.61995 -7.11,-1.62 -2.64002,5e-5 -4.95002,0.48005 -6.93,1.44 -1.98002,0.96004 -3.64502,2.32504 -4.995,4.095 -1.32001,1.74004 -2.32501,3.84004 -3.015,6.3 -0.66001,2.43003 -0.99001,5.11503 -0.99,8.055 -10e-6,6.66002 1.21499,11.56501 3.645,14.715 2.45998,3.12001 5.99998,4.68001 10.62,4.68"
|
|
189
|
-
style="font-size:90px;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Lato;-inkscape-font-specification:Lato Light"
|
|
190
|
-
id="path3018" />
|
|
191
|
-
<path
|
|
192
|
-
d="m 521.52107,427.1809 c 3.20997,5e-5 6.07497,0.55505 8.595,1.665 2.54997,1.08005 4.69496,2.62504 6.435,4.635 1.73996,2.01004 3.05996,4.44004 3.96,7.29 0.92996,2.82003 1.39496,5.98503 1.395,9.495 -4e-5,3.51002 -0.46504,6.67502 -1.395,9.495 -0.90004,2.82001 -2.22004,5.23501 -3.96,7.245 -1.74004,2.01001 -3.88503,3.55501 -6.435,4.635 -2.52003,1.08 -5.38503,1.62 -8.595,1.62 -3.21002,0 -6.09002,-0.54 -8.64,-1.62 -2.52001,-1.07999 -4.66501,-2.62499 -6.435,-4.635 -1.74001,-2.00999 -3.07501,-4.42499 -4.005,-7.245 -0.9,-2.81998 -1.35,-5.98498 -1.35,-9.495 0,-3.50997 0.45,-6.67497 1.35,-9.495 0.92999,-2.84996 2.26499,-5.27996 4.005,-7.29 1.76999,-2.00996 3.91499,-3.55495 6.435,-4.635 2.54998,-1.10995 5.42998,-1.66495 8.64,-1.665 m 0,42.705 c 2.66997,1e-5 4.99497,-0.44999 6.975,-1.35 2.00997,-0.92999 3.67497,-2.24999 4.995,-3.96 1.34996,-1.70999 2.35496,-3.76498 3.015,-6.165 0.65996,-2.42998 0.98996,-5.14498 0.99,-8.145 -4e-5,-2.96997 -0.33004,-5.66997 -0.99,-8.1 -0.66004,-2.42996 -1.66504,-4.49996 -3.015,-6.21 -1.32003,-1.73996 -2.98503,-3.07496 -4.995,-4.005 -1.98003,-0.92996 -4.30503,-1.39495 -6.975,-1.395 -2.67002,5e-5 -5.01002,0.46504 -7.02,1.395 -1.98001,0.93004 -3.64501,2.26504 -4.995,4.005 -1.32001,1.71004 -2.32501,3.78004 -3.015,6.21 -0.66001,2.43003 -0.99001,5.13003 -0.99,8.1 -1e-5,3.00002 0.32999,5.71502 0.99,8.145 0.68999,2.40002 1.69499,4.45501 3.015,6.165 1.34999,1.71001 3.01499,3.03001 4.995,3.96 2.00998,0.90001 4.34998,1.35001 7.02,1.35"
|
|
193
|
-
style="font-size:90px;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Lato;-inkscape-font-specification:Lato Light"
|
|
194
|
-
id="path3020" />
|
|
195
|
-
<path
|
|
196
|
-
d="m 584.16951,433.8859 c -0.15004,0.15004 -0.30004,0.28504 -0.45,0.405 -0.12004,0.09 -0.30004,0.13504 -0.54,0.135 -0.30004,4e-5 -0.70504,-0.19496 -1.215,-0.585 -0.51004,-0.41996 -1.20003,-0.86996 -2.07,-1.35 -0.87003,-0.47996 -1.96503,-0.91496 -3.285,-1.305 -1.29003,-0.41995 -2.86503,-0.62995 -4.725,-0.63 -2.58002,5e-5 -4.87502,0.46504 -6.885,1.395 -1.98002,0.90004 -3.66002,2.20504 -5.04,3.915 -1.38001,1.71004 -2.43001,3.78004 -3.15,6.21 -0.69001,2.43003 -1.03501,5.16003 -1.035,8.19 -10e-6,3.15002 0.35999,5.94002 1.08,8.37 0.74999,2.43001 1.79999,4.48501 3.15,6.165 1.34998,1.65001 2.98498,2.91001 4.905,3.78 1.91998,0.87001 4.04998,1.30501 6.39,1.305 2.15997,1e-5 3.95997,-0.25499 5.4,-0.765 1.46997,-0.50999 2.66997,-1.06499 3.6,-1.665 0.95996,-0.59999 1.70996,-1.15499 2.25,-1.665 0.53996,-0.50999 0.98996,-0.76499 1.35,-0.765 0.35996,1e-5 0.65996,0.15001 0.9,0.45 l 1.125,1.44 c -0.69004,0.90001 -1.56004,1.74001 -2.61,2.52 -1.05004,0.78001 -2.23504,1.45501 -3.555,2.025 -1.32003,0.57 -2.76003,1.005 -4.32,1.305 -1.53003,0.33 -3.13503,0.495 -4.815,0.495 -2.85002,0 -5.46002,-0.51 -7.83,-1.53 -2.34001,-1.04999 -4.36501,-2.54999 -6.075,-4.5 -1.68001,-1.97999 -3.00001,-4.39499 -3.96,-7.245 -0.93001,-2.84998 -1.39501,-6.08998 -1.395,-9.72 -10e-6,-3.41997 0.44999,-6.53997 1.35,-9.36 0.89999,-2.81996 2.21999,-5.24996 3.96,-7.29 1.73999,-2.03996 3.85499,-3.61495 6.345,-4.725 2.51998,-1.13995 5.39998,-1.70995 8.64,-1.71 2.90997,5e-5 5.48997,0.46505 7.74,1.395 2.24996,0.93005 4.21496,2.19005 5.895,3.78 l -1.125,1.53"
|
|
197
|
-
style="font-size:90px;font-variant:normal;font-weight:300;font-stretch:normal;font-family:Lato;-inkscape-font-specification:Lato Light"
|
|
198
|
-
id="path3022" />
|
|
199
|
-
</g>
|
|
200
|
-
</g>
|
|
201
|
-
</svg>
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<svg width="135" height="20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g>
|
|
3
|
-
<rect id="svg_1" height="20" width="130" y="0" x="0" stroke-width="1.5" stroke="#5d5d5d" fill="#5d5d5d" rx="7" ry="7"/>
|
|
4
|
-
<rect id="svg_2" height="20" width="40" y="0" x="92" stroke-width="1.5" stroke="#d8604b" fill="#d8604b" rx="7" ry="7"/>
|
|
5
|
-
<rect id="svg_3" height="20" width="22" y="0" x="92" stroke-width="1.5" stroke="#d8604b" fill="#d8604b"/>
|
|
6
|
-
<text xml:space="preserve" text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="12" id="svg_4" y="14" x="6" stroke-width="0" stroke="#5d5d5d" fill="#ffffff">documentation</text>
|
|
7
|
-
<text xml:space="preserve" text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="12" id="svg_5" y="14" x="112" stroke-width="0" stroke="#5d5d5d" fill="#ffffff" style="text-anchor: middle">14%</text>
|
|
8
|
-
</g>
|
|
9
|
-
</svg>
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<svg width="135" height="20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g>
|
|
3
|
-
<rect id="svg_1" height="20" width="130" y="0" x="0" stroke-width="1.5" stroke="#5d5d5d" fill="#5d5d5d" rx="7" ry="7"/>
|
|
4
|
-
<rect id="svg_2" height="20" width="40" y="0" x="92" stroke-width="1.5" stroke="#d8604b" fill="#d8604b" rx="7" ry="7"/>
|
|
5
|
-
<rect id="svg_3" height="20" width="22" y="0" x="92" stroke-width="1.5" stroke="#d8604b" fill="#d8604b"/>
|
|
6
|
-
<text xml:space="preserve" text-anchor="start" font-family="Helvetica, Arial, sans-serif" font-size="12" id="svg_4" y="14" x="6" stroke-width="0" stroke="#5d5d5d" fill="#ffffff">documentation</text>
|
|
7
|
-
<text xml:space="preserve" text-anchor="middle" font-family="Helvetica, Arial, sans-serif" font-size="12" id="svg_5" y="14" x="112" stroke-width="0" stroke="#5d5d5d" fill="#ffffff" style="text-anchor: middle">14%</text>
|
|
8
|
-
</g>
|
|
9
|
-
</svg>
|
package/docs/images/favicon.ico
DELETED
|
Binary file
|