@iyulab/enterprise 0.9.0 → 0.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/CHANGELOG.md +10 -0
- package/dist/helpers/messages.d.ts +1 -1
- package/dist/icons.js +1 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.9.1
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- **`CurrencyHelper`, `messages`, and `icons` now deep-import `@iyulab/components`' utility
|
|
8
|
+
modules instead of the full package barrel.** Importing the barrel alongside
|
|
9
|
+
`@iyulab/components/react` in the same TypeScript program produced duplicate custom-element
|
|
10
|
+
registration and nominal-type conflicts for consumers; deep-importing avoids pulling in the
|
|
11
|
+
registration side effect these helpers never needed.
|
|
12
|
+
|
|
3
13
|
## 0.9.0
|
|
4
14
|
|
|
5
15
|
### Added
|
package/dist/icons.js
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { Locale
|
|
2
|
+
import { Locale } from "@iyulab/components/dist/utilities/Locale.js";
|
|
3
|
+
import { formatCurrency } from "@iyulab/components/dist/utilities/format.js";
|
|
3
4
|
import { HttpClient } from "@iyulab/http-client";
|
|
4
5
|
import buildQuery from "odata-query";
|
|
5
6
|
//#region src/FormSection.tsx
|