lorgg-v2-components 0.0.71 → 0.0.72
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/index.d.ts +1 -0
- package/dist/components/library/Charts/SimpleDoughnutChart/SimpleDoughnutChart.vue.d.ts +27 -0
- package/dist/components/library/Charts/SimpleDoughnutChart/SimpleDoughnutChart.vue.d.ts.map +1 -0
- package/dist/components/library/Charts/SimpleDoughnutChart/types.d.ts +16 -0
- package/dist/lorgg-components.cjs.js +36 -36
- package/dist/lorgg-components.es.js +2332 -2274
- package/dist/lorgg-components.umd.js +35 -35
- package/package.json +1 -1
|
@@ -135,3 +135,4 @@ export { default as CardItem } from './library/CardItem/CardItem.vue';
|
|
|
135
135
|
export { default as ProfileArchetypeRow } from './library/ProfileArchetypeRow/ProfileArchetypeRow.vue';
|
|
136
136
|
export { default as DeckBuilderSidePanel } from './library/DeckBuilderSidePanel/DeckBuilderSidePanel.vue';
|
|
137
137
|
export { default as RegionDistributionChart } from './library/Charts/RegionDistributionChart/RegionDistributionChart.vue';
|
|
138
|
+
export { default as SimpleDoughnutChart } from './library/Charts/SimpleDoughnutChart/SimpleDoughnutChart.vue';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
value: {
|
|
3
|
+
type: NumberConstructor;
|
|
4
|
+
required: boolean;
|
|
5
|
+
default: number;
|
|
6
|
+
};
|
|
7
|
+
max: {
|
|
8
|
+
type: NumberConstructor;
|
|
9
|
+
required: boolean;
|
|
10
|
+
default: number;
|
|
11
|
+
};
|
|
12
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
value: {
|
|
14
|
+
type: NumberConstructor;
|
|
15
|
+
required: boolean;
|
|
16
|
+
default: number;
|
|
17
|
+
};
|
|
18
|
+
max: {
|
|
19
|
+
type: NumberConstructor;
|
|
20
|
+
required: boolean;
|
|
21
|
+
default: number;
|
|
22
|
+
};
|
|
23
|
+
}>>, {
|
|
24
|
+
value: number;
|
|
25
|
+
max: number;
|
|
26
|
+
}, {}>;
|
|
27
|
+
export default _sfc_main;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SimpleDoughnutChart.vue.d.ts","sourceRoot":"","sources":["../../../../../src/components/library/Charts/SimpleDoughnutChart/SimpleDoughnutChart.vue"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,uKAAuK,CAAC;AAC9L,cAAc,uKAAuK,CAAC;AACtL,eAAe,SAAS,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export type SimpleDoughnutChartProps = {
|
|
2
|
+
value: number;
|
|
3
|
+
max: number;
|
|
4
|
+
};
|
|
5
|
+
export declare const simpleDoughnutChartProps: {
|
|
6
|
+
value: {
|
|
7
|
+
type: NumberConstructor;
|
|
8
|
+
required: boolean;
|
|
9
|
+
default: number;
|
|
10
|
+
};
|
|
11
|
+
max: {
|
|
12
|
+
type: NumberConstructor;
|
|
13
|
+
required: boolean;
|
|
14
|
+
default: number;
|
|
15
|
+
};
|
|
16
|
+
};
|