podo-ui 0.2.1 → 0.3.0

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/global.scss CHANGED
@@ -57,3 +57,4 @@
57
57
  @forward './scss/molecule/table.scss';
58
58
  @forward './scss/molecule/pagination.scss';
59
59
  @forward './scss/molecule/toast.scss';
60
+
package/next.ts CHANGED
@@ -5,16 +5,14 @@ import Input from './react/atom/input';
5
5
  import Textarea from './react/atom/textarea';
6
6
  import Field from './react/molecule/field';
7
7
  const Editor = dynamic(() => import('./react/atom/editor'), { ssr: false });
8
- import EditorView from './react/atom/editor-view';
9
8
 
10
9
  const Form = {
11
10
  Input,
12
11
  Textarea,
13
12
  Editor,
14
- EditorView,
15
13
  Field,
16
14
  };
17
15
 
18
16
  export default Form;
19
17
 
20
- export { Input, Textarea, Editor, EditorView, Field };
18
+ export { Input, Textarea, Editor, Field };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "podo-ui",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
5
  "author": "hada0127 <work@tarucy.net>",
6
6
  "license": "MIT",
@@ -27,7 +27,6 @@
27
27
  "react": "^18.3.1",
28
28
  "react-dom": "^18.3.1",
29
29
  "sass": "^1.83.0",
30
- "suneditor": "^2.47.1",
31
30
  "uuid": "^11.0.3",
32
31
  "zod": "^3.23.8"
33
32
  },