@openmrs/esm-styleguide 5.4.1-pre.1513 → 5.4.1-pre.1518

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.
@@ -1,4 +1,4 @@
1
- @openmrs/esm-styleguide:build: cache hit, replaying output 846f340caf421b7a
1
+ @openmrs/esm-styleguide:build: cache hit, replaying output 7c031ae0453017af
2
2
  @openmrs/esm-styleguide:build: assets by info 2.4 MiB [immutable]
3
3
  @openmrs/esm-styleguide:build:  assets by path *.woff 1.35 MiB
4
4
  @openmrs/esm-styleguide:build:  asset d96e5a614e96c351c453.woff 24.5 KiB [emitted] [immutable] [from: ../../../node_modules/@ibm/plex/IBM-Plex-Serif/fonts/split/woff/IBMPlexSerif-SemiBoldItalic-Cyrillic.woff] (auxiliary name: main)
@@ -47,4 +47,4 @@
47
47
  @openmrs/esm-styleguide:build: You can limit the size of your bundles by using import() or require.ensure to lazy load some parts of your application.
48
48
  @openmrs/esm-styleguide:build: For more info visit https://webpack.js.org/guides/code-splitting/
49
49
  @openmrs/esm-styleguide:build: 
50
- @openmrs/esm-styleguide:build: webpack 5.88.0 compiled with 3 warnings in 15720 ms
50
+ @openmrs/esm-styleguide:build: webpack 5.88.0 compiled with 3 warnings in 15865 ms
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openmrs/esm-styleguide",
3
- "version": "5.4.1-pre.1513",
3
+ "version": "5.4.1-pre.1518",
4
4
  "license": "MPL-2.0",
5
5
  "description": "The styleguide for OpenMRS SPA",
6
6
  "browser": "dist/openmrs-esm-styleguide.js",
@@ -60,9 +60,9 @@
60
60
  "rxjs": "6.x"
61
61
  },
62
62
  "devDependencies": {
63
- "@openmrs/esm-extensions": "5.4.1-pre.1513",
64
- "@openmrs/esm-react-utils": "5.4.1-pre.1513",
65
- "@openmrs/esm-state": "5.4.1-pre.1513",
63
+ "@openmrs/esm-extensions": "5.4.1-pre.1518",
64
+ "@openmrs/esm-react-utils": "5.4.1-pre.1518",
65
+ "@openmrs/esm-state": "5.4.1-pre.1518",
66
66
  "autoprefixer": "^9.8.8",
67
67
  "css-minimizer-webpack-plugin": "^1.2.0",
68
68
  "i18next": "^21.10.0",
package/src/public.ts CHANGED
@@ -12,3 +12,4 @@ export { type SnackbarDescriptor, type SnackbarType, type SnackbarMeta } from '.
12
12
  export * from './left-nav';
13
13
  export * from './error-state';
14
14
  export * from './datepicker';
15
+ export * from './responsive-wrapper';
@@ -11,7 +11,7 @@ export type ResponsiveWrapperProps = {
11
11
  * On desktop, it renders the children as is, while on a tablet, it wraps them in a Carbon Layer https://react.carbondesignsystem.com/?path=/docs/components-layer--overview component.
12
12
  * This provides a light background for form inputs on tablets, in accordance with the design requirements.
13
13
  */
14
- export default function ResponsiveWrapper({ children }: ResponsiveWrapperProps) {
14
+ export function ResponsiveWrapper({ children }: ResponsiveWrapperProps) {
15
15
  const layout = useLayoutType();
16
16
  const isTablet = layout === 'tablet';
17
17