@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.
- package/.eslintrc.js +40 -0
- package/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- package/.github/ISSUE_TEMPLATE/new-component.md +20 -0
- package/.github/ISSUE_TEMPLATE/visual-bug-report.md +38 -0
- package/.github/workflows/beta_release.yml +108 -0
- package/.github/workflows/tests.yml +120 -0
- package/.prettierrc +7 -0
- package/CODE_OF_CONDUCT.md +105 -0
- package/CONTRIBUTING.MD +78 -0
- package/LICENSE +21 -0
- package/README.md +43 -0
- package/SECURITY.md +3 -0
- package/__tests__/setup.js +8 -0
- package/build-storybook.log +28 -0
- package/dist/components/form/string/String.d.ts +15 -0
- package/dist/components/form/string/String.d.ts.map +1 -0
- package/dist/components/form/string/String.js +52 -0
- package/dist/components/form/string/String.js.map +1 -0
- package/dist/components/form/string/String.stories.d.ts +10 -0
- package/dist/components/form/string/String.stories.d.ts.map +1 -0
- package/dist/components/form/string/String.stories.js +21 -0
- package/dist/components/form/string/String.stories.js.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -0
- package/dist/types.d.ts +7 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +3 -0
- package/dist/types.js.map +1 -0
- package/package.json +116 -0
- package/public/logo-dark.png +0 -0
- package/public/logo.png +0 -0
- package/public/q-symbol-small.png +0 -0
- package/public/q-symbol.png +0 -0
- package/public/qoreLogo-dark.png +0 -0
- package/public/qoreLogo.png +0 -0
- package/src/components/form/string/String.stories.tsx +23 -0
- package/src/components/form/string/String.tsx +67 -0
- package/src/icons.json +2295 -0
- package/src/index.tsx +1 -0
- package/src/types.ts +12 -0
- package/tests.json +1 -0
- 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
|
+
}
|