ods-component-lib 1.17.115 → 1.17.116

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.
@@ -1,4 +1,7 @@
1
1
  import React from "react";
2
2
  import { SelectProps } from "antd";
3
- declare function OdsCustomMultiSelect(props: SelectProps): React.JSX.Element;
3
+ export interface ISelectProps extends SelectProps {
4
+ buttonLabel: string;
5
+ }
6
+ declare function OdsCustomMultiSelect(props: ISelectProps): React.JSX.Element;
4
7
  export default OdsCustomMultiSelect;
package/dist/index.js CHANGED
@@ -1056,7 +1056,7 @@ function OdsCustomMultiSelect(props) {
1056
1056
  onClick: function onClick() {
1057
1057
  return setOpen(false);
1058
1058
  }
1059
- }, "Apply")));
1059
+ }, props.buttonLabel)));
1060
1060
  }
1061
1061
  })));
1062
1062
  }