@quillsql/admin 1.0.0

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/lib/Admin.d.ts ADDED
@@ -0,0 +1,47 @@
1
+ export default function Portal({ publicKey, queryEndpoint, theme, queryHeaders, organizationId, TextInputComponent, ButtonComponent, SecondaryButtonComponent, ModalComponent, SelectComponent, OrganizationSelectComponent, UserManagementComponent, }: {
2
+ publicKey: any;
3
+ queryEndpoint: any;
4
+ theme: any;
5
+ queryHeaders: any;
6
+ organizationId: any;
7
+ TextInputComponent: any;
8
+ ButtonComponent: any;
9
+ SecondaryButtonComponent: any;
10
+ ModalComponent: any;
11
+ SelectComponent: any;
12
+ OrganizationSelectComponent: any;
13
+ UserManagementComponent: any;
14
+ }): import("react/jsx-runtime").JSX.Element;
15
+ export declare const theme: {
16
+ fontFamily: string;
17
+ backgroundColor: string;
18
+ primaryTextColor: string;
19
+ secondaryTextColor: string;
20
+ chartLabelFontFamily: string;
21
+ chartLabelColor: string;
22
+ chartTickColor: string;
23
+ chartColors: string[];
24
+ borderColor: string;
25
+ borderWidth: number;
26
+ primaryButtonColor: string;
27
+ };
28
+ export declare function convertPostgresColumn(column: any): {
29
+ label: any;
30
+ field: any;
31
+ format: string;
32
+ };
33
+ export declare function getPostgresBasicType(column: any): string | undefined;
34
+ export declare function classNames(...classes: any[]): string;
35
+ export declare function DropdownMenu({ items, setSelected, selected, filterKey }: {
36
+ items: any;
37
+ setSelected: any;
38
+ selected: any;
39
+ filterKey: any;
40
+ }): import("react/jsx-runtime").JSX.Element;
41
+ export declare function isValidDate(d: any): boolean;
42
+ export declare const isArrayOfValidDates: (arr: any, field: any) => any;
43
+ export declare function formatDateBuckets(startDate: any, endDate: any): {
44
+ unit: string;
45
+ format: string;
46
+ startOf: any;
47
+ };