@televet/kibble-ui 1.1.0-beta.3 → 1.1.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.1.0-beta.3",
3
+ "version": "1.1.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,3 +0,0 @@
1
- export * from './tooltip.component';
2
- export * from './tooltip.model';
3
- export * from './tooltip.records';
@@ -1,8 +0,0 @@
1
- import { ReactNode } from 'react';
2
- import { Placement, TooltipProps as ChakraTooltipProps } from '@chakra-ui/react';
3
- export interface TooltipProps extends ChakraTooltipProps {
4
- children: ReactNode;
5
- label: string;
6
- placement: Placement;
7
- }
8
- export declare const Tooltip: ({ children, label, placement, isOpen, defaultIsOpen, ...rest }: TooltipProps) => JSX.Element;
@@ -1,4 +0,0 @@
1
- import { AdaptiveColor } from '../../theme/tokens';
2
- export interface TooltipStyleConfig {
3
- color: AdaptiveColor;
4
- }
@@ -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,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
- Button: ButtonStyleConfig;
27
- Drawer: ComponentStyleConfig;
28
- Textarea: ComponentStyleConfig;
29
- Heading: HeadingStyleConfig;
30
- Text: ComponentStyleConfig;
31
- Tooltip: TooltipStyleConfig;
32
- };
33
- }
@@ -1,2 +0,0 @@
1
- import { ITheme } from './theme.model';
2
- export declare const theme: ITheme;