@plumile/backoffice-react 0.1.59 → 0.1.61
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import e from "react-relay";
|
|
2
2
|
//#region src/relay/createInlineReader.ts
|
|
3
|
-
var t = (
|
|
3
|
+
var { readInlineData: t } = e, n = (e) => (n) => t(e, n), r = n;
|
|
4
4
|
//#endregion
|
|
5
|
-
export {
|
|
5
|
+
export { n as createInlineDataReader, r as createInlineReader };
|
|
6
6
|
|
|
7
7
|
//# sourceMappingURL=createInlineReader.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createInlineReader.js","names":[],"sources":["../../../src/relay/createInlineReader.ts"],"sourcesContent":["import
|
|
1
|
+
{"version":3,"file":"createInlineReader.js","names":[],"sources":["../../../src/relay/createInlineReader.ts"],"sourcesContent":["import ReactRelay from 'react-relay';\nimport type { GraphQLTaggedNode } from 'relay-runtime';\n\nconst { readInlineData } = ReactRelay;\n\n// Reserved for non-React helpers that explicitly read `@inline` fragments.\nexport const createInlineDataReader = <TRef, TData>(\n fragment: GraphQLTaggedNode,\n): ((ref: TRef) => TData) => {\n return (ref: TRef) => {\n return readInlineData(fragment, ref as never) as TData;\n };\n};\n\n// Legacy alias kept for incremental migration of existing callsites.\nexport const createInlineReader = createInlineDataReader;\n"],"mappings":";;AAGA,IAAM,EAAE,sBAAmB,GAGd,KACX,OAEQ,MACC,EAAe,GAAU,EAAa,EAKpC,IAAqB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createInlineReader.d.ts","sourceRoot":"","sources":["../../../src/relay/createInlineReader.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"createInlineReader.d.ts","sourceRoot":"","sources":["../../../src/relay/createInlineReader.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,eAAe,CAAC;AAKvD,eAAO,MAAM,sBAAsB,GAAI,IAAI,EAAE,KAAK,EAChD,UAAU,iBAAiB,KAC1B,CAAC,CAAC,GAAG,EAAE,IAAI,KAAK,KAAK,CAIvB,CAAC;AAGF,eAAO,MAAM,kBAAkB,GATQ,IAAI,EAAE,KAAK,YACtC,iBAAiB,KAC1B,CAAC,CAAC,GAAG,EAAE,IAAI,KAAK,KAAK,CAOgC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plumile/backoffice-react",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.61",
|
|
4
4
|
"description": "React provider and pages for Plumile backoffice",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -15,51 +15,101 @@
|
|
|
15
15
|
"default": "./lib/esm/index.js"
|
|
16
16
|
},
|
|
17
17
|
"./style.css": "./lib/esm/style.css",
|
|
18
|
+
"./auth/*.js": {
|
|
19
|
+
"types": "./lib/types/auth/*.d.ts",
|
|
20
|
+
"import": "./lib/esm/auth/*.js",
|
|
21
|
+
"default": "./lib/esm/auth/*.js"
|
|
22
|
+
},
|
|
18
23
|
"./auth/*": {
|
|
19
24
|
"types": "./lib/types/auth/*.d.ts",
|
|
20
25
|
"import": "./lib/esm/auth/*.js",
|
|
21
26
|
"default": "./lib/esm/auth/*.js"
|
|
22
27
|
},
|
|
28
|
+
"./components/*.js": {
|
|
29
|
+
"types": "./lib/types/components/*.d.ts",
|
|
30
|
+
"import": "./lib/esm/components/*.js",
|
|
31
|
+
"default": "./lib/esm/components/*.js"
|
|
32
|
+
},
|
|
23
33
|
"./components/*": {
|
|
24
34
|
"types": "./lib/types/components/*.d.ts",
|
|
25
35
|
"import": "./lib/esm/components/*.js",
|
|
26
36
|
"default": "./lib/esm/components/*.js"
|
|
27
37
|
},
|
|
38
|
+
"./filters/*.js": {
|
|
39
|
+
"types": "./lib/types/filters/*.d.ts",
|
|
40
|
+
"import": "./lib/esm/filters/*.js",
|
|
41
|
+
"default": "./lib/esm/filters/*.js"
|
|
42
|
+
},
|
|
28
43
|
"./filters/*": {
|
|
29
44
|
"types": "./lib/types/filters/*.d.ts",
|
|
30
45
|
"import": "./lib/esm/filters/*.js",
|
|
31
46
|
"default": "./lib/esm/filters/*.js"
|
|
32
47
|
},
|
|
48
|
+
"./hooks/*.js": {
|
|
49
|
+
"types": "./lib/types/hooks/*.d.ts",
|
|
50
|
+
"import": "./lib/esm/hooks/*.js",
|
|
51
|
+
"default": "./lib/esm/hooks/*.js"
|
|
52
|
+
},
|
|
33
53
|
"./hooks/*": {
|
|
34
54
|
"types": "./lib/types/hooks/*.d.ts",
|
|
35
55
|
"import": "./lib/esm/hooks/*.js",
|
|
36
56
|
"default": "./lib/esm/hooks/*.js"
|
|
37
57
|
},
|
|
58
|
+
"./i18n/*.js": {
|
|
59
|
+
"types": "./lib/types/i18n/*.d.ts",
|
|
60
|
+
"import": "./lib/esm/i18n/*.js",
|
|
61
|
+
"default": "./lib/esm/i18n/*.js"
|
|
62
|
+
},
|
|
38
63
|
"./i18n/*": {
|
|
39
64
|
"types": "./lib/types/i18n/*.d.ts",
|
|
40
65
|
"import": "./lib/esm/i18n/*.js",
|
|
41
66
|
"default": "./lib/esm/i18n/*.js"
|
|
42
67
|
},
|
|
68
|
+
"./modules/*.js": {
|
|
69
|
+
"types": "./lib/types/modules/*.d.ts",
|
|
70
|
+
"import": "./lib/esm/modules/*.js",
|
|
71
|
+
"default": "./lib/esm/modules/*.js"
|
|
72
|
+
},
|
|
43
73
|
"./modules/*": {
|
|
44
74
|
"types": "./lib/types/modules/*.d.ts",
|
|
45
75
|
"import": "./lib/esm/modules/*.js",
|
|
46
76
|
"default": "./lib/esm/modules/*.js"
|
|
47
77
|
},
|
|
78
|
+
"./pages/*.js": {
|
|
79
|
+
"types": "./lib/types/pages/*.d.ts",
|
|
80
|
+
"import": "./lib/esm/pages/*.js",
|
|
81
|
+
"default": "./lib/esm/pages/*.js"
|
|
82
|
+
},
|
|
48
83
|
"./pages/*": {
|
|
49
84
|
"types": "./lib/types/pages/*.d.ts",
|
|
50
85
|
"import": "./lib/esm/pages/*.js",
|
|
51
86
|
"default": "./lib/esm/pages/*.js"
|
|
52
87
|
},
|
|
88
|
+
"./provider/*.js": {
|
|
89
|
+
"types": "./lib/types/provider/*.d.ts",
|
|
90
|
+
"import": "./lib/esm/provider/*.js",
|
|
91
|
+
"default": "./lib/esm/provider/*.js"
|
|
92
|
+
},
|
|
53
93
|
"./provider/*": {
|
|
54
94
|
"types": "./lib/types/provider/*.d.ts",
|
|
55
95
|
"import": "./lib/esm/provider/*.js",
|
|
56
96
|
"default": "./lib/esm/provider/*.js"
|
|
57
97
|
},
|
|
98
|
+
"./relay/*.js": {
|
|
99
|
+
"types": "./lib/types/relay/*.d.ts",
|
|
100
|
+
"import": "./lib/esm/relay/*.js",
|
|
101
|
+
"default": "./lib/esm/relay/*.js"
|
|
102
|
+
},
|
|
58
103
|
"./relay/*": {
|
|
59
104
|
"types": "./lib/types/relay/*.d.ts",
|
|
60
105
|
"import": "./lib/esm/relay/*.js",
|
|
61
106
|
"default": "./lib/esm/relay/*.js"
|
|
62
107
|
},
|
|
108
|
+
"./router/*.js": {
|
|
109
|
+
"types": "./lib/types/router/*.d.ts",
|
|
110
|
+
"import": "./lib/esm/router/*.js",
|
|
111
|
+
"default": "./lib/esm/router/*.js"
|
|
112
|
+
},
|
|
63
113
|
"./router/*": {
|
|
64
114
|
"types": "./lib/types/router/*.d.ts",
|
|
65
115
|
"import": "./lib/esm/router/*.js",
|
|
@@ -97,11 +147,11 @@
|
|
|
97
147
|
"npm": ">=8.0.0"
|
|
98
148
|
},
|
|
99
149
|
"dependencies": {
|
|
100
|
-
"@plumile/backoffice-core": "^0.1.
|
|
101
|
-
"@plumile/filter-query": "^0.1.
|
|
102
|
-
"@plumile/router": "^0.1.
|
|
103
|
-
"@plumile/ui": "^0.1.
|
|
104
|
-
"@plumile/ui-backoffice": "^0.1.
|
|
150
|
+
"@plumile/backoffice-core": "^0.1.61",
|
|
151
|
+
"@plumile/filter-query": "^0.1.61",
|
|
152
|
+
"@plumile/router": "^0.1.61",
|
|
153
|
+
"@plumile/ui": "^0.1.61",
|
|
154
|
+
"@plumile/ui-backoffice": "^0.1.61",
|
|
105
155
|
"graphql-ws": "6.0.7",
|
|
106
156
|
"i18next": "^25.8.18",
|
|
107
157
|
"i18next-browser-languagedetector": "8.2.1",
|