MCPcopy Create free account
hub / github.com/eclipsesource/jsonforms / isReadonly

Function isReadonly

packages/core/src/util/runtime.ts:242–254  ·  view source on GitHub ↗
(
  uischema: UISchemaElement,
  data: any,
  path: string = undefined,
  ajv: Ajv,
  config: unknown
)

Source from the content-addressed store, hash-verified

240};
241
242export const isReadonly = (
243 uischema: UISchemaElement,
244 data: any,
245 path: string = undefined,
246 ajv: Ajv,
247 config: unknown
248): boolean => {
249 if (uischema.rule) {
250 return evalReadonly(uischema, data, path, ajv, config);
251 }
252
253 return false;
254};

Callers 2

runtime.test.tsFile · 0.90
isInherentlyReadonlyFunction · 0.90

Calls 1

evalReadonlyFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…