@spaceandtimelabs/makeinfinite-ui 0.67.0 → 0.69.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/dist/index.d.ts +8 -7
- package/dist/makeinfinite-ui.es.js +1060 -1051
- package/dist/makeinfinite-ui.umd.js +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -132,7 +132,7 @@ export declare const APIHandler: (baseUrl: string) => {
|
|
|
132
132
|
tagCommit: (projectName: string, commitHash: string, tagName: string) => Promise<Response>;
|
|
133
133
|
getComponentLibrary: () => Promise<Response>;
|
|
134
134
|
addProjectComponent: (projectName: string, componentNamespace: string, componentName: string, layoutMetadata: any) => Promise<Response>;
|
|
135
|
-
addProjectChart: (projectName: string, visualId: string, layoutMetadata: object) => Promise<Response>;
|
|
135
|
+
addProjectChart: (projectName: string, visualId: string, layoutMetadata: object, echartsConfig?: object) => Promise<Response>;
|
|
136
136
|
updateProjectComponentLayoutMetadata: (projectName: string, componentId: string, layoutMetadata: any) => Promise<Response>;
|
|
137
137
|
updateProjectComponentSourceCode: (projectName: string, componentId: string, sourceCode: string) => Promise<Response>;
|
|
138
138
|
updateApplicationMetadata: (projectName: string, applicationName: string, applicationDescription: string, applicationCategory: string) => Promise<Response>;
|
|
@@ -236,7 +236,7 @@ declare interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonEleme
|
|
|
236
236
|
|
|
237
237
|
declare const buttonVariants: (props?: ({
|
|
238
238
|
variant?: "link" | "default" | "destructive" | "secondary" | "outline" | "ghost" | null | undefined;
|
|
239
|
-
size?: "default" | "
|
|
239
|
+
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
240
240
|
} & ClassProp) | undefined) => string;
|
|
241
241
|
|
|
242
242
|
declare function Calendar({ className, classNames, showOutsideDays, ...props }: CalendarProps): JSX_2.Element;
|
|
@@ -1173,6 +1173,7 @@ export declare const RGEditLayout: (props: {
|
|
|
1173
1173
|
isResizable: boolean;
|
|
1174
1174
|
isDroppable: boolean;
|
|
1175
1175
|
disableResize: boolean;
|
|
1176
|
+
onBreakpointChange?: (breakpoint: "xxs" | "xs" | "sm" | "md" | "lg") => void;
|
|
1176
1177
|
}) => JSX_2.Element;
|
|
1177
1178
|
|
|
1178
1179
|
declare interface RGFallbackComponentProps {
|
|
@@ -1283,7 +1284,7 @@ declare interface SidebarProps extends React.HTMLAttributes<HTMLDivElement>, Var
|
|
|
1283
1284
|
|
|
1284
1285
|
declare const sidebarVariants: (props?: ({
|
|
1285
1286
|
variant?: "default" | "floating" | null | undefined;
|
|
1286
|
-
size?: "default" | "
|
|
1287
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1287
1288
|
collapsed?: boolean | null | undefined;
|
|
1288
1289
|
} & ClassProp) | undefined) => string;
|
|
1289
1290
|
|
|
@@ -1372,22 +1373,22 @@ declare type ToasterProps = React.ComponentProps<typeof Toaster_2>;
|
|
|
1372
1373
|
|
|
1373
1374
|
declare const Toggle: ForwardRefExoticComponent<Omit<TogglePrimitive.ToggleProps & RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
|
|
1374
1375
|
variant?: "default" | "outline" | null | undefined;
|
|
1375
|
-
size?: "default" | "
|
|
1376
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1376
1377
|
} & ClassProp) | undefined) => string> & RefAttributes<HTMLButtonElement>>;
|
|
1377
1378
|
|
|
1378
1379
|
declare const ToggleGroup: ForwardRefExoticComponent<((Omit<ToggleGroupPrimitive.ToggleGroupSingleProps & RefAttributes<HTMLDivElement>, "ref"> | Omit<ToggleGroupPrimitive.ToggleGroupMultipleProps & RefAttributes<HTMLDivElement>, "ref">) & VariantProps<(props?: ({
|
|
1379
1380
|
variant?: "default" | "outline" | null | undefined;
|
|
1380
|
-
size?: "default" | "
|
|
1381
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1381
1382
|
} & ClassProp) | undefined) => string>) & RefAttributes<HTMLDivElement>>;
|
|
1382
1383
|
|
|
1383
1384
|
declare const ToggleGroupItem: ForwardRefExoticComponent<Omit<ToggleGroupPrimitive.ToggleGroupItemProps & RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
|
|
1384
1385
|
variant?: "default" | "outline" | null | undefined;
|
|
1385
|
-
size?: "default" | "
|
|
1386
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1386
1387
|
} & ClassProp) | undefined) => string> & RefAttributes<HTMLButtonElement>>;
|
|
1387
1388
|
|
|
1388
1389
|
declare const toggleVariants: (props?: ({
|
|
1389
1390
|
variant?: "default" | "outline" | null | undefined;
|
|
1390
|
-
size?: "default" | "
|
|
1391
|
+
size?: "default" | "sm" | "lg" | null | undefined;
|
|
1391
1392
|
} & ClassProp) | undefined) => string;
|
|
1392
1393
|
|
|
1393
1394
|
declare const Tooltip: FC<TooltipPrimitive.TooltipProps>;
|