prlg-ui 1.8.0 → 1.8.2
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 +9 -0
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +596 -587
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1021,6 +1021,7 @@ declare type Column_2 = {
|
|
|
1021
1021
|
alignVertical?: 'top' | 'middle' | 'bottom';
|
|
1022
1022
|
selectionMode?: SelectedMode;
|
|
1023
1023
|
style?: CSSProperties;
|
|
1024
|
+
visible?: boolean;
|
|
1024
1025
|
headerSlot?: Slot<ColumnHeaderSlotProps> | null;
|
|
1025
1026
|
bodySlot?: Slot<ColumnBodySlotProps> | null;
|
|
1026
1027
|
footerSlot?: Slot<ColumnFooterSlotProps> | null;
|
|
@@ -1056,6 +1057,7 @@ declare type ColumnProps = {
|
|
|
1056
1057
|
style?: CSSProperties;
|
|
1057
1058
|
headerStyle?: string | Record<string, any>;
|
|
1058
1059
|
selectionMode?: SelectedMode;
|
|
1060
|
+
visible?: boolean;
|
|
1059
1061
|
};
|
|
1060
1062
|
|
|
1061
1063
|
declare interface ColumnSlots {
|
|
@@ -1136,6 +1138,7 @@ onFocus?: ((value: FocusEvent) => any) | undefined;
|
|
|
1136
1138
|
}>, {
|
|
1137
1139
|
type: ICalendarType;
|
|
1138
1140
|
range: boolean;
|
|
1141
|
+
position: "start" | "end";
|
|
1139
1142
|
format: string;
|
|
1140
1143
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
1141
1144
|
datePickerRef: HTMLDivElement;
|
|
@@ -1274,6 +1277,12 @@ declare interface IDatePickerProps extends ICalendarProps {
|
|
|
1274
1277
|
* Состояние - обязательно поле для заполнения или нет
|
|
1275
1278
|
* */
|
|
1276
1279
|
required?: boolean;
|
|
1280
|
+
/**
|
|
1281
|
+
* Позиция календаря относительно поля ввода
|
|
1282
|
+
*
|
|
1283
|
+
* @default 'start'
|
|
1284
|
+
*/
|
|
1285
|
+
position?: 'start' | 'end';
|
|
1277
1286
|
}
|
|
1278
1287
|
|
|
1279
1288
|
declare interface IFile {
|