@wizleap-inc/wiz-ui-next 0.4.1 → 0.4.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.
@@ -97,7 +97,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
97
97
  type: NumberConstructor;
98
98
  required: false;
99
99
  };
100
- scroll: {
100
+ snapScroll: {
101
101
  type: PropType<"none" | "x" | "y" | "block" | "inline" | "both">;
102
102
  required: false;
103
103
  };
@@ -201,7 +201,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
201
201
  type: NumberConstructor;
202
202
  required: false;
203
203
  };
204
- scroll: {
204
+ snapScroll: {
205
205
  type: PropType<"none" | "x" | "y" | "block" | "inline" | "both">;
206
206
  required: false;
207
207
  };
@@ -7,3 +7,4 @@ export * from "./toggle-switch";
7
7
  export * from "./panel-switch";
8
8
  export * from "./timepicker";
9
9
  export * from "./datepicker";
10
+ export * from "./upload";
@@ -0,0 +1,2 @@
1
+ export { default as WizUpload } from "./upload.vue";
2
+ export { default as WizUploadDisplay } from "./upload-display.vue";