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.
- package/.eslintrc.js +36 -0
- package/.run/demo_start.run.xml +12 -0
- package/.run/storybook.run.xml +12 -0
- package/dist/assets/index-22ff84d5.js +44 -0
- package/dist/assets/index-655b6c8f.css +1 -0
- package/dist/index.html +15 -0
- package/index.html +13 -0
- package/package.json +38 -0
- package/src/App.scss +38 -0
- package/src/App.tsx +216 -0
- package/src/_colors.scss +248 -0
- package/src/_fonts.scss +60 -0
- package/src/_svg.scss +27 -0
- package/src/components/AddAdditionalIdealProfileCard/AddAdditionalIdealProfileCard.tsx +52 -0
- package/src/components/AddAdditionalIdealProfileCard/style.scss +42 -0
- package/src/components/CircularIcon/CircularIcon.tsx +24 -0
- package/src/components/CircularIcon/style.scss +3 -0
- package/src/components/CircularSvgButton/CircularSvgButton.tsx +54 -0
- package/src/components/CircularSvgButton/style.scss +105 -0
- package/src/components/ClickableText/ClickableText.tsx +50 -0
- package/src/components/ClickableText/style.scss +68 -0
- package/src/components/CompanyPillNotClicakble/CompanyPillNotClicakble.tsx +32 -0
- package/src/components/CompanyPillNotClicakble/style.scss +21 -0
- package/src/components/GetSvgIcon/GetSvgIcon.tsx +65 -0
- package/src/components/HiringCompanyConciseCard/HiringCompanyConciseCard.tsx +42 -0
- package/src/components/HiringCompanyConciseCard/style.scss +31 -0
- package/src/components/IdealProfileConciseCard/IdealProfileConciseCard.tsx +47 -0
- package/src/components/IdealProfileConciseCard/style.scss +31 -0
- package/src/components/IdealProfileSelectionCard/IdealProfileSelectionCard.tsx +83 -0
- package/src/components/IdealProfileSelectionCard/style.scss +58 -0
- package/src/components/InputField/InputField.tsx +28 -0
- package/src/components/InputField/style.scss +44 -0
- package/src/components/PrimaryButton/PrimaryButton.tsx +40 -0
- package/src/components/PrimaryButton/style.scss +65 -0
- package/src/components/RangeComponent/RangeComponent.tsx +40 -0
- package/src/components/RangeComponent/style.scss +4 -0
- package/src/components/SecondaryButton/SecondaryButton.tsx +41 -0
- package/src/components/SecondaryButton/style.scss +66 -0
- package/src/components/TertiaryButton/TertiaryButton.tsx +39 -0
- package/src/components/TertiaryButton/style.scss +55 -0
- package/src/components/TextButton/TextButton.tsx +34 -0
- package/src/components/TextButton/style.scss +91 -0
- package/src/components/TextPillNotClickable/TextPillNotClickable.tsx +25 -0
- package/src/components/TextPillNotClickable/style.scss +31 -0
- package/src/components/TruncateText/TruncateText.tsx +43 -0
- package/src/index.css +69 -0
- package/src/main.tsx +10 -0
- package/src/svg/Clock.tsx +25 -0
- package/src/svg/Cross.tsx +24 -0
- package/src/svg/LinkedinLogo.tsx +24 -0
- package/src/svg/Plus.tsx +20 -0
- package/src/svg/Thumb.tsx +25 -0
- package/src/svg/Tick.tsx +23 -0
- package/src/utils.ts +9 -0
- package/src/vite-env.d.ts +1 -0
- package/tsconfig.node.json +10 -0
- 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>
|