@forge/manifest 3.3.1-next.0 → 3.3.1-next.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/CHANGELOG.md +6 -0
- package/out/schema/manifest-schema.json +225 -225
- package/out/schema/manifest.d.ts +231 -231
- package/package.json +1 -1
package/out/schema/manifest.d.ts
CHANGED
|
@@ -3817,7 +3817,7 @@ export interface Modules {
|
|
|
3817
3817
|
name?: I18NProperty55;
|
|
3818
3818
|
weight?: number;
|
|
3819
3819
|
location?: string;
|
|
3820
|
-
conditions?: (
|
|
3820
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3821
3821
|
params?: {
|
|
3822
3822
|
[k: string]: unknown;
|
|
3823
3823
|
};
|
|
@@ -3829,7 +3829,7 @@ export interface Modules {
|
|
|
3829
3829
|
name?: I18NProperty55;
|
|
3830
3830
|
weight?: number;
|
|
3831
3831
|
location?: string;
|
|
3832
|
-
conditions?: (
|
|
3832
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3833
3833
|
params?: {
|
|
3834
3834
|
[k: string]: unknown;
|
|
3835
3835
|
};
|
|
@@ -3882,7 +3882,7 @@ export interface Modules {
|
|
|
3882
3882
|
name?: I18NProperty59;
|
|
3883
3883
|
location?: string;
|
|
3884
3884
|
cacheable?: boolean;
|
|
3885
|
-
conditions?: (
|
|
3885
|
+
conditions?: (CompositeCondition6 | SingleCondition4)[];
|
|
3886
3886
|
key: ModuleKeySchema;
|
|
3887
3887
|
[k: string]: unknown;
|
|
3888
3888
|
},
|
|
@@ -3900,7 +3900,7 @@ export interface Modules {
|
|
|
3900
3900
|
name?: I18NProperty59;
|
|
3901
3901
|
location?: string;
|
|
3902
3902
|
cacheable?: boolean;
|
|
3903
|
-
conditions?: (
|
|
3903
|
+
conditions?: (CompositeCondition6 | SingleCondition4)[];
|
|
3904
3904
|
key: ModuleKeySchema;
|
|
3905
3905
|
[k: string]: unknown;
|
|
3906
3906
|
}[]
|
|
@@ -3978,7 +3978,7 @@ export interface Modules {
|
|
|
3978
3978
|
name?: I18NProperty63;
|
|
3979
3979
|
weight?: number;
|
|
3980
3980
|
location?: string;
|
|
3981
|
-
conditions?: (
|
|
3981
|
+
conditions?: (SingleCondition5 | CompositeCondition7)[];
|
|
3982
3982
|
params?: {
|
|
3983
3983
|
[k: string]: unknown;
|
|
3984
3984
|
};
|
|
@@ -3990,7 +3990,7 @@ export interface Modules {
|
|
|
3990
3990
|
name?: I18NProperty63;
|
|
3991
3991
|
weight?: number;
|
|
3992
3992
|
location?: string;
|
|
3993
|
-
conditions?: (
|
|
3993
|
+
conditions?: (SingleCondition5 | CompositeCondition7)[];
|
|
3994
3994
|
params?: {
|
|
3995
3995
|
[k: string]: unknown;
|
|
3996
3996
|
};
|
|
@@ -4186,7 +4186,7 @@ export interface Modules {
|
|
|
4186
4186
|
icon?: Icon18;
|
|
4187
4187
|
name?: I18NProperty91;
|
|
4188
4188
|
cacheable?: boolean;
|
|
4189
|
-
conditions?: (
|
|
4189
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
4190
4190
|
params?: {
|
|
4191
4191
|
[k: string]: unknown;
|
|
4192
4192
|
};
|
|
@@ -4202,7 +4202,7 @@ export interface Modules {
|
|
|
4202
4202
|
icon?: Icon18;
|
|
4203
4203
|
name?: I18NProperty91;
|
|
4204
4204
|
cacheable?: boolean;
|
|
4205
|
-
conditions?: (
|
|
4205
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
4206
4206
|
params?: {
|
|
4207
4207
|
[k: string]: unknown;
|
|
4208
4208
|
};
|
|
@@ -4421,7 +4421,7 @@ export interface I18NProperty1 {
|
|
|
4421
4421
|
*
|
|
4422
4422
|
*/
|
|
4423
4423
|
export interface CompositeCondition {
|
|
4424
|
-
conditions?: (
|
|
4424
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
4425
4425
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
4426
4426
|
[k: string]: unknown;
|
|
4427
4427
|
}
|
|
@@ -7129,7 +7129,7 @@ export interface Icon10 {
|
|
|
7129
7129
|
*
|
|
7130
7130
|
*/
|
|
7131
7131
|
export interface WebItemTarget1 {
|
|
7132
|
-
options?: DialogOptions2 |
|
|
7132
|
+
options?: DialogOptions2 | InlineDialogOptions1 | DialogModuleOptions1;
|
|
7133
7133
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
7134
7134
|
[k: string]: unknown;
|
|
7135
7135
|
}
|
|
@@ -7231,33 +7231,6 @@ export interface I18NProperty58 {
|
|
|
7231
7231
|
i18n?: string;
|
|
7232
7232
|
[k: string]: unknown;
|
|
7233
7233
|
}
|
|
7234
|
-
/**
|
|
7235
|
-
*
|
|
7236
|
-
*
|
|
7237
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
7238
|
-
*
|
|
7239
|
-
* <h3>Example</h3>
|
|
7240
|
-
*
|
|
7241
|
-
*
|
|
7242
|
-
*
|
|
7243
|
-
*
|
|
7244
|
-
*
|
|
7245
|
-
* {
|
|
7246
|
-
* "target": {
|
|
7247
|
-
* "type": "dialogmodule",
|
|
7248
|
-
* "options": {
|
|
7249
|
-
* "key": "dialog-module-key"
|
|
7250
|
-
* }
|
|
7251
|
-
* }
|
|
7252
|
-
* }
|
|
7253
|
-
*
|
|
7254
|
-
*
|
|
7255
|
-
*
|
|
7256
|
-
*/
|
|
7257
|
-
export interface DialogModuleOptions1 {
|
|
7258
|
-
key: string;
|
|
7259
|
-
[k: string]: unknown;
|
|
7260
|
-
}
|
|
7261
7234
|
/**
|
|
7262
7235
|
*
|
|
7263
7236
|
*
|
|
@@ -7298,8 +7271,7 @@ export interface InlineDialogOptions1 {
|
|
|
7298
7271
|
/**
|
|
7299
7272
|
*
|
|
7300
7273
|
*
|
|
7301
|
-
*
|
|
7302
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
7274
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
7303
7275
|
*
|
|
7304
7276
|
* <h3>Example</h3>
|
|
7305
7277
|
*
|
|
@@ -7308,25 +7280,26 @@ export interface InlineDialogOptions1 {
|
|
|
7308
7280
|
*
|
|
7309
7281
|
*
|
|
7310
7282
|
* {
|
|
7311
|
-
* "
|
|
7283
|
+
* "target": {
|
|
7284
|
+
* "type": "dialogmodule",
|
|
7285
|
+
* "options": {
|
|
7286
|
+
* "key": "dialog-module-key"
|
|
7287
|
+
* }
|
|
7288
|
+
* }
|
|
7312
7289
|
* }
|
|
7313
7290
|
*
|
|
7314
7291
|
*
|
|
7315
7292
|
*
|
|
7316
7293
|
*/
|
|
7317
|
-
export interface
|
|
7318
|
-
|
|
7319
|
-
i18n?: string;
|
|
7294
|
+
export interface DialogModuleOptions1 {
|
|
7295
|
+
key: string;
|
|
7320
7296
|
[k: string]: unknown;
|
|
7321
7297
|
}
|
|
7322
7298
|
/**
|
|
7323
7299
|
*
|
|
7324
7300
|
*
|
|
7325
|
-
*
|
|
7326
|
-
*
|
|
7327
|
-
*
|
|
7328
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
7329
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
7301
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
7302
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
7330
7303
|
*
|
|
7331
7304
|
* <h3>Example</h3>
|
|
7332
7305
|
*
|
|
@@ -7335,19 +7308,15 @@ export interface I18NProperty59 {
|
|
|
7335
7308
|
*
|
|
7336
7309
|
*
|
|
7337
7310
|
* {
|
|
7338
|
-
* "
|
|
7339
|
-
* "invert": false
|
|
7311
|
+
* "value": "My text"
|
|
7340
7312
|
* }
|
|
7341
7313
|
*
|
|
7342
7314
|
*
|
|
7343
7315
|
*
|
|
7344
7316
|
*/
|
|
7345
|
-
export interface
|
|
7346
|
-
|
|
7347
|
-
|
|
7348
|
-
params?: {
|
|
7349
|
-
[k: string]: unknown;
|
|
7350
|
-
};
|
|
7317
|
+
export interface I18NProperty59 {
|
|
7318
|
+
value: string;
|
|
7319
|
+
i18n?: string;
|
|
7351
7320
|
[k: string]: unknown;
|
|
7352
7321
|
}
|
|
7353
7322
|
/**
|
|
@@ -7387,10 +7356,41 @@ export interface SingleCondition4 {
|
|
|
7387
7356
|
*
|
|
7388
7357
|
*/
|
|
7389
7358
|
export interface CompositeCondition6 {
|
|
7390
|
-
conditions?: (
|
|
7359
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
7391
7360
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7392
7361
|
[k: string]: unknown;
|
|
7393
7362
|
}
|
|
7363
|
+
/**
|
|
7364
|
+
*
|
|
7365
|
+
*
|
|
7366
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
7367
|
+
* [Conditions](../../conditions/) for more information.
|
|
7368
|
+
*
|
|
7369
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
7370
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
7371
|
+
*
|
|
7372
|
+
* <h3>Example</h3>
|
|
7373
|
+
*
|
|
7374
|
+
*
|
|
7375
|
+
*
|
|
7376
|
+
*
|
|
7377
|
+
*
|
|
7378
|
+
* {
|
|
7379
|
+
* "condition": "user_is_logged_in",
|
|
7380
|
+
* "invert": false
|
|
7381
|
+
* }
|
|
7382
|
+
*
|
|
7383
|
+
*
|
|
7384
|
+
*
|
|
7385
|
+
*/
|
|
7386
|
+
export interface SingleCondition4 {
|
|
7387
|
+
condition: string;
|
|
7388
|
+
invert?: boolean;
|
|
7389
|
+
params?: {
|
|
7390
|
+
[k: string]: unknown;
|
|
7391
|
+
};
|
|
7392
|
+
[k: string]: unknown;
|
|
7393
|
+
}
|
|
7394
7394
|
/**
|
|
7395
7395
|
*
|
|
7396
7396
|
*
|
|
@@ -7745,6 +7745,37 @@ export interface I18NProperty63 {
|
|
|
7745
7745
|
i18n?: string;
|
|
7746
7746
|
[k: string]: unknown;
|
|
7747
7747
|
}
|
|
7748
|
+
/**
|
|
7749
|
+
*
|
|
7750
|
+
*
|
|
7751
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
7752
|
+
* [Conditions](../../conditions/) for more information.
|
|
7753
|
+
*
|
|
7754
|
+
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
7755
|
+
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
7756
|
+
*
|
|
7757
|
+
* <h3>Example</h3>
|
|
7758
|
+
*
|
|
7759
|
+
*
|
|
7760
|
+
*
|
|
7761
|
+
*
|
|
7762
|
+
*
|
|
7763
|
+
* {
|
|
7764
|
+
* "condition": "user_is_logged_in",
|
|
7765
|
+
* "invert": false
|
|
7766
|
+
* }
|
|
7767
|
+
*
|
|
7768
|
+
*
|
|
7769
|
+
*
|
|
7770
|
+
*/
|
|
7771
|
+
export interface SingleCondition5 {
|
|
7772
|
+
condition: string;
|
|
7773
|
+
invert?: boolean;
|
|
7774
|
+
params?: {
|
|
7775
|
+
[k: string]: unknown;
|
|
7776
|
+
};
|
|
7777
|
+
[k: string]: unknown;
|
|
7778
|
+
}
|
|
7748
7779
|
/**
|
|
7749
7780
|
*
|
|
7750
7781
|
*
|
|
@@ -7782,41 +7813,10 @@ export interface I18NProperty63 {
|
|
|
7782
7813
|
*
|
|
7783
7814
|
*/
|
|
7784
7815
|
export interface CompositeCondition7 {
|
|
7785
|
-
conditions?: (
|
|
7816
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
7786
7817
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7787
7818
|
[k: string]: unknown;
|
|
7788
7819
|
}
|
|
7789
|
-
/**
|
|
7790
|
-
*
|
|
7791
|
-
*
|
|
7792
|
-
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
7793
|
-
* [Conditions](../../conditions/) for more information.
|
|
7794
|
-
*
|
|
7795
|
-
* To invert a condition, add the attribute ``invert="true"`` to the condition element.
|
|
7796
|
-
* This is useful where you want to show the section if a certain condition is not satisfied.
|
|
7797
|
-
*
|
|
7798
|
-
* <h3>Example</h3>
|
|
7799
|
-
*
|
|
7800
|
-
*
|
|
7801
|
-
*
|
|
7802
|
-
*
|
|
7803
|
-
*
|
|
7804
|
-
* {
|
|
7805
|
-
* "condition": "user_is_logged_in",
|
|
7806
|
-
* "invert": false
|
|
7807
|
-
* }
|
|
7808
|
-
*
|
|
7809
|
-
*
|
|
7810
|
-
*
|
|
7811
|
-
*/
|
|
7812
|
-
export interface SingleCondition5 {
|
|
7813
|
-
condition: string;
|
|
7814
|
-
invert?: boolean;
|
|
7815
|
-
params?: {
|
|
7816
|
-
[k: string]: unknown;
|
|
7817
|
-
};
|
|
7818
|
-
[k: string]: unknown;
|
|
7819
|
-
}
|
|
7820
7820
|
/**
|
|
7821
7821
|
*
|
|
7822
7822
|
*
|
|
@@ -9236,7 +9236,7 @@ export interface I18NProperty74 {
|
|
|
9236
9236
|
*
|
|
9237
9237
|
*/
|
|
9238
9238
|
export interface MacroPropertyPanel {
|
|
9239
|
-
controls?: (
|
|
9239
|
+
controls?: (ToggleGroup | ControlGroup | TextControl | ButtonControl1)[];
|
|
9240
9240
|
cacheable?: boolean;
|
|
9241
9241
|
url: string;
|
|
9242
9242
|
[k: string]: unknown;
|
|
@@ -9244,35 +9244,7 @@ export interface MacroPropertyPanel {
|
|
|
9244
9244
|
/**
|
|
9245
9245
|
*
|
|
9246
9246
|
*
|
|
9247
|
-
* Defines a
|
|
9248
|
-
*
|
|
9249
|
-
* <p><b>Example</b></p>
|
|
9250
|
-
*
|
|
9251
|
-
*
|
|
9252
|
-
*
|
|
9253
|
-
*
|
|
9254
|
-
*
|
|
9255
|
-
* {
|
|
9256
|
-
* "type": "button",
|
|
9257
|
-
* "label": {
|
|
9258
|
-
* "value": "My Custom Control 0"
|
|
9259
|
-
* },
|
|
9260
|
-
* "key": "my-custom-control-0"
|
|
9261
|
-
* }
|
|
9262
|
-
*
|
|
9263
|
-
*
|
|
9264
|
-
*
|
|
9265
|
-
*/
|
|
9266
|
-
export interface TextControl {
|
|
9267
|
-
macroParameter: string;
|
|
9268
|
-
type: 'text' | 'TEXT';
|
|
9269
|
-
key: string;
|
|
9270
|
-
[k: string]: unknown;
|
|
9271
|
-
}
|
|
9272
|
-
/**
|
|
9273
|
-
*
|
|
9274
|
-
*
|
|
9275
|
-
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
9247
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
9276
9248
|
*
|
|
9277
9249
|
* <p><b>Example</b></p>
|
|
9278
9250
|
*
|
|
@@ -9282,21 +9254,24 @@ export interface TextControl {
|
|
|
9282
9254
|
*
|
|
9283
9255
|
* [
|
|
9284
9256
|
* {
|
|
9285
|
-
* "type": "
|
|
9257
|
+
* "type": "togglegroup",
|
|
9258
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
9286
9259
|
* "controls": [
|
|
9287
9260
|
* {
|
|
9288
|
-
* "type": "
|
|
9261
|
+
* "type": "togglebutton",
|
|
9262
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
9289
9263
|
* "label": {
|
|
9290
9264
|
* "value": "My Custom Control 0"
|
|
9291
9265
|
* },
|
|
9292
|
-
* "key": "my-custom-
|
|
9266
|
+
* "key": "my-custom-toggle-button-0"
|
|
9293
9267
|
* },
|
|
9294
9268
|
* {
|
|
9295
|
-
* "type": "
|
|
9269
|
+
* "type": "togglebutton",
|
|
9270
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
9296
9271
|
* "label": {
|
|
9297
9272
|
* "value": "My Custom Control 1"
|
|
9298
9273
|
* },
|
|
9299
|
-
* "key": "my-custom-
|
|
9274
|
+
* "key": "my-custom-toggle-button-1"
|
|
9300
9275
|
* }
|
|
9301
9276
|
* ]
|
|
9302
9277
|
* }
|
|
@@ -9305,15 +9280,16 @@ export interface TextControl {
|
|
|
9305
9280
|
*
|
|
9306
9281
|
*
|
|
9307
9282
|
*/
|
|
9308
|
-
export interface
|
|
9309
|
-
controls:
|
|
9310
|
-
|
|
9283
|
+
export interface ToggleGroup {
|
|
9284
|
+
controls: ToggleButtonControl[];
|
|
9285
|
+
macroParameter: string;
|
|
9286
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
9311
9287
|
[k: string]: unknown;
|
|
9312
9288
|
}
|
|
9313
9289
|
/**
|
|
9314
9290
|
*
|
|
9315
9291
|
*
|
|
9316
|
-
* Defines a button which
|
|
9292
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
9317
9293
|
*
|
|
9318
9294
|
* <p><b>Example</b></p>
|
|
9319
9295
|
*
|
|
@@ -9322,19 +9298,21 @@ export interface ControlGroup {
|
|
|
9322
9298
|
*
|
|
9323
9299
|
*
|
|
9324
9300
|
* {
|
|
9325
|
-
* "type": "
|
|
9301
|
+
* "type": "togglebutton",
|
|
9302
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
9326
9303
|
* "label": {
|
|
9327
9304
|
* "value": "My Custom Control 0"
|
|
9328
9305
|
* },
|
|
9329
|
-
* "key": "my-custom-
|
|
9306
|
+
* "key": "my-custom-toggle-button-0"
|
|
9330
9307
|
* }
|
|
9331
9308
|
*
|
|
9332
9309
|
*
|
|
9333
9310
|
*
|
|
9334
9311
|
*/
|
|
9335
|
-
export interface
|
|
9312
|
+
export interface ToggleButtonControl {
|
|
9313
|
+
macroParameterValue: string;
|
|
9336
9314
|
label: I18NProperty75;
|
|
9337
|
-
type: '
|
|
9315
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
9338
9316
|
key: string;
|
|
9339
9317
|
[k: string]: unknown;
|
|
9340
9318
|
}
|
|
@@ -9362,6 +9340,47 @@ export interface I18NProperty75 {
|
|
|
9362
9340
|
i18n?: string;
|
|
9363
9341
|
[k: string]: unknown;
|
|
9364
9342
|
}
|
|
9343
|
+
/**
|
|
9344
|
+
*
|
|
9345
|
+
*
|
|
9346
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
9347
|
+
*
|
|
9348
|
+
* <p><b>Example</b></p>
|
|
9349
|
+
*
|
|
9350
|
+
*
|
|
9351
|
+
*
|
|
9352
|
+
*
|
|
9353
|
+
*
|
|
9354
|
+
* [
|
|
9355
|
+
* {
|
|
9356
|
+
* "type": "group",
|
|
9357
|
+
* "controls": [
|
|
9358
|
+
* {
|
|
9359
|
+
* "type": "button",
|
|
9360
|
+
* "label": {
|
|
9361
|
+
* "value": "My Custom Control 0"
|
|
9362
|
+
* },
|
|
9363
|
+
* "key": "my-custom-control-0"
|
|
9364
|
+
* },
|
|
9365
|
+
* {
|
|
9366
|
+
* "type": "button",
|
|
9367
|
+
* "label": {
|
|
9368
|
+
* "value": "My Custom Control 1"
|
|
9369
|
+
* },
|
|
9370
|
+
* "key": "my-custom-control-1"
|
|
9371
|
+
* }
|
|
9372
|
+
* ]
|
|
9373
|
+
* }
|
|
9374
|
+
* ]
|
|
9375
|
+
*
|
|
9376
|
+
*
|
|
9377
|
+
*
|
|
9378
|
+
*/
|
|
9379
|
+
export interface ControlGroup {
|
|
9380
|
+
controls: ButtonControl[];
|
|
9381
|
+
type: 'group' | 'GROUP';
|
|
9382
|
+
[k: string]: unknown;
|
|
9383
|
+
}
|
|
9365
9384
|
/**
|
|
9366
9385
|
*
|
|
9367
9386
|
*
|
|
@@ -9384,7 +9403,7 @@ export interface I18NProperty75 {
|
|
|
9384
9403
|
*
|
|
9385
9404
|
*
|
|
9386
9405
|
*/
|
|
9387
|
-
export interface
|
|
9406
|
+
export interface ButtonControl {
|
|
9388
9407
|
label: I18NProperty76;
|
|
9389
9408
|
type: 'button' | 'BUTTON';
|
|
9390
9409
|
key: string;
|
|
@@ -9417,7 +9436,7 @@ export interface I18NProperty76 {
|
|
|
9417
9436
|
/**
|
|
9418
9437
|
*
|
|
9419
9438
|
*
|
|
9420
|
-
* Defines a
|
|
9439
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
9421
9440
|
*
|
|
9422
9441
|
* <p><b>Example</b></p>
|
|
9423
9442
|
*
|
|
@@ -9425,44 +9444,27 @@ export interface I18NProperty76 {
|
|
|
9425
9444
|
*
|
|
9426
9445
|
*
|
|
9427
9446
|
*
|
|
9428
|
-
*
|
|
9429
|
-
*
|
|
9430
|
-
*
|
|
9431
|
-
* "
|
|
9432
|
-
*
|
|
9433
|
-
*
|
|
9434
|
-
*
|
|
9435
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
9436
|
-
* "label": {
|
|
9437
|
-
* "value": "My Custom Control 0"
|
|
9438
|
-
* },
|
|
9439
|
-
* "key": "my-custom-toggle-button-0"
|
|
9440
|
-
* },
|
|
9441
|
-
* {
|
|
9442
|
-
* "type": "togglebutton",
|
|
9443
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
9444
|
-
* "label": {
|
|
9445
|
-
* "value": "My Custom Control 1"
|
|
9446
|
-
* },
|
|
9447
|
-
* "key": "my-custom-toggle-button-1"
|
|
9448
|
-
* }
|
|
9449
|
-
* ]
|
|
9450
|
-
* }
|
|
9451
|
-
* ]
|
|
9447
|
+
* {
|
|
9448
|
+
* "type": "button",
|
|
9449
|
+
* "label": {
|
|
9450
|
+
* "value": "My Custom Control 0"
|
|
9451
|
+
* },
|
|
9452
|
+
* "key": "my-custom-control-0"
|
|
9453
|
+
* }
|
|
9452
9454
|
*
|
|
9453
9455
|
*
|
|
9454
9456
|
*
|
|
9455
9457
|
*/
|
|
9456
|
-
export interface
|
|
9457
|
-
controls: ToggleButtonControl[];
|
|
9458
|
+
export interface TextControl {
|
|
9458
9459
|
macroParameter: string;
|
|
9459
|
-
type: '
|
|
9460
|
+
type: 'text' | 'TEXT';
|
|
9461
|
+
key: string;
|
|
9460
9462
|
[k: string]: unknown;
|
|
9461
9463
|
}
|
|
9462
9464
|
/**
|
|
9463
9465
|
*
|
|
9464
9466
|
*
|
|
9465
|
-
* Defines a
|
|
9467
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
9466
9468
|
*
|
|
9467
9469
|
* <p><b>Example</b></p>
|
|
9468
9470
|
*
|
|
@@ -9471,21 +9473,19 @@ export interface ToggleGroup {
|
|
|
9471
9473
|
*
|
|
9472
9474
|
*
|
|
9473
9475
|
* {
|
|
9474
|
-
* "type": "
|
|
9475
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
9476
|
+
* "type": "button",
|
|
9476
9477
|
* "label": {
|
|
9477
9478
|
* "value": "My Custom Control 0"
|
|
9478
9479
|
* },
|
|
9479
|
-
* "key": "my-custom-
|
|
9480
|
+
* "key": "my-custom-control-0"
|
|
9480
9481
|
* }
|
|
9481
9482
|
*
|
|
9482
9483
|
*
|
|
9483
9484
|
*
|
|
9484
9485
|
*/
|
|
9485
|
-
export interface
|
|
9486
|
-
macroParameterValue: string;
|
|
9486
|
+
export interface ButtonControl1 {
|
|
9487
9487
|
label: I18NProperty77;
|
|
9488
|
-
type: '
|
|
9488
|
+
type: 'button' | 'BUTTON';
|
|
9489
9489
|
key: string;
|
|
9490
9490
|
[k: string]: unknown;
|
|
9491
9491
|
}
|
|
@@ -30481,7 +30481,7 @@ export interface I18NProperty83 {
|
|
|
30481
30481
|
*
|
|
30482
30482
|
*/
|
|
30483
30483
|
export interface MacroPropertyPanel1 {
|
|
30484
|
-
controls?: (ButtonControl2 |
|
|
30484
|
+
controls?: (ButtonControl2 | ControlGroup1 | ToggleGroup1 | TextControl1)[];
|
|
30485
30485
|
cacheable?: boolean;
|
|
30486
30486
|
url: string;
|
|
30487
30487
|
[k: string]: unknown;
|
|
@@ -30541,35 +30541,7 @@ export interface I18NProperty84 {
|
|
|
30541
30541
|
/**
|
|
30542
30542
|
*
|
|
30543
30543
|
*
|
|
30544
|
-
* Defines a
|
|
30545
|
-
*
|
|
30546
|
-
* <p><b>Example</b></p>
|
|
30547
|
-
*
|
|
30548
|
-
*
|
|
30549
|
-
*
|
|
30550
|
-
*
|
|
30551
|
-
*
|
|
30552
|
-
* {
|
|
30553
|
-
* "type": "button",
|
|
30554
|
-
* "label": {
|
|
30555
|
-
* "value": "My Custom Control 0"
|
|
30556
|
-
* },
|
|
30557
|
-
* "key": "my-custom-control-0"
|
|
30558
|
-
* }
|
|
30559
|
-
*
|
|
30560
|
-
*
|
|
30561
|
-
*
|
|
30562
|
-
*/
|
|
30563
|
-
export interface TextControl1 {
|
|
30564
|
-
macroParameter: string;
|
|
30565
|
-
type: 'text' | 'TEXT';
|
|
30566
|
-
key: string;
|
|
30567
|
-
[k: string]: unknown;
|
|
30568
|
-
}
|
|
30569
|
-
/**
|
|
30570
|
-
*
|
|
30571
|
-
*
|
|
30572
|
-
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
30544
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
30573
30545
|
*
|
|
30574
30546
|
* <p><b>Example</b></p>
|
|
30575
30547
|
*
|
|
@@ -30579,24 +30551,21 @@ export interface TextControl1 {
|
|
|
30579
30551
|
*
|
|
30580
30552
|
* [
|
|
30581
30553
|
* {
|
|
30582
|
-
* "type": "
|
|
30583
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
30554
|
+
* "type": "group",
|
|
30584
30555
|
* "controls": [
|
|
30585
30556
|
* {
|
|
30586
|
-
* "type": "
|
|
30587
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30557
|
+
* "type": "button",
|
|
30588
30558
|
* "label": {
|
|
30589
30559
|
* "value": "My Custom Control 0"
|
|
30590
30560
|
* },
|
|
30591
|
-
* "key": "my-custom-
|
|
30561
|
+
* "key": "my-custom-control-0"
|
|
30592
30562
|
* },
|
|
30593
30563
|
* {
|
|
30594
|
-
* "type": "
|
|
30595
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
30564
|
+
* "type": "button",
|
|
30596
30565
|
* "label": {
|
|
30597
30566
|
* "value": "My Custom Control 1"
|
|
30598
30567
|
* },
|
|
30599
|
-
* "key": "my-custom-
|
|
30568
|
+
* "key": "my-custom-control-1"
|
|
30600
30569
|
* }
|
|
30601
30570
|
* ]
|
|
30602
30571
|
* }
|
|
@@ -30605,16 +30574,15 @@ export interface TextControl1 {
|
|
|
30605
30574
|
*
|
|
30606
30575
|
*
|
|
30607
30576
|
*/
|
|
30608
|
-
export interface
|
|
30609
|
-
controls:
|
|
30610
|
-
|
|
30611
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
30577
|
+
export interface ControlGroup1 {
|
|
30578
|
+
controls: ButtonControl3[];
|
|
30579
|
+
type: 'group' | 'GROUP';
|
|
30612
30580
|
[k: string]: unknown;
|
|
30613
30581
|
}
|
|
30614
30582
|
/**
|
|
30615
30583
|
*
|
|
30616
30584
|
*
|
|
30617
|
-
* Defines a
|
|
30585
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
30618
30586
|
*
|
|
30619
30587
|
* <p><b>Example</b></p>
|
|
30620
30588
|
*
|
|
@@ -30623,21 +30591,19 @@ export interface ToggleGroup1 {
|
|
|
30623
30591
|
*
|
|
30624
30592
|
*
|
|
30625
30593
|
* {
|
|
30626
|
-
* "type": "
|
|
30627
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30594
|
+
* "type": "button",
|
|
30628
30595
|
* "label": {
|
|
30629
30596
|
* "value": "My Custom Control 0"
|
|
30630
30597
|
* },
|
|
30631
|
-
* "key": "my-custom-
|
|
30598
|
+
* "key": "my-custom-control-0"
|
|
30632
30599
|
* }
|
|
30633
30600
|
*
|
|
30634
30601
|
*
|
|
30635
30602
|
*
|
|
30636
30603
|
*/
|
|
30637
|
-
export interface
|
|
30638
|
-
macroParameterValue: string;
|
|
30604
|
+
export interface ButtonControl3 {
|
|
30639
30605
|
label: I18NProperty85;
|
|
30640
|
-
type: '
|
|
30606
|
+
type: 'button' | 'BUTTON';
|
|
30641
30607
|
key: string;
|
|
30642
30608
|
[k: string]: unknown;
|
|
30643
30609
|
}
|
|
@@ -30668,7 +30634,7 @@ export interface I18NProperty85 {
|
|
|
30668
30634
|
/**
|
|
30669
30635
|
*
|
|
30670
30636
|
*
|
|
30671
|
-
* Defines a
|
|
30637
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
30672
30638
|
*
|
|
30673
30639
|
* <p><b>Example</b></p>
|
|
30674
30640
|
*
|
|
@@ -30678,21 +30644,24 @@ export interface I18NProperty85 {
|
|
|
30678
30644
|
*
|
|
30679
30645
|
* [
|
|
30680
30646
|
* {
|
|
30681
|
-
* "type": "
|
|
30647
|
+
* "type": "togglegroup",
|
|
30648
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
30682
30649
|
* "controls": [
|
|
30683
30650
|
* {
|
|
30684
|
-
* "type": "
|
|
30651
|
+
* "type": "togglebutton",
|
|
30652
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
30685
30653
|
* "label": {
|
|
30686
30654
|
* "value": "My Custom Control 0"
|
|
30687
30655
|
* },
|
|
30688
|
-
* "key": "my-custom-
|
|
30656
|
+
* "key": "my-custom-toggle-button-0"
|
|
30689
30657
|
* },
|
|
30690
30658
|
* {
|
|
30691
|
-
* "type": "
|
|
30659
|
+
* "type": "togglebutton",
|
|
30660
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
30692
30661
|
* "label": {
|
|
30693
30662
|
* "value": "My Custom Control 1"
|
|
30694
30663
|
* },
|
|
30695
|
-
* "key": "my-custom-
|
|
30664
|
+
* "key": "my-custom-toggle-button-1"
|
|
30696
30665
|
* }
|
|
30697
30666
|
* ]
|
|
30698
30667
|
* }
|
|
@@ -30701,15 +30670,16 @@ export interface I18NProperty85 {
|
|
|
30701
30670
|
*
|
|
30702
30671
|
*
|
|
30703
30672
|
*/
|
|
30704
|
-
export interface
|
|
30705
|
-
controls:
|
|
30706
|
-
|
|
30673
|
+
export interface ToggleGroup1 {
|
|
30674
|
+
controls: ToggleButtonControl1[];
|
|
30675
|
+
macroParameter: string;
|
|
30676
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
30707
30677
|
[k: string]: unknown;
|
|
30708
30678
|
}
|
|
30709
30679
|
/**
|
|
30710
30680
|
*
|
|
30711
30681
|
*
|
|
30712
|
-
* Defines a button which
|
|
30682
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
30713
30683
|
*
|
|
30714
30684
|
* <p><b>Example</b></p>
|
|
30715
30685
|
*
|
|
@@ -30718,19 +30688,21 @@ export interface ControlGroup1 {
|
|
|
30718
30688
|
*
|
|
30719
30689
|
*
|
|
30720
30690
|
* {
|
|
30721
|
-
* "type": "
|
|
30691
|
+
* "type": "togglebutton",
|
|
30692
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
30722
30693
|
* "label": {
|
|
30723
30694
|
* "value": "My Custom Control 0"
|
|
30724
30695
|
* },
|
|
30725
|
-
* "key": "my-custom-
|
|
30696
|
+
* "key": "my-custom-toggle-button-0"
|
|
30726
30697
|
* }
|
|
30727
30698
|
*
|
|
30728
30699
|
*
|
|
30729
30700
|
*
|
|
30730
30701
|
*/
|
|
30731
|
-
export interface
|
|
30702
|
+
export interface ToggleButtonControl1 {
|
|
30703
|
+
macroParameterValue: string;
|
|
30732
30704
|
label: I18NProperty86;
|
|
30733
|
-
type: '
|
|
30705
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
30734
30706
|
key: string;
|
|
30735
30707
|
[k: string]: unknown;
|
|
30736
30708
|
}
|
|
@@ -30758,6 +30730,34 @@ export interface I18NProperty86 {
|
|
|
30758
30730
|
i18n?: string;
|
|
30759
30731
|
[k: string]: unknown;
|
|
30760
30732
|
}
|
|
30733
|
+
/**
|
|
30734
|
+
*
|
|
30735
|
+
*
|
|
30736
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
30737
|
+
*
|
|
30738
|
+
* <p><b>Example</b></p>
|
|
30739
|
+
*
|
|
30740
|
+
*
|
|
30741
|
+
*
|
|
30742
|
+
*
|
|
30743
|
+
*
|
|
30744
|
+
* {
|
|
30745
|
+
* "type": "button",
|
|
30746
|
+
* "label": {
|
|
30747
|
+
* "value": "My Custom Control 0"
|
|
30748
|
+
* },
|
|
30749
|
+
* "key": "my-custom-control-0"
|
|
30750
|
+
* }
|
|
30751
|
+
*
|
|
30752
|
+
*
|
|
30753
|
+
*
|
|
30754
|
+
*/
|
|
30755
|
+
export interface TextControl1 {
|
|
30756
|
+
macroParameter: string;
|
|
30757
|
+
type: 'text' | 'TEXT';
|
|
30758
|
+
key: string;
|
|
30759
|
+
[k: string]: unknown;
|
|
30760
|
+
}
|
|
30761
30761
|
/**
|
|
30762
30762
|
*
|
|
30763
30763
|
*
|