@genesislcap/foundation-utils 14.141.0 → 14.141.2

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.
@@ -1906,154 +1906,6 @@
1906
1906
  }
1907
1907
  ]
1908
1908
  },
1909
- {
1910
- "kind": "javascript-module",
1911
- "path": "src/window/index.ts",
1912
- "declarations": [],
1913
- "exports": [
1914
- {
1915
- "kind": "js",
1916
- "name": "*",
1917
- "declaration": {
1918
- "name": "*",
1919
- "package": "./window"
1920
- }
1921
- }
1922
- ]
1923
- },
1924
- {
1925
- "kind": "javascript-module",
1926
- "path": "src/window/window.ts",
1927
- "declarations": [
1928
- {
1929
- "kind": "function",
1930
- "name": "inIFrame",
1931
- "return": {
1932
- "type": {
1933
- "text": ""
1934
- }
1935
- },
1936
- "description": "Returns a boolean value indicating whether the current window is inside an iframe.",
1937
- "privacy": "public"
1938
- },
1939
- {
1940
- "kind": "function",
1941
- "name": "inSymphonyDesktop",
1942
- "return": {
1943
- "type": {
1944
- "text": ""
1945
- }
1946
- },
1947
- "description": "Returns a boolean value indicating whether the user is running the Symphony desktop app.",
1948
- "privacy": "public"
1949
- },
1950
- {
1951
- "kind": "variable",
1952
- "name": "POPUP_DEFAULT_WIDTH",
1953
- "type": {
1954
- "text": "number"
1955
- },
1956
- "default": "483",
1957
- "description": "The default width (in pixels) for pop-up windows.",
1958
- "privacy": "public"
1959
- },
1960
- {
1961
- "kind": "variable",
1962
- "name": "POPUP_DEFAULT_HEIGHT",
1963
- "type": {
1964
- "text": "number"
1965
- },
1966
- "default": "600",
1967
- "description": "The default height (in pixels) for pop-up windows.",
1968
- "privacy": "public"
1969
- },
1970
- {
1971
- "kind": "function",
1972
- "name": "openPopup",
1973
- "return": {
1974
- "type": {
1975
- "text": ""
1976
- }
1977
- },
1978
- "parameters": [
1979
- {
1980
- "name": "urlNavigate",
1981
- "type": {
1982
- "text": "string"
1983
- },
1984
- "description": "The URL to navigate to."
1985
- },
1986
- {
1987
- "name": "target",
1988
- "type": {
1989
- "text": "string"
1990
- },
1991
- "description": "The name of the new window."
1992
- },
1993
- {
1994
- "name": "popUpWidth",
1995
- "default": "POPUP_DEFAULT_WIDTH",
1996
- "type": {
1997
- "text": "number"
1998
- },
1999
- "description": "The width of the new window (optional)."
2000
- },
2001
- {
2002
- "name": "popUpHeight",
2003
- "default": "POPUP_DEFAULT_HEIGHT",
2004
- "type": {
2005
- "text": "number"
2006
- },
2007
- "description": "The height of the new window (optional)."
2008
- }
2009
- ],
2010
- "description": "Opens a new browser window with the specified URL, target, width, and height.",
2011
- "privacy": "public"
2012
- }
2013
- ],
2014
- "exports": [
2015
- {
2016
- "kind": "js",
2017
- "name": "inIFrame",
2018
- "declaration": {
2019
- "name": "inIFrame",
2020
- "module": "src/window/window.ts"
2021
- }
2022
- },
2023
- {
2024
- "kind": "js",
2025
- "name": "inSymphonyDesktop",
2026
- "declaration": {
2027
- "name": "inSymphonyDesktop",
2028
- "module": "src/window/window.ts"
2029
- }
2030
- },
2031
- {
2032
- "kind": "js",
2033
- "name": "POPUP_DEFAULT_WIDTH",
2034
- "declaration": {
2035
- "name": "POPUP_DEFAULT_WIDTH",
2036
- "module": "src/window/window.ts"
2037
- }
2038
- },
2039
- {
2040
- "kind": "js",
2041
- "name": "POPUP_DEFAULT_HEIGHT",
2042
- "declaration": {
2043
- "name": "POPUP_DEFAULT_HEIGHT",
2044
- "module": "src/window/window.ts"
2045
- }
2046
- },
2047
- {
2048
- "kind": "js",
2049
- "name": "openPopup",
2050
- "declaration": {
2051
- "name": "openPopup",
2052
- "module": "src/window/window.ts"
2053
- }
2054
- }
2055
- ]
2056
- },
2057
1909
  {
2058
1910
  "kind": "javascript-module",
2059
1911
  "path": "src/directives/sync/index.ts",
@@ -2208,6 +2060,154 @@
2208
2060
  }
2209
2061
  ]
2210
2062
  },
2063
+ {
2064
+ "kind": "javascript-module",
2065
+ "path": "src/window/index.ts",
2066
+ "declarations": [],
2067
+ "exports": [
2068
+ {
2069
+ "kind": "js",
2070
+ "name": "*",
2071
+ "declaration": {
2072
+ "name": "*",
2073
+ "package": "./window"
2074
+ }
2075
+ }
2076
+ ]
2077
+ },
2078
+ {
2079
+ "kind": "javascript-module",
2080
+ "path": "src/window/window.ts",
2081
+ "declarations": [
2082
+ {
2083
+ "kind": "function",
2084
+ "name": "inIFrame",
2085
+ "return": {
2086
+ "type": {
2087
+ "text": ""
2088
+ }
2089
+ },
2090
+ "description": "Returns a boolean value indicating whether the current window is inside an iframe.",
2091
+ "privacy": "public"
2092
+ },
2093
+ {
2094
+ "kind": "function",
2095
+ "name": "inSymphonyDesktop",
2096
+ "return": {
2097
+ "type": {
2098
+ "text": ""
2099
+ }
2100
+ },
2101
+ "description": "Returns a boolean value indicating whether the user is running the Symphony desktop app.",
2102
+ "privacy": "public"
2103
+ },
2104
+ {
2105
+ "kind": "variable",
2106
+ "name": "POPUP_DEFAULT_WIDTH",
2107
+ "type": {
2108
+ "text": "number"
2109
+ },
2110
+ "default": "483",
2111
+ "description": "The default width (in pixels) for pop-up windows.",
2112
+ "privacy": "public"
2113
+ },
2114
+ {
2115
+ "kind": "variable",
2116
+ "name": "POPUP_DEFAULT_HEIGHT",
2117
+ "type": {
2118
+ "text": "number"
2119
+ },
2120
+ "default": "600",
2121
+ "description": "The default height (in pixels) for pop-up windows.",
2122
+ "privacy": "public"
2123
+ },
2124
+ {
2125
+ "kind": "function",
2126
+ "name": "openPopup",
2127
+ "return": {
2128
+ "type": {
2129
+ "text": ""
2130
+ }
2131
+ },
2132
+ "parameters": [
2133
+ {
2134
+ "name": "urlNavigate",
2135
+ "type": {
2136
+ "text": "string"
2137
+ },
2138
+ "description": "The URL to navigate to."
2139
+ },
2140
+ {
2141
+ "name": "target",
2142
+ "type": {
2143
+ "text": "string"
2144
+ },
2145
+ "description": "The name of the new window."
2146
+ },
2147
+ {
2148
+ "name": "popUpWidth",
2149
+ "default": "POPUP_DEFAULT_WIDTH",
2150
+ "type": {
2151
+ "text": "number"
2152
+ },
2153
+ "description": "The width of the new window (optional)."
2154
+ },
2155
+ {
2156
+ "name": "popUpHeight",
2157
+ "default": "POPUP_DEFAULT_HEIGHT",
2158
+ "type": {
2159
+ "text": "number"
2160
+ },
2161
+ "description": "The height of the new window (optional)."
2162
+ }
2163
+ ],
2164
+ "description": "Opens a new browser window with the specified URL, target, width, and height.",
2165
+ "privacy": "public"
2166
+ }
2167
+ ],
2168
+ "exports": [
2169
+ {
2170
+ "kind": "js",
2171
+ "name": "inIFrame",
2172
+ "declaration": {
2173
+ "name": "inIFrame",
2174
+ "module": "src/window/window.ts"
2175
+ }
2176
+ },
2177
+ {
2178
+ "kind": "js",
2179
+ "name": "inSymphonyDesktop",
2180
+ "declaration": {
2181
+ "name": "inSymphonyDesktop",
2182
+ "module": "src/window/window.ts"
2183
+ }
2184
+ },
2185
+ {
2186
+ "kind": "js",
2187
+ "name": "POPUP_DEFAULT_WIDTH",
2188
+ "declaration": {
2189
+ "name": "POPUP_DEFAULT_WIDTH",
2190
+ "module": "src/window/window.ts"
2191
+ }
2192
+ },
2193
+ {
2194
+ "kind": "js",
2195
+ "name": "POPUP_DEFAULT_HEIGHT",
2196
+ "declaration": {
2197
+ "name": "POPUP_DEFAULT_HEIGHT",
2198
+ "module": "src/window/window.ts"
2199
+ }
2200
+ },
2201
+ {
2202
+ "kind": "js",
2203
+ "name": "openPopup",
2204
+ "declaration": {
2205
+ "name": "openPopup",
2206
+ "module": "src/window/window.ts"
2207
+ }
2208
+ }
2209
+ ]
2210
+ },
2211
2211
  {
2212
2212
  "kind": "javascript-module",
2213
2213
  "path": "src/mappers/dto/index.ts",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-utils",
3
3
  "description": "Genesis Foundation Utils",
4
- "version": "14.141.0",
4
+ "version": "14.141.2",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -19,12 +19,12 @@
19
19
  "test": "genx test"
20
20
  },
21
21
  "devDependencies": {
22
- "@genesislcap/foundation-testing": "14.141.0",
23
- "@genesislcap/genx": "14.141.0",
22
+ "@genesislcap/foundation-testing": "14.141.2",
23
+ "@genesislcap/genx": "14.141.2",
24
24
  "rimraf": "^3.0.2"
25
25
  },
26
26
  "dependencies": {
27
- "@genesislcap/foundation-logger": "14.141.0",
27
+ "@genesislcap/foundation-logger": "14.141.2",
28
28
  "@microsoft/fast-components": "^2.30.6",
29
29
  "@microsoft/fast-element": "^1.12.0",
30
30
  "@microsoft/fast-foundation": "^2.49.4",
@@ -42,5 +42,5 @@
42
42
  "access": "public"
43
43
  },
44
44
  "customElements": "dist/custom-elements.json",
45
- "gitHead": "0a56f4af76d0b6852dfb0fd6a01f721db3a1e867"
45
+ "gitHead": "51b9d2cd8291ce37769cbbb5135f19b8a726f642"
46
46
  }