@bifrostui/react 1.1.11-beta.6 → 1.1.11-beta.9
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/Modal/Modal.miniapp.d.ts +1 -1
- package/package.json +12 -15
- package/src/index.ts +0 -40
|
@@ -12,5 +12,5 @@ declare const Modal: React.ForwardRefExoticComponent<Omit<ViewProps & {
|
|
|
12
12
|
keepMounted?: boolean;
|
|
13
13
|
} & import("@bifrostui/types").ICommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
14
14
|
ref?: React.Ref<HTMLDivElement>;
|
|
15
|
-
},
|
|
15
|
+
}, keyof import("@bifrostui/types").ICommonProps | "open" | "container" | "disablePortal" | "hideBackdrop" | "BackdropProps" | "onClose" | "disableScrollLock" | "keepMounted">, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
16
16
|
export default Modal;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bifrostui/react",
|
|
3
|
-
"version": "1.1.11-beta.
|
|
3
|
+
"version": "1.1.11-beta.9",
|
|
4
4
|
"description": "React components for building mobile application",
|
|
5
5
|
"homepage": "http://bui.taopiaopiao.com",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"main": "
|
|
8
|
-
"module": "
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"module": "es/index.js",
|
|
9
9
|
"typings": "es/index.d.ts",
|
|
10
10
|
"directories": {
|
|
11
11
|
"test": "__tests__"
|
|
@@ -17,14 +17,9 @@
|
|
|
17
17
|
"README.md"
|
|
18
18
|
],
|
|
19
19
|
"publishConfig": {
|
|
20
|
-
"main": "dist/index.js",
|
|
21
|
-
"module": "es/index.js",
|
|
22
20
|
"access": "public",
|
|
23
21
|
"registry": "https://registry.npmjs.org/"
|
|
24
22
|
},
|
|
25
|
-
"scripts": {
|
|
26
|
-
"build": "node esbuild.config.js"
|
|
27
|
-
},
|
|
28
23
|
"sideEffects": [
|
|
29
24
|
"*.css",
|
|
30
25
|
"*.less"
|
|
@@ -35,13 +30,13 @@
|
|
|
35
30
|
"glob": "11.0.0"
|
|
36
31
|
},
|
|
37
32
|
"dependencies": {
|
|
38
|
-
"@bifrostui/icons": "1.1.11-beta.6",
|
|
39
|
-
"@bifrostui/styles": "1.1.11-beta.6",
|
|
40
|
-
"@bifrostui/types": "1.1.11-beta.6",
|
|
41
|
-
"@bifrostui/utils": "1.1.11-beta.6",
|
|
42
33
|
"clsx": "^1.2.1",
|
|
43
34
|
"dayjs": "^1.11.7",
|
|
44
|
-
"swiper": "^8.1.5"
|
|
35
|
+
"swiper": "^8.1.5",
|
|
36
|
+
"@bifrostui/icons": "1.1.11-beta.9",
|
|
37
|
+
"@bifrostui/utils": "1.1.11-beta.9",
|
|
38
|
+
"@bifrostui/types": "1.1.11-beta.9",
|
|
39
|
+
"@bifrostui/styles": "1.1.11-beta.9"
|
|
45
40
|
},
|
|
46
41
|
"peerDependencies": {
|
|
47
42
|
"@tarojs/components": "^3.0.0",
|
|
@@ -50,5 +45,7 @@
|
|
|
50
45
|
"react": "^17.0.0 || ^18.0.0",
|
|
51
46
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
52
47
|
},
|
|
53
|
-
"
|
|
54
|
-
|
|
48
|
+
"scripts": {
|
|
49
|
+
"build": "node esbuild.config.js"
|
|
50
|
+
}
|
|
51
|
+
}
|
package/src/index.ts
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
export * from './ActionSheet';
|
|
2
|
-
export * from './Alert';
|
|
3
|
-
export * from './Avatar';
|
|
4
|
-
export * from './Backdrop';
|
|
5
|
-
export * from './Badge';
|
|
6
|
-
export * from './Button';
|
|
7
|
-
export * from './Calendar';
|
|
8
|
-
export * from './Card';
|
|
9
|
-
export * from './Checkbox';
|
|
10
|
-
export * from './Divider';
|
|
11
|
-
export * from './Drawer';
|
|
12
|
-
export * from './Fade';
|
|
13
|
-
export * from './IconButton';
|
|
14
|
-
export * from './Image';
|
|
15
|
-
export * from './Input';
|
|
16
|
-
export * from './List';
|
|
17
|
-
export * from './Modal';
|
|
18
|
-
export * from './Portal';
|
|
19
|
-
export * from './Progress';
|
|
20
|
-
export * from './Radio';
|
|
21
|
-
export * from './Rating';
|
|
22
|
-
export * from './ScrollView';
|
|
23
|
-
export * from './Select';
|
|
24
|
-
export * from './Skeleton';
|
|
25
|
-
export * from './Slide';
|
|
26
|
-
export * from './Slider';
|
|
27
|
-
export * from './Stack';
|
|
28
|
-
export * from './Steps';
|
|
29
|
-
export * from './Swiper';
|
|
30
|
-
export * from './Switch';
|
|
31
|
-
export * from './Tabs';
|
|
32
|
-
export * from './Tag';
|
|
33
|
-
export * from './TextArea';
|
|
34
|
-
export * from './Transition';
|
|
35
|
-
export * from './NavBar';
|
|
36
|
-
export * from './Loading';
|
|
37
|
-
export * from './TabBar';
|
|
38
|
-
export * from './Countdown';
|
|
39
|
-
export * from './CitySelector';
|
|
40
|
-
export * from './Picker';
|