prlg-ui 1.8.1 → 1.8.3
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 +6 -1
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.es.js +246 -233
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -218,7 +218,9 @@ declare const __VLS_component_21: DefineComponent<__VLS_Props_31, {}, {}, {}, {}
|
|
|
218
218
|
|
|
219
219
|
declare const __VLS_component_22: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
220
220
|
|
|
221
|
-
declare const __VLS_component_3: DefineComponent<ColumnProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ColumnProps> & Readonly<{}>, {
|
|
221
|
+
declare const __VLS_component_3: DefineComponent<ColumnProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ColumnProps> & Readonly<{}>, {
|
|
222
|
+
visible: boolean;
|
|
223
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
222
224
|
|
|
223
225
|
declare const __VLS_component_4: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
224
226
|
"update:modelValue": (value: any) => any;
|
|
@@ -1014,6 +1016,7 @@ declare type CollapsedGroups = {
|
|
|
1014
1016
|
export declare const Column: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
1015
1017
|
|
|
1016
1018
|
declare type Column_2 = {
|
|
1019
|
+
id: string;
|
|
1017
1020
|
header?: string;
|
|
1018
1021
|
field?: string;
|
|
1019
1022
|
description?: string;
|
|
@@ -1021,6 +1024,7 @@ declare type Column_2 = {
|
|
|
1021
1024
|
alignVertical?: 'top' | 'middle' | 'bottom';
|
|
1022
1025
|
selectionMode?: SelectedMode;
|
|
1023
1026
|
style?: CSSProperties;
|
|
1027
|
+
visible?: boolean;
|
|
1024
1028
|
headerSlot?: Slot<ColumnHeaderSlotProps> | null;
|
|
1025
1029
|
bodySlot?: Slot<ColumnBodySlotProps> | null;
|
|
1026
1030
|
footerSlot?: Slot<ColumnFooterSlotProps> | null;
|
|
@@ -1056,6 +1060,7 @@ declare type ColumnProps = {
|
|
|
1056
1060
|
style?: CSSProperties;
|
|
1057
1061
|
headerStyle?: string | Record<string, any>;
|
|
1058
1062
|
selectionMode?: SelectedMode;
|
|
1063
|
+
visible?: boolean;
|
|
1059
1064
|
};
|
|
1060
1065
|
|
|
1061
1066
|
declare interface ColumnSlots {
|