wacomm 1.14.9 → 1.15.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/P.d.ts ADDED
@@ -0,0 +1,6 @@
1
+ interface PProps {
2
+ className?: string;
3
+ value?: string;
4
+ }
5
+ declare function P({ className, value }: PProps): import("react/jsx-runtime").JSX.Element;
6
+ export default P;
@@ -0,0 +1,11 @@
1
+ import { ZeroFuncType } from 'waujs';
2
+ interface SaveCancelButtonsProps {
3
+ saveLabel?: string;
4
+ cancelLabel?: string;
5
+ onSave?: ZeroFuncType;
6
+ onCancel?: ZeroFuncType;
7
+ isSaveDisabled?: boolean;
8
+ isCancelDisabled?: boolean;
9
+ }
10
+ export default function SaveCancelButtons({ saveLabel, cancelLabel, onSave, onCancel, isSaveDisabled, isCancelDisabled }: SaveCancelButtonsProps): import("react/jsx-runtime").JSX.Element;
11
+ export {};
@@ -0,0 +1,6 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { default as SaveCancelButtons } from './SaveCancelButtons';
3
+ declare const meta: Meta<typeof SaveCancelButtons>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const SaveCancel: Story;
@@ -5,4 +5,4 @@ export { default as CacheButton } from './CacheButton';
5
5
  export { default as ModalButton } from './ModalButton';
6
6
  export { default as StyledButton } from './StyledButton';
7
7
  export { default as AddButton } from './AddButton';
8
- export { default as YesNoButtons } from './YesNoButtons';
8
+ export { default as SaveCancelButtons } from './SaveCancelButtons';