@rebilly/revel 8.15.0 → 8.16.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.
Files changed (41) hide show
  1. package/CHANGELOG.md +2 -2
  2. package/dist/components/r-alert/r-alert.vue.d.ts +2 -29
  3. package/dist/components/r-avatar/r-avatar.vue.d.ts +1 -10
  4. package/dist/components/r-badge/r-badge.vue.d.ts +8 -31
  5. package/dist/components/r-button/r-button.vue.d.ts +3 -46
  6. package/dist/components/r-button-group/r-button-group.vue.d.ts +2 -23
  7. package/dist/components/r-checkbox/r-checkbox.vue.d.ts +5 -40
  8. package/dist/components/r-date-input/r-calendar.vue.d.ts +5 -36
  9. package/dist/components/r-date-input/r-date-input.vue.d.ts +10 -69
  10. package/dist/components/r-date-input/r-date-range-button-group.vue.d.ts +6 -41
  11. package/dist/components/r-date-input/r-range-calendar.vue.d.ts +7 -38
  12. package/dist/components/r-field-group/r-field-group.vue.d.ts +1 -1
  13. package/dist/components/r-file-upload/r-file-upload.vue.d.ts +5 -30
  14. package/dist/components/r-flex/r-flex-item.vue.d.ts +2 -31
  15. package/dist/components/r-flex/r-flex.vue.d.ts +2 -37
  16. package/dist/components/r-grid/r-grid-cell.vue.d.ts +2 -31
  17. package/dist/components/r-grid/r-grid.vue.d.ts +2 -35
  18. package/dist/components/r-icon/r-icon.vue.d.ts +6 -29
  19. package/dist/components/r-img/r-img.vue.d.ts +6 -33
  20. package/dist/components/r-input/r-input.vue.d.ts +7 -78
  21. package/dist/components/r-loader/r-loader.vue.d.ts +2 -29
  22. package/dist/components/r-modal/r-modal.vue.d.ts +10 -43
  23. package/dist/components/r-month-picker/r-month-picker.vue.d.ts +8 -41
  24. package/dist/components/r-pagination/r-pagination.vue.d.ts +4 -27
  25. package/dist/components/r-pagination-control/r-pagination-control.vue.d.ts +1 -1
  26. package/dist/components/r-popper/r-popper.vue.d.ts +5 -52
  27. package/dist/components/r-radio/r-radio.vue.d.ts +5 -38
  28. package/dist/components/r-repeater/r-repeater.vue.d.ts +2 -27
  29. package/dist/components/r-select/r-select.vue.d.ts +121 -9
  30. package/dist/components/r-tabs/r-tab.vue.d.ts +7 -7
  31. package/dist/components/r-tabs/r-tabs.vue.d.ts +21 -6842
  32. package/dist/components/r-tabs/types.d.ts +1 -1
  33. package/dist/components/r-tile/r-tile.vue.d.ts +1 -1
  34. package/dist/components/r-toast/r-toast.vue.d.ts +5 -40
  35. package/dist/components/r-toggle/r-toggle.vue.d.ts +5 -32
  36. package/dist/composables/use-validate.d.ts +1 -1
  37. package/dist/playground/Playground-copyme.vue.d.ts +1 -1
  38. package/dist/revel.mjs +6019 -6189
  39. package/dist/revel.umd.js +120 -121
  40. package/dist/style.css +1 -1
  41. package/package.json +3 -3
@@ -33,41 +33,18 @@ declare var __VLS_1: {
33
33
  type __VLS_Slots = {} & {
34
34
  pagination?: (props: typeof __VLS_1) => any;
35
35
  };
36
- declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
37
- totalVisible: number;
38
- modelValue: number;
39
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
36
+ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
40
37
  "update:modelValue": (...args: any[]) => void;
41
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
42
- totalVisible: number;
43
- modelValue: number;
44
- }>>> & {
38
+ }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
45
39
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
46
- }, {
40
+ }>, {
47
41
  modelValue: number;
48
42
  totalVisible: number;
49
- }>;
43
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
50
44
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
51
45
  export default _default;
52
- type __VLS_WithDefaults<P, D> = {
53
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
54
- default: D[K];
55
- }> : P[K];
56
- };
57
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
58
- type __VLS_TypePropsToOption<T> = {
59
- [K in keyof T]-?: {} extends Pick<T, K> ? {
60
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
61
- } : {
62
- type: import('vue').PropType<T[K]>;
63
- required: true;
64
- };
65
- };
66
46
  type __VLS_WithSlots<T, S> = T & {
67
47
  new (): {
68
48
  $slots: S;
69
49
  };
70
50
  };
71
- type __VLS_PrettifyLocal<T> = {
72
- [K in keyof T]: T[K];
73
- } & {};
@@ -15,7 +15,7 @@ declare var __VLS_1: {
15
15
  type __VLS_Slots = {} & {
16
16
  override?: (props: typeof __VLS_1) => any;
17
17
  };
18
- declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
18
+ declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
19
19
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
20
20
  export default _default;
21
21
  type __VLS_WithSlots<T, S> = T & {
@@ -88,22 +88,7 @@ type __VLS_Slots = {} & {
88
88
  } & {
89
89
  content?: (props: typeof __VLS_7) => any;
90
90
  };
91
- declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
92
- state: null;
93
- escToHide: boolean;
94
- autoHide: boolean;
95
- globalAutoHide: boolean;
96
- closeFunction: null;
97
- openOnMount: boolean;
98
- disabled: boolean;
99
- fluid: boolean;
100
- offset: number;
101
- margin: () => number[];
102
- direction: string;
103
- position: string;
104
- slideFrom: string;
105
- duration: number;
106
- }>, {
91
+ declare const __VLS_component: import("vue").DefineComponent<Props, {
107
92
  popper: import("vue").ComputedRef<{
108
93
  isVisible: boolean;
109
94
  open: typeof openPopper;
@@ -111,32 +96,17 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
111
96
  toggle: typeof togglePopper;
112
97
  }>;
113
98
  openPopper: typeof openPopper;
114
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
99
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
115
100
  toggle: (...args: any[]) => void;
116
101
  setActivePopper: (...args: any[]) => void;
117
102
  "toggle-on": (...args: any[]) => void;
118
103
  "toggle-off": (...args: any[]) => void;
119
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
120
- state: null;
121
- escToHide: boolean;
122
- autoHide: boolean;
123
- globalAutoHide: boolean;
124
- closeFunction: null;
125
- openOnMount: boolean;
126
- disabled: boolean;
127
- fluid: boolean;
128
- offset: number;
129
- margin: () => number[];
130
- direction: string;
131
- position: string;
132
- slideFrom: string;
133
- duration: number;
134
- }>>> & {
104
+ }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
135
105
  onToggle?: ((...args: any[]) => any) | undefined;
136
106
  onSetActivePopper?: ((...args: any[]) => any) | undefined;
137
107
  "onToggle-on"?: ((...args: any[]) => any) | undefined;
138
108
  "onToggle-off"?: ((...args: any[]) => any) | undefined;
139
- }, {
109
+ }>, {
140
110
  disabled: boolean;
141
111
  fluid: boolean;
142
112
  autoHide: boolean;
@@ -151,28 +121,11 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
151
121
  openOnMount: boolean;
152
122
  margin: MarginsOffset;
153
123
  slideFrom: SlideFrom;
154
- }>;
124
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
155
125
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
156
126
  export default _default;
157
- type __VLS_WithDefaults<P, D> = {
158
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
159
- default: D[K];
160
- }> : P[K];
161
- };
162
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
163
- type __VLS_TypePropsToOption<T> = {
164
- [K in keyof T]-?: {} extends Pick<T, K> ? {
165
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
166
- } : {
167
- type: import('vue').PropType<T[K]>;
168
- required: true;
169
- };
170
- };
171
127
  type __VLS_WithSlots<T, S> = T & {
172
128
  new (): {
173
129
  $slots: S;
174
130
  };
175
131
  };
176
- type __VLS_PrettifyLocal<T> = {
177
- [K in keyof T]: T[K];
178
- } & {};
@@ -38,27 +38,11 @@ declare var __VLS_1: {};
38
38
  type __VLS_Slots = {} & {
39
39
  label?: (props: typeof __VLS_1) => any;
40
40
  };
41
- declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
42
- label: string;
43
- id: () => string;
44
- name: () => string;
45
- caption: string;
46
- disabled: boolean;
47
- validate: null;
48
- modelValue: null;
49
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
50
- "update:modelValue": (value: Value) => void;
51
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
52
- label: string;
53
- id: () => string;
54
- name: () => string;
55
- caption: string;
56
- disabled: boolean;
57
- validate: null;
58
- modelValue: null;
59
- }>>> & {
41
+ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
42
+ "update:modelValue": (value: Value) => any;
43
+ }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
60
44
  "onUpdate:modelValue"?: ((value: Value) => any) | undefined;
61
- }, {
45
+ }>, {
62
46
  id: string;
63
47
  caption: string;
64
48
  label: string;
@@ -66,28 +50,11 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
66
50
  modelValue: Nullable<Value>;
67
51
  validate: Nullable<ValidationState>;
68
52
  name: string;
69
- }>;
53
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
70
54
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
71
55
  export default _default;
72
- type __VLS_WithDefaults<P, D> = {
73
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
74
- default: D[K];
75
- }> : P[K];
76
- };
77
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
78
- type __VLS_TypePropsToOption<T> = {
79
- [K in keyof T]-?: {} extends Pick<T, K> ? {
80
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
81
- } : {
82
- type: import('vue').PropType<T[K]>;
83
- required: true;
84
- };
85
- };
86
56
  type __VLS_WithSlots<T, S> = T & {
87
57
  new (): {
88
58
  $slots: S;
89
59
  };
90
60
  };
91
- type __VLS_PrettifyLocal<T> = {
92
- [K in keyof T]: T[K];
93
- } & {};
@@ -34,40 +34,15 @@ type __VLS_Slots = {} & {
34
34
  } & {
35
35
  empty?: (props: typeof __VLS_12) => any;
36
36
  };
37
- declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
38
- isLoaderFullscreen: boolean;
39
- isLoaderSpinner: boolean;
40
- watcher: () => {};
41
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
42
- isLoaderFullscreen: boolean;
43
- isLoaderSpinner: boolean;
44
- watcher: () => {};
45
- }>>>, {
37
+ declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
46
38
  isLoaderFullscreen: boolean;
47
39
  isLoaderSpinner: boolean;
48
40
  watcher: object;
49
- }>;
41
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
50
42
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
51
43
  export default _default;
52
- type __VLS_WithDefaults<P, D> = {
53
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
54
- default: D[K];
55
- }> : P[K];
56
- };
57
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
58
- type __VLS_TypePropsToOption<T> = {
59
- [K in keyof T]-?: {} extends Pick<T, K> ? {
60
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
61
- } : {
62
- type: import('vue').PropType<T[K]>;
63
- required: true;
64
- };
65
- };
66
44
  type __VLS_WithSlots<T, S> = T & {
67
45
  new (): {
68
46
  $slots: S;
69
47
  };
70
48
  };
71
- type __VLS_PrettifyLocal<T> = {
72
- [K in keyof T]: T[K];
73
- } & {};
@@ -23,7 +23,7 @@ interface State {
23
23
  }
24
24
  type CustomlabelFn = (option: OptionItem, label: string) => boolean;
25
25
  type TagValidatorFn = (option: ComplexOptionItem) => boolean;
26
- declare const _default: import("vue").DefineComponent<{
26
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
27
27
  /**
28
28
  * Specify if no option can be selected
29
29
  */
@@ -320,10 +320,10 @@ declare const _default: import("vue").DefineComponent<{
320
320
  type: StringConstructor;
321
321
  default: string;
322
322
  };
323
- }, {
324
- searchElement: import("vue").Ref<HTMLInputElement | null>;
325
- tagsElement: import("vue").Ref<HTMLDivElement | null>;
326
- listElement: import("vue").Ref<HTMLDivElement | null>;
323
+ }>, {
324
+ searchElement: import("vue").Ref<HTMLInputElement | null, HTMLInputElement | null>;
325
+ tagsElement: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
326
+ listElement: import("vue").Ref<HTMLDivElement | null, HTMLDivElement | null>;
327
327
  validateErrorMessages: import("vue").ComputedRef<string[]>;
328
328
  isInvalid: import("vue").ComputedRef<boolean>;
329
329
  }, State, {
@@ -403,7 +403,7 @@ declare const _default: import("vue").DefineComponent<{
403
403
  handleAsyncLoadPrev(): Promise<void>;
404
404
  handleAsyncLoadMore(count: number): Promise<void>;
405
405
  handleAsyncLoadByQuery({ limit, offset }: Partial<Query>): Promise<void>;
406
- }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "tag" | "select" | "open" | "update:modelValue" | "async-loaded" | "search-change" | "remove")[], "close" | "tag" | "select" | "open" | "update:modelValue" | "async-loaded" | "search-change" | "remove", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
406
+ }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "tag" | "select" | "open" | "update:modelValue" | "async-loaded" | "search-change" | "remove")[], "close" | "tag" | "select" | "open" | "update:modelValue" | "async-loaded" | "search-change" | "remove", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
407
407
  /**
408
408
  * Specify if no option can be selected
409
409
  */
@@ -700,7 +700,7 @@ declare const _default: import("vue").DefineComponent<{
700
700
  type: StringConstructor;
701
701
  default: string;
702
702
  };
703
- }>> & {
703
+ }>> & Readonly<{
704
704
  onSelect?: ((...args: any[]) => any) | undefined;
705
705
  onClose?: ((...args: any[]) => any) | undefined;
706
706
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
@@ -709,7 +709,7 @@ declare const _default: import("vue").DefineComponent<{
709
709
  "onAsync-loaded"?: ((...args: any[]) => any) | undefined;
710
710
  "onSearch-change"?: ((...args: any[]) => any) | undefined;
711
711
  onRemove?: ((...args: any[]) => any) | undefined;
712
- }, {
712
+ }>, {
713
713
  loading: boolean;
714
714
  id: string;
715
715
  label: string;
@@ -754,5 +754,117 @@ declare const _default: import("vue").DefineComponent<{
754
754
  tagValidator: TagValidatorFn;
755
755
  asyncConfig: Config;
756
756
  asyncValuePropsKey: string;
757
- }>;
757
+ }, {}, {
758
+ RIcon: import("vue").DefineComponent<import("../r-icon/r-icon.vue").Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
759
+ click: () => any;
760
+ }, string, import("vue").PublicProps, Readonly<import("../r-icon/r-icon.vue").Props> & Readonly<{
761
+ onClick?: (() => any) | undefined;
762
+ }>, {
763
+ color: import("../r-icon/r-icon-sprites.ts").IconColor;
764
+ stopPropagation: boolean;
765
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
766
+ RButton: {
767
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("../r-button/r-button.vue").Props> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
768
+ loading: boolean;
769
+ link: boolean;
770
+ icon: import("../r-icon/r-icon-sprites.ts").IconNames;
771
+ type: "default" | "primary" | "danger" | "positive" | "plain" | "unstyled" | "link";
772
+ size: "small" | "regular" | "large";
773
+ href: string;
774
+ disabled: boolean;
775
+ active: boolean;
776
+ fluid: boolean;
777
+ capitalizeFirstLetter: boolean;
778
+ iconLeft: import("../r-icon/r-icon-sprites.ts").IconNames;
779
+ iconRight: import("../r-icon/r-icon-sprites.ts").IconNames;
780
+ }, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
781
+ P: {};
782
+ B: {};
783
+ D: {};
784
+ C: {};
785
+ M: {};
786
+ Defaults: {};
787
+ }, Readonly<import("../r-button/r-button.vue").Props> & Readonly<{}>, {}, {}, {}, {}, {
788
+ loading: boolean;
789
+ link: boolean;
790
+ icon: import("../r-icon/r-icon-sprites.ts").IconNames;
791
+ type: "default" | "primary" | "danger" | "positive" | "plain" | "unstyled" | "link";
792
+ size: "small" | "regular" | "large";
793
+ href: string;
794
+ disabled: boolean;
795
+ active: boolean;
796
+ fluid: boolean;
797
+ capitalizeFirstLetter: boolean;
798
+ iconLeft: import("../r-icon/r-icon-sprites.ts").IconNames;
799
+ iconRight: import("../r-icon/r-icon-sprites.ts").IconNames;
800
+ }>;
801
+ __isFragment?: never;
802
+ __isTeleport?: never;
803
+ __isSuspense?: never;
804
+ } & import("vue").ComponentOptionsBase<Readonly<import("../r-button/r-button.vue").Props> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
805
+ loading: boolean;
806
+ link: boolean;
807
+ icon: import("../r-icon/r-icon-sprites.ts").IconNames;
808
+ type: "default" | "primary" | "danger" | "positive" | "plain" | "unstyled" | "link";
809
+ size: "small" | "regular" | "large";
810
+ href: string;
811
+ disabled: boolean;
812
+ active: boolean;
813
+ fluid: boolean;
814
+ capitalizeFirstLetter: boolean;
815
+ iconLeft: import("../r-icon/r-icon-sprites.ts").IconNames;
816
+ iconRight: import("../r-icon/r-icon-sprites.ts").IconNames;
817
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
818
+ $slots: {
819
+ default?: (props: {}) => any;
820
+ } & {
821
+ default?: (props: {}) => any;
822
+ } & {
823
+ default?: (props: {}) => any;
824
+ } & {
825
+ default?: (props: {}) => any;
826
+ };
827
+ });
828
+ RBadge: {
829
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("../r-badge/r-badge.vue").Props> & Readonly<{
830
+ onClose?: (() => any) | undefined;
831
+ onClick?: (() => any) | undefined;
832
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
833
+ close: () => any;
834
+ click: () => any;
835
+ }, import("vue").PublicProps, {
836
+ close: boolean;
837
+ type: string;
838
+ }, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
839
+ P: {};
840
+ B: {};
841
+ D: {};
842
+ C: {};
843
+ M: {};
844
+ Defaults: {};
845
+ }, Readonly<import("../r-badge/r-badge.vue").Props> & Readonly<{
846
+ onClose?: (() => any) | undefined;
847
+ onClick?: (() => any) | undefined;
848
+ }>, {}, {}, {}, {}, {
849
+ close: boolean;
850
+ type: string;
851
+ }>;
852
+ __isFragment?: never;
853
+ __isTeleport?: never;
854
+ __isSuspense?: never;
855
+ } & import("vue").ComponentOptionsBase<Readonly<import("../r-badge/r-badge.vue").Props> & Readonly<{
856
+ onClose?: (() => any) | undefined;
857
+ onClick?: (() => any) | undefined;
858
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
859
+ close: () => any;
860
+ click: () => any;
861
+ }, string, {
862
+ close: boolean;
863
+ type: string;
864
+ }, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
865
+ $slots: {
866
+ default?: (props: {}) => any;
867
+ };
868
+ });
869
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
758
870
  export default _default;
@@ -1,7 +1,7 @@
1
1
  import { type PropType, type Ref } from 'vue';
2
2
  import type { RouteLocation } from 'vue-router';
3
3
  import type { Tab } from './types';
4
- declare const _default: import("vue").DefineComponent<{
4
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
5
5
  name: {
6
6
  required: true;
7
7
  type: StringConstructor;
@@ -27,13 +27,13 @@ declare const _default: import("vue").DefineComponent<{
27
27
  type: BooleanConstructor;
28
28
  default: boolean;
29
29
  };
30
- }, {
30
+ }>, {
31
31
  shouldShowThisTab: import("vue").ComputedRef<boolean | undefined>;
32
32
  tabPanelId: import("vue").ComputedRef<string>;
33
33
  tabId: import("vue").ComputedRef<string>;
34
34
  addItemToTabsList: () => void;
35
- visibleTabs: Ref<Tab[]> | undefined;
36
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
35
+ visibleTabs: Ref<Tab[], Tab[]> | undefined;
36
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
37
37
  name: {
38
38
  required: true;
39
39
  type: StringConstructor;
@@ -59,11 +59,11 @@ declare const _default: import("vue").DefineComponent<{
59
59
  type: BooleanConstructor;
60
60
  default: boolean;
61
61
  };
62
- }>>, {
62
+ }>> & Readonly<{}>, {
63
63
  active: boolean;
64
64
  value: string;
65
65
  hidden: boolean;
66
66
  panelId: string;
67
- to: Optional<Ref<import("vue-router").RouteLocationGeneric>>;
68
- }>;
67
+ to: Optional<Ref<import("vue-router").RouteLocationGeneric, import("vue-router").RouteLocationGeneric>>;
68
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
69
69
  export default _default;