@genesislcap/rapid-design-system 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
|
@@ -18921,6 +18921,31 @@
|
|
|
18921
18921
|
"module": "src/icon/icon.ts"
|
|
18922
18922
|
}
|
|
18923
18923
|
},
|
|
18924
|
+
{
|
|
18925
|
+
"kind": "field",
|
|
18926
|
+
"name": "tooltipElement",
|
|
18927
|
+
"type": {
|
|
18928
|
+
"text": "HTMLElement | undefined"
|
|
18929
|
+
},
|
|
18930
|
+
"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`).",
|
|
18931
|
+
"inheritedFrom": {
|
|
18932
|
+
"name": "Icon",
|
|
18933
|
+
"module": "src/icon/icon.ts"
|
|
18934
|
+
}
|
|
18935
|
+
},
|
|
18936
|
+
{
|
|
18937
|
+
"kind": "field",
|
|
18938
|
+
"name": "tooltipShowTimer",
|
|
18939
|
+
"type": {
|
|
18940
|
+
"text": "number | null"
|
|
18941
|
+
},
|
|
18942
|
+
"privacy": "private",
|
|
18943
|
+
"default": "null",
|
|
18944
|
+
"inheritedFrom": {
|
|
18945
|
+
"name": "Icon",
|
|
18946
|
+
"module": "src/icon/icon.ts"
|
|
18947
|
+
}
|
|
18948
|
+
},
|
|
18924
18949
|
{
|
|
18925
18950
|
"kind": "field",
|
|
18926
18951
|
"name": "name",
|
|
@@ -19022,6 +19047,42 @@
|
|
|
19022
19047
|
"module": "src/icon/icon.ts"
|
|
19023
19048
|
}
|
|
19024
19049
|
},
|
|
19050
|
+
{
|
|
19051
|
+
"kind": "field",
|
|
19052
|
+
"name": "showTooltip",
|
|
19053
|
+
"privacy": "private",
|
|
19054
|
+
"inheritedFrom": {
|
|
19055
|
+
"name": "Icon",
|
|
19056
|
+
"module": "src/icon/icon.ts"
|
|
19057
|
+
}
|
|
19058
|
+
},
|
|
19059
|
+
{
|
|
19060
|
+
"kind": "method",
|
|
19061
|
+
"name": "positionTooltip",
|
|
19062
|
+
"privacy": "private",
|
|
19063
|
+
"parameters": [
|
|
19064
|
+
{
|
|
19065
|
+
"name": "tooltip",
|
|
19066
|
+
"type": {
|
|
19067
|
+
"text": "HTMLElement"
|
|
19068
|
+
}
|
|
19069
|
+
}
|
|
19070
|
+
],
|
|
19071
|
+
"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.",
|
|
19072
|
+
"inheritedFrom": {
|
|
19073
|
+
"name": "Icon",
|
|
19074
|
+
"module": "src/icon/icon.ts"
|
|
19075
|
+
}
|
|
19076
|
+
},
|
|
19077
|
+
{
|
|
19078
|
+
"kind": "field",
|
|
19079
|
+
"name": "hideTooltip",
|
|
19080
|
+
"privacy": "private",
|
|
19081
|
+
"inheritedFrom": {
|
|
19082
|
+
"name": "Icon",
|
|
19083
|
+
"module": "src/icon/icon.ts"
|
|
19084
|
+
}
|
|
19085
|
+
},
|
|
19025
19086
|
{
|
|
19026
19087
|
"kind": "method",
|
|
19027
19088
|
"name": "getDefaultTooltipConfig",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/rapid-design-system",
|
|
3
3
|
"description": "Rapid 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",
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
|
|
41
|
-
"@genesislcap/foundation-testing": "15.9.
|
|
42
|
-
"@genesislcap/genx": "15.9.
|
|
43
|
-
"@genesislcap/rollup-builder": "15.9.
|
|
44
|
-
"@genesislcap/ts-builder": "15.9.
|
|
45
|
-
"@genesislcap/uvu-playwright-builder": "15.9.
|
|
46
|
-
"@genesislcap/vite-builder": "15.9.
|
|
47
|
-
"@genesislcap/webpack-builder": "15.9.
|
|
41
|
+
"@genesislcap/foundation-testing": "15.9.1",
|
|
42
|
+
"@genesislcap/genx": "15.9.1",
|
|
43
|
+
"@genesislcap/rollup-builder": "15.9.1",
|
|
44
|
+
"@genesislcap/ts-builder": "15.9.1",
|
|
45
|
+
"@genesislcap/uvu-playwright-builder": "15.9.1",
|
|
46
|
+
"@genesislcap/vite-builder": "15.9.1",
|
|
47
|
+
"@genesislcap/webpack-builder": "15.9.1",
|
|
48
48
|
"flexlayout-react": "^0.8.19"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@genesislcap/foundation-logger": "15.9.
|
|
60
|
-
"@genesislcap/foundation-ui": "15.9.
|
|
61
|
-
"@genesislcap/foundation-utils": "15.9.
|
|
59
|
+
"@genesislcap/foundation-logger": "15.9.1",
|
|
60
|
+
"@genesislcap/foundation-ui": "15.9.1",
|
|
61
|
+
"@genesislcap/foundation-utils": "15.9.1",
|
|
62
62
|
"@microsoft/fast-colors": "5.3.1",
|
|
63
63
|
"@microsoft/fast-components": "2.30.6",
|
|
64
64
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -94,5 +94,5 @@
|
|
|
94
94
|
"require": "./dist/react.cjs"
|
|
95
95
|
}
|
|
96
96
|
},
|
|
97
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "ebb65f317242acb27f8df7bd88c709f9482e5fe3"
|
|
98
98
|
}
|