@cloudtower/eagle 0.27.21 → 0.27.23

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.
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from "@storybook/react";
2
+ import BatchOperation from ".";
3
+ declare const meta: Meta<typeof BatchOperation>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof BatchOperation>;
6
+ export declare const Demo: Story;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { Action } from "../../spec/type";
3
+ export declare const renderBatchOperationMenuItem: (act: Action, idx?: number) => JSX.Element;
4
+ declare const BatchOperation: React.FC<{
5
+ count: number;
6
+ onClearSelection: () => void;
7
+ actions: Action[];
8
+ }>;
9
+ export default BatchOperation;
@@ -1 +1,2 @@
1
+ export { default as BatchOperation, renderBatchOperationMenuItem, } from "./BatchOperation";
1
2
  export { stringifyPlan } from "./CronPlan";