@navegarti/rn-design-system 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -0
- package/README.md +37 -0
- package/lib/module/api/axios-adapter.js +174 -0
- package/lib/module/api/axios-adapter.js.map +1 -0
- package/lib/module/api/errors.js +91 -0
- package/lib/module/api/errors.js.map +1 -0
- package/lib/module/api/index.js +30 -0
- package/lib/module/api/index.js.map +1 -0
- package/lib/module/api/retry-strategy.js +68 -0
- package/lib/module/api/retry-strategy.js.map +1 -0
- package/lib/module/api/stores/auth-store.js +26 -0
- package/lib/module/api/stores/auth-store.js.map +1 -0
- package/lib/module/api/types.js +4 -0
- package/lib/module/api/types.js.map +1 -0
- package/lib/module/api.js +10 -0
- package/lib/module/api.js.map +1 -0
- package/lib/module/components/Button/index.js +32 -0
- package/lib/module/components/Button/index.js.map +1 -0
- package/lib/module/components/Button/styles.js +27 -0
- package/lib/module/components/Button/styles.js.map +1 -0
- package/lib/module/components/Carousel/components/dot.js +42 -0
- package/lib/module/components/Carousel/components/dot.js.map +1 -0
- package/lib/module/components/Carousel/components/footer.js +22 -0
- package/lib/module/components/Carousel/components/footer.js.map +1 -0
- package/lib/module/components/Carousel/components/list.js +55 -0
- package/lib/module/components/Carousel/components/list.js.map +1 -0
- package/lib/module/components/Carousel/components/pagination.js +29 -0
- package/lib/module/components/Carousel/components/pagination.js.map +1 -0
- package/lib/module/components/Carousel/components/see-all-button.js +24 -0
- package/lib/module/components/Carousel/components/see-all-button.js.map +1 -0
- package/lib/module/components/Carousel/context.js +15 -0
- package/lib/module/components/Carousel/context.js.map +1 -0
- package/lib/module/components/Carousel/index.js +142 -0
- package/lib/module/components/Carousel/index.js.map +1 -0
- package/lib/module/components/Carousel/styles.js +10 -0
- package/lib/module/components/Carousel/styles.js.map +1 -0
- package/lib/module/components/Carousel/types.js +4 -0
- package/lib/module/components/Carousel/types.js.map +1 -0
- package/lib/module/components/Checkbox/index.js +34 -0
- package/lib/module/components/Checkbox/index.js.map +1 -0
- package/lib/module/components/Checkbox/styles.js +9 -0
- package/lib/module/components/Checkbox/styles.js.map +1 -0
- package/lib/module/components/FAB/components/extended-fab.js +17 -0
- package/lib/module/components/FAB/components/extended-fab.js.map +1 -0
- package/lib/module/components/FAB/index.js +24 -0
- package/lib/module/components/FAB/index.js.map +1 -0
- package/lib/module/components/FAB/styles.js +40 -0
- package/lib/module/components/FAB/styles.js.map +1 -0
- package/lib/module/components/FAB/utils.js +49 -0
- package/lib/module/components/FAB/utils.js.map +1 -0
- package/lib/module/components/Flex/index.js +4 -0
- package/lib/module/components/Flex/index.js.map +1 -0
- package/lib/module/components/Flex/styles.js +31 -0
- package/lib/module/components/Flex/styles.js.map +1 -0
- package/lib/module/components/FormLabel/index.js +10 -0
- package/lib/module/components/FormLabel/index.js.map +1 -0
- package/lib/module/components/FormLabel/styles.js +10 -0
- package/lib/module/components/FormLabel/styles.js.map +1 -0
- package/lib/module/components/Input/components/input-control.js +25 -0
- package/lib/module/components/Input/components/input-control.js.map +1 -0
- package/lib/module/components/Input/components/input-error.js +17 -0
- package/lib/module/components/Input/components/input-error.js.map +1 -0
- package/lib/module/components/Input/components/input-field.js +48 -0
- package/lib/module/components/Input/components/input-field.js.map +1 -0
- package/lib/module/components/Input/components/input-icon.js +10 -0
- package/lib/module/components/Input/components/input-icon.js.map +1 -0
- package/lib/module/components/Input/components/input-password-toggle.js +30 -0
- package/lib/module/components/Input/components/input-password-toggle.js.map +1 -0
- package/lib/module/components/Input/components/input-root.js +45 -0
- package/lib/module/components/Input/components/input-root.js.map +1 -0
- package/lib/module/components/Input/context.js +12 -0
- package/lib/module/components/Input/context.js.map +1 -0
- package/lib/module/components/Input/index.js +18 -0
- package/lib/module/components/Input/index.js.map +1 -0
- package/lib/module/components/Input/styles.js +40 -0
- package/lib/module/components/Input/styles.js.map +1 -0
- package/lib/module/components/Input/utils.js +24 -0
- package/lib/module/components/Input/utils.js.map +1 -0
- package/lib/module/components/Margin/index.js +4 -0
- package/lib/module/components/Margin/index.js.map +1 -0
- package/lib/module/components/Margin/styles.js +15 -0
- package/lib/module/components/Margin/styles.js.map +1 -0
- package/lib/module/components/OTPInput/index.js +85 -0
- package/lib/module/components/OTPInput/index.js.map +1 -0
- package/lib/module/components/OTPInput/styles.js +23 -0
- package/lib/module/components/OTPInput/styles.js.map +1 -0
- package/lib/module/components/OTPInput/utils.js +24 -0
- package/lib/module/components/OTPInput/utils.js.map +1 -0
- package/lib/module/components/Padding/index.js +4 -0
- package/lib/module/components/Padding/index.js.map +1 -0
- package/lib/module/components/Padding/styles.js +15 -0
- package/lib/module/components/Padding/styles.js.map +1 -0
- package/lib/module/components/Radio/components/radio-item.js +52 -0
- package/lib/module/components/Radio/components/radio-item.js.map +1 -0
- package/lib/module/components/Radio/context.js +5 -0
- package/lib/module/components/Radio/context.js.map +1 -0
- package/lib/module/components/Radio/index.js +30 -0
- package/lib/module/components/Radio/index.js.map +1 -0
- package/lib/module/components/Radio/styles.js +33 -0
- package/lib/module/components/Radio/styles.js.map +1 -0
- package/lib/module/components/Radio/utils.js +15 -0
- package/lib/module/components/Radio/utils.js.map +1 -0
- package/lib/module/components/Select/components/error-icon.js +8 -0
- package/lib/module/components/Select/components/error-icon.js.map +1 -0
- package/lib/module/components/Select/components/select-error.js +17 -0
- package/lib/module/components/Select/components/select-error.js.map +1 -0
- package/lib/module/components/Select/components/select-field.js +67 -0
- package/lib/module/components/Select/components/select-field.js.map +1 -0
- package/lib/module/components/Select/context.js +12 -0
- package/lib/module/components/Select/context.js.map +1 -0
- package/lib/module/components/Select/index.js +26 -0
- package/lib/module/components/Select/index.js.map +1 -0
- package/lib/module/components/Select/styles.js +15 -0
- package/lib/module/components/Select/styles.js.map +1 -0
- package/lib/module/components/Skeleton/index.js +44 -0
- package/lib/module/components/Skeleton/index.js.map +1 -0
- package/lib/module/components/Switch/index.js +55 -0
- package/lib/module/components/Switch/index.js.map +1 -0
- package/lib/module/components/Switch/styles.js +31 -0
- package/lib/module/components/Switch/styles.js.map +1 -0
- package/lib/module/components/Switch/utils.js +12 -0
- package/lib/module/components/Switch/utils.js.map +1 -0
- package/lib/module/components/Text/index.js +4 -0
- package/lib/module/components/Text/index.js.map +1 -0
- package/lib/module/components/Text/styles.js +25 -0
- package/lib/module/components/Text/styles.js.map +1 -0
- package/lib/module/components.js +23 -0
- package/lib/module/components.js.map +1 -0
- package/lib/module/form.js +10 -0
- package/lib/module/form.js.map +1 -0
- package/lib/module/formValidators/ZodTypeValidator.js +38 -0
- package/lib/module/formValidators/ZodTypeValidator.js.map +1 -0
- package/lib/module/formValidators/index.js +8 -0
- package/lib/module/formValidators/index.js.map +1 -0
- package/lib/module/formValidators/types.js +4 -0
- package/lib/module/formValidators/types.js.map +1 -0
- package/lib/module/hooks/useAppIsActive.js +20 -0
- package/lib/module/hooks/useAppIsActive.js.map +1 -0
- package/lib/module/hooks/useAppSecurity.js +26 -0
- package/lib/module/hooks/useAppSecurity.js.map +1 -0
- package/lib/module/hooks/useNetworkStatus.js +55 -0
- package/lib/module/hooks/useNetworkStatus.js.map +1 -0
- package/lib/module/hooks/useStatusBar.js +26 -0
- package/lib/module/hooks/useStatusBar.js.map +1 -0
- package/lib/module/hooks.js +12 -0
- package/lib/module/hooks.js.map +1 -0
- package/lib/module/index.js +53 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/libs/tanstack-form.js +5 -0
- package/lib/module/libs/tanstack-form.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/module/utils/camelCase.js +7 -0
- package/lib/module/utils/camelCase.js.map +1 -0
- package/lib/module/utils/camelCaseJSONKeys.js +29 -0
- package/lib/module/utils/camelCaseJSONKeys.js.map +1 -0
- package/lib/module/utils/capitalizeWord.js +5 -0
- package/lib/module/utils/capitalizeWord.js.map +1 -0
- package/lib/module/utils/createLinkingPhoneNumberString.js +10 -0
- package/lib/module/utils/createLinkingPhoneNumberString.js.map +1 -0
- package/lib/module/utils/dateFormatters.js +34 -0
- package/lib/module/utils/dateFormatters.js.map +1 -0
- package/lib/module/utils/debounce.js +12 -0
- package/lib/module/utils/debounce.js.map +1 -0
- package/lib/module/utils/deepLinkParser.js +117 -0
- package/lib/module/utils/deepLinkParser.js.map +1 -0
- package/lib/module/utils/getAge.js +13 -0
- package/lib/module/utils/getAge.js.map +1 -0
- package/lib/module/utils/getOnlyNumbers.js +4 -0
- package/lib/module/utils/getOnlyNumbers.js.map +1 -0
- package/lib/module/utils/isArray.js +7 -0
- package/lib/module/utils/isArray.js.map +1 -0
- package/lib/module/utils/isObject.js +7 -0
- package/lib/module/utils/isObject.js.map +1 -0
- package/lib/module/utils/masks.js +5 -0
- package/lib/module/utils/masks.js.map +1 -0
- package/lib/module/utils/priceFormatter.js +9 -0
- package/lib/module/utils/priceFormatter.js.map +1 -0
- package/lib/module/utils/removeTextAccents.js +5 -0
- package/lib/module/utils/removeTextAccents.js.map +1 -0
- package/lib/module/utils/shadowStyledIos.js +8 -0
- package/lib/module/utils/shadowStyledIos.js.map +1 -0
- package/lib/module/utils/sortBy.js +18 -0
- package/lib/module/utils/sortBy.js.map +1 -0
- package/lib/module/utils/uniqBy.js +15 -0
- package/lib/module/utils/uniqBy.js.map +1 -0
- package/lib/module/utils/userFullnameInitialsExtractor.js +19 -0
- package/lib/module/utils/userFullnameInitialsExtractor.js.map +1 -0
- package/lib/module/utils.js +26 -0
- package/lib/module/utils.js.map +1 -0
- package/lib/typescript/package.json +1 -0
- package/lib/typescript/src/api/axios-adapter.d.ts +61 -0
- package/lib/typescript/src/api/axios-adapter.d.ts.map +1 -0
- package/lib/typescript/src/api/errors.d.ts +63 -0
- package/lib/typescript/src/api/errors.d.ts.map +1 -0
- package/lib/typescript/src/api/index.d.ts +21 -0
- package/lib/typescript/src/api/index.d.ts.map +1 -0
- package/lib/typescript/src/api/retry-strategy.d.ts +21 -0
- package/lib/typescript/src/api/retry-strategy.d.ts.map +1 -0
- package/lib/typescript/src/api/stores/auth-store.d.ts +15 -0
- package/lib/typescript/src/api/stores/auth-store.d.ts.map +1 -0
- package/lib/typescript/src/api/types.d.ts +68 -0
- package/lib/typescript/src/api/types.d.ts.map +1 -0
- package/lib/typescript/src/api.d.ts +8 -0
- package/lib/typescript/src/api.d.ts.map +1 -0
- package/lib/typescript/src/components/Button/index.d.ts +478 -0
- package/lib/typescript/src/components/Button/index.d.ts.map +1 -0
- package/lib/typescript/src/components/Button/styles.d.ts +318 -0
- package/lib/typescript/src/components/Button/styles.d.ts.map +1 -0
- package/lib/typescript/src/components/Carousel/components/dot.d.ts +7 -0
- package/lib/typescript/src/components/Carousel/components/dot.d.ts.map +1 -0
- package/lib/typescript/src/components/Carousel/components/footer.d.ts +6 -0
- package/lib/typescript/src/components/Carousel/components/footer.d.ts.map +1 -0
- package/lib/typescript/src/components/Carousel/components/list.d.ts +8 -0
- package/lib/typescript/src/components/Carousel/components/list.d.ts.map +1 -0
- package/lib/typescript/src/components/Carousel/components/pagination.d.ts +2 -0
- package/lib/typescript/src/components/Carousel/components/pagination.d.ts.map +1 -0
- package/lib/typescript/src/components/Carousel/components/see-all-button.d.ts +7 -0
- package/lib/typescript/src/components/Carousel/components/see-all-button.d.ts.map +1 -0
- package/lib/typescript/src/components/Carousel/context.d.ts +4 -0
- package/lib/typescript/src/components/Carousel/context.d.ts.map +1 -0
- package/lib/typescript/src/components/Carousel/index.d.ts +394 -0
- package/lib/typescript/src/components/Carousel/index.d.ts.map +1 -0
- package/lib/typescript/src/components/Carousel/styles.d.ts +79 -0
- package/lib/typescript/src/components/Carousel/styles.d.ts.map +1 -0
- package/lib/typescript/src/components/Carousel/types.d.ts +40 -0
- package/lib/typescript/src/components/Carousel/types.d.ts.map +1 -0
- package/lib/typescript/src/components/Checkbox/index.d.ts +10 -0
- package/lib/typescript/src/components/Checkbox/index.d.ts.map +1 -0
- package/lib/typescript/src/components/Checkbox/styles.d.ts +154 -0
- package/lib/typescript/src/components/Checkbox/styles.d.ts.map +1 -0
- package/lib/typescript/src/components/FAB/components/extended-fab.d.ts +3 -0
- package/lib/typescript/src/components/FAB/components/extended-fab.d.ts.map +1 -0
- package/lib/typescript/src/components/FAB/index.d.ts +8 -0
- package/lib/typescript/src/components/FAB/index.d.ts.map +1 -0
- package/lib/typescript/src/components/FAB/styles.d.ts +807 -0
- package/lib/typescript/src/components/FAB/styles.d.ts.map +1 -0
- package/lib/typescript/src/components/FAB/utils.d.ts +19 -0
- package/lib/typescript/src/components/FAB/utils.d.ts.map +1 -0
- package/lib/typescript/src/components/Flex/index.d.ts +2 -0
- package/lib/typescript/src/components/Flex/index.d.ts.map +1 -0
- package/lib/typescript/src/components/Flex/styles.d.ts +135 -0
- package/lib/typescript/src/components/Flex/styles.d.ts.map +1 -0
- package/lib/typescript/src/components/FormLabel/index.d.ts +3 -0
- package/lib/typescript/src/components/FormLabel/index.d.ts.map +1 -0
- package/lib/typescript/src/components/FormLabel/styles.d.ts +158 -0
- package/lib/typescript/src/components/FormLabel/styles.d.ts.map +1 -0
- package/lib/typescript/src/components/Input/components/input-control.d.ts +3 -0
- package/lib/typescript/src/components/Input/components/input-control.d.ts.map +1 -0
- package/lib/typescript/src/components/Input/components/input-error.d.ts +3 -0
- package/lib/typescript/src/components/Input/components/input-error.d.ts.map +1 -0
- package/lib/typescript/src/components/Input/components/input-field.d.ts +7 -0
- package/lib/typescript/src/components/Input/components/input-field.d.ts.map +1 -0
- package/lib/typescript/src/components/Input/components/input-icon.d.ts +3 -0
- package/lib/typescript/src/components/Input/components/input-icon.d.ts.map +1 -0
- package/lib/typescript/src/components/Input/components/input-password-toggle.d.ts +2 -0
- package/lib/typescript/src/components/Input/components/input-password-toggle.d.ts.map +1 -0
- package/lib/typescript/src/components/Input/components/input-root.d.ts +9 -0
- package/lib/typescript/src/components/Input/components/input-root.d.ts.map +1 -0
- package/lib/typescript/src/components/Input/context.d.ts +15 -0
- package/lib/typescript/src/components/Input/context.d.ts.map +1 -0
- package/lib/typescript/src/components/Input/index.d.ts +17 -0
- package/lib/typescript/src/components/Input/index.d.ts.map +1 -0
- package/lib/typescript/src/components/Input/styles.d.ts +738 -0
- package/lib/typescript/src/components/Input/styles.d.ts.map +1 -0
- package/lib/typescript/src/components/Input/utils.d.ts +3 -0
- package/lib/typescript/src/components/Input/utils.d.ts.map +1 -0
- package/lib/typescript/src/components/Margin/index.d.ts +2 -0
- package/lib/typescript/src/components/Margin/index.d.ts.map +1 -0
- package/lib/typescript/src/components/Margin/styles.d.ts +144 -0
- package/lib/typescript/src/components/Margin/styles.d.ts.map +1 -0
- package/lib/typescript/src/components/OTPInput/index.d.ts +18 -0
- package/lib/typescript/src/components/OTPInput/index.d.ts.map +1 -0
- package/lib/typescript/src/components/OTPInput/styles.d.ts +214 -0
- package/lib/typescript/src/components/OTPInput/styles.d.ts.map +1 -0
- package/lib/typescript/src/components/OTPInput/utils.d.ts +3 -0
- package/lib/typescript/src/components/OTPInput/utils.d.ts.map +1 -0
- package/lib/typescript/src/components/Padding/index.d.ts +2 -0
- package/lib/typescript/src/components/Padding/index.d.ts.map +1 -0
- package/lib/typescript/src/components/Padding/styles.d.ts +144 -0
- package/lib/typescript/src/components/Padding/styles.d.ts.map +1 -0
- package/lib/typescript/src/components/Radio/components/radio-item.d.ts +8 -0
- package/lib/typescript/src/components/Radio/components/radio-item.d.ts.map +1 -0
- package/lib/typescript/src/components/Radio/context.d.ts +8 -0
- package/lib/typescript/src/components/Radio/context.d.ts.map +1 -0
- package/lib/typescript/src/components/Radio/index.d.ts +86 -0
- package/lib/typescript/src/components/Radio/index.d.ts.map +1 -0
- package/lib/typescript/src/components/Radio/styles.d.ts +348 -0
- package/lib/typescript/src/components/Radio/styles.d.ts.map +1 -0
- package/lib/typescript/src/components/Radio/utils.d.ts +2 -0
- package/lib/typescript/src/components/Radio/utils.d.ts.map +1 -0
- package/lib/typescript/src/components/Select/components/error-icon.d.ts +2 -0
- package/lib/typescript/src/components/Select/components/error-icon.d.ts.map +1 -0
- package/lib/typescript/src/components/Select/components/select-error.d.ts +3 -0
- package/lib/typescript/src/components/Select/components/select-error.d.ts.map +1 -0
- package/lib/typescript/src/components/Select/components/select-field.d.ts +5 -0
- package/lib/typescript/src/components/Select/components/select-field.d.ts.map +1 -0
- package/lib/typescript/src/components/Select/context.d.ts +7 -0
- package/lib/typescript/src/components/Select/context.d.ts.map +1 -0
- package/lib/typescript/src/components/Select/index.d.ts +11 -0
- package/lib/typescript/src/components/Select/index.d.ts.map +1 -0
- package/lib/typescript/src/components/Select/styles.d.ts +315 -0
- package/lib/typescript/src/components/Select/styles.d.ts.map +1 -0
- package/lib/typescript/src/components/Skeleton/index.d.ts +11 -0
- package/lib/typescript/src/components/Skeleton/index.d.ts.map +1 -0
- package/lib/typescript/src/components/Switch/index.d.ts +11 -0
- package/lib/typescript/src/components/Switch/index.d.ts.map +1 -0
- package/lib/typescript/src/components/Switch/styles.d.ts +344 -0
- package/lib/typescript/src/components/Switch/styles.d.ts.map +1 -0
- package/lib/typescript/src/components/Switch/utils.d.ts +2 -0
- package/lib/typescript/src/components/Switch/utils.d.ts.map +1 -0
- package/lib/typescript/src/components/Text/index.d.ts +3 -0
- package/lib/typescript/src/components/Text/index.d.ts.map +1 -0
- package/lib/typescript/src/components/Text/styles.d.ts +169 -0
- package/lib/typescript/src/components/Text/styles.d.ts.map +1 -0
- package/lib/typescript/src/components.d.ts +20 -0
- package/lib/typescript/src/components.d.ts.map +1 -0
- package/lib/typescript/src/form.d.ts +7 -0
- package/lib/typescript/src/form.d.ts.map +1 -0
- package/lib/typescript/src/formValidators/ZodTypeValidator.d.ts +11 -0
- package/lib/typescript/src/formValidators/ZodTypeValidator.d.ts.map +1 -0
- package/lib/typescript/src/formValidators/index.d.ts +4 -0
- package/lib/typescript/src/formValidators/index.d.ts.map +1 -0
- package/lib/typescript/src/formValidators/types.d.ts +16 -0
- package/lib/typescript/src/formValidators/types.d.ts.map +1 -0
- package/lib/typescript/src/hooks/useAppIsActive.d.ts +2 -0
- package/lib/typescript/src/hooks/useAppIsActive.d.ts.map +1 -0
- package/lib/typescript/src/hooks/useAppSecurity.d.ts +8 -0
- package/lib/typescript/src/hooks/useAppSecurity.d.ts.map +1 -0
- package/lib/typescript/src/hooks/useNetworkStatus.d.ts +7 -0
- package/lib/typescript/src/hooks/useNetworkStatus.d.ts.map +1 -0
- package/lib/typescript/src/hooks/useStatusBar.d.ts +7 -0
- package/lib/typescript/src/hooks/useStatusBar.d.ts.map +1 -0
- package/lib/typescript/src/hooks.d.ts +9 -0
- package/lib/typescript/src/hooks.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +45 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/libs/tanstack-form.d.ts +3 -0
- package/lib/typescript/src/libs/tanstack-form.d.ts.map +1 -0
- package/lib/typescript/src/utils/camelCase.d.ts +2 -0
- package/lib/typescript/src/utils/camelCase.d.ts.map +1 -0
- package/lib/typescript/src/utils/camelCaseJSONKeys.d.ts +3 -0
- package/lib/typescript/src/utils/camelCaseJSONKeys.d.ts.map +1 -0
- package/lib/typescript/src/utils/capitalizeWord.d.ts +3 -0
- package/lib/typescript/src/utils/capitalizeWord.d.ts.map +1 -0
- package/lib/typescript/src/utils/createLinkingPhoneNumberString.d.ts +3 -0
- package/lib/typescript/src/utils/createLinkingPhoneNumberString.d.ts.map +1 -0
- package/lib/typescript/src/utils/dateFormatters.d.ts +7 -0
- package/lib/typescript/src/utils/dateFormatters.d.ts.map +1 -0
- package/lib/typescript/src/utils/debounce.d.ts +2 -0
- package/lib/typescript/src/utils/debounce.d.ts.map +1 -0
- package/lib/typescript/src/utils/deepLinkParser.d.ts +7 -0
- package/lib/typescript/src/utils/deepLinkParser.d.ts.map +1 -0
- package/lib/typescript/src/utils/getAge.d.ts +2 -0
- package/lib/typescript/src/utils/getAge.d.ts.map +1 -0
- package/lib/typescript/src/utils/getOnlyNumbers.d.ts +2 -0
- package/lib/typescript/src/utils/getOnlyNumbers.d.ts.map +1 -0
- package/lib/typescript/src/utils/isArray.d.ts +2 -0
- package/lib/typescript/src/utils/isArray.d.ts.map +1 -0
- package/lib/typescript/src/utils/isObject.d.ts +2 -0
- package/lib/typescript/src/utils/isObject.d.ts.map +1 -0
- package/lib/typescript/src/utils/masks.d.ts +3 -0
- package/lib/typescript/src/utils/masks.d.ts.map +1 -0
- package/lib/typescript/src/utils/priceFormatter.d.ts +2 -0
- package/lib/typescript/src/utils/priceFormatter.d.ts.map +1 -0
- package/lib/typescript/src/utils/removeTextAccents.d.ts +3 -0
- package/lib/typescript/src/utils/removeTextAccents.d.ts.map +1 -0
- package/lib/typescript/src/utils/shadowStyledIos.d.ts +3 -0
- package/lib/typescript/src/utils/shadowStyledIos.d.ts.map +1 -0
- package/lib/typescript/src/utils/sortBy.d.ts +2 -0
- package/lib/typescript/src/utils/sortBy.d.ts.map +1 -0
- package/lib/typescript/src/utils/uniqBy.d.ts +2 -0
- package/lib/typescript/src/utils/uniqBy.d.ts.map +1 -0
- package/lib/typescript/src/utils/userFullnameInitialsExtractor.d.ts +3 -0
- package/lib/typescript/src/utils/userFullnameInitialsExtractor.d.ts.map +1 -0
- package/lib/typescript/src/utils.d.ts +23 -0
- package/lib/typescript/src/utils.d.ts.map +1 -0
- package/package.json +234 -0
- package/src/api/axios-adapter.ts +272 -0
- package/src/api/errors.ts +113 -0
- package/src/api/index.ts +27 -0
- package/src/api/retry-strategy.ts +86 -0
- package/src/api/stores/auth-store.ts +26 -0
- package/src/api/types.ts +91 -0
- package/src/api.tsx +17 -0
- package/src/components/Button/index.tsx +35 -0
- package/src/components/Button/styles.ts +28 -0
- package/src/components/Carousel/components/dot.tsx +43 -0
- package/src/components/Carousel/components/footer.tsx +21 -0
- package/src/components/Carousel/components/list.tsx +81 -0
- package/src/components/Carousel/components/pagination.tsx +16 -0
- package/src/components/Carousel/components/see-all-button.tsx +25 -0
- package/src/components/Carousel/context.tsx +19 -0
- package/src/components/Carousel/index.tsx +191 -0
- package/src/components/Carousel/styles.ts +8 -0
- package/src/components/Carousel/types.ts +45 -0
- package/src/components/Checkbox/index.tsx +42 -0
- package/src/components/Checkbox/styles.ts +7 -0
- package/src/components/FAB/components/extended-fab.tsx +17 -0
- package/src/components/FAB/index.tsx +22 -0
- package/src/components/FAB/styles.ts +61 -0
- package/src/components/FAB/utils.ts +45 -0
- package/src/components/Flex/index.tsx +1 -0
- package/src/components/Flex/styles.ts +47 -0
- package/src/components/FormLabel/index.tsx +6 -0
- package/src/components/FormLabel/styles.ts +8 -0
- package/src/components/Input/components/input-control.tsx +20 -0
- package/src/components/Input/components/input-error.tsx +14 -0
- package/src/components/Input/components/input-field.tsx +55 -0
- package/src/components/Input/components/input-icon.tsx +7 -0
- package/src/components/Input/components/input-password-toggle.tsx +19 -0
- package/src/components/Input/components/input-root.tsx +55 -0
- package/src/components/Input/context.tsx +26 -0
- package/src/components/Input/index.tsx +17 -0
- package/src/components/Input/styles.ts +45 -0
- package/src/components/Input/utils.ts +27 -0
- package/src/components/Margin/index.tsx +1 -0
- package/src/components/Margin/styles.ts +23 -0
- package/src/components/OTPInput/index.tsx +116 -0
- package/src/components/OTPInput/styles.ts +23 -0
- package/src/components/OTPInput/utils.ts +31 -0
- package/src/components/Padding/index.tsx +1 -0
- package/src/components/Padding/styles.ts +23 -0
- package/src/components/Radio/components/radio-item.tsx +53 -0
- package/src/components/Radio/context.tsx +10 -0
- package/src/components/Radio/index.tsx +32 -0
- package/src/components/Radio/styles.ts +38 -0
- package/src/components/Radio/utils.ts +19 -0
- package/src/components/Select/components/error-icon.tsx +3 -0
- package/src/components/Select/components/select-error.tsx +14 -0
- package/src/components/Select/components/select-field.tsx +72 -0
- package/src/components/Select/context.tsx +17 -0
- package/src/components/Select/index.tsx +24 -0
- package/src/components/Select/styles.ts +15 -0
- package/src/components/Skeleton/index.tsx +60 -0
- package/src/components/Switch/index.tsx +61 -0
- package/src/components/Switch/styles.ts +32 -0
- package/src/components/Switch/utils.ts +15 -0
- package/src/components/Text/index.tsx +2 -0
- package/src/components/Text/styles.ts +44 -0
- package/src/components.tsx +20 -0
- package/src/form.tsx +7 -0
- package/src/formValidators/ZodTypeValidator.ts +58 -0
- package/src/formValidators/index.ts +8 -0
- package/src/formValidators/types.ts +21 -0
- package/src/hooks/useAppIsActive.ts +28 -0
- package/src/hooks/useAppSecurity.tsx +35 -0
- package/src/hooks/useNetworkStatus.ts +75 -0
- package/src/hooks/useStatusBar.ts +34 -0
- package/src/hooks.tsx +9 -0
- package/src/index.tsx +50 -0
- package/src/libs/tanstack-form.tsx +3 -0
- package/src/utils/camelCase.ts +6 -0
- package/src/utils/camelCaseJSONKeys.ts +31 -0
- package/src/utils/capitalizeWord.ts +4 -0
- package/src/utils/createLinkingPhoneNumberString.ts +13 -0
- package/src/utils/dateFormatters.ts +48 -0
- package/src/utils/debounce.ts +15 -0
- package/src/utils/deepLinkParser.ts +88 -0
- package/src/utils/getAge.ts +12 -0
- package/src/utils/getOnlyNumbers.ts +1 -0
- package/src/utils/isArray.ts +4 -0
- package/src/utils/isObject.ts +4 -0
- package/src/utils/masks.ts +3 -0
- package/src/utils/priceFormatter.ts +11 -0
- package/src/utils/removeTextAccents.ts +4 -0
- package/src/utils/shadowStyledIos.ts +6 -0
- package/src/utils/sortBy.ts +21 -0
- package/src/utils/uniqBy.ts +20 -0
- package/src/utils/userFullnameInitialsExtractor.ts +23 -0
- package/src/utils.tsx +23 -0
|
@@ -0,0 +1,807 @@
|
|
|
1
|
+
import type { TouchableOpacityProps } from 'react-native';
|
|
2
|
+
import { type Position, type Size } from './utils';
|
|
3
|
+
type FABProps = {
|
|
4
|
+
position?: Position;
|
|
5
|
+
size?: Size;
|
|
6
|
+
color?: string;
|
|
7
|
+
offset?: {
|
|
8
|
+
horizontal?: number;
|
|
9
|
+
vertical?: number;
|
|
10
|
+
};
|
|
11
|
+
} & TouchableOpacityProps;
|
|
12
|
+
export type { FABProps };
|
|
13
|
+
export type ExtendedFABProps = FABProps & {
|
|
14
|
+
label: string;
|
|
15
|
+
labelColor?: string;
|
|
16
|
+
};
|
|
17
|
+
export declare const DefaultFABStyle: import("@emotion/native").StyledComponent<Omit<Readonly<Omit<Readonly<{
|
|
18
|
+
children?: React.ReactNode | undefined;
|
|
19
|
+
delayLongPress?: number | undefined;
|
|
20
|
+
delayPressIn?: number | undefined;
|
|
21
|
+
delayPressOut?: number | undefined;
|
|
22
|
+
disabled?: boolean | undefined;
|
|
23
|
+
focusable?: boolean | undefined;
|
|
24
|
+
hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
25
|
+
id?: string;
|
|
26
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
27
|
+
nativeID?: string | undefined;
|
|
28
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
|
|
29
|
+
onBlur?: ((event: import("react-native").BlurEvent) => unknown) | undefined;
|
|
30
|
+
onFocus?: ((event: import("react-native").FocusEvent) => unknown) | undefined;
|
|
31
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
|
|
32
|
+
onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
33
|
+
onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
34
|
+
onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
35
|
+
onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
36
|
+
pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
37
|
+
rejectResponderTermination?: boolean | undefined;
|
|
38
|
+
testID?: string | undefined;
|
|
39
|
+
style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
|
|
40
|
+
} & import("react-native/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback").TouchableWithoutFeedbackPropsAndroid & Readonly<Omit<Readonly<{
|
|
41
|
+
accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
|
|
42
|
+
"aria-labelledby"?: string | undefined;
|
|
43
|
+
accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
|
|
44
|
+
"aria-live"?: ("polite" | "assertive" | "off") | undefined;
|
|
45
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
46
|
+
screenReaderFocusable?: boolean;
|
|
47
|
+
}>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
|
|
48
|
+
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
49
|
+
accessibilityViewIsModal?: boolean | undefined;
|
|
50
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
51
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
52
|
+
"aria-modal"?: boolean | undefined;
|
|
53
|
+
accessibilityElementsHidden?: boolean | undefined;
|
|
54
|
+
accessibilityLanguage?: string | undefined;
|
|
55
|
+
accessibilityRespondsToUserInteraction?: boolean | undefined;
|
|
56
|
+
}>, "role" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
|
|
57
|
+
accessible?: boolean | undefined;
|
|
58
|
+
accessibilityLabel?: string | undefined;
|
|
59
|
+
accessibilityHint?: string | undefined;
|
|
60
|
+
"aria-label"?: string | undefined;
|
|
61
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
62
|
+
role?: import("react-native").Role | undefined;
|
|
63
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
64
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
65
|
+
"aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
|
|
66
|
+
"aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
|
|
67
|
+
"aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
|
|
68
|
+
"aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
|
|
69
|
+
accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
|
|
70
|
+
"aria-busy"?: boolean | undefined;
|
|
71
|
+
"aria-checked"?: (boolean | undefined) | "mixed";
|
|
72
|
+
"aria-disabled"?: boolean | undefined;
|
|
73
|
+
"aria-expanded"?: boolean | undefined;
|
|
74
|
+
"aria-selected"?: boolean | undefined;
|
|
75
|
+
"aria-hidden"?: boolean | undefined;
|
|
76
|
+
}>>, "style" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
|
|
77
|
+
hasTVPreferredFocus?: boolean | undefined;
|
|
78
|
+
nextFocusDown?: number | undefined;
|
|
79
|
+
nextFocusForward?: number | undefined;
|
|
80
|
+
nextFocusLeft?: number | undefined;
|
|
81
|
+
nextFocusRight?: number | undefined;
|
|
82
|
+
nextFocusUp?: number | undefined;
|
|
83
|
+
}>, "style" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
|
|
84
|
+
activeOpacity?: number | undefined;
|
|
85
|
+
style?: import("react-native/types_generated/Libraries/Animated/createAnimatedComponent").WithAnimatedValue<import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp> | undefined;
|
|
86
|
+
hostRef?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>> | undefined;
|
|
87
|
+
}>, never>>, "ref"> & {
|
|
88
|
+
ref?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>>;
|
|
89
|
+
} & {
|
|
90
|
+
theme?: import("@emotion/react").Theme;
|
|
91
|
+
as?: React.ElementType;
|
|
92
|
+
} & {
|
|
93
|
+
position?: Position;
|
|
94
|
+
size?: Size;
|
|
95
|
+
color?: string;
|
|
96
|
+
offset?: {
|
|
97
|
+
horizontal?: number;
|
|
98
|
+
vertical?: number;
|
|
99
|
+
};
|
|
100
|
+
} & Readonly<Omit<Readonly<{
|
|
101
|
+
children?: React.ReactNode | undefined;
|
|
102
|
+
delayLongPress?: number | undefined;
|
|
103
|
+
delayPressIn?: number | undefined;
|
|
104
|
+
delayPressOut?: number | undefined;
|
|
105
|
+
disabled?: boolean | undefined;
|
|
106
|
+
focusable?: boolean | undefined;
|
|
107
|
+
hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
108
|
+
id?: string;
|
|
109
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
110
|
+
nativeID?: string | undefined;
|
|
111
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
|
|
112
|
+
onBlur?: ((event: import("react-native").BlurEvent) => unknown) | undefined;
|
|
113
|
+
onFocus?: ((event: import("react-native").FocusEvent) => unknown) | undefined;
|
|
114
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
|
|
115
|
+
onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
116
|
+
onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
117
|
+
onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
118
|
+
onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
119
|
+
pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
120
|
+
rejectResponderTermination?: boolean | undefined;
|
|
121
|
+
testID?: string | undefined;
|
|
122
|
+
style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
|
|
123
|
+
} & import("react-native/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback").TouchableWithoutFeedbackPropsAndroid & Readonly<Omit<Readonly<{
|
|
124
|
+
accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
|
|
125
|
+
"aria-labelledby"?: string | undefined;
|
|
126
|
+
accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
|
|
127
|
+
"aria-live"?: ("polite" | "assertive" | "off") | undefined;
|
|
128
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
129
|
+
screenReaderFocusable?: boolean;
|
|
130
|
+
}>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
|
|
131
|
+
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
132
|
+
accessibilityViewIsModal?: boolean | undefined;
|
|
133
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
134
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
135
|
+
"aria-modal"?: boolean | undefined;
|
|
136
|
+
accessibilityElementsHidden?: boolean | undefined;
|
|
137
|
+
accessibilityLanguage?: string | undefined;
|
|
138
|
+
accessibilityRespondsToUserInteraction?: boolean | undefined;
|
|
139
|
+
}>, "role" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
|
|
140
|
+
accessible?: boolean | undefined;
|
|
141
|
+
accessibilityLabel?: string | undefined;
|
|
142
|
+
accessibilityHint?: string | undefined;
|
|
143
|
+
"aria-label"?: string | undefined;
|
|
144
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
145
|
+
role?: import("react-native").Role | undefined;
|
|
146
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
147
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
148
|
+
"aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
|
|
149
|
+
"aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
|
|
150
|
+
"aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
|
|
151
|
+
"aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
|
|
152
|
+
accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
|
|
153
|
+
"aria-busy"?: boolean | undefined;
|
|
154
|
+
"aria-checked"?: (boolean | undefined) | "mixed";
|
|
155
|
+
"aria-disabled"?: boolean | undefined;
|
|
156
|
+
"aria-expanded"?: boolean | undefined;
|
|
157
|
+
"aria-selected"?: boolean | undefined;
|
|
158
|
+
"aria-hidden"?: boolean | undefined;
|
|
159
|
+
}>>, "style" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
|
|
160
|
+
hasTVPreferredFocus?: boolean | undefined;
|
|
161
|
+
nextFocusDown?: number | undefined;
|
|
162
|
+
nextFocusForward?: number | undefined;
|
|
163
|
+
nextFocusLeft?: number | undefined;
|
|
164
|
+
nextFocusRight?: number | undefined;
|
|
165
|
+
nextFocusUp?: number | undefined;
|
|
166
|
+
}>, "style" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
|
|
167
|
+
activeOpacity?: number | undefined;
|
|
168
|
+
style?: import("react-native/types_generated/Libraries/Animated/createAnimatedComponent").WithAnimatedValue<import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp> | undefined;
|
|
169
|
+
hostRef?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>> | undefined;
|
|
170
|
+
}>, never>>, {}, {
|
|
171
|
+
ref?: import("react").Ref<any> | undefined;
|
|
172
|
+
}>;
|
|
173
|
+
export declare const SmallFAB: import("@emotion/native").StyledComponent<Omit<Readonly<Omit<Readonly<{
|
|
174
|
+
children?: React.ReactNode | undefined;
|
|
175
|
+
delayLongPress?: number | undefined;
|
|
176
|
+
delayPressIn?: number | undefined;
|
|
177
|
+
delayPressOut?: number | undefined;
|
|
178
|
+
disabled?: boolean | undefined;
|
|
179
|
+
focusable?: boolean | undefined;
|
|
180
|
+
hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
181
|
+
id?: string;
|
|
182
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
183
|
+
nativeID?: string | undefined;
|
|
184
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
|
|
185
|
+
onBlur?: ((event: import("react-native").BlurEvent) => unknown) | undefined;
|
|
186
|
+
onFocus?: ((event: import("react-native").FocusEvent) => unknown) | undefined;
|
|
187
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
|
|
188
|
+
onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
189
|
+
onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
190
|
+
onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
191
|
+
onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
192
|
+
pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
193
|
+
rejectResponderTermination?: boolean | undefined;
|
|
194
|
+
testID?: string | undefined;
|
|
195
|
+
style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
|
|
196
|
+
} & import("react-native/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback").TouchableWithoutFeedbackPropsAndroid & Readonly<Omit<Readonly<{
|
|
197
|
+
accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
|
|
198
|
+
"aria-labelledby"?: string | undefined;
|
|
199
|
+
accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
|
|
200
|
+
"aria-live"?: ("polite" | "assertive" | "off") | undefined;
|
|
201
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
202
|
+
screenReaderFocusable?: boolean;
|
|
203
|
+
}>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
|
|
204
|
+
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
205
|
+
accessibilityViewIsModal?: boolean | undefined;
|
|
206
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
207
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
208
|
+
"aria-modal"?: boolean | undefined;
|
|
209
|
+
accessibilityElementsHidden?: boolean | undefined;
|
|
210
|
+
accessibilityLanguage?: string | undefined;
|
|
211
|
+
accessibilityRespondsToUserInteraction?: boolean | undefined;
|
|
212
|
+
}>, "role" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
|
|
213
|
+
accessible?: boolean | undefined;
|
|
214
|
+
accessibilityLabel?: string | undefined;
|
|
215
|
+
accessibilityHint?: string | undefined;
|
|
216
|
+
"aria-label"?: string | undefined;
|
|
217
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
218
|
+
role?: import("react-native").Role | undefined;
|
|
219
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
220
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
221
|
+
"aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
|
|
222
|
+
"aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
|
|
223
|
+
"aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
|
|
224
|
+
"aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
|
|
225
|
+
accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
|
|
226
|
+
"aria-busy"?: boolean | undefined;
|
|
227
|
+
"aria-checked"?: (boolean | undefined) | "mixed";
|
|
228
|
+
"aria-disabled"?: boolean | undefined;
|
|
229
|
+
"aria-expanded"?: boolean | undefined;
|
|
230
|
+
"aria-selected"?: boolean | undefined;
|
|
231
|
+
"aria-hidden"?: boolean | undefined;
|
|
232
|
+
}>>, "style" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
|
|
233
|
+
hasTVPreferredFocus?: boolean | undefined;
|
|
234
|
+
nextFocusDown?: number | undefined;
|
|
235
|
+
nextFocusForward?: number | undefined;
|
|
236
|
+
nextFocusLeft?: number | undefined;
|
|
237
|
+
nextFocusRight?: number | undefined;
|
|
238
|
+
nextFocusUp?: number | undefined;
|
|
239
|
+
}>, "style" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
|
|
240
|
+
activeOpacity?: number | undefined;
|
|
241
|
+
style?: import("react-native/types_generated/Libraries/Animated/createAnimatedComponent").WithAnimatedValue<import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp> | undefined;
|
|
242
|
+
hostRef?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>> | undefined;
|
|
243
|
+
}>, never>>, "ref"> & {
|
|
244
|
+
ref?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>>;
|
|
245
|
+
} & {
|
|
246
|
+
theme?: import("@emotion/react").Theme;
|
|
247
|
+
as?: React.ElementType;
|
|
248
|
+
} & {
|
|
249
|
+
position?: Position;
|
|
250
|
+
size?: Size;
|
|
251
|
+
color?: string;
|
|
252
|
+
offset?: {
|
|
253
|
+
horizontal?: number;
|
|
254
|
+
vertical?: number;
|
|
255
|
+
};
|
|
256
|
+
} & Readonly<Omit<Readonly<{
|
|
257
|
+
children?: React.ReactNode | undefined;
|
|
258
|
+
delayLongPress?: number | undefined;
|
|
259
|
+
delayPressIn?: number | undefined;
|
|
260
|
+
delayPressOut?: number | undefined;
|
|
261
|
+
disabled?: boolean | undefined;
|
|
262
|
+
focusable?: boolean | undefined;
|
|
263
|
+
hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
264
|
+
id?: string;
|
|
265
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
266
|
+
nativeID?: string | undefined;
|
|
267
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
|
|
268
|
+
onBlur?: ((event: import("react-native").BlurEvent) => unknown) | undefined;
|
|
269
|
+
onFocus?: ((event: import("react-native").FocusEvent) => unknown) | undefined;
|
|
270
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
|
|
271
|
+
onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
272
|
+
onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
273
|
+
onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
274
|
+
onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
275
|
+
pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
276
|
+
rejectResponderTermination?: boolean | undefined;
|
|
277
|
+
testID?: string | undefined;
|
|
278
|
+
style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
|
|
279
|
+
} & import("react-native/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback").TouchableWithoutFeedbackPropsAndroid & Readonly<Omit<Readonly<{
|
|
280
|
+
accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
|
|
281
|
+
"aria-labelledby"?: string | undefined;
|
|
282
|
+
accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
|
|
283
|
+
"aria-live"?: ("polite" | "assertive" | "off") | undefined;
|
|
284
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
285
|
+
screenReaderFocusable?: boolean;
|
|
286
|
+
}>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
|
|
287
|
+
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
288
|
+
accessibilityViewIsModal?: boolean | undefined;
|
|
289
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
290
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
291
|
+
"aria-modal"?: boolean | undefined;
|
|
292
|
+
accessibilityElementsHidden?: boolean | undefined;
|
|
293
|
+
accessibilityLanguage?: string | undefined;
|
|
294
|
+
accessibilityRespondsToUserInteraction?: boolean | undefined;
|
|
295
|
+
}>, "role" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
|
|
296
|
+
accessible?: boolean | undefined;
|
|
297
|
+
accessibilityLabel?: string | undefined;
|
|
298
|
+
accessibilityHint?: string | undefined;
|
|
299
|
+
"aria-label"?: string | undefined;
|
|
300
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
301
|
+
role?: import("react-native").Role | undefined;
|
|
302
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
303
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
304
|
+
"aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
|
|
305
|
+
"aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
|
|
306
|
+
"aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
|
|
307
|
+
"aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
|
|
308
|
+
accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
|
|
309
|
+
"aria-busy"?: boolean | undefined;
|
|
310
|
+
"aria-checked"?: (boolean | undefined) | "mixed";
|
|
311
|
+
"aria-disabled"?: boolean | undefined;
|
|
312
|
+
"aria-expanded"?: boolean | undefined;
|
|
313
|
+
"aria-selected"?: boolean | undefined;
|
|
314
|
+
"aria-hidden"?: boolean | undefined;
|
|
315
|
+
}>>, "style" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
|
|
316
|
+
hasTVPreferredFocus?: boolean | undefined;
|
|
317
|
+
nextFocusDown?: number | undefined;
|
|
318
|
+
nextFocusForward?: number | undefined;
|
|
319
|
+
nextFocusLeft?: number | undefined;
|
|
320
|
+
nextFocusRight?: number | undefined;
|
|
321
|
+
nextFocusUp?: number | undefined;
|
|
322
|
+
}>, "style" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
|
|
323
|
+
activeOpacity?: number | undefined;
|
|
324
|
+
style?: import("react-native/types_generated/Libraries/Animated/createAnimatedComponent").WithAnimatedValue<import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp> | undefined;
|
|
325
|
+
hostRef?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>> | undefined;
|
|
326
|
+
}>, never>> & {
|
|
327
|
+
ref?: import("react").Ref<any> | undefined;
|
|
328
|
+
} & {
|
|
329
|
+
theme?: import("@emotion/react").Theme;
|
|
330
|
+
as?: React.ElementType;
|
|
331
|
+
}, {}, {}>;
|
|
332
|
+
export declare const LargeFAB: import("@emotion/native").StyledComponent<Omit<Readonly<Omit<Readonly<{
|
|
333
|
+
children?: React.ReactNode | undefined;
|
|
334
|
+
delayLongPress?: number | undefined;
|
|
335
|
+
delayPressIn?: number | undefined;
|
|
336
|
+
delayPressOut?: number | undefined;
|
|
337
|
+
disabled?: boolean | undefined;
|
|
338
|
+
focusable?: boolean | undefined;
|
|
339
|
+
hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
340
|
+
id?: string;
|
|
341
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
342
|
+
nativeID?: string | undefined;
|
|
343
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
|
|
344
|
+
onBlur?: ((event: import("react-native").BlurEvent) => unknown) | undefined;
|
|
345
|
+
onFocus?: ((event: import("react-native").FocusEvent) => unknown) | undefined;
|
|
346
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
|
|
347
|
+
onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
348
|
+
onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
349
|
+
onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
350
|
+
onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
351
|
+
pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
352
|
+
rejectResponderTermination?: boolean | undefined;
|
|
353
|
+
testID?: string | undefined;
|
|
354
|
+
style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
|
|
355
|
+
} & import("react-native/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback").TouchableWithoutFeedbackPropsAndroid & Readonly<Omit<Readonly<{
|
|
356
|
+
accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
|
|
357
|
+
"aria-labelledby"?: string | undefined;
|
|
358
|
+
accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
|
|
359
|
+
"aria-live"?: ("polite" | "assertive" | "off") | undefined;
|
|
360
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
361
|
+
screenReaderFocusable?: boolean;
|
|
362
|
+
}>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
|
|
363
|
+
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
364
|
+
accessibilityViewIsModal?: boolean | undefined;
|
|
365
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
366
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
367
|
+
"aria-modal"?: boolean | undefined;
|
|
368
|
+
accessibilityElementsHidden?: boolean | undefined;
|
|
369
|
+
accessibilityLanguage?: string | undefined;
|
|
370
|
+
accessibilityRespondsToUserInteraction?: boolean | undefined;
|
|
371
|
+
}>, "role" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
|
|
372
|
+
accessible?: boolean | undefined;
|
|
373
|
+
accessibilityLabel?: string | undefined;
|
|
374
|
+
accessibilityHint?: string | undefined;
|
|
375
|
+
"aria-label"?: string | undefined;
|
|
376
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
377
|
+
role?: import("react-native").Role | undefined;
|
|
378
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
379
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
380
|
+
"aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
|
|
381
|
+
"aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
|
|
382
|
+
"aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
|
|
383
|
+
"aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
|
|
384
|
+
accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
|
|
385
|
+
"aria-busy"?: boolean | undefined;
|
|
386
|
+
"aria-checked"?: (boolean | undefined) | "mixed";
|
|
387
|
+
"aria-disabled"?: boolean | undefined;
|
|
388
|
+
"aria-expanded"?: boolean | undefined;
|
|
389
|
+
"aria-selected"?: boolean | undefined;
|
|
390
|
+
"aria-hidden"?: boolean | undefined;
|
|
391
|
+
}>>, "style" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
|
|
392
|
+
hasTVPreferredFocus?: boolean | undefined;
|
|
393
|
+
nextFocusDown?: number | undefined;
|
|
394
|
+
nextFocusForward?: number | undefined;
|
|
395
|
+
nextFocusLeft?: number | undefined;
|
|
396
|
+
nextFocusRight?: number | undefined;
|
|
397
|
+
nextFocusUp?: number | undefined;
|
|
398
|
+
}>, "style" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
|
|
399
|
+
activeOpacity?: number | undefined;
|
|
400
|
+
style?: import("react-native/types_generated/Libraries/Animated/createAnimatedComponent").WithAnimatedValue<import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp> | undefined;
|
|
401
|
+
hostRef?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>> | undefined;
|
|
402
|
+
}>, never>>, "ref"> & {
|
|
403
|
+
ref?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>>;
|
|
404
|
+
} & {
|
|
405
|
+
theme?: import("@emotion/react").Theme;
|
|
406
|
+
as?: React.ElementType;
|
|
407
|
+
} & {
|
|
408
|
+
position?: Position;
|
|
409
|
+
size?: Size;
|
|
410
|
+
color?: string;
|
|
411
|
+
offset?: {
|
|
412
|
+
horizontal?: number;
|
|
413
|
+
vertical?: number;
|
|
414
|
+
};
|
|
415
|
+
} & Readonly<Omit<Readonly<{
|
|
416
|
+
children?: React.ReactNode | undefined;
|
|
417
|
+
delayLongPress?: number | undefined;
|
|
418
|
+
delayPressIn?: number | undefined;
|
|
419
|
+
delayPressOut?: number | undefined;
|
|
420
|
+
disabled?: boolean | undefined;
|
|
421
|
+
focusable?: boolean | undefined;
|
|
422
|
+
hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
423
|
+
id?: string;
|
|
424
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
425
|
+
nativeID?: string | undefined;
|
|
426
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
|
|
427
|
+
onBlur?: ((event: import("react-native").BlurEvent) => unknown) | undefined;
|
|
428
|
+
onFocus?: ((event: import("react-native").FocusEvent) => unknown) | undefined;
|
|
429
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
|
|
430
|
+
onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
431
|
+
onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
432
|
+
onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
433
|
+
onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
434
|
+
pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
435
|
+
rejectResponderTermination?: boolean | undefined;
|
|
436
|
+
testID?: string | undefined;
|
|
437
|
+
style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
|
|
438
|
+
} & import("react-native/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback").TouchableWithoutFeedbackPropsAndroid & Readonly<Omit<Readonly<{
|
|
439
|
+
accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
|
|
440
|
+
"aria-labelledby"?: string | undefined;
|
|
441
|
+
accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
|
|
442
|
+
"aria-live"?: ("polite" | "assertive" | "off") | undefined;
|
|
443
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
444
|
+
screenReaderFocusable?: boolean;
|
|
445
|
+
}>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
|
|
446
|
+
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
447
|
+
accessibilityViewIsModal?: boolean | undefined;
|
|
448
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
449
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
450
|
+
"aria-modal"?: boolean | undefined;
|
|
451
|
+
accessibilityElementsHidden?: boolean | undefined;
|
|
452
|
+
accessibilityLanguage?: string | undefined;
|
|
453
|
+
accessibilityRespondsToUserInteraction?: boolean | undefined;
|
|
454
|
+
}>, "role" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
|
|
455
|
+
accessible?: boolean | undefined;
|
|
456
|
+
accessibilityLabel?: string | undefined;
|
|
457
|
+
accessibilityHint?: string | undefined;
|
|
458
|
+
"aria-label"?: string | undefined;
|
|
459
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
460
|
+
role?: import("react-native").Role | undefined;
|
|
461
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
462
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
463
|
+
"aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
|
|
464
|
+
"aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
|
|
465
|
+
"aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
|
|
466
|
+
"aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
|
|
467
|
+
accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
|
|
468
|
+
"aria-busy"?: boolean | undefined;
|
|
469
|
+
"aria-checked"?: (boolean | undefined) | "mixed";
|
|
470
|
+
"aria-disabled"?: boolean | undefined;
|
|
471
|
+
"aria-expanded"?: boolean | undefined;
|
|
472
|
+
"aria-selected"?: boolean | undefined;
|
|
473
|
+
"aria-hidden"?: boolean | undefined;
|
|
474
|
+
}>>, "style" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
|
|
475
|
+
hasTVPreferredFocus?: boolean | undefined;
|
|
476
|
+
nextFocusDown?: number | undefined;
|
|
477
|
+
nextFocusForward?: number | undefined;
|
|
478
|
+
nextFocusLeft?: number | undefined;
|
|
479
|
+
nextFocusRight?: number | undefined;
|
|
480
|
+
nextFocusUp?: number | undefined;
|
|
481
|
+
}>, "style" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
|
|
482
|
+
activeOpacity?: number | undefined;
|
|
483
|
+
style?: import("react-native/types_generated/Libraries/Animated/createAnimatedComponent").WithAnimatedValue<import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp> | undefined;
|
|
484
|
+
hostRef?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>> | undefined;
|
|
485
|
+
}>, never>> & {
|
|
486
|
+
ref?: import("react").Ref<any> | undefined;
|
|
487
|
+
} & {
|
|
488
|
+
theme?: import("@emotion/react").Theme;
|
|
489
|
+
as?: React.ElementType;
|
|
490
|
+
}, {}, {}>;
|
|
491
|
+
export declare const ExtendedFABContainer: import("@emotion/native").StyledComponent<Omit<Readonly<Omit<Readonly<{
|
|
492
|
+
children?: React.ReactNode | undefined;
|
|
493
|
+
delayLongPress?: number | undefined;
|
|
494
|
+
delayPressIn?: number | undefined;
|
|
495
|
+
delayPressOut?: number | undefined;
|
|
496
|
+
disabled?: boolean | undefined;
|
|
497
|
+
focusable?: boolean | undefined;
|
|
498
|
+
hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
499
|
+
id?: string;
|
|
500
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
501
|
+
nativeID?: string | undefined;
|
|
502
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
|
|
503
|
+
onBlur?: ((event: import("react-native").BlurEvent) => unknown) | undefined;
|
|
504
|
+
onFocus?: ((event: import("react-native").FocusEvent) => unknown) | undefined;
|
|
505
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
|
|
506
|
+
onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
507
|
+
onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
508
|
+
onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
509
|
+
onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
510
|
+
pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
511
|
+
rejectResponderTermination?: boolean | undefined;
|
|
512
|
+
testID?: string | undefined;
|
|
513
|
+
style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
|
|
514
|
+
} & import("react-native/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback").TouchableWithoutFeedbackPropsAndroid & Readonly<Omit<Readonly<{
|
|
515
|
+
accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
|
|
516
|
+
"aria-labelledby"?: string | undefined;
|
|
517
|
+
accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
|
|
518
|
+
"aria-live"?: ("polite" | "assertive" | "off") | undefined;
|
|
519
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
520
|
+
screenReaderFocusable?: boolean;
|
|
521
|
+
}>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
|
|
522
|
+
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
523
|
+
accessibilityViewIsModal?: boolean | undefined;
|
|
524
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
525
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
526
|
+
"aria-modal"?: boolean | undefined;
|
|
527
|
+
accessibilityElementsHidden?: boolean | undefined;
|
|
528
|
+
accessibilityLanguage?: string | undefined;
|
|
529
|
+
accessibilityRespondsToUserInteraction?: boolean | undefined;
|
|
530
|
+
}>, "role" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
|
|
531
|
+
accessible?: boolean | undefined;
|
|
532
|
+
accessibilityLabel?: string | undefined;
|
|
533
|
+
accessibilityHint?: string | undefined;
|
|
534
|
+
"aria-label"?: string | undefined;
|
|
535
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
536
|
+
role?: import("react-native").Role | undefined;
|
|
537
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
538
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
539
|
+
"aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
|
|
540
|
+
"aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
|
|
541
|
+
"aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
|
|
542
|
+
"aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
|
|
543
|
+
accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
|
|
544
|
+
"aria-busy"?: boolean | undefined;
|
|
545
|
+
"aria-checked"?: (boolean | undefined) | "mixed";
|
|
546
|
+
"aria-disabled"?: boolean | undefined;
|
|
547
|
+
"aria-expanded"?: boolean | undefined;
|
|
548
|
+
"aria-selected"?: boolean | undefined;
|
|
549
|
+
"aria-hidden"?: boolean | undefined;
|
|
550
|
+
}>>, "style" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
|
|
551
|
+
hasTVPreferredFocus?: boolean | undefined;
|
|
552
|
+
nextFocusDown?: number | undefined;
|
|
553
|
+
nextFocusForward?: number | undefined;
|
|
554
|
+
nextFocusLeft?: number | undefined;
|
|
555
|
+
nextFocusRight?: number | undefined;
|
|
556
|
+
nextFocusUp?: number | undefined;
|
|
557
|
+
}>, "style" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
|
|
558
|
+
activeOpacity?: number | undefined;
|
|
559
|
+
style?: import("react-native/types_generated/Libraries/Animated/createAnimatedComponent").WithAnimatedValue<import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp> | undefined;
|
|
560
|
+
hostRef?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>> | undefined;
|
|
561
|
+
}>, never>>, "ref"> & {
|
|
562
|
+
ref?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>>;
|
|
563
|
+
} & {
|
|
564
|
+
theme?: import("@emotion/react").Theme;
|
|
565
|
+
as?: React.ElementType;
|
|
566
|
+
} & {
|
|
567
|
+
position?: Position;
|
|
568
|
+
size?: Size;
|
|
569
|
+
color?: string;
|
|
570
|
+
offset?: {
|
|
571
|
+
horizontal?: number;
|
|
572
|
+
vertical?: number;
|
|
573
|
+
};
|
|
574
|
+
} & Readonly<Omit<Readonly<{
|
|
575
|
+
children?: React.ReactNode | undefined;
|
|
576
|
+
delayLongPress?: number | undefined;
|
|
577
|
+
delayPressIn?: number | undefined;
|
|
578
|
+
delayPressOut?: number | undefined;
|
|
579
|
+
disabled?: boolean | undefined;
|
|
580
|
+
focusable?: boolean | undefined;
|
|
581
|
+
hitSlop?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
582
|
+
id?: string;
|
|
583
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
584
|
+
nativeID?: string | undefined;
|
|
585
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
|
|
586
|
+
onBlur?: ((event: import("react-native").BlurEvent) => unknown) | undefined;
|
|
587
|
+
onFocus?: ((event: import("react-native").FocusEvent) => unknown) | undefined;
|
|
588
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
|
|
589
|
+
onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
590
|
+
onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
591
|
+
onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
592
|
+
onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
593
|
+
pressRetentionOffset?: import("react-native/types_generated/Libraries/StyleSheet/EdgeInsetsPropType").EdgeInsetsOrSizeProp | undefined;
|
|
594
|
+
rejectResponderTermination?: boolean | undefined;
|
|
595
|
+
testID?: string | undefined;
|
|
596
|
+
style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp | undefined;
|
|
597
|
+
} & import("react-native/types_generated/Libraries/Components/Touchable/TouchableWithoutFeedback").TouchableWithoutFeedbackPropsAndroid & Readonly<Omit<Readonly<{
|
|
598
|
+
accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
|
|
599
|
+
"aria-labelledby"?: string | undefined;
|
|
600
|
+
accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
|
|
601
|
+
"aria-live"?: ("polite" | "assertive" | "off") | undefined;
|
|
602
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
603
|
+
screenReaderFocusable?: boolean;
|
|
604
|
+
}>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
|
|
605
|
+
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
606
|
+
accessibilityViewIsModal?: boolean | undefined;
|
|
607
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
608
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
609
|
+
"aria-modal"?: boolean | undefined;
|
|
610
|
+
accessibilityElementsHidden?: boolean | undefined;
|
|
611
|
+
accessibilityLanguage?: string | undefined;
|
|
612
|
+
accessibilityRespondsToUserInteraction?: boolean | undefined;
|
|
613
|
+
}>, "role" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
|
|
614
|
+
accessible?: boolean | undefined;
|
|
615
|
+
accessibilityLabel?: string | undefined;
|
|
616
|
+
accessibilityHint?: string | undefined;
|
|
617
|
+
"aria-label"?: string | undefined;
|
|
618
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
619
|
+
role?: import("react-native").Role | undefined;
|
|
620
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
621
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
622
|
+
"aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
|
|
623
|
+
"aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
|
|
624
|
+
"aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
|
|
625
|
+
"aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
|
|
626
|
+
accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
|
|
627
|
+
"aria-busy"?: boolean | undefined;
|
|
628
|
+
"aria-checked"?: (boolean | undefined) | "mixed";
|
|
629
|
+
"aria-disabled"?: boolean | undefined;
|
|
630
|
+
"aria-expanded"?: boolean | undefined;
|
|
631
|
+
"aria-selected"?: boolean | undefined;
|
|
632
|
+
"aria-hidden"?: boolean | undefined;
|
|
633
|
+
}>>, "style" | "hasTVPreferredFocus" | "nextFocusDown" | "nextFocusForward" | "nextFocusLeft" | "nextFocusRight" | "nextFocusUp" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
|
|
634
|
+
hasTVPreferredFocus?: boolean | undefined;
|
|
635
|
+
nextFocusDown?: number | undefined;
|
|
636
|
+
nextFocusForward?: number | undefined;
|
|
637
|
+
nextFocusLeft?: number | undefined;
|
|
638
|
+
nextFocusRight?: number | undefined;
|
|
639
|
+
nextFocusUp?: number | undefined;
|
|
640
|
+
}>, "style" | "activeOpacity" | "hostRef"> & Omit<Readonly<{
|
|
641
|
+
activeOpacity?: number | undefined;
|
|
642
|
+
style?: import("react-native/types_generated/Libraries/Animated/createAnimatedComponent").WithAnimatedValue<import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").ViewStyleProp> | undefined;
|
|
643
|
+
hostRef?: React.Ref<React.ComponentRef<typeof import("react-native/types_generated/Libraries/Animated/AnimatedExports").View>> | undefined;
|
|
644
|
+
}>, never>> & {
|
|
645
|
+
ref?: import("react").Ref<any> | undefined;
|
|
646
|
+
} & {
|
|
647
|
+
theme?: import("@emotion/react").Theme;
|
|
648
|
+
as?: React.ElementType;
|
|
649
|
+
}, {}, {}>;
|
|
650
|
+
export declare const FABText: import("@emotion/native").StyledComponent<Omit<Readonly<Omit<Readonly<{
|
|
651
|
+
onPointerEnter?: (event: import("react-native").PointerEvent) => void;
|
|
652
|
+
onPointerLeave?: (event: import("react-native").PointerEvent) => void;
|
|
653
|
+
onPointerMove?: (event: import("react-native").PointerEvent) => void;
|
|
654
|
+
}>, "adjustsFontSizeToFit" | "dynamicTypeRamp" | "suppressHighlighting" | "lineBreakStrategyIOS" | "disabled" | "selectionColor" | "dataDetectorType" | "textBreakStrategy" | "minimumFontScale" | "onAccessibilityAction" | "allowFontScaling" | "android_hyphenationFrequency" | "children" | "ellipsizeMode" | "id" | "maxFontSizeMultiplier" | "nativeID" | "numberOfLines" | "onLayout" | "onLongPress" | "onPress" | "onPressIn" | "onPressOut" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onTextLayout" | "pressRetentionOffset" | "role" | "selectable" | "style" | "testID" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<import("react-native/types_generated/Libraries/Text/TextProps").TextPropsIOS, keyof import("react-native/types_generated/Libraries/Text/TextProps").TextPropsAndroid | "onAccessibilityAction" | "allowFontScaling" | "android_hyphenationFrequency" | "children" | "ellipsizeMode" | "id" | "maxFontSizeMultiplier" | "nativeID" | "numberOfLines" | "onLayout" | "onLongPress" | "onPress" | "onPressIn" | "onPressOut" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onTextLayout" | "pressRetentionOffset" | "role" | "selectable" | "style" | "testID" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<import("react-native/types_generated/Libraries/Text/TextProps").TextPropsAndroid, "onAccessibilityAction" | "allowFontScaling" | "android_hyphenationFrequency" | "children" | "ellipsizeMode" | "id" | "maxFontSizeMultiplier" | "nativeID" | "numberOfLines" | "onLayout" | "onLongPress" | "onPress" | "onPressIn" | "onPressOut" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onTextLayout" | "pressRetentionOffset" | "role" | "selectable" | "style" | "testID" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<Readonly<{
|
|
655
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
|
|
656
|
+
allowFontScaling?: boolean | undefined;
|
|
657
|
+
android_hyphenationFrequency?: ("normal" | "none" | "full") | undefined;
|
|
658
|
+
children?: React.ReactNode | undefined;
|
|
659
|
+
ellipsizeMode?: ("clip" | "head" | "middle" | "tail") | undefined;
|
|
660
|
+
id?: string;
|
|
661
|
+
maxFontSizeMultiplier?: number | undefined;
|
|
662
|
+
nativeID?: string | undefined;
|
|
663
|
+
numberOfLines?: number | undefined;
|
|
664
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
|
|
665
|
+
onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
666
|
+
onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
667
|
+
onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
668
|
+
onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
669
|
+
onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
670
|
+
onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
671
|
+
onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
672
|
+
onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
673
|
+
onResponderTerminationRequest?: (() => boolean) | undefined;
|
|
674
|
+
onStartShouldSetResponder?: (() => boolean) | undefined;
|
|
675
|
+
onMoveShouldSetResponder?: (() => boolean) | undefined;
|
|
676
|
+
onTextLayout?: ((event: import("react-native").TextLayoutEvent) => unknown) | undefined;
|
|
677
|
+
pressRetentionOffset?: import("react-native/types_generated/Libraries/Text/TextProps").PressRetentionOffset | undefined;
|
|
678
|
+
role?: import("react-native").Role | undefined;
|
|
679
|
+
selectable?: boolean | undefined;
|
|
680
|
+
style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").TextStyleProp | undefined;
|
|
681
|
+
testID?: string | undefined;
|
|
682
|
+
}>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<Readonly<Omit<Readonly<{
|
|
683
|
+
accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
|
|
684
|
+
"aria-labelledby"?: string | undefined;
|
|
685
|
+
accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
|
|
686
|
+
"aria-live"?: ("polite" | "assertive" | "off") | undefined;
|
|
687
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
688
|
+
screenReaderFocusable?: boolean;
|
|
689
|
+
}>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
|
|
690
|
+
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
691
|
+
accessibilityViewIsModal?: boolean | undefined;
|
|
692
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
693
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
694
|
+
"aria-modal"?: boolean | undefined;
|
|
695
|
+
accessibilityElementsHidden?: boolean | undefined;
|
|
696
|
+
accessibilityLanguage?: string | undefined;
|
|
697
|
+
accessibilityRespondsToUserInteraction?: boolean | undefined;
|
|
698
|
+
}>, "role" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
|
|
699
|
+
accessible?: boolean | undefined;
|
|
700
|
+
accessibilityLabel?: string | undefined;
|
|
701
|
+
accessibilityHint?: string | undefined;
|
|
702
|
+
"aria-label"?: string | undefined;
|
|
703
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
704
|
+
role?: import("react-native").Role | undefined;
|
|
705
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
706
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
707
|
+
"aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
|
|
708
|
+
"aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
|
|
709
|
+
"aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
|
|
710
|
+
"aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
|
|
711
|
+
accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
|
|
712
|
+
"aria-busy"?: boolean | undefined;
|
|
713
|
+
"aria-checked"?: (boolean | undefined) | "mixed";
|
|
714
|
+
"aria-disabled"?: boolean | undefined;
|
|
715
|
+
"aria-expanded"?: boolean | undefined;
|
|
716
|
+
"aria-selected"?: boolean | undefined;
|
|
717
|
+
"aria-hidden"?: boolean | undefined;
|
|
718
|
+
}>, never>>, "ref"> & {
|
|
719
|
+
ref?: React.Ref<import("react-native/types_generated/src/private/webapis/dom/nodes/ReactNativeElement").default>;
|
|
720
|
+
} & {
|
|
721
|
+
theme?: import("@emotion/react").Theme;
|
|
722
|
+
as?: React.ElementType;
|
|
723
|
+
} & Readonly<Omit<Readonly<{
|
|
724
|
+
onPointerEnter?: (event: import("react-native").PointerEvent) => void;
|
|
725
|
+
onPointerLeave?: (event: import("react-native").PointerEvent) => void;
|
|
726
|
+
onPointerMove?: (event: import("react-native").PointerEvent) => void;
|
|
727
|
+
}>, "adjustsFontSizeToFit" | "dynamicTypeRamp" | "suppressHighlighting" | "lineBreakStrategyIOS" | "disabled" | "selectionColor" | "dataDetectorType" | "textBreakStrategy" | "minimumFontScale" | "onAccessibilityAction" | "allowFontScaling" | "android_hyphenationFrequency" | "children" | "ellipsizeMode" | "id" | "maxFontSizeMultiplier" | "nativeID" | "numberOfLines" | "onLayout" | "onLongPress" | "onPress" | "onPressIn" | "onPressOut" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onTextLayout" | "pressRetentionOffset" | "role" | "selectable" | "style" | "testID" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<import("react-native/types_generated/Libraries/Text/TextProps").TextPropsIOS, keyof import("react-native/types_generated/Libraries/Text/TextProps").TextPropsAndroid | "onAccessibilityAction" | "allowFontScaling" | "android_hyphenationFrequency" | "children" | "ellipsizeMode" | "id" | "maxFontSizeMultiplier" | "nativeID" | "numberOfLines" | "onLayout" | "onLongPress" | "onPress" | "onPressIn" | "onPressOut" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onTextLayout" | "pressRetentionOffset" | "role" | "selectable" | "style" | "testID" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<import("react-native/types_generated/Libraries/Text/TextProps").TextPropsAndroid, "onAccessibilityAction" | "allowFontScaling" | "android_hyphenationFrequency" | "children" | "ellipsizeMode" | "id" | "maxFontSizeMultiplier" | "nativeID" | "numberOfLines" | "onLayout" | "onLongPress" | "onPress" | "onPressIn" | "onPressOut" | "onResponderGrant" | "onResponderMove" | "onResponderRelease" | "onResponderTerminate" | "onResponderTerminationRequest" | "onStartShouldSetResponder" | "onMoveShouldSetResponder" | "onTextLayout" | "pressRetentionOffset" | "role" | "selectable" | "style" | "testID" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<Readonly<{
|
|
728
|
+
onAccessibilityAction?: ((event: import("react-native").AccessibilityActionEvent) => unknown) | undefined;
|
|
729
|
+
allowFontScaling?: boolean | undefined;
|
|
730
|
+
android_hyphenationFrequency?: ("normal" | "none" | "full") | undefined;
|
|
731
|
+
children?: React.ReactNode | undefined;
|
|
732
|
+
ellipsizeMode?: ("clip" | "head" | "middle" | "tail") | undefined;
|
|
733
|
+
id?: string;
|
|
734
|
+
maxFontSizeMultiplier?: number | undefined;
|
|
735
|
+
nativeID?: string | undefined;
|
|
736
|
+
numberOfLines?: number | undefined;
|
|
737
|
+
onLayout?: ((event: import("react-native").LayoutChangeEvent) => unknown) | undefined;
|
|
738
|
+
onLongPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
739
|
+
onPress?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
740
|
+
onPressIn?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
741
|
+
onPressOut?: ((event: import("react-native").GestureResponderEvent) => unknown) | undefined;
|
|
742
|
+
onResponderGrant?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
743
|
+
onResponderMove?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
744
|
+
onResponderRelease?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
745
|
+
onResponderTerminate?: ((event: import("react-native").GestureResponderEvent) => void) | undefined;
|
|
746
|
+
onResponderTerminationRequest?: (() => boolean) | undefined;
|
|
747
|
+
onStartShouldSetResponder?: (() => boolean) | undefined;
|
|
748
|
+
onMoveShouldSetResponder?: (() => boolean) | undefined;
|
|
749
|
+
onTextLayout?: ((event: import("react-native").TextLayoutEvent) => unknown) | undefined;
|
|
750
|
+
pressRetentionOffset?: import("react-native/types_generated/Libraries/Text/TextProps").PressRetentionOffset | undefined;
|
|
751
|
+
role?: import("react-native").Role | undefined;
|
|
752
|
+
selectable?: boolean | undefined;
|
|
753
|
+
style?: import("react-native/types_generated/Libraries/StyleSheet/StyleSheet").TextStyleProp | undefined;
|
|
754
|
+
testID?: string | undefined;
|
|
755
|
+
}>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden" | "accessibilityLabelledBy" | "aria-labelledby" | "accessibilityLiveRegion" | "aria-live" | "importantForAccessibility" | "screenReaderFocusable"> & Omit<Readonly<Omit<Readonly<{
|
|
756
|
+
accessibilityLabelledBy?: (string | undefined) | (Array<string> | undefined);
|
|
757
|
+
"aria-labelledby"?: string | undefined;
|
|
758
|
+
accessibilityLiveRegion?: ("none" | "polite" | "assertive") | undefined;
|
|
759
|
+
"aria-live"?: ("polite" | "assertive" | "off") | undefined;
|
|
760
|
+
importantForAccessibility?: ("auto" | "yes" | "no" | "no-hide-descendants") | undefined;
|
|
761
|
+
screenReaderFocusable?: boolean;
|
|
762
|
+
}>, "role" | "accessibilityIgnoresInvertColors" | "accessibilityViewIsModal" | "accessibilityShowsLargeContentViewer" | "accessibilityLargeContentTitle" | "aria-modal" | "accessibilityElementsHidden" | "accessibilityLanguage" | "accessibilityRespondsToUserInteraction" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & Omit<Readonly<{
|
|
763
|
+
accessibilityIgnoresInvertColors?: boolean | undefined;
|
|
764
|
+
accessibilityViewIsModal?: boolean | undefined;
|
|
765
|
+
accessibilityShowsLargeContentViewer?: boolean | undefined;
|
|
766
|
+
accessibilityLargeContentTitle?: string | undefined;
|
|
767
|
+
"aria-modal"?: boolean | undefined;
|
|
768
|
+
accessibilityElementsHidden?: boolean | undefined;
|
|
769
|
+
accessibilityLanguage?: string | undefined;
|
|
770
|
+
accessibilityRespondsToUserInteraction?: boolean | undefined;
|
|
771
|
+
}>, "role" | "accessible" | "accessibilityLabel" | "accessibilityHint" | "aria-label" | "accessibilityRole" | "accessibilityState" | "accessibilityValue" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "accessibilityActions" | "aria-busy" | "aria-checked" | "aria-disabled" | "aria-expanded" | "aria-selected" | "aria-hidden"> & {
|
|
772
|
+
accessible?: boolean | undefined;
|
|
773
|
+
accessibilityLabel?: string | undefined;
|
|
774
|
+
accessibilityHint?: string | undefined;
|
|
775
|
+
"aria-label"?: string | undefined;
|
|
776
|
+
accessibilityRole?: import("react-native").AccessibilityRole | undefined;
|
|
777
|
+
role?: import("react-native").Role | undefined;
|
|
778
|
+
accessibilityState?: import("react-native").AccessibilityState | undefined;
|
|
779
|
+
accessibilityValue?: import("react-native").AccessibilityValue | undefined;
|
|
780
|
+
"aria-valuemax"?: import("react-native").AccessibilityValue["max"] | undefined;
|
|
781
|
+
"aria-valuemin"?: import("react-native").AccessibilityValue["min"] | undefined;
|
|
782
|
+
"aria-valuenow"?: import("react-native").AccessibilityValue["now"] | undefined;
|
|
783
|
+
"aria-valuetext"?: import("react-native").AccessibilityValue["text"] | undefined;
|
|
784
|
+
accessibilityActions?: ReadonlyArray<import("react-native/types_generated/Libraries/Components/View/ViewAccessibility").AccessibilityActionInfo> | undefined;
|
|
785
|
+
"aria-busy"?: boolean | undefined;
|
|
786
|
+
"aria-checked"?: (boolean | undefined) | "mixed";
|
|
787
|
+
"aria-disabled"?: boolean | undefined;
|
|
788
|
+
"aria-expanded"?: boolean | undefined;
|
|
789
|
+
"aria-selected"?: boolean | undefined;
|
|
790
|
+
"aria-hidden"?: boolean | undefined;
|
|
791
|
+
}>, never>> & {
|
|
792
|
+
flex?: number;
|
|
793
|
+
weight?: "light" | "regular" | "medium" | "bold";
|
|
794
|
+
size?: number;
|
|
795
|
+
margin?: import("react-native").DimensionValue | string;
|
|
796
|
+
width?: string;
|
|
797
|
+
color?: string;
|
|
798
|
+
textAlign?: "left" | "center" | "right" | "justify";
|
|
799
|
+
textTransform?: "none" | "uppercase" | "capitalize" | "lowercase";
|
|
800
|
+
textDecorationLine?: "none" | "underline" | "line-through";
|
|
801
|
+
} & {
|
|
802
|
+
ref?: import("react").Ref<any> | undefined;
|
|
803
|
+
} & {
|
|
804
|
+
theme?: import("@emotion/react").Theme;
|
|
805
|
+
as?: React.ElementType;
|
|
806
|
+
}, {}, {}>;
|
|
807
|
+
//# sourceMappingURL=styles.d.ts.map
|