@zohodesk/library-platform 1.2.0 → 1.2.2-exp.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/es/cc/table-connected/SdkContract.js +28 -3
- package/es/cc/table-list/Properties.js +9 -8
- package/es/cc/table-list/row/Properties.js +19 -6
- package/es/index.js +6 -2
- package/es/library/custom-component/frameworks/json-schema-validator/Validator.js +57 -44
- package/es/library/custom-component/frameworks/json-schema-validator/__generated__/registry.d.js +1 -0
- package/es/library/custom-component/frameworks/json-schema-validator/__generated__/registry.js +92 -0
- package/es/library/custom-component/frameworks/json-schema-validator/__generated__/validators.js +1 -0
- package/es/library/custom-component/frameworks/json-schema-validator/__tests__/Validator.test.js +478 -0
- package/es/library/custom-component/frameworks/ui/DependencyFactory.js +16 -0
- package/es/platform/client-actions/behaviour/zclient-actions/adapters/presenters/FilterUtils.js +11 -0
- package/es/platform/client-actions/behaviour/zclient-actions/adapters/resources/ClientActionsFetchSDK.js +76 -0
- package/es/platform/client-actions/behaviour/zclient-actions/applications/interfaces/ClientActionsAPIGatewayParams.js +1 -0
- package/es/platform/client-actions/behaviour/zclient-actions/applications/interfaces/ClientActionsFetchSDKParams.js +10 -0
- package/es/platform/client-actions/behaviour/zclient-actions/applications/interfaces/IClientActionsFetchSDK.js +0 -0
- package/es/platform/client-actions/cc/action-event-mediator/Properties.js +18 -4
- package/es/platform/client-scripts/behaviour/zclient-scripts-fetch/adapters/resources/ClientScriptsFetchSDK.js +43 -0
- package/es/platform/client-scripts/behaviour/zclient-scripts-fetch/applications/interfaces/ClientScriptsAPIGatewayParams.js +1 -0
- package/es/platform/client-scripts/behaviour/zclient-scripts-fetch/applications/interfaces/ClientScriptsSDKFetchParams.js +1 -0
- package/es/platform/client-scripts/behaviour/zclient-scripts-fetch/applications/interfaces/IClientScriptsFetchSDK.js +0 -0
- package/es/platform/components/smart-action-band/adapters/presenters/ActionBandTranslator.js +7 -4
- package/es/platform/data-source/http-template/getPageClientActions.js +23 -0
- package/es/platform/zform/adapters/presenter/FormTranslator.js +18 -15
- package/es/platform/zform/adapters/presenter/translators/SectionTranslator.js +1 -1
- package/es/platform/zlist/adapters/presenters/TableTranslator.js +5 -4
- package/package.json +6 -4
|
@@ -1,5 +1,30 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
// OPTIMIZE: Duplicated comparator values from bc/zrecord/Types.ts enums (CommonComparators, TextComparators, NumberComparators, DateComparators)
|
|
2
|
+
const filterConfigSchema = {
|
|
3
|
+
type: 'object',
|
|
4
|
+
properties: {
|
|
5
|
+
conditions: {
|
|
6
|
+
type: 'array',
|
|
7
|
+
items: {
|
|
8
|
+
type: 'object',
|
|
9
|
+
properties: {
|
|
10
|
+
fieldName: {
|
|
11
|
+
type: 'string'
|
|
12
|
+
},
|
|
13
|
+
condition: {
|
|
14
|
+
type: 'string',
|
|
15
|
+
enum: ['is empty', 'is not empty', 'is', "isn't", 'starts with', 'ends with', 'contains', "doesn't contain", '=', '<>', '<', '<=', '>', '>=', 'is after', 'is before', 'between', 'not between']
|
|
16
|
+
},
|
|
17
|
+
value: {}
|
|
18
|
+
},
|
|
19
|
+
required: ['fieldName', 'condition', 'value']
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
pattern: {
|
|
23
|
+
type: 'string'
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
required: ['conditions', 'pattern']
|
|
27
|
+
};
|
|
3
28
|
export const SdkContracts = {
|
|
4
29
|
getRecordInputMeta: {
|
|
5
30
|
type: 'object',
|
|
@@ -167,7 +192,7 @@ export const SdkContracts = {
|
|
|
167
192
|
},
|
|
168
193
|
order: {
|
|
169
194
|
type: 'string',
|
|
170
|
-
enum: [
|
|
195
|
+
enum: ['ASC', 'DES', 'NONE']
|
|
171
196
|
}
|
|
172
197
|
}
|
|
173
198
|
},
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { Alignment, Width, SortedBy } from "./data-types/Header";
|
|
2
|
-
import RowCursor from "./data-types/RowCursor";
|
|
3
1
|
import SelectionConfigProperties from "../../bc/list-selection/Properties";
|
|
4
|
-
|
|
2
|
+
const actionsSchema = {
|
|
3
|
+
type: 'array',
|
|
4
|
+
minItems: 0
|
|
5
|
+
};
|
|
5
6
|
const TableListProperties = {
|
|
6
7
|
isReOrderLoading: {
|
|
7
8
|
required: false,
|
|
@@ -47,7 +48,7 @@ const TableListProperties = {
|
|
|
47
48
|
properties: {
|
|
48
49
|
order: {
|
|
49
50
|
type: 'string',
|
|
50
|
-
enum:
|
|
51
|
+
enum: ['none', 'ascending', 'descending']
|
|
51
52
|
},
|
|
52
53
|
name: {
|
|
53
54
|
type: 'string'
|
|
@@ -110,7 +111,7 @@ const TableListProperties = {
|
|
|
110
111
|
required: false,
|
|
111
112
|
defaultValue: {
|
|
112
113
|
hasActions: false,
|
|
113
|
-
columnWidth:
|
|
114
|
+
columnWidth: 120
|
|
114
115
|
},
|
|
115
116
|
typeMetadata: {
|
|
116
117
|
schema: {
|
|
@@ -142,7 +143,7 @@ const TableListProperties = {
|
|
|
142
143
|
typeMetadata: {
|
|
143
144
|
schema: {
|
|
144
145
|
type: 'string',
|
|
145
|
-
enum:
|
|
146
|
+
enum: ['default', 'pointer', 'not-allowed']
|
|
146
147
|
}
|
|
147
148
|
}
|
|
148
149
|
},
|
|
@@ -175,11 +176,11 @@ const TableListProperties = {
|
|
|
175
176
|
},
|
|
176
177
|
alignment: {
|
|
177
178
|
type: 'string',
|
|
178
|
-
enum:
|
|
179
|
+
enum: ['left', 'center', 'right']
|
|
179
180
|
},
|
|
180
181
|
sortOrder: {
|
|
181
182
|
type: 'string',
|
|
182
|
-
enum:
|
|
183
|
+
enum: ['none', 'ascending', 'descending']
|
|
183
184
|
}
|
|
184
185
|
},
|
|
185
186
|
required: ['id', 'name', 'text']
|
|
@@ -1,6 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
// OPTIMIZE: Duplicated clientScriptsSchema in platform/client-actions/cc/action-event-mediator/Properties.ts
|
|
2
|
+
const clientScriptsSchema = {
|
|
3
|
+
type: 'array',
|
|
4
|
+
minItems: 0,
|
|
5
|
+
items: {
|
|
6
|
+
type: 'object',
|
|
7
|
+
properties: {
|
|
8
|
+
targetEventName: {
|
|
9
|
+
type: 'string'
|
|
10
|
+
},
|
|
11
|
+
clientScript: {
|
|
12
|
+
type: 'string'
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
4
17
|
const TableRowProperties = {
|
|
5
18
|
isReorderEnabled: {
|
|
6
19
|
required: false,
|
|
@@ -89,7 +102,7 @@ const TableRowProperties = {
|
|
|
89
102
|
typeMetadata: {
|
|
90
103
|
schema: {
|
|
91
104
|
type: 'string',
|
|
92
|
-
enum:
|
|
105
|
+
enum: ['default', 'pointer', 'not-allowed']
|
|
93
106
|
}
|
|
94
107
|
}
|
|
95
108
|
},
|
|
@@ -122,11 +135,11 @@ const TableRowProperties = {
|
|
|
122
135
|
},
|
|
123
136
|
rowActionsColumnWidth: {
|
|
124
137
|
required: false,
|
|
125
|
-
defaultValue:
|
|
138
|
+
defaultValue: 120,
|
|
126
139
|
typeMetadata: {
|
|
127
140
|
schema: {
|
|
128
141
|
type: 'number',
|
|
129
|
-
enum:
|
|
142
|
+
enum: [120, 160, 200, 240, 280, 320]
|
|
130
143
|
}
|
|
131
144
|
}
|
|
132
145
|
},
|
package/es/index.js
CHANGED
|
@@ -5,7 +5,9 @@ import ExternalConstants from "./cc/table-connected/constants/ExternalConstants"
|
|
|
5
5
|
import ActionEventMediator from "./platform/client-actions/components/action-event-mediator/frameworks/ui/ActionEventMediator";
|
|
6
6
|
import RowActionsRenderer from "./platform/client-actions/components/row-actions-renderer/frameworks/ui/RowActions/RowActionsRenderer";
|
|
7
7
|
import AdaptiveRowActionsRenderer from "./platform/client-actions/components/row-actions-renderer/frameworks/ui/AdaptiveRowActions/AdaptiveRowActionsRenderer";
|
|
8
|
-
import ClientActionReordererRegistry from "./platform/client-actions/components/action-event-mediator/frameworks/ui/ClientActionReordererRegistry";
|
|
8
|
+
import ClientActionReordererRegistry from "./platform/client-actions/components/action-event-mediator/frameworks/ui/ClientActionReordererRegistry";
|
|
9
|
+
import ClientActionsFetchSDK from "./platform/client-actions/behaviour/zclient-actions/adapters/resources/ClientActionsFetchSDK";
|
|
10
|
+
import ClientScriptsFetchSDK from "./platform/client-scripts/behaviour/zclient-scripts-fetch/adapters/resources/ClientScriptsFetchSDK"; // Rebuild SmartTableConstants without Events
|
|
9
11
|
|
|
10
12
|
const SmartTableConstants = {
|
|
11
13
|
ExternalConstants
|
|
@@ -40,4 +42,6 @@ export const Behaviours = {
|
|
|
40
42
|
FieldSectionEventMappingBehaviourFactory
|
|
41
43
|
};
|
|
42
44
|
export * from "./library/analytics";
|
|
43
|
-
export { ClientActionReordererRegistry };
|
|
45
|
+
export { ClientActionReordererRegistry };
|
|
46
|
+
export { ClientActionsFetchSDK };
|
|
47
|
+
export { ClientScriptsFetchSDK };
|
|
@@ -1,31 +1,74 @@
|
|
|
1
1
|
/* eslint-disable complexity */
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
// Map from schema object reference to precompiled validator function
|
|
3
|
+
const precompiledSchemaMap = new WeakMap(); // Precompiled registry: JSON-stringified schema → validator function
|
|
4
|
+
|
|
5
|
+
let precompiledByHash = null;
|
|
6
6
|
|
|
7
7
|
class Validator {
|
|
8
|
+
/**
|
|
9
|
+
* Register precompiled validators from the build-time generated registry.
|
|
10
|
+
* Builds a hash-based lookup so validate() can auto-match schemas.
|
|
11
|
+
* Called once at app startup.
|
|
12
|
+
*/
|
|
13
|
+
static registerPrecompiled(registry) {
|
|
14
|
+
precompiledByHash = new Map(); // Each precompiled validator has its schema embedded — extract and hash it
|
|
15
|
+
|
|
16
|
+
for (const [, validate] of Object.entries(registry)) {
|
|
17
|
+
if (typeof validate === 'function' && validate.schema) {
|
|
18
|
+
const hash = JSON.stringify(validate.schema);
|
|
19
|
+
precompiledByHash.set(hash, validate);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
static normalizeErrors(ajvErrors) {
|
|
25
|
+
return ajvErrors.map(e => ({ ...e,
|
|
26
|
+
dataPath: e.instancePath || e.dataPath || ''
|
|
27
|
+
}));
|
|
28
|
+
}
|
|
29
|
+
|
|
8
30
|
static validate(schema, value) {
|
|
9
31
|
if (schema.schema) {
|
|
10
32
|
return Validator.validatePropertySchema(schema, value);
|
|
11
33
|
}
|
|
12
34
|
|
|
13
35
|
let errors = [];
|
|
14
|
-
Validator.checkFunctionsRecursively(schema, value, '', '#', errors); //
|
|
36
|
+
Validator.checkFunctionsRecursively(schema, value, '', '#', errors); // Try precompiled validator first (cached by schema reference)
|
|
37
|
+
|
|
38
|
+
let precompiled = precompiledSchemaMap.get(schema); // On first encounter, try to match against precompiled registry by schema hash
|
|
39
|
+
|
|
40
|
+
if (!precompiled && precompiledByHash) {
|
|
41
|
+
const ajvSchema = JSON.parse(JSON.stringify(schema, (key, val) => val === 'function' ? undefined : val));
|
|
42
|
+
const hash = JSON.stringify(ajvSchema);
|
|
43
|
+
precompiled = precompiledByHash.get(hash);
|
|
44
|
+
|
|
45
|
+
if (precompiled) {
|
|
46
|
+
// Cache for subsequent calls — O(1) lookup from now on
|
|
47
|
+
precompiledSchemaMap.set(schema, precompiled);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
if (precompiled) {
|
|
52
|
+
const isValid = precompiled(value);
|
|
53
|
+
|
|
54
|
+
if (!isValid && precompiled.errors) {
|
|
55
|
+
errors.push(...Validator.normalizeErrors(precompiled.errors));
|
|
56
|
+
}
|
|
15
57
|
|
|
16
|
-
|
|
17
|
-
|
|
58
|
+
return {
|
|
59
|
+
isValid: isValid && errors.length === 0,
|
|
60
|
+
errors,
|
|
61
|
+
warnings: []
|
|
62
|
+
};
|
|
63
|
+
} // No precompiled validator found — skip AJV validation, return function-check errors only
|
|
18
64
|
|
|
19
|
-
const validate = jsonValidator.compile(ajvSchema);
|
|
20
|
-
const isValid = validate(value);
|
|
21
65
|
|
|
22
|
-
if (
|
|
23
|
-
|
|
24
|
-
validate.errors && errors.push(...validate.errors);
|
|
66
|
+
if (process.env.NODE_ENV === 'development') {
|
|
67
|
+
console.warn('[Validator] No precompiled validator found for schema. Skipping AJV validation.', schema);
|
|
25
68
|
}
|
|
26
69
|
|
|
27
70
|
return {
|
|
28
|
-
isValid:
|
|
71
|
+
isValid: errors.length === 0,
|
|
29
72
|
errors,
|
|
30
73
|
warnings: []
|
|
31
74
|
};
|
|
@@ -62,37 +105,7 @@ class Validator {
|
|
|
62
105
|
value.forEach((item, index) => {
|
|
63
106
|
Validator.checkFunctionsRecursively(schema.items, item, `${path}[${index}]`, `${schemaPath}/items`, errors);
|
|
64
107
|
});
|
|
65
|
-
}
|
|
66
|
-
// const subErrors = [];
|
|
67
|
-
// const valid = schema.anyOf.some((subSchema, idx) => {
|
|
68
|
-
// const tmpErrors = [];
|
|
69
|
-
// Validator.checkFunctionsRecursively(subSchema, value, path, `${schemaPath}/anyOf/${idx}`, tmpErrors);
|
|
70
|
-
// return tmpErrors.length === 0;
|
|
71
|
-
// });
|
|
72
|
-
// if (!valid) {
|
|
73
|
-
// errors.push({ keyword: "anyOf", dataPath: path ? `.${path}` : "", schemaPath: `${schemaPath}/anyOf`, params: {}, message: "should match some schema in anyOf" });
|
|
74
|
-
// }
|
|
75
|
-
// return;
|
|
76
|
-
// }
|
|
77
|
-
// if (schema.allOf && Array.isArray(schema.allOf)) {
|
|
78
|
-
// schema.allOf.forEach((subSchema, idx) => {
|
|
79
|
-
// Validator.checkFunctionsRecursively(subSchema, value, path, `${schemaPath}/allOf/${idx}`, errors);
|
|
80
|
-
// });
|
|
81
|
-
// return;
|
|
82
|
-
// }
|
|
83
|
-
// if (schema.oneOf && Array.isArray(schema.oneOf)) {
|
|
84
|
-
// let matchCount = 0;
|
|
85
|
-
// schema.oneOf.forEach((subSchema, idx) => {
|
|
86
|
-
// const tmpErrors = [];
|
|
87
|
-
// Validator.checkFunctionsRecursively(subSchema, value, path, `${schemaPath}/oneOf/${idx}`, tmpErrors);
|
|
88
|
-
// if (tmpErrors.length === 0) matchCount++;
|
|
89
|
-
// });
|
|
90
|
-
// if (matchCount !== 1) {
|
|
91
|
-
// errors.push({ keyword: "oneOf", dataPath: path ? `.${path}` : "", schemaPath: `${schemaPath}/oneOf`, params: {}, message: "should match exactly one schema in oneOf" });
|
|
92
|
-
// }
|
|
93
|
-
// return;
|
|
94
|
-
// }
|
|
95
|
-
|
|
108
|
+
}
|
|
96
109
|
}
|
|
97
110
|
|
|
98
111
|
static validatePropertySchema(propertySchema, value) {
|
package/es/library/custom-component/frameworks/json-schema-validator/__generated__/registry.d.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/es/library/custom-component/frameworks/json-schema-validator/__generated__/registry.js
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AUTO-GENERATED by scripts/precompile-schemas.js
|
|
3
|
+
* Maps component paths to precompiled AJV validator functions.
|
|
4
|
+
* DO NOT EDIT MANUALLY.
|
|
5
|
+
*/
|
|
6
|
+
'use strict';
|
|
7
|
+
|
|
8
|
+
const validators = {
|
|
9
|
+
'cc/action-band': require("./validators")['cc_action-band'],
|
|
10
|
+
'cc/action-icon': require("./validators")['cc_action-icon'],
|
|
11
|
+
'cc/action-location': require("./validators")['cc_action-location'],
|
|
12
|
+
'cc/avatar': require("./validators")['cc_avatar'],
|
|
13
|
+
'cc/breadcrumb': require("./validators")['cc_breadcrumb'],
|
|
14
|
+
'cc/button': require("./validators")['cc_button'],
|
|
15
|
+
'cc/checkbox': require("./validators")['cc_checkbox'],
|
|
16
|
+
'cc/date': require("./validators")['cc_date'],
|
|
17
|
+
'cc/email': require("./validators")['cc_email'],
|
|
18
|
+
'cc/empty-state': require("./validators")['cc_empty-state'],
|
|
19
|
+
'cc/error-state': require("./validators")['cc_error-state'],
|
|
20
|
+
'cc/fields/boolean': require("./validators")['cc_fields_boolean'],
|
|
21
|
+
'cc/fields/coloured-multi-select': require("./validators")['cc_fields_coloured-multi-select'],
|
|
22
|
+
'cc/fields/coloured-pick-list': require("./validators")['cc_fields_coloured-pick-list'],
|
|
23
|
+
'cc/fields/currency': require("./validators")['cc_fields_currency'],
|
|
24
|
+
'cc/fields/date': require("./validators")['cc_fields_date'],
|
|
25
|
+
'cc/fields/datetime': require("./validators")['cc_fields_datetime'],
|
|
26
|
+
'cc/fields/decimal': require("./validators")['cc_fields_decimal'],
|
|
27
|
+
'cc/fields/email': require("./validators")['cc_fields_email'],
|
|
28
|
+
'cc/fields/field': require("./validators")['cc_fields_field'],
|
|
29
|
+
'cc/fields/formula': require("./validators")['cc_fields_formula'],
|
|
30
|
+
'cc/fields/lookup': require("./validators")['cc_fields_lookup'],
|
|
31
|
+
'cc/fields/multi-line': require("./validators")['cc_fields_multi-line'],
|
|
32
|
+
'cc/fields/multi-select': require("./validators")['cc_fields_multi-select'],
|
|
33
|
+
'cc/fields/name': require("./validators")['cc_fields_name'],
|
|
34
|
+
'cc/fields/number': require("./validators")['cc_fields_number'],
|
|
35
|
+
'cc/fields/percent': require("./validators")['cc_fields_percent'],
|
|
36
|
+
'cc/fields/phone': require("./validators")['cc_fields_phone'],
|
|
37
|
+
'cc/fields/pick-list': require("./validators")['cc_fields_pick-list'],
|
|
38
|
+
'cc/fields/text': require("./validators")['cc_fields_text'],
|
|
39
|
+
'cc/fields/url': require("./validators")['cc_fields_url'],
|
|
40
|
+
'cc/floating-pagination': require("./validators")['cc_floating-pagination'],
|
|
41
|
+
'cc/form': require("./validators")['cc_form'],
|
|
42
|
+
'cc/form-connected': require("./validators")['cc_form-connected'],
|
|
43
|
+
'cc/highlighted-value': require("./validators")['cc_highlighted-value'],
|
|
44
|
+
'cc/icon-button': require("./validators")['cc_icon-button'],
|
|
45
|
+
'cc/label': require("./validators")['cc_label'],
|
|
46
|
+
'cc/link': require("./validators")['cc_link'],
|
|
47
|
+
'cc/list-item': require("./validators")['cc_list-item'],
|
|
48
|
+
'cc/more-dropdown': require("./validators")['cc_more-dropdown'],
|
|
49
|
+
'cc/multi-select': require("./validators")['cc_multi-select'],
|
|
50
|
+
'cc/radio-dropdown': require("./validators")['cc_radio-dropdown'],
|
|
51
|
+
'cc/ribbon': require("./validators")['cc_ribbon'],
|
|
52
|
+
'cc/search': require("./validators")['cc_search'],
|
|
53
|
+
'cc/section': require("./validators")['cc_section'],
|
|
54
|
+
'cc/select': require("./validators")['cc_select'],
|
|
55
|
+
'cc/slot': require("./validators")['cc_slot'],
|
|
56
|
+
'cc/sort-dropdown': require("./validators")['cc_sort-dropdown'],
|
|
57
|
+
'cc/switch': require("./validators")['cc_switch'],
|
|
58
|
+
'cc/table-column-chooser': require("./validators")['cc_table-column-chooser'],
|
|
59
|
+
'cc/table-column-filter': require("./validators")['cc_table-column-filter'],
|
|
60
|
+
'cc/table-column-sort': require("./validators")['cc_table-column-sort'],
|
|
61
|
+
'cc/table-connected': require("./validators")['cc_table-connected'],
|
|
62
|
+
'cc/table-list': require("./validators")['cc_table-list'],
|
|
63
|
+
'cc/table-list/row': require("./validators")['cc_table-list_row'],
|
|
64
|
+
'cc/table-text-overflow': require("./validators")['cc_table-text-overflow'],
|
|
65
|
+
'cc/tag': require("./validators")['cc_tag'],
|
|
66
|
+
'cc/tags': require("./validators")['cc_tags'],
|
|
67
|
+
'cc/tags-list-dropdown': require("./validators")['cc_tags-list-dropdown'],
|
|
68
|
+
'cc/text': require("./validators")['cc_text'],
|
|
69
|
+
'cc/textarea': require("./validators")['cc_textarea'],
|
|
70
|
+
'cc/textbox': require("./validators")['cc_textbox'],
|
|
71
|
+
'bc/action-band': require("./validators")['bc_action-band'],
|
|
72
|
+
'bc/app-context': require("./validators")['bc_app-context'],
|
|
73
|
+
'bc/clip-wrap': require("./validators")['bc_clip-wrap'],
|
|
74
|
+
'bc/column-chooser': require("./validators")['bc_column-chooser'],
|
|
75
|
+
'bc/float-pagination': require("./validators")['bc_float-pagination'],
|
|
76
|
+
'bc/keyboard-controls': require("./validators")['bc_keyboard-controls'],
|
|
77
|
+
'bc/list-selection': require("./validators")['bc_list-selection'],
|
|
78
|
+
'bc/local-storage': require("./validators")['bc_local-storage'],
|
|
79
|
+
'bc/sdk': require("./validators")['bc_sdk'],
|
|
80
|
+
'bc/search': require("./validators")['bc_search'],
|
|
81
|
+
'bc/search-box': require("./validators")['bc_search-box'],
|
|
82
|
+
'bc/sort-by': require("./validators")['bc_sort-by'],
|
|
83
|
+
'bc/table-column-resizer': require("./validators")['bc_table-column-resizer'],
|
|
84
|
+
'bc/zdata-source': require("./validators")['bc_zdata-source'],
|
|
85
|
+
'bc/zfield': require("./validators")['bc_zfield'],
|
|
86
|
+
'bc/zform': require("./validators")['bc_zform'],
|
|
87
|
+
'bc/zhttp': require("./validators")['bc_zhttp'],
|
|
88
|
+
'bc/zlist': require("./validators")['bc_zlist'],
|
|
89
|
+
'bc/zrecord': require("./validators")['bc_zrecord']
|
|
90
|
+
};
|
|
91
|
+
module.exports = validators;
|
|
92
|
+
module.exports.default = validators;
|