@quillsql/react 1.5.9 → 1.6.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quillsql/react",
3
- "version": "1.5.9",
3
+ "version": "1.6.0",
4
4
  "access": "public",
5
5
  "description": "Quill React components for building dashboards and reporting.",
6
6
  "main": "lib/index.js",
@@ -2151,6 +2151,7 @@ const AddFilterModal2 = ({
2151
2151
  // width: "18px",
2152
2152
  // }}
2153
2153
  // className="border-[#E7E7E7] border-[1px] shadow-sm rounded-sm bg-white cursor-pointer"
2154
+ theme={theme}
2154
2155
  checked={stringFilterValues.includes(value)}
2155
2156
  onChange={() => {
2156
2157
  setStringFilterValues(prev =>
@@ -2213,7 +2214,7 @@ const AddFilterModal2 = ({
2213
2214
  );
2214
2215
  };
2215
2216
 
2216
- const DivCheckbox = ({ onChange, checked }) => {
2217
+ const DivCheckbox = ({ onChange, checked, theme }) => {
2217
2218
  const toggleCheckbox = () => {
2218
2219
  if (onChange) {
2219
2220
  onChange(!checked);