@forge/manifest 3.3.1-next.1 → 3.3.1-next.2
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 +251 -251
- package/out/schema/manifest.d.ts +260 -260
- 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?: (CompositeCondition | SingleCondition)[];
|
|
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?: (CompositeCondition | SingleCondition)[];
|
|
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?: (SingleCondition4 | CompositeCondition6)[];
|
|
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?: (SingleCondition4 | CompositeCondition6)[];
|
|
3904
3904
|
key: ModuleKeySchema;
|
|
3905
3905
|
[k: string]: unknown;
|
|
3906
3906
|
}[]
|
|
@@ -4186,7 +4186,7 @@ export interface Modules {
|
|
|
4186
4186
|
icon?: Icon18;
|
|
4187
4187
|
name?: I18NProperty91;
|
|
4188
4188
|
cacheable?: boolean;
|
|
4189
|
-
conditions?: (
|
|
4189
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
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?: (CompositeCondition | SingleCondition)[];
|
|
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?: (SingleCondition | ManifestSchema)[];
|
|
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 | DialogModuleOptions1 | InlineDialogOptions1;
|
|
7133
7133
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
7134
7134
|
[k: string]: unknown;
|
|
7135
7135
|
}
|
|
@@ -7231,6 +7231,33 @@ 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
|
+
}
|
|
7234
7261
|
/**
|
|
7235
7262
|
*
|
|
7236
7263
|
*
|
|
@@ -7271,7 +7298,8 @@ export interface InlineDialogOptions1 {
|
|
|
7271
7298
|
/**
|
|
7272
7299
|
*
|
|
7273
7300
|
*
|
|
7274
|
-
*
|
|
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.
|
|
7275
7303
|
*
|
|
7276
7304
|
* <h3>Example</h3>
|
|
7277
7305
|
*
|
|
@@ -7280,26 +7308,25 @@ export interface InlineDialogOptions1 {
|
|
|
7280
7308
|
*
|
|
7281
7309
|
*
|
|
7282
7310
|
* {
|
|
7283
|
-
* "
|
|
7284
|
-
* "type": "dialogmodule",
|
|
7285
|
-
* "options": {
|
|
7286
|
-
* "key": "dialog-module-key"
|
|
7287
|
-
* }
|
|
7288
|
-
* }
|
|
7311
|
+
* "value": "My text"
|
|
7289
7312
|
* }
|
|
7290
7313
|
*
|
|
7291
7314
|
*
|
|
7292
7315
|
*
|
|
7293
7316
|
*/
|
|
7294
|
-
export interface
|
|
7295
|
-
|
|
7317
|
+
export interface I18NProperty59 {
|
|
7318
|
+
value: string;
|
|
7319
|
+
i18n?: string;
|
|
7296
7320
|
[k: string]: unknown;
|
|
7297
7321
|
}
|
|
7298
7322
|
/**
|
|
7299
7323
|
*
|
|
7300
7324
|
*
|
|
7301
|
-
*
|
|
7302
|
-
*
|
|
7325
|
+
* Single Conditions are either provided by the host application. See the complete documentation of
|
|
7326
|
+
* [Conditions](../../conditions/) for more information.
|
|
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.
|
|
7303
7330
|
*
|
|
7304
7331
|
* <h3>Example</h3>
|
|
7305
7332
|
*
|
|
@@ -7308,15 +7335,19 @@ export interface DialogModuleOptions1 {
|
|
|
7308
7335
|
*
|
|
7309
7336
|
*
|
|
7310
7337
|
* {
|
|
7311
|
-
* "
|
|
7338
|
+
* "condition": "user_is_logged_in",
|
|
7339
|
+
* "invert": false
|
|
7312
7340
|
* }
|
|
7313
7341
|
*
|
|
7314
7342
|
*
|
|
7315
7343
|
*
|
|
7316
7344
|
*/
|
|
7317
|
-
export interface
|
|
7318
|
-
|
|
7319
|
-
|
|
7345
|
+
export interface SingleCondition4 {
|
|
7346
|
+
condition: string;
|
|
7347
|
+
invert?: boolean;
|
|
7348
|
+
params?: {
|
|
7349
|
+
[k: string]: unknown;
|
|
7350
|
+
};
|
|
7320
7351
|
[k: string]: unknown;
|
|
7321
7352
|
}
|
|
7322
7353
|
/**
|
|
@@ -7356,41 +7387,10 @@ export interface I18NProperty59 {
|
|
|
7356
7387
|
*
|
|
7357
7388
|
*/
|
|
7358
7389
|
export interface CompositeCondition6 {
|
|
7359
|
-
conditions?: (
|
|
7390
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
7360
7391
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7361
7392
|
[k: string]: unknown;
|
|
7362
7393
|
}
|
|
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
|
*
|
|
@@ -7813,7 +7813,7 @@ export interface SingleCondition5 {
|
|
|
7813
7813
|
*
|
|
7814
7814
|
*/
|
|
7815
7815
|
export interface CompositeCondition7 {
|
|
7816
|
-
conditions?: (
|
|
7816
|
+
conditions?: (SingleCondition | ManifestSchema)[];
|
|
7817
7817
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7818
7818
|
[k: string]: unknown;
|
|
7819
7819
|
}
|
|
@@ -9236,7 +9236,7 @@ export interface I18NProperty74 {
|
|
|
9236
9236
|
*
|
|
9237
9237
|
*/
|
|
9238
9238
|
export interface MacroPropertyPanel {
|
|
9239
|
-
controls?: (
|
|
9239
|
+
controls?: (ControlGroup | ButtonControl1 | ToggleGroup | TextControl)[];
|
|
9240
9240
|
cacheable?: boolean;
|
|
9241
9241
|
url: string;
|
|
9242
9242
|
[k: string]: unknown;
|
|
@@ -9244,7 +9244,7 @@ export interface MacroPropertyPanel {
|
|
|
9244
9244
|
/**
|
|
9245
9245
|
*
|
|
9246
9246
|
*
|
|
9247
|
-
* Defines a
|
|
9247
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
9248
9248
|
*
|
|
9249
9249
|
* <p><b>Example</b></p>
|
|
9250
9250
|
*
|
|
@@ -9254,24 +9254,21 @@ export interface MacroPropertyPanel {
|
|
|
9254
9254
|
*
|
|
9255
9255
|
* [
|
|
9256
9256
|
* {
|
|
9257
|
-
* "type": "
|
|
9258
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
9257
|
+
* "type": "group",
|
|
9259
9258
|
* "controls": [
|
|
9260
9259
|
* {
|
|
9261
|
-
* "type": "
|
|
9262
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
9260
|
+
* "type": "button",
|
|
9263
9261
|
* "label": {
|
|
9264
9262
|
* "value": "My Custom Control 0"
|
|
9265
9263
|
* },
|
|
9266
|
-
* "key": "my-custom-
|
|
9264
|
+
* "key": "my-custom-control-0"
|
|
9267
9265
|
* },
|
|
9268
9266
|
* {
|
|
9269
|
-
* "type": "
|
|
9270
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
9267
|
+
* "type": "button",
|
|
9271
9268
|
* "label": {
|
|
9272
9269
|
* "value": "My Custom Control 1"
|
|
9273
9270
|
* },
|
|
9274
|
-
* "key": "my-custom-
|
|
9271
|
+
* "key": "my-custom-control-1"
|
|
9275
9272
|
* }
|
|
9276
9273
|
* ]
|
|
9277
9274
|
* }
|
|
@@ -9280,16 +9277,15 @@ export interface MacroPropertyPanel {
|
|
|
9280
9277
|
*
|
|
9281
9278
|
*
|
|
9282
9279
|
*/
|
|
9283
|
-
export interface
|
|
9284
|
-
controls:
|
|
9285
|
-
|
|
9286
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
9280
|
+
export interface ControlGroup {
|
|
9281
|
+
controls: ButtonControl[];
|
|
9282
|
+
type: 'group' | 'GROUP';
|
|
9287
9283
|
[k: string]: unknown;
|
|
9288
9284
|
}
|
|
9289
9285
|
/**
|
|
9290
9286
|
*
|
|
9291
9287
|
*
|
|
9292
|
-
* Defines a
|
|
9288
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
9293
9289
|
*
|
|
9294
9290
|
* <p><b>Example</b></p>
|
|
9295
9291
|
*
|
|
@@ -9298,21 +9294,19 @@ export interface ToggleGroup {
|
|
|
9298
9294
|
*
|
|
9299
9295
|
*
|
|
9300
9296
|
* {
|
|
9301
|
-
* "type": "
|
|
9302
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
9297
|
+
* "type": "button",
|
|
9303
9298
|
* "label": {
|
|
9304
9299
|
* "value": "My Custom Control 0"
|
|
9305
9300
|
* },
|
|
9306
|
-
* "key": "my-custom-
|
|
9301
|
+
* "key": "my-custom-control-0"
|
|
9307
9302
|
* }
|
|
9308
9303
|
*
|
|
9309
9304
|
*
|
|
9310
9305
|
*
|
|
9311
9306
|
*/
|
|
9312
|
-
export interface
|
|
9313
|
-
macroParameterValue: string;
|
|
9307
|
+
export interface ButtonControl {
|
|
9314
9308
|
label: I18NProperty75;
|
|
9315
|
-
type: '
|
|
9309
|
+
type: 'button' | 'BUTTON';
|
|
9316
9310
|
key: string;
|
|
9317
9311
|
[k: string]: unknown;
|
|
9318
9312
|
}
|
|
@@ -9340,47 +9334,6 @@ export interface I18NProperty75 {
|
|
|
9340
9334
|
i18n?: string;
|
|
9341
9335
|
[k: string]: unknown;
|
|
9342
9336
|
}
|
|
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
|
-
}
|
|
9384
9337
|
/**
|
|
9385
9338
|
*
|
|
9386
9339
|
*
|
|
@@ -9403,7 +9356,7 @@ export interface ControlGroup {
|
|
|
9403
9356
|
*
|
|
9404
9357
|
*
|
|
9405
9358
|
*/
|
|
9406
|
-
export interface
|
|
9359
|
+
export interface ButtonControl1 {
|
|
9407
9360
|
label: I18NProperty76;
|
|
9408
9361
|
type: 'button' | 'BUTTON';
|
|
9409
9362
|
key: string;
|
|
@@ -9436,7 +9389,7 @@ export interface I18NProperty76 {
|
|
|
9436
9389
|
/**
|
|
9437
9390
|
*
|
|
9438
9391
|
*
|
|
9439
|
-
* Defines a
|
|
9392
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
9440
9393
|
*
|
|
9441
9394
|
* <p><b>Example</b></p>
|
|
9442
9395
|
*
|
|
@@ -9444,27 +9397,44 @@ export interface I18NProperty76 {
|
|
|
9444
9397
|
*
|
|
9445
9398
|
*
|
|
9446
9399
|
*
|
|
9447
|
-
*
|
|
9448
|
-
*
|
|
9449
|
-
*
|
|
9450
|
-
* "
|
|
9451
|
-
*
|
|
9452
|
-
*
|
|
9453
|
-
*
|
|
9400
|
+
* [
|
|
9401
|
+
* {
|
|
9402
|
+
* "type": "togglegroup",
|
|
9403
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
9404
|
+
* "controls": [
|
|
9405
|
+
* {
|
|
9406
|
+
* "type": "togglebutton",
|
|
9407
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
9408
|
+
* "label": {
|
|
9409
|
+
* "value": "My Custom Control 0"
|
|
9410
|
+
* },
|
|
9411
|
+
* "key": "my-custom-toggle-button-0"
|
|
9412
|
+
* },
|
|
9413
|
+
* {
|
|
9414
|
+
* "type": "togglebutton",
|
|
9415
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
9416
|
+
* "label": {
|
|
9417
|
+
* "value": "My Custom Control 1"
|
|
9418
|
+
* },
|
|
9419
|
+
* "key": "my-custom-toggle-button-1"
|
|
9420
|
+
* }
|
|
9421
|
+
* ]
|
|
9422
|
+
* }
|
|
9423
|
+
* ]
|
|
9454
9424
|
*
|
|
9455
9425
|
*
|
|
9456
9426
|
*
|
|
9457
9427
|
*/
|
|
9458
|
-
export interface
|
|
9428
|
+
export interface ToggleGroup {
|
|
9429
|
+
controls: ToggleButtonControl[];
|
|
9459
9430
|
macroParameter: string;
|
|
9460
|
-
type: '
|
|
9461
|
-
key: string;
|
|
9431
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
9462
9432
|
[k: string]: unknown;
|
|
9463
9433
|
}
|
|
9464
9434
|
/**
|
|
9465
9435
|
*
|
|
9466
9436
|
*
|
|
9467
|
-
* Defines a button which
|
|
9437
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
9468
9438
|
*
|
|
9469
9439
|
* <p><b>Example</b></p>
|
|
9470
9440
|
*
|
|
@@ -9473,19 +9443,21 @@ export interface TextControl {
|
|
|
9473
9443
|
*
|
|
9474
9444
|
*
|
|
9475
9445
|
* {
|
|
9476
|
-
* "type": "
|
|
9446
|
+
* "type": "togglebutton",
|
|
9447
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
9477
9448
|
* "label": {
|
|
9478
9449
|
* "value": "My Custom Control 0"
|
|
9479
9450
|
* },
|
|
9480
|
-
* "key": "my-custom-
|
|
9451
|
+
* "key": "my-custom-toggle-button-0"
|
|
9481
9452
|
* }
|
|
9482
9453
|
*
|
|
9483
9454
|
*
|
|
9484
9455
|
*
|
|
9485
9456
|
*/
|
|
9486
|
-
export interface
|
|
9457
|
+
export interface ToggleButtonControl {
|
|
9458
|
+
macroParameterValue: string;
|
|
9487
9459
|
label: I18NProperty77;
|
|
9488
|
-
type: '
|
|
9460
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
9489
9461
|
key: string;
|
|
9490
9462
|
[k: string]: unknown;
|
|
9491
9463
|
}
|
|
@@ -9513,6 +9485,34 @@ export interface I18NProperty77 {
|
|
|
9513
9485
|
i18n?: string;
|
|
9514
9486
|
[k: string]: unknown;
|
|
9515
9487
|
}
|
|
9488
|
+
/**
|
|
9489
|
+
*
|
|
9490
|
+
*
|
|
9491
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
9492
|
+
*
|
|
9493
|
+
* <p><b>Example</b></p>
|
|
9494
|
+
*
|
|
9495
|
+
*
|
|
9496
|
+
*
|
|
9497
|
+
*
|
|
9498
|
+
*
|
|
9499
|
+
* {
|
|
9500
|
+
* "type": "button",
|
|
9501
|
+
* "label": {
|
|
9502
|
+
* "value": "My Custom Control 0"
|
|
9503
|
+
* },
|
|
9504
|
+
* "key": "my-custom-control-0"
|
|
9505
|
+
* }
|
|
9506
|
+
*
|
|
9507
|
+
*
|
|
9508
|
+
*
|
|
9509
|
+
*/
|
|
9510
|
+
export interface TextControl {
|
|
9511
|
+
macroParameter: string;
|
|
9512
|
+
type: 'text' | 'TEXT';
|
|
9513
|
+
key: string;
|
|
9514
|
+
[k: string]: unknown;
|
|
9515
|
+
}
|
|
9516
9516
|
/**
|
|
9517
9517
|
*
|
|
9518
9518
|
*
|
|
@@ -30481,7 +30481,7 @@ export interface I18NProperty83 {
|
|
|
30481
30481
|
*
|
|
30482
30482
|
*/
|
|
30483
30483
|
export interface MacroPropertyPanel1 {
|
|
30484
|
-
controls?: (
|
|
30484
|
+
controls?: (TextControl1 | ToggleGroup1 | ButtonControl2 | ControlGroup1)[];
|
|
30485
30485
|
cacheable?: boolean;
|
|
30486
30486
|
url: string;
|
|
30487
30487
|
[k: string]: unknown;
|
|
@@ -30489,7 +30489,7 @@ export interface MacroPropertyPanel1 {
|
|
|
30489
30489
|
/**
|
|
30490
30490
|
*
|
|
30491
30491
|
*
|
|
30492
|
-
* Defines a
|
|
30492
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
30493
30493
|
*
|
|
30494
30494
|
* <p><b>Example</b></p>
|
|
30495
30495
|
*
|
|
@@ -30508,40 +30508,16 @@ export interface MacroPropertyPanel1 {
|
|
|
30508
30508
|
*
|
|
30509
30509
|
*
|
|
30510
30510
|
*/
|
|
30511
|
-
export interface
|
|
30512
|
-
|
|
30513
|
-
type: '
|
|
30511
|
+
export interface TextControl1 {
|
|
30512
|
+
macroParameter: string;
|
|
30513
|
+
type: 'text' | 'TEXT';
|
|
30514
30514
|
key: string;
|
|
30515
30515
|
[k: string]: unknown;
|
|
30516
30516
|
}
|
|
30517
30517
|
/**
|
|
30518
30518
|
*
|
|
30519
30519
|
*
|
|
30520
|
-
*
|
|
30521
|
-
* and value in multiple places if you like, but identical keys must have identical values.
|
|
30522
|
-
*
|
|
30523
|
-
* <h3>Example</h3>
|
|
30524
|
-
*
|
|
30525
|
-
*
|
|
30526
|
-
*
|
|
30527
|
-
*
|
|
30528
|
-
*
|
|
30529
|
-
* {
|
|
30530
|
-
* "value": "My text"
|
|
30531
|
-
* }
|
|
30532
|
-
*
|
|
30533
|
-
*
|
|
30534
|
-
*
|
|
30535
|
-
*/
|
|
30536
|
-
export interface I18NProperty84 {
|
|
30537
|
-
value: string;
|
|
30538
|
-
i18n?: string;
|
|
30539
|
-
[k: string]: unknown;
|
|
30540
|
-
}
|
|
30541
|
-
/**
|
|
30542
|
-
*
|
|
30543
|
-
*
|
|
30544
|
-
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
30520
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
30545
30521
|
*
|
|
30546
30522
|
* <p><b>Example</b></p>
|
|
30547
30523
|
*
|
|
@@ -30551,21 +30527,24 @@ export interface I18NProperty84 {
|
|
|
30551
30527
|
*
|
|
30552
30528
|
* [
|
|
30553
30529
|
* {
|
|
30554
|
-
* "type": "
|
|
30530
|
+
* "type": "togglegroup",
|
|
30531
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
30555
30532
|
* "controls": [
|
|
30556
30533
|
* {
|
|
30557
|
-
* "type": "
|
|
30534
|
+
* "type": "togglebutton",
|
|
30535
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
30558
30536
|
* "label": {
|
|
30559
30537
|
* "value": "My Custom Control 0"
|
|
30560
30538
|
* },
|
|
30561
|
-
* "key": "my-custom-
|
|
30539
|
+
* "key": "my-custom-toggle-button-0"
|
|
30562
30540
|
* },
|
|
30563
30541
|
* {
|
|
30564
|
-
* "type": "
|
|
30542
|
+
* "type": "togglebutton",
|
|
30543
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
30565
30544
|
* "label": {
|
|
30566
30545
|
* "value": "My Custom Control 1"
|
|
30567
30546
|
* },
|
|
30568
|
-
* "key": "my-custom-
|
|
30547
|
+
* "key": "my-custom-toggle-button-1"
|
|
30569
30548
|
* }
|
|
30570
30549
|
* ]
|
|
30571
30550
|
* }
|
|
@@ -30574,9 +30553,64 @@ export interface I18NProperty84 {
|
|
|
30574
30553
|
*
|
|
30575
30554
|
*
|
|
30576
30555
|
*/
|
|
30577
|
-
export interface
|
|
30578
|
-
controls:
|
|
30579
|
-
|
|
30556
|
+
export interface ToggleGroup1 {
|
|
30557
|
+
controls: ToggleButtonControl1[];
|
|
30558
|
+
macroParameter: string;
|
|
30559
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
30560
|
+
[k: string]: unknown;
|
|
30561
|
+
}
|
|
30562
|
+
/**
|
|
30563
|
+
*
|
|
30564
|
+
*
|
|
30565
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
30566
|
+
*
|
|
30567
|
+
* <p><b>Example</b></p>
|
|
30568
|
+
*
|
|
30569
|
+
*
|
|
30570
|
+
*
|
|
30571
|
+
*
|
|
30572
|
+
*
|
|
30573
|
+
* {
|
|
30574
|
+
* "type": "togglebutton",
|
|
30575
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
30576
|
+
* "label": {
|
|
30577
|
+
* "value": "My Custom Control 0"
|
|
30578
|
+
* },
|
|
30579
|
+
* "key": "my-custom-toggle-button-0"
|
|
30580
|
+
* }
|
|
30581
|
+
*
|
|
30582
|
+
*
|
|
30583
|
+
*
|
|
30584
|
+
*/
|
|
30585
|
+
export interface ToggleButtonControl1 {
|
|
30586
|
+
macroParameterValue: string;
|
|
30587
|
+
label: I18NProperty84;
|
|
30588
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
30589
|
+
key: string;
|
|
30590
|
+
[k: string]: unknown;
|
|
30591
|
+
}
|
|
30592
|
+
/**
|
|
30593
|
+
*
|
|
30594
|
+
*
|
|
30595
|
+
* Represents a string that can be resolved via a localization properties file. You can use the same `i18n Property` key
|
|
30596
|
+
* and value in multiple places if you like, but identical keys must have identical values.
|
|
30597
|
+
*
|
|
30598
|
+
* <h3>Example</h3>
|
|
30599
|
+
*
|
|
30600
|
+
*
|
|
30601
|
+
*
|
|
30602
|
+
*
|
|
30603
|
+
*
|
|
30604
|
+
* {
|
|
30605
|
+
* "value": "My text"
|
|
30606
|
+
* }
|
|
30607
|
+
*
|
|
30608
|
+
*
|
|
30609
|
+
*
|
|
30610
|
+
*/
|
|
30611
|
+
export interface I18NProperty84 {
|
|
30612
|
+
value: string;
|
|
30613
|
+
i18n?: string;
|
|
30580
30614
|
[k: string]: unknown;
|
|
30581
30615
|
}
|
|
30582
30616
|
/**
|
|
@@ -30601,7 +30635,7 @@ export interface ControlGroup1 {
|
|
|
30601
30635
|
*
|
|
30602
30636
|
*
|
|
30603
30637
|
*/
|
|
30604
|
-
export interface
|
|
30638
|
+
export interface ButtonControl2 {
|
|
30605
30639
|
label: I18NProperty85;
|
|
30606
30640
|
type: 'button' | 'BUTTON';
|
|
30607
30641
|
key: string;
|
|
@@ -30634,7 +30668,7 @@ export interface I18NProperty85 {
|
|
|
30634
30668
|
/**
|
|
30635
30669
|
*
|
|
30636
30670
|
*
|
|
30637
|
-
* Defines a
|
|
30671
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
30638
30672
|
*
|
|
30639
30673
|
* <p><b>Example</b></p>
|
|
30640
30674
|
*
|
|
@@ -30644,24 +30678,21 @@ export interface I18NProperty85 {
|
|
|
30644
30678
|
*
|
|
30645
30679
|
* [
|
|
30646
30680
|
* {
|
|
30647
|
-
* "type": "
|
|
30648
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
30681
|
+
* "type": "group",
|
|
30649
30682
|
* "controls": [
|
|
30650
30683
|
* {
|
|
30651
|
-
* "type": "
|
|
30652
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30684
|
+
* "type": "button",
|
|
30653
30685
|
* "label": {
|
|
30654
30686
|
* "value": "My Custom Control 0"
|
|
30655
30687
|
* },
|
|
30656
|
-
* "key": "my-custom-
|
|
30688
|
+
* "key": "my-custom-control-0"
|
|
30657
30689
|
* },
|
|
30658
30690
|
* {
|
|
30659
|
-
* "type": "
|
|
30660
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
30691
|
+
* "type": "button",
|
|
30661
30692
|
* "label": {
|
|
30662
30693
|
* "value": "My Custom Control 1"
|
|
30663
30694
|
* },
|
|
30664
|
-
* "key": "my-custom-
|
|
30695
|
+
* "key": "my-custom-control-1"
|
|
30665
30696
|
* }
|
|
30666
30697
|
* ]
|
|
30667
30698
|
* }
|
|
@@ -30670,16 +30701,15 @@ export interface I18NProperty85 {
|
|
|
30670
30701
|
*
|
|
30671
30702
|
*
|
|
30672
30703
|
*/
|
|
30673
|
-
export interface
|
|
30674
|
-
controls:
|
|
30675
|
-
|
|
30676
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
30704
|
+
export interface ControlGroup1 {
|
|
30705
|
+
controls: ButtonControl3[];
|
|
30706
|
+
type: 'group' | 'GROUP';
|
|
30677
30707
|
[k: string]: unknown;
|
|
30678
30708
|
}
|
|
30679
30709
|
/**
|
|
30680
30710
|
*
|
|
30681
30711
|
*
|
|
30682
|
-
* Defines a
|
|
30712
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
30683
30713
|
*
|
|
30684
30714
|
* <p><b>Example</b></p>
|
|
30685
30715
|
*
|
|
@@ -30688,21 +30718,19 @@ export interface ToggleGroup1 {
|
|
|
30688
30718
|
*
|
|
30689
30719
|
*
|
|
30690
30720
|
* {
|
|
30691
|
-
* "type": "
|
|
30692
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30721
|
+
* "type": "button",
|
|
30693
30722
|
* "label": {
|
|
30694
30723
|
* "value": "My Custom Control 0"
|
|
30695
30724
|
* },
|
|
30696
|
-
* "key": "my-custom-
|
|
30725
|
+
* "key": "my-custom-control-0"
|
|
30697
30726
|
* }
|
|
30698
30727
|
*
|
|
30699
30728
|
*
|
|
30700
30729
|
*
|
|
30701
30730
|
*/
|
|
30702
|
-
export interface
|
|
30703
|
-
macroParameterValue: string;
|
|
30731
|
+
export interface ButtonControl3 {
|
|
30704
30732
|
label: I18NProperty86;
|
|
30705
|
-
type: '
|
|
30733
|
+
type: 'button' | 'BUTTON';
|
|
30706
30734
|
key: string;
|
|
30707
30735
|
[k: string]: unknown;
|
|
30708
30736
|
}
|
|
@@ -30730,34 +30758,6 @@ export interface I18NProperty86 {
|
|
|
30730
30758
|
i18n?: string;
|
|
30731
30759
|
[k: string]: unknown;
|
|
30732
30760
|
}
|
|
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
|
*
|
|
@@ -51607,47 +51607,10 @@ export interface I18NProperty91 {
|
|
|
51607
51607
|
*
|
|
51608
51608
|
*/
|
|
51609
51609
|
export interface WebItemTarget2 {
|
|
51610
|
-
options?:
|
|
51610
|
+
options?: DialogOptions4 | DialogModuleOptions2 | InlineDialogOptions2;
|
|
51611
51611
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
51612
51612
|
[k: string]: unknown;
|
|
51613
51613
|
}
|
|
51614
|
-
/**
|
|
51615
|
-
*
|
|
51616
|
-
*
|
|
51617
|
-
* Options for an inline dialog target
|
|
51618
|
-
*
|
|
51619
|
-
* <h3>Example</h3>
|
|
51620
|
-
*
|
|
51621
|
-
*
|
|
51622
|
-
*
|
|
51623
|
-
*
|
|
51624
|
-
*
|
|
51625
|
-
* {
|
|
51626
|
-
* "target": {
|
|
51627
|
-
* "type": "inlinedialog",
|
|
51628
|
-
* "options": {
|
|
51629
|
-
* "onHover": true,
|
|
51630
|
-
* "offsetX": "30px",
|
|
51631
|
-
* "offsetY": "20px"
|
|
51632
|
-
* }
|
|
51633
|
-
* }
|
|
51634
|
-
* }
|
|
51635
|
-
*
|
|
51636
|
-
*
|
|
51637
|
-
*
|
|
51638
|
-
*/
|
|
51639
|
-
export interface InlineDialogOptions2 {
|
|
51640
|
-
offsetX?: string;
|
|
51641
|
-
offsetY?: string;
|
|
51642
|
-
width?: string;
|
|
51643
|
-
onTop?: boolean;
|
|
51644
|
-
showDelay?: number;
|
|
51645
|
-
closeOthers?: boolean;
|
|
51646
|
-
persistent?: boolean;
|
|
51647
|
-
onHover?: boolean;
|
|
51648
|
-
isRelativeToMouse?: boolean;
|
|
51649
|
-
[k: string]: unknown;
|
|
51650
|
-
}
|
|
51651
51614
|
/**
|
|
51652
51615
|
*
|
|
51653
51616
|
*
|
|
@@ -51773,6 +51736,43 @@ export interface DialogModuleOptions2 {
|
|
|
51773
51736
|
key: string;
|
|
51774
51737
|
[k: string]: unknown;
|
|
51775
51738
|
}
|
|
51739
|
+
/**
|
|
51740
|
+
*
|
|
51741
|
+
*
|
|
51742
|
+
* Options for an inline dialog target
|
|
51743
|
+
*
|
|
51744
|
+
* <h3>Example</h3>
|
|
51745
|
+
*
|
|
51746
|
+
*
|
|
51747
|
+
*
|
|
51748
|
+
*
|
|
51749
|
+
*
|
|
51750
|
+
* {
|
|
51751
|
+
* "target": {
|
|
51752
|
+
* "type": "inlinedialog",
|
|
51753
|
+
* "options": {
|
|
51754
|
+
* "onHover": true,
|
|
51755
|
+
* "offsetX": "30px",
|
|
51756
|
+
* "offsetY": "20px"
|
|
51757
|
+
* }
|
|
51758
|
+
* }
|
|
51759
|
+
* }
|
|
51760
|
+
*
|
|
51761
|
+
*
|
|
51762
|
+
*
|
|
51763
|
+
*/
|
|
51764
|
+
export interface InlineDialogOptions2 {
|
|
51765
|
+
offsetX?: string;
|
|
51766
|
+
offsetY?: string;
|
|
51767
|
+
width?: string;
|
|
51768
|
+
onTop?: boolean;
|
|
51769
|
+
showDelay?: number;
|
|
51770
|
+
closeOthers?: boolean;
|
|
51771
|
+
persistent?: boolean;
|
|
51772
|
+
onHover?: boolean;
|
|
51773
|
+
isRelativeToMouse?: boolean;
|
|
51774
|
+
[k: string]: unknown;
|
|
51775
|
+
}
|
|
51776
51776
|
/**
|
|
51777
51777
|
*
|
|
51778
51778
|
*
|