@windrun-huaiin/third-ui 5.11.4 → 5.12.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/dist/main/index.d.mts +7 -5
- package/dist/main/index.d.ts +7 -5
- package/dist/main/index.js +303 -265
- package/dist/main/index.js.map +1 -1
- package/dist/main/index.mjs +294 -256
- package/dist/main/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/main/gallery.tsx +86 -20
package/dist/main/index.d.mts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import React, { ReactNode } from 'react';
|
|
2
|
+
import React$1, { ReactNode } from 'react';
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
interface GalleryProps {
|
|
5
5
|
sectionClassName?: string;
|
|
6
|
-
|
|
6
|
+
button?: React.ReactNode;
|
|
7
|
+
}
|
|
8
|
+
declare function Gallery({ sectionClassName, button }: GalleryProps): react_jsx_runtime.JSX.Element;
|
|
7
9
|
|
|
8
10
|
declare function Usage({ sectionClassName }: {
|
|
9
11
|
sectionClassName?: string;
|
|
@@ -59,8 +61,8 @@ declare function PricePlan({ currency, pricePlanConfig, sectionClassName }: Pric
|
|
|
59
61
|
interface AdsAlertDialogProps {
|
|
60
62
|
open: boolean;
|
|
61
63
|
onOpenChange: (open: boolean) => void;
|
|
62
|
-
title: React.ReactNode;
|
|
63
|
-
description: React.ReactNode;
|
|
64
|
+
title: React$1.ReactNode;
|
|
65
|
+
description: React$1.ReactNode;
|
|
64
66
|
imgSrc?: string;
|
|
65
67
|
imgHref?: string;
|
|
66
68
|
onCancel?: () => void;
|
package/dist/main/index.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import React, { ReactNode } from 'react';
|
|
2
|
+
import React$1, { ReactNode } from 'react';
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
interface GalleryProps {
|
|
5
5
|
sectionClassName?: string;
|
|
6
|
-
|
|
6
|
+
button?: React.ReactNode;
|
|
7
|
+
}
|
|
8
|
+
declare function Gallery({ sectionClassName, button }: GalleryProps): react_jsx_runtime.JSX.Element;
|
|
7
9
|
|
|
8
10
|
declare function Usage({ sectionClassName }: {
|
|
9
11
|
sectionClassName?: string;
|
|
@@ -59,8 +61,8 @@ declare function PricePlan({ currency, pricePlanConfig, sectionClassName }: Pric
|
|
|
59
61
|
interface AdsAlertDialogProps {
|
|
60
62
|
open: boolean;
|
|
61
63
|
onOpenChange: (open: boolean) => void;
|
|
62
|
-
title: React.ReactNode;
|
|
63
|
-
description: React.ReactNode;
|
|
64
|
+
title: React$1.ReactNode;
|
|
65
|
+
description: React$1.ReactNode;
|
|
64
66
|
imgSrc?: string;
|
|
65
67
|
imgHref?: string;
|
|
66
68
|
onCancel?: () => void;
|