@televet/kibble-ui 1.9.0 → 1.10.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.
@@ -1,11 +1,3 @@
1
- export declare const blur: Blur;
2
- export declare type Blur = {
3
- none: number;
4
- sm: string;
5
- base: string;
6
- md: string;
7
- lg: string;
8
- xl: string;
9
- '2xl': string;
10
- '3xl': string;
11
- };
1
+ export declare const blur: Record<BlurAmount, string>;
2
+ export declare type BlurAmount = 'none' | 'sm' | 'base' | 'md' | 'lg' | 'xl' | '2xl' | '3xl';
3
+ export declare type Blur = Record<BlurAmount, string>;
@@ -1,3 +1,3 @@
1
- export declare const fontWeights: Record<FontWeight, number>;
2
1
  export declare type FontWeight = 'hairline' | 'thin' | 'light' | 'normal' | 'medium' | 'semibold' | 'bold' | 'extrabold' | 'black';
3
2
  export declare type FontWeights = Record<FontWeight, number>;
3
+ export declare const fontWeights: FontWeights;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@televet/kibble-ui",
3
- "version": "1.9.0",
3
+ "version": "1.10.0",
4
4
  "description": "Kibble Design System by Televet",
5
5
  "author": "TeleVet",
6
6
  "main": "build/index.js",