awing-library 2.1.2-dev.98 → 2.1.2-dev.99
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.
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export type ButtonSplitProps = {
|
|
2
|
+
options: {
|
|
3
|
+
value: string;
|
|
4
|
+
label: string;
|
|
5
|
+
isDisabled?: boolean;
|
|
6
|
+
}[];
|
|
7
|
+
defaultSelected?: number;
|
|
8
|
+
isChangeSelectedAndApplied?: boolean;
|
|
9
|
+
onSubmit?: (index: number) => void;
|
|
10
|
+
};
|
|
11
|
+
export default function SplitButton(props: ButtonSplitProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -22,6 +22,9 @@ export { default as ButtonDateRangePicker } from './ButtonDateRangePicker';
|
|
|
22
22
|
export type { ButtonSelectProps } from './ButtonSelect';
|
|
23
23
|
export { default as ButtonSelect } from './ButtonSelect';
|
|
24
24
|
/*****/
|
|
25
|
+
export type { ButtonSplitProps } from './ButtonSplit';
|
|
26
|
+
export { default as ButtonSplit } from './ButtonSplit';
|
|
27
|
+
/*****/
|
|
25
28
|
export type { IChartJsContainer, IPieContainer } from './Chart';
|
|
26
29
|
export { BarLineChart, PieChart } from './Chart';
|
|
27
30
|
/*****/
|