@fctc/widget-logic 1.10.0 → 2.0.1

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.
Files changed (65) hide show
  1. package/dist/config.d.mts +6 -0
  2. package/dist/config.d.ts +6 -0
  3. package/dist/config.js +24 -0
  4. package/dist/config.mjs +2 -0
  5. package/dist/constants.d.mts +1 -0
  6. package/dist/constants.d.ts +1 -0
  7. package/dist/constants.js +24 -0
  8. package/dist/constants.mjs +2 -0
  9. package/dist/environment.d.mts +1 -0
  10. package/dist/environment.d.ts +1 -0
  11. package/dist/environment.js +24 -0
  12. package/dist/environment.mjs +2 -0
  13. package/dist/hooks.d.mts +981 -0
  14. package/dist/hooks.d.ts +981 -0
  15. package/dist/hooks.js +921 -0
  16. package/dist/hooks.mjs +921 -0
  17. package/dist/icons.d.mts +27 -0
  18. package/dist/icons.d.ts +27 -0
  19. package/dist/icons.js +273 -0
  20. package/dist/icons.mjs +239 -0
  21. package/dist/index.d.mts +18 -4
  22. package/dist/index.d.ts +18 -4
  23. package/dist/index.js +7513 -249
  24. package/dist/index.mjs +7584 -221
  25. package/dist/provider.d.mts +1 -0
  26. package/dist/provider.d.ts +1 -0
  27. package/dist/provider.js +24 -0
  28. package/dist/provider.mjs +2 -0
  29. package/dist/services.d.mts +1 -0
  30. package/dist/services.d.ts +1 -0
  31. package/dist/services.js +24 -0
  32. package/dist/services.mjs +2 -0
  33. package/dist/store.d.mts +1 -0
  34. package/dist/store.d.ts +1 -0
  35. package/dist/store.js +24 -0
  36. package/dist/store.mjs +2 -0
  37. package/dist/types.d.mts +33 -0
  38. package/dist/types.d.ts +33 -0
  39. package/dist/types.js +24 -0
  40. package/dist/types.mjs +2 -0
  41. package/dist/utils.d.mts +47 -0
  42. package/dist/utils.d.ts +47 -0
  43. package/dist/utils.js +321 -0
  44. package/dist/utils.mjs +302 -0
  45. package/dist/widget.d.mts +296 -0
  46. package/dist/widget.d.ts +296 -0
  47. package/dist/widget.js +7292 -0
  48. package/dist/widget.mjs +7329 -0
  49. package/package.json +96 -52
  50. package/dist/action.d.mts +0 -68
  51. package/dist/action.d.ts +0 -68
  52. package/dist/action.js +0 -152
  53. package/dist/action.mjs +0 -122
  54. package/dist/common.d.mts +0 -13
  55. package/dist/common.d.ts +0 -13
  56. package/dist/common.js +0 -60
  57. package/dist/common.mjs +0 -33
  58. package/dist/form.d.mts +0 -42
  59. package/dist/form.d.ts +0 -42
  60. package/dist/form.js +0 -116
  61. package/dist/form.mjs +0 -87
  62. package/dist/table.d.mts +0 -22
  63. package/dist/table.d.ts +0 -22
  64. package/dist/table.js +0 -118
  65. package/dist/table.mjs +0 -91
@@ -0,0 +1,6 @@
1
+ export * from '@fctc/interface-logic/configs';
2
+ import '@fctc/interface-logic/constants';
3
+ import '@fctc/interface-logic/environment';
4
+ import '@fctc/interface-logic/store';
5
+ import '@fctc/interface-logic/provider';
6
+ import '@fctc/interface-logic/services';
@@ -0,0 +1,6 @@
1
+ export * from '@fctc/interface-logic/configs';
2
+ import '@fctc/interface-logic/constants';
3
+ import '@fctc/interface-logic/environment';
4
+ import '@fctc/interface-logic/store';
5
+ import '@fctc/interface-logic/provider';
6
+ import '@fctc/interface-logic/services';
package/dist/config.js ADDED
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __copyProps = (to, from, except, desc) => {
7
+ if (from && typeof from === "object" || typeof from === "function") {
8
+ for (let key of __getOwnPropNames(from))
9
+ if (!__hasOwnProp.call(to, key) && key !== except)
10
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11
+ }
12
+ return to;
13
+ };
14
+ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
15
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
16
+
17
+ // src/config.ts
18
+ var config_exports = {};
19
+ module.exports = __toCommonJS(config_exports);
20
+ __reExport(config_exports, require("@fctc/interface-logic/configs"), module.exports);
21
+ // Annotate the CommonJS export names for ESM import in node:
22
+ 0 && (module.exports = {
23
+ ...require("@fctc/interface-logic/configs")
24
+ });
@@ -0,0 +1,2 @@
1
+ // src/config.ts
2
+ export * from "@fctc/interface-logic/configs";
@@ -0,0 +1 @@
1
+ export * from '@fctc/interface-logic/constants';
@@ -0,0 +1 @@
1
+ export * from '@fctc/interface-logic/constants';
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __copyProps = (to, from, except, desc) => {
7
+ if (from && typeof from === "object" || typeof from === "function") {
8
+ for (let key of __getOwnPropNames(from))
9
+ if (!__hasOwnProp.call(to, key) && key !== except)
10
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11
+ }
12
+ return to;
13
+ };
14
+ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
15
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
16
+
17
+ // src/constants.ts
18
+ var constants_exports = {};
19
+ module.exports = __toCommonJS(constants_exports);
20
+ __reExport(constants_exports, require("@fctc/interface-logic/constants"), module.exports);
21
+ // Annotate the CommonJS export names for ESM import in node:
22
+ 0 && (module.exports = {
23
+ ...require("@fctc/interface-logic/constants")
24
+ });
@@ -0,0 +1,2 @@
1
+ // src/constants.ts
2
+ export * from "@fctc/interface-logic/constants";
@@ -0,0 +1 @@
1
+ export * from '@fctc/interface-logic/environment';
@@ -0,0 +1 @@
1
+ export * from '@fctc/interface-logic/environment';
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __copyProps = (to, from, except, desc) => {
7
+ if (from && typeof from === "object" || typeof from === "function") {
8
+ for (let key of __getOwnPropNames(from))
9
+ if (!__hasOwnProp.call(to, key) && key !== except)
10
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11
+ }
12
+ return to;
13
+ };
14
+ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
15
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
16
+
17
+ // src/environment.ts
18
+ var environment_exports = {};
19
+ module.exports = __toCommonJS(environment_exports);
20
+ __reExport(environment_exports, require("@fctc/interface-logic/environment"), module.exports);
21
+ // Annotate the CommonJS export names for ESM import in node:
22
+ 0 && (module.exports = {
23
+ ...require("@fctc/interface-logic/environment")
24
+ });
@@ -0,0 +1,2 @@
1
+ // src/environment.ts
2
+ export * from "@fctc/interface-logic/environment";