@edge-zuq/core 1.2.7
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/LICENSE +20 -0
- package/README.md +99 -0
- package/lib/module/assets/logo.png +0 -0
- package/lib/module/data/errors/http-client-error.js +14 -0
- package/lib/module/data/errors/http-client-error.js.map +1 -0
- package/lib/module/data/errors/index.js +6 -0
- package/lib/module/data/errors/index.js.map +1 -0
- package/lib/module/data/errors/save-file-error.js +9 -0
- package/lib/module/data/errors/save-file-error.js.map +1 -0
- package/lib/module/data/errors/unsupported-platform.js +9 -0
- package/lib/module/data/errors/unsupported-platform.js.map +1 -0
- package/lib/module/data/models/index.js +6 -0
- package/lib/module/data/models/index.js.map +1 -0
- package/lib/module/data/models/remote-get-comment-list-model.js +2 -0
- package/lib/module/data/models/remote-get-comment-list-model.js.map +1 -0
- package/lib/module/data/models/remote-get-image-list-model.js +2 -0
- package/lib/module/data/models/remote-get-image-list-model.js.map +1 -0
- package/lib/module/data/models/remote-user-model.js +2 -0
- package/lib/module/data/models/remote-user-model.js.map +1 -0
- package/lib/module/data/protocols/cookie-manager.js +2 -0
- package/lib/module/data/protocols/cookie-manager.js.map +1 -0
- package/lib/module/data/protocols/download-manager.js +4 -0
- package/lib/module/data/protocols/download-manager.js.map +1 -0
- package/lib/module/data/protocols/http-client.js +26 -0
- package/lib/module/data/protocols/http-client.js.map +1 -0
- package/lib/module/data/protocols/index.js +9 -0
- package/lib/module/data/protocols/index.js.map +1 -0
- package/lib/module/data/protocols/notification-manager.js +4 -0
- package/lib/module/data/protocols/notification-manager.js.map +1 -0
- package/lib/module/data/protocols/permission-manager.js +4 -0
- package/lib/module/data/protocols/permission-manager.js.map +1 -0
- package/lib/module/data/protocols/storage.js +4 -0
- package/lib/module/data/protocols/storage.js.map +1 -0
- package/lib/module/data/use-cases/index.js +6 -0
- package/lib/module/data/use-cases/index.js.map +1 -0
- package/lib/module/data/use-cases/remote-get-comment-list.js +29 -0
- package/lib/module/data/use-cases/remote-get-comment-list.js.map +1 -0
- package/lib/module/data/use-cases/remote-get-image-list.js +32 -0
- package/lib/module/data/use-cases/remote-get-image-list.js.map +1 -0
- package/lib/module/data/use-cases/remote-send-diagnostics.js +20 -0
- package/lib/module/data/use-cases/remote-send-diagnostics.js.map +1 -0
- package/lib/module/domain/errors/authentication-expired-error.js +9 -0
- package/lib/module/domain/errors/authentication-expired-error.js.map +1 -0
- package/lib/module/domain/errors/index.js +7 -0
- package/lib/module/domain/errors/index.js.map +1 -0
- package/lib/module/domain/errors/internal-server-error.js +9 -0
- package/lib/module/domain/errors/internal-server-error.js.map +1 -0
- package/lib/module/domain/errors/invalid-credentials-error.js +9 -0
- package/lib/module/domain/errors/invalid-credentials-error.js.map +1 -0
- package/lib/module/domain/errors/no-app-permission-error.js +9 -0
- package/lib/module/domain/errors/no-app-permission-error.js.map +1 -0
- package/lib/module/domain/models/get-comment-list-model.js +2 -0
- package/lib/module/domain/models/get-comment-list-model.js.map +1 -0
- package/lib/module/domain/models/get-image-list-model.js +2 -0
- package/lib/module/domain/models/get-image-list-model.js.map +1 -0
- package/lib/module/domain/models/index.js +6 -0
- package/lib/module/domain/models/index.js.map +1 -0
- package/lib/module/domain/models/user-model.js +2 -0
- package/lib/module/domain/models/user-model.js.map +1 -0
- package/lib/module/domain/use-cases/get-comment-list.js +4 -0
- package/lib/module/domain/use-cases/get-comment-list.js.map +1 -0
- package/lib/module/domain/use-cases/get-image-list.js +4 -0
- package/lib/module/domain/use-cases/get-image-list.js.map +1 -0
- package/lib/module/domain/use-cases/index.js +9 -0
- package/lib/module/domain/use-cases/index.js.map +1 -0
- package/lib/module/domain/use-cases/record-request.js +4 -0
- package/lib/module/domain/use-cases/record-request.js.map +1 -0
- package/lib/module/domain/use-cases/send-diagnostics.js +4 -0
- package/lib/module/domain/use-cases/send-diagnostics.js.map +1 -0
- package/lib/module/domain/use-cases/user-authentication.js +4 -0
- package/lib/module/domain/use-cases/user-authentication.js.map +1 -0
- package/lib/module/domain/use-cases/user-logout.js +4 -0
- package/lib/module/domain/use-cases/user-logout.js.map +1 -0
- package/lib/module/index.js +16 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/infra/axios-http-client-adapter.js +199 -0
- package/lib/module/infra/axios-http-client-adapter.js.map +1 -0
- package/lib/module/infra/index.js +10 -0
- package/lib/module/infra/index.js.map +1 -0
- package/lib/module/infra/isomorphic-id-manager.js +83 -0
- package/lib/module/infra/isomorphic-id-manager.js.map +1 -0
- package/lib/module/infra/mmkv-storage-adapter.js +62 -0
- package/lib/module/infra/mmkv-storage-adapter.js.map +1 -0
- package/lib/module/infra/notifee-notification-manager-adapter.js +69 -0
- package/lib/module/infra/notifee-notification-manager-adapter.js.map +1 -0
- package/lib/module/infra/offline-mutation-queue.js +210 -0
- package/lib/module/infra/offline-mutation-queue.js.map +1 -0
- package/lib/module/infra/rnbu-download-manager-adapter.js +31 -0
- package/lib/module/infra/rnbu-download-manager-adapter.js.map +1 -0
- package/lib/module/infra/rnp-permission-manager-adapter.js +117 -0
- package/lib/module/infra/rnp-permission-manager-adapter.js.map +1 -0
- package/lib/module/infra/storage-cookie-manager-adapter.js +24 -0
- package/lib/module/infra/storage-cookie-manager-adapter.js.map +1 -0
- package/lib/module/main/components/index.js +7 -0
- package/lib/module/main/components/index.js.map +1 -0
- package/lib/module/main/components/request-permissions.js +14 -0
- package/lib/module/main/components/request-permissions.js.map +1 -0
- package/lib/module/main/factories/infra/download-manager-factory.js +7 -0
- package/lib/module/main/factories/infra/download-manager-factory.js.map +1 -0
- package/lib/module/main/factories/infra/http-client-factory.js +7 -0
- package/lib/module/main/factories/infra/http-client-factory.js.map +1 -0
- package/lib/module/main/factories/infra/index.js +10 -0
- package/lib/module/main/factories/infra/index.js.map +1 -0
- package/lib/module/main/factories/infra/isomorphic-id-manager-factory.js +7 -0
- package/lib/module/main/factories/infra/isomorphic-id-manager-factory.js.map +1 -0
- package/lib/module/main/factories/infra/notification-manager-factory.js +7 -0
- package/lib/module/main/factories/infra/notification-manager-factory.js.map +1 -0
- package/lib/module/main/factories/infra/offline-mutation-queue-factory.js +7 -0
- package/lib/module/main/factories/infra/offline-mutation-queue-factory.js.map +1 -0
- package/lib/module/main/factories/infra/permission-manager-factory.js +7 -0
- package/lib/module/main/factories/infra/permission-manager-factory.js.map +1 -0
- package/lib/module/main/factories/infra/storage-factory.js +10 -0
- package/lib/module/main/factories/infra/storage-factory.js.map +1 -0
- package/lib/module/main/factories/use-cases/index.js +6 -0
- package/lib/module/main/factories/use-cases/index.js.map +1 -0
- package/lib/module/main/factories/use-cases/remote-get-comment-list-factory.js +7 -0
- package/lib/module/main/factories/use-cases/remote-get-comment-list-factory.js.map +1 -0
- package/lib/module/main/factories/use-cases/remote-get-image-list-factory.js +7 -0
- package/lib/module/main/factories/use-cases/remote-get-image-list-factory.js.map +1 -0
- package/lib/module/main/factories/use-cases/remote-send-diagnostics-factory.js +7 -0
- package/lib/module/main/factories/use-cases/remote-send-diagnostics-factory.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/module/presentation/components/atoms/UIBackdrop.js +31 -0
- package/lib/module/presentation/components/atoms/UIBackdrop.js.map +1 -0
- package/lib/module/presentation/components/atoms/UICheckbox.js +47 -0
- package/lib/module/presentation/components/atoms/UICheckbox.js.map +1 -0
- package/lib/module/presentation/components/atoms/UIDot.js +33 -0
- package/lib/module/presentation/components/atoms/UIDot.js.map +1 -0
- package/lib/module/presentation/components/atoms/UIIcon.js +1072 -0
- package/lib/module/presentation/components/atoms/UIIcon.js.map +1 -0
- package/lib/module/presentation/components/atoms/UILoading.js +19 -0
- package/lib/module/presentation/components/atoms/UILoading.js.map +1 -0
- package/lib/module/presentation/components/atoms/UIPage.js +70 -0
- package/lib/module/presentation/components/atoms/UIPage.js.map +1 -0
- package/lib/module/presentation/components/atoms/UIProgress.js +54 -0
- package/lib/module/presentation/components/atoms/UIProgress.js.map +1 -0
- package/lib/module/presentation/components/atoms/UIScrollPage.js +72 -0
- package/lib/module/presentation/components/atoms/UIScrollPage.js.map +1 -0
- package/lib/module/presentation/components/atoms/UISeparator.js +30 -0
- package/lib/module/presentation/components/atoms/UISeparator.js.map +1 -0
- package/lib/module/presentation/components/atoms/UISpacer.js +19 -0
- package/lib/module/presentation/components/atoms/UISpacer.js.map +1 -0
- package/lib/module/presentation/components/atoms/UIStack.js +31 -0
- package/lib/module/presentation/components/atoms/UIStack.js.map +1 -0
- package/lib/module/presentation/components/atoms/UIText.js +48 -0
- package/lib/module/presentation/components/atoms/UIText.js.map +1 -0
- package/lib/module/presentation/components/atoms/index.js +15 -0
- package/lib/module/presentation/components/atoms/index.js.map +1 -0
- package/lib/module/presentation/components/index.js +4 -0
- package/lib/module/presentation/components/index.js.map +1 -0
- package/lib/module/presentation/components/molecules/UIActionSheet.js +199 -0
- package/lib/module/presentation/components/molecules/UIActionSheet.js.map +1 -0
- package/lib/module/presentation/components/molecules/UIButton.js +173 -0
- package/lib/module/presentation/components/molecules/UIButton.js.map +1 -0
- package/lib/module/presentation/components/molecules/UIButtonCTA.js +31 -0
- package/lib/module/presentation/components/molecules/UIButtonCTA.js.map +1 -0
- package/lib/module/presentation/components/molecules/UICheckboxInput.js +84 -0
- package/lib/module/presentation/components/molecules/UICheckboxInput.js.map +1 -0
- package/lib/module/presentation/components/molecules/UIChip.js +49 -0
- package/lib/module/presentation/components/molecules/UIChip.js.map +1 -0
- package/lib/module/presentation/components/molecules/UICurrencyInput.js +32 -0
- package/lib/module/presentation/components/molecules/UICurrencyInput.js.map +1 -0
- package/lib/module/presentation/components/molecules/UIDataList.js +26 -0
- package/lib/module/presentation/components/molecules/UIDataList.js.map +1 -0
- package/lib/module/presentation/components/molecules/UIDataSectionList.js +26 -0
- package/lib/module/presentation/components/molecules/UIDataSectionList.js.map +1 -0
- package/lib/module/presentation/components/molecules/UIDatetimeInput.js +202 -0
- package/lib/module/presentation/components/molecules/UIDatetimeInput.js.map +1 -0
- package/lib/module/presentation/components/molecules/UIError.js +32 -0
- package/lib/module/presentation/components/molecules/UIError.js.map +1 -0
- package/lib/module/presentation/components/molecules/UIImage.js +87 -0
- package/lib/module/presentation/components/molecules/UIImage.js.map +1 -0
- package/lib/module/presentation/components/molecules/UIInlineDatePicker.js +245 -0
- package/lib/module/presentation/components/molecules/UIInlineDatePicker.js.map +1 -0
- package/lib/module/presentation/components/molecules/UIInputIcon.js +38 -0
- package/lib/module/presentation/components/molecules/UIInputIcon.js.map +1 -0
- package/lib/module/presentation/components/molecules/UIList.js +16 -0
- package/lib/module/presentation/components/molecules/UIList.js.map +1 -0
- package/lib/module/presentation/components/molecules/UIRadioInput.js +78 -0
- package/lib/module/presentation/components/molecules/UIRadioInput.js.map +1 -0
- package/lib/module/presentation/components/molecules/UISectionList.js +16 -0
- package/lib/module/presentation/components/molecules/UISectionList.js.map +1 -0
- package/lib/module/presentation/components/molecules/UISkeleton.js +54 -0
- package/lib/module/presentation/components/molecules/UISkeleton.js.map +1 -0
- package/lib/module/presentation/components/molecules/UISwitch.js +65 -0
- package/lib/module/presentation/components/molecules/UISwitch.js.map +1 -0
- package/lib/module/presentation/components/molecules/UITextInput.js +132 -0
- package/lib/module/presentation/components/molecules/UITextInput.js.map +1 -0
- package/lib/module/presentation/components/molecules/UITextInputMask.js +133 -0
- package/lib/module/presentation/components/molecules/UITextInputMask.js.map +1 -0
- package/lib/module/presentation/components/molecules/index.js +23 -0
- package/lib/module/presentation/components/molecules/index.js.map +1 -0
- package/lib/module/presentation/components/organisms/UIAppBar.js +102 -0
- package/lib/module/presentation/components/organisms/UIAppBar.js.map +1 -0
- package/lib/module/presentation/components/organisms/UIAppBarAction.js +21 -0
- package/lib/module/presentation/components/organisms/UIAppBarAction.js.map +1 -0
- package/lib/module/presentation/components/organisms/UICard.js +43 -0
- package/lib/module/presentation/components/organisms/UICard.js.map +1 -0
- package/lib/module/presentation/components/organisms/UIComment.js +73 -0
- package/lib/module/presentation/components/organisms/UIComment.js.map +1 -0
- package/lib/module/presentation/components/organisms/UIErrorBoundary.js +68 -0
- package/lib/module/presentation/components/organisms/UIErrorBoundary.js.map +1 -0
- package/lib/module/presentation/components/organisms/UIForm.js +83 -0
- package/lib/module/presentation/components/organisms/UIForm.js.map +1 -0
- package/lib/module/presentation/components/organisms/UIFormButton.js +43 -0
- package/lib/module/presentation/components/organisms/UIFormButton.js.map +1 -0
- package/lib/module/presentation/components/organisms/UIFormCheckboxInput.js +39 -0
- package/lib/module/presentation/components/organisms/UIFormCheckboxInput.js.map +1 -0
- package/lib/module/presentation/components/organisms/UIFormCurrencyInput.js +65 -0
- package/lib/module/presentation/components/organisms/UIFormCurrencyInput.js.map +1 -0
- package/lib/module/presentation/components/organisms/UIFormDatetimeInput.js +54 -0
- package/lib/module/presentation/components/organisms/UIFormDatetimeInput.js.map +1 -0
- package/lib/module/presentation/components/organisms/UIFormMultiselectInput.js +212 -0
- package/lib/module/presentation/components/organisms/UIFormMultiselectInput.js.map +1 -0
- package/lib/module/presentation/components/organisms/UIFormRadioInput.js +36 -0
- package/lib/module/presentation/components/organisms/UIFormRadioInput.js.map +1 -0
- package/lib/module/presentation/components/organisms/UIFormSelectInput.js +259 -0
- package/lib/module/presentation/components/organisms/UIFormSelectInput.js.map +1 -0
- package/lib/module/presentation/components/organisms/UIFormTextInput.js +64 -0
- package/lib/module/presentation/components/organisms/UIFormTextInput.js.map +1 -0
- package/lib/module/presentation/components/organisms/UIFormTextInputMask.js +69 -0
- package/lib/module/presentation/components/organisms/UIFormTextInputMask.js.map +1 -0
- package/lib/module/presentation/components/organisms/UIRow.js +55 -0
- package/lib/module/presentation/components/organisms/UIRow.js.map +1 -0
- package/lib/module/presentation/components/organisms/UISearchInput.js +33 -0
- package/lib/module/presentation/components/organisms/UISearchInput.js.map +1 -0
- package/lib/module/presentation/components/organisms/UISelectChip.js +94 -0
- package/lib/module/presentation/components/organisms/UISelectChip.js.map +1 -0
- package/lib/module/presentation/components/organisms/UISignature.js +159 -0
- package/lib/module/presentation/components/organisms/UISignature.js.map +1 -0
- package/lib/module/presentation/components/organisms/UISlideButton.js +90 -0
- package/lib/module/presentation/components/organisms/UISlideButton.js.map +1 -0
- package/lib/module/presentation/components/organisms/index.js +24 -0
- package/lib/module/presentation/components/organisms/index.js.map +1 -0
- package/lib/module/presentation/components/permissions/index.js +4 -0
- package/lib/module/presentation/components/permissions/index.js.map +1 -0
- package/lib/module/presentation/components/permissions/request-permissions.js +96 -0
- package/lib/module/presentation/components/permissions/request-permissions.js.map +1 -0
- package/lib/module/presentation/domain/metadata/index.js +5 -0
- package/lib/module/presentation/domain/metadata/index.js.map +1 -0
- package/lib/module/presentation/domain/metadata/use-comments.js +26 -0
- package/lib/module/presentation/domain/metadata/use-comments.js.map +1 -0
- package/lib/module/presentation/domain/metadata/use-images.js +26 -0
- package/lib/module/presentation/domain/metadata/use-images.js.map +1 -0
- package/lib/module/presentation/domain/offline/index.js +12 -0
- package/lib/module/presentation/domain/offline/index.js.map +1 -0
- package/lib/module/presentation/domain/offline/offline-mutation-queue-provider.js +69 -0
- package/lib/module/presentation/domain/offline/offline-mutation-queue-provider.js.map +1 -0
- package/lib/module/presentation/domain/offline/types.js +4 -0
- package/lib/module/presentation/domain/offline/types.js.map +1 -0
- package/lib/module/presentation/domain/offline/use-infinite-offline-query.js +69 -0
- package/lib/module/presentation/domain/offline/use-infinite-offline-query.js.map +1 -0
- package/lib/module/presentation/domain/offline/use-offline-id-v2.js +22 -0
- package/lib/module/presentation/domain/offline/use-offline-id-v2.js.map +1 -0
- package/lib/module/presentation/domain/offline/use-offline-id.js +11 -0
- package/lib/module/presentation/domain/offline/use-offline-id.js.map +1 -0
- package/lib/module/presentation/domain/offline/use-offline-mutation.js +115 -0
- package/lib/module/presentation/domain/offline/use-offline-mutation.js.map +1 -0
- package/lib/module/presentation/domain/offline/use-offline-query.js +33 -0
- package/lib/module/presentation/domain/offline/use-offline-query.js.map +1 -0
- package/lib/module/presentation/domain/offline/use-offline-queue.js +8 -0
- package/lib/module/presentation/domain/offline/use-offline-queue.js.map +1 -0
- package/lib/module/presentation/domain/offline/utils.js +110 -0
- package/lib/module/presentation/domain/offline/utils.js.map +1 -0
- package/lib/module/presentation/domain/provider/index.js +4 -0
- package/lib/module/presentation/domain/provider/index.js.map +1 -0
- package/lib/module/presentation/domain/provider/zuq-core-provider.js +51 -0
- package/lib/module/presentation/domain/provider/zuq-core-provider.js.map +1 -0
- package/lib/module/presentation/domain/utils/exists.js +6 -0
- package/lib/module/presentation/domain/utils/exists.js.map +1 -0
- package/lib/module/presentation/domain/utils/index.js +8 -0
- package/lib/module/presentation/domain/utils/index.js.map +1 -0
- package/lib/module/presentation/domain/utils/react-query.js +10 -0
- package/lib/module/presentation/domain/utils/react-query.js.map +1 -0
- package/lib/module/presentation/domain/utils/use-action-sheet.js +20 -0
- package/lib/module/presentation/domain/utils/use-action-sheet.js.map +1 -0
- package/lib/module/presentation/domain/utils/use-signature-ref.js +8 -0
- package/lib/module/presentation/domain/utils/use-signature-ref.js.map +1 -0
- package/lib/module/presentation/domain/utils/yup.js +5 -0
- package/lib/module/presentation/domain/utils/yup.js.map +1 -0
- package/lib/module/theme.js +211 -0
- package/lib/module/theme.js.map +1 -0
- package/lib/typescript/package.json +1 -0
- package/lib/typescript/src/data/errors/http-client-error.d.ts +13 -0
- package/lib/typescript/src/data/errors/http-client-error.d.ts.map +1 -0
- package/lib/typescript/src/data/errors/index.d.ts +4 -0
- package/lib/typescript/src/data/errors/index.d.ts.map +1 -0
- package/lib/typescript/src/data/errors/save-file-error.d.ts +4 -0
- package/lib/typescript/src/data/errors/save-file-error.d.ts.map +1 -0
- package/lib/typescript/src/data/errors/unsupported-platform.d.ts +4 -0
- package/lib/typescript/src/data/errors/unsupported-platform.d.ts.map +1 -0
- package/lib/typescript/src/data/models/index.d.ts +4 -0
- package/lib/typescript/src/data/models/index.d.ts.map +1 -0
- package/lib/typescript/src/data/models/remote-get-comment-list-model.d.ts +16 -0
- package/lib/typescript/src/data/models/remote-get-comment-list-model.d.ts.map +1 -0
- package/lib/typescript/src/data/models/remote-get-image-list-model.d.ts +16 -0
- package/lib/typescript/src/data/models/remote-get-image-list-model.d.ts.map +1 -0
- package/lib/typescript/src/data/models/remote-user-model.d.ts +14 -0
- package/lib/typescript/src/data/models/remote-user-model.d.ts.map +1 -0
- package/lib/typescript/src/data/protocols/cookie-manager.d.ts +7 -0
- package/lib/typescript/src/data/protocols/cookie-manager.d.ts.map +1 -0
- package/lib/typescript/src/data/protocols/download-manager.d.ts +12 -0
- package/lib/typescript/src/data/protocols/download-manager.d.ts.map +1 -0
- package/lib/typescript/src/data/protocols/http-client.d.ts +52 -0
- package/lib/typescript/src/data/protocols/http-client.d.ts.map +1 -0
- package/lib/typescript/src/data/protocols/index.d.ts +7 -0
- package/lib/typescript/src/data/protocols/index.d.ts.map +1 -0
- package/lib/typescript/src/data/protocols/notification-manager.d.ts +17 -0
- package/lib/typescript/src/data/protocols/notification-manager.d.ts.map +1 -0
- package/lib/typescript/src/data/protocols/permission-manager.d.ts +23 -0
- package/lib/typescript/src/data/protocols/permission-manager.d.ts.map +1 -0
- package/lib/typescript/src/data/protocols/storage.d.ts +17 -0
- package/lib/typescript/src/data/protocols/storage.d.ts.map +1 -0
- package/lib/typescript/src/data/use-cases/index.d.ts +4 -0
- package/lib/typescript/src/data/use-cases/index.d.ts.map +1 -0
- package/lib/typescript/src/data/use-cases/remote-get-comment-list.d.ts +9 -0
- package/lib/typescript/src/data/use-cases/remote-get-comment-list.d.ts.map +1 -0
- package/lib/typescript/src/data/use-cases/remote-get-image-list.d.ts +10 -0
- package/lib/typescript/src/data/use-cases/remote-get-image-list.d.ts.map +1 -0
- package/lib/typescript/src/data/use-cases/remote-send-diagnostics.d.ts +11 -0
- package/lib/typescript/src/data/use-cases/remote-send-diagnostics.d.ts.map +1 -0
- package/lib/typescript/src/domain/errors/authentication-expired-error.d.ts +4 -0
- package/lib/typescript/src/domain/errors/authentication-expired-error.d.ts.map +1 -0
- package/lib/typescript/src/domain/errors/index.d.ts +5 -0
- package/lib/typescript/src/domain/errors/index.d.ts.map +1 -0
- package/lib/typescript/src/domain/errors/internal-server-error.d.ts +4 -0
- package/lib/typescript/src/domain/errors/internal-server-error.d.ts.map +1 -0
- package/lib/typescript/src/domain/errors/invalid-credentials-error.d.ts +4 -0
- package/lib/typescript/src/domain/errors/invalid-credentials-error.d.ts.map +1 -0
- package/lib/typescript/src/domain/errors/no-app-permission-error.d.ts +4 -0
- package/lib/typescript/src/domain/errors/no-app-permission-error.d.ts.map +1 -0
- package/lib/typescript/src/domain/models/get-comment-list-model.d.ts +10 -0
- package/lib/typescript/src/domain/models/get-comment-list-model.d.ts.map +1 -0
- package/lib/typescript/src/domain/models/get-image-list-model.d.ts +8 -0
- package/lib/typescript/src/domain/models/get-image-list-model.d.ts.map +1 -0
- package/lib/typescript/src/domain/models/index.d.ts +4 -0
- package/lib/typescript/src/domain/models/index.d.ts.map +1 -0
- package/lib/typescript/src/domain/models/user-model.d.ts +16 -0
- package/lib/typescript/src/domain/models/user-model.d.ts.map +1 -0
- package/lib/typescript/src/domain/use-cases/get-comment-list.d.ts +12 -0
- package/lib/typescript/src/domain/use-cases/get-comment-list.d.ts.map +1 -0
- package/lib/typescript/src/domain/use-cases/get-image-list.d.ts +12 -0
- package/lib/typescript/src/domain/use-cases/get-image-list.d.ts.map +1 -0
- package/lib/typescript/src/domain/use-cases/index.d.ts +7 -0
- package/lib/typescript/src/domain/use-cases/index.d.ts.map +1 -0
- package/lib/typescript/src/domain/use-cases/record-request.d.ts +14 -0
- package/lib/typescript/src/domain/use-cases/record-request.d.ts.map +1 -0
- package/lib/typescript/src/domain/use-cases/send-diagnostics.d.ts +15 -0
- package/lib/typescript/src/domain/use-cases/send-diagnostics.d.ts.map +1 -0
- package/lib/typescript/src/domain/use-cases/user-authentication.d.ts +12 -0
- package/lib/typescript/src/domain/use-cases/user-authentication.d.ts.map +1 -0
- package/lib/typescript/src/domain/use-cases/user-logout.d.ts +10 -0
- package/lib/typescript/src/domain/use-cases/user-logout.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +15 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/infra/axios-http-client-adapter.d.ts +33 -0
- package/lib/typescript/src/infra/axios-http-client-adapter.d.ts.map +1 -0
- package/lib/typescript/src/infra/index.d.ts +8 -0
- package/lib/typescript/src/infra/index.d.ts.map +1 -0
- package/lib/typescript/src/infra/isomorphic-id-manager.d.ts +29 -0
- package/lib/typescript/src/infra/isomorphic-id-manager.d.ts.map +1 -0
- package/lib/typescript/src/infra/mmkv-storage-adapter.d.ts +18 -0
- package/lib/typescript/src/infra/mmkv-storage-adapter.d.ts.map +1 -0
- package/lib/typescript/src/infra/notifee-notification-manager-adapter.d.ts +17 -0
- package/lib/typescript/src/infra/notifee-notification-manager-adapter.d.ts.map +1 -0
- package/lib/typescript/src/infra/offline-mutation-queue.d.ts +56 -0
- package/lib/typescript/src/infra/offline-mutation-queue.d.ts.map +1 -0
- package/lib/typescript/src/infra/rnbu-download-manager-adapter.d.ts +7 -0
- package/lib/typescript/src/infra/rnbu-download-manager-adapter.d.ts.map +1 -0
- package/lib/typescript/src/infra/rnp-permission-manager-adapter.d.ts +20 -0
- package/lib/typescript/src/infra/rnp-permission-manager-adapter.d.ts.map +1 -0
- package/lib/typescript/src/infra/storage-cookie-manager-adapter.d.ts +12 -0
- package/lib/typescript/src/infra/storage-cookie-manager-adapter.d.ts.map +1 -0
- package/lib/typescript/src/main/components/index.d.ts +5 -0
- package/lib/typescript/src/main/components/index.d.ts.map +1 -0
- package/lib/typescript/src/main/components/request-permissions.d.ts +6 -0
- package/lib/typescript/src/main/components/request-permissions.d.ts.map +1 -0
- package/lib/typescript/src/main/factories/infra/download-manager-factory.d.ts +3 -0
- package/lib/typescript/src/main/factories/infra/download-manager-factory.d.ts.map +1 -0
- package/lib/typescript/src/main/factories/infra/http-client-factory.d.ts +4 -0
- package/lib/typescript/src/main/factories/infra/http-client-factory.d.ts.map +1 -0
- package/lib/typescript/src/main/factories/infra/index.d.ts +8 -0
- package/lib/typescript/src/main/factories/infra/index.d.ts.map +1 -0
- package/lib/typescript/src/main/factories/infra/isomorphic-id-manager-factory.d.ts +4 -0
- package/lib/typescript/src/main/factories/infra/isomorphic-id-manager-factory.d.ts.map +1 -0
- package/lib/typescript/src/main/factories/infra/notification-manager-factory.d.ts +4 -0
- package/lib/typescript/src/main/factories/infra/notification-manager-factory.d.ts.map +1 -0
- package/lib/typescript/src/main/factories/infra/offline-mutation-queue-factory.d.ts +5 -0
- package/lib/typescript/src/main/factories/infra/offline-mutation-queue-factory.d.ts.map +1 -0
- package/lib/typescript/src/main/factories/infra/permission-manager-factory.d.ts +3 -0
- package/lib/typescript/src/main/factories/infra/permission-manager-factory.d.ts.map +1 -0
- package/lib/typescript/src/main/factories/infra/storage-factory.d.ts +4 -0
- package/lib/typescript/src/main/factories/infra/storage-factory.d.ts.map +1 -0
- package/lib/typescript/src/main/factories/use-cases/index.d.ts +4 -0
- package/lib/typescript/src/main/factories/use-cases/index.d.ts.map +1 -0
- package/lib/typescript/src/main/factories/use-cases/remote-get-comment-list-factory.d.ts +4 -0
- package/lib/typescript/src/main/factories/use-cases/remote-get-comment-list-factory.d.ts.map +1 -0
- package/lib/typescript/src/main/factories/use-cases/remote-get-image-list-factory.d.ts +4 -0
- package/lib/typescript/src/main/factories/use-cases/remote-get-image-list-factory.d.ts.map +1 -0
- package/lib/typescript/src/main/factories/use-cases/remote-send-diagnostics-factory.d.ts +4 -0
- package/lib/typescript/src/main/factories/use-cases/remote-send-diagnostics-factory.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/atoms/UIBackdrop.d.ts +10 -0
- package/lib/typescript/src/presentation/components/atoms/UIBackdrop.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/atoms/UICheckbox.d.ts +11 -0
- package/lib/typescript/src/presentation/components/atoms/UICheckbox.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/atoms/UIDot.d.ts +10 -0
- package/lib/typescript/src/presentation/components/atoms/UIDot.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/atoms/UIIcon.d.ts +133 -0
- package/lib/typescript/src/presentation/components/atoms/UIIcon.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/atoms/UILoading.d.ts +9 -0
- package/lib/typescript/src/presentation/components/atoms/UILoading.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/atoms/UIPage.d.ts +20 -0
- package/lib/typescript/src/presentation/components/atoms/UIPage.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/atoms/UIProgress.d.ts +10 -0
- package/lib/typescript/src/presentation/components/atoms/UIProgress.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/atoms/UIScrollPage.d.ts +17 -0
- package/lib/typescript/src/presentation/components/atoms/UIScrollPage.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/atoms/UISeparator.d.ts +10 -0
- package/lib/typescript/src/presentation/components/atoms/UISeparator.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/atoms/UISpacer.d.ts +9 -0
- package/lib/typescript/src/presentation/components/atoms/UISpacer.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/atoms/UIStack.d.ts +14 -0
- package/lib/typescript/src/presentation/components/atoms/UIStack.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/atoms/UIText.d.ts +14 -0
- package/lib/typescript/src/presentation/components/atoms/UIText.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/atoms/index.d.ts +13 -0
- package/lib/typescript/src/presentation/components/atoms/index.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/index.d.ts +2 -0
- package/lib/typescript/src/presentation/components/index.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UIActionSheet.d.ts +17 -0
- package/lib/typescript/src/presentation/components/molecules/UIActionSheet.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UIButton.d.ts +18 -0
- package/lib/typescript/src/presentation/components/molecules/UIButton.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UIButtonCTA.d.ts +8 -0
- package/lib/typescript/src/presentation/components/molecules/UIButtonCTA.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UICheckboxInput.d.ts +16 -0
- package/lib/typescript/src/presentation/components/molecules/UICheckboxInput.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UIChip.d.ts +17 -0
- package/lib/typescript/src/presentation/components/molecules/UIChip.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UICurrencyInput.d.ts +11 -0
- package/lib/typescript/src/presentation/components/molecules/UICurrencyInput.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UIDataList.d.ts +9 -0
- package/lib/typescript/src/presentation/components/molecules/UIDataList.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UIDataSectionList.d.ts +9 -0
- package/lib/typescript/src/presentation/components/molecules/UIDataSectionList.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UIDatetimeInput.d.ts +10 -0
- package/lib/typescript/src/presentation/components/molecules/UIDatetimeInput.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UIError.d.ts +8 -0
- package/lib/typescript/src/presentation/components/molecules/UIError.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UIImage.d.ts +11 -0
- package/lib/typescript/src/presentation/components/molecules/UIImage.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UIInlineDatePicker.d.ts +15 -0
- package/lib/typescript/src/presentation/components/molecules/UIInlineDatePicker.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UIInputIcon.d.ts +9 -0
- package/lib/typescript/src/presentation/components/molecules/UIInputIcon.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UIList.d.ts +5 -0
- package/lib/typescript/src/presentation/components/molecules/UIList.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UIRadioInput.d.ts +12 -0
- package/lib/typescript/src/presentation/components/molecules/UIRadioInput.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UISectionList.d.ts +5 -0
- package/lib/typescript/src/presentation/components/molecules/UISectionList.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UISkeleton.d.ts +8 -0
- package/lib/typescript/src/presentation/components/molecules/UISkeleton.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UISwitch.d.ts +10 -0
- package/lib/typescript/src/presentation/components/molecules/UISwitch.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UITextInput.d.ts +13 -0
- package/lib/typescript/src/presentation/components/molecules/UITextInput.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/UITextInputMask.d.ts +16 -0
- package/lib/typescript/src/presentation/components/molecules/UITextInputMask.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/molecules/index.d.ts +21 -0
- package/lib/typescript/src/presentation/components/molecules/index.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UIAppBar.d.ts +13 -0
- package/lib/typescript/src/presentation/components/organisms/UIAppBar.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UIAppBarAction.d.ts +6 -0
- package/lib/typescript/src/presentation/components/organisms/UIAppBarAction.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UICard.d.ts +9 -0
- package/lib/typescript/src/presentation/components/organisms/UICard.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UIComment.d.ts +9 -0
- package/lib/typescript/src/presentation/components/organisms/UIComment.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UIErrorBoundary.d.ts +9 -0
- package/lib/typescript/src/presentation/components/organisms/UIErrorBoundary.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UIForm.d.ts +13 -0
- package/lib/typescript/src/presentation/components/organisms/UIForm.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormButton.d.ts +11 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormButton.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormCheckboxInput.d.ts +9 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormCheckboxInput.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormCurrencyInput.d.ts +11 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormCurrencyInput.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormDatetimeInput.d.ts +10 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormDatetimeInput.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormMultiselectInput.d.ts +30 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormMultiselectInput.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormRadioInput.d.ts +9 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormRadioInput.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormSelectInput.d.ts +44 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormSelectInput.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormTextInput.d.ts +11 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormTextInput.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormTextInputMask.d.ts +11 -0
- package/lib/typescript/src/presentation/components/organisms/UIFormTextInputMask.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UIRow.d.ts +14 -0
- package/lib/typescript/src/presentation/components/organisms/UIRow.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UISearchInput.d.ts +6 -0
- package/lib/typescript/src/presentation/components/organisms/UISearchInput.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UISelectChip.d.ts +13 -0
- package/lib/typescript/src/presentation/components/organisms/UISelectChip.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UISignature.d.ts +26 -0
- package/lib/typescript/src/presentation/components/organisms/UISignature.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/UISlideButton.d.ts +8 -0
- package/lib/typescript/src/presentation/components/organisms/UISlideButton.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/organisms/index.d.ts +22 -0
- package/lib/typescript/src/presentation/components/organisms/index.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/permissions/index.d.ts +2 -0
- package/lib/typescript/src/presentation/components/permissions/index.d.ts.map +1 -0
- package/lib/typescript/src/presentation/components/permissions/request-permissions.d.ts +15 -0
- package/lib/typescript/src/presentation/components/permissions/request-permissions.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/metadata/index.d.ts +3 -0
- package/lib/typescript/src/presentation/domain/metadata/index.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/metadata/use-comments.d.ts +11 -0
- package/lib/typescript/src/presentation/domain/metadata/use-comments.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/metadata/use-images.d.ts +11 -0
- package/lib/typescript/src/presentation/domain/metadata/use-images.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/offline/index.d.ts +10 -0
- package/lib/typescript/src/presentation/domain/offline/index.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/offline/offline-mutation-queue-provider.d.ts +18 -0
- package/lib/typescript/src/presentation/domain/offline/offline-mutation-queue-provider.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/offline/types.d.ts +18 -0
- package/lib/typescript/src/presentation/domain/offline/types.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/offline/use-infinite-offline-query.d.ts +78 -0
- package/lib/typescript/src/presentation/domain/offline/use-infinite-offline-query.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/offline/use-offline-id-v2.d.ts +9 -0
- package/lib/typescript/src/presentation/domain/offline/use-offline-id-v2.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/offline/use-offline-id.d.ts +3 -0
- package/lib/typescript/src/presentation/domain/offline/use-offline-id.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/offline/use-offline-mutation.d.ts +88 -0
- package/lib/typescript/src/presentation/domain/offline/use-offline-mutation.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/offline/use-offline-query.d.ts +8 -0
- package/lib/typescript/src/presentation/domain/offline/use-offline-query.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/offline/use-offline-queue.d.ts +10 -0
- package/lib/typescript/src/presentation/domain/offline/use-offline-queue.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/offline/utils.d.ts +18 -0
- package/lib/typescript/src/presentation/domain/offline/utils.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/provider/index.d.ts +2 -0
- package/lib/typescript/src/presentation/domain/provider/index.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/provider/zuq-core-provider.d.ts +13 -0
- package/lib/typescript/src/presentation/domain/provider/zuq-core-provider.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/utils/exists.d.ts +2 -0
- package/lib/typescript/src/presentation/domain/utils/exists.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/utils/index.d.ts +6 -0
- package/lib/typescript/src/presentation/domain/utils/index.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/utils/react-query.d.ts +5 -0
- package/lib/typescript/src/presentation/domain/utils/react-query.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/utils/use-action-sheet.d.ts +6 -0
- package/lib/typescript/src/presentation/domain/utils/use-action-sheet.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/utils/use-signature-ref.d.ts +15 -0
- package/lib/typescript/src/presentation/domain/utils/use-signature-ref.d.ts.map +1 -0
- package/lib/typescript/src/presentation/domain/utils/yup.d.ts +3 -0
- package/lib/typescript/src/presentation/domain/utils/yup.d.ts.map +1 -0
- package/lib/typescript/src/theme.d.ts +214 -0
- package/lib/typescript/src/theme.d.ts.map +1 -0
- package/package.json +210 -0
- package/src/assets/logo.png +0 -0
- package/src/data/errors/http-client-error.ts +23 -0
- package/src/data/errors/index.ts +3 -0
- package/src/data/errors/save-file-error.ts +6 -0
- package/src/data/errors/unsupported-platform.ts +6 -0
- package/src/data/models/index.ts +3 -0
- package/src/data/models/remote-get-comment-list-model.ts +15 -0
- package/src/data/models/remote-get-image-list-model.ts +15 -0
- package/src/data/models/remote-user-model.ts +13 -0
- package/src/data/protocols/cookie-manager.ts +6 -0
- package/src/data/protocols/download-manager.ts +13 -0
- package/src/data/protocols/http-client.ts +75 -0
- package/src/data/protocols/index.ts +6 -0
- package/src/data/protocols/notification-manager.ts +17 -0
- package/src/data/protocols/permission-manager.ts +46 -0
- package/src/data/protocols/storage.ts +18 -0
- package/src/data/use-cases/index.ts +3 -0
- package/src/data/use-cases/remote-get-comment-list.ts +34 -0
- package/src/data/use-cases/remote-get-image-list.ts +40 -0
- package/src/data/use-cases/remote-send-diagnostics.ts +20 -0
- package/src/domain/errors/authentication-expired-error.ts +6 -0
- package/src/domain/errors/index.ts +4 -0
- package/src/domain/errors/internal-server-error.ts +6 -0
- package/src/domain/errors/invalid-credentials-error.ts +6 -0
- package/src/domain/errors/no-app-permission-error.ts +6 -0
- package/src/domain/models/get-comment-list-model.ts +9 -0
- package/src/domain/models/get-image-list-model.ts +7 -0
- package/src/domain/models/index.ts +3 -0
- package/src/domain/models/user-model.ts +15 -0
- package/src/domain/use-cases/get-comment-list.ts +14 -0
- package/src/domain/use-cases/get-image-list.ts +14 -0
- package/src/domain/use-cases/index.ts +6 -0
- package/src/domain/use-cases/record-request.ts +15 -0
- package/src/domain/use-cases/send-diagnostics.ts +15 -0
- package/src/domain/use-cases/user-authentication.ts +16 -0
- package/src/domain/use-cases/user-logout.ts +10 -0
- package/src/index.tsx +29 -0
- package/src/infra/axios-http-client-adapter.ts +271 -0
- package/src/infra/index.ts +7 -0
- package/src/infra/isomorphic-id-manager.ts +107 -0
- package/src/infra/mmkv-storage-adapter.ts +73 -0
- package/src/infra/notifee-notification-manager-adapter.ts +87 -0
- package/src/infra/offline-mutation-queue.ts +280 -0
- package/src/infra/rnbu-download-manager-adapter.ts +29 -0
- package/src/infra/rnp-permission-manager-adapter.ts +147 -0
- package/src/infra/storage-cookie-manager-adapter.ts +29 -0
- package/src/main/components/index.ts +4 -0
- package/src/main/components/request-permissions.tsx +17 -0
- package/src/main/factories/infra/download-manager-factory.ts +6 -0
- package/src/main/factories/infra/http-client-factory.ts +9 -0
- package/src/main/factories/infra/index.ts +7 -0
- package/src/main/factories/infra/isomorphic-id-manager-factory.ts +6 -0
- package/src/main/factories/infra/notification-manager-factory.ts +8 -0
- package/src/main/factories/infra/offline-mutation-queue-factory.ts +22 -0
- package/src/main/factories/infra/permission-manager-factory.ts +6 -0
- package/src/main/factories/infra/storage-factory.ts +11 -0
- package/src/main/factories/use-cases/index.ts +3 -0
- package/src/main/factories/use-cases/remote-get-comment-list-factory.ts +6 -0
- package/src/main/factories/use-cases/remote-get-image-list-factory.ts +6 -0
- package/src/main/factories/use-cases/remote-send-diagnostics-factory.ts +10 -0
- package/src/presentation/components/atoms/UIBackdrop.tsx +35 -0
- package/src/presentation/components/atoms/UICheckbox.tsx +58 -0
- package/src/presentation/components/atoms/UIDot.tsx +40 -0
- package/src/presentation/components/atoms/UIIcon.tsx +1091 -0
- package/src/presentation/components/atoms/UILoading.tsx +17 -0
- package/src/presentation/components/atoms/UIPage.tsx +92 -0
- package/src/presentation/components/atoms/UIProgress.tsx +60 -0
- package/src/presentation/components/atoms/UIScrollPage.tsx +87 -0
- package/src/presentation/components/atoms/UISeparator.tsx +41 -0
- package/src/presentation/components/atoms/UISpacer.tsx +21 -0
- package/src/presentation/components/atoms/UIStack.tsx +44 -0
- package/src/presentation/components/atoms/UIText.tsx +59 -0
- package/src/presentation/components/atoms/index.ts +12 -0
- package/src/presentation/components/index.ts +1 -0
- package/src/presentation/components/molecules/UIActionSheet.tsx +230 -0
- package/src/presentation/components/molecules/UIButton.tsx +192 -0
- package/src/presentation/components/molecules/UIButtonCTA.tsx +38 -0
- package/src/presentation/components/molecules/UICheckboxInput.tsx +106 -0
- package/src/presentation/components/molecules/UIChip.tsx +69 -0
- package/src/presentation/components/molecules/UICurrencyInput.tsx +43 -0
- package/src/presentation/components/molecules/UIDataList.tsx +30 -0
- package/src/presentation/components/molecules/UIDataSectionList.tsx +30 -0
- package/src/presentation/components/molecules/UIDatetimeInput.tsx +205 -0
- package/src/presentation/components/molecules/UIError.tsx +24 -0
- package/src/presentation/components/molecules/UIImage.tsx +85 -0
- package/src/presentation/components/molecules/UIInlineDatePicker.tsx +244 -0
- package/src/presentation/components/molecules/UIInputIcon.tsx +39 -0
- package/src/presentation/components/molecules/UIList.tsx +17 -0
- package/src/presentation/components/molecules/UIRadioInput.tsx +97 -0
- package/src/presentation/components/molecules/UISectionList.tsx +17 -0
- package/src/presentation/components/molecules/UISkeleton.tsx +66 -0
- package/src/presentation/components/molecules/UISwitch.tsx +72 -0
- package/src/presentation/components/molecules/UITextInput.tsx +160 -0
- package/src/presentation/components/molecules/UITextInputMask.tsx +160 -0
- package/src/presentation/components/molecules/index.ts +20 -0
- package/src/presentation/components/organisms/UIAppBar.tsx +103 -0
- package/src/presentation/components/organisms/UIAppBarAction.tsx +13 -0
- package/src/presentation/components/organisms/UICard.tsx +48 -0
- package/src/presentation/components/organisms/UIComment.tsx +64 -0
- package/src/presentation/components/organisms/UIErrorBoundary.tsx +72 -0
- package/src/presentation/components/organisms/UIForm.tsx +81 -0
- package/src/presentation/components/organisms/UIFormButton.tsx +38 -0
- package/src/presentation/components/organisms/UIFormCheckboxInput.tsx +35 -0
- package/src/presentation/components/organisms/UIFormCurrencyInput.tsx +65 -0
- package/src/presentation/components/organisms/UIFormDatetimeInput.tsx +51 -0
- package/src/presentation/components/organisms/UIFormMultiselectInput.tsx +251 -0
- package/src/presentation/components/organisms/UIFormRadioInput.tsx +32 -0
- package/src/presentation/components/organisms/UIFormSelectInput.tsx +316 -0
- package/src/presentation/components/organisms/UIFormTextInput.tsx +62 -0
- package/src/presentation/components/organisms/UIFormTextInputMask.tsx +79 -0
- package/src/presentation/components/organisms/UIRow.tsx +61 -0
- package/src/presentation/components/organisms/UISearchInput.tsx +40 -0
- package/src/presentation/components/organisms/UISelectChip.tsx +104 -0
- package/src/presentation/components/organisms/UISignature.tsx +194 -0
- package/src/presentation/components/organisms/UISlideButton.tsx +112 -0
- package/src/presentation/components/organisms/index.ts +21 -0
- package/src/presentation/components/permissions/index.ts +1 -0
- package/src/presentation/components/permissions/request-permissions.tsx +115 -0
- package/src/presentation/domain/metadata/index.ts +2 -0
- package/src/presentation/domain/metadata/use-comments.ts +27 -0
- package/src/presentation/domain/metadata/use-images.ts +27 -0
- package/src/presentation/domain/offline/index.ts +9 -0
- package/src/presentation/domain/offline/offline-mutation-queue-provider.tsx +95 -0
- package/src/presentation/domain/offline/types.ts +21 -0
- package/src/presentation/domain/offline/use-infinite-offline-query.tsx +89 -0
- package/src/presentation/domain/offline/use-offline-id-v2.ts +29 -0
- package/src/presentation/domain/offline/use-offline-id.ts +12 -0
- package/src/presentation/domain/offline/use-offline-mutation.ts +150 -0
- package/src/presentation/domain/offline/use-offline-query.ts +55 -0
- package/src/presentation/domain/offline/use-offline-queue.ts +6 -0
- package/src/presentation/domain/offline/utils.ts +139 -0
- package/src/presentation/domain/provider/index.ts +1 -0
- package/src/presentation/domain/provider/zuq-core-provider.tsx +52 -0
- package/src/presentation/domain/utils/exists.ts +3 -0
- package/src/presentation/domain/utils/index.ts +5 -0
- package/src/presentation/domain/utils/react-query.ts +10 -0
- package/src/presentation/domain/utils/use-action-sheet.ts +21 -0
- package/src/presentation/domain/utils/use-signature-ref.ts +19 -0
- package/src/presentation/domain/utils/yup.ts +3 -0
- package/src/theme.ts +240 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"notifee-notification-manager-adapter.d.ts","sourceRoot":"","sources":["../../../../src/infra/notifee-notification-manager-adapter.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAK7D,yBAAiB,iCAAiC,CAAC;IACjD,KAAY,OAAO,GAAG;QACpB,SAAS,EAAE,MAAM,CAAC;QAClB,WAAW,EAAE,MAAM,CAAC;QACpB,IAAI,CAAC,EAAE,MAAM,CAAC;KACf,CAAC;CACH;AAED,qBAAa,iCAAkC,YAAW,mBAAmB;IAIzE,OAAO,CAAC,QAAQ,CAAC,OAAO;IAHnB,aAAa,EAAE,mBAAmB,CAAC,OAAO,EAAE,CAAM;gBAGtC,OAAO,EAAE,iCAAiC,CAAC,OAAO;IAG/D,OAAO,CAAC,OAAO,EAAE,mBAAmB,CAAC,OAAO;IAkB5C,OAAO,CAAC,OAAO,EAAE,mBAAmB,CAAC,OAAO;IAqB5C,UAAU,CAAC,OAAO,EAAE,mBAAmB,CAAC,iBAAiB;CA2BhE"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import type { QueryClient, QueryKey } from '@tanstack/react-query';
|
|
2
|
+
import type { HttpClient, Storage } from '../data/protocols';
|
|
3
|
+
import { IsomorphicIdManager } from './isomorphic-id-manager';
|
|
4
|
+
export type OfflineActions = Record<string, Function>;
|
|
5
|
+
export declare enum OfflineMutationStatus {
|
|
6
|
+
PENDING = "pending",
|
|
7
|
+
EXECUTING = "executing",
|
|
8
|
+
ERROR = "error",
|
|
9
|
+
SUCCESS = "success"
|
|
10
|
+
}
|
|
11
|
+
export type OfflineMutationData = {
|
|
12
|
+
url: string;
|
|
13
|
+
method: keyof HttpClient;
|
|
14
|
+
body: any;
|
|
15
|
+
params?: any;
|
|
16
|
+
headers?: any;
|
|
17
|
+
};
|
|
18
|
+
export type OfflineMutation = {
|
|
19
|
+
id: string;
|
|
20
|
+
type: keyof OfflineActions;
|
|
21
|
+
data: OfflineMutationData;
|
|
22
|
+
response: null | undefined | any;
|
|
23
|
+
error: null | undefined | any;
|
|
24
|
+
queryKeysToInvalidate: QueryKey[];
|
|
25
|
+
status: OfflineMutationStatus;
|
|
26
|
+
dependencies: (string | IsomorphicIdManager.IsomorphicId)[];
|
|
27
|
+
createdAt: Date;
|
|
28
|
+
context?: any;
|
|
29
|
+
};
|
|
30
|
+
export declare class OfflineMutationQueue {
|
|
31
|
+
private readonly actions;
|
|
32
|
+
private readonly storage;
|
|
33
|
+
private readonly queryClient;
|
|
34
|
+
private readonly isomorphicIdManager?;
|
|
35
|
+
private readonly STORAGE_KEY;
|
|
36
|
+
private queue;
|
|
37
|
+
constructor(actions: OfflineActions, storage: Storage, queryClient: QueryClient, isomorphicIdManager?: IsomorphicIdManager | undefined);
|
|
38
|
+
private update;
|
|
39
|
+
private remove;
|
|
40
|
+
private areDependenciesExecuted;
|
|
41
|
+
private updateStatus;
|
|
42
|
+
private updateResponse;
|
|
43
|
+
private updateError;
|
|
44
|
+
private invalidateQueries;
|
|
45
|
+
private isExecuting;
|
|
46
|
+
private executeRequest;
|
|
47
|
+
private executeAllDependencies;
|
|
48
|
+
private assertOfflineMutation;
|
|
49
|
+
private isAlreadyExecuted;
|
|
50
|
+
size(): number;
|
|
51
|
+
list(): OfflineMutation[];
|
|
52
|
+
clear(): void;
|
|
53
|
+
push(key: string, offlineMutation: OfflineMutation): void;
|
|
54
|
+
execute(): Promise<void>;
|
|
55
|
+
}
|
|
56
|
+
//# sourceMappingURL=offline-mutation-queue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"offline-mutation-queue.d.ts","sourceRoot":"","sources":["../../../../src/infra/offline-mutation-queue.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAEnE,OAAO,KAAK,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAE7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAE9D,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAC;AAEtD,oBAAY,qBAAqB;IAC/B,OAAO,YAAY;IACnB,SAAS,cAAc;IACvB,KAAK,UAAU;IACf,OAAO,YAAY;CACpB;AAED,MAAM,MAAM,mBAAmB,GAAG;IAChC,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,UAAU,CAAC;IACzB,IAAI,EAAE,GAAG,CAAC;IACV,MAAM,CAAC,EAAE,GAAG,CAAC;IACb,OAAO,CAAC,EAAE,GAAG,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,cAAc,CAAC;IAC3B,IAAI,EAAE,mBAAmB,CAAC;IAC1B,QAAQ,EAAE,IAAI,GAAG,SAAS,GAAG,GAAG,CAAC;IACjC,KAAK,EAAE,IAAI,GAAG,SAAS,GAAG,GAAG,CAAC;IAC9B,qBAAqB,EAAE,QAAQ,EAAE,CAAC;IAClC,MAAM,EAAE,qBAAqB,CAAC;IAC9B,YAAY,EAAE,CAAC,MAAM,GAAG,mBAAmB,CAAC,YAAY,CAAC,EAAE,CAAC;IAC5D,SAAS,EAAE,IAAI,CAAC;IAChB,OAAO,CAAC,EAAE,GAAG,CAAC;CACf,CAAC;AAEF,qBAAa,oBAAoB;IAK7B,OAAO,CAAC,QAAQ,CAAC,OAAO;IACxB,OAAO,CAAC,QAAQ,CAAC,OAAO;IACxB,OAAO,CAAC,QAAQ,CAAC,WAAW;IAC5B,OAAO,CAAC,QAAQ,CAAC,mBAAmB,CAAC;IAPvC,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAqB;IACjD,OAAO,CAAC,KAAK,CAA2C;gBAGrC,OAAO,EAAE,cAAc,EACvB,OAAO,EAAE,OAAO,EAChB,WAAW,EAAE,WAAW,EACxB,mBAAmB,CAAC,EAAE,mBAAmB,YAAA;IAY5D,OAAO,CAAC,MAAM;IAKd,OAAO,CAAC,MAAM;IAKd,OAAO,CAAC,uBAAuB;IAgB/B,OAAO,CAAC,YAAY;IAapB,OAAO,CAAC,cAAc;IAiBtB,OAAO,CAAC,WAAW;YAcL,iBAAiB;IAS/B,OAAO,CAAC,WAAW;YAIL,cAAc;YAkBd,sBAAsB;IA4BpC,OAAO,CAAC,qBAAqB;IAgC7B,OAAO,CAAC,iBAAiB;IAQlB,IAAI;IAIJ,IAAI;IAIJ,KAAK;IAOL,IAAI,CAAC,GAAG,EAAE,MAAM,EAAE,eAAe,EAAE,eAAe;IAW5C,OAAO;CA4BrB"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { DownloadManager, HttpClient } from '../data/protocols';
|
|
2
|
+
export declare class RNBUDownloadManagerAdapter implements DownloadManager {
|
|
3
|
+
private readonly httpClient;
|
|
4
|
+
constructor(httpClient: HttpClient);
|
|
5
|
+
save(params: DownloadManager.SaveParams): DownloadManager.SaveResult;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=rnbu-download-manager-adapter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rnbu-download-manager-adapter.d.ts","sourceRoot":"","sources":["../../../../src/infra/rnbu-download-manager-adapter.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAMrE,qBAAa,0BAA2B,YAAW,eAAe;IACpD,OAAO,CAAC,QAAQ,CAAC,UAAU;gBAAV,UAAU,EAAE,UAAU;IAC7C,IAAI,CAAC,MAAM,EAAE,eAAe,CAAC,UAAU,GAAG,eAAe,CAAC,UAAU;CAoB3E"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { PermissionManager } from '../data/protocols';
|
|
2
|
+
export declare class RNPPermissionManagerAdapter implements PermissionManager {
|
|
3
|
+
private readonly os;
|
|
4
|
+
private readonly map;
|
|
5
|
+
private checkOS;
|
|
6
|
+
private getCurrentOSPermission;
|
|
7
|
+
get(permission: PermissionManager.Permission): Promise<PermissionManager.Result>;
|
|
8
|
+
getAll(permissions: PermissionManager.Permission[]): Promise<PermissionManager.Result[]>;
|
|
9
|
+
checkNoop(permission: string): Promise<"granted" | undefined>;
|
|
10
|
+
request(permission: PermissionManager.Permission, options: PermissionManager.Options): Promise<PermissionManager.Result>;
|
|
11
|
+
requestAll(data: Array<{
|
|
12
|
+
permission: PermissionManager.Permission;
|
|
13
|
+
options: PermissionManager.Options;
|
|
14
|
+
}>): Promise<PermissionManager.Result[]>;
|
|
15
|
+
hasNotifications(): Promise<import("react-native-permissions").PermissionStatus>;
|
|
16
|
+
requestNotifications(options: PermissionManager.Options): Promise<import("react-native-permissions").PermissionStatus>;
|
|
17
|
+
has(permission: PermissionManager.Permission): Promise<boolean>;
|
|
18
|
+
hasEvery(permissions: PermissionManager.Permission[]): Promise<boolean>;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=rnp-permission-manager-adapter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"rnp-permission-manager-adapter.d.ts","sourceRoot":"","sources":["../../../../src/infra/rnp-permission-manager-adapter.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,mBAAmB,CAAC;AAK3D,qBAAa,2BAA4B,YAAW,iBAAiB;IACnE,OAAO,CAAC,QAAQ,CAAC,EAAE,CAAe;IAClC,OAAO,CAAC,QAAQ,CAAC,GAAG,CA6BlB;IAEF,OAAO,CAAC,OAAO;IAIf,OAAO,CAAC,sBAAsB;IAIxB,GAAG,CACP,UAAU,EAAE,iBAAiB,CAAC,UAAU,GACvC,OAAO,CAAC,iBAAiB,CAAC,MAAM,CAAC;IAQ9B,MAAM,CACV,WAAW,EAAE,iBAAiB,CAAC,UAAU,EAAE,GAC1C,OAAO,CAAC,iBAAiB,CAAC,MAAM,EAAE,CAAC;IAMhC,SAAS,CAAC,UAAU,EAAE,MAAM;IAU5B,OAAO,CACX,UAAU,EAAE,iBAAiB,CAAC,UAAU,EACxC,OAAO,EAAE,iBAAiB,CAAC,OAAO,GACjC,OAAO,CAAC,iBAAiB,CAAC,MAAM,CAAC;IAiB9B,UAAU,CACd,IAAI,EAAE,KAAK,CAAC;QACV,UAAU,EAAE,iBAAiB,CAAC,UAAU,CAAC;QACzC,OAAO,EAAE,iBAAiB,CAAC,OAAO,CAAC;KACpC,CAAC,GACD,OAAO,CAAC,iBAAiB,CAAC,MAAM,EAAE,CAAC;IAMhC,gBAAgB;IAKhB,oBAAoB,CAAC,OAAO,EAAE,iBAAiB,CAAC,OAAO;IAevD,GAAG,CAAC,UAAU,EAAE,iBAAiB,CAAC,UAAU,GAAG,OAAO,CAAC,OAAO,CAAC;IAa/D,QAAQ,CACZ,WAAW,EAAE,iBAAiB,CAAC,UAAU,EAAE,GAC1C,OAAO,CAAC,OAAO,CAAC;CAMpB"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { CookieManager, Storage } from '../data/protocols';
|
|
2
|
+
export declare class StorageCookieManagerAdapter implements CookieManager {
|
|
3
|
+
private readonly storage;
|
|
4
|
+
private readonly cookiesKey;
|
|
5
|
+
private cookies;
|
|
6
|
+
constructor(storage: Storage, cookiesKey: string);
|
|
7
|
+
get(key: string): string | undefined;
|
|
8
|
+
set(key: string, value: string | undefined): void;
|
|
9
|
+
remove(key: string): void;
|
|
10
|
+
clear(): void;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=storage-cookie-manager-adapter.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"storage-cookie-manager-adapter.d.ts","sourceRoot":"","sources":["../../../../src/infra/storage-cookie-manager-adapter.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAEhE,qBAAa,2BAA4B,YAAW,aAAa;IAI7D,OAAO,CAAC,QAAQ,CAAC,OAAO;IACxB,OAAO,CAAC,QAAQ,CAAC,UAAU;IAJ7B,OAAO,CAAC,OAAO,CAA0C;gBAGtC,OAAO,EAAE,OAAO,EAChB,UAAU,EAAE,MAAM;IAK9B,GAAG,CAAC,GAAG,EAAE,MAAM;IAIf,GAAG,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,SAAS;IAK1C,MAAM,CAAC,GAAG,EAAE,MAAM;IAIlB,KAAK;CAGb"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/main/components/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,qCAAqC,CAAC;AACpD,cAAc,yCAAyC,CAAC;AACxD,cAAc,yCAAyC,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { RequestPermissions as BaseRequestPermissions } from '../../presentation/components';
|
|
3
|
+
type Props = Omit<React.ComponentProps<typeof BaseRequestPermissions>, 'permissionManager'>;
|
|
4
|
+
export declare const RequestPermissions: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export {};
|
|
6
|
+
//# sourceMappingURL=request-permissions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"request-permissions.d.ts","sourceRoot":"","sources":["../../../../../src/main/components/request-permissions.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,kBAAkB,IAAI,sBAAsB,EAAE,MAAM,+BAA+B,CAAC;AAG7F,KAAK,KAAK,GAAG,IAAI,CACf,KAAK,CAAC,cAAc,CAAC,OAAO,sBAAsB,CAAC,EACnD,mBAAmB,CACpB,CAAC;AAEF,eAAO,MAAM,kBAAkB,GAAI,OAAO,KAAK,4CAM9C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"download-manager-factory.d.ts","sourceRoot":"","sources":["../../../../../../src/main/factories/infra/download-manager-factory.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAG3E,eAAO,MAAM,mBAAmB,GAAI,QAAQ,UAAU,KAAG,eAExD,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { HttpClient } from '../../../data/protocols';
|
|
2
|
+
import { AxiosHttpClientAdapter } from '../../../infra';
|
|
3
|
+
export declare const makeHttpClient: (url: string, options: AxiosHttpClientAdapter.Options) => HttpClient;
|
|
4
|
+
//# sourceMappingURL=http-client-factory.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"http-client-factory.d.ts","sourceRoot":"","sources":["../../../../../../src/main/factories/infra/http-client-factory.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AAExD,eAAO,MAAM,cAAc,GACzB,KAAK,MAAM,EACX,SAAS,sBAAsB,CAAC,OAAO,KACtC,UAEF,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from './permission-manager-factory';
|
|
2
|
+
export * from './notification-manager-factory';
|
|
3
|
+
export * from './storage-factory';
|
|
4
|
+
export * from './http-client-factory';
|
|
5
|
+
export * from './offline-mutation-queue-factory';
|
|
6
|
+
export * from './download-manager-factory';
|
|
7
|
+
export * from './isomorphic-id-manager-factory';
|
|
8
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/main/factories/infra/index.ts"],"names":[],"mappings":"AAAA,cAAc,8BAA8B,CAAC;AAC7C,cAAc,gCAAgC,CAAC;AAC/C,cAAc,mBAAmB,CAAC;AAClC,cAAc,uBAAuB,CAAC;AACtC,cAAc,kCAAkC,CAAC;AACjD,cAAc,4BAA4B,CAAC;AAC3C,cAAc,iCAAiC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isomorphic-id-manager-factory.d.ts","sourceRoot":"","sources":["../../../../../../src/main/factories/infra/isomorphic-id-manager-factory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAC;AACrD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAEvD,eAAO,MAAM,uBAAuB,GAAI,SAAS,OAAO,wBAEvD,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { NotificationManager } from '../../../data/protocols';
|
|
2
|
+
import { NotifeeNotificationManagerAdapter } from '../../../infra/notifee-notification-manager-adapter';
|
|
3
|
+
export declare const makeNotificationManager: (options: NotifeeNotificationManagerAdapter.Options) => NotificationManager;
|
|
4
|
+
//# sourceMappingURL=notification-manager-factory.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"notification-manager-factory.d.ts","sourceRoot":"","sources":["../../../../../../src/main/factories/infra/notification-manager-factory.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AACnE,OAAO,EAAE,iCAAiC,EAAE,MAAM,qDAAqD,CAAC;AAExG,eAAO,MAAM,uBAAuB,GAClC,SAAS,iCAAiC,CAAC,OAAO,KACjD,mBAEF,CAAC"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import type { QueryClient } from '@tanstack/react-query';
|
|
2
|
+
import type { Storage } from '../../../data/protocols';
|
|
3
|
+
import { IsomorphicIdManager, OfflineMutationQueue, type OfflineActions } from '../../../infra';
|
|
4
|
+
export declare const makeOfflineMutationQueue: (actions: OfflineActions, storage: Storage, queryClient: QueryClient, isomorphicIdManager?: IsomorphicIdManager) => OfflineMutationQueue;
|
|
5
|
+
//# sourceMappingURL=offline-mutation-queue-factory.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"offline-mutation-queue-factory.d.ts","sourceRoot":"","sources":["../../../../../../src/main/factories/infra/offline-mutation-queue-factory.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AAEvD,OAAO,EACL,mBAAmB,EACnB,oBAAoB,EACpB,KAAK,cAAc,EACpB,MAAM,gBAAgB,CAAC;AAExB,eAAO,MAAM,wBAAwB,GACnC,SAAS,cAAc,EACvB,SAAS,OAAO,EAChB,aAAa,WAAW,EACxB,sBAAsB,mBAAmB,yBAQ1C,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"permission-manager-factory.d.ts","sourceRoot":"","sources":["../../../../../../src/main/factories/infra/permission-manager-factory.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AAGjE,eAAO,MAAM,qBAAqB,QAAO,iBAExC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"storage-factory.d.ts","sourceRoot":"","sources":["../../../../../../src/main/factories/infra/storage-factory.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AACvD,OAAO,EAAE,kBAAkB,EAAE,MAAM,gBAAgB,CAAC;AAEpD,eAAO,MAAM,WAAW,GACtB,SAAQ,kBAAkB,CAAC,MAG1B,KACA,OAEF,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/main/factories/use-cases/index.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC;AAChD,cAAc,mCAAmC,CAAC;AAClD,cAAc,mCAAmC,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { HttpClient } from '../../../data/protocols';
|
|
2
|
+
import { RemoteGetCommentList } from '../../../data/use-cases';
|
|
3
|
+
export declare const makeGetCommentList: (url: string, httpClient: HttpClient) => RemoteGetCommentList;
|
|
4
|
+
//# sourceMappingURL=remote-get-comment-list-factory.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remote-get-comment-list-factory.d.ts","sourceRoot":"","sources":["../../../../../../src/main/factories/use-cases/remote-get-comment-list-factory.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AAE/D,eAAO,MAAM,kBAAkB,GAAI,KAAK,MAAM,EAAE,YAAY,UAAU,yBAErE,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { HttpClient } from '../../../data/protocols';
|
|
2
|
+
import { RemoteGetImageList } from '../../../data/use-cases';
|
|
3
|
+
export declare const makeGetImageList: (url: string, httpClient: HttpClient) => RemoteGetImageList;
|
|
4
|
+
//# sourceMappingURL=remote-get-image-list-factory.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remote-get-image-list-factory.d.ts","sourceRoot":"","sources":["../../../../../../src/main/factories/use-cases/remote-get-image-list-factory.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAC1D,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAE7D,eAAO,MAAM,gBAAgB,GAAI,KAAK,MAAM,EAAE,YAAY,UAAU,uBAEnE,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { HttpClient, Storage } from '../../../data/protocols';
|
|
2
|
+
import { RemoteSendDiagnostics } from '../../../data/use-cases';
|
|
3
|
+
export declare const makeRemoteSendDiagnostics: (url: string, httpClient: HttpClient, storage: Storage) => RemoteSendDiagnostics;
|
|
4
|
+
//# sourceMappingURL=remote-send-diagnostics-factory.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remote-send-diagnostics-factory.d.ts","sourceRoot":"","sources":["../../../../../../src/main/factories/use-cases/remote-send-diagnostics-factory.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAC;AACnE,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC;AAEhE,eAAO,MAAM,yBAAyB,GACpC,KAAK,MAAM,EACX,YAAY,UAAU,EACtB,SAAS,OAAO,0BAGjB,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Pressable } from 'react-native';
|
|
3
|
+
type Props = React.ComponentProps<typeof Pressable> & {
|
|
4
|
+
visible: boolean;
|
|
5
|
+
onPress?: () => void;
|
|
6
|
+
animationDuration?: number;
|
|
7
|
+
};
|
|
8
|
+
export declare const UIBackdrop: React.MemoExoticComponent<({ onPress, style, animationDuration, visible, ...props }: Props) => import("react/jsx-runtime").JSX.Element | null>;
|
|
9
|
+
export {};
|
|
10
|
+
//# sourceMappingURL=UIBackdrop.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UIBackdrop.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/components/atoms/UIBackdrop.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAc,MAAM,cAAc,CAAC;AAGrD,KAAK,KAAK,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,SAAS,CAAC,GAAG;IACpD,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B,CAAC;AAIF,eAAO,MAAM,UAAU,uFAC4C,KAAK,oDAavE,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
type Props = {
|
|
3
|
+
color?: string;
|
|
4
|
+
size?: number;
|
|
5
|
+
selected?: boolean;
|
|
6
|
+
selectedColor?: string;
|
|
7
|
+
iconSize?: number;
|
|
8
|
+
};
|
|
9
|
+
export declare const UICheckbox: React.MemoExoticComponent<({ color, size, selected, selectedColor, iconSize }: Props) => import("react/jsx-runtime").JSX.Element>;
|
|
10
|
+
export {};
|
|
11
|
+
//# sourceMappingURL=UICheckbox.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UICheckbox.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/components/atoms/UICheckbox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,KAAK,KAAK,GAAG;IACX,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,eAAO,MAAM,UAAU,iFACgC,KAAK,6CA0B3D,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View } from 'react-native';
|
|
3
|
+
import type { ThemeColor } from '../../../theme';
|
|
4
|
+
type Props = React.ComponentProps<typeof View> & {
|
|
5
|
+
color?: ThemeColor;
|
|
6
|
+
size?: number;
|
|
7
|
+
};
|
|
8
|
+
export declare const UIDot: React.MemoExoticComponent<({ style, size, color: themeColor, ...props }: Props) => import("react/jsx-runtime").JSX.Element>;
|
|
9
|
+
export {};
|
|
10
|
+
//# sourceMappingURL=UIDot.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UIDot.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/components/atoms/UIDot.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAc,IAAI,EAAE,MAAM,cAAc,CAAC;AAEhD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAEjD,KAAK,KAAK,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,IAAI,CAAC,GAAG;IAC/C,KAAK,CAAC,EAAE,UAAU,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,eAAO,MAAM,KAAK,2EAC+B,KAAK,6CAmBrD,CAAC"}
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
import type { StyleProp, ViewStyle } from 'react-native';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export type IconName = keyof typeof icons;
|
|
4
|
+
type IconProps = {
|
|
5
|
+
size?: number;
|
|
6
|
+
color?: string;
|
|
7
|
+
style?: StyleProp<ViewStyle>;
|
|
8
|
+
};
|
|
9
|
+
type Props = IconProps & {
|
|
10
|
+
name: IconName;
|
|
11
|
+
};
|
|
12
|
+
export declare const UIIcon: React.MemoExoticComponent<({ name, ...props }: Props) => import("react/jsx-runtime").JSX.Element>;
|
|
13
|
+
declare const icons: {
|
|
14
|
+
comment: typeof IconComment;
|
|
15
|
+
user: typeof IconUser;
|
|
16
|
+
password: typeof IconPassword;
|
|
17
|
+
exit: typeof IconExit;
|
|
18
|
+
play: typeof IconPlay;
|
|
19
|
+
eye: typeof IconEye;
|
|
20
|
+
'eye-off': typeof IconEyeOff;
|
|
21
|
+
bell: typeof IconBell;
|
|
22
|
+
pin: typeof IconPin;
|
|
23
|
+
box: typeof IconBox;
|
|
24
|
+
truck: typeof IconTruck;
|
|
25
|
+
'chevron-right': typeof IconChevronRight;
|
|
26
|
+
'chevron-left': typeof IconChevronLeft;
|
|
27
|
+
home: typeof IconHome;
|
|
28
|
+
clock: typeof IconClock;
|
|
29
|
+
info: typeof IconInfo;
|
|
30
|
+
distance: typeof IconDistance;
|
|
31
|
+
calendar: typeof IconCalendar;
|
|
32
|
+
'calendar-alt': typeof IconCalendarAlt;
|
|
33
|
+
'truck-alt': typeof IconTruckAlt;
|
|
34
|
+
close: typeof IconClose;
|
|
35
|
+
pause: typeof IconPause;
|
|
36
|
+
later: typeof IconLater;
|
|
37
|
+
check: typeof IconCheck;
|
|
38
|
+
'check-alt': typeof IconCheckAlt;
|
|
39
|
+
'check-outlined': typeof IconCheckOutlined;
|
|
40
|
+
warning: typeof IconWarning;
|
|
41
|
+
'warning-outline': typeof IconWarningOutline;
|
|
42
|
+
'x-circle': typeof IconXCircle;
|
|
43
|
+
returned: typeof IconReturned;
|
|
44
|
+
waze: typeof IconWaze;
|
|
45
|
+
camera: typeof IconCamera;
|
|
46
|
+
battery: typeof IconBattery;
|
|
47
|
+
'no-wifi': typeof IconNoWifi;
|
|
48
|
+
gallery: typeof IconGallery;
|
|
49
|
+
trash: typeof IconTrash;
|
|
50
|
+
gps: typeof IconGPS;
|
|
51
|
+
'box-later': typeof IconBoxLater;
|
|
52
|
+
'flash-on': typeof IconFlashOn;
|
|
53
|
+
'flash-off': typeof IconFlashOff;
|
|
54
|
+
'flash-auto': typeof IconFlashAuto;
|
|
55
|
+
'flip-camera': typeof IconFlipCamera;
|
|
56
|
+
tool: typeof IconTool;
|
|
57
|
+
call: typeof IconCall;
|
|
58
|
+
block: typeof IconBlock;
|
|
59
|
+
search: typeof IconSearch;
|
|
60
|
+
add: typeof IconAdd;
|
|
61
|
+
pending: typeof IconPending;
|
|
62
|
+
settings: typeof IconSettings;
|
|
63
|
+
menu: typeof IconMenu;
|
|
64
|
+
number: typeof IconNumber;
|
|
65
|
+
edit: typeof IconEdit;
|
|
66
|
+
'chevron-up': typeof IconChevronUp;
|
|
67
|
+
'chevron-down': typeof IconChevronDown;
|
|
68
|
+
refresh: typeof IconRefresh;
|
|
69
|
+
'qr-code': typeof IconQRCode;
|
|
70
|
+
barcode: typeof IconBarCode;
|
|
71
|
+
map: typeof IconMap;
|
|
72
|
+
};
|
|
73
|
+
export declare const iconsNames: IconName[];
|
|
74
|
+
declare function IconMap({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
75
|
+
declare function IconBarCode({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
76
|
+
declare function IconQRCode({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
77
|
+
declare function IconRefresh({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
78
|
+
declare function IconEdit({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
79
|
+
declare function IconNumber({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
80
|
+
declare function IconMenu({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
81
|
+
declare function IconSettings({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
82
|
+
declare function IconPending({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
83
|
+
declare function IconAdd({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
84
|
+
declare function IconSearch({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
85
|
+
declare function IconBlock({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
86
|
+
declare function IconCall({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
87
|
+
declare function IconTool({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
88
|
+
declare function IconFlipCamera({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
89
|
+
declare function IconFlashAuto({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
90
|
+
declare function IconFlashOff({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
91
|
+
declare function IconFlashOn({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
92
|
+
declare function IconBoxLater({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
93
|
+
declare function IconGPS({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
94
|
+
declare function IconTrash({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
95
|
+
declare function IconGallery({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
96
|
+
declare function IconCheckOutlined({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
97
|
+
declare function IconCheckAlt({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
98
|
+
declare function IconNoWifi({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
99
|
+
declare function IconBattery({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
100
|
+
declare function IconCamera({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
101
|
+
declare function IconWaze({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
102
|
+
declare function IconReturned({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
103
|
+
declare function IconXCircle({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
104
|
+
declare function IconWarning({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
105
|
+
declare function IconWarningOutline({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
106
|
+
declare function IconCheck({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
107
|
+
declare function IconPause({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
108
|
+
declare function IconTruckAlt({ size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
109
|
+
declare function IconCalendar({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
110
|
+
declare function IconCalendarAlt({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
111
|
+
declare function IconDistance({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
112
|
+
declare function IconClock({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
113
|
+
declare function IconHome({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
114
|
+
declare function IconChevronUp({ color, size, style, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
115
|
+
declare function IconChevronDown({ color, size, style, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
116
|
+
declare function IconChevronRight({ color, size, style, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
117
|
+
declare function IconChevronLeft({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
118
|
+
declare function IconTruck({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
119
|
+
declare function IconPin({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
120
|
+
declare function IconBox({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
121
|
+
declare function IconBell({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
122
|
+
declare function IconEye({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
123
|
+
declare function IconEyeOff({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
124
|
+
declare function IconPlay({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
125
|
+
declare function IconExit({ color, size, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
126
|
+
declare function IconClose({ size, color, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
127
|
+
declare function IconPassword({ size, color, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
128
|
+
declare function IconUser({ size, color, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
129
|
+
declare function IconInfo({ size, color, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
130
|
+
declare function IconComment({ size, color, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
131
|
+
declare function IconLater({ size, color, ...props }: IconProps): import("react/jsx-runtime").JSX.Element;
|
|
132
|
+
export {};
|
|
133
|
+
//# sourceMappingURL=UIIcon.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UIIcon.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/components/atoms/UIIcon.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ActivityIndicator } from 'react-native';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { type ThemeColor } from '../../../theme';
|
|
4
|
+
type Props = React.ComponentProps<typeof ActivityIndicator> & {
|
|
5
|
+
color?: ThemeColor;
|
|
6
|
+
};
|
|
7
|
+
export declare const UILoading: ({ color: themeColor, size, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=UILoading.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UILoading.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/components/atoms/UILoading.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AACjD,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAiB,KAAK,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAEhE,KAAK,KAAK,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,iBAAiB,CAAC,GAAG;IAC5D,KAAK,CAAC,EAAE,UAAU,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,SAAS,GAAI,uCAIvB,KAAK,4CAIP,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ColorValue, StatusBarStyle } from 'react-native';
|
|
3
|
+
import { KeyboardAvoidingView } from 'react-native-keyboard-controller';
|
|
4
|
+
export type StatusBar = {
|
|
5
|
+
color?: string;
|
|
6
|
+
style?: StatusBarStyle;
|
|
7
|
+
};
|
|
8
|
+
type Props = Omit<React.ComponentProps<typeof KeyboardAvoidingView>, 'contentContainerStyle'> & {
|
|
9
|
+
fullWidth?: boolean;
|
|
10
|
+
center?: boolean;
|
|
11
|
+
dark?: boolean;
|
|
12
|
+
background?: ColorValue;
|
|
13
|
+
statusBar?: StatusBar;
|
|
14
|
+
children?: React.ReactNode;
|
|
15
|
+
appBar?: React.ReactNode;
|
|
16
|
+
behavior?: 'height' | 'padding';
|
|
17
|
+
};
|
|
18
|
+
export declare const UIPage: ({ children, fullWidth, center, dark, style, background, statusBar, appBar, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export {};
|
|
20
|
+
//# sourceMappingURL=UIPage.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UIPage.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/components/atoms/UIPage.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,UAAU,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAC/D,OAAO,EAAE,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AAKxE,MAAM,MAAM,SAAS,GAAG;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,cAAc,CAAC;CACxB,CAAC;AAEF,KAAK,KAAK,GAAG,IAAI,CACf,KAAK,CAAC,cAAc,CAAC,OAAO,oBAAoB,CAAC,EACjD,uBAAuB,CACxB,GAAG;IACF,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,QAAQ,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;CACjC,CAAC;AAEF,eAAO,MAAM,MAAM,GAAI,uFAapB,KAAK,4CA4CP,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { type StyleProp, type ViewStyle } from 'react-native';
|
|
3
|
+
type Props = {
|
|
4
|
+
progress: number;
|
|
5
|
+
outerStyle?: StyleProp<ViewStyle>;
|
|
6
|
+
innerStyle?: StyleProp<ViewStyle>;
|
|
7
|
+
};
|
|
8
|
+
export declare const UIProgress: React.MemoExoticComponent<({ progress, innerStyle, outerStyle }: Props) => import("react/jsx-runtime").JSX.Element>;
|
|
9
|
+
export {};
|
|
10
|
+
//# sourceMappingURL=UIProgress.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UIProgress.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/components/atoms/UIProgress.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAoB,KAAK,SAAS,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAQhF,KAAK,KAAK,GAAG;IACX,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;IAClC,UAAU,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CACnC,CAAC;AAEF,eAAO,MAAM,UAAU,mEACkB,KAAK,6CAsB7C,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ColorValue } from 'react-native';
|
|
3
|
+
import { KeyboardAwareScrollView } from 'react-native-keyboard-controller';
|
|
4
|
+
import type { StatusBar } from './UIPage';
|
|
5
|
+
type Props = React.ComponentProps<typeof KeyboardAwareScrollView> & {
|
|
6
|
+
fullWidth?: boolean;
|
|
7
|
+
center?: boolean;
|
|
8
|
+
dark?: boolean;
|
|
9
|
+
background?: ColorValue;
|
|
10
|
+
statusBar?: StatusBar;
|
|
11
|
+
children?: React.ReactNode;
|
|
12
|
+
appBar?: React.ReactNode;
|
|
13
|
+
behavior?: 'height' | 'padding';
|
|
14
|
+
};
|
|
15
|
+
export declare const UIScrollPage: ({ children, fullWidth, center, dark, style, background, statusBar, appBar, keyboardShouldPersistTaps, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=UIScrollPage.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UIScrollPage.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/components/atoms/UIScrollPage.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAE,uBAAuB,EAAE,MAAM,kCAAkC,CAAC;AAI3E,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,UAAU,CAAC;AAE1C,KAAK,KAAK,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,uBAAuB,CAAC,GAAG;IAClE,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,SAAS,CAAC,EAAE,SAAS,CAAC;IACtB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAC3B,MAAM,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACzB,QAAQ,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;CACjC,CAAC;AAEF,eAAO,MAAM,YAAY,GAAI,kHAc1B,KAAK,4CA6CP,CAAC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View } from 'react-native';
|
|
3
|
+
import { type ThemeColor } from '../../../theme';
|
|
4
|
+
type Props = React.ComponentProps<typeof View> & {
|
|
5
|
+
horizontal?: boolean;
|
|
6
|
+
color?: ThemeColor;
|
|
7
|
+
};
|
|
8
|
+
export declare const UISeparator: ({ horizontal, style, color: themeColor, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export {};
|
|
10
|
+
//# sourceMappingURL=UISeparator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UISeparator.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/components/atoms/UISeparator.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAc,IAAI,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAwB,KAAK,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAEvE,KAAK,KAAK,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,IAAI,CAAC,GAAG;IAC/C,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,KAAK,CAAC,EAAE,UAAU,CAAC;CACpB,CAAC;AAEF,eAAO,MAAM,WAAW,GAAI,oDAKzB,KAAK,4CAkBP,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { ThemeSpacing } from '../../../theme';
|
|
2
|
+
type Props = {
|
|
3
|
+
horizontal?: boolean;
|
|
4
|
+
size?: ThemeSpacing;
|
|
5
|
+
value?: number;
|
|
6
|
+
};
|
|
7
|
+
export declare const UISpacer: ({ value, horizontal, size }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=UISpacer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UISpacer.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/components/atoms/UISpacer.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAEnD,KAAK,KAAK,GAAG;IACX,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,eAAO,MAAM,QAAQ,GAAI,6BAAwC,KAAK,4CAUrE,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View, type ViewStyle } from 'react-native';
|
|
3
|
+
import { type ThemeSpacing } from '../../../theme';
|
|
4
|
+
type Props = React.ComponentProps<typeof View> & {
|
|
5
|
+
horizontal?: boolean;
|
|
6
|
+
center?: boolean;
|
|
7
|
+
justify?: ViewStyle['justifyContent'];
|
|
8
|
+
size?: ThemeSpacing;
|
|
9
|
+
spacing?: number;
|
|
10
|
+
flex?: number;
|
|
11
|
+
};
|
|
12
|
+
export declare const UIStack: ({ horizontal, spacing, size, justify, center, style, flex, children, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export {};
|
|
14
|
+
//# sourceMappingURL=UIStack.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UIStack.d.ts","sourceRoot":"","sources":["../../../../../../src/presentation/components/atoms/UIStack.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,IAAI,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,EAAS,KAAK,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE1D,KAAK,KAAK,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,IAAI,CAAC,GAAG;IAC/C,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,OAAO,CAAC,EAAE,SAAS,CAAC,gBAAgB,CAAC,CAAC;IACtC,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,eAAO,MAAM,OAAO,GAAI,iFAUrB,KAAK,4CAoBP,CAAC"}
|