@fox-js/foxui 4.0.1-1 → 4.0.1-2

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.
@@ -0,0 +1,13 @@
1
+ import { App, PropType, CSSProperties } from 'vue';
2
+ declare type Install<T> = T & {
3
+ install(app: App): void;
4
+ };
5
+ declare const _sfc_main: Install< import("vue").DefineComponent<unknown, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<unknown>, {}>>;
6
+ export default _sfc_main;
7
+
8
+ declare module 'vue' {
9
+ interface GlobalComponents {
10
+ Fox : typeof _sfc_main;
11
+ }
12
+ }
13
+
@@ -0,0 +1,13 @@
1
+ import { App, PropType, CSSProperties } from 'vue';
2
+ declare type Install<T> = T & {
3
+ install(app: App): void;
4
+ };
5
+ declare const _sfc_main: Install< import("vue").DefineComponent<unknown, object, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<unknown>, {}>>;
6
+ export default _sfc_main;
7
+
8
+ declare module 'vue' {
9
+ interface GlobalComponents {
10
+ Fox : typeof _sfc_main;
11
+ }
12
+ }
13
+
@@ -96,6 +96,7 @@ import CollapseItem from './components/collapseitem/index.vue';
96
96
  import Table from './components/table/index.vue';
97
97
  import Ellipsis from './components/ellipsis/index.vue';
98
98
  import Animate from './components/animate/index.vue';
99
+ import WaterMark from './components/watermark/index.vue';
99
100
  import Address from './components/address/index.vue';
100
101
  import Barrage from './components/barrage/index.vue';
101
102
  import Signature from './components/signature/index.vue';
@@ -113,6 +114,6 @@ export * from './utils/commons';
113
114
  export * from './utils/functions';
114
115
  export * from './utils/date';
115
116
  export * from './utils/unique-id';
116
- export { Page, Header, Footer, Content, Group, Item, Placeholder, InputItem, MoneyItem, TextareaItem, Textarea, PickerItem, CascaderItem, DateItem, CalendarItem, Radio, RadioItem, Checkbox, CheckboxItem, SwitchItem, hinttext, LinkItem, Button, Cell, CellGroup, Icon, OverLay, Popup, 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, DatePicker, InputNumber, Rate, Picker, ShortPassword, Uploader, NumberKeyboard, Swipe, ActionSheet, BackTop, Drag, Dialog, InfiniteLoading, 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, Ellipsis, Animate, Address, Barrage, Signature, TimeSelect, TimePannel, TimeDetail, Sku, Card, Ecard, AddressList, Category, CategoryPane, Comment };
117
+ export { Page, Header, Footer, Content, Group, Item, Placeholder, InputItem, MoneyItem, TextareaItem, Textarea, PickerItem, CascaderItem, DateItem, CalendarItem, Radio, RadioItem, Checkbox, CheckboxItem, SwitchItem, hinttext, LinkItem, Button, Cell, CellGroup, Icon, OverLay, Popup, 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, DatePicker, InputNumber, Rate, Picker, ShortPassword, Uploader, NumberKeyboard, Swipe, ActionSheet, BackTop, Drag, Dialog, InfiniteLoading, 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, Ellipsis, Animate, WaterMark, Address, Barrage, Signature, TimeSelect, TimePannel, TimeDetail, Sku, Card, Ecard, AddressList, Category, CategoryPane, Comment };
117
118
  declare const _default: FoxUIApp;
118
119
  export default _default;
@@ -1,5 +1,6 @@
1
1
  export { isArray, isMap, isSet, isDate, isFunction, isString, isSymbol, isObject, isPromise, isPlainObject, isESModule, isEqual, toTypeString, toBoolean, toNumber, extend, clone } from '@fox-js/fox';
2
2
  export { numberFormat, unNumberFormat, multiply, divide, negate, compareTo } from '@fox-js/big-decimal';
3
+ export declare const isBrowser: boolean;
3
4
  export declare const raf: (((callback: FrameRequestCallback) => number) & typeof requestAnimationFrame) | typeof setTimeout;
4
5
  export declare function isRegExp(v: unknown): v is RegExp;
5
6
  export declare const isEmptyString: (v: unknown) => boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fox-js/foxui",
3
- "version": "4.0.1-1",
3
+ "version": "4.0.1-2",
4
4
  "description": "FoxUI轻量级移动端组件库(支持小程序开发)",
5
5
  "author": "jiangcheng",
6
6
  "main": "dist/foxui.umd.js",
@@ -12,7 +12,8 @@
12
12
  },
13
13
  "./style.css": "./dist/style.css",
14
14
  "./dist/locale": {
15
- "import": "./dist/locale/index.js"
15
+ "import": "./dist/locale/index.js",
16
+ "require": "./dist/locale/index.cjs.js"
16
17
  }
17
18
  },
18
19
  "style": "dist/style.css",