@okam/stack-ui 1.10.7 → 1.12.1
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/components/DirectusImg/index.d.ts +3 -0
- package/components/DirectusImg/interface.d.ts +13 -0
- package/components/Img/index.d.ts +3 -0
- package/components/Img/interface.d.ts +6 -0
- package/components/Popover/interface.d.ts +8 -6
- package/index.d.ts +2 -0
- package/index.js +15 -5
- package/index.mjs +1338 -1100
- package/package.json +3 -1
- package/theme/Carousel/index.d.ts +15 -0
- package/theme/Image/index.d.ts +7 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@okam/stack-ui",
|
|
3
3
|
"main": "./index.js",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.12.1",
|
|
5
5
|
"types": "./index.d.ts",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
"isomorphic-dompurify": "0.26.0",
|
|
39
39
|
"lodash": "4.17.21",
|
|
40
40
|
"lodash.isequal": "4.5.0",
|
|
41
|
+
"next": "13.4.1",
|
|
41
42
|
"radash": "10.7.0",
|
|
42
43
|
"react": "18.2.0",
|
|
43
44
|
"react-aria": "^3.27.0",
|
|
@@ -47,6 +48,7 @@
|
|
|
47
48
|
"react-spring": "9.6.1",
|
|
48
49
|
"react-stately": "^3.24.0",
|
|
49
50
|
"tailwind-variants": "^0.1.8",
|
|
51
|
+
"unlazy": "^0.10.2",
|
|
50
52
|
"usehooks-ts": "^2.9.1"
|
|
51
53
|
},
|
|
52
54
|
"type": "module"
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const carouselContainer: import("tailwind-variants").TVReturnType<import("tailwind-variants").TVVariantsDefault<undefined, "flex justify-between items-center relative h-[475px] mb-18 lg:h-[650px]"> | {
|
|
2
|
+
[x: string]: {
|
|
3
|
+
[x: string]: import("tailwind-variants").ClassValue | import("tailwind-variants").SlotsClassValue<undefined, "flex justify-between items-center relative h-[475px] mb-18 lg:h-[650px]">;
|
|
4
|
+
} | undefined;
|
|
5
|
+
} | {}, undefined, "flex justify-between items-center relative h-[475px] mb-18 lg:h-[650px]", import("tailwind-variants/dist/config").TVConfig<unknown, import("tailwind-variants").TVVariantsDefault<undefined, "flex justify-between items-center relative h-[475px] mb-18 lg:h-[650px]"> | {}>, import("tailwind-variants").TVVariantsDefault<undefined, "flex justify-between items-center relative h-[475px] mb-18 lg:h-[650px]"> | {}, undefined>;
|
|
6
|
+
export declare const carouselSlideContainer: import("tailwind-variants").TVReturnType<import("tailwind-variants").TVVariantsDefault<undefined, "flex justify-center m-auto px-8 w-full h-full"> | {
|
|
7
|
+
[x: string]: {
|
|
8
|
+
[x: string]: import("tailwind-variants").ClassValue | import("tailwind-variants").SlotsClassValue<undefined, "flex justify-center m-auto px-8 w-full h-full">;
|
|
9
|
+
} | undefined;
|
|
10
|
+
} | {}, undefined, "flex justify-center m-auto px-8 w-full h-full", import("tailwind-variants/dist/config").TVConfig<unknown, import("tailwind-variants").TVVariantsDefault<undefined, "flex justify-center m-auto px-8 w-full h-full"> | {}>, import("tailwind-variants").TVVariantsDefault<undefined, "flex justify-center m-auto px-8 w-full h-full"> | {}, undefined>;
|
|
11
|
+
export declare const carouselNavigationButtons: import("tailwind-variants").TVReturnType<import("tailwind-variants").TVVariantsDefault<undefined, "bg-color-1-500 rounded-full p-4 text-white"> | {
|
|
12
|
+
[x: string]: {
|
|
13
|
+
[x: string]: import("tailwind-variants").ClassValue | import("tailwind-variants").SlotsClassValue<undefined, "bg-color-1-500 rounded-full p-4 text-white">;
|
|
14
|
+
} | undefined;
|
|
15
|
+
} | {}, undefined, "bg-color-1-500 rounded-full p-4 text-white", import("tailwind-variants/dist/config").TVConfig<unknown, import("tailwind-variants").TVVariantsDefault<undefined, "bg-color-1-500 rounded-full p-4 text-white"> | {}>, import("tailwind-variants").TVVariantsDefault<undefined, "bg-color-1-500 rounded-full p-4 text-white"> | {}, undefined>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { TToken } from '../../providers/Theme/interface';
|
|
2
|
+
export declare const imgStyles: import("tailwind-variants").TVReturnType<import("tailwind-variants").TVVariantsDefault<undefined, "object-contain"> | {
|
|
3
|
+
[x: string]: {
|
|
4
|
+
[x: string]: import("tailwind-variants").ClassValue | import("tailwind-variants").SlotsClassValue<undefined, "object-contain">;
|
|
5
|
+
} | undefined;
|
|
6
|
+
} | {}, undefined, "object-contain", import("tailwind-variants/dist/config").TVConfig<unknown, import("tailwind-variants").TVVariantsDefault<undefined, "object-contain"> | {}>, import("tailwind-variants").TVVariantsDefault<undefined, "object-contain"> | {}, undefined>;
|
|
7
|
+
export declare const imgTheme: (props: TToken) => string;
|