@mindly/ui-components 0.1.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/.eslintrc.json +47 -0
- package/.idea/codeStyles/Project.xml +45 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/jsLinters/eslint.xml +6 -0
- package/.idea/mindly-components.iml +13 -0
- package/.idea/modules.xml +8 -0
- package/.idea/vcs.xml +6 -0
- package/.storybook/main.js +11 -0
- package/.storybook/preview.js +9 -0
- package/README.md +46 -0
- package/babel.config.json +18 -0
- package/ionic.config.json +5 -0
- package/package.json +101 -0
- package/public/favicon.ico +0 -0
- package/public/index.html +43 -0
- package/public/logo192.png +0 -0
- package/public/logo512.png +0 -0
- package/public/manifest.json +25 -0
- package/public/robots.txt +3 -0
- package/src/fonts/Lato-Bold.ttf +0 -0
- package/src/fonts/Lato-Regular.ttf +0 -0
- package/src/fonts/Lato-Semibold.ttf +0 -0
- package/src/index.tsx +14 -0
- package/src/lib/Theme/global.css +191 -0
- package/src/lib/Theme/mindly_constants.ts +20 -0
- package/src/lib/button/Button.style.ts +83 -0
- package/src/lib/button/Button.tsx +29 -0
- package/src/lib/consultation-card/consultationCard.tsx +18 -0
- package/src/lib/floating-button/floating button.svg +6 -0
- package/src/lib/floating-button/floatingButton.style.ts +21 -0
- package/src/lib/floating-button/floatingButton.tsx +29 -0
- package/src/lib/footer-for-booking/FooterForBooking.style.ts +42 -0
- package/src/lib/footer-for-booking/FooterForBooking.tsx +43 -0
- package/src/lib/list-button/listButton.style.ts +19 -0
- package/src/lib/list-button/listButton.tsx +19 -0
- package/src/lib/navigation-bar/NavigationBar.style.ts +56 -0
- package/src/lib/navigation-bar/NavigationBar.tsx +26 -0
- package/src/lib/tab-bar/tabBar.style.ts +15 -0
- package/src/lib/tab-bar/tabBar.tsx +31 -0
- package/src/lib/therapist-card/TherapistCard.style.ts +140 -0
- package/src/lib/therapist-card/TherapistCard.tsx +97 -0
- package/src/react-app-env.d.ts +1 -0
- package/src/stories/Button.stories.tsx +37 -0
- package/src/stories/Button.tsx +48 -0
- package/src/stories/Header.stories.tsx +19 -0
- package/src/stories/Header.tsx +47 -0
- package/src/stories/Introduction.stories.mdx +211 -0
- package/src/stories/Page.stories.tsx +22 -0
- package/src/stories/Page.tsx +67 -0
- package/src/stories/assets/code-brackets.svg +1 -0
- package/src/stories/assets/colors.svg +1 -0
- package/src/stories/assets/comments.svg +1 -0
- package/src/stories/assets/direction.svg +1 -0
- package/src/stories/assets/flow.svg +1 -0
- package/src/stories/assets/plugin.svg +1 -0
- package/src/stories/assets/repo.svg +1 -0
- package/src/stories/assets/stackalt.svg +1 -0
- package/src/stories/button.css +30 -0
- package/src/stories/header.css +26 -0
- package/src/stories/page.css +69 -0
- package/tsconfig.json +26 -0
package/tsconfig.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "es5",
|
|
4
|
+
"lib": [
|
|
5
|
+
"dom",
|
|
6
|
+
"dom.iterable",
|
|
7
|
+
"esnext"
|
|
8
|
+
],
|
|
9
|
+
"allowJs": true,
|
|
10
|
+
"skipLibCheck": true,
|
|
11
|
+
"esModuleInterop": true,
|
|
12
|
+
"allowSyntheticDefaultImports": true,
|
|
13
|
+
"strict": true,
|
|
14
|
+
"forceConsistentCasingInFileNames": true,
|
|
15
|
+
"noFallthroughCasesInSwitch": true,
|
|
16
|
+
"module": "esnext",
|
|
17
|
+
"moduleResolution": "node",
|
|
18
|
+
"resolveJsonModule": true,
|
|
19
|
+
"isolatedModules": true,
|
|
20
|
+
"noEmit": true,
|
|
21
|
+
"jsx": "react-jsx"
|
|
22
|
+
},
|
|
23
|
+
"include": [
|
|
24
|
+
"src"
|
|
25
|
+
]
|
|
26
|
+
}
|