voiptime-components 1.3.6 → 1.4.0

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 CHANGED
@@ -206,6 +206,7 @@ declare const __VLS_component_7: DefineComponent<VtSelectProps, {
206
206
  errors: string[];
207
207
  }) => any;
208
208
  "remove-tag": (value: string | number) => any;
209
+ scrolled: () => any;
209
210
  }, string, PublicProps, Readonly<VtSelectProps> & Readonly<{
210
211
  onBlur?: ((event: FocusEvent) => any) | undefined;
211
212
  onChange?: ((value: string | number | (string | number)[]) => any) | undefined;
@@ -219,6 +220,7 @@ declare const __VLS_component_7: DefineComponent<VtSelectProps, {
219
220
  errors: string[];
220
221
  }) => any) | undefined;
221
222
  "onRemove-tag"?: ((value: string | number) => any) | undefined;
223
+ onScrolled?: (() => any) | undefined;
222
224
  }>, {
223
225
  disabled: boolean;
224
226
  loading: boolean;
@@ -233,6 +235,7 @@ declare const __VLS_component_7: DefineComponent<VtSelectProps, {
233
235
  multiple: boolean;
234
236
  collapsedTags: boolean;
235
237
  filterable: boolean;
238
+ infiniteScroll: boolean;
236
239
  noDataText: string;
237
240
  noMatchText: string;
238
241
  loadingText: string;
@@ -330,6 +333,8 @@ declare const __VLS_component_7: DefineComponent<VtSelectProps, {
330
333
  validateOnInput: boolean;
331
334
  validateOnBlur: boolean;
332
335
  }> | null;
336
+ scrollContainer: HTMLDivElement;
337
+ sentinelRef: HTMLDivElement;
333
338
  }, HTMLDivElement>;
334
339
 
335
340
  declare const __VLS_component_8: DefineComponent<VtOptionProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
@@ -505,6 +510,8 @@ declare function __VLS_template_7(): {
505
510
  validateOnInput: boolean;
506
511
  validateOnBlur: boolean;
507
512
  }> | null;
513
+ scrollContainer: HTMLDivElement;
514
+ sentinelRef: HTMLDivElement;
508
515
  };
509
516
  rootEl: HTMLDivElement;
510
517
  };
@@ -679,6 +686,7 @@ declare const icons: {
679
686
  readonly filterSave: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
680
687
  readonly alertCircle: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
681
688
  readonly alertTriangle: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
689
+ readonly calendar: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
682
690
  readonly checkCircle: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
683
691
  readonly eyeClosed: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
684
692
  readonly eyeOpened: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
@@ -1101,6 +1109,7 @@ export declare interface VTableProps {
1101
1109
  /** Конфігурація колонок */
1102
1110
  columns?: VTableColumnProps[];
1103
1111
  hideHeader?: boolean;
1112
+ rowHighlight?: VTableRowHighlightFunction;
1104
1113
  }
1105
1114
 
1106
1115
  export declare type VTableRenderSlot = (props: {
@@ -1110,6 +1119,15 @@ export declare type VTableRenderSlot = (props: {
1110
1119
  index?: number;
1111
1120
  }) => VNode | VNode[] | string | Component;
1112
1121
 
1122
+ export declare interface VTableRowHighlight {
1123
+ type: VTableRowHighlightType;
1124
+ className?: string;
1125
+ }
1126
+
1127
+ export declare type VTableRowHighlightFunction = (row: any, index: number) => VTableRowHighlight | null;
1128
+
1129
+ export declare type VTableRowHighlightType = 'default' | 'success' | 'warning' | 'danger' | 'custom';
1130
+
1113
1131
  export declare interface VTableStyleConfig {
1114
1132
  [key: string]: string;
1115
1133
  }
@@ -1222,7 +1240,7 @@ export declare interface VtSelectContext {
1222
1240
  handleOptionClick: (option: VtSelectOption) => void;
1223
1241
  isOptionSelected: (value: string | number) => boolean;
1224
1242
  isOptionVisible: (option: VtSelectOption) => boolean;
1225
- registerOption: (option: VtSelectOption) => void;
1243
+ registerOption: (option: VtSelectOption, slotContent?: any) => void;
1226
1244
  unregisterOption: (value: string | number) => void;
1227
1245
  }
1228
1246
 
@@ -1241,6 +1259,7 @@ export declare interface VtSelectEmits {
1241
1259
  isValid: boolean;
1242
1260
  errors: string[];
1243
1261
  }];
1262
+ scrolled: [];
1244
1263
  }
1245
1264
 
1246
1265
  export declare interface VtSelectMethods {
@@ -1262,8 +1281,6 @@ export declare interface VtSelectOption {
1262
1281
  label: string;
1263
1282
  value: string | number;
1264
1283
  disabled?: boolean;
1265
- icon?: string;
1266
- group?: string;
1267
1284
  }
1268
1285
 
1269
1286
  export declare interface VtSelectProps {
@@ -1275,8 +1292,8 @@ export declare interface VtSelectProps {
1275
1292
  disabled?: boolean;
1276
1293
  clearable?: boolean;
1277
1294
  filterable?: boolean;
1278
- remote?: boolean;
1279
1295
  loading?: boolean;
1296
+ infiniteScroll?: boolean;
1280
1297
  label?: string;
1281
1298
  placeholder?: string;
1282
1299
  helperText?: string;