@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.
- package/build/index.js +7 -0
- package/build/index.js.map +1 -1
- package/build/theme/tokens/shadows/index.d.ts +2 -0
- package/build/theme/tokens/shadows/shadows.config.d.ts +2 -0
- package/build/theme/tokens/shadows/shadows.d.ts +9 -0
- package/build/theme/tokens/{shadows.d.ts → shadows/shadows.types.d.ts} +8 -1
- package/build/utils/copyToClipboard.d.ts +5 -0
- package/package.json +1 -1
|
@@ -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;
|