@fattureincloud/fic-design-system 0.7.3 → 0.7.5-tmp
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/components/form/datepicker/types.d.ts +1 -0
- package/dist/components/form/inputText/components/styled.d.ts +2 -0
- package/dist/components/form/inputText/types.d.ts +2 -0
- package/dist/components/newTable/components/cell/customCell/CustomCell.d.ts +1 -1
- package/dist/components/newTable/components/cell/customCell/CustomInput.d.ts +1 -1
- package/dist/components/newTable/components/header/styled.d.ts +1 -0
- package/dist/components/newTable/stories/types.d.ts +1 -0
- package/dist/components/newTable/types.d.ts +7 -5
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/styles/defaultPalette/colors/black.d.ts +1 -1
- package/dist/styles/defaultPalette/colors/blue.d.ts +1 -1
- package/dist/styles/defaultPalette/colors/cyan.d.ts +1 -1
- package/dist/styles/defaultPalette/colors/fuchsia.d.ts +1 -1
- package/dist/styles/defaultPalette/colors/green.d.ts +1 -1
- package/dist/styles/defaultPalette/colors/grey.d.ts +1 -1
- package/dist/styles/defaultPalette/colors/indigo.d.ts +1 -1
- package/dist/styles/defaultPalette/colors/orange.d.ts +1 -1
- package/dist/styles/defaultPalette/colors/pink.d.ts +1 -1
- package/dist/styles/defaultPalette/colors/red.d.ts +1 -1
- package/dist/styles/defaultPalette/colors/white.d.ts +1 -1
- package/dist/styles/defaultPalette/colors/yellow.d.ts +1 -1
- package/package.json +1 -1
@@ -1,2 +1,2 @@
|
|
1
|
-
import { bwColor } from '
|
1
|
+
import { bwColor } from 'styles/types';
|
2
2
|
export declare const black: bwColor;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { color } from '
|
1
|
+
import { color } from 'styles/types';
|
2
2
|
export declare const blue: color;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { color } from '
|
1
|
+
import { color } from 'styles/types';
|
2
2
|
export declare const cyan: color;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { color } from '
|
1
|
+
import { color } from 'styles/types';
|
2
2
|
export declare const fuchsia: color;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { color } from '
|
1
|
+
import { color } from 'styles/types';
|
2
2
|
export declare const green: color;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { color } from '
|
1
|
+
import { color } from 'styles/types';
|
2
2
|
export declare const grey: color;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { color } from '
|
1
|
+
import { color } from 'styles/types';
|
2
2
|
export declare const indigo: color;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { color } from '
|
1
|
+
import { color } from 'styles/types';
|
2
2
|
export declare const orange: color;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { color } from '
|
1
|
+
import { color } from 'styles/types';
|
2
2
|
export declare const pink: color;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { color } from '
|
1
|
+
import { color } from 'styles/types';
|
2
2
|
export declare const red: color;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { bwColor } from '
|
1
|
+
import { bwColor } from 'styles/types';
|
2
2
|
export declare const white: bwColor;
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import { color } from '
|
1
|
+
import { color } from 'styles/types';
|
2
2
|
export declare const yellow: color;
|
package/package.json
CHANGED