@zyzgroup/core-vue 0.0.17 → 0.0.19
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/ce/style.css +1 -1
- package/ce/yz_custom_element.iife.js +110 -89
- package/ce/yz_custom_element.iife.js.map +1 -1
- package/ce/yz_custom_element.js +12337 -10693
- package/ce/yz_custom_element.js.map +1 -1
- package/ce/yz_custom_element.umd.cjs +110 -89
- package/ce/yz_custom_element.umd.cjs.map +1 -1
- package/dist/style.css +1 -1
- package/dist/zyzgroup_core_vue.iife.js +50 -35
- package/dist/zyzgroup_core_vue.iife.js.map +1 -1
- package/dist/zyzgroup_core_vue.js +12490 -10977
- package/dist/zyzgroup_core_vue.js.map +1 -1
- package/dist/zyzgroup_core_vue.umd.cjs +50 -35
- package/dist/zyzgroup_core_vue.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/types/components/Button.ce.vue.d.ts +3 -1
- package/types/components/Button.vue.d.ts +3 -1
- package/types/components/Canvas.ce.vue.d.ts +1 -3
- package/types/components/Canvas.vue.d.ts +1 -3
- package/types/components/CheckboxGroup.ce.vue.d.ts +21 -6
- package/types/components/CheckboxGroup.vue.d.ts +21 -6
- package/types/components/InputRange.ce.vue.d.ts +58 -0
- package/types/components/InputRange.vue.d.ts +58 -0
- package/types/components/MouseOver.ce.vue.d.ts +3 -3
- package/types/components/MouseOver.vue.d.ts +3 -3
- package/types/components/RadioGroup.ce.vue.d.ts +24 -9
- package/types/components/RadioGroup.vue.d.ts +24 -9
- package/types/components/SVGAndCanvas.ce.vue.d.ts +34 -1
- package/types/components/SVGAndCanvas.vue.d.ts +34 -1
- package/types/components/loading/Loading11.ce.vue.d.ts +34 -0
- package/types/components/loading/Loading11.vue.d.ts +34 -0
- package/types/lib.d.ts +3 -4
package/types/lib.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import Switch from "./components/Switch.vue";
|
|
|
6
6
|
import RadioGroup from "./components/RadioGroup.vue";
|
|
7
7
|
import CheckboxGroup from "./components/CheckboxGroup.vue";
|
|
8
8
|
import Input from "./components/Input.vue";
|
|
9
|
+
import InputRange from "./components/InputRange.vue";
|
|
9
10
|
import SlideLeftItem from "./components/SlideLeftItem.vue";
|
|
10
11
|
import MouseOver from "./components/MouseOver.vue";
|
|
11
12
|
import Accordion from "./components/Accordion.vue";
|
|
@@ -36,9 +37,6 @@ import EaseGraphDisplay from "./components/EaseGraphDisplay.vue";
|
|
|
36
37
|
import EaseGroupGraphDisplay from "./components/EaseGroupGraphDisplay.vue";
|
|
37
38
|
import InterpolationGraphDisplay from "./components/InterpolationGraphDisplay.vue";
|
|
38
39
|
import InterpolationGroupGraphDisplay from "./components/InterpolationGroupGraphDisplay.vue";
|
|
39
|
-
import TweenCSS from "./components/TweenCSS.vue";
|
|
40
|
-
import CanvasSport from "./components/CanvasSport.vue";
|
|
41
|
-
import CanvasShape from "./components/CanvasShape.vue";
|
|
42
40
|
import SVGAndCanvas from "./components/SVGAndCanvas.vue";
|
|
43
41
|
import SVGCheck from "./components/svg/SVGCheck.vue";
|
|
44
42
|
import SVGDelete from "./components/svg/SVGDelete.vue";
|
|
@@ -54,4 +52,5 @@ import Loading7 from "./components/loading/Loading7.vue";
|
|
|
54
52
|
import Loading8 from "./components/loading/Loading8.vue";
|
|
55
53
|
import Loading9 from "./components/loading/Loading9.vue";
|
|
56
54
|
import Loading10 from "./components/loading/Loading10.vue";
|
|
57
|
-
|
|
55
|
+
import Loading11 from "./components/loading/Loading11.vue";
|
|
56
|
+
export { Icon, Button, LayoutMobile, LayoutCenter, Loading1, Loading2, Loading3, Loading4, Loading5, Loading6, Loading7, Loading8, Loading9, Loading10, Loading11, Overlay, Pop, Dialog, DialogLoading, DialogToast, Select, SelectAbsolute, Switch, RadioGroup, CheckboxGroup, Popover, ColorPicker, ResizeObserver, MapTianditu, SVGCheck, PlateMobile, SVGCleanUp, PlateKeyboard, SVGDelete, SlideLeftItem, PlateDisplay, Tab, Tabs, FPSStats, EaseGraphDisplay, EaseGroupGraphDisplay, InterpolationGraphDisplay, InterpolationGroupGraphDisplay, HandWritePanel, ProgressBar, PageVerticalScrollProgressBar, Video, Input, InputRange, Accordion, SVGAndCanvas, Image, ImageView, MouseOver, SVGDown };
|