@forge/manifest 2.5.0 → 2.5.1-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 +209 -209
- package/out/schema/manifest.d.ts +215 -215
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5356,10 +5356,10 @@
|
|
|
5356
5356
|
"type": "object",
|
|
5357
5357
|
"anyOf": [
|
|
5358
5358
|
{
|
|
5359
|
-
"$ref": "#/definitions/
|
|
5359
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5360
5360
|
},
|
|
5361
5361
|
{
|
|
5362
|
-
"$ref": "#/definitions/
|
|
5362
|
+
"$ref": "#/definitions/singleCondition"
|
|
5363
5363
|
}
|
|
5364
5364
|
]
|
|
5365
5365
|
},
|
|
@@ -5427,10 +5427,10 @@
|
|
|
5427
5427
|
"type": "object",
|
|
5428
5428
|
"anyOf": [
|
|
5429
5429
|
{
|
|
5430
|
-
"$ref": "#/definitions/
|
|
5430
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5431
5431
|
},
|
|
5432
5432
|
{
|
|
5433
|
-
"$ref": "#/definitions/
|
|
5433
|
+
"$ref": "#/definitions/singleCondition"
|
|
5434
5434
|
}
|
|
5435
5435
|
]
|
|
5436
5436
|
},
|
|
@@ -5482,10 +5482,10 @@
|
|
|
5482
5482
|
"type": "object",
|
|
5483
5483
|
"anyOf": [
|
|
5484
5484
|
{
|
|
5485
|
-
"$ref": "#/definitions/
|
|
5485
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5486
5486
|
},
|
|
5487
5487
|
{
|
|
5488
|
-
"$ref": "#/definitions/
|
|
5488
|
+
"$ref": "#/definitions/singleCondition"
|
|
5489
5489
|
}
|
|
5490
5490
|
]
|
|
5491
5491
|
},
|
|
@@ -5735,53 +5735,6 @@
|
|
|
5735
5735
|
"type": "object",
|
|
5736
5736
|
"fieldDescription": "\n\n<p>An object containing options which vary based on the type of web item target you are implementing.</p>\n\n <p>Currently-allowed options are:</p>\n <ul>\n <li><a href=\"../inline-dialog-options/\">Inline Dialog Options</a> when type is \"inlinedialog\", and</li>\n <li><a href=\"../dialog-options/\">Dialog Options</a> when type is \"dialog\"</li>\n <li><a href=\"../dialog-module-options/\">Dialog Module Options</a> when type is \"dialogmodule\"</li>\n </ul>\n\n",
|
|
5737
5737
|
"anyOf": [
|
|
5738
|
-
{
|
|
5739
|
-
"properties": {
|
|
5740
|
-
"offsetX": {
|
|
5741
|
-
"maxLength": 10,
|
|
5742
|
-
"type": "string",
|
|
5743
|
-
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
5744
|
-
},
|
|
5745
|
-
"offsetY": {
|
|
5746
|
-
"maxLength": 10,
|
|
5747
|
-
"type": "string",
|
|
5748
|
-
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
5749
|
-
},
|
|
5750
|
-
"width": {
|
|
5751
|
-
"maxLength": 10,
|
|
5752
|
-
"type": "string",
|
|
5753
|
-
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
5754
|
-
},
|
|
5755
|
-
"onTop": {
|
|
5756
|
-
"type": "boolean",
|
|
5757
|
-
"fieldDescription": "\n\nDetermines if the dialog should be shown above the trigger or not. If this option is true but there is insufficient room above the trigger the inline-dialog will be flipped to display below it\n\n"
|
|
5758
|
-
},
|
|
5759
|
-
"showDelay": {
|
|
5760
|
-
"type": "integer",
|
|
5761
|
-
"fieldDescription": "\n\nDetermines how long in milliseconds after a show trigger is fired (such as a trigger click) until the dialog is shown\n\n"
|
|
5762
|
-
},
|
|
5763
|
-
"closeOthers": {
|
|
5764
|
-
"type": "boolean",
|
|
5765
|
-
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
5766
|
-
},
|
|
5767
|
-
"persistent": {
|
|
5768
|
-
"type": "boolean",
|
|
5769
|
-
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
5770
|
-
},
|
|
5771
|
-
"onHover": {
|
|
5772
|
-
"type": "boolean",
|
|
5773
|
-
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
5774
|
-
},
|
|
5775
|
-
"isRelativeToMouse": {
|
|
5776
|
-
"type": "boolean",
|
|
5777
|
-
"fieldDescription": "\n\nDetermines if the dialog should be shown relative to where the mouse is at the time of the event trigger (normally a click) if set to false the dialog will show aligned to the left of the trigger with the arrow showing at the center\n\n"
|
|
5778
|
-
}
|
|
5779
|
-
},
|
|
5780
|
-
"shortClassName": "inlineDialogOptions",
|
|
5781
|
-
"type": "object",
|
|
5782
|
-
"title": "Inline Dialog Options",
|
|
5783
|
-
"description": "\n\nOptions for an inline dialog target\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"inlinedialog\",\n \"options\": {\n \"onHover\": true,\n \"offsetX\": \"30px\",\n \"offsetY\": \"20px\"\n }\n }\n }\n\n\n"
|
|
5784
|
-
},
|
|
5785
5738
|
{
|
|
5786
5739
|
"properties": {
|
|
5787
5740
|
"size": {
|
|
@@ -5842,6 +5795,53 @@
|
|
|
5842
5795
|
"type": "object",
|
|
5843
5796
|
"title": "Dialog Module Options",
|
|
5844
5797
|
"description": "\n\nOptions for a web-item targeting a common <a href=\"../dialog/\">dialog module</a>.\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"dialogmodule\",\n \"options\": {\n \"key\": \"dialog-module-key\"\n }\n }\n }\n\n\n"
|
|
5798
|
+
},
|
|
5799
|
+
{
|
|
5800
|
+
"properties": {
|
|
5801
|
+
"offsetX": {
|
|
5802
|
+
"maxLength": 10,
|
|
5803
|
+
"type": "string",
|
|
5804
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
5805
|
+
},
|
|
5806
|
+
"offsetY": {
|
|
5807
|
+
"maxLength": 10,
|
|
5808
|
+
"type": "string",
|
|
5809
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
5810
|
+
},
|
|
5811
|
+
"width": {
|
|
5812
|
+
"maxLength": 10,
|
|
5813
|
+
"type": "string",
|
|
5814
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
5815
|
+
},
|
|
5816
|
+
"onTop": {
|
|
5817
|
+
"type": "boolean",
|
|
5818
|
+
"fieldDescription": "\n\nDetermines if the dialog should be shown above the trigger or not. If this option is true but there is insufficient room above the trigger the inline-dialog will be flipped to display below it\n\n"
|
|
5819
|
+
},
|
|
5820
|
+
"showDelay": {
|
|
5821
|
+
"type": "integer",
|
|
5822
|
+
"fieldDescription": "\n\nDetermines how long in milliseconds after a show trigger is fired (such as a trigger click) until the dialog is shown\n\n"
|
|
5823
|
+
},
|
|
5824
|
+
"closeOthers": {
|
|
5825
|
+
"type": "boolean",
|
|
5826
|
+
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
5827
|
+
},
|
|
5828
|
+
"persistent": {
|
|
5829
|
+
"type": "boolean",
|
|
5830
|
+
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
5831
|
+
},
|
|
5832
|
+
"onHover": {
|
|
5833
|
+
"type": "boolean",
|
|
5834
|
+
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
5835
|
+
},
|
|
5836
|
+
"isRelativeToMouse": {
|
|
5837
|
+
"type": "boolean",
|
|
5838
|
+
"fieldDescription": "\n\nDetermines if the dialog should be shown relative to where the mouse is at the time of the event trigger (normally a click) if set to false the dialog will show aligned to the left of the trigger with the arrow showing at the center\n\n"
|
|
5839
|
+
}
|
|
5840
|
+
},
|
|
5841
|
+
"shortClassName": "inlineDialogOptions",
|
|
5842
|
+
"type": "object",
|
|
5843
|
+
"title": "Inline Dialog Options",
|
|
5844
|
+
"description": "\n\nOptions for an inline dialog target\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"inlinedialog\",\n \"options\": {\n \"onHover\": true,\n \"offsetX\": \"30px\",\n \"offsetY\": \"20px\"\n }\n }\n }\n\n\n"
|
|
5845
5845
|
}
|
|
5846
5846
|
]
|
|
5847
5847
|
},
|
|
@@ -6010,10 +6010,10 @@
|
|
|
6010
6010
|
"type": "object",
|
|
6011
6011
|
"anyOf": [
|
|
6012
6012
|
{
|
|
6013
|
-
"$ref": "#/definitions/
|
|
6013
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6014
6014
|
},
|
|
6015
6015
|
{
|
|
6016
|
-
"$ref": "#/definitions/
|
|
6016
|
+
"$ref": "#/definitions/singleCondition"
|
|
6017
6017
|
}
|
|
6018
6018
|
]
|
|
6019
6019
|
},
|
|
@@ -6525,38 +6525,6 @@
|
|
|
6525
6525
|
"title": "TextControl",
|
|
6526
6526
|
"description": "\n\nDefines a text field which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
|
|
6527
6527
|
},
|
|
6528
|
-
{
|
|
6529
|
-
"properties": {
|
|
6530
|
-
"label": {
|
|
6531
|
-
"$ref": "#/definitions/i18nProperty",
|
|
6532
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6533
|
-
},
|
|
6534
|
-
"type": {
|
|
6535
|
-
"enum": [
|
|
6536
|
-
"button",
|
|
6537
|
-
"BUTTON"
|
|
6538
|
-
],
|
|
6539
|
-
"type": "string",
|
|
6540
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6541
|
-
},
|
|
6542
|
-
"key": {
|
|
6543
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6544
|
-
"maxLength": 100,
|
|
6545
|
-
"type": "string",
|
|
6546
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
6547
|
-
}
|
|
6548
|
-
},
|
|
6549
|
-
"required": [
|
|
6550
|
-
"label",
|
|
6551
|
-
"type",
|
|
6552
|
-
"key"
|
|
6553
|
-
],
|
|
6554
|
-
"additionalProperties": true,
|
|
6555
|
-
"shortClassName": "buttonControlBean",
|
|
6556
|
-
"type": "object",
|
|
6557
|
-
"title": "ButtonControl",
|
|
6558
|
-
"description": "\n\nDefines a button which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
|
|
6559
|
-
},
|
|
6560
6528
|
{
|
|
6561
6529
|
"properties": {
|
|
6562
6530
|
"controls": {
|
|
@@ -6613,6 +6581,38 @@
|
|
|
6613
6581
|
"title": "ControlGroup",
|
|
6614
6582
|
"description": "\n\nDefines a ControlGroup which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n [\n {\n \"type\": \"group\",\n \"controls\": [\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n },\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 1\"\n },\n \"key\": \"my-custom-control-1\"\n }\n ]\n }\n ]\n\n\n"
|
|
6615
6583
|
},
|
|
6584
|
+
{
|
|
6585
|
+
"properties": {
|
|
6586
|
+
"label": {
|
|
6587
|
+
"$ref": "#/definitions/i18nProperty",
|
|
6588
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6589
|
+
},
|
|
6590
|
+
"type": {
|
|
6591
|
+
"enum": [
|
|
6592
|
+
"button",
|
|
6593
|
+
"BUTTON"
|
|
6594
|
+
],
|
|
6595
|
+
"type": "string",
|
|
6596
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6597
|
+
},
|
|
6598
|
+
"key": {
|
|
6599
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6600
|
+
"maxLength": 100,
|
|
6601
|
+
"type": "string",
|
|
6602
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
6603
|
+
}
|
|
6604
|
+
},
|
|
6605
|
+
"required": [
|
|
6606
|
+
"label",
|
|
6607
|
+
"type",
|
|
6608
|
+
"key"
|
|
6609
|
+
],
|
|
6610
|
+
"additionalProperties": true,
|
|
6611
|
+
"shortClassName": "buttonControlBean",
|
|
6612
|
+
"type": "object",
|
|
6613
|
+
"title": "ButtonControl",
|
|
6614
|
+
"description": "\n\nDefines a button which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
|
|
6615
|
+
},
|
|
6616
6616
|
{
|
|
6617
6617
|
"properties": {
|
|
6618
6618
|
"controls": {
|
|
@@ -6977,72 +6977,35 @@
|
|
|
6977
6977
|
"anyOf": [
|
|
6978
6978
|
{
|
|
6979
6979
|
"properties": {
|
|
6980
|
-
"
|
|
6981
|
-
"
|
|
6982
|
-
|
|
6983
|
-
"macroParameterValue": {
|
|
6984
|
-
"maxLength": 10000,
|
|
6985
|
-
"type": "string",
|
|
6986
|
-
"fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
|
|
6987
|
-
},
|
|
6988
|
-
"label": {
|
|
6989
|
-
"$ref": "#/definitions/i18nProperty",
|
|
6990
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6991
|
-
},
|
|
6992
|
-
"type": {
|
|
6993
|
-
"enum": [
|
|
6994
|
-
"togglebutton",
|
|
6995
|
-
"TOGGLEBUTTON"
|
|
6996
|
-
],
|
|
6997
|
-
"type": "string",
|
|
6998
|
-
"fieldDescription": "\n\nThe type field must be set to 'togglebutton'\n\n"
|
|
6999
|
-
},
|
|
7000
|
-
"key": {
|
|
7001
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7002
|
-
"maxLength": 100,
|
|
7003
|
-
"type": "string",
|
|
7004
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7005
|
-
}
|
|
7006
|
-
},
|
|
7007
|
-
"required": [
|
|
7008
|
-
"macroParameterValue",
|
|
7009
|
-
"label",
|
|
7010
|
-
"type",
|
|
7011
|
-
"key"
|
|
7012
|
-
],
|
|
7013
|
-
"additionalProperties": true,
|
|
7014
|
-
"shortClassName": "macroToggleButtonControlBean",
|
|
7015
|
-
"type": "object",
|
|
7016
|
-
"title": "ToggleButtonControl",
|
|
7017
|
-
"description": "\n\nDefines a toggle button which appears inside a ToggleGroup\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"togglebutton\",\n \"macroParameterValue\": \"macroParameterValue 0\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-toggle-button-0\"\n }\n\n\n"
|
|
7018
|
-
},
|
|
7019
|
-
"type": "array",
|
|
7020
|
-
"fieldDescription": "\n\nToggle buttons which will appear in the toggle group\n\n"
|
|
7021
|
-
},
|
|
7022
|
-
"macroParameter": {
|
|
7023
|
-
"pattern": "[-_a-z0-9\\.]+",
|
|
7024
|
-
"maxLength": 100,
|
|
7025
|
-
"type": "string",
|
|
7026
|
-
"fieldDescription": "\n\nThe macro parameter identifier used to store the toggle state.\n It must only contain lowercase alphanumeric characters, dashes, underscores, dots and must not contain any spaces.\n\n"
|
|
6980
|
+
"label": {
|
|
6981
|
+
"$ref": "#/definitions/i18nProperty",
|
|
6982
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7027
6983
|
},
|
|
7028
6984
|
"type": {
|
|
7029
6985
|
"enum": [
|
|
7030
|
-
"
|
|
7031
|
-
"
|
|
6986
|
+
"button",
|
|
6987
|
+
"BUTTON"
|
|
7032
6988
|
],
|
|
7033
6989
|
"type": "string",
|
|
7034
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
6990
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6991
|
+
},
|
|
6992
|
+
"key": {
|
|
6993
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6994
|
+
"maxLength": 100,
|
|
6995
|
+
"type": "string",
|
|
6996
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7035
6997
|
}
|
|
7036
6998
|
},
|
|
7037
6999
|
"required": [
|
|
7038
|
-
"
|
|
7039
|
-
"
|
|
7040
|
-
"
|
|
7000
|
+
"label",
|
|
7001
|
+
"type",
|
|
7002
|
+
"key"
|
|
7041
7003
|
],
|
|
7042
|
-
"
|
|
7004
|
+
"additionalProperties": true,
|
|
7005
|
+
"shortClassName": "buttonControlBean",
|
|
7043
7006
|
"type": "object",
|
|
7044
|
-
"title": "
|
|
7045
|
-
"description": "\n\nDefines a
|
|
7007
|
+
"title": "ButtonControl",
|
|
7008
|
+
"description": "\n\nDefines a button which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"button\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-control-0\"\n }\n\n\n"
|
|
7046
7009
|
},
|
|
7047
7010
|
{
|
|
7048
7011
|
"properties": {
|
|
@@ -7134,35 +7097,72 @@
|
|
|
7134
7097
|
},
|
|
7135
7098
|
{
|
|
7136
7099
|
"properties": {
|
|
7137
|
-
"
|
|
7138
|
-
"
|
|
7139
|
-
|
|
7100
|
+
"controls": {
|
|
7101
|
+
"items": {
|
|
7102
|
+
"properties": {
|
|
7103
|
+
"macroParameterValue": {
|
|
7104
|
+
"maxLength": 10000,
|
|
7105
|
+
"type": "string",
|
|
7106
|
+
"fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
|
|
7107
|
+
},
|
|
7108
|
+
"label": {
|
|
7109
|
+
"$ref": "#/definitions/i18nProperty",
|
|
7110
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7111
|
+
},
|
|
7112
|
+
"type": {
|
|
7113
|
+
"enum": [
|
|
7114
|
+
"togglebutton",
|
|
7115
|
+
"TOGGLEBUTTON"
|
|
7116
|
+
],
|
|
7117
|
+
"type": "string",
|
|
7118
|
+
"fieldDescription": "\n\nThe type field must be set to 'togglebutton'\n\n"
|
|
7119
|
+
},
|
|
7120
|
+
"key": {
|
|
7121
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7122
|
+
"maxLength": 100,
|
|
7123
|
+
"type": "string",
|
|
7124
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7125
|
+
}
|
|
7126
|
+
},
|
|
7127
|
+
"required": [
|
|
7128
|
+
"macroParameterValue",
|
|
7129
|
+
"label",
|
|
7130
|
+
"type",
|
|
7131
|
+
"key"
|
|
7132
|
+
],
|
|
7133
|
+
"additionalProperties": true,
|
|
7134
|
+
"shortClassName": "macroToggleButtonControlBean",
|
|
7135
|
+
"type": "object",
|
|
7136
|
+
"title": "ToggleButtonControl",
|
|
7137
|
+
"description": "\n\nDefines a toggle button which appears inside a ToggleGroup\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"type\": \"togglebutton\",\n \"macroParameterValue\": \"macroParameterValue 0\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-toggle-button-0\"\n }\n\n\n"
|
|
7138
|
+
},
|
|
7139
|
+
"type": "array",
|
|
7140
|
+
"fieldDescription": "\n\nToggle buttons which will appear in the toggle group\n\n"
|
|
7141
|
+
},
|
|
7142
|
+
"macroParameter": {
|
|
7143
|
+
"pattern": "[-_a-z0-9\\.]+",
|
|
7144
|
+
"maxLength": 100,
|
|
7145
|
+
"type": "string",
|
|
7146
|
+
"fieldDescription": "\n\nThe macro parameter identifier used to store the toggle state.\n It must only contain lowercase alphanumeric characters, dashes, underscores, dots and must not contain any spaces.\n\n"
|
|
7140
7147
|
},
|
|
7141
7148
|
"type": {
|
|
7142
7149
|
"enum": [
|
|
7143
|
-
"
|
|
7144
|
-
"
|
|
7150
|
+
"togglegroup",
|
|
7151
|
+
"TOGGLEGROUP"
|
|
7145
7152
|
],
|
|
7146
7153
|
"type": "string",
|
|
7147
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
7148
|
-
},
|
|
7149
|
-
"key": {
|
|
7150
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7151
|
-
"maxLength": 100,
|
|
7152
|
-
"type": "string",
|
|
7153
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7154
|
+
"fieldDescription": "\n\nThe type field must be set to 'togglegroup'\n\n"
|
|
7154
7155
|
}
|
|
7155
7156
|
},
|
|
7156
7157
|
"required": [
|
|
7157
|
-
"
|
|
7158
|
-
"
|
|
7159
|
-
"
|
|
7158
|
+
"controls",
|
|
7159
|
+
"macroParameter",
|
|
7160
|
+
"type"
|
|
7160
7161
|
],
|
|
7161
|
-
"
|
|
7162
|
-
"shortClassName": "buttonControlBean",
|
|
7162
|
+
"shortClassName": "macroToggleGroupBean",
|
|
7163
7163
|
"type": "object",
|
|
7164
|
-
"title": "
|
|
7165
|
-
"description": "\n\nDefines a
|
|
7164
|
+
"title": "ToggleGroup",
|
|
7165
|
+
"description": "\n\nDefines a ToggleGroup which may appear in control extension points such as the property panel\n\n <p><b>Example</b></p>\n\n\n\n\n\n [\n {\n \"type\": \"togglegroup\",\n \"macroParameter\": \"toggleGroupMacroParameter\",\n \"controls\": [\n {\n \"type\": \"togglebutton\",\n \"macroParameterValue\": \"macroParameterValue 0\",\n \"label\": {\n \"value\": \"My Custom Control 0\"\n },\n \"key\": \"my-custom-toggle-button-0\"\n },\n {\n \"type\": \"togglebutton\",\n \"macroParameterValue\": \"macroParameterValue 1\",\n \"label\": {\n \"value\": \"My Custom Control 1\"\n },\n \"key\": \"my-custom-toggle-button-1\"\n }\n ]\n }\n ]\n\n\n"
|
|
7166
7166
|
}
|
|
7167
7167
|
]
|
|
7168
7168
|
},
|
|
@@ -7365,10 +7365,10 @@
|
|
|
7365
7365
|
"type": "object",
|
|
7366
7366
|
"anyOf": [
|
|
7367
7367
|
{
|
|
7368
|
-
"$ref": "#/definitions/
|
|
7368
|
+
"$ref": "#/definitions/compositeCondition"
|
|
7369
7369
|
},
|
|
7370
7370
|
{
|
|
7371
|
-
"$ref": "#/definitions/
|
|
7371
|
+
"$ref": "#/definitions/singleCondition"
|
|
7372
7372
|
}
|
|
7373
7373
|
]
|
|
7374
7374
|
},
|
|
@@ -7398,6 +7398,51 @@
|
|
|
7398
7398
|
"type": "object",
|
|
7399
7399
|
"fieldDescription": "\n\n<p>An object containing options which vary based on the type of web item target you are implementing.</p>\n\n <p>Currently-allowed options are:</p>\n <ul>\n <li><a href=\"../inline-dialog-options/\">Inline Dialog Options</a> when type is \"inlinedialog\", and</li>\n <li><a href=\"../dialog-options/\">Dialog Options</a> when type is \"dialog\"</li>\n <li><a href=\"../dialog-module-options/\">Dialog Module Options</a> when type is \"dialogmodule\"</li>\n </ul>\n\n",
|
|
7400
7400
|
"anyOf": [
|
|
7401
|
+
{
|
|
7402
|
+
"properties": {
|
|
7403
|
+
"size": {
|
|
7404
|
+
"enum": [
|
|
7405
|
+
"small",
|
|
7406
|
+
"SMALL",
|
|
7407
|
+
"medium",
|
|
7408
|
+
"MEDIUM",
|
|
7409
|
+
"large",
|
|
7410
|
+
"LARGE",
|
|
7411
|
+
"x-large",
|
|
7412
|
+
"X-LARGE",
|
|
7413
|
+
"fullscreen",
|
|
7414
|
+
"FULLSCREEN",
|
|
7415
|
+
"maximum",
|
|
7416
|
+
"MAXIMUM"
|
|
7417
|
+
],
|
|
7418
|
+
"type": "string",
|
|
7419
|
+
"fieldDescription": "\n\nSets the size of the dialog.\n\n <p>\n This option is used instead of the 'height' and 'width' options.\n </p>\n\n"
|
|
7420
|
+
},
|
|
7421
|
+
"chrome": {
|
|
7422
|
+
"type": "boolean",
|
|
7423
|
+
"fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
|
|
7424
|
+
"defaultValue": "true"
|
|
7425
|
+
},
|
|
7426
|
+
"width": {
|
|
7427
|
+
"maxLength": 10,
|
|
7428
|
+
"type": "string",
|
|
7429
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
7430
|
+
},
|
|
7431
|
+
"header": {
|
|
7432
|
+
"$ref": "#/definitions/i18nProperty",
|
|
7433
|
+
"fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
|
|
7434
|
+
},
|
|
7435
|
+
"height": {
|
|
7436
|
+
"maxLength": 10,
|
|
7437
|
+
"type": "string",
|
|
7438
|
+
"fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
|
|
7439
|
+
}
|
|
7440
|
+
},
|
|
7441
|
+
"shortClassName": "dialogOptions",
|
|
7442
|
+
"type": "object",
|
|
7443
|
+
"title": "Dialog Options",
|
|
7444
|
+
"description": "\n\nOptions for a modal dialog <a href=\"../web-item-target/\">web item target</a> or <a href=\"../dialog/\">common module</a>.\n\n <p>\n These options are a subset of those available via the <a href=\"../../jsapi/dialog/\">JavaScript API</a>.\n </p>\n\n <h2>Web Item Example</h2>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"dialog\",\n \"options\": {\n \"height\": \"100px\",\n \"width\": \"200px\"\n }\n }\n }\n\n\n\n\n <h2>Dialog Example</h2>\n\n\n\n\n\n {\n \"modules\": {\n \"dialogs\": [\n {\n \"url\": \"/my-dialog-content\",\n \"options\": {\n \"size\": \"fullscreen\",\n \"header\": {\n \"value\": \"Example Dialog\"\n }\n },\n \"key\": \"dialog-module-key\"\n }\n ]\n }\n }\n\n\n"
|
|
7445
|
+
},
|
|
7401
7446
|
{
|
|
7402
7447
|
"properties": {
|
|
7403
7448
|
"key": {
|
|
@@ -7460,51 +7505,6 @@
|
|
|
7460
7505
|
"type": "object",
|
|
7461
7506
|
"title": "Inline Dialog Options",
|
|
7462
7507
|
"description": "\n\nOptions for an inline dialog target\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"inlinedialog\",\n \"options\": {\n \"onHover\": true,\n \"offsetX\": \"30px\",\n \"offsetY\": \"20px\"\n }\n }\n }\n\n\n"
|
|
7463
|
-
},
|
|
7464
|
-
{
|
|
7465
|
-
"properties": {
|
|
7466
|
-
"size": {
|
|
7467
|
-
"enum": [
|
|
7468
|
-
"small",
|
|
7469
|
-
"SMALL",
|
|
7470
|
-
"medium",
|
|
7471
|
-
"MEDIUM",
|
|
7472
|
-
"large",
|
|
7473
|
-
"LARGE",
|
|
7474
|
-
"x-large",
|
|
7475
|
-
"X-LARGE",
|
|
7476
|
-
"fullscreen",
|
|
7477
|
-
"FULLSCREEN",
|
|
7478
|
-
"maximum",
|
|
7479
|
-
"MAXIMUM"
|
|
7480
|
-
],
|
|
7481
|
-
"type": "string",
|
|
7482
|
-
"fieldDescription": "\n\nSets the size of the dialog.\n\n <p>\n This option is used instead of the 'height' and 'width' options.\n </p>\n\n"
|
|
7483
|
-
},
|
|
7484
|
-
"chrome": {
|
|
7485
|
-
"type": "boolean",
|
|
7486
|
-
"fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
|
|
7487
|
-
"defaultValue": "true"
|
|
7488
|
-
},
|
|
7489
|
-
"width": {
|
|
7490
|
-
"maxLength": 10,
|
|
7491
|
-
"type": "string",
|
|
7492
|
-
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
7493
|
-
},
|
|
7494
|
-
"header": {
|
|
7495
|
-
"$ref": "#/definitions/i18nProperty",
|
|
7496
|
-
"fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
|
|
7497
|
-
},
|
|
7498
|
-
"height": {
|
|
7499
|
-
"maxLength": 10,
|
|
7500
|
-
"type": "string",
|
|
7501
|
-
"fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
|
|
7502
|
-
}
|
|
7503
|
-
},
|
|
7504
|
-
"shortClassName": "dialogOptions",
|
|
7505
|
-
"type": "object",
|
|
7506
|
-
"title": "Dialog Options",
|
|
7507
|
-
"description": "\n\nOptions for a modal dialog <a href=\"../web-item-target/\">web item target</a> or <a href=\"../dialog/\">common module</a>.\n\n <p>\n These options are a subset of those available via the <a href=\"../../jsapi/dialog/\">JavaScript API</a>.\n </p>\n\n <h2>Web Item Example</h2>\n\n\n\n\n\n {\n \"target\": {\n \"type\": \"dialog\",\n \"options\": {\n \"height\": \"100px\",\n \"width\": \"200px\"\n }\n }\n }\n\n\n\n\n <h2>Dialog Example</h2>\n\n\n\n\n\n {\n \"modules\": {\n \"dialogs\": [\n {\n \"url\": \"/my-dialog-content\",\n \"options\": {\n \"size\": \"fullscreen\",\n \"header\": {\n \"value\": \"Example Dialog\"\n }\n },\n \"key\": \"dialog-module-key\"\n }\n ]\n }\n }\n\n\n"
|
|
7508
7508
|
}
|
|
7509
7509
|
]
|
|
7510
7510
|
},
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -2473,7 +2473,7 @@ export interface Modules {
|
|
|
2473
2473
|
fullPage?: boolean;
|
|
2474
2474
|
cacheable?: boolean;
|
|
2475
2475
|
location?: string;
|
|
2476
|
-
conditions?: (
|
|
2476
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2477
2477
|
params?: {
|
|
2478
2478
|
[k: string]: unknown;
|
|
2479
2479
|
};
|
|
@@ -2488,7 +2488,7 @@ export interface Modules {
|
|
|
2488
2488
|
fullPage?: boolean;
|
|
2489
2489
|
cacheable?: boolean;
|
|
2490
2490
|
location?: string;
|
|
2491
|
-
conditions?: (
|
|
2491
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2492
2492
|
params?: {
|
|
2493
2493
|
[k: string]: unknown;
|
|
2494
2494
|
};
|
|
@@ -2506,7 +2506,7 @@ export interface Modules {
|
|
|
2506
2506
|
location?: string;
|
|
2507
2507
|
cacheable?: boolean;
|
|
2508
2508
|
supportsNative?: boolean;
|
|
2509
|
-
conditions?: (
|
|
2509
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2510
2510
|
params?: {
|
|
2511
2511
|
[k: string]: unknown;
|
|
2512
2512
|
};
|
|
@@ -2522,7 +2522,7 @@ export interface Modules {
|
|
|
2522
2522
|
location?: string;
|
|
2523
2523
|
cacheable?: boolean;
|
|
2524
2524
|
supportsNative?: boolean;
|
|
2525
|
-
conditions?: (
|
|
2525
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2526
2526
|
params?: {
|
|
2527
2527
|
[k: string]: unknown;
|
|
2528
2528
|
};
|
|
@@ -2536,7 +2536,7 @@ export interface Modules {
|
|
|
2536
2536
|
filter?: string;
|
|
2537
2537
|
excludeBody?: boolean;
|
|
2538
2538
|
event?: string;
|
|
2539
|
-
conditions?: (
|
|
2539
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2540
2540
|
propertyKeys?: string[];
|
|
2541
2541
|
url?: string;
|
|
2542
2542
|
key: ModuleKeySchema;
|
|
@@ -2546,7 +2546,7 @@ export interface Modules {
|
|
|
2546
2546
|
filter?: string;
|
|
2547
2547
|
excludeBody?: boolean;
|
|
2548
2548
|
event?: string;
|
|
2549
|
-
conditions?: (
|
|
2549
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2550
2550
|
propertyKeys?: string[];
|
|
2551
2551
|
url?: string;
|
|
2552
2552
|
key: ModuleKeySchema;
|
|
@@ -2685,7 +2685,7 @@ export interface Modules {
|
|
|
2685
2685
|
fullPage?: boolean;
|
|
2686
2686
|
cacheable?: boolean;
|
|
2687
2687
|
location?: string;
|
|
2688
|
-
conditions?: (
|
|
2688
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2689
2689
|
params?: {
|
|
2690
2690
|
[k: string]: unknown;
|
|
2691
2691
|
};
|
|
@@ -2700,7 +2700,7 @@ export interface Modules {
|
|
|
2700
2700
|
fullPage?: boolean;
|
|
2701
2701
|
cacheable?: boolean;
|
|
2702
2702
|
location?: string;
|
|
2703
|
-
conditions?: (
|
|
2703
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2704
2704
|
params?: {
|
|
2705
2705
|
[k: string]: unknown;
|
|
2706
2706
|
};
|
|
@@ -2958,7 +2958,7 @@ export interface Modules {
|
|
|
2958
2958
|
icon?: Icon18;
|
|
2959
2959
|
name?: I18NProperty91;
|
|
2960
2960
|
cacheable?: boolean;
|
|
2961
|
-
conditions?: (
|
|
2961
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2962
2962
|
params?: {
|
|
2963
2963
|
[k: string]: unknown;
|
|
2964
2964
|
};
|
|
@@ -2974,7 +2974,7 @@ export interface Modules {
|
|
|
2974
2974
|
icon?: Icon18;
|
|
2975
2975
|
name?: I18NProperty91;
|
|
2976
2976
|
cacheable?: boolean;
|
|
2977
|
-
conditions?: (
|
|
2977
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
2978
2978
|
params?: {
|
|
2979
2979
|
[k: string]: unknown;
|
|
2980
2980
|
};
|
|
@@ -5899,47 +5899,10 @@ export interface Icon10 {
|
|
|
5899
5899
|
*
|
|
5900
5900
|
*/
|
|
5901
5901
|
export interface WebItemTarget1 {
|
|
5902
|
-
options?:
|
|
5902
|
+
options?: DialogOptions2 | DialogModuleOptions1 | InlineDialogOptions1;
|
|
5903
5903
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
5904
5904
|
[k: string]: unknown;
|
|
5905
5905
|
}
|
|
5906
|
-
/**
|
|
5907
|
-
*
|
|
5908
|
-
*
|
|
5909
|
-
* Options for an inline dialog target
|
|
5910
|
-
*
|
|
5911
|
-
* <h3>Example</h3>
|
|
5912
|
-
*
|
|
5913
|
-
*
|
|
5914
|
-
*
|
|
5915
|
-
*
|
|
5916
|
-
*
|
|
5917
|
-
* {
|
|
5918
|
-
* "target": {
|
|
5919
|
-
* "type": "inlinedialog",
|
|
5920
|
-
* "options": {
|
|
5921
|
-
* "onHover": true,
|
|
5922
|
-
* "offsetX": "30px",
|
|
5923
|
-
* "offsetY": "20px"
|
|
5924
|
-
* }
|
|
5925
|
-
* }
|
|
5926
|
-
* }
|
|
5927
|
-
*
|
|
5928
|
-
*
|
|
5929
|
-
*
|
|
5930
|
-
*/
|
|
5931
|
-
export interface InlineDialogOptions1 {
|
|
5932
|
-
offsetX?: string;
|
|
5933
|
-
offsetY?: string;
|
|
5934
|
-
width?: string;
|
|
5935
|
-
onTop?: boolean;
|
|
5936
|
-
showDelay?: number;
|
|
5937
|
-
closeOthers?: boolean;
|
|
5938
|
-
persistent?: boolean;
|
|
5939
|
-
onHover?: boolean;
|
|
5940
|
-
isRelativeToMouse?: boolean;
|
|
5941
|
-
[k: string]: unknown;
|
|
5942
|
-
}
|
|
5943
5906
|
/**
|
|
5944
5907
|
*
|
|
5945
5908
|
*
|
|
@@ -6065,6 +6028,43 @@ export interface DialogModuleOptions1 {
|
|
|
6065
6028
|
key: string;
|
|
6066
6029
|
[k: string]: unknown;
|
|
6067
6030
|
}
|
|
6031
|
+
/**
|
|
6032
|
+
*
|
|
6033
|
+
*
|
|
6034
|
+
* Options for an inline dialog target
|
|
6035
|
+
*
|
|
6036
|
+
* <h3>Example</h3>
|
|
6037
|
+
*
|
|
6038
|
+
*
|
|
6039
|
+
*
|
|
6040
|
+
*
|
|
6041
|
+
*
|
|
6042
|
+
* {
|
|
6043
|
+
* "target": {
|
|
6044
|
+
* "type": "inlinedialog",
|
|
6045
|
+
* "options": {
|
|
6046
|
+
* "onHover": true,
|
|
6047
|
+
* "offsetX": "30px",
|
|
6048
|
+
* "offsetY": "20px"
|
|
6049
|
+
* }
|
|
6050
|
+
* }
|
|
6051
|
+
* }
|
|
6052
|
+
*
|
|
6053
|
+
*
|
|
6054
|
+
*
|
|
6055
|
+
*/
|
|
6056
|
+
export interface InlineDialogOptions1 {
|
|
6057
|
+
offsetX?: string;
|
|
6058
|
+
offsetY?: string;
|
|
6059
|
+
width?: string;
|
|
6060
|
+
onTop?: boolean;
|
|
6061
|
+
showDelay?: number;
|
|
6062
|
+
closeOthers?: boolean;
|
|
6063
|
+
persistent?: boolean;
|
|
6064
|
+
onHover?: boolean;
|
|
6065
|
+
isRelativeToMouse?: boolean;
|
|
6066
|
+
[k: string]: unknown;
|
|
6067
|
+
}
|
|
6068
6068
|
/**
|
|
6069
6069
|
*
|
|
6070
6070
|
*
|
|
@@ -8006,7 +8006,7 @@ export interface I18NProperty74 {
|
|
|
8006
8006
|
*
|
|
8007
8007
|
*/
|
|
8008
8008
|
export interface MacroPropertyPanel {
|
|
8009
|
-
controls?: (TextControl |
|
|
8009
|
+
controls?: (TextControl | ControlGroup | ButtonControl1 | ToggleGroup)[];
|
|
8010
8010
|
cacheable?: boolean;
|
|
8011
8011
|
url: string;
|
|
8012
8012
|
[k: string]: unknown;
|
|
@@ -8039,6 +8039,47 @@ export interface TextControl {
|
|
|
8039
8039
|
key: string;
|
|
8040
8040
|
[k: string]: unknown;
|
|
8041
8041
|
}
|
|
8042
|
+
/**
|
|
8043
|
+
*
|
|
8044
|
+
*
|
|
8045
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
8046
|
+
*
|
|
8047
|
+
* <p><b>Example</b></p>
|
|
8048
|
+
*
|
|
8049
|
+
*
|
|
8050
|
+
*
|
|
8051
|
+
*
|
|
8052
|
+
*
|
|
8053
|
+
* [
|
|
8054
|
+
* {
|
|
8055
|
+
* "type": "group",
|
|
8056
|
+
* "controls": [
|
|
8057
|
+
* {
|
|
8058
|
+
* "type": "button",
|
|
8059
|
+
* "label": {
|
|
8060
|
+
* "value": "My Custom Control 0"
|
|
8061
|
+
* },
|
|
8062
|
+
* "key": "my-custom-control-0"
|
|
8063
|
+
* },
|
|
8064
|
+
* {
|
|
8065
|
+
* "type": "button",
|
|
8066
|
+
* "label": {
|
|
8067
|
+
* "value": "My Custom Control 1"
|
|
8068
|
+
* },
|
|
8069
|
+
* "key": "my-custom-control-1"
|
|
8070
|
+
* }
|
|
8071
|
+
* ]
|
|
8072
|
+
* }
|
|
8073
|
+
* ]
|
|
8074
|
+
*
|
|
8075
|
+
*
|
|
8076
|
+
*
|
|
8077
|
+
*/
|
|
8078
|
+
export interface ControlGroup {
|
|
8079
|
+
controls: ButtonControl[];
|
|
8080
|
+
type: 'group' | 'GROUP';
|
|
8081
|
+
[k: string]: unknown;
|
|
8082
|
+
}
|
|
8042
8083
|
/**
|
|
8043
8084
|
*
|
|
8044
8085
|
*
|
|
@@ -8091,47 +8132,6 @@ export interface I18NProperty75 {
|
|
|
8091
8132
|
i18n?: string;
|
|
8092
8133
|
[k: string]: unknown;
|
|
8093
8134
|
}
|
|
8094
|
-
/**
|
|
8095
|
-
*
|
|
8096
|
-
*
|
|
8097
|
-
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
8098
|
-
*
|
|
8099
|
-
* <p><b>Example</b></p>
|
|
8100
|
-
*
|
|
8101
|
-
*
|
|
8102
|
-
*
|
|
8103
|
-
*
|
|
8104
|
-
*
|
|
8105
|
-
* [
|
|
8106
|
-
* {
|
|
8107
|
-
* "type": "group",
|
|
8108
|
-
* "controls": [
|
|
8109
|
-
* {
|
|
8110
|
-
* "type": "button",
|
|
8111
|
-
* "label": {
|
|
8112
|
-
* "value": "My Custom Control 0"
|
|
8113
|
-
* },
|
|
8114
|
-
* "key": "my-custom-control-0"
|
|
8115
|
-
* },
|
|
8116
|
-
* {
|
|
8117
|
-
* "type": "button",
|
|
8118
|
-
* "label": {
|
|
8119
|
-
* "value": "My Custom Control 1"
|
|
8120
|
-
* },
|
|
8121
|
-
* "key": "my-custom-control-1"
|
|
8122
|
-
* }
|
|
8123
|
-
* ]
|
|
8124
|
-
* }
|
|
8125
|
-
* ]
|
|
8126
|
-
*
|
|
8127
|
-
*
|
|
8128
|
-
*
|
|
8129
|
-
*/
|
|
8130
|
-
export interface ControlGroup {
|
|
8131
|
-
controls: ButtonControl1[];
|
|
8132
|
-
type: 'group' | 'GROUP';
|
|
8133
|
-
[k: string]: unknown;
|
|
8134
|
-
}
|
|
8135
8135
|
/**
|
|
8136
8136
|
*
|
|
8137
8137
|
*
|
|
@@ -29251,7 +29251,7 @@ export interface I18NProperty83 {
|
|
|
29251
29251
|
*
|
|
29252
29252
|
*/
|
|
29253
29253
|
export interface MacroPropertyPanel1 {
|
|
29254
|
-
controls?: (
|
|
29254
|
+
controls?: (ButtonControl2 | TextControl1 | ControlGroup1 | ToggleGroup1)[];
|
|
29255
29255
|
cacheable?: boolean;
|
|
29256
29256
|
url: string;
|
|
29257
29257
|
[k: string]: unknown;
|
|
@@ -29259,52 +29259,7 @@ export interface MacroPropertyPanel1 {
|
|
|
29259
29259
|
/**
|
|
29260
29260
|
*
|
|
29261
29261
|
*
|
|
29262
|
-
* Defines a
|
|
29263
|
-
*
|
|
29264
|
-
* <p><b>Example</b></p>
|
|
29265
|
-
*
|
|
29266
|
-
*
|
|
29267
|
-
*
|
|
29268
|
-
*
|
|
29269
|
-
*
|
|
29270
|
-
* [
|
|
29271
|
-
* {
|
|
29272
|
-
* "type": "togglegroup",
|
|
29273
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
29274
|
-
* "controls": [
|
|
29275
|
-
* {
|
|
29276
|
-
* "type": "togglebutton",
|
|
29277
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29278
|
-
* "label": {
|
|
29279
|
-
* "value": "My Custom Control 0"
|
|
29280
|
-
* },
|
|
29281
|
-
* "key": "my-custom-toggle-button-0"
|
|
29282
|
-
* },
|
|
29283
|
-
* {
|
|
29284
|
-
* "type": "togglebutton",
|
|
29285
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
29286
|
-
* "label": {
|
|
29287
|
-
* "value": "My Custom Control 1"
|
|
29288
|
-
* },
|
|
29289
|
-
* "key": "my-custom-toggle-button-1"
|
|
29290
|
-
* }
|
|
29291
|
-
* ]
|
|
29292
|
-
* }
|
|
29293
|
-
* ]
|
|
29294
|
-
*
|
|
29295
|
-
*
|
|
29296
|
-
*
|
|
29297
|
-
*/
|
|
29298
|
-
export interface ToggleGroup1 {
|
|
29299
|
-
controls: ToggleButtonControl1[];
|
|
29300
|
-
macroParameter: string;
|
|
29301
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29302
|
-
[k: string]: unknown;
|
|
29303
|
-
}
|
|
29304
|
-
/**
|
|
29305
|
-
*
|
|
29306
|
-
*
|
|
29307
|
-
* Defines a toggle button which appears inside a ToggleGroup
|
|
29262
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
29308
29263
|
*
|
|
29309
29264
|
* <p><b>Example</b></p>
|
|
29310
29265
|
*
|
|
@@ -29313,21 +29268,19 @@ export interface ToggleGroup1 {
|
|
|
29313
29268
|
*
|
|
29314
29269
|
*
|
|
29315
29270
|
* {
|
|
29316
|
-
* "type": "
|
|
29317
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
29271
|
+
* "type": "button",
|
|
29318
29272
|
* "label": {
|
|
29319
29273
|
* "value": "My Custom Control 0"
|
|
29320
29274
|
* },
|
|
29321
|
-
* "key": "my-custom-
|
|
29275
|
+
* "key": "my-custom-control-0"
|
|
29322
29276
|
* }
|
|
29323
29277
|
*
|
|
29324
29278
|
*
|
|
29325
29279
|
*
|
|
29326
29280
|
*/
|
|
29327
|
-
export interface
|
|
29328
|
-
macroParameterValue: string;
|
|
29281
|
+
export interface ButtonControl2 {
|
|
29329
29282
|
label: I18NProperty84;
|
|
29330
|
-
type: '
|
|
29283
|
+
type: 'button' | 'BUTTON';
|
|
29331
29284
|
key: string;
|
|
29332
29285
|
[k: string]: unknown;
|
|
29333
29286
|
}
|
|
@@ -29420,7 +29373,7 @@ export interface TextControl1 {
|
|
|
29420
29373
|
*
|
|
29421
29374
|
*/
|
|
29422
29375
|
export interface ControlGroup1 {
|
|
29423
|
-
controls:
|
|
29376
|
+
controls: ButtonControl3[];
|
|
29424
29377
|
type: 'group' | 'GROUP';
|
|
29425
29378
|
[k: string]: unknown;
|
|
29426
29379
|
}
|
|
@@ -29446,7 +29399,7 @@ export interface ControlGroup1 {
|
|
|
29446
29399
|
*
|
|
29447
29400
|
*
|
|
29448
29401
|
*/
|
|
29449
|
-
export interface
|
|
29402
|
+
export interface ButtonControl3 {
|
|
29450
29403
|
label: I18NProperty85;
|
|
29451
29404
|
type: 'button' | 'BUTTON';
|
|
29452
29405
|
key: string;
|
|
@@ -29479,7 +29432,52 @@ export interface I18NProperty85 {
|
|
|
29479
29432
|
/**
|
|
29480
29433
|
*
|
|
29481
29434
|
*
|
|
29482
|
-
* Defines a
|
|
29435
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
29436
|
+
*
|
|
29437
|
+
* <p><b>Example</b></p>
|
|
29438
|
+
*
|
|
29439
|
+
*
|
|
29440
|
+
*
|
|
29441
|
+
*
|
|
29442
|
+
*
|
|
29443
|
+
* [
|
|
29444
|
+
* {
|
|
29445
|
+
* "type": "togglegroup",
|
|
29446
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
29447
|
+
* "controls": [
|
|
29448
|
+
* {
|
|
29449
|
+
* "type": "togglebutton",
|
|
29450
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29451
|
+
* "label": {
|
|
29452
|
+
* "value": "My Custom Control 0"
|
|
29453
|
+
* },
|
|
29454
|
+
* "key": "my-custom-toggle-button-0"
|
|
29455
|
+
* },
|
|
29456
|
+
* {
|
|
29457
|
+
* "type": "togglebutton",
|
|
29458
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
29459
|
+
* "label": {
|
|
29460
|
+
* "value": "My Custom Control 1"
|
|
29461
|
+
* },
|
|
29462
|
+
* "key": "my-custom-toggle-button-1"
|
|
29463
|
+
* }
|
|
29464
|
+
* ]
|
|
29465
|
+
* }
|
|
29466
|
+
* ]
|
|
29467
|
+
*
|
|
29468
|
+
*
|
|
29469
|
+
*
|
|
29470
|
+
*/
|
|
29471
|
+
export interface ToggleGroup1 {
|
|
29472
|
+
controls: ToggleButtonControl1[];
|
|
29473
|
+
macroParameter: string;
|
|
29474
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
29475
|
+
[k: string]: unknown;
|
|
29476
|
+
}
|
|
29477
|
+
/**
|
|
29478
|
+
*
|
|
29479
|
+
*
|
|
29480
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
29483
29481
|
*
|
|
29484
29482
|
* <p><b>Example</b></p>
|
|
29485
29483
|
*
|
|
@@ -29488,19 +29486,21 @@ export interface I18NProperty85 {
|
|
|
29488
29486
|
*
|
|
29489
29487
|
*
|
|
29490
29488
|
* {
|
|
29491
|
-
* "type": "
|
|
29489
|
+
* "type": "togglebutton",
|
|
29490
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
29492
29491
|
* "label": {
|
|
29493
29492
|
* "value": "My Custom Control 0"
|
|
29494
29493
|
* },
|
|
29495
|
-
* "key": "my-custom-
|
|
29494
|
+
* "key": "my-custom-toggle-button-0"
|
|
29496
29495
|
* }
|
|
29497
29496
|
*
|
|
29498
29497
|
*
|
|
29499
29498
|
*
|
|
29500
29499
|
*/
|
|
29501
|
-
export interface
|
|
29500
|
+
export interface ToggleButtonControl1 {
|
|
29501
|
+
macroParameterValue: string;
|
|
29502
29502
|
label: I18NProperty86;
|
|
29503
|
-
type: '
|
|
29503
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
29504
29504
|
key: string;
|
|
29505
29505
|
[k: string]: unknown;
|
|
29506
29506
|
}
|
|
@@ -50377,74 +50377,10 @@ export interface I18NProperty91 {
|
|
|
50377
50377
|
*
|
|
50378
50378
|
*/
|
|
50379
50379
|
export interface WebItemTarget2 {
|
|
50380
|
-
options?:
|
|
50380
|
+
options?: DialogOptions4 | DialogModuleOptions2 | InlineDialogOptions2;
|
|
50381
50381
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
50382
50382
|
[k: string]: unknown;
|
|
50383
50383
|
}
|
|
50384
|
-
/**
|
|
50385
|
-
*
|
|
50386
|
-
*
|
|
50387
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50388
|
-
*
|
|
50389
|
-
* <h3>Example</h3>
|
|
50390
|
-
*
|
|
50391
|
-
*
|
|
50392
|
-
*
|
|
50393
|
-
*
|
|
50394
|
-
*
|
|
50395
|
-
* {
|
|
50396
|
-
* "target": {
|
|
50397
|
-
* "type": "dialogmodule",
|
|
50398
|
-
* "options": {
|
|
50399
|
-
* "key": "dialog-module-key"
|
|
50400
|
-
* }
|
|
50401
|
-
* }
|
|
50402
|
-
* }
|
|
50403
|
-
*
|
|
50404
|
-
*
|
|
50405
|
-
*
|
|
50406
|
-
*/
|
|
50407
|
-
export interface DialogModuleOptions2 {
|
|
50408
|
-
key: string;
|
|
50409
|
-
[k: string]: unknown;
|
|
50410
|
-
}
|
|
50411
|
-
/**
|
|
50412
|
-
*
|
|
50413
|
-
*
|
|
50414
|
-
* Options for an inline dialog target
|
|
50415
|
-
*
|
|
50416
|
-
* <h3>Example</h3>
|
|
50417
|
-
*
|
|
50418
|
-
*
|
|
50419
|
-
*
|
|
50420
|
-
*
|
|
50421
|
-
*
|
|
50422
|
-
* {
|
|
50423
|
-
* "target": {
|
|
50424
|
-
* "type": "inlinedialog",
|
|
50425
|
-
* "options": {
|
|
50426
|
-
* "onHover": true,
|
|
50427
|
-
* "offsetX": "30px",
|
|
50428
|
-
* "offsetY": "20px"
|
|
50429
|
-
* }
|
|
50430
|
-
* }
|
|
50431
|
-
* }
|
|
50432
|
-
*
|
|
50433
|
-
*
|
|
50434
|
-
*
|
|
50435
|
-
*/
|
|
50436
|
-
export interface InlineDialogOptions2 {
|
|
50437
|
-
offsetX?: string;
|
|
50438
|
-
offsetY?: string;
|
|
50439
|
-
width?: string;
|
|
50440
|
-
onTop?: boolean;
|
|
50441
|
-
showDelay?: number;
|
|
50442
|
-
closeOthers?: boolean;
|
|
50443
|
-
persistent?: boolean;
|
|
50444
|
-
onHover?: boolean;
|
|
50445
|
-
isRelativeToMouse?: boolean;
|
|
50446
|
-
[k: string]: unknown;
|
|
50447
|
-
}
|
|
50448
50384
|
/**
|
|
50449
50385
|
*
|
|
50450
50386
|
*
|
|
@@ -50543,6 +50479,70 @@ export interface I18NProperty92 {
|
|
|
50543
50479
|
i18n?: string;
|
|
50544
50480
|
[k: string]: unknown;
|
|
50545
50481
|
}
|
|
50482
|
+
/**
|
|
50483
|
+
*
|
|
50484
|
+
*
|
|
50485
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
50486
|
+
*
|
|
50487
|
+
* <h3>Example</h3>
|
|
50488
|
+
*
|
|
50489
|
+
*
|
|
50490
|
+
*
|
|
50491
|
+
*
|
|
50492
|
+
*
|
|
50493
|
+
* {
|
|
50494
|
+
* "target": {
|
|
50495
|
+
* "type": "dialogmodule",
|
|
50496
|
+
* "options": {
|
|
50497
|
+
* "key": "dialog-module-key"
|
|
50498
|
+
* }
|
|
50499
|
+
* }
|
|
50500
|
+
* }
|
|
50501
|
+
*
|
|
50502
|
+
*
|
|
50503
|
+
*
|
|
50504
|
+
*/
|
|
50505
|
+
export interface DialogModuleOptions2 {
|
|
50506
|
+
key: string;
|
|
50507
|
+
[k: string]: unknown;
|
|
50508
|
+
}
|
|
50509
|
+
/**
|
|
50510
|
+
*
|
|
50511
|
+
*
|
|
50512
|
+
* Options for an inline dialog target
|
|
50513
|
+
*
|
|
50514
|
+
* <h3>Example</h3>
|
|
50515
|
+
*
|
|
50516
|
+
*
|
|
50517
|
+
*
|
|
50518
|
+
*
|
|
50519
|
+
*
|
|
50520
|
+
* {
|
|
50521
|
+
* "target": {
|
|
50522
|
+
* "type": "inlinedialog",
|
|
50523
|
+
* "options": {
|
|
50524
|
+
* "onHover": true,
|
|
50525
|
+
* "offsetX": "30px",
|
|
50526
|
+
* "offsetY": "20px"
|
|
50527
|
+
* }
|
|
50528
|
+
* }
|
|
50529
|
+
* }
|
|
50530
|
+
*
|
|
50531
|
+
*
|
|
50532
|
+
*
|
|
50533
|
+
*/
|
|
50534
|
+
export interface InlineDialogOptions2 {
|
|
50535
|
+
offsetX?: string;
|
|
50536
|
+
offsetY?: string;
|
|
50537
|
+
width?: string;
|
|
50538
|
+
onTop?: boolean;
|
|
50539
|
+
showDelay?: number;
|
|
50540
|
+
closeOthers?: boolean;
|
|
50541
|
+
persistent?: boolean;
|
|
50542
|
+
onHover?: boolean;
|
|
50543
|
+
isRelativeToMouse?: boolean;
|
|
50544
|
+
[k: string]: unknown;
|
|
50545
|
+
}
|
|
50546
50546
|
/**
|
|
50547
50547
|
*
|
|
50548
50548
|
*
|