@fctc/widget-logic 1.0.5 → 1.0.7
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/form.js +3 -3
- package/dist/form.mjs +3 -3
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +2526 -0
- package/dist/index.mjs +2506 -0
- package/dist/table.js +1 -1
- package/dist/table.mjs +1 -1
- package/package.json +10 -10
package/dist/table.js
CHANGED
|
@@ -2190,7 +2190,7 @@ __export(table_exports, {
|
|
|
2190
2190
|
});
|
|
2191
2191
|
module.exports = __toCommonJS(table_exports);
|
|
2192
2192
|
|
|
2193
|
-
// src/widget/table/use-table.
|
|
2193
|
+
// src/widget/table/use-table.tsx
|
|
2194
2194
|
var import_interface_logic = require("@fctc/interface-logic");
|
|
2195
2195
|
var import_react = __toESM(require_react());
|
|
2196
2196
|
function mergeButtons(fields) {
|
package/dist/table.mjs
CHANGED
|
@@ -2177,7 +2177,7 @@ var require_react = __commonJS({
|
|
|
2177
2177
|
}
|
|
2178
2178
|
});
|
|
2179
2179
|
|
|
2180
|
-
// src/widget/table/use-table.
|
|
2180
|
+
// src/widget/table/use-table.tsx
|
|
2181
2181
|
var import_react = __toESM(require_react());
|
|
2182
2182
|
import { domainHelper } from "@fctc/interface-logic";
|
|
2183
2183
|
function mergeButtons(fields) {
|
package/package.json
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fctc/widget-logic",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"main": "dist/index.cjs",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
9
10
|
"import": "./dist/index.mjs",
|
|
10
|
-
"require": "./dist/index.cjs"
|
|
11
|
-
"types": "./dist/index.d.ts"
|
|
11
|
+
"require": "./dist/index.cjs"
|
|
12
12
|
},
|
|
13
13
|
"./action": {
|
|
14
|
+
"types": "./dist/action.d.ts",
|
|
14
15
|
"import": "./dist/action.mjs",
|
|
15
|
-
"require": "./dist/action.cjs"
|
|
16
|
-
"types": "./dist/action.d.ts"
|
|
16
|
+
"require": "./dist/action.cjs"
|
|
17
17
|
},
|
|
18
18
|
"./form": {
|
|
19
|
+
"types": "./dist/form.d.ts",
|
|
19
20
|
"import": "./dist/form.mjs",
|
|
20
|
-
"require": "./dist/form.cjs"
|
|
21
|
-
"types": "./dist/form.d.ts"
|
|
21
|
+
"require": "./dist/form.cjs"
|
|
22
22
|
},
|
|
23
23
|
"./table": {
|
|
24
|
+
"types": "./dist/table.d.ts",
|
|
24
25
|
"import": "./dist/table.mjs",
|
|
25
|
-
"require": "./dist/table.cjs"
|
|
26
|
-
"types": "./dist/table.d.ts"
|
|
26
|
+
"require": "./dist/table.cjs"
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
29
|
"files": [
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"test": "jest"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@fctc/interface-logic": "^1.0.
|
|
37
|
+
"@fctc/interface-logic": "^1.0.4"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/react": "18.3.1",
|