infinity-forge 12.8.2 → 12.8.6

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 (96) hide show
  1. package/dist/system/components/data/select-workspace/component.js +1 -1
  2. package/dist/test/index.js +48 -26
  3. package/dist/test/index.js.map +1 -1
  4. package/dist/ui/codie-dynamic/components/directory-filter/source-filter-header/index.js +1 -1
  5. package/dist/ui/codie-dynamic/components/directory-filter/source-filter-header/index.js.map +1 -1
  6. package/dist/ui/components/form/handler/component.js +0 -1
  7. package/dist/ui/components/form/handler/component.js.map +1 -1
  8. package/dist/ui/components/form/handler/events/form-handler.d.ts +10 -0
  9. package/dist/ui/components/form/handler/events/form-handler.js +32 -0
  10. package/dist/ui/components/form/handler/events/form-handler.js.map +1 -0
  11. package/dist/ui/components/form/handler/events/index.d.ts +1 -0
  12. package/dist/ui/components/form/handler/events/index.js +18 -0
  13. package/dist/ui/components/form/handler/events/index.js.map +1 -0
  14. package/dist/ui/components/form/handler/form-handler/index.js +13 -1
  15. package/dist/ui/components/form/handler/form-handler/index.js.map +1 -1
  16. package/dist/ui/components/form/handler/form-handler/use-submit/index.d.ts +1 -0
  17. package/dist/ui/components/form/handler/form-handler/use-submit/index.js +1 -1
  18. package/dist/ui/components/form/handler/form-handler/use-submit/index.js.map +1 -1
  19. package/dist/ui/components/form/handler/interfaces.d.ts +2 -0
  20. package/dist/ui/components/form/interfaces.d.ts +1 -2
  21. package/dist/ui/components/form/select/components/custom-multi-value/index.d.ts +3 -0
  22. package/dist/ui/components/form/select/components/custom-multi-value/index.js +31 -0
  23. package/dist/ui/components/form/select/components/custom-multi-value/index.js.map +1 -0
  24. package/dist/ui/components/form/select/components/custom-option-checkbox/index.d.ts +2 -0
  25. package/dist/ui/components/form/select/components/custom-option-checkbox/index.js +68 -0
  26. package/dist/ui/components/form/select/components/custom-option-checkbox/index.js.map +1 -0
  27. package/dist/ui/components/form/select/components/custom-option-checkbox/styles.d.ts +3 -0
  28. package/dist/ui/components/form/select/components/custom-option-checkbox/styles.js +14 -0
  29. package/dist/ui/components/form/select/components/custom-option-checkbox/styles.js.map +1 -0
  30. package/dist/ui/components/form/select/components/custom-value-container/index.d.ts +3 -0
  31. package/dist/ui/components/form/select/components/custom-value-container/index.js +65 -0
  32. package/dist/ui/components/form/select/components/custom-value-container/index.js.map +1 -0
  33. package/dist/ui/components/form/select/components/index.d.ts +4 -0
  34. package/dist/ui/components/form/select/components/index.js +21 -0
  35. package/dist/ui/components/form/select/components/index.js.map +1 -0
  36. package/dist/ui/components/form/select/components/menu-list/index.d.ts +3 -0
  37. package/dist/ui/components/form/select/components/menu-list/index.js +191 -0
  38. package/dist/ui/components/form/select/components/menu-list/index.js.map +1 -0
  39. package/dist/ui/components/form/select/components/menu-list/styles.d.ts +1 -0
  40. package/dist/ui/components/form/select/components/menu-list/styles.js +14 -0
  41. package/dist/ui/components/form/select/components/menu-list/styles.js.map +1 -0
  42. package/dist/ui/components/form/select/hooks/index.d.ts +3 -0
  43. package/dist/ui/components/form/select/hooks/index.js +20 -0
  44. package/dist/ui/components/form/select/hooks/index.js.map +1 -0
  45. package/dist/ui/components/form/select/hooks/use-select-components.d.ts +16 -0
  46. package/dist/ui/components/form/select/hooks/use-select-components.js +51 -0
  47. package/dist/ui/components/form/select/hooks/use-select-components.js.map +1 -0
  48. package/dist/ui/components/form/select/{custom-styles.js → hooks/use-select-props/custom-styles.js} +8 -7
  49. package/dist/ui/components/form/select/hooks/use-select-props/custom-styles.js.map +1 -0
  50. package/dist/ui/components/form/select/hooks/use-select-props/index.d.ts +53 -0
  51. package/dist/ui/components/form/select/hooks/use-select-props/index.js +51 -0
  52. package/dist/ui/components/form/select/hooks/use-select-props/index.js.map +1 -0
  53. package/dist/ui/components/form/select/hooks/use-select-state.d.ts +5 -0
  54. package/dist/ui/components/form/select/hooks/use-select-state.js +52 -0
  55. package/dist/ui/components/form/select/hooks/use-select-state.js.map +1 -0
  56. package/dist/ui/components/form/select/index.d.ts +0 -1
  57. package/dist/ui/components/form/select/index.js +28 -154
  58. package/dist/ui/components/form/select/index.js.map +1 -1
  59. package/dist/ui/components/form/select/styles.d.ts +1 -1
  60. package/dist/ui/components/form/select/styles.js +2 -2
  61. package/dist/ui/components/form/select/styles.js.map +1 -1
  62. package/dist/ui/components/form/select/types.d.ts +16 -0
  63. package/dist/ui/components/form/select/types.js +3 -0
  64. package/dist/ui/components/form/select/types.js.map +1 -0
  65. package/dist/ui/components/modal/component.d.ts +1 -1
  66. package/dist/ui/components/modal/component.js +8 -4
  67. package/dist/ui/components/modal/component.js.map +1 -1
  68. package/dist/ui/components/modal/interfaces.d.ts +6 -0
  69. package/dist/ui/components/overlay/interfaces.d.ts +1 -1
  70. package/dist/ui/components/step-navigator/component.d.ts +13 -0
  71. package/dist/ui/components/step-navigator/component.js +62 -0
  72. package/dist/ui/components/step-navigator/component.js.map +1 -0
  73. package/dist/ui/components/step-navigator/events/index.d.ts +1 -0
  74. package/dist/ui/components/step-navigator/events/index.js +18 -0
  75. package/dist/ui/components/step-navigator/events/index.js.map +1 -0
  76. package/dist/ui/components/step-navigator/events/use-step-navigator-events.d.ts +10 -0
  77. package/dist/ui/components/step-navigator/events/use-step-navigator-events.js +32 -0
  78. package/dist/ui/components/step-navigator/events/use-step-navigator-events.js.map +1 -0
  79. package/dist/ui/components/step-navigator/index.d.ts +2 -12
  80. package/dist/ui/components/step-navigator/index.js +5 -41
  81. package/dist/ui/components/step-navigator/index.js.map +1 -1
  82. package/dist/ui/components/tooltip/component.js +1 -1
  83. package/dist/ui/components/tooltip/component.js.map +1 -1
  84. package/dist/ui/utils/infinity-forge/z-index-infinity-forge.js +2 -2
  85. package/package.json +1 -1
  86. package/dist/ui/components/form/select/constants.d.ts +0 -3
  87. package/dist/ui/components/form/select/constants.js +0 -7
  88. package/dist/ui/components/form/select/constants.js.map +0 -1
  89. package/dist/ui/components/form/select/custom-styles.js.map +0 -1
  90. package/dist/ui/components/form/select/interfaces.d.ts +0 -0
  91. package/dist/ui/components/form/select/interfaces.js +0 -1
  92. package/dist/ui/components/form/select/interfaces.js.map +0 -1
  93. package/dist/ui/components/form/select/virtualized-menu-list/index.d.ts +0 -1
  94. package/dist/ui/components/form/select/virtualized-menu-list/index.js +0 -19
  95. package/dist/ui/components/form/select/virtualized-menu-list/index.js.map +0 -1
  96. /package/dist/ui/components/form/select/{custom-styles.d.ts → hooks/use-select-props/custom-styles.d.ts} +0 -0
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/ui/components/step-navigator/index.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAaA,sCAiCC;;AA9CD,+BAA2C;AAE3C,oDAAyC;AAEzC,0CAA6B;AAS7B,SAAgB,aAAa,CAAC,EAAsI;QAApI,KAAK,WAAA,EAAE,YAAY,kBAAA;IAC3C,IAAA,KAAkB,IAAA,gBAAQ,EAAC,CAAC,CAAC,EAA5B,IAAI,QAAA,EAAE,OAAO,QAAe,CAAA;IAEnC,SAAS,QAAQ;QACf,OAAO,CAAC,UAAC,KAAK,IAAK,OAAA,CAAC,KAAK,CAAC,MAAM,KAAK,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,EAA5C,CAA4C,CAAC,CAAA;IAClE,CAAC;IAED,SAAS,QAAQ;QACf,OAAO,CAAC,UAAC,KAAK,IAAK,OAAA,CAAC,KAAK,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG,CAAC,CAAC,EAA7B,CAA6B,CAAC,CAAA;IACnD,CAAC;IAED,IAAA,iBAAS,EAAC;QACR,YAAY,aAAZ,YAAY,uBAAZ,YAAY,CAAG,EAAE,IAAI,MAAA,EAAE,CAAC,CAAA;IAC1B,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC,CAAA;IAEV,OAAO,CACL,uBAAC,sBAAK,IAAC,IAAI,EAAC,eAAe,YACzB,uBAAC,CAAC,CAAC,aAAa,IAAC,SAAS,EAAC,gBAAgB,YACxC,KAAK,CAAC,GAAG,CAAC,UAAC,SAAS,EAAE,KAAK,IAAK,OAAA,CAC/B,uBAAC,CAAC,CAAC,IAAI,IACL,SAAS,EAAC,qBAAqB,EAE/B,QAAQ,EAAE,IAAI,KAAK,KAAK,GAAG,CAAC,EAC5B,SAAS,EAAE,IAAI,GAAG,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,YAE7C,uBAAC,sBAAK,IAAC,IAAI,EAAE,mBAAmB,GAAG,KAAK,YACtC,IAAI,KAAK,KAAK,GAAG,CAAC,IAAI,uBAAC,SAAS,IAAC,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,EAAE,QAAQ,GAAI,GACnG,IANH,KAAK,CAOH,CACV,EAXgC,CAWhC,CAAC,GACc,GACZ,CACT,CAAA;AACH,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/ui/components/step-navigator/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2CAAwB;AACxB,8CAA2B"}
@@ -115,6 +115,6 @@ function TooltipContent(_a) {
115
115
  enableHover && handleToggle(true);
116
116
  }, onMouseLeave: function () {
117
117
  enableHover && handleToggle(false);
118
- }, children: [trigger && trigger, isOpen && react_dom_1.default.createPortal(tooltipContent, document.body)] }));
118
+ }, className: 'tooltip-container', children: [trigger && trigger, isOpen && react_dom_1.default.createPortal(tooltipContent, document.body)] }));
119
119
  }
120
120
  //# sourceMappingURL=component.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"component.js","sourceRoot":"","sources":["../../../../src/ui/components/tooltip/component.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"component.js","sourceRoot":"","sources":["../../../../src/ui/components/tooltip/component.tsx"],"names":[],"mappings":"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"}
@@ -4,9 +4,9 @@ exports.zIndexInfinityForge = void 0;
4
4
  exports.zIndexInfinityForge = {
5
5
  layoutDeSistemas: 199,
6
6
  modal: 1051,
7
- tooltip: 1052,
7
+ tooltip: 1056,
8
8
  toast: 1054,
9
- reactSelectDropdown: 9999,
9
+ reactSelectDropdown: 1055,
10
10
  popconfirm: 1052,
11
11
  };
12
12
  //# sourceMappingURL=z-index-infinity-forge.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infinity-forge",
3
- "version": "12.8.2",
3
+ "version": "12.8.6",
4
4
  "description": "codie Library",
5
5
  "main": "./dist/index",
6
6
  "module": "./dist/index",
@@ -1,3 +0,0 @@
1
- export declare const OPTION_HEIGHT = 35;
2
- export declare const MAX_OPTIONS = 200;
3
- export declare const DEBOUNCE_DELAY = 300;
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DEBOUNCE_DELAY = exports.MAX_OPTIONS = exports.OPTION_HEIGHT = void 0;
4
- exports.OPTION_HEIGHT = 35;
5
- exports.MAX_OPTIONS = 200;
6
- exports.DEBOUNCE_DELAY = 300;
7
- //# sourceMappingURL=constants.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"constants.js","sourceRoot":"","sources":["../../../../../src/ui/components/form/select/constants.ts"],"names":[],"mappings":";;;AAAa,QAAA,aAAa,GAAG,EAAE,CAAC;AACnB,QAAA,WAAW,GAAG,GAAG,CAAC;AAClB,QAAA,cAAc,GAAG,GAAG,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"custom-styles.js","sourceRoot":"","sources":["../../../../../src/ui/components/form/select/custom-styles.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAEa,QAAA,YAAY,GAAiB;IACxC,OAAO,EAAE,UAAC,QAAQ,IAAK,OAAA,uBAClB,QAAQ,KACX,SAAS,EAAE,MAAM,IACjB,EAHqB,CAGrB;IACJ,MAAM,EAAE,UAAC,QAAQ,EAAE,KAAK,IAAK,OAAA,uBACxB,QAAQ,KACX,QAAQ,EAAE,MAAM,EAChB,eAAe,EAAE,KAAK,CAAC,UAAU;YAC/B,CAAC,CAAC,SAAS,CAAC,0BAA0B;YACtC,CAAC,CAAC,KAAK,CAAC,SAAS;gBACjB,CAAC,CAAC,SAAS,CAAC,uBAAuB;gBACnC,CAAC,CAAC,MAAM,EACV,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,SAAS,EACjB,SAAS,wBACJ,QAAQ,CAAC,SAAS,CAAC,KACtB,eAAe,EAAE,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,OAE3D,EAd2B,CAc3B;IACA,IAAI,EAAE,UAAC,QAAQ,IAAK,OAAA,uBACf,QAAQ,KACX,MAAM,EAAE,MAAM,IACd,EAHkB,CAGlB;IACF,WAAW,EAAE,UAAC,QAAQ,IAAK,OAAA,uBACtB,QAAQ,KACX,QAAQ,EAAE,MAAM,IAChB,EAHyB,CAGzB;IAEF,UAAU,EAAE,UAAC,QAAQ,IAAK,OAAA,uBACrB,QAAQ,KACX,QAAQ,EAAE,MAAM,IAChB,EAHwB,CAGxB;IACF,cAAc,EAAE,UAAC,QAAQ,IAAK,OAAA,uBACzB,QAAQ,KACX,SAAS,EAAE,MAAM,EACjB,OAAO,EAAE,OAAO,IAChB,EAJ4B,CAI5B;IAEF,KAAK,EAAE,UAAC,QAAQ,IAAK,OAAA,uBAChB,QAAQ,KACX,MAAM,EAAE,KAAK,EACb,OAAO,EAAE,KAAK,EACd,MAAM,EAAE,MAAM,EACd,SAAS,EAAE,MAAM,IACjB,EANmB,CAMnB;IACF,kBAAkB,EAAE,UAAC,KAAK,IAAK,OAAA,CAAC;QAC9B,OAAO,EAAE,MAAM;KAChB,CAAC,EAF6B,CAE7B;IACF,mBAAmB,EAAE,UAAC,QAAQ,IAAK,OAAA,uBAC9B,QAAQ,KACX,SAAS,EAAE,MAAM,IACjB,EAHiC,CAGjC;IACF,WAAW,EAAE,UAAC,QAAQ,IAAK,OAAA,uBAAK,QAAQ,KAAE,QAAQ,EAAE,MAAM,IAAE,EAAjC,CAAiC;CAC7D,CAAA"}
File without changes
@@ -1 +0,0 @@
1
- //# sourceMappingURL=interfaces.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../../../../../src/ui/components/form/select/interfaces.ts"],"names":[],"mappings":""}
@@ -1 +0,0 @@
1
- export declare const VirtualizedMenuList: import("react").ForwardRefExoticComponent<Omit<any, "ref"> & import("react").RefAttributes<any>>;
@@ -1,19 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.VirtualizedMenuList = void 0;
4
- var jsx_runtime_1 = require("react/jsx-runtime");
5
- var react_window_1 = require("react-window");
6
- var react_1 = require("react");
7
- exports.VirtualizedMenuList = (0, react_1.forwardRef)(function (props, ref) {
8
- var validChildren = Array.isArray(props === null || props === void 0 ? void 0 : props.children)
9
- ? props.children
10
- : [props.children].filter(Boolean);
11
- var ITEM_HEIGHT = 35;
12
- var MAX_VISIBLE_ITEMS = 6;
13
- var height = Math.min(validChildren.length, MAX_VISIBLE_ITEMS) * ITEM_HEIGHT || ITEM_HEIGHT;
14
- return ((0, jsx_runtime_1.jsx)(react_window_1.FixedSizeList, { height: height, itemCount: validChildren.length, itemSize: ITEM_HEIGHT, width: "100%", itemData: validChildren, ref: ref, children: function (_a) {
15
- var index = _a.index, style = _a.style, data = _a.data;
16
- return (0, jsx_runtime_1.jsx)("div", { style: style, children: data[index] });
17
- } }));
18
- });
19
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/ui/components/form/select/virtualized-menu-list/index.tsx"],"names":[],"mappings":";;;;AAAA,6CAAqD;AACrD,+BAAwC;AAE3B,QAAA,mBAAmB,GAAG,IAAA,kBAAU,EAAC,UAAC,KAAU,EAAE,GAAa;IACtE,IAAM,aAAa,GAAG,KAAK,CAAC,OAAO,CAAC,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,QAAQ,CAAC;QAClD,CAAC,CAAC,KAAK,CAAC,QAAQ;QAChB,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IAErC,IAAM,WAAW,GAAG,EAAE,CAAC;IACvB,IAAM,iBAAiB,GAAG,CAAC,CAAC;IAE5B,IAAM,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,aAAa,CAAC,MAAM,EAAE,iBAAiB,CAAC,GAAG,WAAW,IAAI,WAAW,CAAC;IAE9F,OAAO,CACL,uBAAC,4BAAI,IACH,MAAM,EAAE,MAAM,EACd,SAAS,EAAE,aAAa,CAAC,MAAM,EAC/B,QAAQ,EAAE,WAAW,EACrB,KAAK,EAAC,MAAM,EACZ,QAAQ,EAAE,aAAa,EACvB,GAAG,EAAE,GAAG,YAEP,UAAC,EAAsB;gBAApB,KAAK,WAAA,EAAE,KAAK,WAAA,EAAE,IAAI,UAAA;YAAO,OAAA,gCAAK,KAAK,EAAE,KAAK,YAAG,IAAI,CAAC,KAAK,CAAC,GAAO;QAAtC,CAAsC,GAC9D,CACR,CAAC;AACJ,CAAC,CAAC,CAAC"}