@bagelink/vue 1.15.63 → 1.15.65
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/AccordionItem.vue.d.ts.map +1 -1
- package/dist/components/Avatar.vue.d.ts +6 -1
- package/dist/components/Avatar.vue.d.ts.map +1 -1
- package/dist/components/Badge.vue.d.ts.map +1 -1
- package/dist/components/Card.vue.d.ts +7 -0
- package/dist/components/Card.vue.d.ts.map +1 -1
- package/dist/components/Dropdown.vue.d.ts.map +1 -1
- package/dist/components/EmptyState.vue.d.ts +43 -0
- package/dist/components/EmptyState.vue.d.ts.map +1 -0
- package/dist/components/Icon/Icon.vue.d.ts +13 -0
- package/dist/components/Icon/Icon.vue.d.ts.map +1 -1
- package/dist/components/Image.vue.d.ts +26 -1
- package/dist/components/Image.vue.d.ts.map +1 -1
- package/dist/components/ListItem.vue.d.ts +9 -9
- package/dist/components/ListItem.vue.d.ts.map +1 -1
- package/dist/components/Menu.vue.d.ts.map +1 -1
- package/dist/components/Swiper.vue.d.ts +3 -3
- package/dist/components/calendar/CalendarPopover.vue.d.ts +10 -0
- package/dist/components/calendar/CalendarPopover.vue.d.ts.map +1 -1
- package/dist/components/charts/BarChart.vue.d.ts +34 -0
- package/dist/components/charts/BarChart.vue.d.ts.map +1 -0
- package/dist/components/charts/ChartTooltip.vue.d.ts +33 -0
- package/dist/components/charts/ChartTooltip.vue.d.ts.map +1 -0
- package/dist/components/charts/Donut.vue.d.ts +53 -0
- package/dist/components/charts/Donut.vue.d.ts.map +1 -0
- package/dist/components/charts/Funnel.vue.d.ts +53 -0
- package/dist/components/charts/Funnel.vue.d.ts.map +1 -0
- package/dist/components/charts/Gauge.vue.d.ts +28 -0
- package/dist/components/charts/Gauge.vue.d.ts.map +1 -0
- package/dist/components/charts/LineChart.vue.d.ts +37 -0
- package/dist/components/charts/LineChart.vue.d.ts.map +1 -0
- package/dist/components/charts/RadialBars.vue.d.ts +34 -0
- package/dist/components/charts/RadialBars.vue.d.ts.map +1 -0
- package/dist/components/charts/RankBars.vue.d.ts +27 -0
- package/dist/components/charts/RankBars.vue.d.ts.map +1 -0
- package/dist/components/charts/Sparkline.vue.d.ts +25 -0
- package/dist/components/charts/Sparkline.vue.d.ts.map +1 -0
- package/dist/components/charts/StatCard.vue.d.ts +28 -0
- package/dist/components/charts/StatCard.vue.d.ts.map +1 -0
- package/dist/components/charts/core/data.d.ts +46 -0
- package/dist/components/charts/core/data.d.ts.map +1 -0
- package/dist/components/charts/core/format.d.ts +13 -0
- package/dist/components/charts/core/format.d.ts.map +1 -0
- package/dist/components/charts/core/palette.d.ts +19 -0
- package/dist/components/charts/core/palette.d.ts.map +1 -0
- package/dist/components/charts/core/uid.d.ts +2 -0
- package/dist/components/charts/core/uid.d.ts.map +1 -0
- package/dist/components/charts/core/useChartAnim.d.ts +11 -0
- package/dist/components/charts/core/useChartAnim.d.ts.map +1 -0
- package/dist/components/charts/core/useChartFrame.d.ts +21 -0
- package/dist/components/charts/core/useChartFrame.d.ts.map +1 -0
- package/dist/components/charts/core/useScale.d.ts +16 -0
- package/dist/components/charts/core/useScale.d.ts.map +1 -0
- package/dist/components/charts/index.d.ts +12 -0
- package/dist/components/charts/index.d.ts.map +1 -0
- package/dist/components/form/inputs/RadioGroup.vue.d.ts +1 -0
- package/dist/components/form/inputs/RadioGroup.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RangeInput.vue.d.ts +13 -4
- package/dist/components/form/inputs/RangeInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts +3 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/layout/Layout.vue.d.ts +1 -1
- package/dist/components/layout/Layout.vue.d.ts.map +1 -1
- package/dist/components/layout/Panel.vue.d.ts +1 -1
- package/dist/components/layout/Panel.vue.d.ts.map +1 -1
- package/dist/components/layout/Timeline.types.d.ts +9 -0
- package/dist/components/layout/Timeline.types.d.ts.map +1 -0
- package/dist/components/layout/Timeline.vue.d.ts +42 -0
- package/dist/components/layout/Timeline.vue.d.ts.map +1 -0
- package/dist/components/layout/TimelineItem.vue.d.ts +37 -0
- package/dist/components/layout/TimelineItem.vue.d.ts.map +1 -0
- package/dist/components/layout/index.d.ts +3 -0
- package/dist/components/layout/index.d.ts.map +1 -1
- package/dist/dialog/Dialog.vue.d.ts +4 -0
- package/dist/dialog/Dialog.vue.d.ts.map +1 -1
- package/dist/index.cjs +110 -116
- package/dist/index.mjs +38059 -37009
- package/dist/style.css +1 -1
- package/package.json +2 -1
- package/src/components/AccordionItem.vue +24 -22
- package/src/components/Avatar.vue +49 -11
- package/src/components/Badge.vue +4 -7
- package/src/components/Card.vue +32 -2
- package/src/components/Dropdown.vue +14 -3
- package/src/components/EmptyState.vue +91 -0
- package/src/components/Icon/Icon.vue +118 -25
- package/src/components/Image.vue +70 -3
- package/src/components/ListItem.vue +43 -22
- package/src/components/Menu.vue +10 -2
- package/src/components/charts/BarChart.vue +197 -0
- package/src/components/charts/ChartTooltip.vue +74 -0
- package/src/components/charts/Donut.vue +219 -0
- package/src/components/charts/Funnel.vue +377 -0
- package/src/components/charts/Gauge.vue +90 -0
- package/src/components/charts/LineChart.vue +255 -0
- package/src/components/charts/RadialBars.vue +99 -0
- package/src/components/charts/RankBars.vue +72 -0
- package/src/components/charts/Sparkline.vue +90 -0
- package/src/components/charts/StatCard.vue +84 -0
- package/src/components/charts/core/data.ts +95 -0
- package/src/components/charts/core/format.ts +64 -0
- package/src/components/charts/core/palette.ts +52 -0
- package/src/components/charts/core/uid.ts +6 -0
- package/src/components/charts/core/useChartAnim.ts +60 -0
- package/src/components/charts/core/useChartFrame.ts +49 -0
- package/src/components/charts/core/useScale.ts +39 -0
- package/src/components/charts/index.ts +12 -0
- package/src/components/form/inputs/RadioGroup.vue +2 -1
- package/src/components/form/inputs/RangeInput.vue +43 -15
- package/src/components/form/inputs/SelectInput.vue +1 -19
- package/src/components/index.ts +3 -1
- package/src/components/layout/Timeline.types.ts +9 -0
- package/src/components/layout/Timeline.vue +54 -0
- package/src/components/layout/TimelineItem.vue +93 -0
- package/src/components/layout/index.ts +3 -0
- package/src/dialog/Dialog.vue +29 -1
- package/src/styles/bagel.css +1 -0
- package/src/styles/gradients.css +181 -0
- package/src/styles/layout.css +9 -0
- package/src/styles/theme.css +1 -1
- package/dist/components/analytics/BarChart.vue.d.ts +0 -47
- package/dist/components/analytics/BarChart.vue.d.ts.map +0 -1
- package/dist/components/analytics/KpiCard.vue.d.ts +0 -24
- package/dist/components/analytics/KpiCard.vue.d.ts.map +0 -1
- package/dist/components/analytics/LineChart.vue.d.ts +0 -35
- package/dist/components/analytics/LineChart.vue.d.ts.map +0 -1
- package/dist/components/analytics/PieChart.vue.d.ts +0 -53
- package/dist/components/analytics/PieChart.vue.d.ts.map +0 -1
- package/dist/components/analytics/index.d.ts +0 -5
- package/dist/components/analytics/index.d.ts.map +0 -1
- package/src/components/analytics/BarChart.vue +0 -262
- package/src/components/analytics/KpiCard.vue +0 -84
- package/src/components/analytics/LineChart.vue +0 -357
- package/src/components/analytics/PieChart.vue +0 -544
- package/src/components/analytics/index.ts +0 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AccordionItem.vue.d.ts","sourceRoot":"","sources":["../../src/components/AccordionItem.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AccordionItem.vue.d.ts","sourceRoot":"","sources":["../../src/components/AccordionItem.vue"],"names":[],"mappings":"AAmLA,KAAK,WAAW,GAAG;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,QAAQ,CAAC,EAAE,aAAa,GAAG,YAAY,CAAA;IACvC,YAAY,CAAC,EAAE,OAAO,GAAG,KAAK,CAAA;IAC9B,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,SAAS,CAAC,EAAE,MAAM,CAAA;CAClB,CAAC;AAsDF,iBAAS,cAAc;WA8FT,OAAO,IAA6B;;sBAXxB,GAAG;yBACC,GAAG;;;;EAehC;AAeD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;6FAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -10,9 +10,14 @@ type __VLS_Props = {
|
|
|
10
10
|
square?: boolean | number;
|
|
11
11
|
/** Theme color → tinted background + matching icon/text color (e.g. an icon chip). */
|
|
12
12
|
color?: ThemeType;
|
|
13
|
+
/** Presence/status dot in the corner. `true` = green "online", or a ThemeType
|
|
14
|
+
(e.g. 'gray' offline, 'orange' away, 'red' busy). */
|
|
15
|
+
status?: boolean | ThemeType;
|
|
16
|
+
/** Accessible label / tooltip for the status dot. */
|
|
17
|
+
statusTitle?: string;
|
|
13
18
|
};
|
|
14
19
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
15
20
|
size: number;
|
|
16
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {},
|
|
21
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
22
|
export default _default;
|
|
18
23
|
//# sourceMappingURL=Avatar.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Avatar.vue.d.ts","sourceRoot":"","sources":["../../src/components/Avatar.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Avatar.vue.d.ts","sourceRoot":"","sources":["../../src/components/Avatar.vue"],"names":[],"mappings":"AA+GA,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAKxD,KAAK,WAAW,GAAG;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,uFAAuF;IACvF,MAAM,CAAC,EAAE,OAAO,GAAG,MAAM,CAAA;IACzB,sFAAsF;IACtF,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB;4DACwD;IACxD,MAAM,CAAC,EAAE,OAAO,GAAG,SAAS,CAAA;IAC5B,qDAAqD;IACrD,WAAW,CAAC,EAAE,MAAM,CAAA;CACpB,CAAC;;UAVM,MAAM;;AAgId,wBAOG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Badge.vue.d.ts","sourceRoot":"","sources":["../../src/components/Badge.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Badge.vue.d.ts","sourceRoot":"","sources":["../../src/components/Badge.vue"],"names":[],"mappings":"AAuMA,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAIxD,OAAO,2BAA2B,CAAA;AAElC,UAAU,OAAO;IAChB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,OAAO,EAAE,MAAM,IAAI,CAAA;IACnB,KAAK,CAAC,EAAE,MAAM,CAAA;CACd;AAED,KAAK,WAAW,GAAG;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,OAAO,CAAC,EAAE,QAAQ,CAAA;IAClB,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,SAAS,GAAG,OAAO,CAAA;IAChD,0EAA0E;IAC1E,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB;yCACqC;IACrC,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,qEAAqE;IACrE,GAAG,CAAC,EAAE,OAAO,CAAA;IACb,gCAAgC;IAChC,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,GAAG,CAAC,EAAE,OAAO,CAAA;IACb,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;IACzB,wDAAwD;IACxD,EAAE,CAAC,EAAE,OAAO,CAAA;IACZ,EAAE,CAAC,EAAE,OAAO,CAAA;IACZ,SAAS,CAAC,EAAE,OAAO,CAAA;CACnB,CAAC;AAoDF,iBAAS,cAAc;WAiIT,OAAO,IAA6B;;;;;;YAVpB,GAAG;;;;EAehC;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,6SAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
2
|
label?: string;
|
|
3
|
+
/** Card header title. Pairs with the `#header-action` slot (e.g. a "View all"
|
|
4
|
+
button or a more-menu) to render a divided header row — replacing the common
|
|
5
|
+
hand-rolled `<div class="flex space-between border-bottom">…</div>` pattern.
|
|
6
|
+
For full control use the `#header` slot instead. */
|
|
7
|
+
title?: string;
|
|
3
8
|
thin?: boolean;
|
|
4
9
|
outline?: boolean;
|
|
5
10
|
h100?: boolean;
|
|
@@ -13,6 +18,8 @@ type __VLS_Props = {
|
|
|
13
18
|
declare function __VLS_template(): {
|
|
14
19
|
attrs: Partial<{}>;
|
|
15
20
|
slots: {
|
|
21
|
+
header?(_: {}): any;
|
|
22
|
+
'header-action'?(_: {}): any;
|
|
16
23
|
default?(_: {}): any;
|
|
17
24
|
};
|
|
18
25
|
refs: {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Card.vue.d.ts","sourceRoot":"","sources":["../../src/components/Card.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Card.vue.d.ts","sourceRoot":"","sources":["../../src/components/Card.vue"],"names":[],"mappings":"AAgKA,KAAK,WAAW,GAAG;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd;;;2DAGuD;IACvD,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,EAAE,CAAC,EACA,MAAM,GACN,OAAO,GACP,MAAM,GACN,SAAS,GACT,WAAW,GACX,SAAS,GACT,QAAQ,GACR,SAAS,GACT,MAAM,GACN,OAAO,GACP,aAAa,CAAA;CAChB,CAAC;AAkBF,iBAAS,cAAc;WAgFT,OAAO,IAA6B;;wBAZtB,GAAG;iCACM,GAAG;yBACX,GAAG;;;;EAe/B;AAUD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,kSAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Dropdown.vue.d.ts","sourceRoot":"","sources":["../../src/components/Dropdown.vue"],"names":[],"mappings":"AAEA;
|
|
1
|
+
{"version":3,"file":"Dropdown.vue.d.ts","sourceRoot":"","sources":["../../src/components/Dropdown.vue"],"names":[],"mappings":"AAEA;AA0fA,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAKxD,MAAM,MAAM,IAAI,GAAG,KAAK,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,CAAA;AACtD,MAAM,MAAM,SAAS,GAAG,OAAO,GAAG,KAAK,CAAA;AACvC,MAAM,MAAM,gBAAgB,GAAG,MAAM,GAAG,IAAI,GAAG,GAAG,IAAI,IAAI,SAAS,EAAE,CAAA;AACrE,MAAM,MAAM,YAAY,GAAG,OAAO,GAAG,OAAO,CAAA;AAO5C,KAAK,WAAW,GAAG;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,OAAO,CAAC,EAAE,QAAQ,CAAA;IAClB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,SAAS,CAAC,EAAE,gBAAgB,CAAA;IAC5B,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,YAAY,EAAE,CAAA;IACzB,YAAY,CAAC,EAAE,YAAY,EAAE,CAAA;IAC7B,YAAY,CAAC,EAAE,YAAY,EAAE,CAAA;IAC7B,cAAc,CAAC,EAAE,YAAY,EAAE,CAAA;IAC/B,kBAAkB,CAAC,EAAE,YAAY,EAAE,CAAA;IACnC,kBAAkB,CAAC,EAAE,YAAY,EAAE,CAAA;IACnC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,GAAG;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAA;IAC/C,0GAA0G;IAC1G,WAAW,CAAC,EAAE,OAAO,GAAG,IAAI,CAAA;CAC5B,CAAC;AAiBF,QAAA,MAAM,KAAK,2DAA0D,CAAA;AA2ErE,iBAAe,YAAY,kBA+B1B;AA0ED,iBAAS,IAAI,SAAqB;AAsJlC,KAAK,iBAAiB,GAAG;IACzB,OAAO,CAAC,EAAE,OAAO,KAAK,CAAC,OAAO,CAAC,CAAC;CAC/B,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA4HT,OAAO,IAA6B;;;;;;YAdrB,GAAG;;;;;YACF,GAAG;;;;;;;EAkBhC;AA4BD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;UAxhBb,OAAO;UADP,OAAO;eAUF,gBAAgB;sBACT,OAAO;cAEf,OAAO;cACP,YAAY,EAAE;oBAGR,YAAY,EAAE;wBACV,YAAY,EAAE;wBACd,YAAY,EAAE;UAE5B,OAAO;;;;OA8gBb,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { IconType } from '..';
|
|
2
|
+
/**
|
|
3
|
+
* Placeholder for empty lists / no-results / zero states.
|
|
4
|
+
* - `icon` + `title` + `description` for the common case.
|
|
5
|
+
* - `actionLabel` (+ `to`/`href` or @action) renders a primary button.
|
|
6
|
+
* - Slots: `#icon`, default (body text), `#action` for full control.
|
|
7
|
+
* - `compact` for tight inline spots (table empties, small cards).
|
|
8
|
+
*/
|
|
9
|
+
type __VLS_Props = {
|
|
10
|
+
icon?: IconType | 'none';
|
|
11
|
+
title?: string;
|
|
12
|
+
description?: string;
|
|
13
|
+
actionLabel?: string;
|
|
14
|
+
actionIcon?: IconType;
|
|
15
|
+
to?: string | Record<string, any>;
|
|
16
|
+
href?: string;
|
|
17
|
+
compact?: boolean;
|
|
18
|
+
class?: string;
|
|
19
|
+
};
|
|
20
|
+
declare function __VLS_template(): {
|
|
21
|
+
attrs: Partial<{}>;
|
|
22
|
+
slots: {
|
|
23
|
+
icon?(_: {}): any;
|
|
24
|
+
default?(_: {}): any;
|
|
25
|
+
action?(_: {}): any;
|
|
26
|
+
};
|
|
27
|
+
refs: {};
|
|
28
|
+
rootEl: HTMLDivElement;
|
|
29
|
+
};
|
|
30
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
31
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
32
|
+
action: () => any;
|
|
33
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
34
|
+
onAction?: (() => any) | undefined;
|
|
35
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
36
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
37
|
+
export default _default;
|
|
38
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
39
|
+
new (): {
|
|
40
|
+
$slots: S;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
//# sourceMappingURL=EmptyState.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EmptyState.vue.d.ts","sourceRoot":"","sources":["../../src/components/EmptyState.vue"],"names":[],"mappings":"AA8FA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAA;AAK7C;;;;;;GAMG;AACH,KAAK,WAAW,GAAG;IAClB,IAAI,CAAC,EAAE,QAAQ,GAAG,MAAM,CAAA;IACxB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,UAAU,CAAC,EAAE,QAAQ,CAAA;IACrB,EAAE,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IACjC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,KAAK,CAAC,EAAE,MAAM,CAAA;CACd,CAAC;AAoBF,iBAAS,cAAc;WAuGT,OAAO,IAA6B;;sBAZxB,GAAG;yBACA,GAAG;wBACJ,GAAG;;;;EAe9B;AAaD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;6FAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { IconType } from '../..';
|
|
2
|
+
type AnimateType = 'spin' | 'pulse' | 'bounce' | 'fade-in' | 'slide-up' | 'rotate-in';
|
|
3
|
+
type TransitionType = 'slide-up' | 'rotate' | 'scale' | 'fade';
|
|
2
4
|
type __VLS_Props = {
|
|
3
5
|
icon?: IconType;
|
|
4
6
|
name?: IconType;
|
|
@@ -9,9 +11,20 @@ type __VLS_Props = {
|
|
|
9
11
|
weight?: number | string;
|
|
10
12
|
fontAwesome?: boolean;
|
|
11
13
|
fill?: boolean;
|
|
14
|
+
/** Entrance / looping effect. Pure CSS, opt-in. e.g. `animate="spin"`. */
|
|
15
|
+
animate?: AnimateType;
|
|
16
|
+
/** Seconds for one cycle of `animate` (spin/pulse/etc.). */
|
|
17
|
+
animateSpeed?: number;
|
|
18
|
+
/** Play the `animate` effect once instead of looping. */
|
|
19
|
+
animateOnce?: boolean;
|
|
20
|
+
/** Animate the glyph whenever the icon changes (e.g. a play/pause toggle).
|
|
21
|
+
Defaults ON: pass `transition="rotate"` to pick a style, or
|
|
22
|
+
`:transition="false"` to disable. */
|
|
23
|
+
transition?: boolean | TransitionType;
|
|
12
24
|
};
|
|
13
25
|
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
14
26
|
size: number | string;
|
|
27
|
+
transition: boolean | TransitionType;
|
|
15
28
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
29
|
export default _default;
|
|
17
30
|
//# sourceMappingURL=Icon.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Icon.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Icon/Icon.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Icon.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Icon/Icon.vue"],"names":[],"mappings":"AA0QA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAA;AAK7C,KAAK,WAAW,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,UAAU,GAAG,WAAW,CAAA;AACrF,KAAK,cAAc,GAAG,UAAU,GAAG,QAAQ,GAAG,OAAO,GAAG,MAAM,CAAA;AAE9D,KAAK,WAAW,GAAG;IAClB,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACtB,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACxB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,0EAA0E;IAC1E,OAAO,CAAC,EAAE,WAAW,CAAA;IACrB,4DAA4D;IAC5D,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,yDAAyD;IACzD,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB;;4CAEwC;IACxC,UAAU,CAAC,EAAE,OAAO,GAAG,cAAc,CAAA;CACrC,CAAC;;UAjBM,MAAM,GAAG,MAAM;gBAgBT,OAAO,GAAG,cAAc;;AA6NtC,wBAQG"}
|
|
@@ -6,12 +6,37 @@ interface ImageProps {
|
|
|
6
6
|
height?: string | number;
|
|
7
7
|
caption?: string;
|
|
8
8
|
modelValue?: string;
|
|
9
|
+
/** Aspect ratio, e.g. "1", "2-3", "16-9" — maps to the `ratio-*` utility (keeps a stable box while loading). */
|
|
10
|
+
ratio?: string;
|
|
11
|
+
/** Gradient shown behind/instead of the image — a tone (`purple`), a CSS gradient string, or `[from, to]`. Doubles as the fallback when the image fails or is absent. */
|
|
12
|
+
gradient?: string | [string, string];
|
|
13
|
+
/** object-fit for the image. @default 'cover' when `ratio`/`gradient` is set. */
|
|
14
|
+
fit?: 'cover' | 'contain' | 'fill' | 'none' | 'scale-down';
|
|
15
|
+
/** mix-blend-mode for blending the photo into the gradient (e.g. 'luminosity'). */
|
|
16
|
+
blend?: string;
|
|
17
|
+
/** Rounded corners — true (default radius) or a px radius. */
|
|
18
|
+
rounded?: boolean | number;
|
|
9
19
|
}
|
|
10
20
|
declare global {
|
|
11
21
|
interface Window {
|
|
12
22
|
heic2any: any;
|
|
13
23
|
}
|
|
14
24
|
}
|
|
15
|
-
declare
|
|
25
|
+
declare function __VLS_template(): {
|
|
26
|
+
attrs: Partial<{}>;
|
|
27
|
+
slots: {
|
|
28
|
+
default?(_: {}): any;
|
|
29
|
+
};
|
|
30
|
+
refs: {};
|
|
31
|
+
rootEl: any;
|
|
32
|
+
};
|
|
33
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
34
|
+
declare const __VLS_component: import('vue').DefineComponent<ImageProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ImageProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
35
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
16
36
|
export default _default;
|
|
37
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
38
|
+
new (): {
|
|
39
|
+
$slots: S;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
17
42
|
//# sourceMappingURL=Image.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Image.vue.d.ts","sourceRoot":"","sources":["../../src/components/Image.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Image.vue.d.ts","sourceRoot":"","sources":["../../src/components/Image.vue"],"names":[],"mappings":"AAkOA,UAAU,UAAU;IACnB,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACvB,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACxB,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,gHAAgH;IAChH,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,yKAAyK;IACzK,QAAQ,CAAC,EAAE,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACpC,iFAAiF;IACjF,GAAG,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,YAAY,CAAA;IAC1D,mFAAmF;IACnF,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,8DAA8D;IAC9D,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,CAAA;CAC1B;AAED,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,MAAM;QACf,QAAQ,EAAE,GAAG,CAAA;KACb;CACD;AA2GD,iBAAS,cAAc;WA6IT,OAAO,IAA6B;;yBAXpB,GAAG;;;;EAgBhC;AAkBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,gSAMnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IconType } from '..';
|
|
1
|
+
import { IconType, ThemeType } from '..';
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
src?: string;
|
|
4
4
|
showAvatar?: boolean;
|
|
@@ -17,13 +17,14 @@ type __VLS_Props = {
|
|
|
17
17
|
fullWidth?: boolean;
|
|
18
18
|
ellipsis?: boolean;
|
|
19
19
|
ripple?: boolean;
|
|
20
|
-
/**
|
|
21
|
-
to the
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
20
|
+
/** Theme accent for the leading icon-chip and hover/active tint.
|
|
21
|
+
Defaults to the surface's primary. e.g. `color="purple"`. */
|
|
22
|
+
color?: ThemeType;
|
|
23
|
+
/** Card-style row: rounded, no divider, tinted hover. Use for standalone
|
|
24
|
+
selectable lists (vs. the default flush divided rows in a panel). */
|
|
25
|
+
rounded?: boolean;
|
|
26
|
+
/** Visually mark as selected (for non-router selection lists). */
|
|
27
|
+
active?: boolean;
|
|
27
28
|
/** Render as an interactive row (cursor + hover) without needing a handler.
|
|
28
29
|
Implied when `to`, `href`, or `onClick` is set. */
|
|
29
30
|
clickable?: boolean;
|
|
@@ -46,7 +47,6 @@ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
|
46
47
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
47
48
|
ellipsis: boolean;
|
|
48
49
|
ripple: boolean;
|
|
49
|
-
fullRow: boolean;
|
|
50
50
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
51
51
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
52
52
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ListItem.vue.d.ts","sourceRoot":"","sources":["../../src/components/ListItem.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ListItem.vue.d.ts","sourceRoot":"","sources":["../../src/components/ListItem.vue"],"names":[],"mappings":"AAwRA,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,eAAe,CAAA;AAIxD,KAAK,WAAW,GAAG;IACjB,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,UAAU,CAAC,EAAE,OAAO,CAAA;IACpB,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,OAAO,CAAC,EAAE,QAAQ,CAAA;IAClB,MAAM,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAA;IAC3B,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB;oEACgE;IAChE,KAAK,CAAC,EAAE,SAAS,CAAA;IACjB;4EACwE;IACxE,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,kEAAkE;IAClE,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB;0DACsD;IACtD,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;CACpB,CAAC;AAwCH,iBAAS,cAAc;WAiKT,OAAO,IAA6B;;uBAfvB,GAAG;uBACH,GAAG;sBACH,GAAG;yBACA,GAAG;0BACF,GAAG;qBACR,GAAG;;;;EAe5B;AAcD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;cA3OR,OAAO;YACT,OAAO;wFAkPhB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Menu.vue.d.ts","sourceRoot":"","sources":["../../src/components/Menu.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Menu.vue.d.ts","sourceRoot":"","sources":["../../src/components/Menu.vue"],"names":[],"mappings":"AAgFA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,eAAe,CAAA;AAI5C,KAAK,WAAW,GAAG;IAAE,KAAK,EAAE,OAAO,EAAE,CAAA;CAAE,CAAC;AAKxC,iBAAS,cAAc;WA2NT,OAAO,IAA6B;;qBAVxB,GAAG;;;;EAe5B;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,6SAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -6,10 +6,10 @@ declare const _default: <T = any>(__VLS_props: NonNullable<Awaited<typeof __VLS_
|
|
|
6
6
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>, "onUpdate:index"> & {
|
|
7
7
|
items?: T[];
|
|
8
8
|
index?: number;
|
|
9
|
-
variant?: "cards" | "default" | "
|
|
9
|
+
variant?: "cards" | "default" | "hero" | "testimonial" | "gallery" | "coverflow";
|
|
10
10
|
slideWidth?: number | string;
|
|
11
|
-
effect?: "cards" | "flip" | "
|
|
12
|
-
direction?: "
|
|
11
|
+
effect?: "cards" | "flip" | "fade" | "coverflow" | "slide" | "cube";
|
|
12
|
+
direction?: "horizontal" | "vertical";
|
|
13
13
|
speed?: number;
|
|
14
14
|
loop?: boolean;
|
|
15
15
|
initialSlide?: number;
|
|
@@ -24,6 +24,7 @@ declare function __VLS_template(): {
|
|
|
24
24
|
$data: {};
|
|
25
25
|
$props: {
|
|
26
26
|
readonly label?: string | undefined;
|
|
27
|
+
readonly title?: string | undefined;
|
|
27
28
|
readonly thin?: boolean | undefined;
|
|
28
29
|
readonly outline?: boolean | undefined;
|
|
29
30
|
readonly h100?: boolean | undefined;
|
|
@@ -48,6 +49,7 @@ declare function __VLS_template(): {
|
|
|
48
49
|
$el: any;
|
|
49
50
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
50
51
|
label?: string;
|
|
52
|
+
title?: string;
|
|
51
53
|
thin?: boolean;
|
|
52
54
|
outline?: boolean;
|
|
53
55
|
h100?: boolean;
|
|
@@ -79,6 +81,7 @@ declare function __VLS_template(): {
|
|
|
79
81
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
80
82
|
} & Readonly<{}> & Omit<Readonly<{
|
|
81
83
|
label?: string;
|
|
84
|
+
title?: string;
|
|
82
85
|
thin?: boolean;
|
|
83
86
|
outline?: boolean;
|
|
84
87
|
h100?: boolean;
|
|
@@ -90,6 +93,8 @@ declare function __VLS_template(): {
|
|
|
90
93
|
bg?: "gray" | "light" | "dark" | "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "white" | "transparent";
|
|
91
94
|
}> & Readonly<{}>, never> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
92
95
|
$slots: {
|
|
96
|
+
header?(_: {}): any;
|
|
97
|
+
'header-action'?(_: {}): any;
|
|
93
98
|
default?(_: {}): any;
|
|
94
99
|
};
|
|
95
100
|
}) | null;
|
|
@@ -109,6 +114,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
109
114
|
$data: {};
|
|
110
115
|
$props: {
|
|
111
116
|
readonly label?: string | undefined;
|
|
117
|
+
readonly title?: string | undefined;
|
|
112
118
|
readonly thin?: boolean | undefined;
|
|
113
119
|
readonly outline?: boolean | undefined;
|
|
114
120
|
readonly h100?: boolean | undefined;
|
|
@@ -133,6 +139,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
133
139
|
$el: any;
|
|
134
140
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
135
141
|
label?: string;
|
|
142
|
+
title?: string;
|
|
136
143
|
thin?: boolean;
|
|
137
144
|
outline?: boolean;
|
|
138
145
|
h100?: boolean;
|
|
@@ -164,6 +171,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
164
171
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
165
172
|
} & Readonly<{}> & Omit<Readonly<{
|
|
166
173
|
label?: string;
|
|
174
|
+
title?: string;
|
|
167
175
|
thin?: boolean;
|
|
168
176
|
outline?: boolean;
|
|
169
177
|
h100?: boolean;
|
|
@@ -175,6 +183,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
175
183
|
bg?: "gray" | "light" | "dark" | "primary" | "secondary" | "success" | "danger" | "warning" | "info" | "white" | "transparent";
|
|
176
184
|
}> & Readonly<{}>, never> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
177
185
|
$slots: {
|
|
186
|
+
header?(_: {}): any;
|
|
187
|
+
'header-action'?(_: {}): any;
|
|
178
188
|
default?(_: {}): any;
|
|
179
189
|
};
|
|
180
190
|
}) | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CalendarPopover.vue.d.ts","sourceRoot":"","sources":["../../../src/components/calendar/CalendarPopover.vue"],"names":[],"mappings":"AAuGA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAIpD,KAAK,WAAW,GAAG;IAClB,KAAK,CAAC,EAAE,aAAa,CAAA;IACrB,aAAa,CAAC,EAAE,WAAW,CAAA;IAC3B,QAAQ,CAAC,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAA;IACxC,IAAI,EAAE,OAAO,CAAA;IACb,mBAAmB,EAAE,OAAO,CAAA;CAC5B,CAAC;AA+CF,iBAAS,YAAY,SAEpB;AAID,iBAAS,cAAc;WA0DT,OAAO,IAA6B;;;;;YAXhB,GAAG
|
|
1
|
+
{"version":3,"file":"CalendarPopover.vue.d.ts","sourceRoot":"","sources":["../../../src/components/calendar/CalendarPopover.vue"],"names":[],"mappings":"AAuGA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAA;AAIpD,KAAK,WAAW,GAAG;IAClB,KAAK,CAAC,EAAE,aAAa,CAAA;IACrB,aAAa,CAAC,EAAE,WAAW,CAAA;IAC3B,QAAQ,CAAC,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,CAAA;IACxC,IAAI,EAAE,OAAO,CAAA;IACb,mBAAmB,EAAE,OAAO,CAAA;CAC5B,CAAC;AA+CF,iBAAS,YAAY,SAEpB;AAID,iBAAS,cAAc;WA0DT,OAAO,IAA6B;;;;;YAXhB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAqDukkB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;EArCjukB;AAaD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAuBulkB,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;OAfhukB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { RawPoint, RawSeries } from './core/data';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
data?: RawPoint[];
|
|
4
|
+
series?: RawSeries[];
|
|
5
|
+
labels?: (string | number)[];
|
|
6
|
+
color?: string;
|
|
7
|
+
stacked?: boolean;
|
|
8
|
+
/** Soft top→bottom gradient on bars (opt-in; flat by default). */
|
|
9
|
+
gradient?: boolean;
|
|
10
|
+
height?: number;
|
|
11
|
+
grid?: boolean;
|
|
12
|
+
radius?: number;
|
|
13
|
+
currency?: string;
|
|
14
|
+
prefix?: string;
|
|
15
|
+
suffix?: string;
|
|
16
|
+
maxLabels?: number;
|
|
17
|
+
/** Minimum width per category (px). When the categories need more room than
|
|
18
|
+
the container has, the chart keeps this width per bar group and scrolls
|
|
19
|
+
horizontally instead of cramming — handy on mobile. Set 0 to disable. */
|
|
20
|
+
minBarWidth?: number;
|
|
21
|
+
animated?: boolean;
|
|
22
|
+
};
|
|
23
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
24
|
+
height: number;
|
|
25
|
+
grid: boolean;
|
|
26
|
+
animated: boolean;
|
|
27
|
+
maxLabels: number;
|
|
28
|
+
radius: number;
|
|
29
|
+
minBarWidth: number;
|
|
30
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
31
|
+
el: HTMLDivElement;
|
|
32
|
+
}, HTMLDivElement>;
|
|
33
|
+
export default _default;
|
|
34
|
+
//# sourceMappingURL=BarChart.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BarChart.vue.d.ts","sourceRoot":"","sources":["../../../src/components/charts/BarChart.vue"],"names":[],"mappings":"AAgNA,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AAStD,KAAK,WAAW,GAAG;IAClB,IAAI,CAAC,EAAE,QAAQ,EAAE,CAAA;IACjB,MAAM,CAAC,EAAE,SAAS,EAAE,CAAA;IACpB,MAAM,CAAC,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,CAAA;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,kEAAkE;IAClE,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB;;gFAE4E;IAC5E,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,QAAQ,CAAC,EAAE,OAAO,CAAA;CAClB,CAAC;;YAZQ,MAAM;UACR,OAAO;cAUH,OAAO;eALN,MAAM;YAJT,MAAM;iBAQD,MAAM;;;;AAsSrB,wBASG"}
|
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
export interface TipRow {
|
|
10
|
+
name: string;
|
|
11
|
+
color?: string;
|
|
12
|
+
value: string;
|
|
13
|
+
}
|
|
14
|
+
export interface TipStat {
|
|
15
|
+
label: string;
|
|
16
|
+
value: string;
|
|
17
|
+
}
|
|
18
|
+
type __VLS_Props = {
|
|
19
|
+
label?: string;
|
|
20
|
+
/** Big focal number (used by single-value charts like the funnel). */
|
|
21
|
+
hero?: string;
|
|
22
|
+
rows?: TipRow[];
|
|
23
|
+
total?: string | null;
|
|
24
|
+
stats?: TipStat[];
|
|
25
|
+
/** Float above the anchor point instead of below it. */
|
|
26
|
+
above?: boolean;
|
|
27
|
+
};
|
|
28
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
29
|
+
rows: TipRow[];
|
|
30
|
+
stats: TipStat[];
|
|
31
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
32
|
+
export default _default;
|
|
33
|
+
//# sourceMappingURL=ChartTooltip.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChartTooltip.vue.d.ts","sourceRoot":"","sources":["../../../src/components/charts/ChartTooltip.vue"],"names":[],"mappings":"AA4EA;;;;;;;GAOG;AACH,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;AAIzD,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;;AAkIlB,wBAQG"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { ThemeType } from '../../types';
|
|
2
|
+
interface Slice {
|
|
3
|
+
label: string;
|
|
4
|
+
value: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
}
|
|
7
|
+
type __VLS_Props = {
|
|
8
|
+
data: Slice[];
|
|
9
|
+
size?: number;
|
|
10
|
+
/** Ring thickness as a fraction of radius (0–1). Ignored when `pie`. */
|
|
11
|
+
thickness?: number;
|
|
12
|
+
pie?: boolean;
|
|
13
|
+
legend?: boolean;
|
|
14
|
+
/** Show the formatted amount column in the legend. Default true. */
|
|
15
|
+
legendValue?: boolean;
|
|
16
|
+
/** Show the percentage column in the legend. Default true. */
|
|
17
|
+
legendPct?: boolean;
|
|
18
|
+
/** Base tone for the slices. Drives the monochrome ramp in `shades` mode. */
|
|
19
|
+
color?: ThemeType | string;
|
|
20
|
+
/** Coloring: `shades` = one tone, lightest→darkest (default, looks premium);
|
|
21
|
+
`multi` = a different tone per slice. Per-slice `color` always wins. */
|
|
22
|
+
mode?: 'shades' | 'multi';
|
|
23
|
+
centerLabel?: string;
|
|
24
|
+
centerValue?: number | string;
|
|
25
|
+
/** Auto-fill center with the total when no centerValue given. */
|
|
26
|
+
showTotal?: boolean;
|
|
27
|
+
currency?: string;
|
|
28
|
+
/** On-slice labels. `false` (default) keeps the chart clean.
|
|
29
|
+
`pct` = %, `value` = amount, `both` = value + %, `full` = name + value + %.
|
|
30
|
+
Each piece is stacked: name (small), value (large), pct (smaller).
|
|
31
|
+
Tiny slices are skipped. */
|
|
32
|
+
labels?: false | 'pct' | 'value' | 'both' | 'full';
|
|
33
|
+
/** Hide on-slice labels for slices below this share (0–1). Default 0.05. */
|
|
34
|
+
labelMinShare?: number;
|
|
35
|
+
animated?: boolean;
|
|
36
|
+
};
|
|
37
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
38
|
+
legend: boolean;
|
|
39
|
+
size: number;
|
|
40
|
+
color: ThemeType | string;
|
|
41
|
+
mode: "shades" | "multi";
|
|
42
|
+
thickness: number;
|
|
43
|
+
animated: boolean;
|
|
44
|
+
labels: false | "pct" | "value" | "both" | "full";
|
|
45
|
+
legendValue: boolean;
|
|
46
|
+
legendPct: boolean;
|
|
47
|
+
showTotal: boolean;
|
|
48
|
+
labelMinShare: number;
|
|
49
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
50
|
+
el: HTMLDivElement;
|
|
51
|
+
}, HTMLDivElement>;
|
|
52
|
+
export default _default;
|
|
53
|
+
//# sourceMappingURL=Donut.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Donut.vue.d.ts","sourceRoot":"","sources":["../../../src/components/charts/Donut.vue"],"names":[],"mappings":"AA4OA,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;;;;AAwTvB,wBASG"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { ThemeType } from '../../types';
|
|
2
|
+
interface Stage {
|
|
3
|
+
label: string;
|
|
4
|
+
value: number;
|
|
5
|
+
color?: ThemeType | string;
|
|
6
|
+
}
|
|
7
|
+
interface SourceSeries {
|
|
8
|
+
name: string;
|
|
9
|
+
color?: ThemeType | string;
|
|
10
|
+
data: number[];
|
|
11
|
+
}
|
|
12
|
+
type __VLS_Props = {
|
|
13
|
+
/** Simple funnel: stages with a single value each. */
|
|
14
|
+
data?: Stage[];
|
|
15
|
+
/** Segmented funnel: stage labels + one series per source. Each series'
|
|
16
|
+
`data[i]` is that source's count at stage i. Splits each band by source. */
|
|
17
|
+
stages?: (string | number)[];
|
|
18
|
+
series?: SourceSeries[];
|
|
19
|
+
/** Continuous flowing silhouette (default). `false` = discrete bars. */
|
|
20
|
+
flow?: boolean;
|
|
21
|
+
/** `vertical` (default): stages stack top→bottom, tapering in width.
|
|
22
|
+
`horizontal`: stages run left→right, tapering in height. */
|
|
23
|
+
orientation?: 'vertical' | 'horizontal';
|
|
24
|
+
/** Base tone; stages shade from strong → light down the funnel. */
|
|
25
|
+
color?: ThemeType | string;
|
|
26
|
+
/** One tone per stage instead of shades. Per-stage `color` wins. */
|
|
27
|
+
mode?: 'shades' | 'multi';
|
|
28
|
+
/** Soft gradient on each segment. Default on. */
|
|
29
|
+
gradient?: boolean;
|
|
30
|
+
/** Height of each stage band (px). */
|
|
31
|
+
bandHeight?: number;
|
|
32
|
+
fromPrev?: boolean;
|
|
33
|
+
fromTop?: boolean;
|
|
34
|
+
currency?: string;
|
|
35
|
+
prefix?: string;
|
|
36
|
+
suffix?: string;
|
|
37
|
+
animated?: boolean;
|
|
38
|
+
};
|
|
39
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
40
|
+
color: ThemeType | string;
|
|
41
|
+
gradient: boolean;
|
|
42
|
+
mode: "shades" | "multi";
|
|
43
|
+
flow: boolean;
|
|
44
|
+
animated: boolean;
|
|
45
|
+
orientation: "vertical" | "horizontal";
|
|
46
|
+
bandHeight: number;
|
|
47
|
+
fromPrev: boolean;
|
|
48
|
+
fromTop: boolean;
|
|
49
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
50
|
+
el: HTMLDivElement;
|
|
51
|
+
}, HTMLDivElement>;
|
|
52
|
+
export default _default;
|
|
53
|
+
//# sourceMappingURL=Funnel.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Funnel.vue.d.ts","sourceRoot":"","sources":["../../../src/components/charts/Funnel.vue"],"names":[],"mappings":"AA6YA,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,SAAS,GAAG,MAAM,CAAA;CAAE;AAC5E,UAAU,YAAY;IAAG,IAAI,EAAE,MAAM,CAAC;IAAC,KAAK,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,EAAE,CAAA;CAAE;AAEnF,KAAK,WAAW,GAAG;IAClB,sDAAsD;IACtD,IAAI,CAAC,EAAE,KAAK,EAAE,CAAA;IACd;mFAC+E;IAC/E,MAAM,CAAC,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,CAAA;IAC5B,MAAM,CAAC,EAAE,YAAY,EAAE,CAAA;IACvB,wEAAwE;IACxE,IAAI,CAAC,EAAE,OAAO,CAAA;IACd;mEAC+D;IAC/D,WAAW,CAAC,EAAE,UAAU,GAAG,YAAY,CAAA;IACvC,mEAAmE;IACnE,KAAK,CAAC,EAAE,SAAS,GAAG,MAAM,CAAA;IAC1B,oEAAoE;IACpE,IAAI,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAA;IACzB,iDAAiD;IACjD,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,sCAAsC;IACtC,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;CAClB,CAAC;;WAbO,SAAS,GAAG,MAAM;cAIf,OAAO;UAFX,QAAQ,GAAG,OAAO;UAPlB,OAAO;cAiBH,OAAO;iBAdJ,UAAU,GAAG,YAAY;gBAQ1B,MAAM;cACR,OAAO;aACR,OAAO;;;;AAqclB,wBASG"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
value: number;
|
|
3
|
+
max?: number;
|
|
4
|
+
min?: number;
|
|
5
|
+
size?: number;
|
|
6
|
+
thickness?: number;
|
|
7
|
+
color?: string;
|
|
8
|
+
label?: string;
|
|
9
|
+
/** Full 360° ring instead of a 270° gauge. */
|
|
10
|
+
full?: boolean;
|
|
11
|
+
/** Show the value text in the center. Default true. */
|
|
12
|
+
showValue?: boolean;
|
|
13
|
+
prefix?: string;
|
|
14
|
+
suffix?: string;
|
|
15
|
+
animated?: boolean;
|
|
16
|
+
};
|
|
17
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
18
|
+
size: number;
|
|
19
|
+
thickness: number;
|
|
20
|
+
animated: boolean;
|
|
21
|
+
max: number;
|
|
22
|
+
min: number;
|
|
23
|
+
showValue: boolean;
|
|
24
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
25
|
+
el: HTMLDivElement;
|
|
26
|
+
}, HTMLDivElement>;
|
|
27
|
+
export default _default;
|
|
28
|
+
//# sourceMappingURL=Gauge.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Gauge.vue.d.ts","sourceRoot":"","sources":["../../../src/components/charts/Gauge.vue"],"names":[],"mappings":"AA0GA,KAAK,WAAW,GAAG;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,8CAA8C;IAC9C,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,uDAAuD;IACvD,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;CAClB,CAAC;;UAXM,MAAM;eACD,MAAM;cASP,OAAO;SAZZ,MAAM;SACN,MAAM;eAQA,OAAO;;;;AAgJpB,wBASG"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { RawPoint, RawSeries } from './core/data';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
data?: RawPoint[];
|
|
4
|
+
series?: RawSeries[];
|
|
5
|
+
labels?: (string | number)[];
|
|
6
|
+
color?: string;
|
|
7
|
+
/** Fill area under each line. */
|
|
8
|
+
area?: boolean;
|
|
9
|
+
/** Use a soft top→bottom gradient for area fills (premium look).
|
|
10
|
+
Implies `area`. On by default when `area`/`stacked` is set. */
|
|
11
|
+
gradient?: boolean;
|
|
12
|
+
/** Stack multi-series areas (implies `area`). Composition over time. */
|
|
13
|
+
stacked?: boolean;
|
|
14
|
+
height?: number;
|
|
15
|
+
/** Show horizontal grid lines + y ticks. */
|
|
16
|
+
grid?: boolean;
|
|
17
|
+
/** Show data-point dots. */
|
|
18
|
+
points?: boolean;
|
|
19
|
+
/** Currency code → formats values as currency. */
|
|
20
|
+
currency?: string;
|
|
21
|
+
prefix?: string;
|
|
22
|
+
suffix?: string;
|
|
23
|
+
/** Max x-axis labels to show (avoids crowding). */
|
|
24
|
+
maxLabels?: number;
|
|
25
|
+
animated?: boolean;
|
|
26
|
+
};
|
|
27
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
28
|
+
height: number;
|
|
29
|
+
grid: boolean;
|
|
30
|
+
animated: boolean;
|
|
31
|
+
points: boolean;
|
|
32
|
+
maxLabels: number;
|
|
33
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
34
|
+
el: HTMLDivElement;
|
|
35
|
+
}, HTMLDivElement>;
|
|
36
|
+
export default _default;
|
|
37
|
+
//# sourceMappingURL=LineChart.vue.d.ts.map
|