@wizleap-inc/wiz-ui-next 0.7.0 → 0.7.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/dist/components/base/dropdown/dropdown.vue.d.ts +1 -0
- package/dist/components/base/inputs/datepicker/date-picker.vue.d.ts +1 -0
- package/dist/components/base/inputs/search/search.vue.d.ts +1 -0
- package/dist/components/base/inputs/selectbox/selectbox.vue.d.ts +1 -0
- package/dist/components/base/inputs/timepicker/time-picker.vue.d.ts +1 -0
- package/dist/components/base/popup/popup.vue.d.ts +1 -0
- package/dist/components/custom/chat/card/chat-card.vue.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/wiz-ui.es.js +2008 -2008
- package/dist/wiz-ui.umd.js +10 -10
- package/package.json +1 -1
|
@@ -77,6 +77,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
77
77
|
};
|
|
78
78
|
updateBodyPxInfo: () => void;
|
|
79
79
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
80
|
+
observer: ResizeObserver;
|
|
80
81
|
popupRect: import("vue").ComputedRef<{
|
|
81
82
|
width: number;
|
|
82
83
|
height: number;
|
|
@@ -847,6 +847,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
847
847
|
};
|
|
848
848
|
updateBodyPxInfo: () => void;
|
|
849
849
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
850
|
+
observer: ResizeObserver;
|
|
850
851
|
popupRect: import("vue").ComputedRef<{
|
|
851
852
|
width: number;
|
|
852
853
|
height: number;
|
|
@@ -677,6 +677,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
677
677
|
};
|
|
678
678
|
updateBodyPxInfo: () => void;
|
|
679
679
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
680
|
+
observer: ResizeObserver;
|
|
680
681
|
popupRect: import("vue").ComputedRef<{
|
|
681
682
|
width: number;
|
|
682
683
|
height: number;
|
|
@@ -149,6 +149,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
149
149
|
};
|
|
150
150
|
updateBodyPxInfo: () => void;
|
|
151
151
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
152
|
+
observer: ResizeObserver;
|
|
152
153
|
popupRect: import("vue").ComputedRef<{
|
|
153
154
|
width: number;
|
|
154
155
|
height: number;
|
|
@@ -1125,6 +1125,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1125
1125
|
};
|
|
1126
1126
|
updateBodyPxInfo: () => void;
|
|
1127
1127
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1128
|
+
observer: ResizeObserver;
|
|
1128
1129
|
popupRect: import("vue").ComputedRef<{
|
|
1129
1130
|
width: number;
|
|
1130
1131
|
height: number;
|
|
@@ -60,6 +60,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
60
60
|
};
|
|
61
61
|
updateBodyPxInfo: () => void;
|
|
62
62
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
63
|
+
observer: ResizeObserver;
|
|
63
64
|
popupRect: import("vue").ComputedRef<{
|
|
64
65
|
width: number;
|
|
65
66
|
height: number;
|
|
@@ -6191,6 +6191,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
6191
6191
|
};
|
|
6192
6192
|
updateBodyPxInfo: () => void;
|
|
6193
6193
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
6194
|
+
observer: ResizeObserver;
|
|
6194
6195
|
popupRect: import("vue").ComputedRef<{
|
|
6195
6196
|
width: number;
|
|
6196
6197
|
height: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import type { App } from "vue";
|
|
|
2
2
|
export * from "./components";
|
|
3
3
|
export * from "@wizleap-inc/wiz-ui-constants";
|
|
4
4
|
export declare const install: (app: App) => void;
|
|
5
|
-
export declare const version = "0.7.
|
|
5
|
+
export declare const version = "0.7.1";
|
|
6
6
|
declare const _default: {
|
|
7
7
|
install: (app: App<any>) => void;
|
|
8
8
|
version: string;
|