@genesislcap/foundation-forms 15.20.1 → 15.20.2-grid-pro-datasource-fix.1

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.
Files changed (2) hide show
  1. package/dist/custom-elements.json +419 -419
  2. package/package.json +14 -14
@@ -1719,460 +1719,134 @@
1719
1719
  },
1720
1720
  {
1721
1721
  "kind": "javascript-module",
1722
- "path": "src/jsonforms/json-forms.ts",
1722
+ "path": "src/utils/confirmation-dialog-utils.ts",
1723
+ "declarations": [],
1724
+ "exports": []
1725
+ },
1726
+ {
1727
+ "kind": "javascript-module",
1728
+ "path": "src/utils/csv-parser.ts",
1723
1729
  "declarations": [
1724
1730
  {
1725
- "kind": "class",
1726
- "description": "JSON Forms host element for schema-driven UI.",
1727
- "name": "JSONForms",
1728
- "members": [
1731
+ "kind": "function",
1732
+ "name": "parseCsv",
1733
+ "return": {
1734
+ "type": {
1735
+ "text": ""
1736
+ }
1737
+ },
1738
+ "parameters": [
1729
1739
  {
1730
- "kind": "field",
1731
- "name": "_submitted",
1740
+ "name": "content",
1732
1741
  "type": {
1733
- "text": "boolean"
1742
+ "text": "string"
1734
1743
  },
1735
- "privacy": "private",
1736
- "default": "false"
1737
- },
1744
+ "description": "The CSV content as a string"
1745
+ }
1746
+ ],
1747
+ "description": "Parses a CSV string into headers and rows using PapaParse.\nHandles quoted fields, escaped quotes, empty values, and mixed line endings.",
1748
+ "privacy": "public"
1749
+ },
1750
+ {
1751
+ "kind": "function",
1752
+ "name": "mapCsvToSchema",
1753
+ "return": {
1754
+ "type": {
1755
+ "text": ""
1756
+ }
1757
+ },
1758
+ "parameters": [
1738
1759
  {
1739
- "kind": "field",
1740
- "name": "serverErrors",
1760
+ "name": "csvRows",
1741
1761
  "type": {
1742
- "text": "ErrorObject[]"
1762
+ "text": "Record<string, string>[]"
1743
1763
  },
1744
- "privacy": "private",
1745
- "default": "[]"
1746
- },
1747
- {
1748
- "kind": "field",
1749
- "name": "submitted",
1750
- "type": {
1751
- "text": "boolean"
1752
- }
1753
- },
1754
- {
1755
- "kind": "field",
1756
- "name": "prefix"
1757
- },
1758
- {
1759
- "kind": "method",
1760
- "name": "prefixChanged"
1761
- },
1762
- {
1763
- "kind": "field",
1764
- "name": "jsonforms"
1765
- },
1766
- {
1767
- "kind": "field",
1768
- "name": "i18n"
1769
- },
1770
- {
1771
- "kind": "field",
1772
- "name": "uichemaToUse"
1773
- },
1774
- {
1775
- "kind": "field",
1776
- "name": "schema"
1777
- },
1778
- {
1779
- "kind": "method",
1780
- "name": "schemaChanged"
1764
+ "description": "The parsed CSV rows"
1781
1765
  },
1782
1766
  {
1783
- "kind": "field",
1784
- "name": "uischema",
1767
+ "name": "schema",
1785
1768
  "type": {
1786
- "text": "UISchemaElement"
1787
- }
1788
- },
1789
- {
1790
- "kind": "method",
1791
- "name": "uischemaChanged"
1792
- },
1793
- {
1794
- "kind": "field",
1795
- "name": "data"
1796
- },
1797
- {
1798
- "kind": "method",
1799
- "name": "dataChanged"
1769
+ "text": "JSONSchema7 | undefined"
1770
+ },
1771
+ "description": "The JSON schema defining the fields"
1800
1772
  },
1801
1773
  {
1802
- "kind": "field",
1803
- "name": "renderers",
1774
+ "name": "uiSchema",
1775
+ "optional": true,
1804
1776
  "type": {
1805
- "text": "JsonFormsRendererRegistryEntry[]"
1806
- }
1807
- },
1808
- {
1809
- "kind": "method",
1810
- "name": "renderersChanged"
1811
- },
1777
+ "text": "UiSchema"
1778
+ },
1779
+ "description": "Optional UI schema to map labels to field names on import"
1780
+ }
1781
+ ],
1782
+ "description": "Maps CSV rows to schema fields with case-insensitive matching.\nWhen uiSchema is provided, CSV headers can also match UI schema labels.\nConverts values to appropriate types based on schema definition.",
1783
+ "privacy": "public"
1784
+ },
1785
+ {
1786
+ "kind": "function",
1787
+ "name": "generateCsvTemplate",
1788
+ "return": {
1789
+ "type": {
1790
+ "text": ""
1791
+ }
1792
+ },
1793
+ "parameters": [
1812
1794
  {
1813
- "kind": "field",
1814
- "name": "validationMode",
1795
+ "name": "schema",
1815
1796
  "type": {
1816
- "text": "ValidationMode"
1817
- }
1818
- },
1819
- {
1820
- "kind": "method",
1821
- "name": "validationModeChanged"
1797
+ "text": "JSONSchema7 | undefined"
1798
+ },
1799
+ "description": "The JSON schema defining the fields"
1822
1800
  },
1823
1801
  {
1824
- "kind": "field",
1825
- "name": "ajv",
1802
+ "name": "uiSchema",
1803
+ "optional": true,
1826
1804
  "type": {
1827
- "text": "Ajv"
1828
- }
1829
- },
1830
- {
1831
- "kind": "method",
1832
- "name": "ajvChanged"
1805
+ "text": "UiSchema"
1806
+ },
1807
+ "description": "Optional UI schema to determine field order and visibility"
1833
1808
  },
1834
1809
  {
1835
- "kind": "field",
1836
- "name": "readonly",
1810
+ "name": "includeOptionalFields",
1811
+ "default": "true",
1837
1812
  "type": {
1838
1813
  "text": "boolean"
1839
- }
1840
- },
1841
- {
1842
- "kind": "method",
1843
- "name": "readonlyChanged"
1844
- },
1845
- {
1846
- "kind": "field",
1847
- "name": "config",
1848
- "type": {
1849
- "text": "any"
1850
- }
1851
- },
1852
- {
1853
- "kind": "method",
1854
- "name": "configChanged"
1855
- },
1856
- {
1857
- "kind": "field",
1858
- "name": "rowSubmitStatuses",
1859
- "type": {
1860
- "text": "Map<number, BulkRowStatus>"
1861
1814
  },
1862
- "default": "new Map()",
1863
- "description": "Row submit statuses for bulk insert mode.\nPassed from the parent foundation-form."
1864
- },
1865
- {
1866
- "kind": "method",
1867
- "name": "rowSubmitStatusesChanged"
1815
+ "description": "Whether to include optional fields when no UI schema (default: true)"
1868
1816
  },
1869
1817
  {
1870
- "kind": "field",
1871
- "name": "bulkInsert",
1818
+ "name": "includeBom",
1819
+ "default": "true",
1872
1820
  "type": {
1873
1821
  "text": "boolean"
1874
1822
  },
1875
- "default": "false",
1876
- "description": "Whether the form is in bulk insert mode.\nPassed from the parent foundation-form."
1877
- },
1878
- {
1879
- "kind": "method",
1880
- "name": "bulkInsertChanged"
1881
- },
1823
+ "description": "Whether to prepend UTF-8 BOM for Excel compatibility (default: true)"
1824
+ }
1825
+ ],
1826
+ "description": "Generates a CSV template string with headers and sample data based on JSON schema.\nIf a UI schema is provided, it will be used to determine which fields to include\nand in what order. Hidden fields in the UI schema will be excluded.",
1827
+ "privacy": "public"
1828
+ },
1829
+ {
1830
+ "kind": "function",
1831
+ "name": "downloadCsvTemplate",
1832
+ "return": {
1833
+ "type": {
1834
+ "text": "void"
1835
+ }
1836
+ },
1837
+ "parameters": [
1882
1838
  {
1883
- "kind": "field",
1884
- "name": "serverFieldErrors",
1839
+ "name": "csvContent",
1885
1840
  "type": {
1886
- "text": "ErrorObject[]"
1841
+ "text": "string"
1887
1842
  },
1888
- "default": "[]",
1889
- "description": "Server-side field validation errors from the parent foundation-form.\nSynced into internal state when the binding changes."
1890
- },
1891
- {
1892
- "kind": "method",
1893
- "name": "serverFieldErrorsChanged"
1843
+ "description": "The CSV content to download"
1894
1844
  },
1895
1845
  {
1896
- "kind": "field",
1897
- "name": "props",
1846
+ "name": "fileName",
1847
+ "default": "'template.csv'",
1898
1848
  "type": {
1899
- "text": "RendererProps"
1900
- },
1901
- "readonly": true
1902
- },
1903
- {
1904
- "kind": "field",
1905
- "name": "dispatch"
1906
- },
1907
- {
1908
- "kind": "method",
1909
- "name": "setServerErrors",
1910
- "parameters": [
1911
- {
1912
- "name": "errors",
1913
- "type": {
1914
- "text": "ErrorObject[]"
1915
- }
1916
- }
1917
- ],
1918
- "description": "Applies server-side validation errors returned from an EVENT_NACK response.\nErrors are merged into `core.additionalErrors` and shown inline on fields.",
1919
- "privacy": "public"
1920
- },
1921
- {
1922
- "kind": "method",
1923
- "name": "clearServerErrors",
1924
- "description": "Clears all server-side validation errors from the form.",
1925
- "privacy": "public"
1926
- },
1927
- {
1928
- "kind": "method",
1929
- "name": "buildAdditionalErrors",
1930
- "privacy": "private",
1931
- "return": {
1932
- "type": {
1933
- "text": "ErrorObject[]"
1934
- }
1935
- },
1936
- "parameters": [
1937
- {
1938
- "name": "uischema",
1939
- "type": {
1940
- "text": "UISchemaElement"
1941
- }
1942
- },
1943
- {
1944
- "name": "data",
1945
- "type": {
1946
- "text": "any"
1947
- }
1948
- }
1949
- ]
1950
- },
1951
- {
1952
- "kind": "method",
1953
- "name": "applyAdditionalErrorsToCore",
1954
- "privacy": "private",
1955
- "parameters": [
1956
- {
1957
- "name": "nextCore",
1958
- "type": {
1959
- "text": "JsonFormsCore"
1960
- }
1961
- },
1962
- {
1963
- "name": "changedPath",
1964
- "optional": true,
1965
- "type": {
1966
- "text": "string"
1967
- }
1968
- }
1969
- ]
1970
- },
1971
- {
1972
- "kind": "method",
1973
- "name": "refreshAdditionalErrors",
1974
- "privacy": "private"
1975
- },
1976
- {
1977
- "kind": "field",
1978
- "name": "validate",
1979
- "description": "Performs client-side validation by running the validator defined in the UI schema.",
1980
- "parameters": [
1981
- {
1982
- "description": "the UI schema",
1983
- "name": "uischema"
1984
- },
1985
- {
1986
- "description": "the data to validate against (defaults to the current core data)",
1987
- "name": "data"
1988
- }
1989
- ],
1990
- "return": {
1991
- "type": {
1992
- "text": ""
1993
- }
1994
- }
1995
- },
1996
- {
1997
- "kind": "method",
1998
- "name": "copyUISchemaToClipboard"
1999
- }
2000
- ],
2001
- "events": [
2002
- {
2003
- "description": "Bubbles from nested dispatch-renderer when a control emits change (e.g. multiselect)",
2004
- "name": "change"
2005
- },
2006
- {
2007
- "description": "Fired when bound form data changes. detail: `FormDataChangeEventDetail`",
2008
- "name": "data-change"
2009
- }
2010
- ],
2011
- "attributes": [
2012
- {
2013
- "type": {
2014
- "text": "boolean"
2015
- },
2016
- "fieldName": "readonly"
2017
- }
2018
- ],
2019
- "superclass": {
2020
- "name": "FASTElement",
2021
- "package": "@microsoft/fast-element"
2022
- },
2023
- "tagName": "json-forms",
2024
- "customElement": true
2025
- }
2026
- ],
2027
- "exports": [
2028
- {
2029
- "kind": "js",
2030
- "name": "JSONForms",
2031
- "declaration": {
2032
- "name": "JSONForms",
2033
- "module": "src/jsonforms/json-forms.ts"
2034
- }
2035
- },
2036
- {
2037
- "kind": "custom-element-definition",
2038
- "name": "json-forms",
2039
- "declaration": {
2040
- "name": "JSONForms",
2041
- "module": "src/jsonforms/json-forms.ts"
2042
- }
2043
- }
2044
- ]
2045
- },
2046
- {
2047
- "kind": "javascript-module",
2048
- "path": "src/utils/confirmation-dialog-utils.ts",
2049
- "declarations": [],
2050
- "exports": []
2051
- },
2052
- {
2053
- "kind": "javascript-module",
2054
- "path": "src/utils/csv-parser.ts",
2055
- "declarations": [
2056
- {
2057
- "kind": "function",
2058
- "name": "parseCsv",
2059
- "return": {
2060
- "type": {
2061
- "text": ""
2062
- }
2063
- },
2064
- "parameters": [
2065
- {
2066
- "name": "content",
2067
- "type": {
2068
- "text": "string"
2069
- },
2070
- "description": "The CSV content as a string"
2071
- }
2072
- ],
2073
- "description": "Parses a CSV string into headers and rows using PapaParse.\nHandles quoted fields, escaped quotes, empty values, and mixed line endings.",
2074
- "privacy": "public"
2075
- },
2076
- {
2077
- "kind": "function",
2078
- "name": "mapCsvToSchema",
2079
- "return": {
2080
- "type": {
2081
- "text": ""
2082
- }
2083
- },
2084
- "parameters": [
2085
- {
2086
- "name": "csvRows",
2087
- "type": {
2088
- "text": "Record<string, string>[]"
2089
- },
2090
- "description": "The parsed CSV rows"
2091
- },
2092
- {
2093
- "name": "schema",
2094
- "type": {
2095
- "text": "JSONSchema7 | undefined"
2096
- },
2097
- "description": "The JSON schema defining the fields"
2098
- },
2099
- {
2100
- "name": "uiSchema",
2101
- "optional": true,
2102
- "type": {
2103
- "text": "UiSchema"
2104
- },
2105
- "description": "Optional UI schema to map labels to field names on import"
2106
- }
2107
- ],
2108
- "description": "Maps CSV rows to schema fields with case-insensitive matching.\nWhen uiSchema is provided, CSV headers can also match UI schema labels.\nConverts values to appropriate types based on schema definition.",
2109
- "privacy": "public"
2110
- },
2111
- {
2112
- "kind": "function",
2113
- "name": "generateCsvTemplate",
2114
- "return": {
2115
- "type": {
2116
- "text": ""
2117
- }
2118
- },
2119
- "parameters": [
2120
- {
2121
- "name": "schema",
2122
- "type": {
2123
- "text": "JSONSchema7 | undefined"
2124
- },
2125
- "description": "The JSON schema defining the fields"
2126
- },
2127
- {
2128
- "name": "uiSchema",
2129
- "optional": true,
2130
- "type": {
2131
- "text": "UiSchema"
2132
- },
2133
- "description": "Optional UI schema to determine field order and visibility"
2134
- },
2135
- {
2136
- "name": "includeOptionalFields",
2137
- "default": "true",
2138
- "type": {
2139
- "text": "boolean"
2140
- },
2141
- "description": "Whether to include optional fields when no UI schema (default: true)"
2142
- },
2143
- {
2144
- "name": "includeBom",
2145
- "default": "true",
2146
- "type": {
2147
- "text": "boolean"
2148
- },
2149
- "description": "Whether to prepend UTF-8 BOM for Excel compatibility (default: true)"
2150
- }
2151
- ],
2152
- "description": "Generates a CSV template string with headers and sample data based on JSON schema.\nIf a UI schema is provided, it will be used to determine which fields to include\nand in what order. Hidden fields in the UI schema will be excluded.",
2153
- "privacy": "public"
2154
- },
2155
- {
2156
- "kind": "function",
2157
- "name": "downloadCsvTemplate",
2158
- "return": {
2159
- "type": {
2160
- "text": "void"
2161
- }
2162
- },
2163
- "parameters": [
2164
- {
2165
- "name": "csvContent",
2166
- "type": {
2167
- "text": "string"
2168
- },
2169
- "description": "The CSV content to download"
2170
- },
2171
- {
2172
- "name": "fileName",
2173
- "default": "'template.csv'",
2174
- "type": {
2175
- "text": "string"
1849
+ "text": "string"
2176
1850
  },
2177
1851
  "description": "The name for the downloaded file (default: 'template.csv')"
2178
1852
  }
@@ -2559,6 +2233,332 @@
2559
2233
  }
2560
2234
  ]
2561
2235
  },
2236
+ {
2237
+ "kind": "javascript-module",
2238
+ "path": "src/jsonforms/json-forms.ts",
2239
+ "declarations": [
2240
+ {
2241
+ "kind": "class",
2242
+ "description": "JSON Forms host element for schema-driven UI.",
2243
+ "name": "JSONForms",
2244
+ "members": [
2245
+ {
2246
+ "kind": "field",
2247
+ "name": "_submitted",
2248
+ "type": {
2249
+ "text": "boolean"
2250
+ },
2251
+ "privacy": "private",
2252
+ "default": "false"
2253
+ },
2254
+ {
2255
+ "kind": "field",
2256
+ "name": "serverErrors",
2257
+ "type": {
2258
+ "text": "ErrorObject[]"
2259
+ },
2260
+ "privacy": "private",
2261
+ "default": "[]"
2262
+ },
2263
+ {
2264
+ "kind": "field",
2265
+ "name": "submitted",
2266
+ "type": {
2267
+ "text": "boolean"
2268
+ }
2269
+ },
2270
+ {
2271
+ "kind": "field",
2272
+ "name": "prefix"
2273
+ },
2274
+ {
2275
+ "kind": "method",
2276
+ "name": "prefixChanged"
2277
+ },
2278
+ {
2279
+ "kind": "field",
2280
+ "name": "jsonforms"
2281
+ },
2282
+ {
2283
+ "kind": "field",
2284
+ "name": "i18n"
2285
+ },
2286
+ {
2287
+ "kind": "field",
2288
+ "name": "uichemaToUse"
2289
+ },
2290
+ {
2291
+ "kind": "field",
2292
+ "name": "schema"
2293
+ },
2294
+ {
2295
+ "kind": "method",
2296
+ "name": "schemaChanged"
2297
+ },
2298
+ {
2299
+ "kind": "field",
2300
+ "name": "uischema",
2301
+ "type": {
2302
+ "text": "UISchemaElement"
2303
+ }
2304
+ },
2305
+ {
2306
+ "kind": "method",
2307
+ "name": "uischemaChanged"
2308
+ },
2309
+ {
2310
+ "kind": "field",
2311
+ "name": "data"
2312
+ },
2313
+ {
2314
+ "kind": "method",
2315
+ "name": "dataChanged"
2316
+ },
2317
+ {
2318
+ "kind": "field",
2319
+ "name": "renderers",
2320
+ "type": {
2321
+ "text": "JsonFormsRendererRegistryEntry[]"
2322
+ }
2323
+ },
2324
+ {
2325
+ "kind": "method",
2326
+ "name": "renderersChanged"
2327
+ },
2328
+ {
2329
+ "kind": "field",
2330
+ "name": "validationMode",
2331
+ "type": {
2332
+ "text": "ValidationMode"
2333
+ }
2334
+ },
2335
+ {
2336
+ "kind": "method",
2337
+ "name": "validationModeChanged"
2338
+ },
2339
+ {
2340
+ "kind": "field",
2341
+ "name": "ajv",
2342
+ "type": {
2343
+ "text": "Ajv"
2344
+ }
2345
+ },
2346
+ {
2347
+ "kind": "method",
2348
+ "name": "ajvChanged"
2349
+ },
2350
+ {
2351
+ "kind": "field",
2352
+ "name": "readonly",
2353
+ "type": {
2354
+ "text": "boolean"
2355
+ }
2356
+ },
2357
+ {
2358
+ "kind": "method",
2359
+ "name": "readonlyChanged"
2360
+ },
2361
+ {
2362
+ "kind": "field",
2363
+ "name": "config",
2364
+ "type": {
2365
+ "text": "any"
2366
+ }
2367
+ },
2368
+ {
2369
+ "kind": "method",
2370
+ "name": "configChanged"
2371
+ },
2372
+ {
2373
+ "kind": "field",
2374
+ "name": "rowSubmitStatuses",
2375
+ "type": {
2376
+ "text": "Map<number, BulkRowStatus>"
2377
+ },
2378
+ "default": "new Map()",
2379
+ "description": "Row submit statuses for bulk insert mode.\nPassed from the parent foundation-form."
2380
+ },
2381
+ {
2382
+ "kind": "method",
2383
+ "name": "rowSubmitStatusesChanged"
2384
+ },
2385
+ {
2386
+ "kind": "field",
2387
+ "name": "bulkInsert",
2388
+ "type": {
2389
+ "text": "boolean"
2390
+ },
2391
+ "default": "false",
2392
+ "description": "Whether the form is in bulk insert mode.\nPassed from the parent foundation-form."
2393
+ },
2394
+ {
2395
+ "kind": "method",
2396
+ "name": "bulkInsertChanged"
2397
+ },
2398
+ {
2399
+ "kind": "field",
2400
+ "name": "serverFieldErrors",
2401
+ "type": {
2402
+ "text": "ErrorObject[]"
2403
+ },
2404
+ "default": "[]",
2405
+ "description": "Server-side field validation errors from the parent foundation-form.\nSynced into internal state when the binding changes."
2406
+ },
2407
+ {
2408
+ "kind": "method",
2409
+ "name": "serverFieldErrorsChanged"
2410
+ },
2411
+ {
2412
+ "kind": "field",
2413
+ "name": "props",
2414
+ "type": {
2415
+ "text": "RendererProps"
2416
+ },
2417
+ "readonly": true
2418
+ },
2419
+ {
2420
+ "kind": "field",
2421
+ "name": "dispatch"
2422
+ },
2423
+ {
2424
+ "kind": "method",
2425
+ "name": "setServerErrors",
2426
+ "parameters": [
2427
+ {
2428
+ "name": "errors",
2429
+ "type": {
2430
+ "text": "ErrorObject[]"
2431
+ }
2432
+ }
2433
+ ],
2434
+ "description": "Applies server-side validation errors returned from an EVENT_NACK response.\nErrors are merged into `core.additionalErrors` and shown inline on fields.",
2435
+ "privacy": "public"
2436
+ },
2437
+ {
2438
+ "kind": "method",
2439
+ "name": "clearServerErrors",
2440
+ "description": "Clears all server-side validation errors from the form.",
2441
+ "privacy": "public"
2442
+ },
2443
+ {
2444
+ "kind": "method",
2445
+ "name": "buildAdditionalErrors",
2446
+ "privacy": "private",
2447
+ "return": {
2448
+ "type": {
2449
+ "text": "ErrorObject[]"
2450
+ }
2451
+ },
2452
+ "parameters": [
2453
+ {
2454
+ "name": "uischema",
2455
+ "type": {
2456
+ "text": "UISchemaElement"
2457
+ }
2458
+ },
2459
+ {
2460
+ "name": "data",
2461
+ "type": {
2462
+ "text": "any"
2463
+ }
2464
+ }
2465
+ ]
2466
+ },
2467
+ {
2468
+ "kind": "method",
2469
+ "name": "applyAdditionalErrorsToCore",
2470
+ "privacy": "private",
2471
+ "parameters": [
2472
+ {
2473
+ "name": "nextCore",
2474
+ "type": {
2475
+ "text": "JsonFormsCore"
2476
+ }
2477
+ },
2478
+ {
2479
+ "name": "changedPath",
2480
+ "optional": true,
2481
+ "type": {
2482
+ "text": "string"
2483
+ }
2484
+ }
2485
+ ]
2486
+ },
2487
+ {
2488
+ "kind": "method",
2489
+ "name": "refreshAdditionalErrors",
2490
+ "privacy": "private"
2491
+ },
2492
+ {
2493
+ "kind": "field",
2494
+ "name": "validate",
2495
+ "description": "Performs client-side validation by running the validator defined in the UI schema.",
2496
+ "parameters": [
2497
+ {
2498
+ "description": "the UI schema",
2499
+ "name": "uischema"
2500
+ },
2501
+ {
2502
+ "description": "the data to validate against (defaults to the current core data)",
2503
+ "name": "data"
2504
+ }
2505
+ ],
2506
+ "return": {
2507
+ "type": {
2508
+ "text": ""
2509
+ }
2510
+ }
2511
+ },
2512
+ {
2513
+ "kind": "method",
2514
+ "name": "copyUISchemaToClipboard"
2515
+ }
2516
+ ],
2517
+ "events": [
2518
+ {
2519
+ "description": "Bubbles from nested dispatch-renderer when a control emits change (e.g. multiselect)",
2520
+ "name": "change"
2521
+ },
2522
+ {
2523
+ "description": "Fired when bound form data changes. detail: `FormDataChangeEventDetail`",
2524
+ "name": "data-change"
2525
+ }
2526
+ ],
2527
+ "attributes": [
2528
+ {
2529
+ "type": {
2530
+ "text": "boolean"
2531
+ },
2532
+ "fieldName": "readonly"
2533
+ }
2534
+ ],
2535
+ "superclass": {
2536
+ "name": "FASTElement",
2537
+ "package": "@microsoft/fast-element"
2538
+ },
2539
+ "tagName": "json-forms",
2540
+ "customElement": true
2541
+ }
2542
+ ],
2543
+ "exports": [
2544
+ {
2545
+ "kind": "js",
2546
+ "name": "JSONForms",
2547
+ "declaration": {
2548
+ "name": "JSONForms",
2549
+ "module": "src/jsonforms/json-forms.ts"
2550
+ }
2551
+ },
2552
+ {
2553
+ "kind": "custom-element-definition",
2554
+ "name": "json-forms",
2555
+ "declaration": {
2556
+ "name": "JSONForms",
2557
+ "module": "src/jsonforms/json-forms.ts"
2558
+ }
2559
+ }
2560
+ ]
2561
+ },
2562
2562
  {
2563
2563
  "kind": "javascript-module",
2564
2564
  "path": "src/jsonforms/renderers/ArrayListWrapperRenderer.ts",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-forms",
3
3
  "description": "Genesis Foundation Forms",
4
- "version": "15.20.1",
4
+ "version": "15.20.2-grid-pro-datasource-fix.1",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -59,13 +59,13 @@
59
59
  }
60
60
  },
61
61
  "devDependencies": {
62
- "@genesislcap/foundation-testing": "15.20.1",
63
- "@genesislcap/genx": "15.20.1",
64
- "@genesislcap/rollup-builder": "15.20.1",
65
- "@genesislcap/ts-builder": "15.20.1",
66
- "@genesislcap/uvu-playwright-builder": "15.20.1",
67
- "@genesislcap/vite-builder": "15.20.1",
68
- "@genesislcap/webpack-builder": "15.20.1",
62
+ "@genesislcap/foundation-testing": "15.20.2-grid-pro-datasource-fix.1",
63
+ "@genesislcap/genx": "15.20.2-grid-pro-datasource-fix.1",
64
+ "@genesislcap/rollup-builder": "15.20.2-grid-pro-datasource-fix.1",
65
+ "@genesislcap/ts-builder": "15.20.2-grid-pro-datasource-fix.1",
66
+ "@genesislcap/uvu-playwright-builder": "15.20.2-grid-pro-datasource-fix.1",
67
+ "@genesislcap/vite-builder": "15.20.2-grid-pro-datasource-fix.1",
68
+ "@genesislcap/webpack-builder": "15.20.2-grid-pro-datasource-fix.1",
69
69
  "@types/json-schema": "^7.0.11",
70
70
  "@types/papaparse": "^5.3.14"
71
71
  },
@@ -82,12 +82,12 @@
82
82
  }
83
83
  },
84
84
  "dependencies": {
85
- "@genesislcap/foundation-comms": "15.20.1",
86
- "@genesislcap/foundation-criteria": "15.20.1",
87
- "@genesislcap/foundation-logger": "15.20.1",
88
- "@genesislcap/foundation-notifications": "15.20.1",
89
- "@genesislcap/foundation-ui": "15.20.1",
90
- "@genesislcap/foundation-utils": "15.20.1",
85
+ "@genesislcap/foundation-comms": "15.20.2-grid-pro-datasource-fix.1",
86
+ "@genesislcap/foundation-criteria": "15.20.2-grid-pro-datasource-fix.1",
87
+ "@genesislcap/foundation-logger": "15.20.2-grid-pro-datasource-fix.1",
88
+ "@genesislcap/foundation-notifications": "15.20.2-grid-pro-datasource-fix.1",
89
+ "@genesislcap/foundation-ui": "15.20.2-grid-pro-datasource-fix.1",
90
+ "@genesislcap/foundation-utils": "15.20.2-grid-pro-datasource-fix.1",
91
91
  "@json-schema-tools/dereferencer": "^1.6.1",
92
92
  "@jsonforms/core": "^3.2.1",
93
93
  "@microsoft/fast-components": "2.30.6",