@codemonster-ru/vueforge 0.19.0 → 0.20.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.
@@ -0,0 +1,37 @@
1
+ type Size = 'small' | 'normal' | 'large';
2
+ type Variant = 'filled' | 'outlined';
3
+ interface Props {
4
+ modelValue?: number;
5
+ totalItems?: number;
6
+ pageSize?: number;
7
+ totalPages?: number;
8
+ siblingCount?: number;
9
+ boundaryCount?: number;
10
+ disabled?: boolean;
11
+ size?: Size;
12
+ variant?: Variant;
13
+ prevLabel?: string;
14
+ nextLabel?: string;
15
+ ellipsisLabel?: string;
16
+ }
17
+ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
18
+ change: (...args: any[]) => void;
19
+ "update:modelValue": (...args: any[]) => void;
20
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
21
+ onChange?: ((...args: any[]) => any) | undefined;
22
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
23
+ }>, {
24
+ disabled: boolean;
25
+ size: Size;
26
+ variant: Variant;
27
+ modelValue: number;
28
+ totalItems: number;
29
+ pageSize: number;
30
+ totalPages: number;
31
+ siblingCount: number;
32
+ boundaryCount: number;
33
+ prevLabel: string;
34
+ nextLabel: string;
35
+ ellipsisLabel: string;
36
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLElement>;
37
+ export default _default;
@@ -352,6 +352,32 @@ export type DatePickerTokens = {
352
352
  daySize?: string;
353
353
  };
354
354
  };
355
+ export type PaginationTokens = {
356
+ gap?: string;
357
+ itemMinWidth?: string;
358
+ fontSize?: string;
359
+ padding?: string;
360
+ borderRadius?: string;
361
+ borderColor?: string;
362
+ backgroundColor?: string;
363
+ textColor?: string;
364
+ hoverBackgroundColor?: string;
365
+ activeBorderColor?: string;
366
+ activeBackgroundColor?: string;
367
+ activeTextColor?: string;
368
+ focusBorderColor?: string;
369
+ focusRingShadow?: string;
370
+ disabledOpacity?: string;
371
+ ellipsisPadding?: string;
372
+ small?: {
373
+ padding?: string;
374
+ fontSize?: string;
375
+ };
376
+ large?: {
377
+ padding?: string;
378
+ fontSize?: string;
379
+ };
380
+ };
355
381
  export type SwitchTokens = {
356
382
  width?: string;
357
383
  height?: string;
@@ -495,6 +521,7 @@ export type ThemeComponentTokens = {
495
521
  autocomplete?: AutocompleteTokens;
496
522
  multiselect?: MultiSelectTokens;
497
523
  datepicker?: DatePickerTokens;
524
+ pagination?: PaginationTokens;
498
525
  switch?: SwitchTokens;
499
526
  tooltip?: TooltipTokens;
500
527
  toast?: ToastTokens;
@@ -0,0 +1,27 @@
1
+ declare const _default: {
2
+ gap: string;
3
+ itemMinWidth: string;
4
+ fontSize: string;
5
+ padding: string;
6
+ borderRadius: string;
7
+ borderColor: string;
8
+ backgroundColor: string;
9
+ textColor: string;
10
+ hoverBackgroundColor: string;
11
+ activeBorderColor: string;
12
+ activeBackgroundColor: string;
13
+ activeTextColor: string;
14
+ focusBorderColor: string;
15
+ focusRingShadow: string;
16
+ disabledOpacity: string;
17
+ ellipsisPadding: string;
18
+ small: {
19
+ fontSize: string;
20
+ padding: string;
21
+ };
22
+ large: {
23
+ fontSize: string;
24
+ padding: string;
25
+ };
26
+ };
27
+ export default _default;
@@ -506,6 +506,32 @@ declare const _default: {
506
506
  daySize: string;
507
507
  };
508
508
  };
509
+ pagination: {
510
+ gap: string;
511
+ itemMinWidth: string;
512
+ fontSize: string;
513
+ padding: string;
514
+ borderRadius: string;
515
+ borderColor: string;
516
+ backgroundColor: string;
517
+ textColor: string;
518
+ hoverBackgroundColor: string;
519
+ activeBorderColor: string;
520
+ activeBackgroundColor: string;
521
+ activeTextColor: string;
522
+ focusBorderColor: string;
523
+ focusRingShadow: string;
524
+ disabledOpacity: string;
525
+ ellipsisPadding: string;
526
+ small: {
527
+ fontSize: string;
528
+ padding: string;
529
+ };
530
+ large: {
531
+ fontSize: string;
532
+ padding: string;
533
+ };
534
+ };
509
535
  checkbox: {
510
536
  size: string;
511
537
  gap: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemonster-ru/vueforge",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "description": "Open source UI components for Vue.js.",
5
5
  "license": "MIT",
6
6
  "author": "Kirill Kolesnikov",