@forge/manifest 5.0.1 → 5.0.2-next.0
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/CHANGELOG.md +6 -0
- package/out/schema/manifest-schema.json +23 -15
- package/out/schema/manifest.d.ts +14 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -861,23 +861,31 @@
|
|
|
861
861
|
]
|
|
862
862
|
},
|
|
863
863
|
"config": {
|
|
864
|
-
"
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
"
|
|
868
|
-
"minLength": 1,
|
|
869
|
-
"maxLength": 255,
|
|
870
|
-
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
864
|
+
"oneOf": [
|
|
865
|
+
{
|
|
866
|
+
"type": "boolean",
|
|
867
|
+
"description": "Enable config for UI Kit 2"
|
|
871
868
|
},
|
|
872
|
-
|
|
873
|
-
"
|
|
874
|
-
|
|
875
|
-
"
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
869
|
+
{
|
|
870
|
+
"type": "object",
|
|
871
|
+
"properties": {
|
|
872
|
+
"function": {
|
|
873
|
+
"type": "string",
|
|
874
|
+
"minLength": 1,
|
|
875
|
+
"maxLength": 255,
|
|
876
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
877
|
+
},
|
|
878
|
+
"render": {
|
|
879
|
+
"enum": [
|
|
880
|
+
"native",
|
|
881
|
+
"default"
|
|
882
|
+
],
|
|
883
|
+
"type": "string",
|
|
884
|
+
"default": "default"
|
|
885
|
+
}
|
|
886
|
+
}
|
|
879
887
|
}
|
|
880
|
-
|
|
888
|
+
]
|
|
881
889
|
},
|
|
882
890
|
"data": {
|
|
883
891
|
"type": "object",
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -644,11 +644,13 @@ export interface Modules {
|
|
|
644
644
|
refDataSchema?: {
|
|
645
645
|
inputType: string;
|
|
646
646
|
};
|
|
647
|
-
config?:
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
647
|
+
config?:
|
|
648
|
+
| boolean
|
|
649
|
+
| {
|
|
650
|
+
function?: string;
|
|
651
|
+
render?: 'native' | 'default';
|
|
652
|
+
[k: string]: unknown;
|
|
653
|
+
};
|
|
652
654
|
data?: {
|
|
653
655
|
function?: string;
|
|
654
656
|
schema?: string;
|
|
@@ -696,11 +698,13 @@ export interface Modules {
|
|
|
696
698
|
refDataSchema?: {
|
|
697
699
|
inputType: string;
|
|
698
700
|
};
|
|
699
|
-
config?:
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
701
|
+
config?:
|
|
702
|
+
| boolean
|
|
703
|
+
| {
|
|
704
|
+
function?: string;
|
|
705
|
+
render?: 'native' | 'default';
|
|
706
|
+
[k: string]: unknown;
|
|
707
|
+
};
|
|
704
708
|
data?: {
|
|
705
709
|
function?: string;
|
|
706
710
|
schema?: string;
|