@genesislcap/foundation-utils 14.206.3 → 14.206.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.
Files changed (2) hide show
  1. package/dist/custom-elements.json +201 -201
  2. package/package.json +10 -10
@@ -365,59 +365,6 @@
365
365
  }
366
366
  ]
367
367
  },
368
- {
369
- "kind": "javascript-module",
370
- "path": "src/decorators/index.ts",
371
- "declarations": [],
372
- "exports": [
373
- {
374
- "kind": "js",
375
- "name": "*",
376
- "declaration": {
377
- "name": "*",
378
- "package": "./renderOnChange"
379
- }
380
- }
381
- ]
382
- },
383
- {
384
- "kind": "javascript-module",
385
- "path": "src/decorators/renderOnChange.ts",
386
- "declarations": [
387
- {
388
- "kind": "function",
389
- "name": "renderOnChange",
390
- "parameters": [
391
- {
392
- "name": "target",
393
- "type": {
394
- "text": "FASTElement & { render(): void }"
395
- },
396
- "description": "The target to define the property change handler on."
397
- },
398
- {
399
- "name": "name",
400
- "type": {
401
- "text": "string"
402
- },
403
- "description": "The property name."
404
- }
405
- ],
406
- "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
407
- "privacy": "public"
408
- }
409
- ],
410
- "exports": [
411
- {
412
- "kind": "js",
413
- "name": "renderOnChange",
414
- "declaration": {
415
- "name": "renderOnChange",
416
- "module": "src/decorators/renderOnChange.ts"
417
- }
418
- }
419
- ]
420
- },
421
368
  {
422
369
  "kind": "javascript-module",
423
370
  "path": "src/directives/index.ts",
@@ -878,6 +825,59 @@
878
825
  }
879
826
  ]
880
827
  },
828
+ {
829
+ "kind": "javascript-module",
830
+ "path": "src/decorators/index.ts",
831
+ "declarations": [],
832
+ "exports": [
833
+ {
834
+ "kind": "js",
835
+ "name": "*",
836
+ "declaration": {
837
+ "name": "*",
838
+ "package": "./renderOnChange"
839
+ }
840
+ }
841
+ ]
842
+ },
843
+ {
844
+ "kind": "javascript-module",
845
+ "path": "src/decorators/renderOnChange.ts",
846
+ "declarations": [
847
+ {
848
+ "kind": "function",
849
+ "name": "renderOnChange",
850
+ "parameters": [
851
+ {
852
+ "name": "target",
853
+ "type": {
854
+ "text": "FASTElement & { render(): void }"
855
+ },
856
+ "description": "The target to define the property change handler on."
857
+ },
858
+ {
859
+ "name": "name",
860
+ "type": {
861
+ "text": "string"
862
+ },
863
+ "description": "The property name."
864
+ }
865
+ ],
866
+ "description": "Defines a property changed handler that calls a render() method on the target as an internal observation enhancement.",
867
+ "privacy": "public"
868
+ }
869
+ ],
870
+ "exports": [
871
+ {
872
+ "kind": "js",
873
+ "name": "renderOnChange",
874
+ "declaration": {
875
+ "name": "renderOnChange",
876
+ "module": "src/decorators/renderOnChange.ts"
877
+ }
878
+ }
879
+ ]
880
+ },
881
881
  {
882
882
  "kind": "javascript-module",
883
883
  "path": "src/design-system/design-system.ts",
@@ -2068,6 +2068,154 @@
2068
2068
  }
2069
2069
  ]
2070
2070
  },
2071
+ {
2072
+ "kind": "javascript-module",
2073
+ "path": "src/window/index.ts",
2074
+ "declarations": [],
2075
+ "exports": [
2076
+ {
2077
+ "kind": "js",
2078
+ "name": "*",
2079
+ "declaration": {
2080
+ "name": "*",
2081
+ "package": "./window"
2082
+ }
2083
+ }
2084
+ ]
2085
+ },
2086
+ {
2087
+ "kind": "javascript-module",
2088
+ "path": "src/window/window.ts",
2089
+ "declarations": [
2090
+ {
2091
+ "kind": "function",
2092
+ "name": "inIFrame",
2093
+ "return": {
2094
+ "type": {
2095
+ "text": ""
2096
+ }
2097
+ },
2098
+ "description": "Returns a boolean value indicating whether the current window is inside an iframe.",
2099
+ "privacy": "public"
2100
+ },
2101
+ {
2102
+ "kind": "function",
2103
+ "name": "inSymphonyDesktop",
2104
+ "return": {
2105
+ "type": {
2106
+ "text": ""
2107
+ }
2108
+ },
2109
+ "description": "Returns a boolean value indicating whether the user is running the Symphony desktop app.",
2110
+ "privacy": "public"
2111
+ },
2112
+ {
2113
+ "kind": "variable",
2114
+ "name": "POPUP_DEFAULT_WIDTH",
2115
+ "type": {
2116
+ "text": "number"
2117
+ },
2118
+ "default": "483",
2119
+ "description": "The default width (in pixels) for pop-up windows.",
2120
+ "privacy": "public"
2121
+ },
2122
+ {
2123
+ "kind": "variable",
2124
+ "name": "POPUP_DEFAULT_HEIGHT",
2125
+ "type": {
2126
+ "text": "number"
2127
+ },
2128
+ "default": "600",
2129
+ "description": "The default height (in pixels) for pop-up windows.",
2130
+ "privacy": "public"
2131
+ },
2132
+ {
2133
+ "kind": "function",
2134
+ "name": "openPopup",
2135
+ "return": {
2136
+ "type": {
2137
+ "text": ""
2138
+ }
2139
+ },
2140
+ "parameters": [
2141
+ {
2142
+ "name": "urlNavigate",
2143
+ "type": {
2144
+ "text": "string"
2145
+ },
2146
+ "description": "The URL to navigate to."
2147
+ },
2148
+ {
2149
+ "name": "target",
2150
+ "type": {
2151
+ "text": "string"
2152
+ },
2153
+ "description": "The name of the new window."
2154
+ },
2155
+ {
2156
+ "name": "popUpWidth",
2157
+ "default": "POPUP_DEFAULT_WIDTH",
2158
+ "type": {
2159
+ "text": "number"
2160
+ },
2161
+ "description": "The width of the new window (optional)."
2162
+ },
2163
+ {
2164
+ "name": "popUpHeight",
2165
+ "default": "POPUP_DEFAULT_HEIGHT",
2166
+ "type": {
2167
+ "text": "number"
2168
+ },
2169
+ "description": "The height of the new window (optional)."
2170
+ }
2171
+ ],
2172
+ "description": "Opens a new browser window with the specified URL, target, width, and height.",
2173
+ "privacy": "public"
2174
+ }
2175
+ ],
2176
+ "exports": [
2177
+ {
2178
+ "kind": "js",
2179
+ "name": "inIFrame",
2180
+ "declaration": {
2181
+ "name": "inIFrame",
2182
+ "module": "src/window/window.ts"
2183
+ }
2184
+ },
2185
+ {
2186
+ "kind": "js",
2187
+ "name": "inSymphonyDesktop",
2188
+ "declaration": {
2189
+ "name": "inSymphonyDesktop",
2190
+ "module": "src/window/window.ts"
2191
+ }
2192
+ },
2193
+ {
2194
+ "kind": "js",
2195
+ "name": "POPUP_DEFAULT_WIDTH",
2196
+ "declaration": {
2197
+ "name": "POPUP_DEFAULT_WIDTH",
2198
+ "module": "src/window/window.ts"
2199
+ }
2200
+ },
2201
+ {
2202
+ "kind": "js",
2203
+ "name": "POPUP_DEFAULT_HEIGHT",
2204
+ "declaration": {
2205
+ "name": "POPUP_DEFAULT_HEIGHT",
2206
+ "module": "src/window/window.ts"
2207
+ }
2208
+ },
2209
+ {
2210
+ "kind": "js",
2211
+ "name": "openPopup",
2212
+ "declaration": {
2213
+ "name": "openPopup",
2214
+ "module": "src/window/window.ts"
2215
+ }
2216
+ }
2217
+ ]
2218
+ },
2071
2219
  {
2072
2220
  "kind": "javascript-module",
2073
2221
  "path": "src/directives/sync/index.ts",
@@ -2222,154 +2370,6 @@
2222
2370
  }
2223
2371
  ]
2224
2372
  },
2225
- {
2226
- "kind": "javascript-module",
2227
- "path": "src/window/index.ts",
2228
- "declarations": [],
2229
- "exports": [
2230
- {
2231
- "kind": "js",
2232
- "name": "*",
2233
- "declaration": {
2234
- "name": "*",
2235
- "package": "./window"
2236
- }
2237
- }
2238
- ]
2239
- },
2240
- {
2241
- "kind": "javascript-module",
2242
- "path": "src/window/window.ts",
2243
- "declarations": [
2244
- {
2245
- "kind": "function",
2246
- "name": "inIFrame",
2247
- "return": {
2248
- "type": {
2249
- "text": ""
2250
- }
2251
- },
2252
- "description": "Returns a boolean value indicating whether the current window is inside an iframe.",
2253
- "privacy": "public"
2254
- },
2255
- {
2256
- "kind": "function",
2257
- "name": "inSymphonyDesktop",
2258
- "return": {
2259
- "type": {
2260
- "text": ""
2261
- }
2262
- },
2263
- "description": "Returns a boolean value indicating whether the user is running the Symphony desktop app.",
2264
- "privacy": "public"
2265
- },
2266
- {
2267
- "kind": "variable",
2268
- "name": "POPUP_DEFAULT_WIDTH",
2269
- "type": {
2270
- "text": "number"
2271
- },
2272
- "default": "483",
2273
- "description": "The default width (in pixels) for pop-up windows.",
2274
- "privacy": "public"
2275
- },
2276
- {
2277
- "kind": "variable",
2278
- "name": "POPUP_DEFAULT_HEIGHT",
2279
- "type": {
2280
- "text": "number"
2281
- },
2282
- "default": "600",
2283
- "description": "The default height (in pixels) for pop-up windows.",
2284
- "privacy": "public"
2285
- },
2286
- {
2287
- "kind": "function",
2288
- "name": "openPopup",
2289
- "return": {
2290
- "type": {
2291
- "text": ""
2292
- }
2293
- },
2294
- "parameters": [
2295
- {
2296
- "name": "urlNavigate",
2297
- "type": {
2298
- "text": "string"
2299
- },
2300
- "description": "The URL to navigate to."
2301
- },
2302
- {
2303
- "name": "target",
2304
- "type": {
2305
- "text": "string"
2306
- },
2307
- "description": "The name of the new window."
2308
- },
2309
- {
2310
- "name": "popUpWidth",
2311
- "default": "POPUP_DEFAULT_WIDTH",
2312
- "type": {
2313
- "text": "number"
2314
- },
2315
- "description": "The width of the new window (optional)."
2316
- },
2317
- {
2318
- "name": "popUpHeight",
2319
- "default": "POPUP_DEFAULT_HEIGHT",
2320
- "type": {
2321
- "text": "number"
2322
- },
2323
- "description": "The height of the new window (optional)."
2324
- }
2325
- ],
2326
- "description": "Opens a new browser window with the specified URL, target, width, and height.",
2327
- "privacy": "public"
2328
- }
2329
- ],
2330
- "exports": [
2331
- {
2332
- "kind": "js",
2333
- "name": "inIFrame",
2334
- "declaration": {
2335
- "name": "inIFrame",
2336
- "module": "src/window/window.ts"
2337
- }
2338
- },
2339
- {
2340
- "kind": "js",
2341
- "name": "inSymphonyDesktop",
2342
- "declaration": {
2343
- "name": "inSymphonyDesktop",
2344
- "module": "src/window/window.ts"
2345
- }
2346
- },
2347
- {
2348
- "kind": "js",
2349
- "name": "POPUP_DEFAULT_WIDTH",
2350
- "declaration": {
2351
- "name": "POPUP_DEFAULT_WIDTH",
2352
- "module": "src/window/window.ts"
2353
- }
2354
- },
2355
- {
2356
- "kind": "js",
2357
- "name": "POPUP_DEFAULT_HEIGHT",
2358
- "declaration": {
2359
- "name": "POPUP_DEFAULT_HEIGHT",
2360
- "module": "src/window/window.ts"
2361
- }
2362
- },
2363
- {
2364
- "kind": "js",
2365
- "name": "openPopup",
2366
- "declaration": {
2367
- "name": "openPopup",
2368
- "module": "src/window/window.ts"
2369
- }
2370
- }
2371
- ]
2372
- },
2373
2373
  {
2374
2374
  "kind": "javascript-module",
2375
2375
  "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.206.3",
4
+ "version": "14.206.4",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -27,17 +27,17 @@
27
27
  }
28
28
  },
29
29
  "devDependencies": {
30
- "@genesislcap/foundation-testing": "14.206.3",
31
- "@genesislcap/genx": "14.206.3",
32
- "@genesislcap/rollup-builder": "14.206.3",
33
- "@genesislcap/ts-builder": "14.206.3",
34
- "@genesislcap/uvu-playwright-builder": "14.206.3",
35
- "@genesislcap/vite-builder": "14.206.3",
36
- "@genesislcap/webpack-builder": "14.206.3",
30
+ "@genesislcap/foundation-testing": "14.206.4",
31
+ "@genesislcap/genx": "14.206.4",
32
+ "@genesislcap/rollup-builder": "14.206.4",
33
+ "@genesislcap/ts-builder": "14.206.4",
34
+ "@genesislcap/uvu-playwright-builder": "14.206.4",
35
+ "@genesislcap/vite-builder": "14.206.4",
36
+ "@genesislcap/webpack-builder": "14.206.4",
37
37
  "rimraf": "^5.0.0"
38
38
  },
39
39
  "dependencies": {
40
- "@genesislcap/foundation-logger": "14.206.3",
40
+ "@genesislcap/foundation-logger": "14.206.4",
41
41
  "@microsoft/fast-components": "^2.30.6",
42
42
  "@microsoft/fast-element": "^1.12.0",
43
43
  "@microsoft/fast-foundation": "^2.49.4",
@@ -55,5 +55,5 @@
55
55
  "access": "public"
56
56
  },
57
57
  "customElements": "dist/custom-elements.json",
58
- "gitHead": "e1655a9b5d01f535eceafa4a84d3b1b395bb6c21"
58
+ "gitHead": "b0616bc17c2db79e97324f028a140809082b7865"
59
59
  }