@deenruv/facet-harmonica-plugin 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/LICENSE +23 -0
- package/README.md +40 -0
- package/dist/plugin-server/index.d.ts +4 -0
- package/dist/plugin-server/index.js +128 -0
- package/dist/plugin-server/zeus/const.d.ts +6 -0
- package/dist/plugin-server/zeus/const.js +3706 -0
- package/dist/plugin-server/zeus/index.d.ts +18922 -0
- package/dist/plugin-server/zeus/index.js +1093 -0
- package/dist/plugin-server/zeus/typedDocumentNode.d.ts +3 -0
- package/dist/plugin-server/zeus/typedDocumentNode.js +16 -0
- package/dist/plugin-ui/components/CheckboxAccordion.d.ts +10 -0
- package/dist/plugin-ui/components/CheckboxAccordion.js +14 -0
- package/dist/plugin-ui/components/DedicatedButtons.d.ts +2 -0
- package/dist/plugin-ui/components/DedicatedButtons.js +54 -0
- package/dist/plugin-ui/components/FacetHarmonica.d.ts +2 -0
- package/dist/plugin-ui/components/FacetHarmonica.js +59 -0
- package/dist/plugin-ui/components/index.d.ts +1 -0
- package/dist/plugin-ui/components/index.js +1 -0
- package/dist/plugin-ui/graphql/index.d.ts +1 -0
- package/dist/plugin-ui/graphql/index.js +1 -0
- package/dist/plugin-ui/graphql/mutations.d.ts +18 -0
- package/dist/plugin-ui/graphql/mutations.js +9 -0
- package/dist/plugin-ui/graphql/queries.d.ts +122 -0
- package/dist/plugin-ui/graphql/queries.js +11 -0
- package/dist/plugin-ui/graphql/scalars.d.ts +13 -0
- package/dist/plugin-ui/graphql/scalars.js +14 -0
- package/dist/plugin-ui/graphql/selectors.d.ts +69 -0
- package/dist/plugin-ui/graphql/selectors.js +27 -0
- package/dist/plugin-ui/index.d.ts +1 -0
- package/dist/plugin-ui/index.js +23 -0
- package/dist/plugin-ui/locales/en/accordion.json +5 -0
- package/dist/plugin-ui/locales/en/index.d.ts +6 -0
- package/dist/plugin-ui/locales/en/index.js +2 -0
- package/dist/plugin-ui/locales/pl/accordion.json +5 -0
- package/dist/plugin-ui/locales/pl/index.d.ts +6 -0
- package/dist/plugin-ui/locales/pl/index.js +2 -0
- package/dist/plugin-ui/tables.d.ts +5 -0
- package/dist/plugin-ui/tables.js +55 -0
- package/dist/plugin-ui/translation-ns.d.ts +1 -0
- package/dist/plugin-ui/translation-ns.js +1 -0
- package/dist/plugin-ui/tsconfig.json +18 -0
- package/dist/plugin-ui/zeus/const.d.ts +6 -0
- package/dist/plugin-ui/zeus/const.js +3703 -0
- package/dist/plugin-ui/zeus/index.d.ts +18922 -0
- package/dist/plugin-ui/zeus/index.js +1085 -0
- package/dist/plugin-ui/zeus/typedDocumentNode.d.ts +3 -0
- package/dist/plugin-ui/zeus/typedDocumentNode.js +9 -0
- package/package.json +48 -0
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { TypedDocumentNode } from '@graphql-typed-document-node/core';
|
|
2
|
+
import { ValueTypes, GenericOperation, OperationOptions, GraphQLTypes, InputType, ScalarDefinition, ThunderGraphQLOptions, ExtractVariables } from './';
|
|
3
|
+
export declare const typedGql: <O extends "query" | "mutation", SCLR extends ScalarDefinition, R extends keyof ValueTypes = GenericOperation<O>>(operation: O, graphqlOptions?: ThunderGraphQLOptions<SCLR> | undefined) => <Z extends ValueTypes[R]>(o: Z & { [P in keyof Z]: P extends keyof ValueTypes[R] ? Z[P] : never; }, ops?: OperationOptions) => TypedDocumentNode<InputType<GraphQLTypes[R], Z, SCLR>, ExtractVariables<Z>>;
|
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@deenruv/facet-harmonica-plugin",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"homepage": "https://deenruv.com/",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist/**/*"
|
|
8
|
+
],
|
|
9
|
+
"main": "./dist/plugin-server/index.js",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": "./dist/plugin-server/index.js",
|
|
12
|
+
"./plugin-server": "./dist/plugin-server/index.js",
|
|
13
|
+
"./plugin-ui": "./dist/plugin-ui/index.js"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"graphql-tag": "^2.12.6",
|
|
17
|
+
"react": "^18.2.0",
|
|
18
|
+
"react-i18next": "^14.0.5",
|
|
19
|
+
"react-router-dom": "^6.22.1",
|
|
20
|
+
"graphql-zeus": "^7.0.0",
|
|
21
|
+
"lucide-react": "^0.363.0",
|
|
22
|
+
"sonner": "^1.4.41",
|
|
23
|
+
"@nestjs/common": "^10.3.10",
|
|
24
|
+
"@nestjs/graphql": "^12.2.0",
|
|
25
|
+
"@deenruv/common": "^1.0.0",
|
|
26
|
+
"@deenruv/react-ui-devkit": "^1.0.0",
|
|
27
|
+
"@deenruv/admin-types": "^1.0.0"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"rimraf": "^5.0.10",
|
|
31
|
+
"@graphql-typed-document-node/core": "3.2.0",
|
|
32
|
+
"typescript": "5.3.3",
|
|
33
|
+
"@types/react": "^18.2.0",
|
|
34
|
+
"@types/react-dom": "^18.2.0",
|
|
35
|
+
"@deenruv/core": "^1.0.0"
|
|
36
|
+
},
|
|
37
|
+
"peerDependencies": {
|
|
38
|
+
"@deenruv/core": "^0.1.0",
|
|
39
|
+
"typeorm": "^0.3.20"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"build": "rimraf dist && tsc --build",
|
|
43
|
+
"watch": "tsc --build --watch",
|
|
44
|
+
"lint": "eslint .",
|
|
45
|
+
"lint:fix": "eslint --fix .",
|
|
46
|
+
"zeus": "zeus http://localhost:3000/admin-api ./src/plugin-server --td && zeus http://localhost:3000/admin-api ./src/plugin-ui --td"
|
|
47
|
+
}
|
|
48
|
+
}
|