@fixefy/fixefy-ui-components 0.3.39 → 0.3.41

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.
@@ -31,4 +31,4 @@ export type AsyncDropdownPropsType = {
31
31
  data: string[];
32
32
  _id: string;
33
33
  };
34
- export declare const FxObjStaticDropdown: React.ForwardRefExoticComponent<Omit<AsyncDropdownPropsType, "ref"> & React.RefAttributes<unknown>>;
34
+ export declare const FxObjStaticDropdown: (props: AsyncDropdownPropsType) => React.JSX.Element;
@@ -64,7 +64,7 @@ const uncheckedIcon = /*#__PURE__*/ (0, _jsxruntime.jsx)(_iconsmaterial.CheckBox
64
64
  const checkedIcon = /*#__PURE__*/ (0, _jsxruntime.jsx)(_iconsmaterial.CheckBox, {
65
65
  fontSize: "small"
66
66
  });
67
- const FxObjStaticDropdown = /*#__PURE__*/ _react.default.forwardRef((props)=>{
67
+ const FxObjStaticDropdown = (props)=>{
68
68
  const { onAdd, onRemoveOne, onRemoveAll, onUnselectAll, disabled, type = 'text', search_path, modal_type, multiple, name, query, isInitialOpen, placeholder, title_path, rootStylesOverride, logo_placeholder, logo_folder_name, _id, data, defaultValue } = props;
69
69
  const ref = (0, _react.useRef)(null);
70
70
  const theme = (0, _material.useTheme)();
@@ -529,4 +529,4 @@ const FxObjStaticDropdown = /*#__PURE__*/ _react.default.forwardRef((props)=>{
529
529
  }) : null
530
530
  ]
531
531
  });
532
- });
532
+ };
package/dist/index.d.ts CHANGED
@@ -14,6 +14,7 @@ export { FxButtonModalWithMenu } from './FxButtonModalWithMenu';
14
14
  export { FxNotes, NoteCreateInput, NotesPropsType } from './FxNotes';
15
15
  export { FxNumberField, NumberfieldPropsType } from './FxNumberField';
16
16
  export { Arrow, PopperHeader, PopperWithOutside } from './FxPopper';
17
+ export { FxObjStaticDropdown } from './FxObjStaticDropdown';
17
18
  export { FxProgressCircle, ProgressCirclePropsType } from './FxProgressCircle';
18
19
  export { FxProgressCounter, ProgressCounterPropsType } from './FxProgressCounter';
19
20
  export { FxScore, ScorePropsType } from './FxScore';
package/dist/index.js CHANGED
@@ -90,6 +90,9 @@ _export(exports, {
90
90
  FxNumberField: function() {
91
91
  return _FxNumberField.FxNumberField;
92
92
  },
93
+ FxObjStaticDropdown: function() {
94
+ return _FxObjStaticDropdown.FxObjStaticDropdown;
95
+ },
93
96
  FxProgressCircle: function() {
94
97
  return _FxProgressCircle.FxProgressCircle;
95
98
  },
@@ -245,6 +248,7 @@ const _FxButtonModalWithMenu = require("./FxButtonModalWithMenu");
245
248
  const _FxNotes = require("./FxNotes");
246
249
  const _FxNumberField = require("./FxNumberField");
247
250
  const _FxPopper = require("./FxPopper");
251
+ const _FxObjStaticDropdown = require("./FxObjStaticDropdown");
248
252
  const _FxProgressCircle = require("./FxProgressCircle");
249
253
  const _FxProgressCounter = require("./FxProgressCounter");
250
254
  const _FxScore = require("./FxScore");
package/package.json CHANGED
@@ -67,5 +67,5 @@
67
67
  "require": "./dist/index.js"
68
68
  }
69
69
  },
70
- "version": "0.3.39"
70
+ "version": "0.3.41"
71
71
  }