@ni/ok-components 1.3.6 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/dist/all-components-bundle.js +962 -433
  2. package/dist/all-components-bundle.js.map +1 -1
  3. package/dist/all-components-bundle.min.js +5218 -5078
  4. package/dist/all-components-bundle.min.js.map +1 -1
  5. package/dist/custom-elements.json +569 -33
  6. package/dist/custom-elements.md +85 -12
  7. package/dist/esm/ts/all-ts.d.ts +1 -0
  8. package/dist/esm/ts/all-ts.js +1 -0
  9. package/dist/esm/ts/all-ts.js.map +1 -1
  10. package/dist/esm/ts/table-column/breakpoint/cell-view/index.d.ts +73 -0
  11. package/dist/esm/ts/table-column/breakpoint/cell-view/index.js +305 -0
  12. package/dist/esm/ts/table-column/breakpoint/cell-view/index.js.map +1 -0
  13. package/dist/esm/ts/table-column/breakpoint/cell-view/styles.d.ts +1 -0
  14. package/dist/esm/ts/table-column/breakpoint/cell-view/styles.js +48 -0
  15. package/dist/esm/ts/table-column/breakpoint/cell-view/styles.js.map +1 -0
  16. package/dist/esm/ts/table-column/breakpoint/cell-view/template.d.ts +2 -0
  17. package/dist/esm/ts/table-column/breakpoint/cell-view/template.js +55 -0
  18. package/dist/esm/ts/table-column/breakpoint/cell-view/template.js.map +1 -0
  19. package/dist/esm/ts/table-column/breakpoint/index.d.ts +36 -0
  20. package/dist/esm/ts/table-column/breakpoint/index.js +101 -0
  21. package/dist/esm/ts/table-column/breakpoint/index.js.map +1 -0
  22. package/dist/esm/ts/table-column/breakpoint/template.d.ts +2 -0
  23. package/dist/esm/ts/table-column/breakpoint/template.js +8 -0
  24. package/dist/esm/ts/table-column/breakpoint/template.js.map +1 -0
  25. package/dist/esm/ts/table-column/breakpoint/testing/ts-table-column-breakpoint.pageobject.d.ts +23 -0
  26. package/dist/esm/ts/table-column/breakpoint/testing/ts-table-column-breakpoint.pageobject.js +69 -0
  27. package/dist/esm/ts/table-column/breakpoint/testing/ts-table-column-breakpoint.pageobject.js.map +1 -0
  28. package/dist/esm/ts/table-column/breakpoint/types.d.ts +32 -0
  29. package/dist/esm/ts/table-column/breakpoint/types.js +16 -0
  30. package/dist/esm/ts/table-column/breakpoint/types.js.map +1 -0
  31. package/package.json +2 -2
@@ -10,7 +10,7 @@
10
10
  },
11
11
  {
12
12
  "kind": "javascript-module",
13
- "path": "src/ex/all-ex.ts",
13
+ "path": "src/ts/all-ts.ts",
14
14
  "declarations": [],
15
15
  "exports": []
16
16
  },
@@ -22,47 +22,74 @@
22
22
  },
23
23
  {
24
24
  "kind": "javascript-module",
25
- "path": "src/ts/all-ts.ts",
25
+ "path": "src/ex/all-ex.ts",
26
26
  "declarations": [],
27
27
  "exports": []
28
28
  },
29
29
  {
30
30
  "kind": "javascript-module",
31
- "path": "src/ex/button/index.ts",
31
+ "path": "src/ts/icon-dynamic/index.ts",
32
32
  "declarations": [
33
33
  {
34
34
  "kind": "class",
35
- "description": "A Ok demo component (not for production use)",
36
- "name": "ExButton",
35
+ "description": "Base class for dynamic icons. Not intended to be used directly, instead use to register dynamic icons:\n```\ncustomElements.get('ok-ts-icon-dynamic').registerIconDynamic('ok-ts-icon-dynamic-awesome', '<img data uri or arbitrary url>');\n```\nAfter calling successfully, the icon can be used like any other icon:\n```\n<ok-ts-icon-dynamic-awesome></ok-ts-icon-dynamic-awesome>\n<nimble-mapping-icon icon=\"ok-ts-icon-dynamic-awesome\"></nimble-mapping-icon>\n```",
36
+ "name": "TsIconDynamic",
37
+ "members": [
38
+ {
39
+ "kind": "method",
40
+ "name": "registerIconDynamic",
41
+ "privacy": "public",
42
+ "static": true,
43
+ "return": {
44
+ "type": {
45
+ "text": "void"
46
+ }
47
+ },
48
+ "parameters": [
49
+ {
50
+ "name": "tagName",
51
+ "type": {
52
+ "text": "string"
53
+ }
54
+ },
55
+ {
56
+ "name": "url",
57
+ "type": {
58
+ "text": "string"
59
+ }
60
+ }
61
+ ]
62
+ }
63
+ ],
37
64
  "superclass": {
38
- "name": "FoundationElement",
39
- "package": "@ni/fast-foundation"
65
+ "name": "Icon",
66
+ "package": "@ni/nimble-components/dist/esm/icon-base"
40
67
  }
41
68
  },
42
69
  {
43
70
  "kind": "variable",
44
- "name": "exButtonTag",
71
+ "name": "tsIconDynamicTag",
45
72
  "type": {
46
73
  "text": "string"
47
74
  },
48
- "default": "'ok-ex-button'"
75
+ "default": "'ok-ts-icon-dynamic'"
49
76
  }
50
77
  ],
51
78
  "exports": [
52
79
  {
53
80
  "kind": "js",
54
- "name": "ExButton",
81
+ "name": "TsIconDynamic",
55
82
  "declaration": {
56
- "name": "ExButton",
57
- "module": "src/ex/button/index.ts"
83
+ "name": "TsIconDynamic",
84
+ "module": "src/ts/icon-dynamic/index.ts"
58
85
  }
59
86
  },
60
87
  {
61
88
  "kind": "js",
62
- "name": "exButtonTag",
89
+ "name": "tsIconDynamicTag",
63
90
  "declaration": {
64
- "name": "exButtonTag",
65
- "module": "src/ex/button/index.ts"
91
+ "name": "tsIconDynamicTag",
92
+ "module": "src/ts/icon-dynamic/index.ts"
66
93
  }
67
94
  }
68
95
  ]
@@ -1678,18 +1705,82 @@
1678
1705
  },
1679
1706
  {
1680
1707
  "kind": "javascript-module",
1681
- "path": "src/ts/icon-dynamic/index.ts",
1708
+ "path": "src/ex/button/index.ts",
1682
1709
  "declarations": [
1683
1710
  {
1684
1711
  "kind": "class",
1685
- "description": "Base class for dynamic icons. Not intended to be used directly, instead use to register dynamic icons:\n```\ncustomElements.get('ok-ts-icon-dynamic').registerIconDynamic('ok-ts-icon-dynamic-awesome', '<img data uri or arbitrary url>');\n```\nAfter calling successfully, the icon can be used like any other icon:\n```\n<ok-ts-icon-dynamic-awesome></ok-ts-icon-dynamic-awesome>\n<nimble-mapping-icon icon=\"ok-ts-icon-dynamic-awesome\"></nimble-mapping-icon>\n```",
1686
- "name": "TsIconDynamic",
1712
+ "description": "A Ok demo component (not for production use)",
1713
+ "name": "ExButton",
1714
+ "superclass": {
1715
+ "name": "FoundationElement",
1716
+ "package": "@ni/fast-foundation"
1717
+ }
1718
+ },
1719
+ {
1720
+ "kind": "variable",
1721
+ "name": "exButtonTag",
1722
+ "type": {
1723
+ "text": "string"
1724
+ },
1725
+ "default": "'ok-ex-button'"
1726
+ }
1727
+ ],
1728
+ "exports": [
1729
+ {
1730
+ "kind": "js",
1731
+ "name": "ExButton",
1732
+ "declaration": {
1733
+ "name": "ExButton",
1734
+ "module": "src/ex/button/index.ts"
1735
+ }
1736
+ },
1737
+ {
1738
+ "kind": "js",
1739
+ "name": "exButtonTag",
1740
+ "declaration": {
1741
+ "name": "exButtonTag",
1742
+ "module": "src/ex/button/index.ts"
1743
+ }
1744
+ }
1745
+ ]
1746
+ },
1747
+ {
1748
+ "kind": "javascript-module",
1749
+ "path": "src/ts/table-column/breakpoint/index.ts",
1750
+ "declarations": [
1751
+ {
1752
+ "kind": "class",
1753
+ "description": "A table column that displays a breakpoint indicator with toggle functionality.",
1754
+ "name": "TsTableColumnBreakpoint",
1687
1755
  "members": [
1756
+ {
1757
+ "kind": "field",
1758
+ "name": "fieldName",
1759
+ "type": {
1760
+ "text": "string | undefined"
1761
+ },
1762
+ "privacy": "public"
1763
+ },
1764
+ {
1765
+ "kind": "field",
1766
+ "name": "menuSlot",
1767
+ "type": {
1768
+ "text": "string | undefined"
1769
+ },
1770
+ "privacy": "public"
1771
+ },
1772
+ {
1773
+ "kind": "field",
1774
+ "name": "position",
1775
+ "type": {
1776
+ "text": "BreakpointMenuPosition"
1777
+ },
1778
+ "privacy": "public"
1779
+ },
1688
1780
  {
1689
1781
  "kind": "method",
1690
- "name": "registerIconDynamic",
1782
+ "name": "requestBreakpointStateChange",
1691
1783
  "privacy": "public",
1692
- "static": true,
1693
1784
  "return": {
1694
1785
  "type": {
1695
1786
  "text": "void"
@@ -1697,49 +1788,494 @@
1697
1788
  },
1698
1789
  "parameters": [
1699
1790
  {
1700
- "name": "tagName",
1791
+ "name": "recordId",
1701
1792
  "type": {
1702
1793
  "text": "string"
1703
1794
  }
1704
1795
  },
1705
1796
  {
1706
- "name": "url",
1797
+ "name": "currentState",
1707
1798
  "type": {
1708
- "text": "string"
1799
+ "text": "BreakpointState"
1800
+ }
1801
+ },
1802
+ {
1803
+ "name": "requestedState",
1804
+ "type": {
1805
+ "text": "BreakpointState"
1806
+ }
1807
+ }
1808
+ ],
1809
+ "description": "Programmatically requests a breakpoint state change for a record."
1810
+ },
1811
+ {
1812
+ "kind": "method",
1813
+ "name": "getColumnInternalsOptions",
1814
+ "privacy": "protected",
1815
+ "return": {
1816
+ "type": {
1817
+ "text": "ColumnInternalsOptions"
1818
+ }
1819
+ }
1820
+ },
1821
+ {
1822
+ "kind": "method",
1823
+ "name": "fieldNameChanged",
1824
+ "privacy": "protected",
1825
+ "return": {
1826
+ "type": {
1827
+ "text": "void"
1828
+ }
1829
+ }
1830
+ },
1831
+ {
1832
+ "kind": "method",
1833
+ "name": "menuSlotChanged",
1834
+ "privacy": "protected",
1835
+ "return": {
1836
+ "type": {
1837
+ "text": "void"
1838
+ }
1839
+ }
1840
+ },
1841
+ {
1842
+ "kind": "method",
1843
+ "name": "positionChanged",
1844
+ "privacy": "protected",
1845
+ "return": {
1846
+ "type": {
1847
+ "text": "void"
1848
+ }
1849
+ }
1850
+ },
1851
+ {
1852
+ "kind": "method",
1853
+ "name": "updateColumnConfig",
1854
+ "privacy": "private",
1855
+ "return": {
1856
+ "type": {
1857
+ "text": "void"
1858
+ }
1859
+ }
1860
+ },
1861
+ {
1862
+ "kind": "field",
1863
+ "name": "resizingDisabled",
1864
+ "type": {
1865
+ "text": "boolean"
1866
+ },
1867
+ "default": "true"
1868
+ },
1869
+ {
1870
+ "kind": "field",
1871
+ "name": "pixelWidth",
1872
+ "default": "singleIconColumnWidth"
1873
+ },
1874
+ {
1875
+ "kind": "field",
1876
+ "name": "minPixelWidth",
1877
+ "default": "singleIconColumnWidth"
1878
+ }
1879
+ ],
1880
+ "attributes": [
1881
+ {
1882
+ "name": "field-name",
1883
+ "type": {
1884
+ "text": "string | undefined"
1885
+ },
1886
+ "fieldName": "fieldName"
1887
+ },
1888
+ {
1889
+ "name": "menu-slot",
1890
+ "type": {
1891
+ "text": "string | undefined"
1892
+ },
1893
+ "fieldName": "menuSlot"
1894
+ },
1895
+ {
1896
+ "name": "position",
1897
+ "type": {
1898
+ "text": "BreakpointMenuPosition"
1899
+ },
1900
+ "fieldName": "position"
1901
+ }
1902
+ ],
1903
+ "superclass": {
1904
+ "name": "TableColumn",
1905
+ "package": "@ni/nimble-components/dist/esm/table-column/base"
1906
+ }
1907
+ },
1908
+ {
1909
+ "kind": "variable",
1910
+ "name": "tsTableColumnBreakpointTag",
1911
+ "type": {
1912
+ "text": "string"
1913
+ },
1914
+ "default": "'ok-ts-table-column-breakpoint'"
1915
+ }
1916
+ ],
1917
+ "exports": [
1918
+ {
1919
+ "kind": "js",
1920
+ "name": "TsTableColumnBreakpoint",
1921
+ "declaration": {
1922
+ "name": "TsTableColumnBreakpoint",
1923
+ "module": "src/ts/table-column/breakpoint/index.ts"
1924
+ }
1925
+ },
1926
+ {
1927
+ "kind": "js",
1928
+ "name": "tsTableColumnBreakpointTag",
1929
+ "declaration": {
1930
+ "name": "tsTableColumnBreakpointTag",
1931
+ "module": "src/ts/table-column/breakpoint/index.ts"
1932
+ }
1933
+ }
1934
+ ]
1935
+ },
1936
+ {
1937
+ "kind": "javascript-module",
1938
+ "path": "src/ts/table-column/breakpoint/types.ts",
1939
+ "declarations": [
1940
+ {
1941
+ "kind": "variable",
1942
+ "name": "BreakpointState",
1943
+ "type": {
1944
+ "text": "{\n off: 'off',\n enabled: 'enabled',\n disabled: 'disabled',\n hit: 'hit',\n conditional: 'conditional',\n hitDisabled: 'hit-disabled'\n}"
1945
+ },
1946
+ "default": "{ off: 'off', enabled: 'enabled', disabled: 'disabled', hit: 'hit', conditional: 'conditional', hitDisabled: 'hit-disabled' }",
1947
+ "description": "The possible states of a breakpoint indicator."
1948
+ }
1949
+ ],
1950
+ "exports": [
1951
+ {
1952
+ "kind": "js",
1953
+ "name": "BreakpointState",
1954
+ "declaration": {
1955
+ "name": "BreakpointState",
1956
+ "module": "src/ts/table-column/breakpoint/types.ts"
1957
+ }
1958
+ }
1959
+ ]
1960
+ },
1961
+ {
1962
+ "kind": "javascript-module",
1963
+ "path": "src/ts/table-column/breakpoint/cell-view/index.ts",
1964
+ "declarations": [
1965
+ {
1966
+ "kind": "class",
1967
+ "description": "Cell view for the breakpoint column that renders a clickable breakpoint indicator.",
1968
+ "name": "TsTableColumnBreakpointCellView",
1969
+ "members": [
1970
+ {
1971
+ "kind": "field",
1972
+ "name": "menuKeyAlias",
1973
+ "type": {
1974
+ "text": "string"
1975
+ },
1976
+ "privacy": "private",
1977
+ "static": true,
1978
+ "readonly": true,
1979
+ "default": "'Menu'"
1980
+ },
1981
+ {
1982
+ "kind": "field",
1983
+ "name": "contextMenuKeyAlias",
1984
+ "type": {
1985
+ "text": "string"
1986
+ },
1987
+ "privacy": "private",
1988
+ "static": true,
1989
+ "readonly": true,
1990
+ "default": "'ContextMenu'"
1991
+ },
1992
+ {
1993
+ "kind": "field",
1994
+ "name": "open",
1995
+ "type": {
1996
+ "text": "boolean"
1997
+ },
1998
+ "privacy": "public",
1999
+ "default": "false",
2000
+ "description": "Specifies whether or not the menu is open."
2001
+ },
2002
+ {
2003
+ "kind": "field",
2004
+ "name": "focusLastItemWhenOpened",
2005
+ "type": {
2006
+ "text": "boolean"
2007
+ },
2008
+ "privacy": "private",
2009
+ "default": "false"
2010
+ },
2011
+ {
2012
+ "kind": "field",
2013
+ "name": "tabbableChildren",
2014
+ "type": {
2015
+ "text": "HTMLElement[]"
2016
+ },
2017
+ "privacy": "public",
2018
+ "readonly": true
2019
+ },
2020
+ {
2021
+ "kind": "method",
2022
+ "name": "regionLoadedHandler",
2023
+ "privacy": "public",
2024
+ "return": {
2025
+ "type": {
2026
+ "text": "void"
2027
+ }
2028
+ }
2029
+ },
2030
+ {
2031
+ "kind": "method",
2032
+ "name": "regionChanged",
2033
+ "privacy": "public",
2034
+ "return": {
2035
+ "type": {
2036
+ "text": "void"
2037
+ }
2038
+ },
2039
+ "parameters": [
2040
+ {
2041
+ "name": "prev",
2042
+ "type": {
2043
+ "text": "AnchoredRegion | undefined"
2044
+ }
2045
+ },
2046
+ {
2047
+ "name": "_next",
2048
+ "type": {
2049
+ "text": "AnchoredRegion | undefined"
2050
+ }
2051
+ }
2052
+ ]
2053
+ },
2054
+ {
2055
+ "kind": "method",
2056
+ "name": "buttonChanged",
2057
+ "privacy": "public",
2058
+ "return": {
2059
+ "type": {
2060
+ "text": "void"
2061
+ }
2062
+ }
2063
+ },
2064
+ {
2065
+ "kind": "method",
2066
+ "name": "focusoutHandler",
2067
+ "privacy": "public",
2068
+ "return": {
2069
+ "type": {
2070
+ "text": "boolean"
2071
+ }
2072
+ },
2073
+ "parameters": [
2074
+ {
2075
+ "name": "e",
2076
+ "type": {
2077
+ "text": "FocusEvent"
2078
+ }
2079
+ }
2080
+ ]
2081
+ },
2082
+ {
2083
+ "kind": "method",
2084
+ "name": "contextMenuKeyDownHandler",
2085
+ "privacy": "public",
2086
+ "return": {
2087
+ "type": {
2088
+ "text": "boolean"
2089
+ }
2090
+ },
2091
+ "parameters": [
2092
+ {
2093
+ "name": "e",
2094
+ "type": {
2095
+ "text": "KeyboardEvent"
2096
+ }
2097
+ }
2098
+ ]
2099
+ },
2100
+ {
2101
+ "kind": "method",
2102
+ "name": "onContextMenuChange",
2103
+ "privacy": "public",
2104
+ "return": {
2105
+ "type": {
2106
+ "text": "void"
2107
+ }
2108
+ },
2109
+ "parameters": [
2110
+ {
2111
+ "name": "event",
2112
+ "type": {
2113
+ "text": "Event"
1709
2114
  }
1710
2115
  }
1711
2116
  ]
2117
+ },
2118
+ {
2119
+ "kind": "method",
2120
+ "name": "getMenu",
2121
+ "privacy": "private",
2122
+ "return": {
2123
+ "type": {
2124
+ "text": "HTMLElement | undefined"
2125
+ }
2126
+ }
2127
+ },
2128
+ {
2129
+ "kind": "method",
2130
+ "name": "isSlotElement",
2131
+ "privacy": "private",
2132
+ "return": {
2133
+ "type": {
2134
+ "text": "element is HTMLSlotElement"
2135
+ }
2136
+ },
2137
+ "parameters": [
2138
+ {
2139
+ "name": "element",
2140
+ "type": {
2141
+ "text": "HTMLElement | undefined"
2142
+ }
2143
+ }
2144
+ ]
2145
+ },
2146
+ {
2147
+ "kind": "method",
2148
+ "name": "focusMenu",
2149
+ "privacy": "private",
2150
+ "return": {
2151
+ "type": {
2152
+ "text": "void"
2153
+ }
2154
+ }
2155
+ },
2156
+ {
2157
+ "kind": "method",
2158
+ "name": "focusLastMenuItem",
2159
+ "privacy": "private",
2160
+ "return": {
2161
+ "type": {
2162
+ "text": "void"
2163
+ }
2164
+ }
2165
+ },
2166
+ {
2167
+ "kind": "method",
2168
+ "name": "emitToggle",
2169
+ "privacy": "private",
2170
+ "return": {
2171
+ "type": {
2172
+ "text": "void"
2173
+ }
2174
+ },
2175
+ "parameters": [
2176
+ {
2177
+ "name": "oldState",
2178
+ "type": {
2179
+ "text": "BreakpointState"
2180
+ }
2181
+ },
2182
+ {
2183
+ "name": "newState",
2184
+ "type": {
2185
+ "text": "BreakpointState"
2186
+ }
2187
+ }
2188
+ ]
2189
+ },
2190
+ {
2191
+ "kind": "method",
2192
+ "name": "requestContextMenu",
2193
+ "privacy": "private",
2194
+ "return": {
2195
+ "type": {
2196
+ "text": "void"
2197
+ }
2198
+ }
2199
+ },
2200
+ {
2201
+ "kind": "method",
2202
+ "name": "openMenuFromColumnSlot",
2203
+ "privacy": "private",
2204
+ "return": {
2205
+ "type": {
2206
+ "text": "void"
2207
+ }
2208
+ }
2209
+ },
2210
+ {
2211
+ "kind": "field",
2212
+ "name": "menuChangeHandler",
2213
+ "privacy": "private",
2214
+ "readonly": true
2215
+ },
2216
+ {
2217
+ "kind": "method",
2218
+ "name": "getRequestedStateFromEvent",
2219
+ "privacy": "private",
2220
+ "return": {
2221
+ "type": {
2222
+ "text": "BreakpointState | undefined"
2223
+ }
2224
+ },
2225
+ "parameters": [
2226
+ {
2227
+ "name": "event",
2228
+ "type": {
2229
+ "text": "Event"
2230
+ }
2231
+ }
2232
+ ]
2233
+ }
2234
+ ],
2235
+ "attributes": [
2236
+ {
2237
+ "name": "open",
2238
+ "type": {
2239
+ "text": "boolean"
2240
+ },
2241
+ "default": "false",
2242
+ "description": "Specifies whether or not the menu is open.",
2243
+ "fieldName": "open"
1712
2244
  }
1713
2245
  ],
1714
2246
  "superclass": {
1715
- "name": "Icon",
1716
- "package": "@ni/nimble-components/dist/esm/icon-base"
2247
+ "name": "TableCellView",
2248
+ "package": "@ni/nimble-components/dist/esm/table-column/base/cell-view"
1717
2249
  }
1718
2250
  },
1719
2251
  {
1720
2252
  "kind": "variable",
1721
- "name": "tsIconDynamicTag",
2253
+ "name": "requestedState"
2254
+ },
2255
+ {
2256
+ "kind": "variable",
2257
+ "name": "tsTableColumnBreakpointCellViewTag",
1722
2258
  "type": {
1723
2259
  "text": "string"
1724
2260
  },
1725
- "default": "'ok-ts-icon-dynamic'"
2261
+ "default": "'ok-ts-table-column-breakpoint-cell-view'"
1726
2262
  }
1727
2263
  ],
1728
2264
  "exports": [
1729
2265
  {
1730
2266
  "kind": "js",
1731
- "name": "TsIconDynamic",
2267
+ "name": "TsTableColumnBreakpointCellView",
1732
2268
  "declaration": {
1733
- "name": "TsIconDynamic",
1734
- "module": "src/ts/icon-dynamic/index.ts"
2269
+ "name": "TsTableColumnBreakpointCellView",
2270
+ "module": "src/ts/table-column/breakpoint/cell-view/index.ts"
1735
2271
  }
1736
2272
  },
1737
2273
  {
1738
2274
  "kind": "js",
1739
- "name": "tsIconDynamicTag",
2275
+ "name": "tsTableColumnBreakpointCellViewTag",
1740
2276
  "declaration": {
1741
- "name": "tsIconDynamicTag",
1742
- "module": "src/ts/icon-dynamic/index.ts"
2277
+ "name": "tsTableColumnBreakpointCellViewTag",
2278
+ "module": "src/ts/table-column/breakpoint/cell-view/index.ts"
1743
2279
  }
1744
2280
  }
1745
2281
  ]