@narrative.io/jsonforms-provider-protocols 1.1.0-beta.12 → 1.1.0-beta.13
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.
|
@@ -4,8 +4,7 @@ import JfNumber from "./JfNumber.vue";
|
|
|
4
4
|
import JfEnum from "./JfEnum.vue";
|
|
5
5
|
import JfEnumArray from "./JfEnumArray.vue";
|
|
6
6
|
import JfBoolean from "./JfBoolean.vue";
|
|
7
|
-
|
|
8
|
-
export declare function
|
|
9
|
-
export declare const primevueRenderers: JsonFormsRendererRegistryEntry[];
|
|
7
|
+
export declare const primevueRenderers: unknown[];
|
|
8
|
+
export declare function registerPrimevueRenderers(jsonformsCore: any): unknown[];
|
|
10
9
|
export { JfText, JfTextArea, JfNumber, JfEnum, JfEnumArray, JfBoolean };
|
|
11
10
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/vue/primevue/index.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,MAAM,cAAc,CAAC;AAClC,OAAO,UAAU,MAAM,kBAAkB,CAAC;AAC1C,OAAO,QAAQ,MAAM,gBAAgB,CAAC;AACtC,OAAO,MAAM,MAAM,cAAc,CAAC;AAClC,OAAO,WAAW,MAAM,mBAAmB,CAAC;AAC5C,OAAO,SAAS,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/vue/primevue/index.ts"],"names":[],"mappings":"AAAA,OAAO,MAAM,MAAM,cAAc,CAAC;AAClC,OAAO,UAAU,MAAM,kBAAkB,CAAC;AAC1C,OAAO,QAAQ,MAAM,gBAAgB,CAAC;AACtC,OAAO,MAAM,MAAM,cAAc,CAAC;AAClC,OAAO,WAAW,MAAM,mBAAmB,CAAC;AAC5C,OAAO,SAAS,MAAM,iBAAiB,CAAC;AAiCxC,eAAO,MAAM,iBAAiB,EAAE,OAAO,EAAO,CAAC;AAK/C,wBAAgB,yBAAyB,CAAC,aAAa,EAAE,GAAG,GAAG,OAAO,EAAE,CA0EvE;AAED,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAW,EAAE,SAAS,EAAE,CAAC"}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
1
|
+
import "vue";
|
|
2
|
+
import "@jsonforms/vue";
|
|
3
|
+
import "@jsonforms/core";
|
|
4
|
+
import "primevue/inputtext";
|
|
5
|
+
import "primevue/autocomplete";
|
|
6
|
+
import "primevue/textarea";
|
|
7
|
+
import "primevue/inputnumber";
|
|
8
|
+
import "primevue/dropdown";
|
|
9
|
+
import "primevue/multiselect";
|
|
10
|
+
import "primevue/checkbox";
|
|
7
11
|
const injectLayoutStyles = () => {
|
|
8
12
|
if (typeof window !== "undefined" && typeof document !== "undefined") {
|
|
9
13
|
if (!document.getElementById("jsonforms-primevue-styles")) {
|
|
@@ -28,106 +32,8 @@ const injectLayoutStyles = () => {
|
|
|
28
32
|
}
|
|
29
33
|
};
|
|
30
34
|
injectLayoutStyles();
|
|
31
|
-
const
|
|
32
|
-
function createPrimevueRenderers() {
|
|
33
|
-
try {
|
|
34
|
-
const jsonformsCore = require("@jsonforms/core");
|
|
35
|
-
const {
|
|
36
|
-
rankWith,
|
|
37
|
-
isStringControl,
|
|
38
|
-
or,
|
|
39
|
-
isNumberControl,
|
|
40
|
-
isIntegerControl,
|
|
41
|
-
and,
|
|
42
|
-
isControl,
|
|
43
|
-
schemaMatches,
|
|
44
|
-
isBooleanControl
|
|
45
|
-
} = jsonformsCore;
|
|
46
|
-
const isScalarEnum = (s) => {
|
|
47
|
-
const schema = s;
|
|
48
|
-
return schema && schema.type !== "array" && (Array.isArray(schema.enum) || Array.isArray(schema.oneOf));
|
|
49
|
-
};
|
|
50
|
-
const isEnumArray = (s) => {
|
|
51
|
-
const schema = s;
|
|
52
|
-
return schema?.type === "array" && (Array.isArray(schema.items?.enum) || Array.isArray(schema.items?.oneOf));
|
|
53
|
-
};
|
|
54
|
-
const isMultilineString = (uischema, schema) => {
|
|
55
|
-
const controlUischema = uischema;
|
|
56
|
-
return and(
|
|
57
|
-
isStringControl,
|
|
58
|
-
() => controlUischema?.options?.multi === true
|
|
59
|
-
)(
|
|
60
|
-
uischema,
|
|
61
|
-
schema,
|
|
62
|
-
{}
|
|
63
|
-
);
|
|
64
|
-
};
|
|
65
|
-
return [
|
|
66
|
-
// Multiline text has higher priority than regular text
|
|
67
|
-
{ tester: rankWith(PRIME + 4, isMultilineString), renderer: _sfc_main },
|
|
68
|
-
{ tester: rankWith(PRIME + 3, isStringControl), renderer: _sfc_main$1 },
|
|
69
|
-
{
|
|
70
|
-
tester: rankWith(PRIME + 4, or(isNumberControl, isIntegerControl)),
|
|
71
|
-
renderer: _sfc_main$2
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
tester: rankWith(
|
|
75
|
-
PRIME + 5,
|
|
76
|
-
and(isControl, schemaMatches(isScalarEnum))
|
|
77
|
-
),
|
|
78
|
-
renderer: _sfc_main$3
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
tester: rankWith(PRIME + 6, and(isControl, schemaMatches(isEnumArray))),
|
|
82
|
-
renderer: _sfc_main$4
|
|
83
|
-
},
|
|
84
|
-
{ tester: rankWith(PRIME + 3, isBooleanControl), renderer: _sfc_main$5 }
|
|
85
|
-
];
|
|
86
|
-
} catch {
|
|
87
|
-
console.warn(
|
|
88
|
-
"@jsonforms/core not available, returning empty renderers array"
|
|
89
|
-
);
|
|
90
|
-
return [];
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
let _cachedRenderers = null;
|
|
94
|
-
const primevueRenderers = new Proxy(
|
|
95
|
-
[],
|
|
96
|
-
{
|
|
97
|
-
get(target, prop) {
|
|
98
|
-
if (_cachedRenderers === null) {
|
|
99
|
-
_cachedRenderers = createPrimevueRenderers();
|
|
100
|
-
}
|
|
101
|
-
return Reflect.get(_cachedRenderers, prop);
|
|
102
|
-
},
|
|
103
|
-
has(target, prop) {
|
|
104
|
-
if (_cachedRenderers === null) {
|
|
105
|
-
_cachedRenderers = createPrimevueRenderers();
|
|
106
|
-
}
|
|
107
|
-
return Reflect.has(_cachedRenderers, prop);
|
|
108
|
-
},
|
|
109
|
-
ownKeys() {
|
|
110
|
-
if (_cachedRenderers === null) {
|
|
111
|
-
_cachedRenderers = createPrimevueRenderers();
|
|
112
|
-
}
|
|
113
|
-
return Reflect.ownKeys(_cachedRenderers);
|
|
114
|
-
},
|
|
115
|
-
getOwnPropertyDescriptor(_, prop) {
|
|
116
|
-
if (_cachedRenderers === null) {
|
|
117
|
-
_cachedRenderers = createPrimevueRenderers();
|
|
118
|
-
}
|
|
119
|
-
return Reflect.getOwnPropertyDescriptor(_cachedRenderers, prop);
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
);
|
|
35
|
+
const primevueRenderers = [];
|
|
123
36
|
export {
|
|
124
|
-
_sfc_main$5 as JfBoolean,
|
|
125
|
-
_sfc_main$3 as JfEnum,
|
|
126
|
-
_sfc_main$4 as JfEnumArray,
|
|
127
|
-
_sfc_main$2 as JfNumber,
|
|
128
|
-
_sfc_main$1 as JfText,
|
|
129
|
-
_sfc_main as JfTextArea,
|
|
130
|
-
createPrimevueRenderers,
|
|
131
37
|
primevueRenderers
|
|
132
38
|
};
|
|
133
39
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../src/vue/primevue/index.ts"],"sourcesContent":["import JfText from \"./JfText.vue\";\nimport JfTextArea from \"./JfTextArea.vue\";\nimport JfNumber from \"./JfNumber.vue\";\nimport JfEnum from \"./JfEnum.vue\";\nimport JfEnumArray from \"./JfEnumArray.vue\";\nimport JfBoolean from \"./JfBoolean.vue\";\n\n// Auto-inject layout styles\nconst injectLayoutStyles = () => {\n if (typeof window !== \"undefined\" && typeof document !== \"undefined\") {\n if (!document.getElementById(\"jsonforms-primevue-styles\")) {\n const style = document.createElement(\"style\");\n style.id = \"jsonforms-primevue-styles\";\n style.textContent = `\n/* JSONForms PrimeVue Provider Protocols Layout Styles */\n.vertical-layout {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n gap: 1rem;\n width: 100%;\n}\n\n.vertical-layout-item {\n width: 100%;\n}\n `;\n document.head.appendChild(style);\n }\n }\n};\n\n// Inject styles when this module is imported\ninjectLayoutStyles();\n\n//
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/vue/primevue/index.ts"],"sourcesContent":["import JfText from \"./JfText.vue\";\nimport JfTextArea from \"./JfTextArea.vue\";\nimport JfNumber from \"./JfNumber.vue\";\nimport JfEnum from \"./JfEnum.vue\";\nimport JfEnumArray from \"./JfEnumArray.vue\";\nimport JfBoolean from \"./JfBoolean.vue\";\n\n// Auto-inject layout styles\nconst injectLayoutStyles = () => {\n if (typeof window !== \"undefined\" && typeof document !== \"undefined\") {\n if (!document.getElementById(\"jsonforms-primevue-styles\")) {\n const style = document.createElement(\"style\");\n style.id = \"jsonforms-primevue-styles\";\n style.textContent = `\n/* JSONForms PrimeVue Provider Protocols Layout Styles */\n.vertical-layout {\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n gap: 1rem;\n width: 100%;\n}\n\n.vertical-layout-item {\n width: 100%;\n}\n `;\n document.head.appendChild(style);\n }\n }\n};\n\n// Inject styles when this module is imported\ninjectLayoutStyles();\n\n// Return empty renderers array - let the consuming application handle renderer registration\n// This avoids all circular dependency and AJV schema compilation issues\n\nexport const primevueRenderers: unknown[] = [];\n\n// Export a function that can be called by the consumer to register renderers\n// This puts the burden on the consuming application to call this after JSONForms is fully loaded\n// eslint-disable-next-line @typescript-eslint/no-explicit-any\nexport function registerPrimevueRenderers(jsonformsCore: any): unknown[] {\n const {\n rankWith,\n isStringControl,\n or,\n isNumberControl,\n isIntegerControl,\n and,\n isControl,\n schemaMatches,\n isBooleanControl,\n } = jsonformsCore;\n\n // Give PrimeVue renderers a high base rank; vanilla commonly uses small ranks (2–5)\n const PRIME = 100;\n\n // helpers for enum detection\n const isScalarEnum = (s?: object) => {\n const schema = s as {\n type?: string;\n enum?: unknown[];\n oneOf?: unknown[];\n };\n return (\n schema &&\n schema.type !== \"array\" &&\n (Array.isArray(schema.enum) || Array.isArray(schema.oneOf))\n );\n };\n\n const isEnumArray = (s?: object) => {\n const schema = s as {\n type?: string;\n items?: { enum?: unknown[]; oneOf?: unknown[] };\n };\n return (\n schema?.type === \"array\" &&\n (Array.isArray(schema.items?.enum) || Array.isArray(schema.items?.oneOf))\n );\n };\n\n // helper for multiline detection\n const isMultilineString = (uischema: unknown, schema: unknown) => {\n const controlUischema = uischema as { options?: { multi?: boolean } };\n return and(isStringControl, () => controlUischema?.options?.multi === true)(\n uischema as Parameters<typeof isStringControl>[0],\n schema as Parameters<typeof isStringControl>[1],\n {} as Parameters<typeof isStringControl>[2],\n );\n };\n\n const renderers = [\n // Multiline text has higher priority than regular text\n { tester: rankWith(PRIME + 4, isMultilineString), renderer: JfTextArea },\n { tester: rankWith(PRIME + 3, isStringControl), renderer: JfText },\n {\n tester: rankWith(PRIME + 4, or(isNumberControl, isIntegerControl)),\n renderer: JfNumber,\n },\n {\n tester: rankWith(PRIME + 5, and(isControl, schemaMatches(isScalarEnum))),\n renderer: JfEnum,\n },\n {\n tester: rankWith(PRIME + 6, and(isControl, schemaMatches(isEnumArray))),\n renderer: JfEnumArray,\n },\n { tester: rankWith(PRIME + 3, isBooleanControl), renderer: JfBoolean },\n ];\n\n // Update the exported array\n primevueRenderers.splice(0, primevueRenderers.length, ...renderers);\n\n return renderers;\n}\n\nexport { JfText, JfTextArea, JfNumber, JfEnum, JfEnumArray, JfBoolean };\n"],"names":[],"mappings":";;;;;;;;;;AAQA,MAAM,qBAAqB,MAAM;AAC/B,MAAI,OAAO,WAAW,eAAe,OAAO,aAAa,aAAa;AACpE,QAAI,CAAC,SAAS,eAAe,2BAA2B,GAAG;AACzD,YAAM,QAAQ,SAAS,cAAc,OAAO;AAC5C,YAAM,KAAK;AACX,YAAM,cAAc;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAcpB,eAAS,KAAK,YAAY,KAAK;AAAA,IACjC;AAAA,EACF;AACF;AAGA,mBAAA;AAKO,MAAM,oBAA+B,CAAA;"}
|
package/package.json
CHANGED
|
@@ -33,131 +33,88 @@ const injectLayoutStyles = () => {
|
|
|
33
33
|
// Inject styles when this module is imported
|
|
34
34
|
injectLayoutStyles();
|
|
35
35
|
|
|
36
|
-
//
|
|
37
|
-
|
|
36
|
+
// Return empty renderers array - let the consuming application handle renderer registration
|
|
37
|
+
// This avoids all circular dependency and AJV schema compilation issues
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
const PRIME = 100;
|
|
39
|
+
export const primevueRenderers: unknown[] = [];
|
|
41
40
|
|
|
42
|
-
//
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
isControl,
|
|
58
|
-
schemaMatches,
|
|
59
|
-
isBooleanControl,
|
|
60
|
-
} = jsonformsCore;
|
|
41
|
+
// Export a function that can be called by the consumer to register renderers
|
|
42
|
+
// This puts the burden on the consuming application to call this after JSONForms is fully loaded
|
|
43
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
44
|
+
export function registerPrimevueRenderers(jsonformsCore: any): unknown[] {
|
|
45
|
+
const {
|
|
46
|
+
rankWith,
|
|
47
|
+
isStringControl,
|
|
48
|
+
or,
|
|
49
|
+
isNumberControl,
|
|
50
|
+
isIntegerControl,
|
|
51
|
+
and,
|
|
52
|
+
isControl,
|
|
53
|
+
schemaMatches,
|
|
54
|
+
isBooleanControl,
|
|
55
|
+
} = jsonformsCore;
|
|
61
56
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
const schema = s as {
|
|
65
|
-
type?: string;
|
|
66
|
-
enum?: unknown[];
|
|
67
|
-
oneOf?: unknown[];
|
|
68
|
-
};
|
|
69
|
-
return (
|
|
70
|
-
schema &&
|
|
71
|
-
schema.type !== "array" &&
|
|
72
|
-
(Array.isArray(schema.enum) || Array.isArray(schema.oneOf))
|
|
73
|
-
);
|
|
74
|
-
};
|
|
57
|
+
// Give PrimeVue renderers a high base rank; vanilla commonly uses small ranks (2–5)
|
|
58
|
+
const PRIME = 100;
|
|
75
59
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
schema?.type === "array" &&
|
|
83
|
-
(Array.isArray(schema.items?.enum) ||
|
|
84
|
-
Array.isArray(schema.items?.oneOf))
|
|
85
|
-
);
|
|
60
|
+
// helpers for enum detection
|
|
61
|
+
const isScalarEnum = (s?: object) => {
|
|
62
|
+
const schema = s as {
|
|
63
|
+
type?: string;
|
|
64
|
+
enum?: unknown[];
|
|
65
|
+
oneOf?: unknown[];
|
|
86
66
|
};
|
|
67
|
+
return (
|
|
68
|
+
schema &&
|
|
69
|
+
schema.type !== "array" &&
|
|
70
|
+
(Array.isArray(schema.enum) || Array.isArray(schema.oneOf))
|
|
71
|
+
);
|
|
72
|
+
};
|
|
87
73
|
|
|
88
|
-
|
|
89
|
-
const
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
isStringControl,
|
|
93
|
-
() => controlUischema?.options?.multi === true,
|
|
94
|
-
)(
|
|
95
|
-
uischema as Parameters<typeof isStringControl>[0],
|
|
96
|
-
schema as Parameters<typeof isStringControl>[1],
|
|
97
|
-
{} as Parameters<typeof isStringControl>[2],
|
|
98
|
-
);
|
|
74
|
+
const isEnumArray = (s?: object) => {
|
|
75
|
+
const schema = s as {
|
|
76
|
+
type?: string;
|
|
77
|
+
items?: { enum?: unknown[]; oneOf?: unknown[] };
|
|
99
78
|
};
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
{ tester: rankWith(PRIME + 4, isMultilineString), renderer: JfTextArea },
|
|
104
|
-
{ tester: rankWith(PRIME + 3, isStringControl), renderer: JfText },
|
|
105
|
-
{
|
|
106
|
-
tester: rankWith(PRIME + 4, or(isNumberControl, isIntegerControl)),
|
|
107
|
-
renderer: JfNumber,
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
tester: rankWith(
|
|
111
|
-
PRIME + 5,
|
|
112
|
-
and(isControl, schemaMatches(isScalarEnum)),
|
|
113
|
-
),
|
|
114
|
-
renderer: JfEnum,
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
tester: rankWith(PRIME + 6, and(isControl, schemaMatches(isEnumArray))),
|
|
118
|
-
renderer: JfEnumArray,
|
|
119
|
-
},
|
|
120
|
-
{ tester: rankWith(PRIME + 3, isBooleanControl), renderer: JfBoolean },
|
|
121
|
-
];
|
|
122
|
-
} catch {
|
|
123
|
-
console.warn(
|
|
124
|
-
"@jsonforms/core not available, returning empty renderers array",
|
|
79
|
+
return (
|
|
80
|
+
schema?.type === "array" &&
|
|
81
|
+
(Array.isArray(schema.items?.enum) || Array.isArray(schema.items?.oneOf))
|
|
125
82
|
);
|
|
126
|
-
|
|
127
|
-
}
|
|
128
|
-
}
|
|
83
|
+
};
|
|
129
84
|
|
|
130
|
-
//
|
|
131
|
-
|
|
85
|
+
// helper for multiline detection
|
|
86
|
+
const isMultilineString = (uischema: unknown, schema: unknown) => {
|
|
87
|
+
const controlUischema = uischema as { options?: { multi?: boolean } };
|
|
88
|
+
return and(isStringControl, () => controlUischema?.options?.multi === true)(
|
|
89
|
+
uischema as Parameters<typeof isStringControl>[0],
|
|
90
|
+
schema as Parameters<typeof isStringControl>[1],
|
|
91
|
+
{} as Parameters<typeof isStringControl>[2],
|
|
92
|
+
);
|
|
93
|
+
};
|
|
132
94
|
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
return Reflect.get(_cachedRenderers, prop);
|
|
141
|
-
},
|
|
142
|
-
has(target, prop) {
|
|
143
|
-
if (_cachedRenderers === null) {
|
|
144
|
-
_cachedRenderers = createPrimevueRenderers();
|
|
145
|
-
}
|
|
146
|
-
return Reflect.has(_cachedRenderers, prop);
|
|
95
|
+
const renderers = [
|
|
96
|
+
// Multiline text has higher priority than regular text
|
|
97
|
+
{ tester: rankWith(PRIME + 4, isMultilineString), renderer: JfTextArea },
|
|
98
|
+
{ tester: rankWith(PRIME + 3, isStringControl), renderer: JfText },
|
|
99
|
+
{
|
|
100
|
+
tester: rankWith(PRIME + 4, or(isNumberControl, isIntegerControl)),
|
|
101
|
+
renderer: JfNumber,
|
|
147
102
|
},
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
}
|
|
152
|
-
return Reflect.ownKeys(_cachedRenderers);
|
|
103
|
+
{
|
|
104
|
+
tester: rankWith(PRIME + 5, and(isControl, schemaMatches(isScalarEnum))),
|
|
105
|
+
renderer: JfEnum,
|
|
153
106
|
},
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
}
|
|
158
|
-
return Reflect.getOwnPropertyDescriptor(_cachedRenderers, prop);
|
|
107
|
+
{
|
|
108
|
+
tester: rankWith(PRIME + 6, and(isControl, schemaMatches(isEnumArray))),
|
|
109
|
+
renderer: JfEnumArray,
|
|
159
110
|
},
|
|
160
|
-
|
|
161
|
-
|
|
111
|
+
{ tester: rankWith(PRIME + 3, isBooleanControl), renderer: JfBoolean },
|
|
112
|
+
];
|
|
113
|
+
|
|
114
|
+
// Update the exported array
|
|
115
|
+
primevueRenderers.splice(0, primevueRenderers.length, ...renderers);
|
|
116
|
+
|
|
117
|
+
return renderers;
|
|
118
|
+
}
|
|
162
119
|
|
|
163
120
|
export { JfText, JfTextArea, JfNumber, JfEnum, JfEnumArray, JfBoolean };
|