@wizleap-inc/wiz-ui-next 0.7.1 → 0.7.3

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.
Files changed (27) hide show
  1. package/dist/components/base/dropdown/dropdown.vue.d.ts +6 -0
  2. package/dist/components/base/index.d.ts +1 -0
  3. package/dist/components/base/inputs/datepicker/date-picker.vue.d.ts +6 -0
  4. package/dist/components/base/inputs/index.d.ts +1 -0
  5. package/dist/components/base/inputs/search/search.vue.d.ts +6 -0
  6. package/dist/components/base/inputs/search-selector/index.d.ts +1 -0
  7. package/dist/components/base/inputs/search-selector/levenshtein-distance.d.ts +1 -0
  8. package/dist/components/base/inputs/search-selector/search-selector.vue.d.ts +1273 -0
  9. package/dist/components/base/inputs/search-selector/types.d.ts +5 -0
  10. package/dist/components/base/inputs/selectbox/selectbox.vue.d.ts +6 -0
  11. package/dist/components/base/inputs/timepicker/time-picker.vue.d.ts +6 -0
  12. package/dist/components/base/popup/popup-container.vue.d.ts +1 -0
  13. package/dist/components/base/popup/popup.vue.d.ts +5 -0
  14. package/dist/components/base/snackbar/index.d.ts +1 -0
  15. package/dist/components/base/snackbar/snackbar-controller.vue.d.ts +253 -0
  16. package/dist/components/base/snackbar/snackbar.vue.d.ts +233 -0
  17. package/dist/components/base/snackbar/types.d.ts +5 -0
  18. package/dist/components/custom/chat/card/chat-card.vue.d.ts +6 -0
  19. package/dist/components/icons/add-circle.vue.d.ts +2 -0
  20. package/dist/components/icons/index.d.ts +3 -2
  21. package/dist/hooks/use-scroll.d.ts +1 -0
  22. package/dist/hooks/use-snackbar.d.ts +1 -0
  23. package/dist/index.d.ts +2 -1
  24. package/dist/style.css +1 -1
  25. package/dist/wiz-ui.es.js +2779 -2385
  26. package/dist/wiz-ui.umd.js +10 -10
  27. package/package.json +1 -1
@@ -47,6 +47,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
47
47
  props: any;
48
48
  emit: (event: "onClose", isOpen: boolean) => void;
49
49
  popupRef: import("vue").Ref<HTMLElement | undefined>;
50
+ popupSize: {
51
+ width: number;
52
+ height: number;
53
+ };
50
54
  injected: {
51
55
  initialPxInfo: {
52
56
  top: number;
@@ -97,6 +101,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
97
101
  inset: import("vue").ComputedRef<string>;
98
102
  popupTranslate: import("vue").ComputedRef<string>;
99
103
  readonly popupStyle: string;
104
+ readonly popupHiddenStyle: string;
100
105
  readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
101
106
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClose"[], "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
102
107
  isOpen: {
@@ -158,6 +163,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
158
163
  updateBodyPxInfo: () => void;
159
164
  containerRef: import("vue").Ref<HTMLElement | undefined>;
160
165
  };
166
+ updateBodyPxInfo: () => void;
161
167
  readonly popupContainerStyle: Record<"default" | "expanded", string>;
162
168
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
163
169
  expand: {
@@ -27,3 +27,4 @@ export * from "./text";
27
27
  export * from "./textarea";
28
28
  export * from "./tooltip";
29
29
  export * from "./graphs";
30
+ export * from "./snackbar";
@@ -817,6 +817,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
817
817
  props: any;
818
818
  emit: (event: "onClose", isOpen: boolean) => void;
819
819
  popupRef: import("vue").Ref<HTMLElement | undefined>;
820
+ popupSize: {
821
+ width: number;
822
+ height: number;
823
+ };
820
824
  injected: {
821
825
  initialPxInfo: {
822
826
  top: number;
@@ -867,6 +871,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
867
871
  inset: import("vue").ComputedRef<string>;
868
872
  popupTranslate: import("vue").ComputedRef<string>;
869
873
  readonly popupStyle: string;
874
+ readonly popupHiddenStyle: string;
870
875
  readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
871
876
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClose"[], "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
872
877
  isOpen: {
@@ -928,6 +933,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
928
933
  updateBodyPxInfo: () => void;
929
934
  containerRef: import("vue").Ref<HTMLElement | undefined>;
930
935
  };
936
+ updateBodyPxInfo: () => void;
931
937
  readonly popupContainerStyle: Record<"default" | "expanded", string>;
932
938
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
933
939
  expand: {
@@ -1,6 +1,7 @@
1
1
  export * from "./text";
2
2
  export * from "./checkbox";
3
3
  export * from "./password";
4
+ export * from "./search-selector";
4
5
  export * from "./selectbox";
5
6
  export * from "./radio";
6
7
  export * from "./toggle-switch";
@@ -609,6 +609,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
609
609
  updateBodyPxInfo: () => void;
610
610
  containerRef: import("vue").Ref<HTMLElement | undefined>;
611
611
  };
612
+ updateBodyPxInfo: () => void;
612
613
  readonly popupContainerStyle: Record<"default" | "expanded", string>;
613
614
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
614
615
  expand: {
@@ -647,6 +648,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
647
648
  props: any;
648
649
  emit: (event: "onClose", isOpen: boolean) => void;
649
650
  popupRef: import("vue").Ref<HTMLElement | undefined>;
651
+ popupSize: {
652
+ width: number;
653
+ height: number;
654
+ };
650
655
  injected: {
651
656
  initialPxInfo: {
652
657
  top: number;
@@ -697,6 +702,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
697
702
  inset: import("vue").ComputedRef<string>;
698
703
  popupTranslate: import("vue").ComputedRef<string>;
699
704
  readonly popupStyle: string;
705
+ readonly popupHiddenStyle: string;
700
706
  readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
701
707
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClose"[], "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
702
708
  isOpen: {
@@ -0,0 +1 @@
1
+ export { default as WizSearchSelector } from "./search-selector.vue";
@@ -0,0 +1 @@
1
+ export declare const levenshteinDistance: (s1: string, s2: string) => number;