pollination-react-io 0.0.14 → 0.0.17

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,5 @@
1
+ export declare const ConditionalWrapper: ({ condition, wrapper, children }: {
2
+ condition: any;
3
+ wrapper: any;
4
+ children: any;
5
+ }) => any;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import "./FileInput.scss";
3
+ declare const FileInput: React.FC<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>;
4
+ export default FileInput;
@@ -0,0 +1,10 @@
1
+ import React, { CSSProperties, FC } from "react";
2
+ import './Tooltip.scss';
3
+ interface TooltipProps {
4
+ content: React.ReactNode | string;
5
+ side?: "top" | "right" | "bottom" | "left";
6
+ children?: React.ReactNode;
7
+ style?: CSSProperties;
8
+ }
9
+ export declare const Tooltip: FC<TooltipProps>;
10
+ export {};
@@ -32,7 +32,7 @@
32
32
  gap: 8px;
33
33
  }
34
34
 
35
- .btn-group button:disabled {
35
+ .btn-group-disabled button {
36
36
  background-color: var(--grey3);
37
37
  color: var(--grey5);
38
38
  cursor: default;