@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;
@@ -1,4 +1,4 @@
1
- import { SemanticColor } from '@/types';
1
+ import { SemanticColor } from 'src/types';
2
2
  import React from 'react';
3
3
  export type PillSize = 'sm' | 'md' | 'lg';
4
4
  export type PillColor = SemanticColor | 'neutral';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indico-data/design-system",
3
- "version": "2.28.1",
3
+ "version": "2.28.2",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "main": "lib/index.js",
@@ -1,4 +1,4 @@
1
- import { SemanticColor } from '@/types';
1
+ import { SemanticColor } from 'src/types';
2
2
  import React from 'react';
3
3
 
4
4
  export type PillSize = 'sm' | 'md' | 'lg';