gomtm 0.0.292 → 0.0.293

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gomtm",
3
- "version": "0.0.292",
3
+ "version": "0.0.293",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "private": false,
@@ -83,8 +83,8 @@
83
83
  "universal-cookie": "^7.1.4",
84
84
  "zod": "^3.22.2",
85
85
  "zustand": "^4.5.2",
86
- "mtxuilib": "0.0.649",
87
- "mtxlib": "0.3.372"
86
+ "mtxlib": "0.3.373",
87
+ "mtxuilib": "0.0.650"
88
88
  },
89
89
  "devDependencies": {
90
90
  "@babel/core": "^7.24.0",
@@ -1,4 +0,0 @@
1
- export type ActionHandler = (props: {
2
- action: string;
3
- values?: any;
4
- }) => void;
@@ -1 +0,0 @@
1
- "use client";
@@ -1,2 +0,0 @@
1
- declare const useStore: <T, F>(store: (callback: (state: T) => unknown) => unknown, callback: (state: T) => F) => F | undefined;
2
- export default useStore;
@@ -1,13 +0,0 @@
1
- import { useEffect, useState } from "react";
2
- const useStore = (store, callback) => {
3
- const result = store(callback);
4
- const [data, setData] = useState();
5
- useEffect(() => {
6
- setData(result);
7
- }, [result]);
8
- return data;
9
- };
10
- var useStore_default = useStore;
11
- export {
12
- useStore_default as default
13
- };