@forge/manifest 2.5.1-next.3 → 2.5.1-next.4
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 +270 -209
- package/out/schema/manifest.d.ts +225 -187
- package/out/scopes/shipyard-scopes.json +2 -0
- package/package.json +1 -1
|
@@ -1246,6 +1246,20 @@
|
|
|
1246
1246
|
}
|
|
1247
1247
|
]
|
|
1248
1248
|
},
|
|
1249
|
+
"value": {
|
|
1250
|
+
"type": "object",
|
|
1251
|
+
"properties": {
|
|
1252
|
+
"function": {
|
|
1253
|
+
"type": "string",
|
|
1254
|
+
"minLength": 1,
|
|
1255
|
+
"maxLength": 255,
|
|
1256
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1257
|
+
}
|
|
1258
|
+
},
|
|
1259
|
+
"required": [
|
|
1260
|
+
"function"
|
|
1261
|
+
]
|
|
1262
|
+
},
|
|
1249
1263
|
"key": {
|
|
1250
1264
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
1251
1265
|
}
|
|
@@ -1362,6 +1376,20 @@
|
|
|
1362
1376
|
}
|
|
1363
1377
|
]
|
|
1364
1378
|
},
|
|
1379
|
+
"value": {
|
|
1380
|
+
"type": "object",
|
|
1381
|
+
"properties": {
|
|
1382
|
+
"function": {
|
|
1383
|
+
"type": "string",
|
|
1384
|
+
"minLength": 1,
|
|
1385
|
+
"maxLength": 255,
|
|
1386
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1387
|
+
}
|
|
1388
|
+
},
|
|
1389
|
+
"required": [
|
|
1390
|
+
"function"
|
|
1391
|
+
]
|
|
1392
|
+
},
|
|
1365
1393
|
"key": {
|
|
1366
1394
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
1367
1395
|
}
|
|
@@ -1472,6 +1500,20 @@
|
|
|
1472
1500
|
}
|
|
1473
1501
|
]
|
|
1474
1502
|
},
|
|
1503
|
+
"value": {
|
|
1504
|
+
"type": "object",
|
|
1505
|
+
"properties": {
|
|
1506
|
+
"function": {
|
|
1507
|
+
"type": "string",
|
|
1508
|
+
"minLength": 1,
|
|
1509
|
+
"maxLength": 255,
|
|
1510
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1511
|
+
}
|
|
1512
|
+
},
|
|
1513
|
+
"required": [
|
|
1514
|
+
"function"
|
|
1515
|
+
]
|
|
1516
|
+
},
|
|
1475
1517
|
"icon": {
|
|
1476
1518
|
"type": "string",
|
|
1477
1519
|
"minLength": 1,
|
|
@@ -1639,6 +1681,20 @@
|
|
|
1639
1681
|
}
|
|
1640
1682
|
]
|
|
1641
1683
|
},
|
|
1684
|
+
"value": {
|
|
1685
|
+
"type": "object",
|
|
1686
|
+
"properties": {
|
|
1687
|
+
"function": {
|
|
1688
|
+
"type": "string",
|
|
1689
|
+
"minLength": 1,
|
|
1690
|
+
"maxLength": 255,
|
|
1691
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1692
|
+
}
|
|
1693
|
+
},
|
|
1694
|
+
"required": [
|
|
1695
|
+
"function"
|
|
1696
|
+
]
|
|
1697
|
+
},
|
|
1642
1698
|
"icon": {
|
|
1643
1699
|
"type": "string",
|
|
1644
1700
|
"minLength": 1,
|
|
@@ -1815,31 +1871,45 @@
|
|
|
1815
1871
|
{
|
|
1816
1872
|
"type": "object",
|
|
1817
1873
|
"properties": {
|
|
1818
|
-
"
|
|
1874
|
+
"function": {
|
|
1819
1875
|
"type": "string",
|
|
1820
1876
|
"minLength": 1,
|
|
1821
|
-
"maxLength": 255
|
|
1877
|
+
"maxLength": 255,
|
|
1878
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1879
|
+
},
|
|
1880
|
+
"title": {
|
|
1881
|
+
"minLength": 1,
|
|
1882
|
+
"maxLength": 255,
|
|
1883
|
+
"type": "string"
|
|
1822
1884
|
},
|
|
1823
1885
|
"label": {
|
|
1824
|
-
"type": "string",
|
|
1825
1886
|
"minLength": 1,
|
|
1826
|
-
"maxLength": 255
|
|
1887
|
+
"maxLength": 255,
|
|
1888
|
+
"type": "string"
|
|
1827
1889
|
},
|
|
1828
1890
|
"status": {
|
|
1829
1891
|
"type": "object",
|
|
1830
1892
|
"properties": {
|
|
1893
|
+
"type": {
|
|
1894
|
+
"enum": [
|
|
1895
|
+
"badge",
|
|
1896
|
+
"icon",
|
|
1897
|
+
"lozenge"
|
|
1898
|
+
],
|
|
1899
|
+
"type": "string"
|
|
1900
|
+
},
|
|
1831
1901
|
"value": {
|
|
1832
1902
|
"type": "object",
|
|
1833
1903
|
"properties": {
|
|
1834
1904
|
"label": {
|
|
1835
|
-
"type": "string",
|
|
1836
1905
|
"minLength": 1,
|
|
1837
|
-
"maxLength": 255
|
|
1906
|
+
"maxLength": 255,
|
|
1907
|
+
"type": "string"
|
|
1908
|
+
},
|
|
1909
|
+
"url": {
|
|
1910
|
+
"type": "string"
|
|
1838
1911
|
},
|
|
1839
1912
|
"type": {
|
|
1840
|
-
"type": "string",
|
|
1841
|
-
"minLength": 1,
|
|
1842
|
-
"maxLength": 255,
|
|
1843
1913
|
"enum": [
|
|
1844
1914
|
"default",
|
|
1845
1915
|
"inprogress",
|
|
@@ -1847,73 +1917,93 @@
|
|
|
1847
1917
|
"new",
|
|
1848
1918
|
"removed",
|
|
1849
1919
|
"success"
|
|
1850
|
-
]
|
|
1920
|
+
],
|
|
1921
|
+
"type": "string"
|
|
1851
1922
|
}
|
|
1852
1923
|
},
|
|
1853
1924
|
"required": [
|
|
1854
1925
|
"label"
|
|
1855
1926
|
]
|
|
1856
|
-
},
|
|
1857
|
-
"type": {
|
|
1858
|
-
"type": "string",
|
|
1859
|
-
"minLength": 1,
|
|
1860
|
-
"maxLength": 255,
|
|
1861
|
-
"enum": [
|
|
1862
|
-
"badge",
|
|
1863
|
-
"lozenge"
|
|
1864
|
-
]
|
|
1865
1927
|
}
|
|
1866
1928
|
},
|
|
1867
1929
|
"required": [
|
|
1868
|
-
"
|
|
1869
|
-
"
|
|
1930
|
+
"type",
|
|
1931
|
+
"value"
|
|
1870
1932
|
]
|
|
1871
1933
|
},
|
|
1872
|
-
"
|
|
1934
|
+
"icon": {
|
|
1873
1935
|
"type": "string",
|
|
1874
1936
|
"minLength": 1,
|
|
1875
|
-
"maxLength": 255
|
|
1876
|
-
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1937
|
+
"maxLength": 255
|
|
1877
1938
|
},
|
|
1878
1939
|
"key": {
|
|
1879
1940
|
"$ref": "#/definitions/ModuleKeySchema"
|
|
1880
1941
|
}
|
|
1881
1942
|
},
|
|
1882
1943
|
"required": [
|
|
1883
|
-
"title",
|
|
1884
|
-
"label",
|
|
1885
1944
|
"function",
|
|
1945
|
+
"label",
|
|
1946
|
+
"title",
|
|
1886
1947
|
"key"
|
|
1887
1948
|
]
|
|
1888
1949
|
},
|
|
1889
1950
|
{
|
|
1890
1951
|
"type": "object",
|
|
1891
1952
|
"properties": {
|
|
1892
|
-
"
|
|
1953
|
+
"resource": {
|
|
1893
1954
|
"type": "string",
|
|
1894
1955
|
"minLength": 1,
|
|
1895
|
-
"maxLength":
|
|
1956
|
+
"maxLength": 23,
|
|
1957
|
+
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
1958
|
+
},
|
|
1959
|
+
"resolver": {
|
|
1960
|
+
"additionalProperties": false,
|
|
1961
|
+
"type": "object",
|
|
1962
|
+
"properties": {
|
|
1963
|
+
"function": {
|
|
1964
|
+
"type": "string",
|
|
1965
|
+
"minLength": 1,
|
|
1966
|
+
"maxLength": 255,
|
|
1967
|
+
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1968
|
+
}
|
|
1969
|
+
},
|
|
1970
|
+
"required": [
|
|
1971
|
+
"function"
|
|
1972
|
+
]
|
|
1973
|
+
},
|
|
1974
|
+
"title": {
|
|
1975
|
+
"minLength": 1,
|
|
1976
|
+
"maxLength": 255,
|
|
1977
|
+
"type": "string"
|
|
1896
1978
|
},
|
|
1897
1979
|
"label": {
|
|
1898
|
-
"type": "string",
|
|
1899
1980
|
"minLength": 1,
|
|
1900
|
-
"maxLength": 255
|
|
1981
|
+
"maxLength": 255,
|
|
1982
|
+
"type": "string"
|
|
1901
1983
|
},
|
|
1902
1984
|
"status": {
|
|
1903
1985
|
"type": "object",
|
|
1904
1986
|
"properties": {
|
|
1987
|
+
"type": {
|
|
1988
|
+
"enum": [
|
|
1989
|
+
"badge",
|
|
1990
|
+
"icon",
|
|
1991
|
+
"lozenge"
|
|
1992
|
+
],
|
|
1993
|
+
"type": "string"
|
|
1994
|
+
},
|
|
1905
1995
|
"value": {
|
|
1906
1996
|
"type": "object",
|
|
1907
1997
|
"properties": {
|
|
1908
1998
|
"label": {
|
|
1909
|
-
"type": "string",
|
|
1910
1999
|
"minLength": 1,
|
|
1911
|
-
"maxLength": 255
|
|
2000
|
+
"maxLength": 255,
|
|
2001
|
+
"type": "string"
|
|
2002
|
+
},
|
|
2003
|
+
"url": {
|
|
2004
|
+
"type": "string"
|
|
1912
2005
|
},
|
|
1913
2006
|
"type": {
|
|
1914
|
-
"type": "string",
|
|
1915
|
-
"minLength": 1,
|
|
1916
|
-
"maxLength": 255,
|
|
1917
2007
|
"enum": [
|
|
1918
2008
|
"default",
|
|
1919
2009
|
"inprogress",
|
|
@@ -1921,50 +2011,21 @@
|
|
|
1921
2011
|
"new",
|
|
1922
2012
|
"removed",
|
|
1923
2013
|
"success"
|
|
1924
|
-
]
|
|
2014
|
+
],
|
|
2015
|
+
"type": "string"
|
|
1925
2016
|
}
|
|
1926
2017
|
},
|
|
1927
2018
|
"required": [
|
|
1928
2019
|
"label"
|
|
1929
2020
|
]
|
|
1930
|
-
},
|
|
1931
|
-
"type": {
|
|
1932
|
-
"type": "string",
|
|
1933
|
-
"minLength": 1,
|
|
1934
|
-
"maxLength": 255,
|
|
1935
|
-
"enum": [
|
|
1936
|
-
"badge",
|
|
1937
|
-
"lozenge"
|
|
1938
|
-
]
|
|
1939
|
-
}
|
|
1940
|
-
},
|
|
1941
|
-
"required": [
|
|
1942
|
-
"value",
|
|
1943
|
-
"type"
|
|
1944
|
-
]
|
|
1945
|
-
},
|
|
1946
|
-
"resolver": {
|
|
1947
|
-
"additionalProperties": false,
|
|
1948
|
-
"type": "object",
|
|
1949
|
-
"properties": {
|
|
1950
|
-
"function": {
|
|
1951
|
-
"type": "string",
|
|
1952
|
-
"minLength": 1,
|
|
1953
|
-
"maxLength": 255,
|
|
1954
|
-
"pattern": "^[a-zA-Z0-9-_]+$"
|
|
1955
2021
|
}
|
|
1956
2022
|
},
|
|
1957
2023
|
"required": [
|
|
1958
|
-
"
|
|
2024
|
+
"type",
|
|
2025
|
+
"value"
|
|
1959
2026
|
]
|
|
1960
2027
|
},
|
|
1961
|
-
"
|
|
1962
|
-
"type": "string",
|
|
1963
|
-
"minLength": 1,
|
|
1964
|
-
"maxLength": 23,
|
|
1965
|
-
"pattern": "^[a-zA-Z0-9_\\-]+$"
|
|
1966
|
-
},
|
|
1967
|
-
"resourceUploadId": {
|
|
2028
|
+
"icon": {
|
|
1968
2029
|
"type": "string",
|
|
1969
2030
|
"minLength": 1,
|
|
1970
2031
|
"maxLength": 255
|
|
@@ -1974,9 +2035,9 @@
|
|
|
1974
2035
|
}
|
|
1975
2036
|
},
|
|
1976
2037
|
"required": [
|
|
1977
|
-
"title",
|
|
1978
2038
|
"label",
|
|
1979
2039
|
"resource",
|
|
2040
|
+
"title",
|
|
1980
2041
|
"key"
|
|
1981
2042
|
]
|
|
1982
2043
|
}
|
|
@@ -5356,10 +5417,10 @@
|
|
|
5356
5417
|
"type": "object",
|
|
5357
5418
|
"anyOf": [
|
|
5358
5419
|
{
|
|
5359
|
-
"$ref": "#/definitions/
|
|
5420
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5360
5421
|
},
|
|
5361
5422
|
{
|
|
5362
|
-
"$ref": "#/definitions/
|
|
5423
|
+
"$ref": "#/definitions/singleCondition"
|
|
5363
5424
|
}
|
|
5364
5425
|
]
|
|
5365
5426
|
},
|
|
@@ -5482,10 +5543,10 @@
|
|
|
5482
5543
|
"type": "object",
|
|
5483
5544
|
"anyOf": [
|
|
5484
5545
|
{
|
|
5485
|
-
"$ref": "#/definitions/
|
|
5546
|
+
"$ref": "#/definitions/singleCondition"
|
|
5486
5547
|
},
|
|
5487
5548
|
{
|
|
5488
|
-
"$ref": "#/definitions/
|
|
5549
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5489
5550
|
}
|
|
5490
5551
|
]
|
|
5491
5552
|
},
|
|
@@ -5604,10 +5665,10 @@
|
|
|
5604
5665
|
"type": "object",
|
|
5605
5666
|
"anyOf": [
|
|
5606
5667
|
{
|
|
5607
|
-
"$ref": "#/definitions/
|
|
5668
|
+
"$ref": "#/definitions/compositeCondition"
|
|
5608
5669
|
},
|
|
5609
5670
|
{
|
|
5610
|
-
"$ref": "#/definitions/
|
|
5671
|
+
"$ref": "#/definitions/singleCondition"
|
|
5611
5672
|
}
|
|
5612
5673
|
]
|
|
5613
5674
|
},
|
|
@@ -5737,50 +5798,19 @@
|
|
|
5737
5798
|
"anyOf": [
|
|
5738
5799
|
{
|
|
5739
5800
|
"properties": {
|
|
5740
|
-
"
|
|
5741
|
-
"maxLength":
|
|
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,
|
|
5801
|
+
"key": {
|
|
5802
|
+
"maxLength": 100,
|
|
5752
5803
|
"type": "string",
|
|
5753
|
-
"fieldDescription": "\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"
|
|
5804
|
+
"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"
|
|
5778
5805
|
}
|
|
5779
5806
|
},
|
|
5780
|
-
"
|
|
5807
|
+
"required": [
|
|
5808
|
+
"key"
|
|
5809
|
+
],
|
|
5810
|
+
"shortClassName": "dialogModuleOptions",
|
|
5781
5811
|
"type": "object",
|
|
5782
|
-
"title": "
|
|
5783
|
-
"description": "\n\nOptions for
|
|
5812
|
+
"title": "Dialog Module Options",
|
|
5813
|
+
"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"
|
|
5784
5814
|
},
|
|
5785
5815
|
{
|
|
5786
5816
|
"properties": {
|
|
@@ -5829,19 +5859,50 @@
|
|
|
5829
5859
|
},
|
|
5830
5860
|
{
|
|
5831
5861
|
"properties": {
|
|
5832
|
-
"
|
|
5833
|
-
"maxLength":
|
|
5862
|
+
"offsetX": {
|
|
5863
|
+
"maxLength": 10,
|
|
5834
5864
|
"type": "string",
|
|
5835
|
-
"fieldDescription": "\n\
|
|
5865
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the x-axis in pixels\n\n"
|
|
5866
|
+
},
|
|
5867
|
+
"offsetY": {
|
|
5868
|
+
"maxLength": 10,
|
|
5869
|
+
"type": "string",
|
|
5870
|
+
"fieldDescription": "\n\nSets an offset distance of the inline-dialog from the trigger element along the y-axis in pixels\n\n"
|
|
5871
|
+
},
|
|
5872
|
+
"width": {
|
|
5873
|
+
"maxLength": 10,
|
|
5874
|
+
"type": "string",
|
|
5875
|
+
"fieldDescription": "\n\nSets how wide the dialog is in pixels.\n\n"
|
|
5876
|
+
},
|
|
5877
|
+
"onTop": {
|
|
5878
|
+
"type": "boolean",
|
|
5879
|
+
"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"
|
|
5880
|
+
},
|
|
5881
|
+
"showDelay": {
|
|
5882
|
+
"type": "integer",
|
|
5883
|
+
"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"
|
|
5884
|
+
},
|
|
5885
|
+
"closeOthers": {
|
|
5886
|
+
"type": "boolean",
|
|
5887
|
+
"fieldDescription": "\n\nDetermines if all other dialogs on the screen are closed when this one is opened\n\n"
|
|
5888
|
+
},
|
|
5889
|
+
"persistent": {
|
|
5890
|
+
"type": "boolean",
|
|
5891
|
+
"fieldDescription": "\n\nThis option, ignores the 'closeOthers' option\n\n"
|
|
5892
|
+
},
|
|
5893
|
+
"onHover": {
|
|
5894
|
+
"type": "boolean",
|
|
5895
|
+
"fieldDescription": "\n\nDetermines whether the inline-Dialog will show on a mouseOver or mouseClick of the trigger\n\n"
|
|
5896
|
+
},
|
|
5897
|
+
"isRelativeToMouse": {
|
|
5898
|
+
"type": "boolean",
|
|
5899
|
+
"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"
|
|
5836
5900
|
}
|
|
5837
5901
|
},
|
|
5838
|
-
"
|
|
5839
|
-
"key"
|
|
5840
|
-
],
|
|
5841
|
-
"shortClassName": "dialogModuleOptions",
|
|
5902
|
+
"shortClassName": "inlineDialogOptions",
|
|
5842
5903
|
"type": "object",
|
|
5843
|
-
"title": "Dialog
|
|
5844
|
-
"description": "\n\nOptions for
|
|
5904
|
+
"title": "Inline Dialog Options",
|
|
5905
|
+
"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
5906
|
}
|
|
5846
5907
|
]
|
|
5847
5908
|
},
|
|
@@ -5932,10 +5993,10 @@
|
|
|
5932
5993
|
"type": "object",
|
|
5933
5994
|
"anyOf": [
|
|
5934
5995
|
{
|
|
5935
|
-
"$ref": "
|
|
5996
|
+
"$ref": "#/definitions/singleCondition"
|
|
5936
5997
|
},
|
|
5937
5998
|
{
|
|
5938
|
-
"$ref": "
|
|
5999
|
+
"$ref": "#"
|
|
5939
6000
|
}
|
|
5940
6001
|
]
|
|
5941
6002
|
},
|
|
@@ -6010,10 +6071,10 @@
|
|
|
6010
6071
|
"type": "object",
|
|
6011
6072
|
"anyOf": [
|
|
6012
6073
|
{
|
|
6013
|
-
"$ref": "#/definitions/
|
|
6074
|
+
"$ref": "#/definitions/compositeCondition"
|
|
6014
6075
|
},
|
|
6015
6076
|
{
|
|
6016
|
-
"$ref": "#/definitions/
|
|
6077
|
+
"$ref": "#/definitions/singleCondition"
|
|
6017
6078
|
}
|
|
6018
6079
|
]
|
|
6019
6080
|
},
|
|
@@ -6493,38 +6554,6 @@
|
|
|
6493
6554
|
"items": {
|
|
6494
6555
|
"type": "object",
|
|
6495
6556
|
"anyOf": [
|
|
6496
|
-
{
|
|
6497
|
-
"properties": {
|
|
6498
|
-
"label": {
|
|
6499
|
-
"$ref": "#/definitions/i18nProperty",
|
|
6500
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6501
|
-
},
|
|
6502
|
-
"type": {
|
|
6503
|
-
"enum": [
|
|
6504
|
-
"button",
|
|
6505
|
-
"BUTTON"
|
|
6506
|
-
],
|
|
6507
|
-
"type": "string",
|
|
6508
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6509
|
-
},
|
|
6510
|
-
"key": {
|
|
6511
|
-
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6512
|
-
"maxLength": 100,
|
|
6513
|
-
"type": "string",
|
|
6514
|
-
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
6515
|
-
}
|
|
6516
|
-
},
|
|
6517
|
-
"required": [
|
|
6518
|
-
"label",
|
|
6519
|
-
"type",
|
|
6520
|
-
"key"
|
|
6521
|
-
],
|
|
6522
|
-
"additionalProperties": true,
|
|
6523
|
-
"shortClassName": "buttonControlBean",
|
|
6524
|
-
"type": "object",
|
|
6525
|
-
"title": "ButtonControl",
|
|
6526
|
-
"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"
|
|
6527
|
-
},
|
|
6528
6557
|
{
|
|
6529
6558
|
"properties": {
|
|
6530
6559
|
"controls": {
|
|
@@ -6681,6 +6710,38 @@
|
|
|
6681
6710
|
"type": "object",
|
|
6682
6711
|
"title": "TextControl",
|
|
6683
6712
|
"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"
|
|
6713
|
+
},
|
|
6714
|
+
{
|
|
6715
|
+
"properties": {
|
|
6716
|
+
"label": {
|
|
6717
|
+
"$ref": "#/definitions/i18nProperty",
|
|
6718
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
6719
|
+
},
|
|
6720
|
+
"type": {
|
|
6721
|
+
"enum": [
|
|
6722
|
+
"button",
|
|
6723
|
+
"BUTTON"
|
|
6724
|
+
],
|
|
6725
|
+
"type": "string",
|
|
6726
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
6727
|
+
},
|
|
6728
|
+
"key": {
|
|
6729
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
6730
|
+
"maxLength": 100,
|
|
6731
|
+
"type": "string",
|
|
6732
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
6733
|
+
}
|
|
6734
|
+
},
|
|
6735
|
+
"required": [
|
|
6736
|
+
"label",
|
|
6737
|
+
"type",
|
|
6738
|
+
"key"
|
|
6739
|
+
],
|
|
6740
|
+
"additionalProperties": true,
|
|
6741
|
+
"shortClassName": "buttonControlBean",
|
|
6742
|
+
"type": "object",
|
|
6743
|
+
"title": "ButtonControl",
|
|
6744
|
+
"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"
|
|
6684
6745
|
}
|
|
6685
6746
|
]
|
|
6686
6747
|
},
|
|
@@ -7031,6 +7092,38 @@
|
|
|
7031
7092
|
"title": "ControlGroup",
|
|
7032
7093
|
"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"
|
|
7033
7094
|
},
|
|
7095
|
+
{
|
|
7096
|
+
"properties": {
|
|
7097
|
+
"label": {
|
|
7098
|
+
"$ref": "#/definitions/i18nProperty",
|
|
7099
|
+
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7100
|
+
},
|
|
7101
|
+
"type": {
|
|
7102
|
+
"enum": [
|
|
7103
|
+
"button",
|
|
7104
|
+
"BUTTON"
|
|
7105
|
+
],
|
|
7106
|
+
"type": "string",
|
|
7107
|
+
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
7108
|
+
},
|
|
7109
|
+
"key": {
|
|
7110
|
+
"pattern": "^[a-zA-Z0-9-]+$",
|
|
7111
|
+
"maxLength": 100,
|
|
7112
|
+
"type": "string",
|
|
7113
|
+
"fieldDescription": "\n\nA key to identify the control. Keys must only contain alphanumeric characters and dashes, and must be unique\n\n"
|
|
7114
|
+
}
|
|
7115
|
+
},
|
|
7116
|
+
"required": [
|
|
7117
|
+
"label",
|
|
7118
|
+
"type",
|
|
7119
|
+
"key"
|
|
7120
|
+
],
|
|
7121
|
+
"additionalProperties": true,
|
|
7122
|
+
"shortClassName": "buttonControlBean",
|
|
7123
|
+
"type": "object",
|
|
7124
|
+
"title": "ButtonControl",
|
|
7125
|
+
"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"
|
|
7126
|
+
},
|
|
7034
7127
|
{
|
|
7035
7128
|
"properties": {
|
|
7036
7129
|
"macroParameter": {
|
|
@@ -7131,38 +7224,6 @@
|
|
|
7131
7224
|
"type": "object",
|
|
7132
7225
|
"title": "ToggleGroup",
|
|
7133
7226
|
"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"
|
|
7134
|
-
},
|
|
7135
|
-
{
|
|
7136
|
-
"properties": {
|
|
7137
|
-
"label": {
|
|
7138
|
-
"$ref": "#/definitions/i18nProperty",
|
|
7139
|
-
"fieldDescription": "\n\nText which will appear inside the button\n\n"
|
|
7140
|
-
},
|
|
7141
|
-
"type": {
|
|
7142
|
-
"enum": [
|
|
7143
|
-
"button",
|
|
7144
|
-
"BUTTON"
|
|
7145
|
-
],
|
|
7146
|
-
"type": "string",
|
|
7147
|
-
"fieldDescription": "\n\nThe type field must be set to 'button'\n\n"
|
|
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
|
-
}
|
|
7155
|
-
},
|
|
7156
|
-
"required": [
|
|
7157
|
-
"label",
|
|
7158
|
-
"type",
|
|
7159
|
-
"key"
|
|
7160
|
-
],
|
|
7161
|
-
"additionalProperties": true,
|
|
7162
|
-
"shortClassName": "buttonControlBean",
|
|
7163
|
-
"type": "object",
|
|
7164
|
-
"title": "ButtonControl",
|
|
7165
|
-
"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"
|
|
7166
7227
|
}
|
|
7167
7228
|
]
|
|
7168
7229
|
},
|
|
@@ -7398,22 +7459,6 @@
|
|
|
7398
7459
|
"type": "object",
|
|
7399
7460
|
"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
7461
|
"anyOf": [
|
|
7401
|
-
{
|
|
7402
|
-
"properties": {
|
|
7403
|
-
"key": {
|
|
7404
|
-
"maxLength": 100,
|
|
7405
|
-
"type": "string",
|
|
7406
|
-
"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"
|
|
7407
|
-
}
|
|
7408
|
-
},
|
|
7409
|
-
"required": [
|
|
7410
|
-
"key"
|
|
7411
|
-
],
|
|
7412
|
-
"shortClassName": "dialogModuleOptions",
|
|
7413
|
-
"type": "object",
|
|
7414
|
-
"title": "Dialog Module Options",
|
|
7415
|
-
"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"
|
|
7416
|
-
},
|
|
7417
7462
|
{
|
|
7418
7463
|
"properties": {
|
|
7419
7464
|
"offsetX": {
|
|
@@ -7505,6 +7550,22 @@
|
|
|
7505
7550
|
"type": "object",
|
|
7506
7551
|
"title": "Dialog Options",
|
|
7507
7552
|
"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"
|
|
7553
|
+
},
|
|
7554
|
+
{
|
|
7555
|
+
"properties": {
|
|
7556
|
+
"key": {
|
|
7557
|
+
"maxLength": 100,
|
|
7558
|
+
"type": "string",
|
|
7559
|
+
"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"
|
|
7560
|
+
}
|
|
7561
|
+
},
|
|
7562
|
+
"required": [
|
|
7563
|
+
"key"
|
|
7564
|
+
],
|
|
7565
|
+
"shortClassName": "dialogModuleOptions",
|
|
7566
|
+
"type": "object",
|
|
7567
|
+
"title": "Dialog Module Options",
|
|
7568
|
+
"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"
|
|
7508
7569
|
}
|
|
7509
7570
|
]
|
|
7510
7571
|
},
|