@quillsql/react 2.16.35 → 2.16.36
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/dist/index.cjs +4 -4
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -29795,7 +29795,9 @@ var QuillChartBuilderFormContainer = ({
|
|
|
29795
29795
|
gap: 24,
|
|
29796
29796
|
overflow: "auto",
|
|
29797
29797
|
flexGrow: 1,
|
|
29798
|
-
|
|
29798
|
+
// ChartBuilder pins the submit row with position:absolute; bottom:0 (~72px tall).
|
|
29799
|
+
// Padding (not margin) extends the scrollable region so fields clear that bar.
|
|
29800
|
+
paddingBottom: 88,
|
|
29799
29801
|
paddingLeft: 20,
|
|
29800
29802
|
paddingRight: 20,
|
|
29801
29803
|
boxSizing: "border-box"
|
|
@@ -46821,9 +46823,7 @@ function ChartBuilder({
|
|
|
46821
46823
|
);
|
|
46822
46824
|
return [
|
|
46823
46825
|
key,
|
|
46824
|
-
tenantType?.tenantField === SINGLE_TENANT ? tenantType?.flags ?? [] : tenantType?.tenantIds?.map((id) => id?.flag).filter(
|
|
46825
|
-
(f) => f != null
|
|
46826
|
-
) ?? []
|
|
46826
|
+
tenantType?.tenantField === SINGLE_TENANT ? tenantType?.flags ?? [] : tenantType?.tenantIds?.map((id) => id?.flag).filter((f) => f != null) ?? []
|
|
46827
46827
|
];
|
|
46828
46828
|
} else {
|
|
46829
46829
|
return [key, value];
|
package/dist/index.d.cts
CHANGED
|
@@ -2182,7 +2182,7 @@ interface ReportBuilderProps {
|
|
|
2182
2182
|
label: string;
|
|
2183
2183
|
isSelected: boolean;
|
|
2184
2184
|
setSelected: () => void;
|
|
2185
|
-
DragHandle: ({ dragIcon }: {
|
|
2185
|
+
DragHandle: ({ dragIcon, }: {
|
|
2186
2186
|
dragIcon: () => React.JSX.Element;
|
|
2187
2187
|
}) => React.JSX.Element;
|
|
2188
2188
|
}) => React.JSX.Element;
|
|
@@ -2190,7 +2190,7 @@ interface ReportBuilderProps {
|
|
|
2190
2190
|
DraggableColumnComponent?: (props: {
|
|
2191
2191
|
label: string;
|
|
2192
2192
|
onDelete: () => void;
|
|
2193
|
-
DragHandle: ({ dragIcon }: {
|
|
2193
|
+
DragHandle: ({ dragIcon, }: {
|
|
2194
2194
|
dragIcon: () => React.JSX.Element;
|
|
2195
2195
|
}) => React.JSX.Element;
|
|
2196
2196
|
deleteDisabled?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -2182,7 +2182,7 @@ interface ReportBuilderProps {
|
|
|
2182
2182
|
label: string;
|
|
2183
2183
|
isSelected: boolean;
|
|
2184
2184
|
setSelected: () => void;
|
|
2185
|
-
DragHandle: ({ dragIcon }: {
|
|
2185
|
+
DragHandle: ({ dragIcon, }: {
|
|
2186
2186
|
dragIcon: () => React.JSX.Element;
|
|
2187
2187
|
}) => React.JSX.Element;
|
|
2188
2188
|
}) => React.JSX.Element;
|
|
@@ -2190,7 +2190,7 @@ interface ReportBuilderProps {
|
|
|
2190
2190
|
DraggableColumnComponent?: (props: {
|
|
2191
2191
|
label: string;
|
|
2192
2192
|
onDelete: () => void;
|
|
2193
|
-
DragHandle: ({ dragIcon }: {
|
|
2193
|
+
DragHandle: ({ dragIcon, }: {
|
|
2194
2194
|
dragIcon: () => React.JSX.Element;
|
|
2195
2195
|
}) => React.JSX.Element;
|
|
2196
2196
|
deleteDisabled?: boolean;
|
package/dist/index.js
CHANGED
|
@@ -29842,7 +29842,9 @@ var QuillChartBuilderFormContainer = ({
|
|
|
29842
29842
|
gap: 24,
|
|
29843
29843
|
overflow: "auto",
|
|
29844
29844
|
flexGrow: 1,
|
|
29845
|
-
|
|
29845
|
+
// ChartBuilder pins the submit row with position:absolute; bottom:0 (~72px tall).
|
|
29846
|
+
// Padding (not margin) extends the scrollable region so fields clear that bar.
|
|
29847
|
+
paddingBottom: 88,
|
|
29846
29848
|
paddingLeft: 20,
|
|
29847
29849
|
paddingRight: 20,
|
|
29848
29850
|
boxSizing: "border-box"
|
|
@@ -46990,9 +46992,7 @@ function ChartBuilder({
|
|
|
46990
46992
|
);
|
|
46991
46993
|
return [
|
|
46992
46994
|
key,
|
|
46993
|
-
tenantType?.tenantField === SINGLE_TENANT ? tenantType?.flags ?? [] : tenantType?.tenantIds?.map((id) => id?.flag).filter(
|
|
46994
|
-
(f) => f != null
|
|
46995
|
-
) ?? []
|
|
46995
|
+
tenantType?.tenantField === SINGLE_TENANT ? tenantType?.flags ?? [] : tenantType?.tenantIds?.map((id) => id?.flag).filter((f) => f != null) ?? []
|
|
46996
46996
|
];
|
|
46997
46997
|
} else {
|
|
46998
46998
|
return [key, value];
|