@xh/hoist 80.0.0-SNAPSHOT.1768603318265 → 80.0.0-SNAPSHOT.1768931272469
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/CHANGELOG.md
CHANGED
|
@@ -54,6 +54,13 @@
|
|
|
54
54
|
* Added new CSS variables `--xh-intent-danger-text-color` (and others). Consider using these when
|
|
55
55
|
styling text with Hoist intent colors to enhance legibility in dark mode.
|
|
56
56
|
|
|
57
|
+
### 📚 Libraries
|
|
58
|
+
|
|
59
|
+
* Added a direct dependency and forced resolution to pin to `jquery@3.x`. This is a transitive
|
|
60
|
+
dependency of the `golden-layout` library and is specified by that library very loosely as `*`,
|
|
61
|
+
causing a break if upgraded to jQuery's new 4.x release.
|
|
62
|
+
* ⚠️Apps will need to add their own resolution to ensure they stay on the last 3.x version.
|
|
63
|
+
|
|
57
64
|
## 79.0.0 - 2026-01-05
|
|
58
65
|
|
|
59
66
|
### 💥 Breaking Changes
|
|
@@ -153,6 +153,7 @@ const tabCmp = hoistCmp.factory<TabProps>(({tab, index, localModel, model}) => {
|
|
|
153
153
|
className: classNames(
|
|
154
154
|
'xh-dynamic-tab-switcher__tabs__tab',
|
|
155
155
|
isActive && 'xh-dynamic-tab-switcher__tabs__tab--active',
|
|
156
|
+
isFavorite && 'xh-dynamic-tab-switcher__tabs__tab--favorite',
|
|
156
157
|
snapshot.isDragging && 'xh-dynamic-tab-switcher__tabs__tab--dragging'
|
|
157
158
|
),
|
|
158
159
|
onClick: () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xh/hoist",
|
|
3
|
-
"version": "80.0.0-SNAPSHOT.
|
|
3
|
+
"version": "80.0.0-SNAPSHOT.1768931272469",
|
|
4
4
|
"description": "Hoist add-on for building and deploying React Applications.",
|
|
5
5
|
"repository": "github:xh/hoist-react",
|
|
6
6
|
"homepage": "https://xh.io",
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"golden-layout": "~1.5.9",
|
|
55
55
|
"http-status-codes": "~2.3.0",
|
|
56
56
|
"inter-ui": "~4.1.1",
|
|
57
|
+
"jquery": "3.x",
|
|
57
58
|
"jwt-decode": "~4.0.0",
|
|
58
59
|
"lodash": "~4.17.21",
|
|
59
60
|
"lodash-inflection": "~1.5.0",
|
|
@@ -111,9 +112,10 @@
|
|
|
111
112
|
"typescript": "~5.9.2"
|
|
112
113
|
},
|
|
113
114
|
"resolutions": {
|
|
114
|
-
"core-js": "3.x",
|
|
115
115
|
"@types/react": "18.x",
|
|
116
|
-
"@types/react-dom": "18.x"
|
|
116
|
+
"@types/react-dom": "18.x",
|
|
117
|
+
"core-js": "3.x",
|
|
118
|
+
"jquery": "3.x"
|
|
117
119
|
},
|
|
118
120
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
119
121
|
}
|