@nutui/nutui-react 1.1.1-beta.0 → 1.1.2-beta.1
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/CHANGELOG.md +9 -0
- package/dist/esm/Card/style/css.js +1 -0
- package/dist/esm/Card/style/index.js +1 -0
- package/dist/esm/Card.js +68 -0
- package/dist/esm/nutui-react.es.js +1 -0
- package/dist/nutui.react.es.js +237 -172
- package/dist/nutui.react.umd.js +10 -10
- package/dist/packages/card/card.scss +77 -0
- package/dist/style.css +1 -1
- package/dist/style.es.js +1 -1
- package/dist/styles/themes/default.scss +1 -0
- package/dist/types/card/card.d.ts +17 -0
- package/dist/types/card/index.d.ts +2 -0
- package/dist/types/nutui.react.d.ts +2 -1
- package/package.json +1 -1
package/dist/style.es.js
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React, { FunctionComponent } from 'react';
|
|
2
|
+
export interface CardProps {
|
|
3
|
+
imgUrl: string;
|
|
4
|
+
title: string;
|
|
5
|
+
price: string;
|
|
6
|
+
vipPrice: string;
|
|
7
|
+
shopDesc: string;
|
|
8
|
+
delivery: string;
|
|
9
|
+
shopName: string;
|
|
10
|
+
className: string;
|
|
11
|
+
style: React.CSSProperties;
|
|
12
|
+
prolistTpl: React.ReactChild;
|
|
13
|
+
shopTagTpl: React.ReactChild;
|
|
14
|
+
originTpl: React.ReactChild;
|
|
15
|
+
footerTpl: React.ReactChild;
|
|
16
|
+
}
|
|
17
|
+
export declare const Card: FunctionComponent<Partial<CardProps> & React.HTMLAttributes<HTMLDivElement>>;
|
|
@@ -57,4 +57,5 @@ import Barrage from './barrage';
|
|
|
57
57
|
import Signature from './signature';
|
|
58
58
|
import Drag from './drag';
|
|
59
59
|
import AnimatingNumbers from './animatingnumbers';
|
|
60
|
-
|
|
60
|
+
import Card from './card';
|
|
61
|
+
export { Avatar, Button, Cell, CellGroup, Icon, Price, Overlay, Divider, Layout, Row, Col, Toast, Dialog, Popup, ActionSheet, Picker, Infiniteloading, Popover, Collapse, CollapseItem, Range, CircleProgress, NoticeBar, Notify, Switch, NavBar, Tabbar, TabbarItem, Elevator, FixedNav, Pagination, Steps, Step, Swiper, SwiperItem, BackTop, Tabs, TabPane, Rate, Input, TextArea, InputNumber, ShortPassword, Radio, RadioGroup, Checkbox, CheckboxGroup, Tag, Badge, Uploader, Calendar, CalendarItem, DatePicker, Skeleton, Address, Barrage, Signature, Drag, AnimatingNumbers, Card };
|