wacomm 1.8.5 → 1.9.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 CHANGED
@@ -20,7 +20,7 @@ export { default as CommentEditor } from './CommentEditor';
20
20
  export { default as TextareaAutosize } from './TextareaAutosize';
21
21
  export { SvgSize } from 'wasvg';
22
22
  export * from './expandableContainer';
23
- export * from './loadingIndicator';
23
+ export * from './loading';
24
24
  export * from './buttons';
25
25
  export * from './datetime';
26
26
  export * from './mapbox';
@@ -1,9 +1,10 @@
1
1
  export interface TextInputProps {
2
2
  title?: string;
3
+ titleClassName?: string;
3
4
  placeholder?: string;
4
5
  className?: string;
5
6
  value: string;
6
7
  disabled?: boolean;
7
8
  onChange: (s: string) => void;
8
9
  }
9
- export default function TextInput({ title, placeholder, className, value, disabled, onChange }: TextInputProps): import("react/jsx-runtime").JSX.Element;
10
+ export default function TextInput({ title, titleClassName, placeholder, className, value, disabled, onChange }: TextInputProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ interface LoadingIconProps {
2
+ className?: string;
3
+ }
4
+ declare function LoadingIcon({ className }: LoadingIconProps): import("react/jsx-runtime").JSX.Element;
5
+ export default LoadingIcon;
@@ -0,0 +1,8 @@
1
+ interface LoadingIndicatorProps {
2
+ className?: string;
3
+ imgClassName?: string;
4
+ labelClassName?: string;
5
+ label: string;
6
+ }
7
+ declare function LoadingIndicator({ className, label, imgClassName, labelClassName }: LoadingIndicatorProps): import("react/jsx-runtime").JSX.Element;
8
+ export default LoadingIndicator;
@@ -1 +1,2 @@
1
+ export { default as LoadingIcon } from './LoadingIcon';
1
2
  export { default as LoadingIndicator } from './LoadingIndicator';