qlu-20-ui-library 1.0.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.
Files changed (57) hide show
  1. package/.eslintrc.js +36 -0
  2. package/.run/demo_start.run.xml +12 -0
  3. package/.run/storybook.run.xml +12 -0
  4. package/dist/assets/index-22ff84d5.js +44 -0
  5. package/dist/assets/index-655b6c8f.css +1 -0
  6. package/dist/index.html +15 -0
  7. package/index.html +13 -0
  8. package/package.json +38 -0
  9. package/src/App.scss +38 -0
  10. package/src/App.tsx +216 -0
  11. package/src/_colors.scss +248 -0
  12. package/src/_fonts.scss +60 -0
  13. package/src/_svg.scss +27 -0
  14. package/src/components/AddAdditionalIdealProfileCard/AddAdditionalIdealProfileCard.tsx +52 -0
  15. package/src/components/AddAdditionalIdealProfileCard/style.scss +42 -0
  16. package/src/components/CircularIcon/CircularIcon.tsx +24 -0
  17. package/src/components/CircularIcon/style.scss +3 -0
  18. package/src/components/CircularSvgButton/CircularSvgButton.tsx +54 -0
  19. package/src/components/CircularSvgButton/style.scss +105 -0
  20. package/src/components/ClickableText/ClickableText.tsx +50 -0
  21. package/src/components/ClickableText/style.scss +68 -0
  22. package/src/components/CompanyPillNotClicakble/CompanyPillNotClicakble.tsx +32 -0
  23. package/src/components/CompanyPillNotClicakble/style.scss +21 -0
  24. package/src/components/GetSvgIcon/GetSvgIcon.tsx +65 -0
  25. package/src/components/HiringCompanyConciseCard/HiringCompanyConciseCard.tsx +42 -0
  26. package/src/components/HiringCompanyConciseCard/style.scss +31 -0
  27. package/src/components/IdealProfileConciseCard/IdealProfileConciseCard.tsx +47 -0
  28. package/src/components/IdealProfileConciseCard/style.scss +31 -0
  29. package/src/components/IdealProfileSelectionCard/IdealProfileSelectionCard.tsx +83 -0
  30. package/src/components/IdealProfileSelectionCard/style.scss +58 -0
  31. package/src/components/InputField/InputField.tsx +28 -0
  32. package/src/components/InputField/style.scss +44 -0
  33. package/src/components/PrimaryButton/PrimaryButton.tsx +40 -0
  34. package/src/components/PrimaryButton/style.scss +65 -0
  35. package/src/components/RangeComponent/RangeComponent.tsx +40 -0
  36. package/src/components/RangeComponent/style.scss +4 -0
  37. package/src/components/SecondaryButton/SecondaryButton.tsx +41 -0
  38. package/src/components/SecondaryButton/style.scss +66 -0
  39. package/src/components/TertiaryButton/TertiaryButton.tsx +39 -0
  40. package/src/components/TertiaryButton/style.scss +55 -0
  41. package/src/components/TextButton/TextButton.tsx +34 -0
  42. package/src/components/TextButton/style.scss +91 -0
  43. package/src/components/TextPillNotClickable/TextPillNotClickable.tsx +25 -0
  44. package/src/components/TextPillNotClickable/style.scss +31 -0
  45. package/src/components/TruncateText/TruncateText.tsx +43 -0
  46. package/src/index.css +69 -0
  47. package/src/main.tsx +10 -0
  48. package/src/svg/Clock.tsx +25 -0
  49. package/src/svg/Cross.tsx +24 -0
  50. package/src/svg/LinkedinLogo.tsx +24 -0
  51. package/src/svg/Plus.tsx +20 -0
  52. package/src/svg/Thumb.tsx +25 -0
  53. package/src/svg/Tick.tsx +23 -0
  54. package/src/utils.ts +9 -0
  55. package/src/vite-env.d.ts +1 -0
  56. package/tsconfig.node.json +10 -0
  57. package/vite.config.ts +7 -0
package/.eslintrc.js ADDED
@@ -0,0 +1,36 @@
1
+ module.exports = {
2
+ extends: [
3
+ 'eslint:recommended',
4
+ 'plugin:@typescript-eslint/recommended',
5
+ 'plugin:prettier/recommended',
6
+ 'plugin:react-hooks/recommended',
7
+ 'plugin:storybook/recommended',
8
+ 'plugin:tailwindcss/recommended',
9
+ ],
10
+ ignorePatterns: [
11
+ '.eslintrc.js',
12
+ 'config-overrides.js',
13
+ 'lint-staged.js',
14
+ 'postcss.config.js',
15
+ 'tailwind.config.js',
16
+ 'commitlint.config.js',
17
+ ],
18
+ parser: '@typescript-eslint/parser',
19
+ parserOptions: {
20
+ ecmaFeatures: {
21
+ jsx: true,
22
+ },
23
+ project: ['tsconfig.json', 'tsconfig.lib.json', 'cypress/tsconfig.json'],
24
+ },
25
+ plugins: ['@typescript-eslint', 'prettier', 'react-hooks', 'storybook', 'tailwindcss'],
26
+ root: true,
27
+ rules: {
28
+ '@typescript-eslint/consistent-type-imports': 'warn',
29
+ 'tailwindcss/classnames-order': [
30
+ 'warn',
31
+ {
32
+ officialSorting: true,
33
+ },
34
+ ],
35
+ },
36
+ };
@@ -0,0 +1,12 @@
1
+ <component name="ProjectRunConfigurationManager">
2
+ <configuration default="false" name="start:docs" type="js.build_tools.npm">
3
+ <package-json value="$PROJECT_DIR$/package.json" />
4
+ <command value="run" />
5
+ <scripts>
6
+ <script value="start" />
7
+ </scripts>
8
+ <node-interpreter value="project" />
9
+ <envs />
10
+ <method v="2" />
11
+ </configuration>
12
+ </component>
@@ -0,0 +1,12 @@
1
+ <component name="ProjectRunConfigurationManager">
2
+ <configuration default="false" name="start:storybook" type="js.build_tools.npm" nameIsGenerated="true">
3
+ <package-json value="$PROJECT_DIR$/package.json" />
4
+ <command value="run" />
5
+ <scripts>
6
+ <script value="start:storybook" />
7
+ </scripts>
8
+ <node-interpreter value="project" />
9
+ <envs />
10
+ <method v="2" />
11
+ </configuration>
12
+ </component>