@nutui/nutui 4.0.0-beta.8 → 4.0.0-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/nutui.es.js +8 -4
- package/dist/nutui.umd.cjs +7 -19974
- package/dist/packages/_es/Dialog.js +11 -16
- package/dist/packages/_es/ImagePreview.js +6 -8
- package/dist/packages/_es/Notify.js +4 -5
- package/dist/packages/_es/Toast.js +6 -7
- package/dist/packages/dialog/index.mjs +2 -1
- package/dist/packages/imagepreview/index.mjs +2 -1
- package/dist/packages/notify/index.mjs +2 -1
- package/dist/packages/toast/index.mjs +2 -1
- package/dist/smartips/attributes.json +6 -6
- package/dist/smartips/tags.json +6 -6
- package/dist/smartips/web-types.json +7 -7
- package/dist/style.css +1 -1
- package/dist/styles/themes/default.scss +46 -46
- package/dist/styles/themes/jdb.scss +46 -46
- package/dist/styles/themes/jddkh.scss +46 -46
- package/dist/styles/themes/jdt.scss +46 -46
- package/dist/types/__VUE/dialog/index.d.ts +9 -9
- package/dist/types/__VUE/imagepreview/index.d.ts +12 -12
- package/dist/types/__VUE/notify/index.d.ts +3 -3
- package/dist/types/__VUE/toast/index.d.ts +3 -3
- package/dist/types/index.d.ts +10 -6
- package/package.json +1 -1
package/dist/nutui.es.js
CHANGED
|
@@ -201,7 +201,9 @@ import { AddressList } from "./packages/AddressList/index.mjs";
|
|
|
201
201
|
import { Category } from "./packages/Category/index.mjs";
|
|
202
202
|
import { CategoryPane } from "./packages/CategoryPane/index.mjs";
|
|
203
203
|
import { Comment } from "./packages/Comment/index.mjs";
|
|
204
|
-
import { Invoice } from "./packages/Invoice/index.mjs";
|
|
204
|
+
import { Invoice } from "./packages/Invoice/index.mjs";
|
|
205
|
+
import { Locale } from "./packages/locale/lang";
|
|
206
|
+
function install(app) {
|
|
205
207
|
const packages = [Button,Cell,CellGroup,Overlay,Popup,ConfigProvider,Image,Layout,Col,Row,Sticky,Divider,Grid,GridItem,Navbar,FixedNav,Menu,MenuItem,Tabbar,TabbarItem,Elevator,Pagination,Tabs,TabPane,Indicator,SideNavbar,SideNavbarItem,SubSideNavbar,Range,Searchbar,Cascader,Calendar,Checkbox,CheckboxGroup,DatePicker,InputNumber,Input,Radio,RadioGroup,Rate,CalendarItem,Picker,ShortPassword,Textarea,Uploader,NumberKeyboard,Form,FormItem,Swipe,ActionSheet,Backtop,Drag,Dialog,InfiniteLoading,PullRefresh,Notify,Switch,Toast,Audio,AudioOperate,Avatar,AvatarGroup,List,Progress,CircleProgress,Noticebar,Empty,Video,Steps,Step,Swiper,SwiperItem,Price,ImagePreview,Countup,Countdown,Badge,Tag,Popover,Skeleton,Collapse,CollapseItem,Table,Animate,Ellipsis,Watermark,TrendArrow,Tour,Address,Barrage,Signature,TimeSelect,TimePannel,TimeDetail,Sku,Card,Ecard,AddressList,Category,CategoryPane,Comment,Invoice];
|
|
206
208
|
packages.forEach((item) => {
|
|
207
209
|
if (item.install) {
|
|
@@ -211,13 +213,15 @@ import { Invoice } from "./packages/Invoice/index.mjs";function install(app) {
|
|
|
211
213
|
}
|
|
212
214
|
});
|
|
213
215
|
}
|
|
214
|
-
const version = '4.0.0-beta.
|
|
216
|
+
const version = '4.0.0-beta.9';
|
|
215
217
|
var stdin_default = {
|
|
216
218
|
install,
|
|
217
|
-
version
|
|
219
|
+
version,
|
|
220
|
+
Locale
|
|
218
221
|
};
|
|
219
222
|
export {
|
|
220
223
|
stdin_default as default,
|
|
221
224
|
install,
|
|
222
|
-
version
|
|
225
|
+
version,
|
|
226
|
+
Locale
|
|
223
227
|
};
|