@hybr1d-tech/charizard 1.1.22 → 1.1.24
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/hybr1d-ui.js +2910 -2927
- package/dist/hybr1d-ui.umd.cjs +14 -14
- package/dist/index.d.ts +9 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -194,6 +194,10 @@ declare interface BreadcrumbsStore {
|
|
|
194
194
|
setBreadcrumbs: (breadcrumbs: Breadcrumb[]) => void;
|
|
195
195
|
}
|
|
196
196
|
|
|
197
|
+
export declare const buildFilterQuery: (queryFilters: Record<string, any>, exclude?: string[]) => Record<string, any>;
|
|
198
|
+
|
|
199
|
+
export declare const buildTableQuery: (query: TBaseQuery) => Record<string, any>;
|
|
200
|
+
|
|
197
201
|
export declare function Button({ children, variant, disabled, onClick, type, size, customStyles, }: ButtonProps): JSX_2.Element;
|
|
198
202
|
|
|
199
203
|
export declare namespace Button {
|
|
@@ -946,6 +950,11 @@ export declare const getInitials: (name: string) => string;
|
|
|
946
950
|
|
|
947
951
|
export declare const getProductIconFromType: (type?: string) => string;
|
|
948
952
|
|
|
953
|
+
export declare const getSortBy: (query: {
|
|
954
|
+
sort_by?: string;
|
|
955
|
+
sort_order?: string;
|
|
956
|
+
}) => string | undefined;
|
|
957
|
+
|
|
949
958
|
export declare const getTableNameInfo: (value: TableNameValueString) => TableNameValue | undefined;
|
|
950
959
|
|
|
951
960
|
export declare const getUsername: (user?: any) => any;
|