├── .editorconfig ├── .eslintingore ├── .eslintrc.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── deploy-doc.yml │ └── run-tests.yml ├── .gitignore ├── .npmignore ├── .watchmanconfig ├── .yarnrc ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── assets ├── components.png ├── expo-demo-logo.png ├── getting-started-logo.png ├── kitra-logo.png └── tra-tech-logo.png ├── babel.config.js ├── doc ├── .gitignore ├── README.md ├── babel.config.js ├── docs │ ├── components │ │ ├── accordion-list.md │ │ ├── activity-indicator.md │ │ ├── avatar.md │ │ ├── badge.md │ │ ├── button.md │ │ ├── checkbox.md │ │ ├── chip.md │ │ ├── divider.md │ │ ├── dropdown.md │ │ ├── icon.md │ │ ├── menu.md │ │ ├── pagerview.md │ │ ├── progress-bar.md │ │ ├── radio-button.md │ │ ├── slider.md │ │ ├── speed-dial.md │ │ ├── swipe.md │ │ ├── switch.md │ │ ├── text-input.md │ │ └── toggle-button.md │ └── doc │ │ ├── Notification.md │ │ ├── Theme.md │ │ ├── Typography.md │ │ └── getting-started.md ├── docusaurus.config.js ├── docusuarusWebpack5Plugin.js ├── package.json ├── sidebars.js ├── src │ ├── components │ │ ├── PaletteColor.module.css │ │ └── colorPalette.tsx │ ├── css │ │ └── custom.css │ └── pages │ │ ├── homepage.tsx │ │ └── index.tsx ├── static │ ├── .nojekyll │ ├── font │ │ ├── MPLUSRounded1c-Black.ttf │ │ ├── MPLUSRounded1c-Bold.ttf │ │ ├── MPLUSRounded1c-ExtraBold.ttf │ │ ├── MPLUSRounded1c-Light.ttf │ │ ├── MPLUSRounded1c-Medium.ttf │ │ ├── MPLUSRounded1c-Regular.ttf │ │ └── MPLUSRounded1c-Thin.ttf │ └── img │ │ ├── background.png │ │ ├── backgroundLight.png │ │ ├── external-link.png │ │ ├── favicon.ico │ │ ├── featuresbgdark.png │ │ ├── featuresbglight.png │ │ ├── kitra-social-card.png │ │ ├── logo.svg │ │ ├── previewdark.png │ │ └── previewlight.png ├── tsconfig.json ├── versioned_docs │ └── version-1.x │ │ ├── components │ │ ├── accordion-list.md │ │ ├── activity-indicator.md │ │ ├── avatar.md │ │ ├── badge.md │ │ ├── button.md │ │ ├── checkbox.md │ │ ├── chip.md │ │ ├── divider.md │ │ ├── dropdown.md │ │ ├── icon.md │ │ ├── menu.md │ │ ├── modal.md │ │ ├── pagerview.md │ │ ├── progress-bar.md │ │ ├── radio-button.md │ │ ├── slider.md │ │ ├── speed-dial.md │ │ ├── swipe.md │ │ ├── switch.md │ │ ├── text-input.md │ │ └── toggle-button.md │ │ └── doc │ │ ├── Notification.md │ │ ├── Theme.md │ │ ├── Typography.md │ │ └── getting-started.md ├── versioned_sidebars │ └── version-1.x-sidebars.json ├── versions.json └── yarn.lock ├── example ├── .gitignore ├── App.js ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── fonts │ │ ├── Poppins-Black.ttf │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-ExtraBold.ttf │ │ ├── Poppins-ExtraLight.ttf │ │ ├── Poppins-Light.ttf │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-Regular.ttf │ │ ├── Poppins-SemiBold.ttf │ │ └── Poppins-Thin.ttf │ ├── icon.png │ └── splash.png ├── babel.config.js ├── metro.config.js ├── package.json ├── src │ ├── components │ │ ├── Divider.jsx │ │ ├── Layout.jsx │ │ └── Text.jsx │ └── screens │ │ ├── AccordionList.jsx │ │ ├── ActivityIndicator.jsx │ │ ├── Avatar.jsx │ │ ├── AvatarGroup.jsx │ │ ├── Badge.jsx │ │ ├── Button.jsx │ │ ├── CheckBox.jsx │ │ ├── Chip.jsx │ │ ├── Divider.jsx │ │ ├── Dropdown.jsx │ │ ├── Home.jsx │ │ ├── Icon.jsx │ │ ├── Menu.jsx │ │ ├── PagerView.jsx │ │ ├── ProgressBar.jsx │ │ ├── RadioButton.jsx │ │ ├── Slider.jsx │ │ ├── SpeedDial.jsx │ │ ├── Swipe.jsx │ │ ├── Switch.jsx │ │ ├── TextInput.jsx │ │ └── ToggleButton.jsx ├── tsconfig.json └── yarn.lock ├── lefthook.yml ├── package.json ├── scripts ├── bootstrap.js └── svg-to-json.js ├── src ├── components │ ├── AccordionList │ │ └── AccordionList.tsx │ ├── ActivityIndicator │ │ └── ActivityIndicator.tsx │ ├── Avatar │ │ ├── Avatar.tsx │ │ └── AvatarGroup.tsx │ ├── Badge │ │ └── Badge.tsx │ ├── Button │ │ └── Button.tsx │ ├── CheckBox │ │ └── CheckBox.tsx │ ├── Chip │ │ └── Chip.tsx │ ├── Divider │ │ └── Divider.tsx │ ├── Dropdown │ │ ├── Dropdown.tsx │ │ ├── MultipleSelectDropdown.tsx │ │ └── index.tsx │ ├── Icons │ │ ├── Icon.tsx │ │ └── iconPaths.json │ ├── Menu │ │ └── Menu.tsx │ ├── PagerView │ │ └── PagerView.tsx │ ├── ProgressBar │ │ └── ProgressBar.tsx │ ├── RadioButton │ │ └── RadioButton.tsx │ ├── Slider │ │ └── index.tsx │ ├── SpeedDial │ │ └── SpeedDial.tsx │ ├── Swipe │ │ └── index.tsx │ ├── Switch │ │ └── Switch.tsx │ ├── TextInput │ │ └── TextInput.tsx │ └── ToggleButton │ │ └── ToggleButton.tsx ├── core │ ├── KitraProvider.tsx │ ├── __tests__ │ │ └── notification.test.js │ ├── hooks │ │ ├── useComponentTheme.tsx │ │ ├── useNotification.tsx │ │ ├── useTheme.tsx │ │ └── useTypography.tsx │ ├── notification │ │ └── notification.tsx │ ├── theme │ │ ├── colors.ts │ │ ├── theme.tsx │ │ └── x11.ts │ └── typography │ │ └── typography.tsx ├── index.ts ├── types.ts └── utilities.ts ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintingore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | lib/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/.github/workflows/deploy-doc.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | __tests__/ 2 | /doc 3 | /scripts 4 | /example -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- 1 | yarn-path "scripts/bootstrap.js" 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/README.md -------------------------------------------------------------------------------- /assets/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/assets/components.png -------------------------------------------------------------------------------- /assets/expo-demo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/assets/expo-demo-logo.png -------------------------------------------------------------------------------- /assets/getting-started-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/assets/getting-started-logo.png -------------------------------------------------------------------------------- /assets/kitra-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/assets/kitra-logo.png -------------------------------------------------------------------------------- /assets/tra-tech-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/assets/tra-tech-logo.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/babel.config.js -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/babel.config.js -------------------------------------------------------------------------------- /doc/docs/components/accordion-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/accordion-list.md -------------------------------------------------------------------------------- /doc/docs/components/activity-indicator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/activity-indicator.md -------------------------------------------------------------------------------- /doc/docs/components/avatar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/avatar.md -------------------------------------------------------------------------------- /doc/docs/components/badge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/badge.md -------------------------------------------------------------------------------- /doc/docs/components/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/button.md -------------------------------------------------------------------------------- /doc/docs/components/checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/checkbox.md -------------------------------------------------------------------------------- /doc/docs/components/chip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/chip.md -------------------------------------------------------------------------------- /doc/docs/components/divider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/divider.md -------------------------------------------------------------------------------- /doc/docs/components/dropdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/dropdown.md -------------------------------------------------------------------------------- /doc/docs/components/icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/icon.md -------------------------------------------------------------------------------- /doc/docs/components/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/menu.md -------------------------------------------------------------------------------- /doc/docs/components/pagerview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/pagerview.md -------------------------------------------------------------------------------- /doc/docs/components/progress-bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/progress-bar.md -------------------------------------------------------------------------------- /doc/docs/components/radio-button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/radio-button.md -------------------------------------------------------------------------------- /doc/docs/components/slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/slider.md -------------------------------------------------------------------------------- /doc/docs/components/speed-dial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/speed-dial.md -------------------------------------------------------------------------------- /doc/docs/components/swipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/swipe.md -------------------------------------------------------------------------------- /doc/docs/components/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/switch.md -------------------------------------------------------------------------------- /doc/docs/components/text-input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/text-input.md -------------------------------------------------------------------------------- /doc/docs/components/toggle-button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/components/toggle-button.md -------------------------------------------------------------------------------- /doc/docs/doc/Notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/doc/Notification.md -------------------------------------------------------------------------------- /doc/docs/doc/Theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/doc/Theme.md -------------------------------------------------------------------------------- /doc/docs/doc/Typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/doc/Typography.md -------------------------------------------------------------------------------- /doc/docs/doc/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docs/doc/getting-started.md -------------------------------------------------------------------------------- /doc/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docusaurus.config.js -------------------------------------------------------------------------------- /doc/docusuarusWebpack5Plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/docusuarusWebpack5Plugin.js -------------------------------------------------------------------------------- /doc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/package.json -------------------------------------------------------------------------------- /doc/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/sidebars.js -------------------------------------------------------------------------------- /doc/src/components/PaletteColor.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/src/components/PaletteColor.module.css -------------------------------------------------------------------------------- /doc/src/components/colorPalette.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/src/components/colorPalette.tsx -------------------------------------------------------------------------------- /doc/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/src/css/custom.css -------------------------------------------------------------------------------- /doc/src/pages/homepage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/src/pages/homepage.tsx -------------------------------------------------------------------------------- /doc/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/src/pages/index.tsx -------------------------------------------------------------------------------- /doc/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/static/font/MPLUSRounded1c-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/font/MPLUSRounded1c-Black.ttf -------------------------------------------------------------------------------- /doc/static/font/MPLUSRounded1c-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/font/MPLUSRounded1c-Bold.ttf -------------------------------------------------------------------------------- /doc/static/font/MPLUSRounded1c-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/font/MPLUSRounded1c-ExtraBold.ttf -------------------------------------------------------------------------------- /doc/static/font/MPLUSRounded1c-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/font/MPLUSRounded1c-Light.ttf -------------------------------------------------------------------------------- /doc/static/font/MPLUSRounded1c-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/font/MPLUSRounded1c-Medium.ttf -------------------------------------------------------------------------------- /doc/static/font/MPLUSRounded1c-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/font/MPLUSRounded1c-Regular.ttf -------------------------------------------------------------------------------- /doc/static/font/MPLUSRounded1c-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/font/MPLUSRounded1c-Thin.ttf -------------------------------------------------------------------------------- /doc/static/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/img/background.png -------------------------------------------------------------------------------- /doc/static/img/backgroundLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/img/backgroundLight.png -------------------------------------------------------------------------------- /doc/static/img/external-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/img/external-link.png -------------------------------------------------------------------------------- /doc/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/img/favicon.ico -------------------------------------------------------------------------------- /doc/static/img/featuresbgdark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/img/featuresbgdark.png -------------------------------------------------------------------------------- /doc/static/img/featuresbglight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/img/featuresbglight.png -------------------------------------------------------------------------------- /doc/static/img/kitra-social-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/img/kitra-social-card.png -------------------------------------------------------------------------------- /doc/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/img/logo.svg -------------------------------------------------------------------------------- /doc/static/img/previewdark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/img/previewdark.png -------------------------------------------------------------------------------- /doc/static/img/previewlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/static/img/previewlight.png -------------------------------------------------------------------------------- /doc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/tsconfig.json -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/accordion-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/accordion-list.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/activity-indicator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/activity-indicator.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/avatar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/avatar.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/badge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/badge.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/button.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/checkbox.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/chip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/chip.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/divider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/divider.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/dropdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/dropdown.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/icon.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/menu.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/modal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/modal.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/pagerview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/pagerview.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/progress-bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/progress-bar.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/radio-button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/radio-button.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/slider.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/speed-dial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/speed-dial.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/swipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/swipe.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/switch.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/text-input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/text-input.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/components/toggle-button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/components/toggle-button.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/doc/Notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/doc/Notification.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/doc/Theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/doc/Theme.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/doc/Typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/doc/Typography.md -------------------------------------------------------------------------------- /doc/versioned_docs/version-1.x/doc/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_docs/version-1.x/doc/getting-started.md -------------------------------------------------------------------------------- /doc/versioned_sidebars/version-1.x-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/versioned_sidebars/version-1.x-sidebars.json -------------------------------------------------------------------------------- /doc/versions.json: -------------------------------------------------------------------------------- 1 | [ 2 | "1.x" 3 | ] 4 | -------------------------------------------------------------------------------- /doc/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/doc/yarn.lock -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/App.js -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/assets/adaptive-icon.png -------------------------------------------------------------------------------- /example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/assets/favicon.png -------------------------------------------------------------------------------- /example/assets/fonts/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/assets/fonts/Poppins-Black.ttf -------------------------------------------------------------------------------- /example/assets/fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/assets/fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /example/assets/fonts/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/assets/fonts/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /example/assets/fonts/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/assets/fonts/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /example/assets/fonts/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/assets/fonts/Poppins-Light.ttf -------------------------------------------------------------------------------- /example/assets/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/assets/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /example/assets/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/assets/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /example/assets/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/assets/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /example/assets/fonts/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/assets/fonts/Poppins-Thin.ttf -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/assets/splash.png -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/components/Divider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/components/Divider.jsx -------------------------------------------------------------------------------- /example/src/components/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/components/Layout.jsx -------------------------------------------------------------------------------- /example/src/components/Text.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/components/Text.jsx -------------------------------------------------------------------------------- /example/src/screens/AccordionList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/AccordionList.jsx -------------------------------------------------------------------------------- /example/src/screens/ActivityIndicator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/ActivityIndicator.jsx -------------------------------------------------------------------------------- /example/src/screens/Avatar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/Avatar.jsx -------------------------------------------------------------------------------- /example/src/screens/AvatarGroup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/AvatarGroup.jsx -------------------------------------------------------------------------------- /example/src/screens/Badge.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/Badge.jsx -------------------------------------------------------------------------------- /example/src/screens/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/Button.jsx -------------------------------------------------------------------------------- /example/src/screens/CheckBox.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/CheckBox.jsx -------------------------------------------------------------------------------- /example/src/screens/Chip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/Chip.jsx -------------------------------------------------------------------------------- /example/src/screens/Divider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/Divider.jsx -------------------------------------------------------------------------------- /example/src/screens/Dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/Dropdown.jsx -------------------------------------------------------------------------------- /example/src/screens/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/Home.jsx -------------------------------------------------------------------------------- /example/src/screens/Icon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/Icon.jsx -------------------------------------------------------------------------------- /example/src/screens/Menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/Menu.jsx -------------------------------------------------------------------------------- /example/src/screens/PagerView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/PagerView.jsx -------------------------------------------------------------------------------- /example/src/screens/ProgressBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/ProgressBar.jsx -------------------------------------------------------------------------------- /example/src/screens/RadioButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/RadioButton.jsx -------------------------------------------------------------------------------- /example/src/screens/Slider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/Slider.jsx -------------------------------------------------------------------------------- /example/src/screens/SpeedDial.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/SpeedDial.jsx -------------------------------------------------------------------------------- /example/src/screens/Swipe.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/Swipe.jsx -------------------------------------------------------------------------------- /example/src/screens/Switch.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/Switch.jsx -------------------------------------------------------------------------------- /example/src/screens/TextInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/TextInput.jsx -------------------------------------------------------------------------------- /example/src/screens/ToggleButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/src/screens/ToggleButton.jsx -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/package.json -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /scripts/svg-to-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/scripts/svg-to-json.js -------------------------------------------------------------------------------- /src/components/AccordionList/AccordionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/AccordionList/AccordionList.tsx -------------------------------------------------------------------------------- /src/components/ActivityIndicator/ActivityIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/ActivityIndicator/ActivityIndicator.tsx -------------------------------------------------------------------------------- /src/components/Avatar/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/Avatar/Avatar.tsx -------------------------------------------------------------------------------- /src/components/Avatar/AvatarGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/Avatar/AvatarGroup.tsx -------------------------------------------------------------------------------- /src/components/Badge/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/Badge/Badge.tsx -------------------------------------------------------------------------------- /src/components/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/Button/Button.tsx -------------------------------------------------------------------------------- /src/components/CheckBox/CheckBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/CheckBox/CheckBox.tsx -------------------------------------------------------------------------------- /src/components/Chip/Chip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/Chip/Chip.tsx -------------------------------------------------------------------------------- /src/components/Divider/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/Divider/Divider.tsx -------------------------------------------------------------------------------- /src/components/Dropdown/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/Dropdown/Dropdown.tsx -------------------------------------------------------------------------------- /src/components/Dropdown/MultipleSelectDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/Dropdown/MultipleSelectDropdown.tsx -------------------------------------------------------------------------------- /src/components/Dropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/Dropdown/index.tsx -------------------------------------------------------------------------------- /src/components/Icons/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/Icons/Icon.tsx -------------------------------------------------------------------------------- /src/components/Icons/iconPaths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/Icons/iconPaths.json -------------------------------------------------------------------------------- /src/components/Menu/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/Menu/Menu.tsx -------------------------------------------------------------------------------- /src/components/PagerView/PagerView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/PagerView/PagerView.tsx -------------------------------------------------------------------------------- /src/components/ProgressBar/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/ProgressBar/ProgressBar.tsx -------------------------------------------------------------------------------- /src/components/RadioButton/RadioButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/RadioButton/RadioButton.tsx -------------------------------------------------------------------------------- /src/components/Slider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/Slider/index.tsx -------------------------------------------------------------------------------- /src/components/SpeedDial/SpeedDial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/SpeedDial/SpeedDial.tsx -------------------------------------------------------------------------------- /src/components/Swipe/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/Swipe/index.tsx -------------------------------------------------------------------------------- /src/components/Switch/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/Switch/Switch.tsx -------------------------------------------------------------------------------- /src/components/TextInput/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/TextInput/TextInput.tsx -------------------------------------------------------------------------------- /src/components/ToggleButton/ToggleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/components/ToggleButton/ToggleButton.tsx -------------------------------------------------------------------------------- /src/core/KitraProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/core/KitraProvider.tsx -------------------------------------------------------------------------------- /src/core/__tests__/notification.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/core/__tests__/notification.test.js -------------------------------------------------------------------------------- /src/core/hooks/useComponentTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/core/hooks/useComponentTheme.tsx -------------------------------------------------------------------------------- /src/core/hooks/useNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/core/hooks/useNotification.tsx -------------------------------------------------------------------------------- /src/core/hooks/useTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/core/hooks/useTheme.tsx -------------------------------------------------------------------------------- /src/core/hooks/useTypography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/core/hooks/useTypography.tsx -------------------------------------------------------------------------------- /src/core/notification/notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/core/notification/notification.tsx -------------------------------------------------------------------------------- /src/core/theme/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/core/theme/colors.ts -------------------------------------------------------------------------------- /src/core/theme/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/core/theme/theme.tsx -------------------------------------------------------------------------------- /src/core/theme/x11.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/core/theme/x11.ts -------------------------------------------------------------------------------- /src/core/typography/typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/core/typography/typography.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/src/utilities.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRA-Tech/react-native-kitra/HEAD/yarn.lock --------------------------------------------------------------------------------