@genesislcap/foundation-zero 15.9.0 → 15.9.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.
- package/dist/custom-elements.json +61 -0
- package/package.json +12 -12
|
@@ -22515,6 +22515,31 @@
|
|
|
22515
22515
|
"module": "src/icon/icon.ts"
|
|
22516
22516
|
}
|
|
22517
22517
|
},
|
|
22518
|
+
{
|
|
22519
|
+
"kind": "field",
|
|
22520
|
+
"name": "tooltipElement",
|
|
22521
|
+
"type": {
|
|
22522
|
+
"text": "HTMLElement | undefined"
|
|
22523
|
+
},
|
|
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
|
+
"inheritedFrom": {
|
|
22526
|
+
"name": "Icon",
|
|
22527
|
+
"module": "src/icon/icon.ts"
|
|
22528
|
+
}
|
|
22529
|
+
},
|
|
22530
|
+
{
|
|
22531
|
+
"kind": "field",
|
|
22532
|
+
"name": "tooltipShowTimer",
|
|
22533
|
+
"type": {
|
|
22534
|
+
"text": "number | null"
|
|
22535
|
+
},
|
|
22536
|
+
"privacy": "private",
|
|
22537
|
+
"default": "null",
|
|
22538
|
+
"inheritedFrom": {
|
|
22539
|
+
"name": "Icon",
|
|
22540
|
+
"module": "src/icon/icon.ts"
|
|
22541
|
+
}
|
|
22542
|
+
},
|
|
22518
22543
|
{
|
|
22519
22544
|
"kind": "field",
|
|
22520
22545
|
"name": "name",
|
|
@@ -22616,6 +22641,42 @@
|
|
|
22616
22641
|
"module": "src/icon/icon.ts"
|
|
22617
22642
|
}
|
|
22618
22643
|
},
|
|
22644
|
+
{
|
|
22645
|
+
"kind": "field",
|
|
22646
|
+
"name": "showTooltip",
|
|
22647
|
+
"privacy": "private",
|
|
22648
|
+
"inheritedFrom": {
|
|
22649
|
+
"name": "Icon",
|
|
22650
|
+
"module": "src/icon/icon.ts"
|
|
22651
|
+
}
|
|
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
|
+
},
|
|
22671
|
+
{
|
|
22672
|
+
"kind": "field",
|
|
22673
|
+
"name": "hideTooltip",
|
|
22674
|
+
"privacy": "private",
|
|
22675
|
+
"inheritedFrom": {
|
|
22676
|
+
"name": "Icon",
|
|
22677
|
+
"module": "src/icon/icon.ts"
|
|
22678
|
+
}
|
|
22679
|
+
},
|
|
22619
22680
|
{
|
|
22620
22681
|
"kind": "method",
|
|
22621
22682
|
"name": "getDefaultTooltipConfig",
|
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.9.
|
|
4
|
+
"version": "15.9.1",
|
|
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.9.
|
|
77
|
-
"@genesislcap/rollup-builder": "15.9.
|
|
78
|
-
"@genesislcap/ts-builder": "15.9.
|
|
79
|
-
"@genesislcap/uvu-playwright-builder": "15.9.
|
|
80
|
-
"@genesislcap/vite-builder": "15.9.
|
|
81
|
-
"@genesislcap/webpack-builder": "15.9.
|
|
76
|
+
"@genesislcap/genx": "15.9.1",
|
|
77
|
+
"@genesislcap/rollup-builder": "15.9.1",
|
|
78
|
+
"@genesislcap/ts-builder": "15.9.1",
|
|
79
|
+
"@genesislcap/uvu-playwright-builder": "15.9.1",
|
|
80
|
+
"@genesislcap/vite-builder": "15.9.1",
|
|
81
|
+
"@genesislcap/webpack-builder": "15.9.1"
|
|
82
82
|
},
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"@genesislcap/foundation-comms": "15.9.
|
|
85
|
-
"@genesislcap/foundation-logger": "15.9.
|
|
86
|
-
"@genesislcap/foundation-ui": "15.9.
|
|
87
|
-
"@genesislcap/foundation-utils": "15.9.
|
|
84
|
+
"@genesislcap/foundation-comms": "15.9.1",
|
|
85
|
+
"@genesislcap/foundation-logger": "15.9.1",
|
|
86
|
+
"@genesislcap/foundation-ui": "15.9.1",
|
|
87
|
+
"@genesislcap/foundation-utils": "15.9.1",
|
|
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": "
|
|
114
|
+
"gitHead": "ebb65f317242acb27f8df7bd88c709f9482e5fe3"
|
|
115
115
|
}
|