@pie-lib/icons 2.24.2-next.164 → 2.24.2-next.171
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 +16 -0
- package/esm/index.js +11 -18
- package/esm/index.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.0.0-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/icons@2.24.2-next.0...@pie-lib/icons@3.0.0-next.0) (2026-01-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @pie-lib/icons
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [2.24.2-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/icons@2.38.0-mui-update.0...@pie-lib/icons@2.24.2-next.0) (2026-01-19)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @pie-lib/icons
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [2.24.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/icons@2.20.0...@pie-lib/icons@2.24.1) (2025-10-22)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @pie-lib/icons
|
package/esm/index.js
CHANGED
|
@@ -1182,27 +1182,20 @@ function requireFactoryWithThrowingShims () {
|
|
|
1182
1182
|
* LICENSE file in the root directory of this source tree.
|
|
1183
1183
|
*/
|
|
1184
1184
|
|
|
1185
|
-
|
|
1185
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
1186
|
+
var ReactIs = requireReactIs$1();
|
|
1186
1187
|
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
var throwOnDirectAccess = true;
|
|
1196
|
-
propTypes.exports = /*@__PURE__*/ requireFactoryWithTypeCheckers()(ReactIs.isElement, throwOnDirectAccess);
|
|
1197
|
-
} else {
|
|
1198
|
-
// By explicitly using `prop-types` you are opting into new production behavior.
|
|
1199
|
-
// http://fb.me/prop-types-in-prod
|
|
1200
|
-
propTypes.exports = /*@__PURE__*/ requireFactoryWithThrowingShims()();
|
|
1201
|
-
}
|
|
1202
|
-
return propTypes.exports;
|
|
1188
|
+
// By explicitly using `prop-types` you are opting into new development behavior.
|
|
1189
|
+
// http://fb.me/prop-types-in-prod
|
|
1190
|
+
var throwOnDirectAccess = true;
|
|
1191
|
+
propTypes.exports = /*@__PURE__*/ requireFactoryWithTypeCheckers()(ReactIs.isElement, throwOnDirectAccess);
|
|
1192
|
+
} else {
|
|
1193
|
+
// By explicitly using `prop-types` you are opting into new production behavior.
|
|
1194
|
+
// http://fb.me/prop-types-in-prod
|
|
1195
|
+
propTypes.exports = /*@__PURE__*/ requireFactoryWithThrowingShims()();
|
|
1203
1196
|
}
|
|
1204
1197
|
|
|
1205
|
-
var propTypesExports =
|
|
1198
|
+
var propTypesExports = propTypes.exports;
|
|
1206
1199
|
var PropTypes = /*@__PURE__*/getDefaultExportFromCjs(propTypesExports);
|
|
1207
1200
|
|
|
1208
1201
|
const normalizeSize = size => {
|