@televet/kibble-ui 1.2.0-beta.4 → 1.2.0

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.2.0-beta.4",
3
+ "version": "1.2.0",
4
4
  "description": "Kibble Design System by Televet",
5
5
  "author": "TeleVet",
6
6
  "main": "build/index.js",
@@ -1,2 +0,0 @@
1
- import { ButtonStyleConfig } from './button.types';
2
- export declare const ButtonConfig: ButtonStyleConfig;
@@ -1,13 +0,0 @@
1
- export declare const DrawerConfig: {
2
- variants: {
3
- alwaysOpen: {
4
- parts: string[];
5
- dialog: {
6
- pointerEvents: string;
7
- };
8
- dialogContainer: {
9
- pointerEvents: string;
10
- };
11
- };
12
- };
13
- };
@@ -1,9 +0,0 @@
1
- import { TooltipStyleConfig } from './tooltip.model';
2
- export declare const TooltipGlobalStyle: {
3
- '[id^=tooltip]': {
4
- padding: string;
5
- borderRadius: string;
6
- textTransform: string;
7
- };
8
- };
9
- export declare const TooltipConfig: TooltipStyleConfig;
@@ -1,2 +0,0 @@
1
- import { HeadingStyleConfig } from './heading.types';
2
- export declare const HeadingConfig: HeadingStyleConfig;
@@ -1,2 +0,0 @@
1
- import { ComponentStyleConfig } from '@chakra-ui/theme';
2
- export declare const TextConfig: ComponentStyleConfig;
@@ -1,2 +0,0 @@
1
- import { ITheme } from './theme.model';
2
- export declare const theme: ITheme;
@@ -1,33 +0,0 @@
1
- import { Blur, Borders, Colors, Fonts, FontSizes, FontWeights, LineHeights, Radii, SemanticTokens, Shadows, Sizes, Space, Transition, ZIndices } from './tokens';
2
- import { ButtonStyleConfig, HeadingStyleConfig, TooltipStyleConfig } from '../components';
3
- import { ComponentStyleConfig } from '@chakra-ui/theme';
4
- export interface ITheme {
5
- blur: Blur;
6
- borders: Borders;
7
- colors: Colors;
8
- radii: Radii;
9
- shadows: Shadows;
10
- sizes: Sizes;
11
- fonts: Fonts;
12
- fontSizes: FontSizes;
13
- fontWeights: FontWeights;
14
- lineHeights: LineHeights;
15
- space: Space;
16
- transition: Transition;
17
- zIndices: ZIndices;
18
- semanticTokens: SemanticTokens;
19
- initialColorMode: string;
20
- useSystemColorMode: boolean;
21
- config: {
22
- initialColorMode: string;
23
- useSystemColorMode: boolean;
24
- };
25
- components: {
26
- Drawer: ComponentStyleConfig;
27
- Textarea: ComponentStyleConfig;
28
- Heading: HeadingStyleConfig;
29
- Text: ComponentStyleConfig;
30
- Button: ButtonStyleConfig;
31
- Tooltip: TooltipStyleConfig;
32
- };
33
- }