@nethru/ui 1.0.67 → 1.0.69

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.
@@ -13,6 +13,7 @@ const PropertyTable = /*#__PURE__*/forwardRef(({
13
13
  error = false,
14
14
  helperText,
15
15
  sx,
16
+ outerSx,
16
17
  ...props
17
18
  }, ref) => {
18
19
  const styles = useMemo(() => {
@@ -85,6 +86,7 @@ const PropertyTable = /*#__PURE__*/forwardRef(({
85
86
  };
86
87
  return /*#__PURE__*/_jsxs(Box, {
87
88
  ref: ref,
89
+ sx: outerSx,
88
90
  children: [/*#__PURE__*/_jsx(DataGrid, {
89
91
  columns: arrangedColumns,
90
92
  rows: rows,
@@ -5,6 +5,7 @@ import { Fragment as _Fragment } from "react/jsx-runtime";
5
5
  export default function SearchableSelect({
6
6
  label,
7
7
  options,
8
+ textFieldProps,
8
9
  ...props
9
10
  }) {
10
11
  return /*#__PURE__*/_jsx(Autocomplete, {
@@ -14,7 +15,8 @@ export default function SearchableSelect({
14
15
  renderInput: params => /*#__PURE__*/_jsx(TextField, {
15
16
  variant: "standard",
16
17
  label: label,
17
- ...params
18
+ ...params,
19
+ ...textFieldProps
18
20
  }),
19
21
  renderOption: (props, option) => /*#__PURE__*/_jsx(_Fragment, {
20
22
  children: option.type === 'divider' ? /*#__PURE__*/_jsx(Divider, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nethru/ui",
3
- "version": "1.0.67",
3
+ "version": "1.0.69",
4
4
  "main": "dist/index.js",
5
5
  "files": [
6
6
  "/dist"