@axzydev/axzy_ui_system 1.0.166 → 1.0.167
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 +285 -189
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +56 -10
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +37 -1
- package/dist/index.d.ts +37 -1
- package/dist/index.js +266 -172
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -714,6 +714,40 @@ declare function ITText({ children, className }: {
|
|
|
714
714
|
className?: string;
|
|
715
715
|
}): react_jsx_runtime.JSX.Element;
|
|
716
716
|
|
|
717
|
+
interface ITTabItem {
|
|
718
|
+
id: string;
|
|
719
|
+
label: string;
|
|
720
|
+
content: ReactNode;
|
|
721
|
+
icon?: ReactNode;
|
|
722
|
+
disabled?: boolean;
|
|
723
|
+
}
|
|
724
|
+
interface ITTabsProps {
|
|
725
|
+
items: ITTabItem[];
|
|
726
|
+
defaultActiveId?: string;
|
|
727
|
+
onChange?: (id: string) => void;
|
|
728
|
+
variant?: 'line' | 'pill';
|
|
729
|
+
className?: string;
|
|
730
|
+
containerClassName?: string;
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
declare const ITTabs: React__default.FC<ITTabsProps>;
|
|
734
|
+
|
|
735
|
+
interface ITTripleFilterOption<T> {
|
|
736
|
+
label: string;
|
|
737
|
+
value: T;
|
|
738
|
+
}
|
|
739
|
+
interface ITTripleFilterProps<T> {
|
|
740
|
+
value: T;
|
|
741
|
+
onChange: (value: T) => void;
|
|
742
|
+
options: ITTripleFilterOption<T>[];
|
|
743
|
+
className?: string;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
/**
|
|
747
|
+
* @description Generic triple/segmented filter component following AXZY Emerald/Slate theme.
|
|
748
|
+
*/
|
|
749
|
+
declare const ITTripleFilter: <T extends string | boolean>({ value, onChange, options, className, }: ITTripleFilterProps<T>) => react_jsx_runtime.JSX.Element;
|
|
750
|
+
|
|
717
751
|
interface ITToastProps {
|
|
718
752
|
message: string;
|
|
719
753
|
type?: "success" | "error" | "warning" | "info" | "primary" | "danger" | string;
|
|
@@ -800,6 +834,8 @@ interface ITSidebarProps {
|
|
|
800
834
|
isCollapsed?: boolean;
|
|
801
835
|
onToggleCollapse?: () => void;
|
|
802
836
|
visibleOnMobile?: boolean;
|
|
837
|
+
onItemClick?: (item: ITNavigationItem) => void;
|
|
838
|
+
onSubItemClick?: (subitem: ITNavigationSubItem) => void;
|
|
803
839
|
className?: string;
|
|
804
840
|
}
|
|
805
841
|
|
|
@@ -980,4 +1016,4 @@ declare const createValidationSchema: (fields: FieldConfig[]) => Yup.ObjectSchem
|
|
|
980
1016
|
[x: string]: any;
|
|
981
1017
|
}, "">;
|
|
982
1018
|
|
|
983
|
-
export { type Column, type FieldConfig, type FieldConfigV2, ITBadget, type ITBadgetProps, ITButton, type ITButtonProps, ITCalendar, type ITCalendarProps, ITCard, type ITCardProps, ITDataTable, type ITDataTableFetchParams, type ITDataTableProps, type ITDataTableResponse, ITDatePicker, type ITDatePickerProps, ITDialog, type ITDialogProps, ITDropfile, ITFormBuilder, type ITFormBuilderProps, ITImage, ITInput, type ITInputProps, ITLayout, type ITLayoutProps, ITLoader, ITNavbar, type ITNavbarProps, ITPagination, ITSearchSelect, type ITSearchSelectProps, ITSelect, type ITSelectProps, ITSlideToggle, type ITSlideToggleProps, ITStepper, ITTable, type ITTableProps, ITText, type ITThemeConfig, ITThemeProvider, type ITThemeProviderProps, ITTimePicker, type ITTimePickerProps, ITToast, type ITToastProps, createValidationSchema };
|
|
1019
|
+
export { type Column, type FieldConfig, type FieldConfigV2, ITBadget, type ITBadgetProps, ITButton, type ITButtonProps, ITCalendar, type ITCalendarProps, ITCard, type ITCardProps, ITDataTable, type ITDataTableFetchParams, type ITDataTableProps, type ITDataTableResponse, ITDatePicker, type ITDatePickerProps, ITDialog, type ITDialogProps, ITDropfile, ITFormBuilder, type ITFormBuilderProps, ITImage, ITInput, type ITInputProps, ITLayout, type ITLayoutProps, ITLoader, ITNavbar, type ITNavbarProps, ITPagination, ITSearchSelect, type ITSearchSelectProps, ITSelect, type ITSelectProps, ITSlideToggle, type ITSlideToggleProps, ITStepper, type ITTabItem, ITTable, type ITTableProps, ITTabs, type ITTabsProps, ITText, type ITThemeConfig, ITThemeProvider, type ITThemeProviderProps, ITTimePicker, type ITTimePickerProps, ITToast, type ITToastProps, ITTripleFilter, type ITTripleFilterOption, type ITTripleFilterProps, createValidationSchema };
|