@v-miniapp/ui-react 1.0.71 → 1.0.72
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/external/index.js
CHANGED
|
@@ -18954,6 +18954,7 @@ export {
|
|
|
18954
18954
|
hV as TextArea,
|
|
18955
18955
|
lP as TextField,
|
|
18956
18956
|
er as Toast,
|
|
18957
|
+
cA as ToastProvider,
|
|
18957
18958
|
TV as Tooltip,
|
|
18958
18959
|
te as Typography,
|
|
18959
18960
|
vV as Uploader,
|
package/dist/index.js
CHANGED
|
@@ -5,14 +5,14 @@ export * from "@v-miniapp/locale";
|
|
|
5
5
|
export * from "@v-miniapp/router";
|
|
6
6
|
import { initLocales as n } from "./locales/index.js";
|
|
7
7
|
import { AIApp as s } from "./components/ai-app/ai-app.js";
|
|
8
|
-
import { Alert as
|
|
8
|
+
import { Alert as g } from "./components/alert/alert.js";
|
|
9
9
|
import { App as h } from "./components/app/app.js";
|
|
10
|
-
import { Avatar as
|
|
10
|
+
import { Avatar as T } from "./components/avatar/avatar.js";
|
|
11
11
|
import { Badge as P, BadgeContainer as B } from "./components/badge/badge.js";
|
|
12
12
|
import { BottomTabBar as I } from "./components/bottom-tab-bar/bottom-tab-bar.js";
|
|
13
13
|
import { Button as b } from "./components/button/button.js";
|
|
14
14
|
import { Calendar as N } from "./components/calendar/calendar.js";
|
|
15
|
-
import { Carousel as
|
|
15
|
+
import { Carousel as v, CarouselItem as A } from "./components/carousel/carousel.js";
|
|
16
16
|
import { Checkbox as y } from "./components/checkbox/checkbox.js";
|
|
17
17
|
import { Chip as w } from "./components/chip/chip.js";
|
|
18
18
|
import { DateField as M } from "./components/date-field/date-field.js";
|
|
@@ -31,12 +31,12 @@ import { Label as no } from "./components/label/label.js";
|
|
|
31
31
|
import { ListItem as so } from "./components/list-item/list-item.js";
|
|
32
32
|
import { NavigationBar as uo } from "./components/navigation-bar/navigation-bar.js";
|
|
33
33
|
import { NumberField as So } from "./components/number-field/number-field.js";
|
|
34
|
-
import { OptionItem as
|
|
34
|
+
import { OptionItem as co } from "./components/option-item/option-item.js";
|
|
35
35
|
import { Page as Bo } from "./components/layout/page.js";
|
|
36
36
|
import { PageLoading as Io } from "./components/layout/page-loading.js";
|
|
37
37
|
import { Pagination as bo } from "./components/pagination/pagination.js";
|
|
38
38
|
import { PhoneNumberField as No, TextField as ko } from "./components/text-field/text-field.js";
|
|
39
|
-
import { PullToRefresh as
|
|
39
|
+
import { PullToRefresh as Ao } from "./components/pull-to-refresh/pull-to-refresh.js";
|
|
40
40
|
import { Radio as yo } from "./components/radio/radio.js";
|
|
41
41
|
import { Rating as wo } from "./components/rating/rating.js";
|
|
42
42
|
import { SearchField as Mo } from "./components/search-field/search-field.js";
|
|
@@ -53,27 +53,28 @@ import { Switch as me } from "./components/switch/switch.js";
|
|
|
53
53
|
import { TabBar as fe } from "./components/tab-bar/tab-bar.js";
|
|
54
54
|
import { TextArea as ie } from "./components/text-area/text-area.js";
|
|
55
55
|
import { Toast as le } from "./components/toast/toast.js";
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
56
|
+
import { ToastProvider as de } from "./components/toast/toast-provider.js";
|
|
57
|
+
import { Tooltip as ue } from "./components/tooltip/tooltip.js";
|
|
58
|
+
import { Typography as Se } from "./components/typography/typography.js";
|
|
59
|
+
import { VisibilitySensor as ce } from "./components/visibility-sensor/visibility-sensor.js";
|
|
60
|
+
import { default as Be } from "classnames";
|
|
61
|
+
import { getDataTheme as Ie, setDataTheme as De, toggleDataTheme as be } from "./components/app/data-theme.js";
|
|
62
|
+
import { useBottomTabBar as Ne } from "./components/app/bottom-tab-bar-layout/hook.js";
|
|
63
|
+
import { useCarousel as ve } from "./components/carousel/use-carousel.js";
|
|
64
|
+
import { useLoadMore as Le, usePageLayout as ye, usePageScroll as Re, usePullToRefresh as we } from "./components/app/page-layout/hook.js";
|
|
65
|
+
import { useNavigationBar as Me } from "./components/app/navigation-bar-layout/hook.js";
|
|
65
66
|
export {
|
|
66
67
|
s as AIApp,
|
|
67
|
-
|
|
68
|
+
g as Alert,
|
|
68
69
|
h as App,
|
|
69
|
-
|
|
70
|
+
T as Avatar,
|
|
70
71
|
P as Badge,
|
|
71
72
|
B as BadgeContainer,
|
|
72
73
|
I as BottomTabBar,
|
|
73
74
|
b as Button,
|
|
74
75
|
N as Calendar,
|
|
75
|
-
|
|
76
|
-
|
|
76
|
+
v as Carousel,
|
|
77
|
+
A as CarouselItem,
|
|
77
78
|
y as Checkbox,
|
|
78
79
|
w as Chip,
|
|
79
80
|
M as DateField,
|
|
@@ -92,12 +93,12 @@ export {
|
|
|
92
93
|
so as ListItem,
|
|
93
94
|
uo as NavigationBar,
|
|
94
95
|
So as NumberField,
|
|
95
|
-
|
|
96
|
+
co as OptionItem,
|
|
96
97
|
Bo as Page,
|
|
97
98
|
Io as PageLoading,
|
|
98
99
|
bo as Pagination,
|
|
99
100
|
No as PhoneNumberField,
|
|
100
|
-
|
|
101
|
+
Ao as PullToRefresh,
|
|
101
102
|
yo as Radio,
|
|
102
103
|
wo as Rating,
|
|
103
104
|
Mo as SearchField,
|
|
@@ -118,26 +119,27 @@ export {
|
|
|
118
119
|
ie as TextArea,
|
|
119
120
|
ko as TextField,
|
|
120
121
|
le as Toast,
|
|
121
|
-
|
|
122
|
-
ue as
|
|
122
|
+
de as ToastProvider,
|
|
123
|
+
ue as Tooltip,
|
|
124
|
+
Se as Typography,
|
|
123
125
|
$ as Uploader,
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
126
|
+
ce as VisibilitySensor,
|
|
127
|
+
Be as classNames,
|
|
128
|
+
Ie as getDataTheme,
|
|
127
129
|
xo as getInputProps,
|
|
128
130
|
r as getPrefixClassName,
|
|
129
131
|
ro as iconNames,
|
|
130
132
|
n as initLocales,
|
|
131
133
|
to as renderIcon,
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
134
|
+
De as setDataTheme,
|
|
135
|
+
be as toggleDataTheme,
|
|
136
|
+
Ne as useBottomTabBar,
|
|
137
|
+
ve as useCarousel,
|
|
136
138
|
p as useCustomIconEvent,
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
139
|
+
Le as useLoadMore,
|
|
140
|
+
Me as useNavigationBar,
|
|
141
|
+
ye as usePageLayout,
|
|
142
|
+
Re as usePageScroll,
|
|
143
|
+
we as usePullToRefresh,
|
|
142
144
|
a as useSettingsChanged
|
|
143
145
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"generatedAt":
|
|
1
|
+
{"generatedAt":1773724322020,"hasCustomBabel":false,"hasCustomWebpack":false,"hasStaticDirs":false,"hasStorybookEslint":true,"refCount":0,"knownPackages":{"testPackages":{"@storybook/addon-vitest":"10.2.13","@vitest/browser":"3.2.4","@vitest/coverage-v8":"3.2.4","playwright":"1.58.2","vitest":"3.2.4"},"stylingPackages":{"sass":"^1.92.1"},"stateManagementPackages":{"zustand":"^5.0.9"}},"hasRouterPackage":false,"packageManager":{"type":"pnpm","version":"10.20.0","agent":"pnpm","nodeLinker":"undefined"},"preview":{"usesGlobals":true},"framework":{"name":"@storybook/react-vite","options":{}},"builder":"@storybook/builder-vite","renderer":"@storybook/react","portableStoriesFileCount":0,"applicationFileCount":57,"storybookVersion":"10.2.13","storybookVersionSpecifier":"^10.2.10","language":"typescript","storybookPackages":{"@storybook/addon-vitest":{"version":"10.2.13"},"@storybook/react-vite":{"version":"10.2.13"},"eslint-plugin-storybook":{"version":"9.1.16"},"storybook":{}},"addons":{"@storybook/addon-docs":{"version":"10.2.13"},"@storybook/addon-a11y":{"version":"10.2.13"}},"packageJsonType":"module"}
|