@1money/component-ui 0.0.95-alpha.1 → 0.0.95-alpha.2

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 (94) hide show
  1. package/es/business/Dialog/BaseDialog/BaseDialog.d.ts +0 -1
  2. package/es/business/Dialog/BaseDialog/BaseDialog.js +43 -66
  3. package/es/business/Dialog/BaseDialog/constants.d.ts +7 -8
  4. package/es/business/Dialog/BaseDialog/constants.js +8 -9
  5. package/es/business/Dialog/variants/LoadingDialog.js +3 -3
  6. package/es/business/{PageForm → Form/PageForm}/PageForm.d.ts +1 -1
  7. package/es/business/Form/PageForm/PageForm.js +97 -0
  8. package/es/business/Form/PageForm/index.js +5 -0
  9. package/es/business/{PageForm → Form/PageForm}/interface.d.ts +5 -5
  10. package/es/business/Form/PageForm/interface.js +2 -0
  11. package/es/business/Form/ResultForm/ResultForm.d.ts +2 -0
  12. package/es/business/Form/ResultForm/ResultForm.js +32 -0
  13. package/es/business/Form/ResultForm/index.d.ts +4 -0
  14. package/es/business/Form/ResultForm/index.js +5 -0
  15. package/es/business/Form/ResultForm/interface.d.ts +10 -0
  16. package/es/business/Form/ResultForm/interface.js +2 -0
  17. package/es/business/Form/index.d.ts +2 -0
  18. package/es/business/Form/index.js +14 -0
  19. package/es/business/index.d.ts +1 -1
  20. package/es/business/index.js +2 -2
  21. package/es/components/ActionBar/ActionBar.js +3 -4
  22. package/es/components/Dialog/interface.d.ts +10 -4
  23. package/es/components/FormLayout/interface.d.ts +6 -1
  24. package/es/components/PanelLayout/PanelLayout.d.ts +3 -0
  25. package/es/components/PanelLayout/PanelLayout.js +142 -0
  26. package/es/components/PanelLayout/constants.d.ts +60 -0
  27. package/es/components/PanelLayout/constants.js +48 -0
  28. package/es/components/PanelLayout/index.d.ts +6 -0
  29. package/es/components/PanelLayout/index.js +6 -0
  30. package/es/components/PanelLayout/interface.d.ts +68 -0
  31. package/es/components/PanelLayout/interface.js +2 -0
  32. package/es/components/PanelLayout/style/PanelLayout.css +50 -0
  33. package/es/components/PanelLayout/style/css.js +2 -0
  34. package/es/components/PanelLayout/style/index.d.ts +1 -0
  35. package/es/components/PanelLayout/style/index.js +2 -0
  36. package/es/index.css +1 -1
  37. package/es/index.d.ts +2 -0
  38. package/es/index.js +2 -1
  39. package/lib/business/Dialog/BaseDialog/BaseDialog.d.ts +0 -1
  40. package/lib/business/Dialog/BaseDialog/BaseDialog.js +42 -65
  41. package/lib/business/Dialog/BaseDialog/constants.d.ts +7 -8
  42. package/lib/business/Dialog/BaseDialog/constants.js +9 -10
  43. package/lib/business/Dialog/variants/LoadingDialog.js +3 -3
  44. package/lib/business/{PageForm → Form/PageForm}/PageForm.d.ts +1 -1
  45. package/lib/business/Form/PageForm/PageForm.js +103 -0
  46. package/lib/business/Form/PageForm/index.js +30 -0
  47. package/lib/business/{PageForm → Form/PageForm}/interface.d.ts +5 -5
  48. package/lib/business/Form/PageForm/interface.js +6 -0
  49. package/lib/business/Form/ResultForm/ResultForm.d.ts +2 -0
  50. package/lib/business/Form/ResultForm/ResultForm.js +38 -0
  51. package/lib/business/Form/ResultForm/index.d.ts +4 -0
  52. package/lib/business/Form/ResultForm/index.js +30 -0
  53. package/lib/business/Form/ResultForm/interface.d.ts +10 -0
  54. package/lib/business/Form/ResultForm/interface.js +6 -0
  55. package/lib/business/Form/index.d.ts +2 -0
  56. package/lib/business/Form/index.js +28 -0
  57. package/lib/business/index.d.ts +1 -1
  58. package/lib/business/index.js +5 -5
  59. package/lib/components/ActionBar/ActionBar.js +3 -4
  60. package/lib/components/Dialog/interface.d.ts +10 -4
  61. package/lib/components/FormLayout/interface.d.ts +6 -1
  62. package/lib/components/PanelLayout/PanelLayout.d.ts +3 -0
  63. package/lib/components/PanelLayout/PanelLayout.js +151 -0
  64. package/lib/components/PanelLayout/constants.d.ts +60 -0
  65. package/lib/components/PanelLayout/constants.js +54 -0
  66. package/lib/components/PanelLayout/index.d.ts +6 -0
  67. package/lib/components/PanelLayout/index.js +52 -0
  68. package/lib/components/PanelLayout/interface.d.ts +68 -0
  69. package/lib/components/PanelLayout/interface.js +6 -0
  70. package/lib/components/PanelLayout/style/PanelLayout.css +50 -0
  71. package/lib/components/PanelLayout/style/css.js +4 -0
  72. package/lib/components/PanelLayout/style/index.d.ts +1 -0
  73. package/lib/components/PanelLayout/style/index.js +4 -0
  74. package/lib/index.css +1 -1
  75. package/lib/index.d.ts +2 -0
  76. package/lib/index.js +14 -1
  77. package/package.json +24 -4
  78. package/scripts/mcp-server/index.generated.json +2 -2
  79. package/es/business/Dialog/BaseDialog/style/BaseDialog.css +0 -72
  80. package/es/business/Dialog/BaseDialog/style/css.js +0 -2
  81. package/es/business/Dialog/BaseDialog/style/index.d.ts +0 -1
  82. package/es/business/Dialog/BaseDialog/style/index.js +0 -2
  83. package/es/business/PageForm/PageForm.js +0 -97
  84. package/es/business/PageForm/index.js +0 -5
  85. package/es/business/PageForm/interface.js +0 -2
  86. package/lib/business/Dialog/BaseDialog/style/BaseDialog.css +0 -72
  87. package/lib/business/Dialog/BaseDialog/style/css.js +0 -4
  88. package/lib/business/Dialog/BaseDialog/style/index.d.ts +0 -1
  89. package/lib/business/Dialog/BaseDialog/style/index.js +0 -4
  90. package/lib/business/PageForm/PageForm.js +0 -103
  91. package/lib/business/PageForm/index.js +0 -30
  92. package/lib/business/PageForm/interface.js +0 -6
  93. /package/es/business/{PageForm → Form/PageForm}/index.d.ts +0 -0
  94. /package/lib/business/{PageForm → Form/PageForm}/index.d.ts +0 -0
@@ -1,30 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- var _exportNames = {
7
- PageForm: true
8
- };
9
- Object.defineProperty(exports, "PageForm", {
10
- enumerable: true,
11
- get: function get() {
12
- return _PageForm.PageForm;
13
- }
14
- });
15
- exports["default"] = void 0;
16
- var _PageForm = require("./PageForm");
17
- var _interface = require("./interface");
18
- Object.keys(_interface).forEach(function (key) {
19
- if (key === "default" || key === "__esModule") return;
20
- if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
21
- if (key in exports && exports[key] === _interface[key]) return;
22
- Object.defineProperty(exports, key, {
23
- enumerable: true,
24
- get: function get() {
25
- return _interface[key];
26
- }
27
- });
28
- });
29
- var _default = exports["default"] = _PageForm.PageForm;
30
- //# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImJ1c2luZXNzL3NyYy9idXNpbmVzcy9QYWdlRm9ybS9pbmRleC50cyJdLCJuYW1lcyI6WyJfUGFnZUZvcm0iLCJyZXF1aXJlIiwiX2ludGVyZmFjZSIsIk9iamVjdCIsImtleXMiLCJmb3JFYWNoIiwia2V5IiwicHJvdG90eXBlIiwiaGFzT3duUHJvcGVydHkiLCJjYWxsIiwiX2V4cG9ydE5hbWVzIiwiZXhwb3J0cyIsImRlZmluZVByb3BlcnR5IiwiZW51bWVyYWJsZSIsImdldCIsIl9kZWZhdWx0IiwiUGFnZUZvcm0iXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7OztBQUFBLElBQUFBLFNBQUEsR0FBQUMsT0FBQTtBQU1BLElBQUFDLFVBQUEsR0FBQUQsT0FBQTtBQUFBRSxNQUFBLENBQUFDLElBQUEsQ0FBQUYsVUFBQSxFQUFBRyxPQUFBLFdBQUFDLEdBQUE7RUFBQSxJQUFBQSxHQUFBLGtCQUFBQSxHQUFBO0VBQUEsSUFBQUgsTUFBQSxDQUFBSSxTQUFBLENBQUFDLGNBQUEsQ0FBQUMsSUFBQSxDQUFBQyxZQUFBLEVBQUFKLEdBQUE7RUFBQSxJQUFBQSxHQUFBLElBQUFLLE9BQUEsSUFBQUEsT0FBQSxDQUFBTCxHQUFBLE1BQUFKLFVBQUEsQ0FBQUksR0FBQTtFQUFBSCxNQUFBLENBQUFTLGNBQUEsQ0FBQUQsT0FBQSxFQUFBTCxHQUFBO0lBQUFPLFVBQUE7SUFBQUMsR0FBQSxXQUFBQSxJQUFBO01BQUEsT0FBQVosVUFBQSxDQUFBSSxHQUFBO0lBQUE7RUFBQTtBQUFBO0FBQTRCLElBQUFTLFFBQUEsR0FBQUosT0FBQSxjQUZiSyxrQkFBUSIsImZpbGUiOiJidXNpbmVzcy9QYWdlRm9ybS9pbmRleC5qcyIsInNvdXJjZXNDb250ZW50IjpbbnVsbF0sInNvdXJjZVJvb3QiOiIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9zcmMifQ==
@@ -1,6 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- //# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnVzaW5lc3MvUGFnZUZvcm0vaW50ZXJmYWNlLmpzIiwibmFtZXMiOltdLCJzb3VyY2VSb290IjoiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vc3JjIiwic291cmNlcyI6WyJidXNpbmVzcy9QYWdlRm9ybS9pbnRlcmZhY2UuanMiXSwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHt9OyJdLCJtYXBwaW5ncyI6IiIsImlnbm9yZUxpc3QiOltdfQ==