@forge/manifest 3.3.1-next.2 → 3.3.1-next.3
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 +136 -136
- package/out/schema/manifest.d.ts +160 -160
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7501,10 +7501,10 @@
|
|
|
7501
7501
|
"type": "object",
|
|
7502
7502
|
"anyOf": [
|
|
7503
7503
|
{
|
|
7504
|
-
"$ref": "#/definitions/
|
|
7504
|
+
"$ref": "#/definitions/compositeCondition"
|
|
7505
7505
|
},
|
|
7506
7506
|
{
|
|
7507
|
-
"$ref": "#/definitions/
|
|
7507
|
+
"$ref": "#/definitions/singleCondition"
|
|
7508
7508
|
}
|
|
7509
7509
|
]
|
|
7510
7510
|
},
|
|
@@ -7749,10 +7749,10 @@
|
|
|
7749
7749
|
"type": "object",
|
|
7750
7750
|
"anyOf": [
|
|
7751
7751
|
{
|
|
7752
|
-
"$ref": "#/definitions/
|
|
7752
|
+
"$ref": "#/definitions/singleCondition"
|
|
7753
7753
|
},
|
|
7754
7754
|
{
|
|
7755
|
-
"$ref": "#/definitions/
|
|
7755
|
+
"$ref": "#/definitions/compositeCondition"
|
|
7756
7756
|
}
|
|
7757
7757
|
]
|
|
7758
7758
|
},
|
|
@@ -7880,6 +7880,22 @@
|
|
|
7880
7880
|
"type": "object",
|
|
7881
7881
|
"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",
|
|
7882
7882
|
"anyOf": [
|
|
7883
|
+
{
|
|
7884
|
+
"properties": {
|
|
7885
|
+
"key": {
|
|
7886
|
+
"maxLength": 100,
|
|
7887
|
+
"type": "string",
|
|
7888
|
+
"fieldDescription": "\n\n<p>The key of a <a href=\"../dialog/\">Dialog</a> module declared in this Connect add-on.</p>\n\n <p>\n The dialog module will include the <a href=\"../dialog-options/\">Dialog Options</a>\n that would otherwise need to be specified directly in this options object.\n </p>\n\n"
|
|
7889
|
+
}
|
|
7890
|
+
},
|
|
7891
|
+
"required": [
|
|
7892
|
+
"key"
|
|
7893
|
+
],
|
|
7894
|
+
"shortClassName": "dialogModuleOptions",
|
|
7895
|
+
"type": "object",
|
|
7896
|
+
"title": "Dialog Module Options",
|
|
7897
|
+
"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"
|
|
7898
|
+
},
|
|
7883
7899
|
{
|
|
7884
7900
|
"properties": {
|
|
7885
7901
|
"size": {
|
|
@@ -7925,22 +7941,6 @@
|
|
|
7925
7941
|
"title": "Dialog Options",
|
|
7926
7942
|
"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"
|
|
7927
7943
|
},
|
|
7928
|
-
{
|
|
7929
|
-
"properties": {
|
|
7930
|
-
"key": {
|
|
7931
|
-
"maxLength": 100,
|
|
7932
|
-
"type": "string",
|
|
7933
|
-
"fieldDescription": "\n\n<p>The key of a <a href=\"../dialog/\">Dialog</a> module declared in this Connect add-on.</p>\n\n <p>\n The dialog module will include the <a href=\"../dialog-options/\">Dialog Options</a>\n that would otherwise need to be specified directly in this options object.\n </p>\n\n"
|
|
7934
|
-
}
|
|
7935
|
-
},
|
|
7936
|
-
"required": [
|
|
7937
|
-
"key"
|
|
7938
|
-
],
|
|
7939
|
-
"shortClassName": "dialogModuleOptions",
|
|
7940
|
-
"type": "object",
|
|
7941
|
-
"title": "Dialog Module Options",
|
|
7942
|
-
"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"
|
|
7943
|
-
},
|
|
7944
7944
|
{
|
|
7945
7945
|
"properties": {
|
|
7946
7946
|
"offsetX": {
|
|
@@ -8155,10 +8155,10 @@
|
|
|
8155
8155
|
"type": "object",
|
|
8156
8156
|
"anyOf": [
|
|
8157
8157
|
{
|
|
8158
|
-
"$ref": "#/definitions/
|
|
8158
|
+
"$ref": "#/definitions/compositeCondition"
|
|
8159
8159
|
},
|
|
8160
8160
|
{
|
|
8161
|
-
"$ref": "#/definitions/
|
|
8161
|
+
"$ref": "#/definitions/singleCondition"
|
|
8162
8162
|
}
|
|
8163
8163
|
]
|
|
8164
8164
|
},
|
|
@@ -8306,33 +8306,6 @@
|
|
|
8306
8306
|
"items": {
|
|
8307
8307
|
"type": "object",
|
|
8308
8308
|
"anyOf": [
|
|
8309
|
-
{
|
|
8310
|
-
"properties": {
|
|
8311
|
-
"condition": {
|
|
8312
|
-
"maxLength": 100,
|
|
8313
|
-
"type": "string",
|
|
8314
|
-
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
8315
|
-
},
|
|
8316
|
-
"invert": {
|
|
8317
|
-
"type": "boolean",
|
|
8318
|
-
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
8319
|
-
"defaultValue": "false"
|
|
8320
|
-
},
|
|
8321
|
-
"params": {
|
|
8322
|
-
"additionalProperties": true,
|
|
8323
|
-
"type": "object",
|
|
8324
|
-
"fieldTitle": "Object",
|
|
8325
|
-
"fieldDescription": "\n\nThis object represents a map of key/value pairs, where each property name and value corresponds to the parameter name and value respectively.\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"params\": {\n \"someOtherProperty\": \"someValue\",\n \"myCustomProperty\": \"myValue\"\n }\n }\n\n\n"
|
|
8326
|
-
}
|
|
8327
|
-
},
|
|
8328
|
-
"required": [
|
|
8329
|
-
"condition"
|
|
8330
|
-
],
|
|
8331
|
-
"shortClassName": "singleConditionBean",
|
|
8332
|
-
"type": "object",
|
|
8333
|
-
"title": "Single Condition",
|
|
8334
|
-
"description": "\n\nSingle Conditions are either provided by the host application. See the complete documentation of\n [Conditions](../../conditions/) for more information.\n\n To invert a condition, add the attribute ``invert=\"true\"`` to the condition element.\n This is useful where you want to show the section if a certain condition is not satisfied.\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"condition\": \"user_is_logged_in\",\n \"invert\": false\n }\n\n\n"
|
|
8335
|
-
},
|
|
8336
8309
|
{
|
|
8337
8310
|
"properties": {
|
|
8338
8311
|
"conditions": {
|
|
@@ -8365,6 +8338,33 @@
|
|
|
8365
8338
|
"type": "object",
|
|
8366
8339
|
"title": "Composite Condition",
|
|
8367
8340
|
"description": "\n\nComposite Conditions are composed of a collection of [Single Condition](../single-condition/) / Composite Conditions\n and a type attribute.\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"conditions\": [\n {\n \"or\": [\n {\n \"condition\": \"can_attach_file_to_issue\",\n \"invert\": false\n },\n {\n \"condition\": \"is_issue_assigned_to_current_user\",\n \"invert\": false\n }\n ]\n },\n {\n \"condition\": \"user_is_logged_in\",\n \"invert\": false\n }\n ]\n }\n\n\n"
|
|
8341
|
+
},
|
|
8342
|
+
{
|
|
8343
|
+
"properties": {
|
|
8344
|
+
"condition": {
|
|
8345
|
+
"maxLength": 100,
|
|
8346
|
+
"type": "string",
|
|
8347
|
+
"fieldDescription": "\n\nA string indicating the name of the condition\n\n"
|
|
8348
|
+
},
|
|
8349
|
+
"invert": {
|
|
8350
|
+
"type": "boolean",
|
|
8351
|
+
"fieldDescription": "\n\nA flag indicating whether to invert the boolean result of the condition.\n\n",
|
|
8352
|
+
"defaultValue": "false"
|
|
8353
|
+
},
|
|
8354
|
+
"params": {
|
|
8355
|
+
"additionalProperties": true,
|
|
8356
|
+
"type": "object",
|
|
8357
|
+
"fieldTitle": "Object",
|
|
8358
|
+
"fieldDescription": "\n\nThis object represents a map of key/value pairs, where each property name and value corresponds to the parameter name and value respectively.\n\n <p><b>Example</b></p>\n\n\n\n\n\n {\n \"params\": {\n \"someOtherProperty\": \"someValue\",\n \"myCustomProperty\": \"myValue\"\n }\n }\n\n\n"
|
|
8359
|
+
}
|
|
8360
|
+
},
|
|
8361
|
+
"required": [
|
|
8362
|
+
"condition"
|
|
8363
|
+
],
|
|
8364
|
+
"shortClassName": "singleConditionBean",
|
|
8365
|
+
"type": "object",
|
|
8366
|
+
"title": "Single Condition",
|
|
8367
|
+
"description": "\n\nSingle Conditions are either provided by the host application. See the complete documentation of\n [Conditions](../../conditions/) for more information.\n\n To invert a condition, add the attribute ``invert=\"true\"`` to the condition element.\n This is useful where you want to show the section if a certain condition is not satisfied.\n\n <h3>Example</h3>\n\n\n\n\n\n {\n \"condition\": \"user_is_logged_in\",\n \"invert\": false\n }\n\n\n"
|
|
8368
8368
|
}
|
|
8369
8369
|
]
|
|
8370
8370
|
},
|
|
@@ -8694,6 +8694,38 @@
|
|
|
8694
8694
|
"title": "ControlGroup",
|
|
8695
8695
|
"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"
|
|
8696
8696
|
},
|
|
8697
|
+
{
|
|
8698
|
+
"properties": {
|
|
8699
|
+
"macroParameter": {
|
|
8700
|
+
"maxLength": 100,
|
|
8701
|
+
"type": "string",
|
|
8702
|
+
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
8703
|
+
},
|
|
8704
|
+
"type": {
|
|
8705
|
+
"enum": [
|
|
8706
|
+
"text",
|
|
8707
|
+
"TEXT"
|
|
8708
|
+
],
|
|
8709
|
+
"type": "string",
|
|
8710
|
+
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
8711
|
+
},
|
|
8712
|
+
"key": {
|
|
8713
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
8714
|
+
"maxLength": 100,
|
|
8715
|
+
"type": "string",
|
|
8716
|
+
"fieldDescription": "\n\nA key to identify this module.\n\n This key must be unique relative to the add on, with the exception of Confluence macros: Their keys need to be\n globally unique.\n\n Keys must only contain alphanumeric characters and dashes.\n\n The key is used to generate the url to your add-on's module. The url is generated as a combination of your add-on\n key and module key. For example, an add-on which looks like:\n\n {\n \"key\": \"my-addon\",\n \"modules\": {\n \"configurePage\": {\n \"key\": \"configure-me\",\n }\n }\n }\n\n Will have a configuration page module with a URL of `/plugins/servlet/ac/my-addon/configure-me`.\n\n"
|
|
8717
|
+
}
|
|
8718
|
+
},
|
|
8719
|
+
"required": [
|
|
8720
|
+
"macroParameter",
|
|
8721
|
+
"type",
|
|
8722
|
+
"key"
|
|
8723
|
+
],
|
|
8724
|
+
"shortClassName": "textControlBean",
|
|
8725
|
+
"type": "object",
|
|
8726
|
+
"title": "TextControl",
|
|
8727
|
+
"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"
|
|
8728
|
+
},
|
|
8697
8729
|
{
|
|
8698
8730
|
"properties": {
|
|
8699
8731
|
"label": {
|
|
@@ -8794,38 +8826,6 @@
|
|
|
8794
8826
|
"type": "object",
|
|
8795
8827
|
"title": "ToggleGroup",
|
|
8796
8828
|
"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"
|
|
8797
|
-
},
|
|
8798
|
-
{
|
|
8799
|
-
"properties": {
|
|
8800
|
-
"macroParameter": {
|
|
8801
|
-
"maxLength": 100,
|
|
8802
|
-
"type": "string",
|
|
8803
|
-
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
8804
|
-
},
|
|
8805
|
-
"type": {
|
|
8806
|
-
"enum": [
|
|
8807
|
-
"text",
|
|
8808
|
-
"TEXT"
|
|
8809
|
-
],
|
|
8810
|
-
"type": "string",
|
|
8811
|
-
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
8812
|
-
},
|
|
8813
|
-
"key": {
|
|
8814
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
8815
|
-
"maxLength": 100,
|
|
8816
|
-
"type": "string",
|
|
8817
|
-
"fieldDescription": "\n\nA key to identify this module.\n\n This key must be unique relative to the add on, with the exception of Confluence macros: Their keys need to be\n globally unique.\n\n Keys must only contain alphanumeric characters and dashes.\n\n The key is used to generate the url to your add-on's module. The url is generated as a combination of your add-on\n key and module key. For example, an add-on which looks like:\n\n {\n \"key\": \"my-addon\",\n \"modules\": {\n \"configurePage\": {\n \"key\": \"configure-me\",\n }\n }\n }\n\n Will have a configuration page module with a URL of `/plugins/servlet/ac/my-addon/configure-me`.\n\n"
|
|
8818
|
-
}
|
|
8819
|
-
},
|
|
8820
|
-
"required": [
|
|
8821
|
-
"macroParameter",
|
|
8822
|
-
"type",
|
|
8823
|
-
"key"
|
|
8824
|
-
],
|
|
8825
|
-
"shortClassName": "textControlBean",
|
|
8826
|
-
"type": "object",
|
|
8827
|
-
"title": "TextControl",
|
|
8828
|
-
"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"
|
|
8829
8829
|
}
|
|
8830
8830
|
]
|
|
8831
8831
|
},
|
|
@@ -9157,22 +9157,17 @@
|
|
|
9157
9157
|
"controls": {
|
|
9158
9158
|
"items": {
|
|
9159
9159
|
"properties": {
|
|
9160
|
-
"macroParameterValue": {
|
|
9161
|
-
"maxLength": 10000,
|
|
9162
|
-
"type": "string",
|
|
9163
|
-
"fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
|
|
9164
|
-
},
|
|
9165
9160
|
"label": {
|
|
9166
9161
|
"$ref": "#/definitions/i18nProperty",
|
|
9167
9162
|
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
9168
9163
|
},
|
|
9169
9164
|
"type": {
|
|
9170
9165
|
"enum": [
|
|
9171
|
-
"
|
|
9172
|
-
"
|
|
9166
|
+
"button",
|
|
9167
|
+
"BUTTON"
|
|
9173
9168
|
],
|
|
9174
9169
|
"type": "string",
|
|
9175
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
9170
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
9176
9171
|
},
|
|
9177
9172
|
"key": {
|
|
9178
9173
|
"pattern": "^[a-zA-Z0-9-]+$",
|
|
@@ -9182,44 +9177,36 @@
|
|
|
9182
9177
|
}
|
|
9183
9178
|
},
|
|
9184
9179
|
"required": [
|
|
9185
|
-
"macroParameterValue",
|
|
9186
9180
|
"label",
|
|
9187
9181
|
"type",
|
|
9188
9182
|
"key"
|
|
9189
9183
|
],
|
|
9190
9184
|
"additionalProperties": true,
|
|
9191
|
-
"shortClassName": "
|
|
9185
|
+
"shortClassName": "buttonControlBean",
|
|
9192
9186
|
"type": "object",
|
|
9193
|
-
"title": "
|
|
9194
|
-
"description": "\n\nDefines a
|
|
9187
|
+
"title": "ButtonControl",
|
|
9188
|
+
"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"
|
|
9195
9189
|
},
|
|
9196
9190
|
"type": "array",
|
|
9197
|
-
"fieldDescription": "\n\
|
|
9198
|
-
},
|
|
9199
|
-
"macroParameter": {
|
|
9200
|
-
"pattern": "[-_a-z0-9\\.]+",
|
|
9201
|
-
"maxLength": 100,
|
|
9202
|
-
"type": "string",
|
|
9203
|
-
"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"
|
|
9191
|
+
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
9204
9192
|
},
|
|
9205
9193
|
"type": {
|
|
9206
9194
|
"enum": [
|
|
9207
|
-
"
|
|
9208
|
-
"
|
|
9195
|
+
"group",
|
|
9196
|
+
"GROUP"
|
|
9209
9197
|
],
|
|
9210
9198
|
"type": "string",
|
|
9211
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
9199
|
+
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
9212
9200
|
}
|
|
9213
9201
|
},
|
|
9214
9202
|
"required": [
|
|
9215
9203
|
"controls",
|
|
9216
|
-
"macroParameter",
|
|
9217
9204
|
"type"
|
|
9218
9205
|
],
|
|
9219
|
-
"shortClassName": "
|
|
9206
|
+
"shortClassName": "controlGroupBean",
|
|
9220
9207
|
"type": "object",
|
|
9221
|
-
"title": "
|
|
9222
|
-
"description": "\n\nDefines a
|
|
9208
|
+
"title": "ControlGroup",
|
|
9209
|
+
"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"
|
|
9223
9210
|
},
|
|
9224
9211
|
{
|
|
9225
9212
|
"properties": {
|
|
@@ -9258,17 +9245,22 @@
|
|
|
9258
9245
|
"controls": {
|
|
9259
9246
|
"items": {
|
|
9260
9247
|
"properties": {
|
|
9248
|
+
"macroParameterValue": {
|
|
9249
|
+
"maxLength": 10000,
|
|
9250
|
+
"type": "string",
|
|
9251
|
+
"fieldDescription": "\n\nThe value that will be assigned to a macro parameter when this toggle is clicked\n\n"
|
|
9252
|
+
},
|
|
9261
9253
|
"label": {
|
|
9262
9254
|
"$ref": "#/definitions/i18nProperty",
|
|
9263
9255
|
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
9264
9256
|
},
|
|
9265
9257
|
"type": {
|
|
9266
9258
|
"enum": [
|
|
9267
|
-
"
|
|
9268
|
-
"
|
|
9259
|
+
"togglebutton",
|
|
9260
|
+
"TOGGLEBUTTON"
|
|
9269
9261
|
],
|
|
9270
9262
|
"type": "string",
|
|
9271
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
9263
|
+
"fieldDescription": "\n\nThe type field must be set to 'togglebutton'\n\n"
|
|
9272
9264
|
},
|
|
9273
9265
|
"key": {
|
|
9274
9266
|
"pattern": "^[a-zA-Z0-9-]+$",
|
|
@@ -9278,36 +9270,44 @@
|
|
|
9278
9270
|
}
|
|
9279
9271
|
},
|
|
9280
9272
|
"required": [
|
|
9273
|
+
"macroParameterValue",
|
|
9281
9274
|
"label",
|
|
9282
9275
|
"type",
|
|
9283
9276
|
"key"
|
|
9284
9277
|
],
|
|
9285
9278
|
"additionalProperties": true,
|
|
9286
|
-
"shortClassName": "
|
|
9279
|
+
"shortClassName": "macroToggleButtonControlBean",
|
|
9287
9280
|
"type": "object",
|
|
9288
|
-
"title": "
|
|
9289
|
-
"description": "\n\nDefines a button which
|
|
9281
|
+
"title": "ToggleButtonControl",
|
|
9282
|
+
"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"
|
|
9290
9283
|
},
|
|
9291
9284
|
"type": "array",
|
|
9292
|
-
"fieldDescription": "\n\
|
|
9285
|
+
"fieldDescription": "\n\nToggle buttons which will appear in the toggle group\n\n"
|
|
9286
|
+
},
|
|
9287
|
+
"macroParameter": {
|
|
9288
|
+
"pattern": "[-_a-z0-9\\.]+",
|
|
9289
|
+
"maxLength": 100,
|
|
9290
|
+
"type": "string",
|
|
9291
|
+
"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"
|
|
9293
9292
|
},
|
|
9294
9293
|
"type": {
|
|
9295
9294
|
"enum": [
|
|
9296
|
-
"
|
|
9297
|
-
"
|
|
9295
|
+
"togglegroup",
|
|
9296
|
+
"TOGGLEGROUP"
|
|
9298
9297
|
],
|
|
9299
9298
|
"type": "string",
|
|
9300
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
9299
|
+
"fieldDescription": "\n\nThe type field must be set to 'togglegroup'\n\n"
|
|
9301
9300
|
}
|
|
9302
9301
|
},
|
|
9303
9302
|
"required": [
|
|
9304
9303
|
"controls",
|
|
9304
|
+
"macroParameter",
|
|
9305
9305
|
"type"
|
|
9306
9306
|
],
|
|
9307
|
-
"shortClassName": "
|
|
9307
|
+
"shortClassName": "macroToggleGroupBean",
|
|
9308
9308
|
"type": "object",
|
|
9309
|
-
"title": "
|
|
9310
|
-
"description": "\n\nDefines a
|
|
9309
|
+
"title": "ToggleGroup",
|
|
9310
|
+
"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"
|
|
9311
9311
|
}
|
|
9312
9312
|
]
|
|
9313
9313
|
},
|
|
@@ -9543,6 +9543,22 @@
|
|
|
9543
9543
|
"type": "object",
|
|
9544
9544
|
"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",
|
|
9545
9545
|
"anyOf": [
|
|
9546
|
+
{
|
|
9547
|
+
"properties": {
|
|
9548
|
+
"key": {
|
|
9549
|
+
"maxLength": 100,
|
|
9550
|
+
"type": "string",
|
|
9551
|
+
"fieldDescription": "\n\n<p>The key of a <a href=\"../dialog/\">Dialog</a> module declared in this Connect add-on.</p>\n\n <p>\n The dialog module will include the <a href=\"../dialog-options/\">Dialog Options</a>\n that would otherwise need to be specified directly in this options object.\n </p>\n\n"
|
|
9552
|
+
}
|
|
9553
|
+
},
|
|
9554
|
+
"required": [
|
|
9555
|
+
"key"
|
|
9556
|
+
],
|
|
9557
|
+
"shortClassName": "dialogModuleOptions",
|
|
9558
|
+
"type": "object",
|
|
9559
|
+
"title": "Dialog Module Options",
|
|
9560
|
+
"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"
|
|
9561
|
+
},
|
|
9546
9562
|
{
|
|
9547
9563
|
"properties": {
|
|
9548
9564
|
"size": {
|
|
@@ -9588,22 +9604,6 @@
|
|
|
9588
9604
|
"title": "Dialog Options",
|
|
9589
9605
|
"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"
|
|
9590
9606
|
},
|
|
9591
|
-
{
|
|
9592
|
-
"properties": {
|
|
9593
|
-
"key": {
|
|
9594
|
-
"maxLength": 100,
|
|
9595
|
-
"type": "string",
|
|
9596
|
-
"fieldDescription": "\n\n<p>The key of a <a href=\"../dialog/\">Dialog</a> module declared in this Connect add-on.</p>\n\n <p>\n The dialog module will include the <a href=\"../dialog-options/\">Dialog Options</a>\n that would otherwise need to be specified directly in this options object.\n </p>\n\n"
|
|
9597
|
-
}
|
|
9598
|
-
},
|
|
9599
|
-
"required": [
|
|
9600
|
-
"key"
|
|
9601
|
-
],
|
|
9602
|
-
"shortClassName": "dialogModuleOptions",
|
|
9603
|
-
"type": "object",
|
|
9604
|
-
"title": "Dialog Module Options",
|
|
9605
|
-
"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"
|
|
9606
|
-
},
|
|
9607
9607
|
{
|
|
9608
9608
|
"properties": {
|
|
9609
9609
|
"offsetX": {
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -3701,7 +3701,7 @@ export interface Modules {
|
|
|
3701
3701
|
fullPage?: boolean;
|
|
3702
3702
|
cacheable?: boolean;
|
|
3703
3703
|
location?: string;
|
|
3704
|
-
conditions?: (
|
|
3704
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3705
3705
|
params?: {
|
|
3706
3706
|
[k: string]: unknown;
|
|
3707
3707
|
};
|
|
@@ -3716,7 +3716,7 @@ export interface Modules {
|
|
|
3716
3716
|
fullPage?: boolean;
|
|
3717
3717
|
cacheable?: boolean;
|
|
3718
3718
|
location?: string;
|
|
3719
|
-
conditions?: (
|
|
3719
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3720
3720
|
params?: {
|
|
3721
3721
|
[k: string]: unknown;
|
|
3722
3722
|
};
|
|
@@ -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
|
};
|
|
@@ -3913,7 +3913,7 @@ export interface Modules {
|
|
|
3913
3913
|
fullPage?: boolean;
|
|
3914
3914
|
cacheable?: boolean;
|
|
3915
3915
|
location?: string;
|
|
3916
|
-
conditions?: (
|
|
3916
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3917
3917
|
params?: {
|
|
3918
3918
|
[k: string]: unknown;
|
|
3919
3919
|
};
|
|
@@ -3928,7 +3928,7 @@ export interface Modules {
|
|
|
3928
3928
|
fullPage?: boolean;
|
|
3929
3929
|
cacheable?: boolean;
|
|
3930
3930
|
location?: string;
|
|
3931
|
-
conditions?: (
|
|
3931
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3932
3932
|
params?: {
|
|
3933
3933
|
[k: string]: unknown;
|
|
3934
3934
|
};
|
|
@@ -3978,7 +3978,7 @@ export interface Modules {
|
|
|
3978
3978
|
name?: I18NProperty63;
|
|
3979
3979
|
weight?: number;
|
|
3980
3980
|
location?: string;
|
|
3981
|
-
conditions?: (
|
|
3981
|
+
conditions?: (CompositeCondition7 | SingleCondition5)[];
|
|
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?: (CompositeCondition7 | SingleCondition5)[];
|
|
3994
3994
|
params?: {
|
|
3995
3995
|
[k: string]: unknown;
|
|
3996
3996
|
};
|
|
@@ -7129,10 +7129,37 @@ export interface Icon10 {
|
|
|
7129
7129
|
*
|
|
7130
7130
|
*/
|
|
7131
7131
|
export interface WebItemTarget1 {
|
|
7132
|
-
options?:
|
|
7132
|
+
options?: DialogModuleOptions1 | DialogOptions2 | InlineDialogOptions1;
|
|
7133
7133
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
7134
7134
|
[k: string]: unknown;
|
|
7135
7135
|
}
|
|
7136
|
+
/**
|
|
7137
|
+
*
|
|
7138
|
+
*
|
|
7139
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
7140
|
+
*
|
|
7141
|
+
* <h3>Example</h3>
|
|
7142
|
+
*
|
|
7143
|
+
*
|
|
7144
|
+
*
|
|
7145
|
+
*
|
|
7146
|
+
*
|
|
7147
|
+
* {
|
|
7148
|
+
* "target": {
|
|
7149
|
+
* "type": "dialogmodule",
|
|
7150
|
+
* "options": {
|
|
7151
|
+
* "key": "dialog-module-key"
|
|
7152
|
+
* }
|
|
7153
|
+
* }
|
|
7154
|
+
* }
|
|
7155
|
+
*
|
|
7156
|
+
*
|
|
7157
|
+
*
|
|
7158
|
+
*/
|
|
7159
|
+
export interface DialogModuleOptions1 {
|
|
7160
|
+
key: string;
|
|
7161
|
+
[k: string]: unknown;
|
|
7162
|
+
}
|
|
7136
7163
|
/**
|
|
7137
7164
|
*
|
|
7138
7165
|
*
|
|
@@ -7231,33 +7258,6 @@ export interface I18NProperty58 {
|
|
|
7231
7258
|
i18n?: string;
|
|
7232
7259
|
[k: string]: unknown;
|
|
7233
7260
|
}
|
|
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
7261
|
/**
|
|
7262
7262
|
*
|
|
7263
7263
|
*
|
|
@@ -7745,37 +7745,6 @@ 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
|
-
}
|
|
7779
7748
|
/**
|
|
7780
7749
|
*
|
|
7781
7750
|
*
|
|
@@ -7817,6 +7786,37 @@ export interface CompositeCondition7 {
|
|
|
7817
7786
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7818
7787
|
[k: string]: unknown;
|
|
7819
7788
|
}
|
|
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?: (ControlGroup |
|
|
9239
|
+
controls?: (ControlGroup | TextControl | ButtonControl1 | ToggleGroup)[];
|
|
9240
9240
|
cacheable?: boolean;
|
|
9241
9241
|
url: string;
|
|
9242
9242
|
[k: string]: unknown;
|
|
@@ -9334,6 +9334,34 @@ export interface I18NProperty75 {
|
|
|
9334
9334
|
i18n?: string;
|
|
9335
9335
|
[k: string]: unknown;
|
|
9336
9336
|
}
|
|
9337
|
+
/**
|
|
9338
|
+
*
|
|
9339
|
+
*
|
|
9340
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
9341
|
+
*
|
|
9342
|
+
* <p><b>Example</b></p>
|
|
9343
|
+
*
|
|
9344
|
+
*
|
|
9345
|
+
*
|
|
9346
|
+
*
|
|
9347
|
+
*
|
|
9348
|
+
* {
|
|
9349
|
+
* "type": "button",
|
|
9350
|
+
* "label": {
|
|
9351
|
+
* "value": "My Custom Control 0"
|
|
9352
|
+
* },
|
|
9353
|
+
* "key": "my-custom-control-0"
|
|
9354
|
+
* }
|
|
9355
|
+
*
|
|
9356
|
+
*
|
|
9357
|
+
*
|
|
9358
|
+
*/
|
|
9359
|
+
export interface TextControl {
|
|
9360
|
+
macroParameter: string;
|
|
9361
|
+
type: 'text' | 'TEXT';
|
|
9362
|
+
key: string;
|
|
9363
|
+
[k: string]: unknown;
|
|
9364
|
+
}
|
|
9337
9365
|
/**
|
|
9338
9366
|
*
|
|
9339
9367
|
*
|
|
@@ -9485,34 +9513,6 @@ export interface I18NProperty77 {
|
|
|
9485
9513
|
i18n?: string;
|
|
9486
9514
|
[k: string]: unknown;
|
|
9487
9515
|
}
|
|
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?: (TextControl1 |
|
|
30484
|
+
controls?: (TextControl1 | ControlGroup1 | ButtonControl3 | ToggleGroup1)[];
|
|
30485
30485
|
cacheable?: boolean;
|
|
30486
30486
|
url: string;
|
|
30487
30487
|
[k: string]: unknown;
|
|
@@ -30517,7 +30517,7 @@ export interface TextControl1 {
|
|
|
30517
30517
|
/**
|
|
30518
30518
|
*
|
|
30519
30519
|
*
|
|
30520
|
-
* Defines a
|
|
30520
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
30521
30521
|
*
|
|
30522
30522
|
* <p><b>Example</b></p>
|
|
30523
30523
|
*
|
|
@@ -30527,24 +30527,21 @@ export interface TextControl1 {
|
|
|
30527
30527
|
*
|
|
30528
30528
|
* [
|
|
30529
30529
|
* {
|
|
30530
|
-
* "type": "
|
|
30531
|
-
* "macroParameter": "toggleGroupMacroParameter",
|
|
30530
|
+
* "type": "group",
|
|
30532
30531
|
* "controls": [
|
|
30533
30532
|
* {
|
|
30534
|
-
* "type": "
|
|
30535
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30533
|
+
* "type": "button",
|
|
30536
30534
|
* "label": {
|
|
30537
30535
|
* "value": "My Custom Control 0"
|
|
30538
30536
|
* },
|
|
30539
|
-
* "key": "my-custom-
|
|
30537
|
+
* "key": "my-custom-control-0"
|
|
30540
30538
|
* },
|
|
30541
30539
|
* {
|
|
30542
|
-
* "type": "
|
|
30543
|
-
* "macroParameterValue": "macroParameterValue 1",
|
|
30540
|
+
* "type": "button",
|
|
30544
30541
|
* "label": {
|
|
30545
30542
|
* "value": "My Custom Control 1"
|
|
30546
30543
|
* },
|
|
30547
|
-
* "key": "my-custom-
|
|
30544
|
+
* "key": "my-custom-control-1"
|
|
30548
30545
|
* }
|
|
30549
30546
|
* ]
|
|
30550
30547
|
* }
|
|
@@ -30553,16 +30550,15 @@ export interface TextControl1 {
|
|
|
30553
30550
|
*
|
|
30554
30551
|
*
|
|
30555
30552
|
*/
|
|
30556
|
-
export interface
|
|
30557
|
-
controls:
|
|
30558
|
-
|
|
30559
|
-
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
30553
|
+
export interface ControlGroup1 {
|
|
30554
|
+
controls: ButtonControl2[];
|
|
30555
|
+
type: 'group' | 'GROUP';
|
|
30560
30556
|
[k: string]: unknown;
|
|
30561
30557
|
}
|
|
30562
30558
|
/**
|
|
30563
30559
|
*
|
|
30564
30560
|
*
|
|
30565
|
-
* Defines a
|
|
30561
|
+
* Defines a button which may appear in control extension points such as the property panel
|
|
30566
30562
|
*
|
|
30567
30563
|
* <p><b>Example</b></p>
|
|
30568
30564
|
*
|
|
@@ -30571,21 +30567,19 @@ export interface ToggleGroup1 {
|
|
|
30571
30567
|
*
|
|
30572
30568
|
*
|
|
30573
30569
|
* {
|
|
30574
|
-
* "type": "
|
|
30575
|
-
* "macroParameterValue": "macroParameterValue 0",
|
|
30570
|
+
* "type": "button",
|
|
30576
30571
|
* "label": {
|
|
30577
30572
|
* "value": "My Custom Control 0"
|
|
30578
30573
|
* },
|
|
30579
|
-
* "key": "my-custom-
|
|
30574
|
+
* "key": "my-custom-control-0"
|
|
30580
30575
|
* }
|
|
30581
30576
|
*
|
|
30582
30577
|
*
|
|
30583
30578
|
*
|
|
30584
30579
|
*/
|
|
30585
|
-
export interface
|
|
30586
|
-
macroParameterValue: string;
|
|
30580
|
+
export interface ButtonControl2 {
|
|
30587
30581
|
label: I18NProperty84;
|
|
30588
|
-
type: '
|
|
30582
|
+
type: 'button' | 'BUTTON';
|
|
30589
30583
|
key: string;
|
|
30590
30584
|
[k: string]: unknown;
|
|
30591
30585
|
}
|
|
@@ -30635,7 +30629,7 @@ export interface I18NProperty84 {
|
|
|
30635
30629
|
*
|
|
30636
30630
|
*
|
|
30637
30631
|
*/
|
|
30638
|
-
export interface
|
|
30632
|
+
export interface ButtonControl3 {
|
|
30639
30633
|
label: I18NProperty85;
|
|
30640
30634
|
type: 'button' | 'BUTTON';
|
|
30641
30635
|
key: string;
|
|
@@ -30668,7 +30662,7 @@ export interface I18NProperty85 {
|
|
|
30668
30662
|
/**
|
|
30669
30663
|
*
|
|
30670
30664
|
*
|
|
30671
|
-
* Defines a
|
|
30665
|
+
* Defines a ToggleGroup which may appear in control extension points such as the property panel
|
|
30672
30666
|
*
|
|
30673
30667
|
* <p><b>Example</b></p>
|
|
30674
30668
|
*
|
|
@@ -30678,21 +30672,24 @@ export interface I18NProperty85 {
|
|
|
30678
30672
|
*
|
|
30679
30673
|
* [
|
|
30680
30674
|
* {
|
|
30681
|
-
* "type": "
|
|
30675
|
+
* "type": "togglegroup",
|
|
30676
|
+
* "macroParameter": "toggleGroupMacroParameter",
|
|
30682
30677
|
* "controls": [
|
|
30683
30678
|
* {
|
|
30684
|
-
* "type": "
|
|
30679
|
+
* "type": "togglebutton",
|
|
30680
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
30685
30681
|
* "label": {
|
|
30686
30682
|
* "value": "My Custom Control 0"
|
|
30687
30683
|
* },
|
|
30688
|
-
* "key": "my-custom-
|
|
30684
|
+
* "key": "my-custom-toggle-button-0"
|
|
30689
30685
|
* },
|
|
30690
30686
|
* {
|
|
30691
|
-
* "type": "
|
|
30687
|
+
* "type": "togglebutton",
|
|
30688
|
+
* "macroParameterValue": "macroParameterValue 1",
|
|
30692
30689
|
* "label": {
|
|
30693
30690
|
* "value": "My Custom Control 1"
|
|
30694
30691
|
* },
|
|
30695
|
-
* "key": "my-custom-
|
|
30692
|
+
* "key": "my-custom-toggle-button-1"
|
|
30696
30693
|
* }
|
|
30697
30694
|
* ]
|
|
30698
30695
|
* }
|
|
@@ -30701,15 +30698,16 @@ export interface I18NProperty85 {
|
|
|
30701
30698
|
*
|
|
30702
30699
|
*
|
|
30703
30700
|
*/
|
|
30704
|
-
export interface
|
|
30705
|
-
controls:
|
|
30706
|
-
|
|
30701
|
+
export interface ToggleGroup1 {
|
|
30702
|
+
controls: ToggleButtonControl1[];
|
|
30703
|
+
macroParameter: string;
|
|
30704
|
+
type: 'togglegroup' | 'TOGGLEGROUP';
|
|
30707
30705
|
[k: string]: unknown;
|
|
30708
30706
|
}
|
|
30709
30707
|
/**
|
|
30710
30708
|
*
|
|
30711
30709
|
*
|
|
30712
|
-
* Defines a button which
|
|
30710
|
+
* Defines a toggle button which appears inside a ToggleGroup
|
|
30713
30711
|
*
|
|
30714
30712
|
* <p><b>Example</b></p>
|
|
30715
30713
|
*
|
|
@@ -30718,19 +30716,21 @@ export interface ControlGroup1 {
|
|
|
30718
30716
|
*
|
|
30719
30717
|
*
|
|
30720
30718
|
* {
|
|
30721
|
-
* "type": "
|
|
30719
|
+
* "type": "togglebutton",
|
|
30720
|
+
* "macroParameterValue": "macroParameterValue 0",
|
|
30722
30721
|
* "label": {
|
|
30723
30722
|
* "value": "My Custom Control 0"
|
|
30724
30723
|
* },
|
|
30725
|
-
* "key": "my-custom-
|
|
30724
|
+
* "key": "my-custom-toggle-button-0"
|
|
30726
30725
|
* }
|
|
30727
30726
|
*
|
|
30728
30727
|
*
|
|
30729
30728
|
*
|
|
30730
30729
|
*/
|
|
30731
|
-
export interface
|
|
30730
|
+
export interface ToggleButtonControl1 {
|
|
30731
|
+
macroParameterValue: string;
|
|
30732
30732
|
label: I18NProperty86;
|
|
30733
|
-
type: '
|
|
30733
|
+
type: 'togglebutton' | 'TOGGLEBUTTON';
|
|
30734
30734
|
key: string;
|
|
30735
30735
|
[k: string]: unknown;
|
|
30736
30736
|
}
|
|
@@ -51607,10 +51607,37 @@ export interface I18NProperty91 {
|
|
|
51607
51607
|
*
|
|
51608
51608
|
*/
|
|
51609
51609
|
export interface WebItemTarget2 {
|
|
51610
|
-
options?:
|
|
51610
|
+
options?: DialogModuleOptions2 | DialogOptions4 | 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 a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
51618
|
+
*
|
|
51619
|
+
* <h3>Example</h3>
|
|
51620
|
+
*
|
|
51621
|
+
*
|
|
51622
|
+
*
|
|
51623
|
+
*
|
|
51624
|
+
*
|
|
51625
|
+
* {
|
|
51626
|
+
* "target": {
|
|
51627
|
+
* "type": "dialogmodule",
|
|
51628
|
+
* "options": {
|
|
51629
|
+
* "key": "dialog-module-key"
|
|
51630
|
+
* }
|
|
51631
|
+
* }
|
|
51632
|
+
* }
|
|
51633
|
+
*
|
|
51634
|
+
*
|
|
51635
|
+
*
|
|
51636
|
+
*/
|
|
51637
|
+
export interface DialogModuleOptions2 {
|
|
51638
|
+
key: string;
|
|
51639
|
+
[k: string]: unknown;
|
|
51640
|
+
}
|
|
51614
51641
|
/**
|
|
51615
51642
|
*
|
|
51616
51643
|
*
|
|
@@ -51709,33 +51736,6 @@ export interface I18NProperty92 {
|
|
|
51709
51736
|
i18n?: string;
|
|
51710
51737
|
[k: string]: unknown;
|
|
51711
51738
|
}
|
|
51712
|
-
/**
|
|
51713
|
-
*
|
|
51714
|
-
*
|
|
51715
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
51716
|
-
*
|
|
51717
|
-
* <h3>Example</h3>
|
|
51718
|
-
*
|
|
51719
|
-
*
|
|
51720
|
-
*
|
|
51721
|
-
*
|
|
51722
|
-
*
|
|
51723
|
-
* {
|
|
51724
|
-
* "target": {
|
|
51725
|
-
* "type": "dialogmodule",
|
|
51726
|
-
* "options": {
|
|
51727
|
-
* "key": "dialog-module-key"
|
|
51728
|
-
* }
|
|
51729
|
-
* }
|
|
51730
|
-
* }
|
|
51731
|
-
*
|
|
51732
|
-
*
|
|
51733
|
-
*
|
|
51734
|
-
*/
|
|
51735
|
-
export interface DialogModuleOptions2 {
|
|
51736
|
-
key: string;
|
|
51737
|
-
[k: string]: unknown;
|
|
51738
|
-
}
|
|
51739
51739
|
/**
|
|
51740
51740
|
*
|
|
51741
51741
|
*
|