umwd-components 0.1.18 → 0.1.20

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,3 +1,4 @@
1
+ "use client";
1
2
  /*
2
3
  * UMWD-Components
3
4
  * @copyright Jelle Paulus
@@ -8,6 +9,7 @@
8
9
 
9
10
  Object.defineProperty(exports, '__esModule', { value: true });
10
11
 
12
+ var React = require('react');
11
13
  var material = require('@mui/material');
12
14
  var muiMarkdown = require('mui-markdown');
13
15
  var PropTypes = require('prop-types');
@@ -1,9 +1,11 @@
1
+ "use client";
1
2
  /*
2
3
  * UMWD-Components
3
4
  * @copyright Jelle Paulus
4
5
  * @license MIT
5
6
  */
6
7
 
8
+ import React from 'react';
7
9
  import { Grid, Typography } from '@mui/material';
8
10
  import { MuiMarkdown } from 'mui-markdown';
9
11
  import PropTypes from 'prop-types';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "umwd-components",
3
- "version": "0.1.18",
3
+ "version": "0.1.20",
4
4
  "description": "UMWD Component library",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -1,3 +1,6 @@
1
+ "use client";
2
+
3
+ import React from "react";
1
4
  import { Grid, Typography } from "@mui/material";
2
5
  // import Image from "next/image";
3
6
  import { MuiMarkdown } from "mui-markdown";