@xwadex/fesd-next 0.1.24-bata → 0.1.26-bata
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/dist/cjs/components/index.d.ts +1 -0
- package/dist/cjs/components/index.js +6 -0
- package/dist/cjs/components/index.js.map +1 -0
- package/dist/cjs/hooks/index.d.ts +1 -0
- package/dist/cjs/hooks/index.js +6 -0
- package/dist/cjs/hooks/index.js.map +1 -0
- package/dist/esm/components/index.d.ts +1 -0
- package/dist/esm/components/index.js +2 -0
- package/dist/esm/components/index.js.map +1 -0
- package/dist/esm/hooks/index.d.ts +1 -0
- package/dist/esm/hooks/index.js +2 -0
- package/dist/esm/hooks/index.js.map +1 -0
- package/package.json +4 -6
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Demo } from "./Demo";
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Demo = void 0;
|
|
4
|
+
var Demo_1 = require("./Demo");
|
|
5
|
+
Object.defineProperty(exports, "Demo", { enumerable: true, get: function () { return Demo_1.Demo; } });
|
|
6
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/fesd/components/index.ts"],"names":[],"mappings":";;;AAAA,+BAA8B;AAArB,4FAAA,IAAI,OAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { usePrevious } from "./usePrevState";
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.usePrevious = void 0;
|
|
4
|
+
var usePrevState_1 = require("./usePrevState");
|
|
5
|
+
Object.defineProperty(exports, "usePrevious", { enumerable: true, get: function () { return usePrevState_1.usePrevious; } });
|
|
6
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/fesd/hooks/index.ts"],"names":[],"mappings":";;;AAAA,+CAA6C;AAApC,2GAAA,WAAW,OAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Demo } from "./Demo";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/fesd/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { usePrevious } from "./usePrevState";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/fesd/hooks/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xwadex/fesd-next",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.26-bata",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/esm/index.js",
|
|
@@ -16,11 +16,9 @@
|
|
|
16
16
|
"build:cjs": "tsc --module commonjs --outDir dist/cjs"
|
|
17
17
|
},
|
|
18
18
|
"exports": {
|
|
19
|
-
".": "./dist/index.js",
|
|
20
|
-
"./components": "./dist/components/index.js",
|
|
21
|
-
"./hooks": "./dist/hooks/index.js"
|
|
22
|
-
"./methods": "./dist/methods/index.js",
|
|
23
|
-
"./tools": "./dist/tools.js"
|
|
19
|
+
".": "./dist/cjs/index.js",
|
|
20
|
+
"./components": "./dist/cjs/components/index.js",
|
|
21
|
+
"./hooks": "./dist/cjs/hooks/index.js"
|
|
24
22
|
},
|
|
25
23
|
"dependencies": {
|
|
26
24
|
"next": "15.0.3",
|