voiptime-components 1.21.0 → 1.21.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.
package/dist/index.d.ts CHANGED
@@ -125,6 +125,23 @@ declare const __VLS_component_16: DefineComponent<VInfoBoxProps, {}, {}, {}, {},
125
125
  showIcon: boolean;
126
126
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
127
127
 
128
+ declare const __VLS_component_17: DefineComponent<VBreadcrumbProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<VBreadcrumbProps> & Readonly<{}>, {
129
+ separator: string;
130
+ ariaLabel: string;
131
+ goBack: boolean;
132
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
133
+
134
+ declare const __VLS_component_18: DefineComponent<VBreadcrumbItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
135
+ click: (event: MouseEvent) => any;
136
+ }, string, PublicProps, Readonly<VBreadcrumbItemProps> & Readonly<{
137
+ onClick?: ((event: MouseEvent) => any) | undefined;
138
+ }>, {
139
+ disabled: boolean;
140
+ active: boolean;
141
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
142
+ itemRef: HTMLLIElement;
143
+ }, HTMLLIElement>;
144
+
128
145
  declare const __VLS_component_2: DefineComponent<VModalProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
129
146
  close: () => any;
130
147
  "update:modelValue": (value: boolean) => any;
@@ -575,6 +592,26 @@ declare function __VLS_template_16(): {
575
592
  rootEl: HTMLDivElement;
576
593
  };
577
594
 
595
+ declare function __VLS_template_17(): {
596
+ attrs: Partial<{}>;
597
+ slots: {
598
+ default?(_: {}): any;
599
+ };
600
+ refs: {};
601
+ rootEl: HTMLElement;
602
+ };
603
+
604
+ declare function __VLS_template_18(): {
605
+ attrs: Partial<{}>;
606
+ slots: {
607
+ default?(_: {}): any;
608
+ };
609
+ refs: {
610
+ itemRef: HTMLLIElement;
611
+ };
612
+ rootEl: HTMLLIElement;
613
+ };
614
+
578
615
  declare function __VLS_template_2(): {
579
616
  attrs: Partial<{}>;
580
617
  slots: {
@@ -775,6 +812,10 @@ declare type __VLS_TemplateResult_15 = ReturnType<typeof __VLS_template_15>;
775
812
 
776
813
  declare type __VLS_TemplateResult_16 = ReturnType<typeof __VLS_template_16>;
777
814
 
815
+ declare type __VLS_TemplateResult_17 = ReturnType<typeof __VLS_template_17>;
816
+
817
+ declare type __VLS_TemplateResult_18 = ReturnType<typeof __VLS_template_18>;
818
+
778
819
  declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
779
820
 
780
821
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
@@ -839,6 +880,18 @@ declare type __VLS_WithTemplateSlots_16<T, S> = T & {
839
880
  };
840
881
  };
841
882
 
883
+ declare type __VLS_WithTemplateSlots_17<T, S> = T & {
884
+ new (): {
885
+ $slots: S;
886
+ };
887
+ };
888
+
889
+ declare type __VLS_WithTemplateSlots_18<T, S> = T & {
890
+ new (): {
891
+ $slots: S;
892
+ };
893
+ };
894
+
842
895
  declare type __VLS_WithTemplateSlots_2<T, S> = T & {
843
896
  new (): {
844
897
  $slots: S;
@@ -1600,6 +1653,29 @@ export declare interface VAuthentificationProps {
1600
1653
  forgotPasswordUrl?: string;
1601
1654
  }
1602
1655
 
1656
+ export declare const VBreadcrumb: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
1657
+
1658
+ export declare const VBreadcrumbItem: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
1659
+
1660
+ export declare interface VBreadcrumbItemEmits {
1661
+ click: [event: MouseEvent];
1662
+ }
1663
+
1664
+ export declare interface VBreadcrumbItemProps {
1665
+ /** Якщо передано — рендериться як RouterLink або <a> */
1666
+ to?: string | Record<string, any>;
1667
+ /** Поточна активна сторінка (остання у ланцюжку) */
1668
+ active?: boolean;
1669
+ /** Вимикає клік і змінює стиль */
1670
+ disabled?: boolean;
1671
+ }
1672
+
1673
+ export declare interface VBreadcrumbProps {
1674
+ separator?: string;
1675
+ ariaLabel?: string;
1676
+ goBack?: boolean;
1677
+ }
1678
+
1603
1679
  export declare const VButton: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
1604
1680
 
1605
1681
  export declare interface VButtonEmits {