@qoretechnologies/reqraft 0.0.1

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 (45) hide show
  1. package/.eslintrc.js +40 -0
  2. package/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
  3. package/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  4. package/.github/ISSUE_TEMPLATE/new-component.md +20 -0
  5. package/.github/ISSUE_TEMPLATE/visual-bug-report.md +38 -0
  6. package/.github/workflows/beta_release.yml +108 -0
  7. package/.github/workflows/tests.yml +120 -0
  8. package/.prettierrc +7 -0
  9. package/CODE_OF_CONDUCT.md +105 -0
  10. package/CONTRIBUTING.MD +78 -0
  11. package/LICENSE +21 -0
  12. package/README.md +43 -0
  13. package/SECURITY.md +3 -0
  14. package/__tests__/setup.js +8 -0
  15. package/build-storybook.log +28 -0
  16. package/dist/components/form/string/String.d.ts +15 -0
  17. package/dist/components/form/string/String.d.ts.map +1 -0
  18. package/dist/components/form/string/String.js +52 -0
  19. package/dist/components/form/string/String.js.map +1 -0
  20. package/dist/components/form/string/String.stories.d.ts +10 -0
  21. package/dist/components/form/string/String.stories.d.ts.map +1 -0
  22. package/dist/components/form/string/String.stories.js +21 -0
  23. package/dist/components/form/string/String.stories.js.map +1 -0
  24. package/dist/index.d.ts +2 -0
  25. package/dist/index.d.ts.map +1 -0
  26. package/dist/index.js +6 -0
  27. package/dist/index.js.map +1 -0
  28. package/dist/types.d.ts +7 -0
  29. package/dist/types.d.ts.map +1 -0
  30. package/dist/types.js +3 -0
  31. package/dist/types.js.map +1 -0
  32. package/package.json +116 -0
  33. package/public/logo-dark.png +0 -0
  34. package/public/logo.png +0 -0
  35. package/public/q-symbol-small.png +0 -0
  36. package/public/q-symbol.png +0 -0
  37. package/public/qoreLogo-dark.png +0 -0
  38. package/public/qoreLogo.png +0 -0
  39. package/src/components/form/string/String.stories.tsx +23 -0
  40. package/src/components/form/string/String.tsx +67 -0
  41. package/src/icons.json +2295 -0
  42. package/src/index.tsx +1 -0
  43. package/src/types.ts +12 -0
  44. package/tests.json +1 -0
  45. package/tsconfig.prod.json +26 -0
package/src/index.tsx ADDED
@@ -0,0 +1 @@
1
+ export { FormStringField, IStringFormFieldProps } from './components/form/string/String';
package/src/types.ts ADDED
@@ -0,0 +1,12 @@
1
+ import { IReqoreUIProviderProps } from '@qoretechnologies/reqore/dist/containers/UIProvider';
2
+ import { Meta } from '@storybook/react';
3
+
4
+ export type StoryMeta<
5
+ Component extends keyof JSX.IntrinsicElements | React.JSXElementConstructor<any>,
6
+ AdditionalArgs = Record<string, any>
7
+ > = Meta<
8
+ React.ComponentProps<Component> &
9
+ AdditionalArgs & {
10
+ reqoreOptions: IReqoreUIProviderProps['options'];
11
+ }
12
+ >;
package/tests.json ADDED
@@ -0,0 +1 @@
1
+ {"numFailedTestSuites":0,"numFailedTests":0,"numPassedTestSuites":0,"numPassedTests":0,"numPendingTestSuites":0,"numPendingTests":0,"numRuntimeErrorTestSuites":0,"numTodoTests":0,"numTotalTestSuites":0,"numTotalTests":0,"openHandles":[],"snapshot":{"added":0,"didUpdate":false,"failure":false,"filesAdded":0,"filesRemoved":0,"filesRemovedList":[],"filesUnmatched":0,"filesUpdated":0,"matched":0,"total":0,"unchecked":0,"uncheckedKeysByFile":[],"unmatched":0,"updated":0},"startTime":1714466978525,"success":true,"testResults":[],"wasInterrupted":false}
@@ -0,0 +1,26 @@
1
+ {
2
+ "compilerOptions": {
3
+ "lib": ["es2017", "es2018", "es2019", "es2020", "es2021", "DOM"],
4
+ "module": "commonjs",
5
+ "sourceMap": true,
6
+ "moduleResolution": "node",
7
+ "strict": false,
8
+ "noUnusedLocals": true,
9
+ "noImplicitAny": false,
10
+ "noImplicitReturns": true,
11
+ "noUnusedParameters": true,
12
+ "strictNullChecks": false,
13
+ "experimentalDecorators": true,
14
+ "allowSyntheticDefaultImports": true,
15
+ "declaration": true,
16
+ "declarationMap": true,
17
+ "esModuleInterop": true,
18
+ "skipLibCheck": true,
19
+ "resolveJsonModule": true,
20
+ "jsx": "react-jsx",
21
+ "types": ["node", "react", "react-dom", "jest"],
22
+ "outDir": "dist"
23
+ },
24
+ "exclude": ["node_modules", "./src/stories/*", "./src/mock/*", "__tests__/*"],
25
+ "include": ["./src/**/*.ts", "./src/**/*.tsx"]
26
+ }