@nubisco/ui 1.9.1 → 1.10.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/components/Charts/BarChart.vue.d.ts +16 -0
- package/dist/components/Charts/BarChart.vue.d.ts.map +1 -0
- package/dist/components/Charts/LineChart.vue.d.ts +17 -0
- package/dist/components/Charts/LineChart.vue.d.ts.map +1 -0
- package/dist/components/Charts/PieChart.vue.d.ts +15 -0
- package/dist/components/Charts/PieChart.vue.d.ts.map +1 -0
- package/dist/components/Charts/index.d.ts +10 -0
- package/dist/components/Charts/index.d.ts.map +1 -0
- package/dist/components/Charts/shared/ChartFrame.vue.d.ts +29 -0
- package/dist/components/Charts/shared/ChartFrame.vue.d.ts.map +1 -0
- package/dist/components/Charts/shared/ChartLegend.vue.d.ts +11 -0
- package/dist/components/Charts/shared/ChartLegend.vue.d.ts.map +1 -0
- package/dist/components/Charts/shared/ChartTooltip.vue.d.ts +16 -0
- package/dist/components/Charts/shared/ChartTooltip.vue.d.ts.map +1 -0
- package/dist/components/Charts/shared/palette.d.ts +4 -0
- package/dist/components/Charts/shared/palette.d.ts.map +1 -0
- package/dist/components/Charts/shared/scales.d.ts +19 -0
- package/dist/components/Charts/shared/scales.d.ts.map +1 -0
- package/dist/components/Charts/shared/useChartSize.d.ts +15 -0
- package/dist/components/Charts/shared/useChartSize.d.ts.map +1 -0
- package/dist/components/Grid.vue.d.ts +2 -2
- package/dist/components/JsonTree.vue.d.ts +1 -1
- package/dist/components/JsonTree.vue.d.ts.map +1 -1
- package/dist/components/NumberInput.vue.d.ts +1 -1
- package/dist/components/NumberInput.vue.d.ts.map +1 -1
- package/dist/components/Panel.vue.d.ts.map +1 -1
- package/dist/components/SidebarLink.vue.d.ts +1 -1
- package/dist/components/Slider.vue.d.ts +1 -1
- package/dist/components/TextInput.vue.d.ts +2 -2
- package/dist/components/TextInput.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +10521 -9832
- package/dist/index.mjs.map +1 -1
- package/dist/main.d.ts +3 -0
- package/dist/main.d.ts.map +1 -1
- package/dist/plugins/globalTypes.d.ts +0 -4
- package/dist/plugins/globalTypes.d.ts.map +1 -1
- package/dist/plugins/globalTypes.js +31 -14
- package/dist/ui.css +1 -1
- package/package.json +1 -1
- package/src/plugins/globalTypes.ts +40 -14
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { IBarChartProps } from './BarChart.d';
|
|
2
|
+
declare const __VLS_export: import("vue").DefineComponent<IBarChartProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<IBarChartProps> & Readonly<{}>, {
|
|
3
|
+
title: string;
|
|
4
|
+
subtitle: string;
|
|
5
|
+
height: number | string;
|
|
6
|
+
showLegend: boolean;
|
|
7
|
+
series: import("./shared/types").IChartSeries[];
|
|
8
|
+
orientation: import("./BarChart.d").TBarOrientation;
|
|
9
|
+
stacked: boolean;
|
|
10
|
+
showTooltip: boolean;
|
|
11
|
+
showGrid: boolean;
|
|
12
|
+
colors: string[];
|
|
13
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
15
|
+
export default _default;
|
|
16
|
+
//# 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":"AAkQA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,cAAc,CAAA;AAiUlD,QAAA,MAAM,YAAY;;;;;;;;;;;6EAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { ILineChartProps } from './LineChart.d';
|
|
2
|
+
declare const __VLS_export: import("vue").DefineComponent<ILineChartProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ILineChartProps> & Readonly<{}>, {
|
|
3
|
+
area: boolean;
|
|
4
|
+
title: string;
|
|
5
|
+
subtitle: string;
|
|
6
|
+
height: number | string;
|
|
7
|
+
showLegend: boolean;
|
|
8
|
+
series: import("./shared/types.d").IChartSeries[];
|
|
9
|
+
showTooltip: boolean;
|
|
10
|
+
showGrid: boolean;
|
|
11
|
+
colors: string[];
|
|
12
|
+
points: boolean;
|
|
13
|
+
curve: import("./LineChart.d").TLineCurve;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
16
|
+
export default _default;
|
|
17
|
+
//# sourceMappingURL=LineChart.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LineChart.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Charts/LineChart.vue"],"names":[],"mappings":"AA6VA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,eAAe,CAAA;AAgZpD,QAAA,MAAM,YAAY;;;;;;;;;;;;6EAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { IPieChartProps } from './PieChart.d';
|
|
2
|
+
declare const __VLS_export: import("vue").DefineComponent<IPieChartProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<IPieChartProps> & Readonly<{}>, {
|
|
3
|
+
data: import("./shared/types").ICategoricalDatum[];
|
|
4
|
+
title: string;
|
|
5
|
+
subtitle: string;
|
|
6
|
+
height: number | string;
|
|
7
|
+
showLegend: boolean;
|
|
8
|
+
showTooltip: boolean;
|
|
9
|
+
colors: string[];
|
|
10
|
+
innerRadius: number;
|
|
11
|
+
labels: "none" | "percent" | "value";
|
|
12
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const _default: typeof __VLS_export;
|
|
14
|
+
export default _default;
|
|
15
|
+
//# sourceMappingURL=PieChart.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PieChart.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Charts/PieChart.vue"],"names":[],"mappings":"AA6PA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,cAAc,CAAA;AA+SlD,QAAA,MAAM,YAAY;;;;;;;;;;6EAGhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { App } from 'vue';
|
|
2
|
+
import NbBarChart from './BarChart.vue';
|
|
3
|
+
import NbLineChart from './LineChart.vue';
|
|
4
|
+
import NbPieChart from './PieChart.vue';
|
|
5
|
+
declare const _default: {
|
|
6
|
+
install(app: App): void;
|
|
7
|
+
};
|
|
8
|
+
export default _default;
|
|
9
|
+
export { NbBarChart, NbLineChart, NbPieChart };
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Charts/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAC9B,OAAO,UAAU,MAAM,gBAAgB,CAAA;AACvC,OAAO,WAAW,MAAM,iBAAiB,CAAA;AACzC,OAAO,UAAU,MAAM,gBAAgB,CAAA;;iBASxB,GAAG;;AADlB,wBAMC;AAED,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,UAAU,EAAE,CAAA"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
title?: string;
|
|
3
|
+
subtitle?: string;
|
|
4
|
+
height?: number | string;
|
|
5
|
+
showLegend?: boolean;
|
|
6
|
+
};
|
|
7
|
+
declare var __VLS_1: {}, __VLS_3: {};
|
|
8
|
+
type __VLS_Slots = {} & {
|
|
9
|
+
default?: (props: typeof __VLS_1) => any;
|
|
10
|
+
} & {
|
|
11
|
+
legend?: (props: typeof __VLS_3) => any;
|
|
12
|
+
};
|
|
13
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {
|
|
14
|
+
viewport: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
15
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
16
|
+
title: string;
|
|
17
|
+
subtitle: string;
|
|
18
|
+
height: number | string;
|
|
19
|
+
showLegend: boolean;
|
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
22
|
+
declare const _default: typeof __VLS_export;
|
|
23
|
+
export default _default;
|
|
24
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
25
|
+
new (): {
|
|
26
|
+
$slots: S;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
//# sourceMappingURL=ChartFrame.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChartFrame.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Charts/shared/ChartFrame.vue"],"names":[],"mappings":"AAwFA,KAAK,WAAW,GAAG;IACf,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACxB,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB,CAAC;AAwFJ,QAAA,IAAI,OAAO,IAAU,EAAE,OAAO,IAAW,CAAE;AAC3C,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC5C;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAO9C,QAAA,MAAM,UAAU;;;WAtGJ,MAAM;cACH,MAAM;YACR,MAAM,GAAG,MAAM;gBACX,OAAO;6EAuGtB,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
interface ILegendItem {
|
|
2
|
+
label: string;
|
|
3
|
+
color: string;
|
|
4
|
+
}
|
|
5
|
+
type __VLS_Props = {
|
|
6
|
+
items: ILegendItem[];
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: typeof __VLS_export;
|
|
10
|
+
export default _default;
|
|
11
|
+
//# sourceMappingURL=ChartLegend.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChartLegend.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Charts/shared/ChartLegend.vue"],"names":[],"mappings":"AAsDA,UAAU,WAAW;IACnB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,CAAA;CACd;AAED,KAAK,WAAW,GAAG;IAAE,KAAK,EAAE,WAAW,EAAE,CAAA;CAAE,CAAC;AA6C5C,QAAA,MAAM,YAAY,kSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
interface ITooltipRow {
|
|
2
|
+
label: string;
|
|
3
|
+
value: string | number;
|
|
4
|
+
color: string;
|
|
5
|
+
}
|
|
6
|
+
type __VLS_Props = {
|
|
7
|
+
visible: boolean;
|
|
8
|
+
x: number;
|
|
9
|
+
y: number;
|
|
10
|
+
title?: string;
|
|
11
|
+
rows: ITooltipRow[];
|
|
12
|
+
};
|
|
13
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
+
declare const _default: typeof __VLS_export;
|
|
15
|
+
export default _default;
|
|
16
|
+
//# sourceMappingURL=ChartTooltip.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChartTooltip.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/Charts/shared/ChartTooltip.vue"],"names":[],"mappings":"AAgHA,UAAU,WAAW;IACnB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;IACtB,KAAK,EAAE,MAAM,CAAA;CACd;AAED,KAAK,WAAW,GAAG;IACjB,OAAO,EAAE,OAAO,CAAA;IAChB,CAAC,EAAE,MAAM,CAAA;IACT,CAAC,EAAE,MAAM,CAAA;IACT,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,EAAE,WAAW,EAAE,CAAA;CACpB,CAAC;AAqFF,QAAA,MAAM,YAAY,kSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"palette.d.ts","sourceRoot":"","sources":["../../../../src/components/Charts/shared/palette.ts"],"names":[],"mappings":"AAIA,QAAA,MAAM,eAAe,EAAE,MAAM,EAS5B,CAAA;AAED,QAAA,MAAM,OAAO,GAAI,OAAO,MAAM,EAAE,UAAS,MAAM,EAAoB,KAAG,MACrC,CAAA;AAEjC,OAAO,EAAE,eAAe,EAAE,OAAO,EAAE,CAAA"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
interface ILinearScale {
|
|
2
|
+
(value: number): number;
|
|
3
|
+
domain: readonly [number, number];
|
|
4
|
+
range: readonly [number, number];
|
|
5
|
+
ticks: (count?: number) => number[];
|
|
6
|
+
}
|
|
7
|
+
declare const linear: (domain: readonly [number, number], range: readonly [number, number]) => ILinearScale;
|
|
8
|
+
interface IBandScale {
|
|
9
|
+
(key: string | number): number;
|
|
10
|
+
bandwidth: number;
|
|
11
|
+
domain: readonly (string | number)[];
|
|
12
|
+
range: readonly [number, number];
|
|
13
|
+
}
|
|
14
|
+
declare const band: (domain: readonly (string | number)[], range: readonly [number, number], padding?: number) => IBandScale;
|
|
15
|
+
declare const niceTicks: (min: number, max: number, count?: number) => number[];
|
|
16
|
+
declare const padDomain: (min: number, max: number, ratio?: number) => [number, number];
|
|
17
|
+
export { linear, band, niceTicks, padDomain };
|
|
18
|
+
export type { ILinearScale, IBandScale };
|
|
19
|
+
//# sourceMappingURL=scales.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"scales.d.ts","sourceRoot":"","sources":["../../../../src/components/Charts/shared/scales.ts"],"names":[],"mappings":"AAKA,UAAU,YAAY;IACpB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;IACvB,MAAM,EAAE,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACjC,KAAK,EAAE,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IAChC,KAAK,EAAE,CAAC,KAAK,CAAC,EAAE,MAAM,KAAK,MAAM,EAAE,CAAA;CACpC;AAED,QAAA,MAAM,MAAM,GACV,QAAQ,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC,EACjC,OAAO,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC,KAC/B,YAUF,CAAA;AAED,UAAU,UAAU;IAClB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,CAAA;IAC9B,SAAS,EAAE,MAAM,CAAA;IACjB,MAAM,EAAE,SAAS,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,CAAA;IACpC,KAAK,EAAE,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;CACjC;AAED,QAAA,MAAM,IAAI,GACR,QAAQ,SAAS,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,EACpC,OAAO,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC,EAChC,gBAAa,KACZ,UAeF,CAAA;AAGD,QAAA,MAAM,SAAS,GAAI,KAAK,MAAM,EAAE,KAAK,MAAM,EAAE,cAAS,KAAG,MAAM,EAe9D,CAAA;AAGD,QAAA,MAAM,SAAS,GACb,KAAK,MAAM,EACX,KAAK,MAAM,EACX,cAAY,KACX,CAAC,MAAM,EAAE,MAAM,CAOjB,CAAA;AAED,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,SAAS,EAAE,SAAS,EAAE,CAAA;AAC7C,YAAY,EAAE,YAAY,EAAE,UAAU,EAAE,CAAA"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { type Ref } from 'vue';
|
|
2
|
+
interface IChartSize {
|
|
3
|
+
width: number;
|
|
4
|
+
height: number;
|
|
5
|
+
}
|
|
6
|
+
declare const useChartSize: (el: Ref<HTMLElement | null>, fallback?: IChartSize) => Ref<{
|
|
7
|
+
width: number;
|
|
8
|
+
height: number;
|
|
9
|
+
}, IChartSize | {
|
|
10
|
+
width: number;
|
|
11
|
+
height: number;
|
|
12
|
+
}>;
|
|
13
|
+
export { useChartSize };
|
|
14
|
+
export type { IChartSize };
|
|
15
|
+
//# sourceMappingURL=useChartSize.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useChartSize.d.ts","sourceRoot":"","sources":["../../../../src/components/Charts/shared/useChartSize.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmC,KAAK,GAAG,EAAE,MAAM,KAAK,CAAA;AAE/D,UAAU,UAAU;IAClB,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;CACf;AAKD,QAAA,MAAM,YAAY,GAChB,IAAI,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,EAC3B,WAAU,UAAwC;WAT3C,MAAM;YACL,MAAM;;WADP,MAAM;YACL,MAAM;EAiCf,CAAA;AAED,OAAO,EAAE,YAAY,EAAE,CAAA;AACvB,YAAY,EAAE,UAAU,EAAE,CAAA"}
|
|
@@ -183,6 +183,8 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
183
183
|
}>> & Readonly<{}>, {
|
|
184
184
|
reverse: import("./Grid.d").TBooleanResponsive;
|
|
185
185
|
shift: import("./Grid.d").TGridShiftInput;
|
|
186
|
+
visible: import("./Grid.d").TGridVisibleInput;
|
|
187
|
+
mode: import("./Grid.d").TGridMode;
|
|
186
188
|
id: string;
|
|
187
189
|
wrap: import("./Grid.d").TGridWrapInput;
|
|
188
190
|
is: string;
|
|
@@ -193,12 +195,10 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
193
195
|
grid: import("./Grid.d").TGridColumnsInput;
|
|
194
196
|
first: import("./Grid.d").TBooleanResponsive;
|
|
195
197
|
last: import("./Grid.d").TBooleanResponsive;
|
|
196
|
-
visible: import("./Grid.d").TGridVisibleInput;
|
|
197
198
|
grow: boolean;
|
|
198
199
|
flex: boolean;
|
|
199
200
|
shrink: boolean;
|
|
200
201
|
distributed: boolean;
|
|
201
|
-
mode: import("./Grid.d").TGridMode;
|
|
202
202
|
tabIndex: string;
|
|
203
203
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
204
204
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -5,8 +5,8 @@ declare const __VLS_export: import("vue").DefineComponent<IJsonTreeProps, {}, {}
|
|
|
5
5
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6
6
|
}>, {
|
|
7
7
|
title: string | null;
|
|
8
|
-
modelValue: TJsonValue;
|
|
9
8
|
root: boolean;
|
|
9
|
+
modelValue: TJsonValue;
|
|
10
10
|
editable: boolean;
|
|
11
11
|
startCollapsed: boolean;
|
|
12
12
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"JsonTree.vue.d.ts","sourceRoot":"","sources":["../../src/components/JsonTree.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"JsonTree.vue.d.ts","sourceRoot":"","sources":["../../src/components/JsonTree.vue"],"names":[],"mappings":"AA+QA,OAAO,KAAK,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,cAAc,CAAA;AAkN9D,QAAA,MAAM,YAAY;;;;;;;;;;6EAIhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -22,11 +22,11 @@ declare const __VLS_export: import("vue").DefineComponent<INumberInputProps, {
|
|
|
22
22
|
disabled: boolean;
|
|
23
23
|
modelValue: number | null;
|
|
24
24
|
error: string;
|
|
25
|
+
step: number;
|
|
25
26
|
warning: string;
|
|
26
27
|
helper: string;
|
|
27
28
|
min: number;
|
|
28
29
|
max: number;
|
|
29
|
-
step: number;
|
|
30
30
|
placeholder: string;
|
|
31
31
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
32
32
|
declare const _default: typeof __VLS_export;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NumberInput.vue.d.ts","sourceRoot":"","sources":["../../src/components/NumberInput.vue"],"names":[],"mappings":"AA0hBA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAKtD,MAAM,WAAW,iBAAkB,SAAQ,eAAe;IACxD,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AAukBD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;gBA3kBH,MAAM,GAAG,IAAI
|
|
1
|
+
{"version":3,"file":"NumberInput.vue.d.ts","sourceRoot":"","sources":["../../src/components/NumberInput.vue"],"names":[],"mappings":"AA0hBA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAKtD,MAAM,WAAW,iBAAkB,SAAQ,eAAe;IACxD,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;CACd;AAukBD,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;gBA3kBH,MAAM,GAAG,IAAI;;UAGnB,MAAM;;;SAFP,MAAM;SACN,MAAM;;6EA8kBZ,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Panel.vue.d.ts","sourceRoot":"","sources":["../../src/components/Panel.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Panel.vue.d.ts","sourceRoot":"","sources":["../../src/components/Panel.vue"],"names":[],"mappings":"AAuCA,QAAA,IAAI,OAAO,IAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAG/C,QAAA,MAAM,UAAU,+QACd,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AACzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -8,10 +8,10 @@ declare const __VLS_base: import("vue").DefineComponent<ISidebarLinkProps, {}, {
|
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<ISidebarLinkProps> & Readonly<{
|
|
9
9
|
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
10
10
|
}>, {
|
|
11
|
+
tooltip: string;
|
|
11
12
|
disabled: boolean;
|
|
12
13
|
href: string;
|
|
13
14
|
to: string | Record<string, unknown>;
|
|
14
|
-
tooltip: string;
|
|
15
15
|
active: boolean;
|
|
16
16
|
danger: boolean;
|
|
17
17
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -10,9 +10,9 @@ declare const __VLS_export: import("vue").DefineComponent<ISliderProps, {}, {},
|
|
|
10
10
|
size: "sm" | "md" | "lg";
|
|
11
11
|
disabled: boolean;
|
|
12
12
|
range: boolean;
|
|
13
|
+
step: number;
|
|
13
14
|
min: number;
|
|
14
15
|
max: number;
|
|
15
|
-
step: number;
|
|
16
16
|
showInput: boolean;
|
|
17
17
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
declare const _default: typeof __VLS_export;
|
|
@@ -52,21 +52,21 @@ declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
|
52
52
|
size: "sm" | "md" | "lg";
|
|
53
53
|
label: string;
|
|
54
54
|
type: string;
|
|
55
|
+
rows: number;
|
|
55
56
|
name: string;
|
|
56
57
|
id: string;
|
|
57
58
|
required: boolean;
|
|
58
59
|
disabled: boolean;
|
|
59
60
|
error: string;
|
|
61
|
+
step: string | number;
|
|
60
62
|
warning: string;
|
|
61
63
|
helper: string;
|
|
62
64
|
min: string | number;
|
|
63
65
|
max: string | number;
|
|
64
|
-
step: string | number;
|
|
65
66
|
placeholder: string;
|
|
66
67
|
readonly: boolean;
|
|
67
68
|
maxlength: number;
|
|
68
69
|
multiline: boolean;
|
|
69
|
-
rows: number;
|
|
70
70
|
highlight: (text: string) => string;
|
|
71
71
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
72
72
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TextInput.vue.d.ts","sourceRoot":"","sources":["../../src/components/TextInput.vue"],"names":[],"mappings":"AA6hBA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iBAAiB,CAAA;AAO9D,MAAM,WAAW,eAAgB,SAAQ,uBAAuB;IAC9D,4DAA4D;IAC5D,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACrB,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACrB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACtB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,6CAA6C;IAC7C,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,4DAA4D;IAC5D,IAAI,CAAC,EAAE,MAAM,CAAA;IACb;;;;;;;OAOG;IACH,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM,CAAA;CACrC;AAED,KAAK,WAAW,GAAG,eAAe,CAAC;AAyFnC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AA2BF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAoYxD,QAAA,IAAI,OAAO,IAAU,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAY,CAAE;AACjI,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC1C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAQ9C,QAAA,MAAM,UAAU;;;;;;;;;;;;UA7hBP,MAAM
|
|
1
|
+
{"version":3,"file":"TextInput.vue.d.ts","sourceRoot":"","sources":["../../src/components/TextInput.vue"],"names":[],"mappings":"AA6hBA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,iBAAiB,CAAA;AAO9D,MAAM,WAAW,eAAgB,SAAQ,uBAAuB;IAC9D,4DAA4D;IAC5D,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACrB,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACrB,IAAI,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACtB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,6CAA6C;IAC7C,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,4DAA4D;IAC5D,IAAI,CAAC,EAAE,MAAM,CAAA;IACb;;;;;;;OAOG;IACH,SAAS,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM,CAAA;CACrC;AAED,KAAK,WAAW,GAAG,eAAe,CAAC;AAyFnC,KAAK,gBAAgB,GAAG;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AA2BF,KAAK,iBAAiB,GAAG,WAAW,GAAG,gBAAgB,CAAC;AAoYxD,QAAA,IAAI,OAAO,IAAU,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAY,CAAE;AACjI,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC1C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAQ9C,QAAA,MAAM,UAAU;;;;;;;;;;;;UA7hBP,MAAM;UAQN,MAAM;;;;;;UALN,MAAM,GAAG,MAAM;;;SAFhB,MAAM,GAAG,MAAM;SACf,MAAM,GAAG,MAAM;;;eAET,MAAM;eAEN,OAAO;eAWP,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM;6EAihBpC,CAAC;AACH,QAAA,MAAM,YAAY,EAAS,eAAe,CAAC,OAAO,UAAU,EAAE,WAAW,CAAC,CAAC;wBACtD,OAAO,YAAY;AAAxC,wBAAyC;AAWzC,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KACV,CAAA;CACD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;;iBAgEf,GAAG;;AADlB,wBAMC"}
|