@openmrs/esm-styleguide 5.8.2-pre.2469 → 5.8.2-pre.2471
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/.turbo/turbo-build.log +1 -1
- package/package.json +7 -7
- package/src/icons/icons.tsx +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -45,4 +45,4 @@ WARNING in webpack performance recommendations:
|
|
|
45
45
|
You can limit the size of your bundles by using import() or require.ensure to lazy load some parts of your application.
|
|
46
46
|
For more info visit https://webpack.js.org/guides/code-splitting/
|
|
47
47
|
|
|
48
|
-
webpack 5.88.0 compiled with 3 warnings in
|
|
48
|
+
webpack 5.88.0 compiled with 3 warnings in 29193 ms
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openmrs/esm-styleguide",
|
|
3
|
-
"version": "5.8.2-pre.
|
|
3
|
+
"version": "5.8.2-pre.2471",
|
|
4
4
|
"license": "MPL-2.0",
|
|
5
5
|
"description": "The styleguide for OpenMRS SPA",
|
|
6
6
|
"browser": "dist/openmrs-esm-styleguide.js",
|
|
@@ -63,12 +63,12 @@
|
|
|
63
63
|
"rxjs": "6.x"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@openmrs/esm-error-handling": "5.8.2-pre.
|
|
67
|
-
"@openmrs/esm-extensions": "5.8.2-pre.
|
|
68
|
-
"@openmrs/esm-navigation": "5.8.2-pre.
|
|
69
|
-
"@openmrs/esm-react-utils": "5.8.2-pre.
|
|
70
|
-
"@openmrs/esm-state": "5.8.2-pre.
|
|
71
|
-
"@openmrs/esm-translations": "5.8.2-pre.
|
|
66
|
+
"@openmrs/esm-error-handling": "5.8.2-pre.2471",
|
|
67
|
+
"@openmrs/esm-extensions": "5.8.2-pre.2471",
|
|
68
|
+
"@openmrs/esm-navigation": "5.8.2-pre.2471",
|
|
69
|
+
"@openmrs/esm-react-utils": "5.8.2-pre.2471",
|
|
70
|
+
"@openmrs/esm-state": "5.8.2-pre.2471",
|
|
71
|
+
"@openmrs/esm-translations": "5.8.2-pre.2471",
|
|
72
72
|
"@types/geopattern": "^1.2.9",
|
|
73
73
|
"autoprefixer": "^9.8.8",
|
|
74
74
|
"css-minimizer-webpack-plugin": "^1.2.0",
|
package/src/icons/icons.tsx
CHANGED
|
@@ -422,7 +422,7 @@ export const PenIcon = memo(
|
|
|
422
422
|
*/
|
|
423
423
|
export const PrinterIcon = memo(
|
|
424
424
|
forwardRef<SVGSVGElement, IconProps>(function PrinterIcon(props, ref) {
|
|
425
|
-
return <Icon ref={ref} icon="omrs-icon-
|
|
425
|
+
return <Icon ref={ref} icon="omrs-icon-print" iconProps={props} />;
|
|
426
426
|
}),
|
|
427
427
|
);
|
|
428
428
|
|