@bagelink/vue 1.15.65 → 1.15.71
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/components/Pagination.vue.d.ts +6 -2
- package/dist/components/Pagination.vue.d.ts.map +1 -1
- package/dist/components/charts/ChartTooltip.vue.d.ts +0 -8
- package/dist/components/charts/ChartTooltip.vue.d.ts.map +1 -1
- package/dist/components/charts/Donut.vue.d.ts.map +1 -1
- package/dist/i18n/index.d.ts +10 -0
- package/dist/i18n/index.d.ts.map +1 -1
- package/dist/index.cjs +31 -31
- package/dist/index.mjs +5995 -5965
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/Pagination.vue +65 -41
- package/src/components/charts/ChartTooltip.vue +5 -1
- package/src/components/charts/Donut.vue +3 -1
- package/src/components/layout/SidebarNavItem.vue +1 -1
- package/src/i18n/locales/en.json +6 -1
- package/src/i18n/locales/he.json +6 -1
|
@@ -4,30 +4,34 @@ interface Range {
|
|
|
4
4
|
}
|
|
5
5
|
interface PaginationProps {
|
|
6
6
|
totalItems: number;
|
|
7
|
-
perPage?: number;
|
|
8
7
|
totalPages?: number;
|
|
9
8
|
variant?: 'default' | 'simple';
|
|
10
9
|
rtl?: boolean;
|
|
11
10
|
maxVisiblePages?: number;
|
|
11
|
+
/** When set, renders a "per page" selector with these choices. */
|
|
12
|
+
perPageOptions?: number[];
|
|
12
13
|
}
|
|
13
14
|
type __VLS_Props = PaginationProps;
|
|
14
15
|
type __VLS_PublicProps = {
|
|
15
16
|
'page'?: number;
|
|
17
|
+
'perPage'?: number;
|
|
16
18
|
'range'?: Range;
|
|
17
19
|
} & __VLS_Props;
|
|
18
20
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
21
|
"update:page": (value: number) => any;
|
|
22
|
+
"update:perPage": (value: number) => any;
|
|
20
23
|
"update:range": (value: Range) => any;
|
|
21
24
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
25
|
"onUpdate:page"?: ((value: number) => any) | undefined;
|
|
26
|
+
"onUpdate:perPage"?: ((value: number) => any) | undefined;
|
|
23
27
|
"onUpdate:range"?: ((value: Range) => any) | undefined;
|
|
24
28
|
}>, {
|
|
25
29
|
variant: "default" | "simple";
|
|
26
30
|
rtl: boolean;
|
|
27
31
|
totalItems: number;
|
|
28
|
-
perPage: number;
|
|
29
32
|
totalPages: number;
|
|
30
33
|
maxVisiblePages: number;
|
|
34
|
+
perPageOptions: number[];
|
|
31
35
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
32
36
|
paginationContainer: HTMLDivElement;
|
|
33
37
|
}, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pagination.vue.d.ts","sourceRoot":"","sources":["../../src/components/Pagination.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Pagination.vue.d.ts","sourceRoot":"","sources":["../../src/components/Pagination.vue"],"names":[],"mappings":"AA2RA,UAAU,KAAK;IACd,KAAK,EAAE,MAAM,CAAA;IACb,GAAG,EAAE,MAAM,CAAA;CACX;AAED,UAAU,eAAe;IACxB,UAAU,EAAE,MAAM,CAAA;IAClB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,OAAO,CAAC,EAAE,SAAS,GAAG,QAAQ,CAAA;IAC9B,GAAG,CAAC,EAAE,OAAO,CAAA;IACb,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,kEAAkE;IAClE,cAAc,CAAC,EAAE,MAAM,EAAE,CAAA;CACzB;AAED,KAAK,WAAW,GAAG,eAAe,CAAC;AAiMnC,KAAK,iBAAiB,GAAG;IACzB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,KAAK,CAAC;CACf,GAAG,WAAW,CAAC;;;;;;;;;;aA5ML,SAAS,GAAG,QAAQ;SACxB,OAAO;gBAHD,MAAM;gBACL,MAAM;qBAGD,MAAM;oBAEP,MAAM,EAAE;;;;AA2Z1B,wBASG"}
|
|
@@ -1,11 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* ChartTooltip — the single tooltip used by every chart (Line, Bar, Donut,
|
|
3
|
-
* Funnel). Renders a label header, optional hero value, per-series rows
|
|
4
|
-
* (dot · name · value), an optional total row, and an optional stats block.
|
|
5
|
-
*
|
|
6
|
-
* Positioned by the host via `style` (absolute left/top); the host owns
|
|
7
|
-
* mouse tracking. Non-interactive (pointer-events: none).
|
|
8
|
-
*/
|
|
9
1
|
export interface TipRow {
|
|
10
2
|
name: string;
|
|
11
3
|
color?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ChartTooltip.vue.d.ts","sourceRoot":"","sources":["../../../src/components/charts/ChartTooltip.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ChartTooltip.vue.d.ts","sourceRoot":"","sources":["../../../src/components/charts/ChartTooltip.vue"],"names":[],"mappings":"AA0FA,MAAM,WAAW,MAAM;IAAG,IAAI,EAAE,MAAM,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE;AACvE,MAAM,WAAW,OAAO;IAAG,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE;AAMzD,KAAK,WAAW,GAAG;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,sEAAsE;IACtE,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,MAAM,EAAE,CAAA;IACf,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACrB,KAAK,CAAC,EAAE,OAAO,EAAE,CAAA;IACjB,wDAAwD;IACxD,KAAK,CAAC,EAAE,OAAO,CAAA;CACf,CAAC;;UALM,MAAM,EAAE;WAEP,OAAO,EAAE;;AAoIlB,wBAQG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Donut.vue.d.ts","sourceRoot":"","sources":["../../../src/components/charts/Donut.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Donut.vue.d.ts","sourceRoot":"","sources":["../../../src/components/charts/Donut.vue"],"names":[],"mappings":"AA+OA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AAI5C,UAAU,KAAK;IAAG,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAA;CAAE;AAEhE,KAAK,WAAW,GAAG;IAClB,IAAI,EAAE,KAAK,EAAE,CAAA;IACb,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,wEAAwE;IACxE,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,GAAG,CAAC,EAAE,OAAO,CAAA;IACb,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,oEAAoE;IACpE,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,8DAA8D;IAC9D,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,6EAA6E;IAC7E,KAAK,CAAC,EAAE,SAAS,GAAG,MAAM,CAAA;IAC1B;+EAC2E;IAC3E,IAAI,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAA;IACzB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAC7B,iEAAiE;IACjE,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB;;;mCAG+B;IAC/B,MAAM,CAAC,EAAE,KAAK,GAAG,KAAK,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,CAAA;IAClD,4EAA4E;IAC5E,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAA;CAClB,CAAC;;YAvBQ,OAAO;UAJT,MAAM;WAUL,SAAS,GAAG,MAAM;UAGnB,QAAQ,GAAG,OAAO;eAXb,MAAM;cAwBP,OAAO;YAHT,KAAK,GAAG,KAAK,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM;iBAjBpC,OAAO;eAET,OAAO;eASP,OAAO;mBAQH,MAAM;;;;AAyTvB,wBASG"}
|
package/dist/i18n/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ declare const bagelinkLocales: {
|
|
|
22
22
|
of: string;
|
|
23
23
|
prev: string;
|
|
24
24
|
next: string;
|
|
25
|
+
perPage: string;
|
|
25
26
|
};
|
|
26
27
|
form: {
|
|
27
28
|
required: string;
|
|
@@ -496,6 +497,10 @@ declare const bagelinkLocales: {
|
|
|
496
497
|
yahoo: string;
|
|
497
498
|
ics: string;
|
|
498
499
|
};
|
|
500
|
+
charts: {
|
|
501
|
+
total: string;
|
|
502
|
+
share: string;
|
|
503
|
+
};
|
|
499
504
|
};
|
|
500
505
|
readonly he: {
|
|
501
506
|
modalConfirm: {
|
|
@@ -517,6 +522,7 @@ declare const bagelinkLocales: {
|
|
|
517
522
|
of: string;
|
|
518
523
|
prev: string;
|
|
519
524
|
next: string;
|
|
525
|
+
perPage: string;
|
|
520
526
|
};
|
|
521
527
|
form: {
|
|
522
528
|
required: string;
|
|
@@ -1012,6 +1018,10 @@ declare const bagelinkLocales: {
|
|
|
1012
1018
|
yahoo: string;
|
|
1013
1019
|
ics: string;
|
|
1014
1020
|
};
|
|
1021
|
+
charts: {
|
|
1022
|
+
total: string;
|
|
1023
|
+
share: string;
|
|
1024
|
+
};
|
|
1015
1025
|
};
|
|
1016
1026
|
readonly it: {
|
|
1017
1027
|
modalConfirm: {
|
package/dist/i18n/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/i18n/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,UAAU,CAAA;AAE9C,OAAO,EAAE,MAAM,mBAAmB,CAAA;AAOlC,MAAM,MAAM,aAAa,GAAG,OAAO,EAAE,CAAA;AAGrC,QAAA,MAAM,eAAe
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/i18n/index.ts"],"names":[],"mappings":"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"}
|