asma-core-ui 2.6.9 → 2.6.10
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-core-ui.es.js
CHANGED
|
@@ -41980,7 +41980,7 @@ const M5 = (e) => /* @__PURE__ */ y.jsx(qb, { ...e }), VB = (e) => /* @__PURE__
|
|
|
41980
41980
|
{
|
|
41981
41981
|
variant: e.variant || "contained",
|
|
41982
41982
|
...e,
|
|
41983
|
-
ref: e.
|
|
41983
|
+
ref: e.reflink,
|
|
41984
41984
|
disableRipple: !0,
|
|
41985
41985
|
classes: {
|
|
41986
41986
|
containedPrimary: "normal-case bg-primary-main hover:bg-primary-700 active:bg-primary-dark",
|
|
@@ -42066,7 +42066,7 @@ const M5 = (e) => /* @__PURE__ */ y.jsx(qb, { ...e }), VB = (e) => /* @__PURE__
|
|
|
42066
42066
|
Ty,
|
|
42067
42067
|
{
|
|
42068
42068
|
...e,
|
|
42069
|
-
inputRef: e.
|
|
42069
|
+
inputRef: e.reflink,
|
|
42070
42070
|
IconComponent: () => /* @__PURE__ */ y.jsx(va, { icon: "material-symbols:expand-more-rounded", width: 30, height: 30, className: "mx-2" })
|
|
42071
42071
|
}
|
|
42072
42072
|
), z5 = (e) => /* @__PURE__ */ y.jsx(Ey, { ...e, children: e.children }), B5 = (e) => {
|
|
@@ -2,10 +2,10 @@ import { type ButtonProps } from '@mui/material';
|
|
|
2
2
|
/**
|
|
3
3
|
* Custom props:
|
|
4
4
|
*
|
|
5
|
-
* @
|
|
6
|
-
* use
|
|
5
|
+
* @reflink
|
|
6
|
+
* use reflink to provide ref attribute on wrapper component.
|
|
7
7
|
*
|
|
8
8
|
*/
|
|
9
9
|
export declare const StyledButton: (props: ButtonProps & {
|
|
10
|
-
|
|
10
|
+
reflink?: React.RefObject<HTMLButtonElement> | null | undefined;
|
|
11
11
|
}) => JSX.Element;
|
|
@@ -3,10 +3,10 @@ import { type SelectProps } from '@mui/material';
|
|
|
3
3
|
/**
|
|
4
4
|
* Custom props:
|
|
5
5
|
*
|
|
6
|
-
* @
|
|
7
|
-
* use
|
|
6
|
+
* @reflink
|
|
7
|
+
* use reflink to provide ref attribute on wrapper component.
|
|
8
8
|
*
|
|
9
9
|
*/
|
|
10
10
|
export declare const StyledSelect: (props: SelectProps<unknown> & {
|
|
11
|
-
|
|
11
|
+
reflink?: import("react").RefObject<unknown> | ((instance: unknown) => void) | null | undefined;
|
|
12
12
|
}) => JSX.Element;
|
|
@@ -5,7 +5,7 @@ import type { SelectProps } from '@mui/material';
|
|
|
5
5
|
declare const meta: {
|
|
6
6
|
title: string;
|
|
7
7
|
component: (props: SelectProps<unknown> & {
|
|
8
|
-
|
|
8
|
+
reflink?: import("react").RefObject<unknown> | ((instance: unknown) => void) | null | undefined;
|
|
9
9
|
}) => JSX.Element;
|
|
10
10
|
tags: string[];
|
|
11
11
|
argTypes: {
|