asma-ui-table 1.0.130 → 1.0.131
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/asma-ui-table.es.js
CHANGED
|
@@ -9568,16 +9568,16 @@ const CheckboxIndicator = /* @__PURE__ */ React.forwardRef(function CheckboxIndi
|
|
|
9568
9568
|
});
|
|
9569
9569
|
if (process.env.NODE_ENV !== "production")
|
|
9570
9570
|
CheckboxIndicator.displayName = "CheckboxIndicator";
|
|
9571
|
-
const IndeterminateIcon = (
|
|
9571
|
+
const IndeterminateIcon = (props) => /* @__PURE__ */ jsxRuntimeExports.jsxs("svg", { viewBox: "0 0 24 24", width: "100%", height: "100%", fill: "none", ...props, children: [
|
|
9572
9572
|
/* @__PURE__ */ jsxRuntimeExports.jsx("title", { children: "Indeterminate icon" }),
|
|
9573
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx("
|
|
9573
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M6 12H18", stroke: "currentColor", strokeWidth: props.strokeWidth ?? 3, strokeLinecap: "round" })
|
|
9574
9574
|
] });
|
|
9575
9575
|
const CheckIcon$1 = (props) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9576
9576
|
"svg",
|
|
9577
9577
|
{
|
|
9578
9578
|
viewBox: "0 0 24 24",
|
|
9579
|
-
width: "
|
|
9580
|
-
height: "
|
|
9579
|
+
width: "100%",
|
|
9580
|
+
height: "100%",
|
|
9581
9581
|
fill: "none",
|
|
9582
9582
|
stroke: "currentColor",
|
|
9583
9583
|
strokeWidth: 2,
|
|
@@ -10,9 +10,7 @@ type StyledCheckboxProps = {
|
|
|
10
10
|
className?: string;
|
|
11
11
|
onChange?: (event: React.ChangeEvent<HTMLInputElement>, checked: boolean) => void;
|
|
12
12
|
} & Omit<React.ComponentProps<typeof Checkbox.Root>, 'children'>;
|
|
13
|
-
export declare const IndeterminateIcon: (
|
|
14
|
-
className?: string | undefined;
|
|
15
|
-
}) => JSX.Element;
|
|
13
|
+
export declare const IndeterminateIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
16
14
|
export declare const CheckIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
|
|
17
15
|
export declare const StyledCheckbox: React.FC<StyledCheckboxProps>;
|
|
18
16
|
export {};
|