@itwin/core-react 5.0.3 → 5.0.5

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
@@ -1,6 +1,18 @@
1
1
  # Change Log - @itwin/core-react
2
2
 
3
- This log was last generated on Fri, 17 Jan 2025 11:42:02 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 21 Jan 2025 11:38:58 GMT and should not be manually modified.
4
+
5
+ ## 5.0.5
6
+ Tue, 21 Jan 2025 11:38:58 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 5.0.4
11
+ Fri, 17 Jan 2025 14:12:03 GMT
12
+
13
+ ### Updates
14
+
15
+ - Fixed `module 'lodash' does not provide an export named...` error when running in Node.js.
4
16
 
5
17
  ## 5.0.3
6
18
  Fri, 17 Jan 2025 11:42:02 GMT
@@ -6,7 +6,7 @@
6
6
  * @module Utilities
7
7
  */
8
8
  import * as React from "react";
9
- import { throttle } from "lodash";
9
+ import throttle from "lodash/throttle.js";
10
10
  const defaultOptions = {
11
11
  leading: false,
12
12
  trailing: true,
@@ -1 +1 @@
1
- {"version":3,"file":"useThrottledFn.js","sourceRoot":"","sources":["../../../../src/core-react/utils/hooks/useThrottledFn.tsx"],"names":[],"mappings":"AAAA;;;gGAGgG;AAChG;;GAEG;AAEH,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAUlC,MAAM,cAAc,GAAqB;IACvC,OAAO,EAAE,KAAK;IACd,QAAQ,EAAE,IAAI;CACf,CAAC;AAEF;;GAEG;AACH,MAAM,UAAU,cAAc,CAC5B,kBAAqB,EACrB,QAAgB,EAChB,YAAkC,EAClC,UAA4B,cAAc;IAE1C,MAAM,iBAAiB,GAAG,QAAQ,CAAC,kBAAkB,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC;IAC1E,uDAAuD;IACvD,OAAO,KAAK,CAAC,WAAW,CAAC,iBAAiB,EAAE,YAAY,CAAC,CAAC;AAC5D,CAAC","sourcesContent":["/*---------------------------------------------------------------------------------------------\n * Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n * See LICENSE.md in the project root for license terms and full copyright notice.\n *--------------------------------------------------------------------------------------------*/\n/** @packageDocumentation\n * @module Utilities\n */\n\nimport * as React from \"react\";\nimport { throttle } from \"lodash\";\n\n/** lodash throttle options\n * @internal\n */\nexport interface ThrottleSettings {\n leading: boolean;\n trailing: boolean;\n}\n\nconst defaultOptions: ThrottleSettings = {\n leading: false,\n trailing: true,\n};\n\n/** Used to throttle function calls\n * @internal\n */\nexport function useThrottledFn<T extends (...args: any) => any>(\n functionToThrottle: T,\n waitTime: number,\n dependencies: React.DependencyList,\n options: ThrottleSettings = defaultOptions\n) {\n const throttledFunction = throttle(functionToThrottle, waitTime, options);\n // eslint-disable-next-line react-hooks/exhaustive-deps\n return React.useCallback(throttledFunction, dependencies);\n}\n"]}
1
+ {"version":3,"file":"useThrottledFn.js","sourceRoot":"","sources":["../../../../src/core-react/utils/hooks/useThrottledFn.tsx"],"names":[],"mappings":"AAAA;;;gGAGgG;AAChG;;GAEG;AAEH,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,QAAQ,MAAM,oBAAoB,CAAC;AAU1C,MAAM,cAAc,GAAqB;IACvC,OAAO,EAAE,KAAK;IACd,QAAQ,EAAE,IAAI;CACf,CAAC;AAEF;;GAEG;AACH,MAAM,UAAU,cAAc,CAC5B,kBAAqB,EACrB,QAAgB,EAChB,YAAkC,EAClC,UAA4B,cAAc;IAE1C,MAAM,iBAAiB,GAAG,QAAQ,CAAC,kBAAkB,EAAE,QAAQ,EAAE,OAAO,CAAC,CAAC;IAC1E,uDAAuD;IACvD,OAAO,KAAK,CAAC,WAAW,CAAC,iBAAiB,EAAE,YAAY,CAAC,CAAC;AAC5D,CAAC","sourcesContent":["/*---------------------------------------------------------------------------------------------\n * Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n * See LICENSE.md in the project root for license terms and full copyright notice.\n *--------------------------------------------------------------------------------------------*/\n/** @packageDocumentation\n * @module Utilities\n */\n\nimport * as React from \"react\";\nimport throttle from \"lodash/throttle.js\";\n\n/** lodash throttle options\n * @internal\n */\nexport interface ThrottleSettings {\n leading: boolean;\n trailing: boolean;\n}\n\nconst defaultOptions: ThrottleSettings = {\n leading: false,\n trailing: true,\n};\n\n/** Used to throttle function calls\n * @internal\n */\nexport function useThrottledFn<T extends (...args: any) => any>(\n functionToThrottle: T,\n waitTime: number,\n dependencies: React.DependencyList,\n options: ThrottleSettings = defaultOptions\n) {\n const throttledFunction = throttle(functionToThrottle, waitTime, options);\n // eslint-disable-next-line react-hooks/exhaustive-deps\n return React.useCallback(throttledFunction, dependencies);\n}\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/core-react",
3
- "version": "5.0.3",
3
+ "version": "5.0.5",
4
4
  "description": "A react component library of iTwin.js UI general purpose components",
5
5
  "type": "module",
6
6
  "types": "./lib/core-react.d.ts",