prlg-ui 1.8.136 → 1.8.138

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
@@ -517,7 +517,7 @@ declare type __VLS_PublicProps = {
517
517
  } & __VLS_Props_2;
518
518
 
519
519
  declare type __VLS_PublicProps_10 = {
520
- modelValue?: any;
520
+ modelValue: string | null;
521
521
  } & __VLS_Props_11;
522
522
 
523
523
  declare type __VLS_PublicProps_11 = {
@@ -1733,15 +1733,17 @@ declare interface ScheduleProps {
1733
1733
  }
1734
1734
 
1735
1735
  export declare const SelectButton: DefineComponent<__VLS_PublicProps_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1736
- "update:modelValue": (value: any) => any;
1736
+ "update:modelValue": (value: string | null) => any;
1737
1737
  }, string, PublicProps, Readonly<__VLS_PublicProps_10> & Readonly<{
1738
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
1738
+ "onUpdate:modelValue"?: ((value: string | null) => any) | undefined;
1739
1739
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1740
1740
 
1741
1741
  declare type SelectButtonProps = {
1742
+ variant?: 'select' | 'tabs';
1742
1743
  options: any[];
1743
1744
  optionLabel?: string;
1744
1745
  optionValue?: string;
1746
+ orientation?: 'vertical' | 'horizontal';
1745
1747
  };
1746
1748
 
1747
1749
  declare type SelectedMode = 'multiple' | 'single';