@xh/hoist 76.0.0-SNAPSHOT.1758144134385 → 76.0.0-SNAPSHOT.1758147719816

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.
Files changed (54) hide show
  1. package/admin/tabs/userData/roles/graph/RoleGraph.ts +2 -1
  2. package/build/types/core/XH.d.ts +1 -1
  3. package/build/types/utils/js/LangUtils.d.ts +1 -1
  4. package/build/types/utils/js/index.d.ts +0 -1
  5. package/build/types/utils/log/index.d.ts +1 -0
  6. package/cmp/ag-grid/AgGrid.ts +1 -1
  7. package/cmp/chart/Chart.ts +2 -1
  8. package/cmp/chart/impl/ChartContextMenuItems.ts +1 -1
  9. package/cmp/grid/columns/Column.ts +2 -1
  10. package/cmp/grid/helpers/GridCountLabel.ts +2 -1
  11. package/cmp/grid/impl/ColumnWidthCalculator.ts +2 -1
  12. package/cmp/grid/impl/Utils.ts +1 -1
  13. package/cmp/relativetimestamp/RelativeTimestamp.ts +2 -1
  14. package/cmp/treemap/TreeMap.ts +2 -1
  15. package/core/HoistBase.ts +2 -10
  16. package/core/HoistBaseDecorators.ts +2 -1
  17. package/core/HoistComponent.ts +1 -1
  18. package/core/XH.ts +1 -1
  19. package/core/exception/ExceptionHandler.ts +1 -1
  20. package/core/load/LoadSupport.ts +1 -1
  21. package/core/persist/PersistenceProvider.ts +2 -1
  22. package/data/filter/Utils.ts +1 -1
  23. package/data/impl/RecordSet.ts +2 -1
  24. package/desktop/cmp/button/grid/ColAutosizeButton.ts +2 -1
  25. package/desktop/cmp/button/grid/ColChooserButton.ts +2 -1
  26. package/desktop/cmp/button/grid/ExpandToLevelButton.ts +2 -1
  27. package/desktop/cmp/button/grid/ExportButton.ts +2 -1
  28. package/desktop/cmp/button/panel/ModalToggleButton.ts +2 -1
  29. package/desktop/cmp/button/zoneGrid/ZoneMapperButton.ts +2 -1
  30. package/desktop/cmp/dash/container/impl/DashContainerUtils.ts +2 -1
  31. package/desktop/cmp/form/FormField.ts +2 -1
  32. package/desktop/cmp/grid/editors/BooleanEditor.ts +1 -1
  33. package/desktop/cmp/panel/Panel.ts +1 -1
  34. package/desktop/hooks/UseContextMenu.ts +1 -1
  35. package/kit/ag-grid/index.ts +2 -1
  36. package/kit/highcharts/index.ts +2 -1
  37. package/mobile/cmp/button/grid/ColAutosizeButton.ts +2 -1
  38. package/mobile/cmp/button/grid/ColChooserButton.ts +2 -1
  39. package/mobile/cmp/button/grid/ExpandCollapseButton.ts +2 -1
  40. package/mobile/cmp/button/grid/ExpandToLevelButton.ts +2 -1
  41. package/mobile/cmp/button/zoneGrid/ZoneMapperButton.ts +2 -1
  42. package/mobile/cmp/panel/Panel.ts +1 -1
  43. package/mobx/overrides.ts +1 -1
  44. package/package.json +1 -1
  45. package/security/BaseOAuthClient.ts +2 -1
  46. package/security/msal/MsalClient.ts +2 -1
  47. package/tsconfig.tsbuildinfo +1 -1
  48. package/utils/async/Timer.ts +2 -1
  49. package/utils/js/Decorators.ts +1 -1
  50. package/utils/js/LangUtils.ts +1 -1
  51. package/utils/js/index.ts +0 -1
  52. package/utils/{js → log}/LogUtils.ts +1 -1
  53. package/utils/log/index.ts +8 -0
  54. /package/build/types/utils/{js → log}/LogUtils.d.ts +0 -0
@@ -7,7 +7,8 @@
7
7
  import {XH} from '@xh/hoist/core';
8
8
  import {wait} from '@xh/hoist/promise';
9
9
  import {MILLISECONDS, MINUTES, olderThan} from '@xh/hoist/utils/datetime';
10
- import {logError, logWarn, throwIf} from '@xh/hoist/utils/js';
10
+ import {throwIf} from '@xh/hoist/utils/js';
11
+ import {logError, logWarn} from '@xh/hoist/utils/log';
11
12
  import {isBoolean, isFinite, isFunction, isNil, isString, pull} from 'lodash';
12
13
 
13
14
  /**
@@ -7,7 +7,7 @@
7
7
  import {XH} from '@xh/hoist/core';
8
8
  import {debounce, isFunction} from 'lodash';
9
9
  import {getOrCreate, throwIf, warnIf} from './LangUtils';
10
- import {withDebug, withInfo} from './LogUtils';
10
+ import {withDebug, withInfo} from '../log/LogUtils';
11
11
 
12
12
  /**
13
13
  * Decorates a class method so that it is debounced by the specified duration.
@@ -6,7 +6,7 @@
6
6
  */
7
7
  import {PlainObject, Thunkable} from '@xh/hoist/core';
8
8
  import {Exception} from '@xh/hoist/core/exception/Exception';
9
- import {LogSource, logWarn, logError} from '@xh/hoist/utils/js/LogUtils';
9
+ import {type LogSource, logWarn, logError} from '@xh/hoist/utils/log';
10
10
  import {
11
11
  flatMap,
12
12
  forOwn,
package/utils/js/index.ts CHANGED
@@ -7,7 +7,6 @@
7
7
  export * from './HtmlUtils';
8
8
  export * from './LangUtils';
9
9
  export * from './Decorators';
10
- export * from './LogUtils';
11
10
  export * from './DomUtils';
12
11
  export * from './TestUtils';
13
12
  export * from './VersionUtils';
@@ -7,7 +7,7 @@
7
7
  import {Some} from '@xh/hoist/core';
8
8
  import {castArray, isString} from 'lodash';
9
9
  import store from 'store2';
10
- import {intersperse} from './LangUtils';
10
+ import {intersperse} from '../js/LangUtils';
11
11
 
12
12
  /**
13
13
  * Utility functions providing managed, structured logging to Hoist apps.
@@ -0,0 +1,8 @@
1
+ /*
2
+ * This file belongs to Hoist, an application development toolkit
3
+ * developed by Extremely Heavy Industries (www.xh.io | info@xh.io)
4
+ *
5
+ * Copyright © 2025 Extremely Heavy Industries Inc.
6
+ */
7
+
8
+ export * from './LogUtils';
File without changes