@forge/manifest 3.3.0-next.5 → 3.3.0-next.6
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 +198 -198
- package/out/schema/manifest.d.ts +184 -184
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7390,10 +7390,10 @@
|
|
|
7390
7390
|
"type": "object",
|
|
7391
7391
|
"anyOf": [
|
|
7392
7392
|
{
|
|
7393
|
-
"$ref": "#/definitions/
|
|
7393
|
+
"$ref": "#/definitions/singleCondition"
|
|
7394
7394
|
},
|
|
7395
7395
|
{
|
|
7396
|
-
"$ref": "#/definitions/
|
|
7396
|
+
"$ref": "#/definitions/compositeCondition"
|
|
7397
7397
|
}
|
|
7398
7398
|
]
|
|
7399
7399
|
},
|
|
@@ -7509,10 +7509,10 @@
|
|
|
7509
7509
|
"type": "object",
|
|
7510
7510
|
"anyOf": [
|
|
7511
7511
|
{
|
|
7512
|
-
"$ref": "#/definitions/
|
|
7512
|
+
"$ref": "#/definitions/compositeCondition"
|
|
7513
7513
|
},
|
|
7514
7514
|
{
|
|
7515
|
-
"$ref": "#/definitions/
|
|
7515
|
+
"$ref": "#/definitions/singleCondition"
|
|
7516
7516
|
}
|
|
7517
7517
|
]
|
|
7518
7518
|
},
|
|
@@ -7567,10 +7567,10 @@
|
|
|
7567
7567
|
"type": "object",
|
|
7568
7568
|
"anyOf": [
|
|
7569
7569
|
{
|
|
7570
|
-
"$ref": "#/definitions/
|
|
7570
|
+
"$ref": "#/definitions/compositeCondition"
|
|
7571
7571
|
},
|
|
7572
7572
|
{
|
|
7573
|
-
"$ref": "#/definitions/
|
|
7573
|
+
"$ref": "#/definitions/singleCondition"
|
|
7574
7574
|
}
|
|
7575
7575
|
]
|
|
7576
7576
|
},
|
|
@@ -7625,10 +7625,10 @@
|
|
|
7625
7625
|
"type": "object",
|
|
7626
7626
|
"anyOf": [
|
|
7627
7627
|
{
|
|
7628
|
-
"$ref": "#/definitions/
|
|
7628
|
+
"$ref": "#/definitions/compositeCondition"
|
|
7629
7629
|
},
|
|
7630
7630
|
{
|
|
7631
|
-
"$ref": "#/definitions/
|
|
7631
|
+
"$ref": "#/definitions/singleCondition"
|
|
7632
7632
|
}
|
|
7633
7633
|
]
|
|
7634
7634
|
},
|
|
@@ -7698,51 +7698,6 @@
|
|
|
7698
7698
|
"type": "object",
|
|
7699
7699
|
"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",
|
|
7700
7700
|
"anyOf": [
|
|
7701
|
-
{
|
|
7702
|
-
"properties": {
|
|
7703
|
-
"size": {
|
|
7704
|
-
"enum": [
|
|
7705
|
-
"small",
|
|
7706
|
-
"SMALL",
|
|
7707
|
-
"medium",
|
|
7708
|
-
"MEDIUM",
|
|
7709
|
-
"large",
|
|
7710
|
-
"LARGE",
|
|
7711
|
-
"x-large",
|
|
7712
|
-
"X-LARGE",
|
|
7713
|
-
"fullscreen",
|
|
7714
|
-
"FULLSCREEN",
|
|
7715
|
-
"maximum",
|
|
7716
|
-
"MAXIMUM"
|
|
7717
|
-
],
|
|
7718
|
-
"type": "string",
|
|
7719
|
-
"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"
|
|
7720
|
-
},
|
|
7721
|
-
"chrome": {
|
|
7722
|
-
"type": "boolean",
|
|
7723
|
-
"fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
|
|
7724
|
-
"defaultValue": "true"
|
|
7725
|
-
},
|
|
7726
|
-
"width": {
|
|
7727
|
-
"maxLength": 10,
|
|
7728
|
-
"type": "string",
|
|
7729
|
-
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
7730
|
-
},
|
|
7731
|
-
"header": {
|
|
7732
|
-
"$ref": "#/definitions/i18nProperty",
|
|
7733
|
-
"fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
|
|
7734
|
-
},
|
|
7735
|
-
"height": {
|
|
7736
|
-
"maxLength": 10,
|
|
7737
|
-
"type": "string",
|
|
7738
|
-
"fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
|
|
7739
|
-
}
|
|
7740
|
-
},
|
|
7741
|
-
"shortClassName": "dialogOptions",
|
|
7742
|
-
"type": "object",
|
|
7743
|
-
"title": "Dialog Options",
|
|
7744
|
-
"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"
|
|
7745
|
-
},
|
|
7746
7701
|
{
|
|
7747
7702
|
"properties": {
|
|
7748
7703
|
"key": {
|
|
@@ -7805,6 +7760,51 @@
|
|
|
7805
7760
|
"type": "object",
|
|
7806
7761
|
"title": "Inline Dialog Options",
|
|
7807
7762
|
"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"
|
|
7763
|
+
},
|
|
7764
|
+
{
|
|
7765
|
+
"properties": {
|
|
7766
|
+
"size": {
|
|
7767
|
+
"enum": [
|
|
7768
|
+
"small",
|
|
7769
|
+
"SMALL",
|
|
7770
|
+
"medium",
|
|
7771
|
+
"MEDIUM",
|
|
7772
|
+
"large",
|
|
7773
|
+
"LARGE",
|
|
7774
|
+
"x-large",
|
|
7775
|
+
"X-LARGE",
|
|
7776
|
+
"fullscreen",
|
|
7777
|
+
"FULLSCREEN",
|
|
7778
|
+
"maximum",
|
|
7779
|
+
"MAXIMUM"
|
|
7780
|
+
],
|
|
7781
|
+
"type": "string",
|
|
7782
|
+
"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"
|
|
7783
|
+
},
|
|
7784
|
+
"chrome": {
|
|
7785
|
+
"type": "boolean",
|
|
7786
|
+
"fieldDescription": "\n\nWhether the dialog should contain the AUI header and buttons.\n\n",
|
|
7787
|
+
"defaultValue": "true"
|
|
7788
|
+
},
|
|
7789
|
+
"width": {
|
|
7790
|
+
"maxLength": 10,
|
|
7791
|
+
"type": "string",
|
|
7792
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
7793
|
+
},
|
|
7794
|
+
"header": {
|
|
7795
|
+
"$ref": "#/definitions/i18nProperty",
|
|
7796
|
+
"fieldDescription": "\n\nThe header text for the dialog, if chrome is enabled.\n\n"
|
|
7797
|
+
},
|
|
7798
|
+
"height": {
|
|
7799
|
+
"maxLength": 10,
|
|
7800
|
+
"type": "string",
|
|
7801
|
+
"fieldDescription": "\n\nSets how high the dialog is in pixels\n\n"
|
|
7802
|
+
}
|
|
7803
|
+
},
|
|
7804
|
+
"shortClassName": "dialogOptions",
|
|
7805
|
+
"type": "object",
|
|
7806
|
+
"title": "Dialog Options",
|
|
7807
|
+
"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"
|
|
7808
7808
|
}
|
|
7809
7809
|
]
|
|
7810
7810
|
},
|
|
@@ -8158,10 +8158,10 @@
|
|
|
8158
8158
|
"type": "object",
|
|
8159
8159
|
"anyOf": [
|
|
8160
8160
|
{
|
|
8161
|
-
"$ref": "
|
|
8161
|
+
"$ref": "#"
|
|
8162
8162
|
},
|
|
8163
8163
|
{
|
|
8164
|
-
"$ref": "
|
|
8164
|
+
"$ref": "#/definitions/singleCondition"
|
|
8165
8165
|
}
|
|
8166
8166
|
]
|
|
8167
8167
|
},
|
|
@@ -8456,38 +8456,6 @@
|
|
|
8456
8456
|
"items": {
|
|
8457
8457
|
"type": "object",
|
|
8458
8458
|
"anyOf": [
|
|
8459
|
-
{
|
|
8460
|
-
"properties": {
|
|
8461
|
-
"macroParameter": {
|
|
8462
|
-
"maxLength": 100,
|
|
8463
|
-
"type": "string",
|
|
8464
|
-
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
8465
|
-
},
|
|
8466
|
-
"type": {
|
|
8467
|
-
"enum": [
|
|
8468
|
-
"text",
|
|
8469
|
-
"TEXT"
|
|
8470
|
-
],
|
|
8471
|
-
"type": "string",
|
|
8472
|
-
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
8473
|
-
},
|
|
8474
|
-
"key": {
|
|
8475
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
8476
|
-
"maxLength": 100,
|
|
8477
|
-
"type": "string",
|
|
8478
|
-
"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"
|
|
8479
|
-
}
|
|
8480
|
-
},
|
|
8481
|
-
"required": [
|
|
8482
|
-
"macroParameter",
|
|
8483
|
-
"type",
|
|
8484
|
-
"key"
|
|
8485
|
-
],
|
|
8486
|
-
"shortClassName": "textControlBean",
|
|
8487
|
-
"type": "object",
|
|
8488
|
-
"title": "TextControl",
|
|
8489
|
-
"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"
|
|
8490
|
-
},
|
|
8491
8459
|
{
|
|
8492
8460
|
"properties": {
|
|
8493
8461
|
"label": {
|
|
@@ -8644,6 +8612,38 @@
|
|
|
8644
8612
|
"type": "object",
|
|
8645
8613
|
"title": "ControlGroup",
|
|
8646
8614
|
"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"
|
|
8615
|
+
},
|
|
8616
|
+
{
|
|
8617
|
+
"properties": {
|
|
8618
|
+
"macroParameter": {
|
|
8619
|
+
"maxLength": 100,
|
|
8620
|
+
"type": "string",
|
|
8621
|
+
"fieldDescription": "\n\nThe Macro Parameter identifier used to store the text\n\n"
|
|
8622
|
+
},
|
|
8623
|
+
"type": {
|
|
8624
|
+
"enum": [
|
|
8625
|
+
"text",
|
|
8626
|
+
"TEXT"
|
|
8627
|
+
],
|
|
8628
|
+
"type": "string",
|
|
8629
|
+
"fieldDescription": "\n\nThe type field must be set to 'text'\n\n"
|
|
8630
|
+
},
|
|
8631
|
+
"key": {
|
|
8632
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
8633
|
+
"maxLength": 100,
|
|
8634
|
+
"type": "string",
|
|
8635
|
+
"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"
|
|
8636
|
+
}
|
|
8637
|
+
},
|
|
8638
|
+
"required": [
|
|
8639
|
+
"macroParameter",
|
|
8640
|
+
"type",
|
|
8641
|
+
"key"
|
|
8642
|
+
],
|
|
8643
|
+
"shortClassName": "textControlBean",
|
|
8644
|
+
"type": "object",
|
|
8645
|
+
"title": "TextControl",
|
|
8646
|
+
"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"
|
|
8647
8647
|
}
|
|
8648
8648
|
]
|
|
8649
8649
|
},
|
|
@@ -8940,59 +8940,35 @@
|
|
|
8940
8940
|
"anyOf": [
|
|
8941
8941
|
{
|
|
8942
8942
|
"properties": {
|
|
8943
|
-
"
|
|
8944
|
-
"
|
|
8945
|
-
|
|
8946
|
-
"label": {
|
|
8947
|
-
"$ref": "#/definitions/i18nProperty",
|
|
8948
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
8949
|
-
},
|
|
8950
|
-
"type": {
|
|
8951
|
-
"enum": [
|
|
8952
|
-
"button",
|
|
8953
|
-
"BUTTON"
|
|
8954
|
-
],
|
|
8955
|
-
"type": "string",
|
|
8956
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
8957
|
-
},
|
|
8958
|
-
"key": {
|
|
8959
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
8960
|
-
"maxLength": 100,
|
|
8961
|
-
"type": "string",
|
|
8962
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
8963
|
-
}
|
|
8964
|
-
},
|
|
8965
|
-
"required": [
|
|
8966
|
-
"label",
|
|
8967
|
-
"type",
|
|
8968
|
-
"key"
|
|
8969
|
-
],
|
|
8970
|
-
"additionalProperties": true,
|
|
8971
|
-
"shortClassName": "buttonControlBean",
|
|
8972
|
-
"type": "object",
|
|
8973
|
-
"title": "ButtonControl",
|
|
8974
|
-
"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"
|
|
8975
|
-
},
|
|
8976
|
-
"type": "array",
|
|
8977
|
-
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
8943
|
+
"label": {
|
|
8944
|
+
"$ref": "#/definitions/i18nProperty",
|
|
8945
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
8978
8946
|
},
|
|
8979
8947
|
"type": {
|
|
8980
8948
|
"enum": [
|
|
8981
|
-
"
|
|
8982
|
-
"
|
|
8949
|
+
"button",
|
|
8950
|
+
"BUTTON"
|
|
8983
8951
|
],
|
|
8984
8952
|
"type": "string",
|
|
8985
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
8953
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
8954
|
+
},
|
|
8955
|
+
"key": {
|
|
8956
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
8957
|
+
"maxLength": 100,
|
|
8958
|
+
"type": "string",
|
|
8959
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
8986
8960
|
}
|
|
8987
8961
|
},
|
|
8988
8962
|
"required": [
|
|
8989
|
-
"
|
|
8990
|
-
"type"
|
|
8963
|
+
"label",
|
|
8964
|
+
"type",
|
|
8965
|
+
"key"
|
|
8991
8966
|
],
|
|
8992
|
-
"
|
|
8967
|
+
"additionalProperties": true,
|
|
8968
|
+
"shortClassName": "buttonControlBean",
|
|
8993
8969
|
"type": "object",
|
|
8994
|
-
"title": "
|
|
8995
|
-
"description": "\n\nDefines a
|
|
8970
|
+
"title": "ButtonControl",
|
|
8971
|
+
"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"
|
|
8996
8972
|
},
|
|
8997
8973
|
{
|
|
8998
8974
|
"properties": {
|
|
@@ -9065,35 +9041,59 @@
|
|
|
9065
9041
|
},
|
|
9066
9042
|
{
|
|
9067
9043
|
"properties": {
|
|
9068
|
-
"
|
|
9069
|
-
"
|
|
9070
|
-
|
|
9044
|
+
"controls": {
|
|
9045
|
+
"items": {
|
|
9046
|
+
"properties": {
|
|
9047
|
+
"label": {
|
|
9048
|
+
"$ref": "#/definitions/i18nProperty",
|
|
9049
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
9050
|
+
},
|
|
9051
|
+
"type": {
|
|
9052
|
+
"enum": [
|
|
9053
|
+
"button",
|
|
9054
|
+
"BUTTON"
|
|
9055
|
+
],
|
|
9056
|
+
"type": "string",
|
|
9057
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
9058
|
+
},
|
|
9059
|
+
"key": {
|
|
9060
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
9061
|
+
"maxLength": 100,
|
|
9062
|
+
"type": "string",
|
|
9063
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
9064
|
+
}
|
|
9065
|
+
},
|
|
9066
|
+
"required": [
|
|
9067
|
+
"label",
|
|
9068
|
+
"type",
|
|
9069
|
+
"key"
|
|
9070
|
+
],
|
|
9071
|
+
"additionalProperties": true,
|
|
9072
|
+
"shortClassName": "buttonControlBean",
|
|
9073
|
+
"type": "object",
|
|
9074
|
+
"title": "ButtonControl",
|
|
9075
|
+
"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"
|
|
9076
|
+
},
|
|
9077
|
+
"type": "array",
|
|
9078
|
+
"fieldDescription": "\n\nControls which will appear in the control group\n\n"
|
|
9071
9079
|
},
|
|
9072
9080
|
"type": {
|
|
9073
9081
|
"enum": [
|
|
9074
|
-
"
|
|
9075
|
-
"
|
|
9082
|
+
"group",
|
|
9083
|
+
"GROUP"
|
|
9076
9084
|
],
|
|
9077
9085
|
"type": "string",
|
|
9078
|
-
"fieldDescription": "\n\nThe type field must be set to '
|
|
9079
|
-
},
|
|
9080
|
-
"key": {
|
|
9081
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
9082
|
-
"maxLength": 100,
|
|
9083
|
-
"type": "string",
|
|
9084
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
9086
|
+
"fieldDescription": "\n\nThe type field must be set to 'group'\n\n"
|
|
9085
9087
|
}
|
|
9086
9088
|
},
|
|
9087
9089
|
"required": [
|
|
9088
|
-
"
|
|
9089
|
-
"type"
|
|
9090
|
-
"key"
|
|
9090
|
+
"controls",
|
|
9091
|
+
"type"
|
|
9091
9092
|
],
|
|
9092
|
-
"
|
|
9093
|
-
"shortClassName": "buttonControlBean",
|
|
9093
|
+
"shortClassName": "controlGroupBean",
|
|
9094
9094
|
"type": "object",
|
|
9095
|
-
"title": "
|
|
9096
|
-
"description": "\n\nDefines a
|
|
9095
|
+
"title": "ControlGroup",
|
|
9096
|
+
"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"
|
|
9097
9097
|
},
|
|
9098
9098
|
{
|
|
9099
9099
|
"properties": {
|
|
@@ -9361,6 +9361,53 @@
|
|
|
9361
9361
|
"type": "object",
|
|
9362
9362
|
"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",
|
|
9363
9363
|
"anyOf": [
|
|
9364
|
+
{
|
|
9365
|
+
"properties": {
|
|
9366
|
+
"offsetX": {
|
|
9367
|
+
"maxLength": 10,
|
|
9368
|
+
"type": "string",
|
|
9369
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
9370
|
+
},
|
|
9371
|
+
"offsetY": {
|
|
9372
|
+
"maxLength": 10,
|
|
9373
|
+
"type": "string",
|
|
9374
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
9375
|
+
},
|
|
9376
|
+
"width": {
|
|
9377
|
+
"maxLength": 10,
|
|
9378
|
+
"type": "string",
|
|
9379
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
9380
|
+
},
|
|
9381
|
+
"onTop": {
|
|
9382
|
+
"type": "boolean",
|
|
9383
|
+
"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"
|
|
9384
|
+
},
|
|
9385
|
+
"showDelay": {
|
|
9386
|
+
"type": "integer",
|
|
9387
|
+
"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"
|
|
9388
|
+
},
|
|
9389
|
+
"closeOthers": {
|
|
9390
|
+
"type": "boolean",
|
|
9391
|
+
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
9392
|
+
},
|
|
9393
|
+
"persistent": {
|
|
9394
|
+
"type": "boolean",
|
|
9395
|
+
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
9396
|
+
},
|
|
9397
|
+
"onHover": {
|
|
9398
|
+
"type": "boolean",
|
|
9399
|
+
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
9400
|
+
},
|
|
9401
|
+
"isRelativeToMouse": {
|
|
9402
|
+
"type": "boolean",
|
|
9403
|
+
"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"
|
|
9404
|
+
}
|
|
9405
|
+
},
|
|
9406
|
+
"shortClassName": "inlineDialogOptions",
|
|
9407
|
+
"type": "object",
|
|
9408
|
+
"title": "Inline Dialog Options",
|
|
9409
|
+
"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"
|
|
9410
|
+
},
|
|
9364
9411
|
{
|
|
9365
9412
|
"properties": {
|
|
9366
9413
|
"size": {
|
|
@@ -9421,53 +9468,6 @@
|
|
|
9421
9468
|
"type": "object",
|
|
9422
9469
|
"title": "Dialog Module Options",
|
|
9423
9470
|
"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"
|
|
9424
|
-
},
|
|
9425
|
-
{
|
|
9426
|
-
"properties": {
|
|
9427
|
-
"offsetX": {
|
|
9428
|
-
"maxLength": 10,
|
|
9429
|
-
"type": "string",
|
|
9430
|
-
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
9431
|
-
},
|
|
9432
|
-
"offsetY": {
|
|
9433
|
-
"maxLength": 10,
|
|
9434
|
-
"type": "string",
|
|
9435
|
-
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
9436
|
-
},
|
|
9437
|
-
"width": {
|
|
9438
|
-
"maxLength": 10,
|
|
9439
|
-
"type": "string",
|
|
9440
|
-
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
9441
|
-
},
|
|
9442
|
-
"onTop": {
|
|
9443
|
-
"type": "boolean",
|
|
9444
|
-
"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"
|
|
9445
|
-
},
|
|
9446
|
-
"showDelay": {
|
|
9447
|
-
"type": "integer",
|
|
9448
|
-
"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"
|
|
9449
|
-
},
|
|
9450
|
-
"closeOthers": {
|
|
9451
|
-
"type": "boolean",
|
|
9452
|
-
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
9453
|
-
},
|
|
9454
|
-
"persistent": {
|
|
9455
|
-
"type": "boolean",
|
|
9456
|
-
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
9457
|
-
},
|
|
9458
|
-
"onHover": {
|
|
9459
|
-
"type": "boolean",
|
|
9460
|
-
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
9461
|
-
},
|
|
9462
|
-
"isRelativeToMouse": {
|
|
9463
|
-
"type": "boolean",
|
|
9464
|
-
"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"
|
|
9465
|
-
}
|
|
9466
|
-
},
|
|
9467
|
-
"shortClassName": "inlineDialogOptions",
|
|
9468
|
-
"type": "object",
|
|
9469
|
-
"title": "Inline Dialog Options",
|
|
9470
|
-
"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"
|
|
9471
9471
|
}
|
|
9472
9472
|
]
|
|
9473
9473
|
},
|
|
@@ -10800,10 +10800,10 @@
|
|
|
10800
10800
|
"type": "object",
|
|
10801
10801
|
"anyOf": [
|
|
10802
10802
|
{
|
|
10803
|
-
"$ref": "
|
|
10803
|
+
"$ref": "#"
|
|
10804
10804
|
},
|
|
10805
10805
|
{
|
|
10806
|
-
"$ref": "
|
|
10806
|
+
"$ref": "#/definitions/singleCondition"
|
|
10807
10807
|
}
|
|
10808
10808
|
]
|
|
10809
10809
|
},
|
package/out/schema/manifest.d.ts
CHANGED
|
@@ -3640,7 +3640,7 @@ export interface Modules {
|
|
|
3640
3640
|
location?: string;
|
|
3641
3641
|
cacheable?: boolean;
|
|
3642
3642
|
supportsNative?: boolean;
|
|
3643
|
-
conditions?: (
|
|
3643
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3644
3644
|
params?: {
|
|
3645
3645
|
[k: string]: unknown;
|
|
3646
3646
|
};
|
|
@@ -3656,7 +3656,7 @@ export interface Modules {
|
|
|
3656
3656
|
location?: string;
|
|
3657
3657
|
cacheable?: boolean;
|
|
3658
3658
|
supportsNative?: boolean;
|
|
3659
|
-
conditions?: (
|
|
3659
|
+
conditions?: (SingleCondition | CompositeCondition)[];
|
|
3660
3660
|
params?: {
|
|
3661
3661
|
[k: string]: unknown;
|
|
3662
3662
|
};
|
|
@@ -3694,7 +3694,7 @@ export interface Modules {
|
|
|
3694
3694
|
weight?: number;
|
|
3695
3695
|
cacheable?: boolean;
|
|
3696
3696
|
location?: string;
|
|
3697
|
-
conditions?: (
|
|
3697
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3698
3698
|
params?: {
|
|
3699
3699
|
[k: string]: unknown;
|
|
3700
3700
|
};
|
|
@@ -3708,7 +3708,7 @@ export interface Modules {
|
|
|
3708
3708
|
weight?: number;
|
|
3709
3709
|
cacheable?: boolean;
|
|
3710
3710
|
location?: string;
|
|
3711
|
-
conditions?: (
|
|
3711
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3712
3712
|
params?: {
|
|
3713
3713
|
[k: string]: unknown;
|
|
3714
3714
|
};
|
|
@@ -3723,7 +3723,7 @@ export interface Modules {
|
|
|
3723
3723
|
name?: I18NProperty55;
|
|
3724
3724
|
weight?: number;
|
|
3725
3725
|
location?: string;
|
|
3726
|
-
conditions?: (
|
|
3726
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3727
3727
|
params?: {
|
|
3728
3728
|
[k: string]: unknown;
|
|
3729
3729
|
};
|
|
@@ -3735,7 +3735,7 @@ export interface Modules {
|
|
|
3735
3735
|
name?: I18NProperty55;
|
|
3736
3736
|
weight?: number;
|
|
3737
3737
|
location?: string;
|
|
3738
|
-
conditions?: (
|
|
3738
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3739
3739
|
params?: {
|
|
3740
3740
|
[k: string]: unknown;
|
|
3741
3741
|
};
|
|
@@ -3750,7 +3750,7 @@ export interface Modules {
|
|
|
3750
3750
|
weight?: number;
|
|
3751
3751
|
cacheable?: boolean;
|
|
3752
3752
|
location?: string;
|
|
3753
|
-
conditions?: (
|
|
3753
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3754
3754
|
params?: {
|
|
3755
3755
|
[k: string]: unknown;
|
|
3756
3756
|
};
|
|
@@ -3764,7 +3764,7 @@ export interface Modules {
|
|
|
3764
3764
|
weight?: number;
|
|
3765
3765
|
cacheable?: boolean;
|
|
3766
3766
|
location?: string;
|
|
3767
|
-
conditions?: (
|
|
3767
|
+
conditions?: (CompositeCondition | SingleCondition)[];
|
|
3768
3768
|
params?: {
|
|
3769
3769
|
[k: string]: unknown;
|
|
3770
3770
|
};
|
|
@@ -4327,7 +4327,7 @@ export interface I18NProperty1 {
|
|
|
4327
4327
|
*
|
|
4328
4328
|
*/
|
|
4329
4329
|
export interface CompositeCondition {
|
|
4330
|
-
conditions?: (
|
|
4330
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
4331
4331
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
4332
4332
|
[k: string]: unknown;
|
|
4333
4333
|
}
|
|
@@ -7035,10 +7035,74 @@ export interface Icon10 {
|
|
|
7035
7035
|
*
|
|
7036
7036
|
*/
|
|
7037
7037
|
export interface WebItemTarget1 {
|
|
7038
|
-
options?:
|
|
7038
|
+
options?: DialogModuleOptions1 | InlineDialogOptions1 | DialogOptions2;
|
|
7039
7039
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
7040
7040
|
[k: string]: unknown;
|
|
7041
7041
|
}
|
|
7042
|
+
/**
|
|
7043
|
+
*
|
|
7044
|
+
*
|
|
7045
|
+
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
7046
|
+
*
|
|
7047
|
+
* <h3>Example</h3>
|
|
7048
|
+
*
|
|
7049
|
+
*
|
|
7050
|
+
*
|
|
7051
|
+
*
|
|
7052
|
+
*
|
|
7053
|
+
* {
|
|
7054
|
+
* "target": {
|
|
7055
|
+
* "type": "dialogmodule",
|
|
7056
|
+
* "options": {
|
|
7057
|
+
* "key": "dialog-module-key"
|
|
7058
|
+
* }
|
|
7059
|
+
* }
|
|
7060
|
+
* }
|
|
7061
|
+
*
|
|
7062
|
+
*
|
|
7063
|
+
*
|
|
7064
|
+
*/
|
|
7065
|
+
export interface DialogModuleOptions1 {
|
|
7066
|
+
key: string;
|
|
7067
|
+
[k: string]: unknown;
|
|
7068
|
+
}
|
|
7069
|
+
/**
|
|
7070
|
+
*
|
|
7071
|
+
*
|
|
7072
|
+
* Options for an inline dialog target
|
|
7073
|
+
*
|
|
7074
|
+
* <h3>Example</h3>
|
|
7075
|
+
*
|
|
7076
|
+
*
|
|
7077
|
+
*
|
|
7078
|
+
*
|
|
7079
|
+
*
|
|
7080
|
+
* {
|
|
7081
|
+
* "target": {
|
|
7082
|
+
* "type": "inlinedialog",
|
|
7083
|
+
* "options": {
|
|
7084
|
+
* "onHover": true,
|
|
7085
|
+
* "offsetX": "30px",
|
|
7086
|
+
* "offsetY": "20px"
|
|
7087
|
+
* }
|
|
7088
|
+
* }
|
|
7089
|
+
* }
|
|
7090
|
+
*
|
|
7091
|
+
*
|
|
7092
|
+
*
|
|
7093
|
+
*/
|
|
7094
|
+
export interface InlineDialogOptions1 {
|
|
7095
|
+
offsetX?: string;
|
|
7096
|
+
offsetY?: string;
|
|
7097
|
+
width?: string;
|
|
7098
|
+
onTop?: boolean;
|
|
7099
|
+
showDelay?: number;
|
|
7100
|
+
closeOthers?: boolean;
|
|
7101
|
+
persistent?: boolean;
|
|
7102
|
+
onHover?: boolean;
|
|
7103
|
+
isRelativeToMouse?: boolean;
|
|
7104
|
+
[k: string]: unknown;
|
|
7105
|
+
}
|
|
7042
7106
|
/**
|
|
7043
7107
|
*
|
|
7044
7108
|
*
|
|
@@ -7137,70 +7201,6 @@ export interface I18NProperty58 {
|
|
|
7137
7201
|
i18n?: string;
|
|
7138
7202
|
[k: string]: unknown;
|
|
7139
7203
|
}
|
|
7140
|
-
/**
|
|
7141
|
-
*
|
|
7142
|
-
*
|
|
7143
|
-
* Options for a web-item targeting a common <a href="../dialog/">dialog module</a>.
|
|
7144
|
-
*
|
|
7145
|
-
* <h3>Example</h3>
|
|
7146
|
-
*
|
|
7147
|
-
*
|
|
7148
|
-
*
|
|
7149
|
-
*
|
|
7150
|
-
*
|
|
7151
|
-
* {
|
|
7152
|
-
* "target": {
|
|
7153
|
-
* "type": "dialogmodule",
|
|
7154
|
-
* "options": {
|
|
7155
|
-
* "key": "dialog-module-key"
|
|
7156
|
-
* }
|
|
7157
|
-
* }
|
|
7158
|
-
* }
|
|
7159
|
-
*
|
|
7160
|
-
*
|
|
7161
|
-
*
|
|
7162
|
-
*/
|
|
7163
|
-
export interface DialogModuleOptions1 {
|
|
7164
|
-
key: string;
|
|
7165
|
-
[k: string]: unknown;
|
|
7166
|
-
}
|
|
7167
|
-
/**
|
|
7168
|
-
*
|
|
7169
|
-
*
|
|
7170
|
-
* Options for an inline dialog target
|
|
7171
|
-
*
|
|
7172
|
-
* <h3>Example</h3>
|
|
7173
|
-
*
|
|
7174
|
-
*
|
|
7175
|
-
*
|
|
7176
|
-
*
|
|
7177
|
-
*
|
|
7178
|
-
* {
|
|
7179
|
-
* "target": {
|
|
7180
|
-
* "type": "inlinedialog",
|
|
7181
|
-
* "options": {
|
|
7182
|
-
* "onHover": true,
|
|
7183
|
-
* "offsetX": "30px",
|
|
7184
|
-
* "offsetY": "20px"
|
|
7185
|
-
* }
|
|
7186
|
-
* }
|
|
7187
|
-
* }
|
|
7188
|
-
*
|
|
7189
|
-
*
|
|
7190
|
-
*
|
|
7191
|
-
*/
|
|
7192
|
-
export interface InlineDialogOptions1 {
|
|
7193
|
-
offsetX?: string;
|
|
7194
|
-
offsetY?: string;
|
|
7195
|
-
width?: string;
|
|
7196
|
-
onTop?: boolean;
|
|
7197
|
-
showDelay?: number;
|
|
7198
|
-
closeOthers?: boolean;
|
|
7199
|
-
persistent?: boolean;
|
|
7200
|
-
onHover?: boolean;
|
|
7201
|
-
isRelativeToMouse?: boolean;
|
|
7202
|
-
[k: string]: unknown;
|
|
7203
|
-
}
|
|
7204
7204
|
/**
|
|
7205
7205
|
*
|
|
7206
7206
|
*
|
|
@@ -7719,7 +7719,7 @@ export interface SingleCondition5 {
|
|
|
7719
7719
|
*
|
|
7720
7720
|
*/
|
|
7721
7721
|
export interface CompositeCondition7 {
|
|
7722
|
-
conditions?: (
|
|
7722
|
+
conditions?: (ManifestSchema | SingleCondition)[];
|
|
7723
7723
|
type?: 'and' | 'AND' | 'or' | 'OR';
|
|
7724
7724
|
[k: string]: unknown;
|
|
7725
7725
|
}
|
|
@@ -9142,39 +9142,11 @@ export interface I18NProperty74 {
|
|
|
9142
9142
|
*
|
|
9143
9143
|
*/
|
|
9144
9144
|
export interface MacroPropertyPanel {
|
|
9145
|
-
controls?: (
|
|
9145
|
+
controls?: (ButtonControl | ToggleGroup | ControlGroup | TextControl)[];
|
|
9146
9146
|
cacheable?: boolean;
|
|
9147
9147
|
url: string;
|
|
9148
9148
|
[k: string]: unknown;
|
|
9149
9149
|
}
|
|
9150
|
-
/**
|
|
9151
|
-
*
|
|
9152
|
-
*
|
|
9153
|
-
* Defines a text field which may appear in control extension points such as the property panel
|
|
9154
|
-
*
|
|
9155
|
-
* <p><b>Example</b></p>
|
|
9156
|
-
*
|
|
9157
|
-
*
|
|
9158
|
-
*
|
|
9159
|
-
*
|
|
9160
|
-
*
|
|
9161
|
-
* {
|
|
9162
|
-
* "type": "button",
|
|
9163
|
-
* "label": {
|
|
9164
|
-
* "value": "My Custom Control 0"
|
|
9165
|
-
* },
|
|
9166
|
-
* "key": "my-custom-control-0"
|
|
9167
|
-
* }
|
|
9168
|
-
*
|
|
9169
|
-
*
|
|
9170
|
-
*
|
|
9171
|
-
*/
|
|
9172
|
-
export interface TextControl {
|
|
9173
|
-
macroParameter: string;
|
|
9174
|
-
type: 'text' | 'TEXT';
|
|
9175
|
-
key: string;
|
|
9176
|
-
[k: string]: unknown;
|
|
9177
|
-
}
|
|
9178
9150
|
/**
|
|
9179
9151
|
*
|
|
9180
9152
|
*
|
|
@@ -9419,6 +9391,34 @@ export interface I18NProperty77 {
|
|
|
9419
9391
|
i18n?: string;
|
|
9420
9392
|
[k: string]: unknown;
|
|
9421
9393
|
}
|
|
9394
|
+
/**
|
|
9395
|
+
*
|
|
9396
|
+
*
|
|
9397
|
+
* Defines a text field which may appear in control extension points such as the property panel
|
|
9398
|
+
*
|
|
9399
|
+
* <p><b>Example</b></p>
|
|
9400
|
+
*
|
|
9401
|
+
*
|
|
9402
|
+
*
|
|
9403
|
+
*
|
|
9404
|
+
*
|
|
9405
|
+
* {
|
|
9406
|
+
* "type": "button",
|
|
9407
|
+
* "label": {
|
|
9408
|
+
* "value": "My Custom Control 0"
|
|
9409
|
+
* },
|
|
9410
|
+
* "key": "my-custom-control-0"
|
|
9411
|
+
* }
|
|
9412
|
+
*
|
|
9413
|
+
*
|
|
9414
|
+
*
|
|
9415
|
+
*/
|
|
9416
|
+
export interface TextControl {
|
|
9417
|
+
macroParameter: string;
|
|
9418
|
+
type: 'text' | 'TEXT';
|
|
9419
|
+
key: string;
|
|
9420
|
+
[k: string]: unknown;
|
|
9421
|
+
}
|
|
9422
9422
|
/**
|
|
9423
9423
|
*
|
|
9424
9424
|
*
|
|
@@ -30387,52 +30387,11 @@ export interface I18NProperty83 {
|
|
|
30387
30387
|
*
|
|
30388
30388
|
*/
|
|
30389
30389
|
export interface MacroPropertyPanel1 {
|
|
30390
|
-
controls?: (
|
|
30390
|
+
controls?: (ButtonControl2 | ToggleGroup1 | ControlGroup1 | TextControl1)[];
|
|
30391
30391
|
cacheable?: boolean;
|
|
30392
30392
|
url: string;
|
|
30393
30393
|
[k: string]: unknown;
|
|
30394
30394
|
}
|
|
30395
|
-
/**
|
|
30396
|
-
*
|
|
30397
|
-
*
|
|
30398
|
-
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
30399
|
-
*
|
|
30400
|
-
* <p><b>Example</b></p>
|
|
30401
|
-
*
|
|
30402
|
-
*
|
|
30403
|
-
*
|
|
30404
|
-
*
|
|
30405
|
-
*
|
|
30406
|
-
* [
|
|
30407
|
-
* {
|
|
30408
|
-
* "type": "group",
|
|
30409
|
-
* "controls": [
|
|
30410
|
-
* {
|
|
30411
|
-
* "type": "button",
|
|
30412
|
-
* "label": {
|
|
30413
|
-
* "value": "My Custom Control 0"
|
|
30414
|
-
* },
|
|
30415
|
-
* "key": "my-custom-control-0"
|
|
30416
|
-
* },
|
|
30417
|
-
* {
|
|
30418
|
-
* "type": "button",
|
|
30419
|
-
* "label": {
|
|
30420
|
-
* "value": "My Custom Control 1"
|
|
30421
|
-
* },
|
|
30422
|
-
* "key": "my-custom-control-1"
|
|
30423
|
-
* }
|
|
30424
|
-
* ]
|
|
30425
|
-
* }
|
|
30426
|
-
* ]
|
|
30427
|
-
*
|
|
30428
|
-
*
|
|
30429
|
-
*
|
|
30430
|
-
*/
|
|
30431
|
-
export interface ControlGroup1 {
|
|
30432
|
-
controls: ButtonControl2[];
|
|
30433
|
-
type: 'group' | 'GROUP';
|
|
30434
|
-
[k: string]: unknown;
|
|
30435
|
-
}
|
|
30436
30395
|
/**
|
|
30437
30396
|
*
|
|
30438
30397
|
*
|
|
@@ -30584,6 +30543,47 @@ export interface I18NProperty85 {
|
|
|
30584
30543
|
i18n?: string;
|
|
30585
30544
|
[k: string]: unknown;
|
|
30586
30545
|
}
|
|
30546
|
+
/**
|
|
30547
|
+
*
|
|
30548
|
+
*
|
|
30549
|
+
* Defines a ControlGroup which may appear in control extension points such as the property panel
|
|
30550
|
+
*
|
|
30551
|
+
* <p><b>Example</b></p>
|
|
30552
|
+
*
|
|
30553
|
+
*
|
|
30554
|
+
*
|
|
30555
|
+
*
|
|
30556
|
+
*
|
|
30557
|
+
* [
|
|
30558
|
+
* {
|
|
30559
|
+
* "type": "group",
|
|
30560
|
+
* "controls": [
|
|
30561
|
+
* {
|
|
30562
|
+
* "type": "button",
|
|
30563
|
+
* "label": {
|
|
30564
|
+
* "value": "My Custom Control 0"
|
|
30565
|
+
* },
|
|
30566
|
+
* "key": "my-custom-control-0"
|
|
30567
|
+
* },
|
|
30568
|
+
* {
|
|
30569
|
+
* "type": "button",
|
|
30570
|
+
* "label": {
|
|
30571
|
+
* "value": "My Custom Control 1"
|
|
30572
|
+
* },
|
|
30573
|
+
* "key": "my-custom-control-1"
|
|
30574
|
+
* }
|
|
30575
|
+
* ]
|
|
30576
|
+
* }
|
|
30577
|
+
* ]
|
|
30578
|
+
*
|
|
30579
|
+
*
|
|
30580
|
+
*
|
|
30581
|
+
*/
|
|
30582
|
+
export interface ControlGroup1 {
|
|
30583
|
+
controls: ButtonControl3[];
|
|
30584
|
+
type: 'group' | 'GROUP';
|
|
30585
|
+
[k: string]: unknown;
|
|
30586
|
+
}
|
|
30587
30587
|
/**
|
|
30588
30588
|
*
|
|
30589
30589
|
*
|
|
@@ -51513,10 +51513,47 @@ export interface I18NProperty91 {
|
|
|
51513
51513
|
*
|
|
51514
51514
|
*/
|
|
51515
51515
|
export interface WebItemTarget2 {
|
|
51516
|
-
options?:
|
|
51516
|
+
options?: InlineDialogOptions2 | DialogOptions4 | DialogModuleOptions2;
|
|
51517
51517
|
type?: 'page' | 'PAGE' | 'dialog' | 'DIALOG' | 'inlinedialog' | 'INLINEDIALOG' | 'dialogmodule' | 'DIALOGMODULE';
|
|
51518
51518
|
[k: string]: unknown;
|
|
51519
51519
|
}
|
|
51520
|
+
/**
|
|
51521
|
+
*
|
|
51522
|
+
*
|
|
51523
|
+
* Options for an inline dialog target
|
|
51524
|
+
*
|
|
51525
|
+
* <h3>Example</h3>
|
|
51526
|
+
*
|
|
51527
|
+
*
|
|
51528
|
+
*
|
|
51529
|
+
*
|
|
51530
|
+
*
|
|
51531
|
+
* {
|
|
51532
|
+
* "target": {
|
|
51533
|
+
* "type": "inlinedialog",
|
|
51534
|
+
* "options": {
|
|
51535
|
+
* "onHover": true,
|
|
51536
|
+
* "offsetX": "30px",
|
|
51537
|
+
* "offsetY": "20px"
|
|
51538
|
+
* }
|
|
51539
|
+
* }
|
|
51540
|
+
* }
|
|
51541
|
+
*
|
|
51542
|
+
*
|
|
51543
|
+
*
|
|
51544
|
+
*/
|
|
51545
|
+
export interface InlineDialogOptions2 {
|
|
51546
|
+
offsetX?: string;
|
|
51547
|
+
offsetY?: string;
|
|
51548
|
+
width?: string;
|
|
51549
|
+
onTop?: boolean;
|
|
51550
|
+
showDelay?: number;
|
|
51551
|
+
closeOthers?: boolean;
|
|
51552
|
+
persistent?: boolean;
|
|
51553
|
+
onHover?: boolean;
|
|
51554
|
+
isRelativeToMouse?: boolean;
|
|
51555
|
+
[k: string]: unknown;
|
|
51556
|
+
}
|
|
51520
51557
|
/**
|
|
51521
51558
|
*
|
|
51522
51559
|
*
|
|
@@ -51642,43 +51679,6 @@ export interface DialogModuleOptions2 {
|
|
|
51642
51679
|
key: string;
|
|
51643
51680
|
[k: string]: unknown;
|
|
51644
51681
|
}
|
|
51645
|
-
/**
|
|
51646
|
-
*
|
|
51647
|
-
*
|
|
51648
|
-
* Options for an inline dialog target
|
|
51649
|
-
*
|
|
51650
|
-
* <h3>Example</h3>
|
|
51651
|
-
*
|
|
51652
|
-
*
|
|
51653
|
-
*
|
|
51654
|
-
*
|
|
51655
|
-
*
|
|
51656
|
-
* {
|
|
51657
|
-
* "target": {
|
|
51658
|
-
* "type": "inlinedialog",
|
|
51659
|
-
* "options": {
|
|
51660
|
-
* "onHover": true,
|
|
51661
|
-
* "offsetX": "30px",
|
|
51662
|
-
* "offsetY": "20px"
|
|
51663
|
-
* }
|
|
51664
|
-
* }
|
|
51665
|
-
* }
|
|
51666
|
-
*
|
|
51667
|
-
*
|
|
51668
|
-
*
|
|
51669
|
-
*/
|
|
51670
|
-
export interface InlineDialogOptions2 {
|
|
51671
|
-
offsetX?: string;
|
|
51672
|
-
offsetY?: string;
|
|
51673
|
-
width?: string;
|
|
51674
|
-
onTop?: boolean;
|
|
51675
|
-
showDelay?: number;
|
|
51676
|
-
closeOthers?: boolean;
|
|
51677
|
-
persistent?: boolean;
|
|
51678
|
-
onHover?: boolean;
|
|
51679
|
-
isRelativeToMouse?: boolean;
|
|
51680
|
-
[k: string]: unknown;
|
|
51681
|
-
}
|
|
51682
51682
|
/**
|
|
51683
51683
|
*
|
|
51684
51684
|
*
|