indicator-ui 1.1.22 → 1.1.23
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.js
CHANGED
|
@@ -24551,11 +24551,11 @@ const mG = "InputInnerButton-module__main___oNrR1", gG = "InputInnerButton-modul
|
|
|
24551
24551
|
red: _G
|
|
24552
24552
|
};
|
|
24553
24553
|
function vG(r) {
|
|
24554
|
-
const { color: e,
|
|
24554
|
+
const { color: e, className: t, instanceRef: n, ...i } = r, o = X(() => ge(t, K0.main, {
|
|
24555
24555
|
[K0.gray]: e === "gray",
|
|
24556
24556
|
[K0.red]: e === "red"
|
|
24557
|
-
}), [e]);
|
|
24558
|
-
return /* @__PURE__ */ k("button", { type: "button", ...
|
|
24557
|
+
}), [e, t]);
|
|
24558
|
+
return /* @__PURE__ */ k("button", { type: "button", ...i, ref: n, className: o });
|
|
24559
24559
|
}
|
|
24560
24560
|
const yG = "DoubleInputItem-module__main___dZnxg", wG = {
|
|
24561
24561
|
main: yG
|
|
@@ -30183,6 +30183,7 @@ export {
|
|
|
30183
30183
|
Bi as DoubleInputItem,
|
|
30184
30184
|
One as Drawer,
|
|
30185
30185
|
F9 as Dropdown,
|
|
30186
|
+
P9 as DropdownArrow,
|
|
30186
30187
|
W$ as DropdownItem,
|
|
30187
30188
|
N9 as DropdownItemV2,
|
|
30188
30189
|
kX as DropdownV2,
|
|
@@ -30215,6 +30216,7 @@ export {
|
|
|
30215
30216
|
ane as ISO_FORMAT,
|
|
30216
30217
|
RH as InputField,
|
|
30217
30218
|
EH as InputFieldWrapper,
|
|
30219
|
+
vG as InputInnerButton,
|
|
30218
30220
|
Mp as KEY_WAY_STORE_NAME,
|
|
30219
30221
|
rg as LoadingIndicator,
|
|
30220
30222
|
gne as MediaViewer,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
|
|
2
|
+
import { PropsForWithInstanceRef } from '../../../../../types';
|
|
3
|
+
type PropsType = PropsForWithInstanceRef<'button', React.ComponentRef<'button'>, {
|
|
3
4
|
color: 'gray' | 'red';
|
|
4
|
-
}
|
|
5
|
+
}>;
|
|
5
6
|
export declare function InputInnerButton(props: PropsType): import("react/jsx-runtime").JSX.Element;
|
|
6
7
|
export {};
|