@fattureincloud/fic-design-system 0.5.0 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +18 -0
- package/dist/common/components/typography/index.d.ts +1 -0
- package/dist/components/avatar/Avatar.d.ts +1 -1
- package/dist/components/avatar/avatar.stories.d.ts +2 -2
- package/dist/components/avatar/index.d.ts +2 -2
- package/dist/components/avatar/styled.d.ts +3 -0
- package/dist/components/avatar/types.d.ts +18 -6
- package/dist/components/avatar/utils.d.ts +4 -0
- package/dist/components/badge/Badge.d.ts +2 -2
- package/dist/components/dropdown/types.d.ts +1 -2
- package/dist/components/inlineMessage/InlineMessage.d.ts +1 -1
- package/dist/components/segmentButton/index.d.ts +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.esm.js +5 -5
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/styles/types.d.ts +2 -1
- package/package.json +1 -1
package/dist/styles/types.d.ts
CHANGED
@@ -3,7 +3,8 @@ declare type bwColorValues = 8 | 16 | 48 | 80 | 100;
|
|
3
3
|
export declare type bwColor = {
|
4
4
|
[k in bwColorValues]: paletteColor;
|
5
5
|
};
|
6
|
-
declare
|
6
|
+
export declare const colorValuesArray: readonly [50, 100, 200, 300, 400, 500, 600, 700, 800, 900];
|
7
|
+
export declare type colorValues = typeof colorValuesArray[number];
|
7
8
|
export declare type color = {
|
8
9
|
[k in colorValues]: paletteColor;
|
9
10
|
};
|
package/package.json
CHANGED