@gravitee/graphene-core 2.55.0 → 2.56.0-fix-monaco-hover.c920ed9
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/dist/Skeleton-C30qULzD.js +1745 -0
- package/dist/__stories__/fixtures/index.d.ts +1 -1
- package/dist/__stories__/fixtures/index.d.ts.map +1 -1
- package/dist/__stories__/fixtures/json-schema-form/disableIf.fixture.d.ts.map +1 -1
- package/dist/__stories__/fixtures/json-schema-form/displayIf.fixture.d.ts.map +1 -1
- package/dist/__stories__/fixtures/json-schema-form/index.d.ts +0 -1
- package/dist/__stories__/fixtures/json-schema-form/index.d.ts.map +1 -1
- package/dist/code-editor/index.js +229 -2
- package/dist/composed/AppLayout/AppLayout.d.ts.map +1 -1
- package/dist/composed/CodeEditor/CodeEditor.d.ts.map +1 -1
- package/dist/composed/CodeEditor/setupCodeEditor.d.ts +39 -34
- package/dist/composed/CodeEditor/setupCodeEditor.d.ts.map +1 -1
- package/dist/composed/JsonSchemaForm/JsonSchemaForm.d.ts.map +1 -1
- package/dist/composed/JsonSchemaForm/SchemaField.d.ts.map +1 -1
- package/dist/composed/JsonSchemaForm/conditional/ConditionalGate.d.ts.map +1 -1
- package/dist/composed/JsonSchemaForm/conditional/concretizeCondition.d.ts.map +1 -1
- package/dist/composed/JsonSchemaForm/conditional/evalCondition.d.ts +6 -6
- package/dist/composed/JsonSchemaForm/conditional/evalCondition.d.ts.map +1 -1
- package/dist/composed/JsonSchemaForm/fields/__test-utils__/setupJsonSchemaForm.d.ts +0 -1
- package/dist/composed/JsonSchemaForm/fields/__test-utils__/setupJsonSchemaForm.d.ts.map +1 -1
- package/dist/composed/JsonSchemaForm/form-bindings/resolveAt.d.ts.map +1 -1
- package/dist/composed/JsonSchemaForm/models/json-schema.types.d.ts +5 -5
- package/dist/composed/JsonSchemaForm/models/json-schema.types.d.ts.map +1 -1
- package/dist/composed/JsonSchemaForm/schema/buildIndex.d.ts.map +1 -1
- package/dist/composed/JsonSchemaForm/schema/types.d.ts +1 -3
- package/dist/composed/JsonSchemaForm/schema/types.d.ts.map +1 -1
- package/dist/composed/JsonSchemaForm/utils/schemaShape.d.ts +1 -2
- package/dist/composed/JsonSchemaForm/utils/schemaShape.d.ts.map +1 -1
- package/dist/icons/index.d.ts +0 -1
- package/dist/icons/index.d.ts.map +1 -1
- package/dist/icons/index.js +2 -2
- package/dist/{icons-YplRdF9A.js → icons-DdCWtjqd.js} +38 -316
- package/dist/index.js +8251 -8317
- package/dist/styles/custom-variants.css +0 -15
- package/dist/styles/globals.css +1 -1
- package/package.json +2 -1
- package/snippets/json-schema-form-simple.tsx +2 -20
- package/snippets/json-schema-form-with-meta.tsx +3 -18
- package/dist/CodeEditor-Cnn11Gx1.js +0 -2010
- package/dist/__stories__/fixtures/json-schema-form/code-editor.fixture.d.ts +0 -14
- package/dist/__stories__/fixtures/json-schema-form/code-editor.fixture.d.ts.map +0 -1
- package/dist/composed/JsonSchemaForm/fields/code-editor/CodeEditorField.d.ts +0 -8
- package/dist/composed/JsonSchemaForm/fields/code-editor/CodeEditorField.d.ts.map +0 -1
- package/dist/composed/JsonSchemaForm/utils/readPath.d.ts +0 -12
- package/dist/composed/JsonSchemaForm/utils/readPath.d.ts.map +0 -1
- package/dist/icons/products/GioEdgeManagementIcon.d.ts +0 -3
- package/dist/icons/products/GioEdgeManagementIcon.d.ts.map +0 -1
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { JsonSchema } from '../../../composed/JsonSchemaForm';
|
|
2
|
-
/**
|
|
3
|
-
* Mirrors ui-particles' `codeEditorExample`
|
|
4
|
-
* (`gio-form-json-schema/json-schema-example/code-editor.ts`) and the shape used by real APIM
|
|
5
|
-
* plugins (`format: 'gio-code-editor'`, e.g. the dynamic-properties HTTP service's JOLT
|
|
6
|
-
* transformation field). Forcing function for ISO behaviour: a Particles-authored schema must
|
|
7
|
-
* render the same widget in Graphene.
|
|
8
|
-
*
|
|
9
|
-
* The trigger is `type: 'string'` + `format: 'gio-code-editor'`. The language is read from
|
|
10
|
-
* `gioConfig.monacoEditorConfig.language` when present; otherwise the editor falls back to JSON
|
|
11
|
-
* auto-detection (JSON payload → `json`, else `plaintext`), matching Particles.
|
|
12
|
-
*/
|
|
13
|
-
export declare const jsonSchemaFormCodeEditorSchema: JsonSchema;
|
|
14
|
-
//# sourceMappingURL=code-editor.fixture.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"code-editor.fixture.d.ts","sourceRoot":"","sources":["../../../../src/__stories__/fixtures/json-schema-form/code-editor.fixture.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iDAAiD,CAAC;AAElF;;;;;;;;;;GAUG;AACH,eAAO,MAAM,8BAA8B,EAAE,UA2C5C,CAAC"}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { SchemaNode } from '../../schema/types';
|
|
2
|
-
interface CodeEditorFieldProps {
|
|
3
|
-
readonly node: SchemaNode;
|
|
4
|
-
readonly name: string;
|
|
5
|
-
}
|
|
6
|
-
declare function CodeEditorField({ node, name }: CodeEditorFieldProps): import("react").JSX.Element;
|
|
7
|
-
export { CodeEditorField };
|
|
8
|
-
//# sourceMappingURL=CodeEditorField.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"CodeEditorField.d.ts","sourceRoot":"","sources":["../../../../../src/composed/JsonSchemaForm/fields/code-editor/CodeEditorField.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAKrD,UAAU,oBAAoB;IAC5B,QAAQ,CAAC,IAAI,EAAE,UAAU,CAAC;IAC1B,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;CACvB;AAoBD,iBAAS,eAAe,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,oBAAoB,+BAsD5D;AAED,OAAO,EAAE,eAAe,EAAE,CAAC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Read a dot-separated path (`a.b.c`) out of a nested value. Returns `undefined` as soon as a
|
|
3
|
-
* segment is missing or an intermediate value is not a non-null object. An empty path reads the
|
|
4
|
-
* root value itself.
|
|
5
|
-
*
|
|
6
|
-
* Shared by the conditional gates (`evalCondition`, reading `$eqContext` from the external
|
|
7
|
-
* `context`) and the resolver (`resolveAt`'s `showIfMatches`, reading a discriminator value from
|
|
8
|
-
* the form data).
|
|
9
|
-
*/
|
|
10
|
-
declare function readPath(source: unknown, path: string): unknown;
|
|
11
|
-
export { readPath };
|
|
12
|
-
//# sourceMappingURL=readPath.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"readPath.d.ts","sourceRoot":"","sources":["../../../../src/composed/JsonSchemaForm/utils/readPath.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AACH,iBAAS,QAAQ,CAAC,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAQxD;AAED,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"GioEdgeManagementIcon.d.ts","sourceRoot":"","sources":["../../../src/icons/products/GioEdgeManagementIcon.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,eAAO,MAAM,qBAAqB,gIAuFhC,CAAC"}
|