@genesislcap/foundation-zero 15.8.3-PTC-0.2 → 15.8.3-PTC-0.3

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.
@@ -22521,7 +22521,7 @@
22521
22521
  "type": {
22522
22522
  "text": "HTMLElement | undefined"
22523
22523
  },
22524
- "description": "The tooltip bubble stays in this component's template and shadow root, but is promoted\nto the browser top layer via the Popover API when shown — the top layer escapes ancestor\nstacking contexts, transforms and overflow clipping, which is what lets virtualized\ngrid rows (absolutely-positioned, later-DOM-order siblings) paint over an in-place\nbubble. It is a plain `div` rather than `<%%prefix%%-tooltip>`: FASTTooltip's template\nrenders `<${tagFor(AnchoredRegion)}>`, and that lookup misses for the subclassed\ngenesis components (compose() without `baseClass`), so the tooltip component renders an\nempty shadow root none of its placement or visibility machinery ever worked here.\nPlacement is manual from the anchor's `getBoundingClientRect()` (see showTooltip).",
22524
+ "description": "The `<%%prefix%%-tooltip>` bubble stays in this component's template and shadow root,\nbut is promoted to the browser top layer via the Popover API when shown — the top layer\nescapes ancestor stacking contexts, transforms and overflow clipping, which is what\nlets virtualized grid rows (absolutely-positioned, later-DOM-order siblings) paint over\nan in-place bubble. Content rendering stays FASTTooltip's own anchor-hover logic\n(`delay=\"0\"` so it is rendered by the time the popover opens and is measured); only\nhost visibility and placement are managed here, because FASTTooltip's anchored-region\nplacement does not resolve for the subclassed genesis components\n(`tagFor(AnchoredRegion)` misses — compose() without `baseClass`).",
22525
22525
  "inheritedFrom": {
22526
22526
  "name": "Icon",
22527
22527
  "module": "src/icon/icon.ts"
@@ -22650,6 +22650,24 @@
22650
22650
  "module": "src/icon/icon.ts"
22651
22651
  }
22652
22652
  },
22653
+ {
22654
+ "kind": "method",
22655
+ "name": "positionTooltip",
22656
+ "privacy": "private",
22657
+ "parameters": [
22658
+ {
22659
+ "name": "tooltip",
22660
+ "type": {
22661
+ "text": "HTMLElement"
22662
+ }
22663
+ }
22664
+ ],
22665
+ "description": "Places the bubble from the anchor's current viewport position (scrolled grid, resized\nlayout) just before it is shown; top-layer coordinates are viewport-relative. Prefers\nthe anchor's right edge, flips to its left when the right side would clip at the\nviewport, and clamps vertically so bottom rows keep the whole bubble on screen. The\nbubble's width is fixed in CSS, so measuring before final placement is safe; height\ncomes from scroll size because FASTTooltip's host is a zero-height box whose part div\noverflows it.",
22666
+ "inheritedFrom": {
22667
+ "name": "Icon",
22668
+ "module": "src/icon/icon.ts"
22669
+ }
22670
+ },
22653
22671
  {
22654
22672
  "kind": "field",
22655
22673
  "name": "hideTooltip",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-zero",
3
3
  "description": "Genesis Foundation Zero Design System",
4
- "version": "15.8.3-PTC-0.2",
4
+ "version": "15.8.3-PTC-0.3",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -73,18 +73,18 @@
73
73
  },
74
74
  "devDependencies": {
75
75
  "@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
76
- "@genesislcap/genx": "15.8.3-PTC-0.2",
77
- "@genesislcap/rollup-builder": "15.8.3-PTC-0.2",
78
- "@genesislcap/ts-builder": "15.8.3-PTC-0.2",
79
- "@genesislcap/uvu-playwright-builder": "15.8.3-PTC-0.2",
80
- "@genesislcap/vite-builder": "15.8.3-PTC-0.2",
81
- "@genesislcap/webpack-builder": "15.8.3-PTC-0.2"
76
+ "@genesislcap/genx": "15.8.3-PTC-0.3",
77
+ "@genesislcap/rollup-builder": "15.8.3-PTC-0.3",
78
+ "@genesislcap/ts-builder": "15.8.3-PTC-0.3",
79
+ "@genesislcap/uvu-playwright-builder": "15.8.3-PTC-0.3",
80
+ "@genesislcap/vite-builder": "15.8.3-PTC-0.3",
81
+ "@genesislcap/webpack-builder": "15.8.3-PTC-0.3"
82
82
  },
83
83
  "dependencies": {
84
- "@genesislcap/foundation-comms": "15.8.3-PTC-0.2",
85
- "@genesislcap/foundation-logger": "15.8.3-PTC-0.2",
86
- "@genesislcap/foundation-ui": "15.8.3-PTC-0.2",
87
- "@genesislcap/foundation-utils": "15.8.3-PTC-0.2",
84
+ "@genesislcap/foundation-comms": "15.8.3-PTC-0.3",
85
+ "@genesislcap/foundation-logger": "15.8.3-PTC-0.3",
86
+ "@genesislcap/foundation-ui": "15.8.3-PTC-0.3",
87
+ "@genesislcap/foundation-utils": "15.8.3-PTC-0.3",
88
88
  "@microsoft/fast-colors": "5.3.1",
89
89
  "@microsoft/fast-components": "2.30.6",
90
90
  "@microsoft/fast-element": "1.14.0",
@@ -111,5 +111,5 @@
111
111
  "require": "./dist/react.cjs"
112
112
  }
113
113
  },
114
- "gitHead": "6381e57d86cc251a7265cefa2fc13df20b4a38fb"
114
+ "gitHead": "03b8d847cd85e36d451ab7cdbebfecae2437675d"
115
115
  }