react-semaphor 0.0.400 → 0.0.401
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 +5 -5
- package/dist/index.js +930 -910
- package/dist/types/main.d.ts +3 -1
- package/package.json +1 -1
package/dist/types/main.d.ts
CHANGED
|
@@ -519,7 +519,9 @@ export declare function resolveDatamodelName(datamodelName: string): string;
|
|
|
519
519
|
|
|
520
520
|
export declare const resolveDataType: (value: any) => string;
|
|
521
521
|
|
|
522
|
-
export declare function ScheduleDashboard(
|
|
522
|
+
export declare function ScheduleDashboard({ triggerButtonClassName, }: {
|
|
523
|
+
triggerButtonClassName?: string;
|
|
524
|
+
}): JSX_2.Element;
|
|
523
525
|
|
|
524
526
|
export declare function SelectComponent({ title, items, value, isLoading, isError, refetch, connectionTooltip, onChange, showNone, className, showIcon, disabled, type, }: SelectProps): JSX_2.Element;
|
|
525
527
|
|