prlg-ui 1.8.279 → 1.8.281

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/rekaUI.d.ts CHANGED
@@ -728,6 +728,10 @@ declare type __VLS_Props_2 = {
728
728
  };
729
729
 
730
730
  declare type __VLS_Props_3 = {
731
+ items: MenuItem[];
732
+ };
733
+
734
+ declare type __VLS_Props_4 = {
731
735
  label?: string;
732
736
  value?: string | number | any;
733
737
  trueValue?: string | boolean;
@@ -742,13 +746,13 @@ declare type __VLS_Props_3 = {
742
746
  customId?: string;
743
747
  };
744
748
 
745
- declare type __VLS_Props_4 = IDataTableProps;
749
+ declare type __VLS_Props_5 = IDataTableProps;
746
750
 
747
- declare type __VLS_Props_5 = InputTextProps;
751
+ declare type __VLS_Props_6 = InputTextProps;
748
752
 
749
- declare type __VLS_Props_6 = InputTextProps_2;
753
+ declare type __VLS_Props_7 = InputTextProps_2;
750
754
 
751
- declare type __VLS_Props_7 = {
755
+ declare type __VLS_Props_8 = {
752
756
  label?: string;
753
757
  placeholder?: string;
754
758
  name?: string;
@@ -770,25 +774,25 @@ declare type __VLS_Props_7 = {
770
774
 
771
775
  declare type __VLS_PublicProps = {
772
776
  modelValue?: string | boolean | any | null | any[];
773
- } & __VLS_Props_3;
777
+ } & __VLS_Props_4;
774
778
 
775
779
  declare type __VLS_PublicProps_2 = {
776
780
  'page'?: typeof __VLS_defaults['page'];
777
781
  'rows'?: typeof __VLS_defaults['rows'];
778
782
  'rowSelection'?: RowSelectionState;
779
- } & __VLS_Props_4;
783
+ } & __VLS_Props_5;
780
784
 
781
785
  declare type __VLS_PublicProps_3 = {
782
786
  modelValue?: string;
783
- } & __VLS_Props_5;
787
+ } & __VLS_Props_6;
784
788
 
785
789
  declare type __VLS_PublicProps_4 = {
786
790
  modelValue?: string;
787
- } & __VLS_Props_6;
791
+ } & __VLS_Props_7;
788
792
 
789
793
  declare type __VLS_PublicProps_5 = {
790
794
  modelValue?: string;
791
- } & __VLS_Props_7;
795
+ } & __VLS_Props_8;
792
796
 
793
797
  declare function __VLS_template(): {
794
798
  attrs: Partial<{}>;
@@ -2108,6 +2112,8 @@ export declare type AlertVariant = "info" | "success" | "warning" | "error";
2108
2112
 
2109
2113
  export declare const Badge: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2110
2114
 
2115
+ export declare const Breadcrumb: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2116
+
2111
2117
  export declare const breakpoints: Record<"sm" | "lg" | "xl" | "mobile" | "md" | "xxl" | "xxxl", ComputedRef<boolean>> & {
2112
2118
  greaterOrEqual: (k: MaybeRefOrGetter<"sm" | "lg" | "xl" | "mobile" | "md" | "xxl" | "xxxl">) => ComputedRef<boolean>;
2113
2119
  smallerOrEqual: (k: MaybeRefOrGetter<"sm" | "lg" | "xl" | "mobile" | "md" | "xxl" | "xxxl">) => ComputedRef<boolean>;
@@ -2676,6 +2682,10 @@ declare interface IPopoverContentProps extends PopoverContentProps {
2676
2682
  width?: number;
2677
2683
  }
2678
2684
 
2685
+ declare interface IRadioGroupItemProps extends RadioGroupItemProps {
2686
+ size?: 'small' | 'default' | 'large';
2687
+ }
2688
+
2679
2689
  declare interface IScrollAreaRootProps extends ScrollAreaRootProps {
2680
2690
  maxHeight?: number | string;
2681
2691
  }
@@ -2713,6 +2723,16 @@ declare interface LoadingElement extends HTMLElement {
2713
2723
  _spinnerContainer?: HTMLElement;
2714
2724
  }
2715
2725
 
2726
+ declare type MenuItem = {
2727
+ icon?: Component;
2728
+ label: string;
2729
+ url?: string | RouteLocationRaw;
2730
+ command?: () => void;
2731
+ description?: string;
2732
+ badge?: boolean;
2733
+ disabled?: boolean;
2734
+ };
2735
+
2716
2736
  export declare const Message: __VLS_WithTemplateSlots_48<typeof __VLS_component_48, __VLS_TemplateResult_48["slots"]>;
2717
2737
 
2718
2738
  export declare const PaginationEllipsis: DefineComponent<PaginationEllipsisProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PaginationEllipsisProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
@@ -2758,7 +2778,9 @@ export declare const priceFormat: (price: string | number, returnHtml?: boolean)
2758
2778
  [key: string]: any;
2759
2779
  }>;
2760
2780
 
2761
- export declare const RadioGroupItem: DefineComponent<RadioGroupItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<RadioGroupItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2781
+ export declare const RadioGroupItem: DefineComponent<IRadioGroupItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<IRadioGroupItemProps> & Readonly<{}>, {
2782
+ size: "small" | "default" | "large";
2783
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2762
2784
 
2763
2785
  export { RadioGroupRoot }
2764
2786
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "prlg-ui",
3
3
  "private": false,
4
- "version": "1.8.279",
4
+ "version": "1.8.281",
5
5
  "type": "module",
6
6
  "main": "dist/prlg-ui.umd.js",
7
7
  "module": "dist/prlg-ui.es.js",