@xh/hoist 69.0.0-SNAPSHOT.1728741604616 → 69.0.0-SNAPSHOT.1728943041558

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
@@ -2,29 +2,32 @@
2
2
 
3
3
  ## 69.0.0-SNAPSHOT - unreleased
4
4
 
5
- ### 💥 Breaking Changes (upgrade difficulty: 🟢 LOW )
5
+ ### 💥 Breaking Changes (upgrade difficulty: 🟢 LOW - Hoist core update)
6
6
 
7
- * Requires `hoist-core >= 23.1` to support bulk upload of activity tracking logs to server.
8
- * `AppState.INITIALIZING` replaced with finer-grained states (not expected to impact most apps).
7
+ * Requires `hoist-core >= 24` to support batch upload of activity tracking logs to server.
8
+ * Replaced `AppState.INITIALIZING` with finer-grained states (not expected to impact most apps).
9
9
 
10
10
  ### 🎁 New Features
11
- * Added new AppStates `AUTHENTICATING`, `INITIALIZING_HOIST`, and `INITIALIZING_APP` to support
12
- more granular tracking and timing of app startup lifecycle.
13
- * Improved the default "Loaded App" activity tracking entry with more granular data on load timing.
14
- * `RestGrid` now displays an optional refresh button in its toolbar.
15
- * Enhanced tracking data posted with the built-in "Loaded App" entry to include a new `timings`
16
- block that breaks down the overall initial load time into more discrete phases. Supported by
17
- new `AppState` enums `AUTHENTICATING`, `INITIALIZING_HOIST`, and `INITIALIZING_APP`.
18
- * The filter field in the top toolbar of Grid's Column Filter Values tab now filters with `any`,
19
- instead of `startsWith`.
20
11
 
12
+ * Optimized activity tracking to batch its calls to the server, reducing network overhead.
13
+ * Enhanced data posted with the built-in "Loaded App" entry to include a new `timings` block that
14
+ breaks down the overall initial load time into more discrete phases.
15
+ * Added an optional refresh button to `RestGrid`s toolbar.
16
+ * Updated the nested search input within Grid column filters to match candidate values on `any` vs
17
+ `startsWith`. (Note that this does not change how grid filters are applied, only how users can
18
+ search for values to select/deselect.)
21
19
 
22
20
  ### ⚙️ Typescript API Adjustments
21
+
23
22
  * Improved typing of `HoistBase.addReaction` to flow types returned by the `track` closure through
24
23
  to the `run` closure that receives them.
25
- * Note that apps might need to adjust their reaction signatures slightly to accommodate the more
26
- accurate typing, specifically if they are tracking an array of values, destructuring those
27
- values in their `run` closure, and passing them on to typed APIs. Look out for `tsc` warnings.
24
+ * Note that apps might need to adjust their reaction signatures slightly to accommodate the more
25
+ accurate typing, specifically if they are tracking an array of values, destructuring those
26
+ values in their `run` closure, and passing them on to typed APIs. Look out for `tsc` warnings.
27
+
28
+ ### ✨ Styles
29
+
30
+ * Reset the `--xh-popup-bg` background color to match the primary `--xh-bg` color by default.
28
31
 
29
32
  ### 🐞 Bug Fixes
30
33
 
@@ -43,7 +46,7 @@ more granular tracking and timing of app startup lifecycle.
43
46
 
44
47
  ## 68.0.0 - 2024-09-18
45
48
 
46
- ### 💥 Breaking Changes (upgrade difficulty: 🟢 LOW - Hoist Core update only)
49
+ ### 💥 Breaking Changes (upgrade difficulty: 🟢 LOW - Hoist Core update)
47
50
 
48
51
  * Requires `hoist-core >= 22.0` for consolidated polling of Alert Banner updates (see below).
49
52
 
@@ -69,7 +72,7 @@ more granular tracking and timing of app startup lifecycle.
69
72
 
70
73
  ## 67.0.0 - 2024-09-03
71
74
 
72
- ### 💥 Breaking Changes (upgrade difficulty: 🟢 LOW - Hoist Core update only)
75
+ ### 💥 Breaking Changes (upgrade difficulty: 🟢 LOW - Hoist Core update)
73
76
 
74
77
  * Requires `hoist-core >= 21.0`.
75
78
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "69.0.0-SNAPSHOT.1728741604616",
3
+ "version": "69.0.0-SNAPSHOT.1728943041558",
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",
package/styles/vars.scss CHANGED
@@ -644,7 +644,7 @@ body {
644
644
  //------------------------
645
645
  // Popups / dialogs
646
646
  //------------------------
647
- --xh-popup-bg: var(--popup-bg, #ebf1f5);
647
+ --xh-popup-bg: var(--popup-bg, var(--xh-bg));
648
648
  --xh-popup-border-color: var(--popup-border-color, var(--xh-popup-title-bg));
649
649
  --xh-popup-border-width: var(--popup-border-width, var(--xh-border-width));
650
650
  --xh-popup-border-width-px: calc(var(--xh-popup-border-width) * 1px);
@@ -654,10 +654,6 @@ body {
654
654
  --xh-popup-title-font-size-px: calc(var(--xh-popup-title-font-size) * 1px);
655
655
  --xh-popup-title-text-color: var(--popup-title-text-color, var(--xh-title-text-color));
656
656
 
657
- &.xh-dark {
658
- --xh-popup-bg: var(--popup-bg, #293742);
659
- }
660
-
661
657
  &.xh-mobile {
662
658
  --xh-popup-border-width: 2;
663
659
  }