@televet/kibble-ui 1.0.15-beta.2 → 1.0.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@televet/kibble-ui",
3
- "version": "1.0.15-beta.2",
3
+ "version": "1.0.15",
4
4
  "description": "Kibble Design System by Televet",
5
5
  "author": "TeleVet",
6
6
  "main": "build/index.js",
@@ -1,82 +0,0 @@
1
- import { IconColor } from '../../components/Icon/icon.types';
2
- import { ColorMode } from '@chakra-ui/react';
3
- export declare const baseColors: IBaseColors;
4
- export declare const semanticTokens: ISemanticTokens;
5
- interface IBaseColors {
6
- transparent: string;
7
- current: string;
8
- black: string;
9
- white: string;
10
- whiteAlpha: ColorValueMap;
11
- blackAlpha: ColorValueMap;
12
- gray: ColorValueMap;
13
- red: ColorValueMap;
14
- orange: ColorValueMap;
15
- yellow: ColorValueMap;
16
- green: ColorValueMap;
17
- teal: ColorValueMap;
18
- blue: ColorValueMap;
19
- comet: ColorValueMap;
20
- }
21
- export interface ISemanticTokens {
22
- text: {
23
- onLight: string;
24
- linkOnLight: string;
25
- onLightSubtle: string;
26
- onDark: string;
27
- headline: string;
28
- placeholder: string;
29
- success: string;
30
- warning: string;
31
- error: string;
32
- };
33
- background: {
34
- light: string;
35
- grayLight: string;
36
- grayDark: string;
37
- tealLight: string;
38
- dark: string;
39
- table: string;
40
- overlay: string;
41
- info: string;
42
- error: string;
43
- warning: string;
44
- success: string;
45
- };
46
- icon: AdaptiveColorMap<IconColor>;
47
- border: {
48
- default: string;
49
- dark: string;
50
- focus: string;
51
- info: string;
52
- error: string;
53
- warning: string;
54
- success: string;
55
- };
56
- divider: {
57
- onLight: string;
58
- };
59
- status: {
60
- open: string;
61
- confirmed: string;
62
- success: string;
63
- warning: string;
64
- action: string;
65
- negative: string;
66
- error: string;
67
- archived: string;
68
- closed: string;
69
- };
70
- general: {
71
- brand: string;
72
- error: string;
73
- };
74
- }
75
- export declare type ColorValue = '50' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900';
76
- export declare type ColorValueMap = Record<ColorValue, string>;
77
- export declare type AdaptiveColor = Record<ColorMode, string>;
78
- export declare type AdaptiveColorMap<T extends keyof any> = Record<ColorMode, Record<T, string>>;
79
- export declare type AdaptiveColorConfig<K extends keyof any, T extends keyof any> = Record<K, AdaptiveColorMap<T>>;
80
- export declare type TColors = IBaseColors & ISemanticTokens;
81
- declare const colors: TColors;
82
- export default colors;