@indico-data/design-system 2.28.1 → 2.28.2
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/lib/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { DateRange } from 'react-day-picker';
|
|
|
10
10
|
import { ContainerProps, RowProps, ColProps } from 'react-grid-system';
|
|
11
11
|
import { TableProps as TableProps$1, Direction as Direction$1, Alignment as Alignment$1 } from 'react-data-table-component';
|
|
12
12
|
import { Props as Props$r } from 'react-select';
|
|
13
|
+
import { SemanticColor as SemanticColor$1 } from 'src/types';
|
|
13
14
|
|
|
14
15
|
declare const GlobalStyles: () => react_jsx_runtime.JSX.Element;
|
|
15
16
|
|
|
@@ -901,7 +902,7 @@ type TableProps<T> = Omit<TableProps$1<T>, 'disabled' | 'progressPending' | 'dir
|
|
|
901
902
|
};
|
|
902
903
|
|
|
903
904
|
type PillSize = 'sm' | 'md' | 'lg';
|
|
904
|
-
type PillColor = SemanticColor | 'neutral';
|
|
905
|
+
type PillColor = SemanticColor$1 | 'neutral';
|
|
905
906
|
interface PillProps {
|
|
906
907
|
children: React$1.ReactNode | React$1.ReactNode[];
|
|
907
908
|
color?: PillColor;
|
package/package.json
CHANGED