@televet/kibble-ui 1.6.1 → 1.6.2

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.
@@ -0,0 +1,2 @@
1
+ export * from './shadows.config';
2
+ export * from './shadows.types';
@@ -0,0 +1,2 @@
1
+ import { Shadows } from './shadows.types';
2
+ export declare const shadows: Shadows;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ export interface ShadowDefinition {
3
+ name: string;
4
+ value: any;
5
+ type: string;
6
+ }
7
+ export declare const Shadows: () => JSX.Element;
8
+ export declare const ShadowsReversed: () => JSX.Element;
9
+ export declare const NonStandardShadows: () => JSX.Element;
@@ -1,12 +1,19 @@
1
- export declare const shadows: Shadows;
2
1
  export declare type Shadows = {
2
+ [key: string]: string;
3
3
  xs: string;
4
+ xsR: string;
4
5
  sm: string;
6
+ smR: string;
5
7
  base: string;
8
+ baseR: string;
6
9
  md: string;
10
+ mdR: string;
7
11
  lg: string;
12
+ lgR: string;
8
13
  xl: string;
14
+ xlR: string;
9
15
  '2xl': string;
16
+ '2xlR': string;
10
17
  outline: string;
11
18
  inner: string;
12
19
  none: string;
@@ -0,0 +1,5 @@
1
+ export declare const copyToClipboard: ({ tokenType, paletteName, tokenName, }: {
2
+ tokenType: string;
3
+ paletteName?: string | undefined;
4
+ tokenName: string;
5
+ }) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@televet/kibble-ui",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "Kibble Design System by Televet",
5
5
  "author": "TeleVet",
6
6
  "main": "build/index.js",