y-design-ssr 0.2.22 → 1.1.0
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/libs/cell/index.css +1 -1
- package/libs/cell/index.umd.js +1 -1
- package/libs/checkbox/index.mjs +1 -1
- package/libs/checkbox/index.umd.js +1 -1
- package/libs/checkboxGroup/index.mjs +2 -2
- package/libs/checkboxGroup/index.umd.js +1 -1
- package/libs/col/index.mjs +3 -3
- package/libs/col/index.umd.js +1 -1
- package/libs/context/relation/inject.d.ts +1 -1
- package/libs/context/relation/provide.d.ts +3 -3
- package/libs/{countdown → countDown}/index.umd.js +1 -1
- package/libs/{countdown → countDown}/package.json +1 -1
- package/libs/dialog/index.css +1 -1
- package/libs/dialog/index.mjs +321 -287
- package/libs/dialog/index.umd.js +2 -2
- package/libs/dropdown/index.css +1 -0
- package/libs/dropdown/index.d.ts +68 -0
- package/libs/dropdown/index.mjs +215 -0
- package/libs/dropdown/index.umd.js +2 -0
- package/libs/{pullrefresh → dropdown}/package.json +1 -1
- package/libs/dropdown/src/dropdown.d.ts +108 -0
- package/libs/dropdownItem/index.css +1 -0
- package/libs/dropdownItem/index.d.ts +50 -0
- package/libs/dropdownItem/index.mjs +645 -0
- package/libs/dropdownItem/index.umd.js +2 -0
- package/libs/dropdownItem/package.json +6 -0
- package/libs/dropdownItem/src/dropdown-item.d.ts +89 -0
- package/libs/form/index.mjs +3 -3
- package/libs/form/index.umd.js +1 -1
- package/libs/formItem/index.mjs +1 -1
- package/libs/formItem/index.umd.js +1 -1
- package/libs/index.css +1 -1
- package/libs/index.d.ts +5 -3
- package/libs/index.mjs +1919 -1608
- package/libs/index.umd.js +2 -2
- package/libs/layout/index.mjs +4 -4
- package/libs/layout/index.umd.js +1 -1
- package/libs/popup/index.css +1 -1
- package/libs/popup/index.d.ts +18 -0
- package/libs/popup/index.mjs +135 -101
- package/libs/popup/index.umd.js +2 -2
- package/libs/popup/src/popup.d.ts +18 -0
- package/libs/{pullrefresh → pullRefresh}/index.umd.js +1 -1
- package/libs/pullRefresh/package.json +6 -0
- package/libs/row/index.mjs +3 -3
- package/libs/row/index.umd.js +1 -1
- package/libs/swipe/index.mjs +3 -3
- package/libs/swipe/index.umd.js +1 -1
- package/libs/swipeItem/index.mjs +1 -1
- package/libs/swipeItem/index.umd.js +1 -1
- package/libs/tab/index.mjs +1 -1
- package/libs/tab/index.umd.js +1 -1
- package/libs/tabs/index.mjs +3 -3
- package/libs/tabs/index.umd.js +1 -1
- package/libs/utils/index.mjs +35 -34
- package/libs/utils/index.umd.js +1 -1
- package/libs/utils/types.d.ts +4 -0
- package/package.json +1 -1
- /package/libs/checkboxGroup/src/{checkboxGroup.d.ts → checkbox-group.d.ts} +0 -0
- /package/libs/{countdown → countDown}/index.css +0 -0
- /package/libs/{countdown → countDown}/index.d.ts +0 -0
- /package/libs/{countdown → countDown}/index.mjs +0 -0
- /package/libs/{countdown → countDown}/src/count-down.d.ts +0 -0
- /package/libs/formItem/src/{formItem.d.ts → form-item.d.ts} +0 -0
- /package/libs/{pullrefresh → pullRefresh}/index.css +0 -0
- /package/libs/{pullrefresh → pullRefresh}/index.d.ts +0 -0
- /package/libs/{pullrefresh → pullRefresh}/index.mjs +0 -0
- /package/libs/{pullrefresh/src/pullrefresh.d.ts → pullRefresh/src/pull-refresh.d.ts} +0 -0
- /package/libs/{pullrefresh → pullRefresh}/src/utils.d.ts +0 -0
- /package/libs/swipeItem/src/{swipeItem.d.ts → swipe-item.d.ts} +0 -0
package/libs/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import SwipeItem from './swipeItem';
|
|
|
9
9
|
import Checkbox from './checkbox';
|
|
10
10
|
import CheckboxGroup from './checkboxGroup';
|
|
11
11
|
import Switch from './switch';
|
|
12
|
-
import PullRefresh from './
|
|
12
|
+
import PullRefresh from './pullRefresh';
|
|
13
13
|
import Cell from './cell';
|
|
14
14
|
import Button from './button';
|
|
15
15
|
import Loading, { createLoading, loadingDirective } from './loading';
|
|
@@ -25,11 +25,13 @@ import Stepper from './stepper';
|
|
|
25
25
|
import Form from './form';
|
|
26
26
|
import FormItem from './formItem';
|
|
27
27
|
import Input from './input';
|
|
28
|
-
import CountDown from './
|
|
28
|
+
import CountDown from './countDown';
|
|
29
29
|
import Dialog, { createDialog } from './dialog';
|
|
30
30
|
import Tooltip, { tooltipDirective } from './tooltip';
|
|
31
31
|
import Pagination from './pagination';
|
|
32
|
+
import Dropdown from './dropdown';
|
|
33
|
+
import DropdownItem from './dropdownItem';
|
|
32
34
|
declare const _default: {
|
|
33
35
|
install: (app: App) => void;
|
|
34
36
|
};
|
|
35
|
-
export { _default as default, locale, empty, createLoading, loadingDirective as vLoading, tooltipDirective as vTooltip, Icon, Switch, PullRefresh, Checkbox, CheckboxGroup, Cell, Form, FormItem, Button, Input, Loading, Empty, Row, Col, Progress, Popup, Mask, Stepper, Dialog, CountDown, Tooltip, Slider, Tabs, Tab, List, Swipe, SwipeItem, Pagination, createToast, createDialog, };
|
|
37
|
+
export { _default as default, locale, empty, createLoading, loadingDirective as vLoading, tooltipDirective as vTooltip, Icon, Switch, PullRefresh, Checkbox, CheckboxGroup, Cell, Form, FormItem, Button, Input, Loading, Empty, Row, Col, Progress, Popup, Mask, Stepper, Dialog, CountDown, Tooltip, Slider, Tabs, Tab, List, Swipe, SwipeItem, Pagination, createToast, createDialog, Dropdown, DropdownItem, };
|