prlg-ui 1.8.8 → 1.8.9
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 +3 -9
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +2115 -2098
- package/dist/scss/root-vars.scss +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -218,9 +218,7 @@ 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<{}>, {
|
|
222
|
-
visible: boolean;
|
|
223
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
221
|
+
declare const __VLS_component_3: DefineComponent<ColumnProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ColumnProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
224
222
|
|
|
225
223
|
declare const __VLS_component_4: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
226
224
|
"update:modelValue": (value: any) => any;
|
|
@@ -1016,7 +1014,6 @@ declare type CollapsedGroups = {
|
|
|
1016
1014
|
export declare const Column: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
1017
1015
|
|
|
1018
1016
|
declare type Column_2 = {
|
|
1019
|
-
id: string;
|
|
1020
1017
|
header?: string;
|
|
1021
1018
|
field?: string;
|
|
1022
1019
|
description?: string;
|
|
@@ -1237,8 +1234,8 @@ declare interface ICalendarProps {
|
|
|
1237
1234
|
}
|
|
1238
1235
|
|
|
1239
1236
|
declare type ICalendarResult = {
|
|
1240
|
-
to: string
|
|
1241
|
-
from: string
|
|
1237
|
+
to: string;
|
|
1238
|
+
from: string;
|
|
1242
1239
|
};
|
|
1243
1240
|
|
|
1244
1241
|
declare type ICalendarResultValue = string | ICalendarResult | null;
|
|
@@ -1638,8 +1635,6 @@ declare type TableProps = {
|
|
|
1638
1635
|
maxHeight?: string | number | undefined;
|
|
1639
1636
|
/** Функция для применения стилей к строке таблицы */
|
|
1640
1637
|
rowStyle?: (data: DataItem) => CSSProperties;
|
|
1641
|
-
/** Состояние загрузки */
|
|
1642
|
-
loading?: boolean;
|
|
1643
1638
|
};
|
|
1644
1639
|
|
|
1645
1640
|
declare type TableRowGroupMode = 'rowspan' | 'subheader';
|
|
@@ -1648,7 +1643,6 @@ declare type TableSize = 'small' | 'default' | 'large';
|
|
|
1648
1643
|
|
|
1649
1644
|
declare type TableSlots = {
|
|
1650
1645
|
default(): any;
|
|
1651
|
-
empty?(): any;
|
|
1652
1646
|
};
|
|
1653
1647
|
|
|
1654
1648
|
export declare const TabList: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
|