prlg-ui 1.8.242 → 1.8.244
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/{InfoIcon-ymNDL95o.js → InfoIcon-BHqz_V_5.js} +19 -18
- package/dist/{InfoIcon-6OKKz9xu.cjs → InfoIcon-DIQlRgPd.cjs} +1 -1
- package/dist/blocks.d.ts +5 -6
- package/dist/icons/index.cjs.js +1 -1
- package/dist/icons/index.es.js +1 -1
- package/dist/icons.d.ts +5 -6
- package/dist/index.d.ts +5 -6
- package/dist/prlg-ui.css +1 -1
- package/dist/reka-ui/index.cjs.js +2 -2
- package/dist/reka-ui/index.es.js +376 -371
- package/dist/rekaUI.d.ts +43 -32
- package/dist/types.d.ts +5 -6
- package/dist/utils.d.ts +5 -6
- package/package.json +1 -1
package/dist/rekaUI.d.ts
CHANGED
|
@@ -673,6 +673,11 @@ width: number;
|
|
|
673
673
|
|
|
674
674
|
declare const __VLS_component_9: DefineComponent<AlertDialogDescriptionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<AlertDialogDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
675
675
|
|
|
676
|
+
declare const __VLS_defaults: {
|
|
677
|
+
page: number;
|
|
678
|
+
rows: number;
|
|
679
|
+
};
|
|
680
|
+
|
|
676
681
|
declare type __VLS_Props = {
|
|
677
682
|
value?: string | number;
|
|
678
683
|
variant?: 'primary' | 'danger' | 'neutral';
|
|
@@ -694,7 +699,9 @@ declare type __VLS_Props_2 = {
|
|
|
694
699
|
customId?: string;
|
|
695
700
|
};
|
|
696
701
|
|
|
697
|
-
declare type __VLS_Props_3 =
|
|
702
|
+
declare type __VLS_Props_3 = IDataTableProps;
|
|
703
|
+
|
|
704
|
+
declare type __VLS_Props_4 = {
|
|
698
705
|
label?: string;
|
|
699
706
|
placeholder?: string;
|
|
700
707
|
name?: string;
|
|
@@ -719,9 +726,15 @@ declare type __VLS_PublicProps = {
|
|
|
719
726
|
} & __VLS_Props_2;
|
|
720
727
|
|
|
721
728
|
declare type __VLS_PublicProps_2 = {
|
|
722
|
-
|
|
729
|
+
'page'?: typeof __VLS_defaults['page'];
|
|
730
|
+
'rows'?: typeof __VLS_defaults['rows'];
|
|
731
|
+
'rowSelection'?: RowSelectionState;
|
|
723
732
|
} & __VLS_Props_3;
|
|
724
733
|
|
|
734
|
+
declare type __VLS_PublicProps_3 = {
|
|
735
|
+
modelValue?: string;
|
|
736
|
+
} & __VLS_Props_4;
|
|
737
|
+
|
|
725
738
|
declare function __VLS_template(): {
|
|
726
739
|
attrs: Partial<{}>;
|
|
727
740
|
slots: {
|
|
@@ -2051,23 +2064,24 @@ export { ConfigType }
|
|
|
2051
2064
|
|
|
2052
2065
|
export { createColumnHelper }
|
|
2053
2066
|
|
|
2054
|
-
export declare const DataTable: DefineComponent<
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
{
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
|
2066
|
-
|
|
|
2067
|
-
|
|
|
2068
|
-
|
|
|
2069
|
-
|
|
2070
|
-
|
|
2067
|
+
export declare const DataTable: DefineComponent<__VLS_PublicProps_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2068
|
+
"update:rowSelection": (value: RowSelectionState) => any;
|
|
2069
|
+
"update:page": (value: number) => any;
|
|
2070
|
+
"update:rows": (value: number) => any;
|
|
2071
|
+
} & {
|
|
2072
|
+
"update:sort": (value: SortingState) => any;
|
|
2073
|
+
"update:selected": (value: RowSelectionState) => any;
|
|
2074
|
+
"update:page": (value: number) => any;
|
|
2075
|
+
"update:rows": (value: number) => any;
|
|
2076
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
|
|
2077
|
+
"onUpdate:sort"?: ((value: SortingState) => any) | undefined;
|
|
2078
|
+
"onUpdate:rowSelection"?: ((value: RowSelectionState) => any) | undefined;
|
|
2079
|
+
"onUpdate:selected"?: ((value: RowSelectionState) => any) | undefined;
|
|
2080
|
+
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
2081
|
+
"onUpdate:rows"?: ((value: number) => any) | undefined;
|
|
2082
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2083
|
+
|
|
2084
|
+
declare type DataTablePaginationTemplate = "FirstPageLink" | "PrevPageLink" | "PageLinks" | "NextPageLink" | "LastPageLink" | "RowsPerPageDropdown";
|
|
2071
2085
|
|
|
2072
2086
|
export { DatePickerAnchor }
|
|
2073
2087
|
|
|
@@ -2347,11 +2361,8 @@ export declare interface IData<T> {
|
|
|
2347
2361
|
data: T;
|
|
2348
2362
|
}
|
|
2349
2363
|
|
|
2350
|
-
declare interface
|
|
2351
|
-
|
|
2352
|
-
(e: "update:selected", value: RowSelectionState): void;
|
|
2353
|
-
(e: "update:page", value: number): void;
|
|
2354
|
-
(e: "update:rows", value: number): void;
|
|
2364
|
+
declare interface IDataHeader {
|
|
2365
|
+
textStyle?: "none" | "capitalize" | "uppercase" | "lowercase" | "full-width" | "full-size-kana";
|
|
2355
2366
|
}
|
|
2356
2367
|
|
|
2357
2368
|
declare interface IDataTableProps<T = any> {
|
|
@@ -2369,6 +2380,7 @@ declare interface IDataTableProps<T = any> {
|
|
|
2369
2380
|
enableSorting?: boolean;
|
|
2370
2381
|
enableRowSelection?: boolean;
|
|
2371
2382
|
rowId?: string;
|
|
2383
|
+
header?: IDataHeader;
|
|
2372
2384
|
}
|
|
2373
2385
|
|
|
2374
2386
|
declare interface IDatePickerFieldProps {
|
|
@@ -2586,13 +2598,13 @@ declare interface TagProps {
|
|
|
2586
2598
|
colors?: TagColors;
|
|
2587
2599
|
}
|
|
2588
2600
|
|
|
2589
|
-
export declare const Textarea: DefineComponent<
|
|
2601
|
+
export declare const Textarea: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2590
2602
|
"update:modelValue": (value: string) => any;
|
|
2591
2603
|
} & {
|
|
2592
2604
|
blur: (value: FocusEvent) => any;
|
|
2593
2605
|
focusIn: (value: FocusEvent) => any;
|
|
2594
2606
|
focusOut: (value: FocusEvent) => any;
|
|
2595
|
-
}, string, PublicProps, Readonly<
|
|
2607
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
|
|
2596
2608
|
onBlur?: ((value: FocusEvent) => any) | undefined;
|
|
2597
2609
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
2598
2610
|
onFocusIn?: ((value: FocusEvent) => any) | undefined;
|
|
@@ -2644,11 +2656,10 @@ declare module "@tanstack/vue-table" {
|
|
|
2644
2656
|
}
|
|
2645
2657
|
|
|
2646
2658
|
|
|
2647
|
-
|
|
2648
2659
|
declare module "@tanstack/vue-table" {
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2660
|
+
interface ColumnMeta<TData extends RowData, TValue> {
|
|
2661
|
+
align?: "start" | "center" | "end";
|
|
2662
|
+
verticalAlign?: "top" | "middle" | "bottom";
|
|
2663
|
+
autoSize?: boolean;
|
|
2664
|
+
}
|
|
2654
2665
|
}
|
package/dist/types.d.ts
CHANGED
|
@@ -24,11 +24,10 @@ declare module "@tanstack/vue-table" {
|
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
|
|
28
27
|
declare module "@tanstack/vue-table" {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
28
|
+
interface ColumnMeta<TData extends RowData, TValue> {
|
|
29
|
+
align?: "start" | "center" | "end";
|
|
30
|
+
verticalAlign?: "top" | "middle" | "bottom";
|
|
31
|
+
autoSize?: boolean;
|
|
32
|
+
}
|
|
34
33
|
}
|
package/dist/utils.d.ts
CHANGED
|
@@ -154,11 +154,10 @@ declare module "@tanstack/vue-table" {
|
|
|
154
154
|
}
|
|
155
155
|
|
|
156
156
|
|
|
157
|
-
|
|
158
157
|
declare module "@tanstack/vue-table" {
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
158
|
+
interface ColumnMeta<TData extends RowData, TValue> {
|
|
159
|
+
align?: "start" | "center" | "end";
|
|
160
|
+
verticalAlign?: "top" | "middle" | "bottom";
|
|
161
|
+
autoSize?: boolean;
|
|
162
|
+
}
|
|
164
163
|
}
|