@ironsource/shared-ui 2.1.12-rc.1 → 2.1.12-rc.11

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.
Files changed (86) hide show
  1. package/ButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_0123c361_lang.css +1 -0
  2. package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_0198fee8_lang.css +1 -0
  3. package/Chart.vue_vue_type_style_index_0_scoped_78d3f5a8_lang.css +1 -0
  4. package/ChartHeader.vue_vue_type_style_index_0_scoped_32001725_lang.css +1 -0
  5. package/ChartHeaderTrend.vue_vue_type_style_index_0_scoped_e4c673e7_lang.css +1 -0
  6. package/ChartLegend.vue_vue_type_style_index_0_scoped_532f23bc_lang.css +1 -0
  7. package/ChartPlane.vue_vue_type_style_index_0_scoped_4396faf6_lang.css +1 -0
  8. package/ChartTooltip.vue_vue_type_style_index_0_scoped_25d0e129_lang.css +1 -0
  9. package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_8d5521da_lang.css +1 -0
  10. package/DataGrid.vue_vue_type_style_index_0_scoped_86ea5d2a_lang.css +1 -0
  11. package/DateRangeV4.vue_vue_type_style_index_0_scoped_a849128a_lang.css +1 -0
  12. package/DropdownV4.vue_vue_type_style_index_0_scoped_d154c5da_lang.css +1 -0
  13. package/DropdownV4.vue_vue_type_style_index_1_lang.css +1 -1
  14. package/TreeDropdown.vue_vue_type_style_index_0_scoped_4ba9e4bd_lang.css +1 -0
  15. package/components/chart/Chart.vue.d.ts +57 -39
  16. package/components/chart/Chart.vue.js +3 -3
  17. package/components/chart/Chart.vue2.js +98 -297
  18. package/components/chart/ChartHeader.vue.d.ts +20 -10
  19. package/components/chart/ChartHeader.vue.js +2 -2
  20. package/components/chart/ChartHeader.vue2.js +74 -52
  21. package/components/chart/ChartHeaderTrend.vue.d.ts +34 -0
  22. package/components/chart/ChartHeaderTrend.vue.js +7 -0
  23. package/components/chart/ChartHeaderTrend.vue2.js +32 -0
  24. package/components/chart/ChartLegend.vue.js +2 -2
  25. package/components/chart/ChartLegend.vue2.js +36 -35
  26. package/components/chart/ChartPlane.vue.d.ts +143 -0
  27. package/components/chart/ChartPlane.vue.js +7 -0
  28. package/components/chart/ChartPlane.vue2.js +306 -0
  29. package/components/chart/ChartStoryArgs.d.ts +135 -0
  30. package/components/chart/ChartTooltip.vue.js +2 -2
  31. package/components/chart/ChartTooltip.vue2.js +36 -35
  32. package/components/chart/composables/useChartHeight.d.ts +5 -0
  33. package/components/chart/composables/useChartHeight.js +22 -0
  34. package/components/chart/composables/useColorsMap.d.ts +10 -0
  35. package/components/chart/composables/useColorsMap.js +17 -0
  36. package/components/chart/composables/useTooltipPosition.d.ts +1 -1
  37. package/components/chart/composables/useTooltipPosition.js +11 -15
  38. package/components/chart/consts.d.ts +5 -0
  39. package/components/chart/consts.js +20 -15
  40. package/components/chart/index.d.ts +189 -113
  41. package/components/chart/mockData.d.ts +27 -1
  42. package/components/chart/types.d.ts +4 -0
  43. package/components/chart/utils/formatNumber.d.ts +0 -1
  44. package/components/chart/utils/utils.js +5 -5
  45. package/components/dateRange/v4/DateRangeV4.vue.js +2 -2
  46. package/components/dateRange/v4/DateRangeV4.vue2.js +1 -1
  47. package/components/dropdown/common/Dropdown.common.js +92 -85
  48. package/components/dropdown/v4/ButtonDropdownTrigger.vue.js +2 -2
  49. package/components/dropdown/v4/ButtonDropdownTrigger.vue2.js +1 -1
  50. package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue.js +2 -2
  51. package/components/dropdown/v4/ButtonFilterDropdownTrigger.vue2.js +1 -1
  52. package/components/dropdown/v4/ConditionalDropdown.vue.js +3 -3
  53. package/components/dropdown/v4/ConditionalDropdown.vue2.js +76 -76
  54. package/components/dropdown/v4/DropdownV4.vue.js +4 -4
  55. package/components/dropdown/v4/DropdownV4.vue2.js +96 -86
  56. package/components/dropdown/v4/TreeDropdown.vue.js +2 -2
  57. package/components/dropdown/v4/TreeDropdown.vue2.js +68 -73
  58. package/components/emptyState/v4/EmptyStateV4.vue.d.ts +3 -3
  59. package/components/emptyState/v4/index.d.ts +7 -7
  60. package/components/table/v4/DataGrid.vue.d.ts +4 -3
  61. package/components/table/v4/DataGrid.vue.js +3 -3
  62. package/components/table/v4/DataGrid.vue2.js +152 -142
  63. package/components/table/v4/MultipleDataGrid.vue.d.ts +3 -3
  64. package/components/table/v4/index.d.ts +15 -14
  65. package/composables/useFullPageHeight.d.ts +10 -0
  66. package/composables/useFullPageHeight.js +15 -0
  67. package/index.d.ts +48 -42
  68. package/index.js +103 -101
  69. package/package.json +1 -1
  70. package/testids/index.d.ts +2 -1
  71. package/testids/index.js +10 -10
  72. package/utils/formatNumbers.d.ts +1 -1
  73. package/utils/formatNumbers.js +18 -5
  74. package/utils/index.js +7 -0
  75. package/ButtonDropdownTrigger.vue_vue_type_style_index_0_scoped_604dfc6f_lang.css +0 -1
  76. package/ButtonFilterDropdownTrigger.vue_vue_type_style_index_0_scoped_ea1c4589_lang.css +0 -1
  77. package/Chart.vue_vue_type_style_index_0_scoped_026d82c5_lang.css +0 -1
  78. package/ChartHeader.vue_vue_type_style_index_0_scoped_b8213498_lang.css +0 -1
  79. package/ChartLegend.vue_vue_type_style_index_0_scoped_4fe1c7d1_lang.css +0 -1
  80. package/ChartTooltip.vue_vue_type_style_index_0_scoped_6744325c_lang.css +0 -1
  81. package/ConditionalDropdown.vue_vue_type_style_index_0_scoped_3a2aeea3_lang.css +0 -1
  82. package/DataGrid.vue_vue_type_style_index_0_scoped_26488faf_lang.css +0 -1
  83. package/DateRangeV4.vue_vue_type_style_index_0_scoped_8a2714eb_lang.css +0 -1
  84. package/DropdownV4.vue_vue_type_style_index_0_scoped_48ba81e5_lang.css +0 -1
  85. package/TreeDropdown.vue_vue_type_style_index_0_scoped_b883d1fa_lang.css +0 -1
  86. package/components/chart/utils/formatNumber.js +0 -11
@@ -0,0 +1,34 @@
1
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ value?: number | string;
3
+ direction?: 'up' | 'down';
4
+ }>, {
5
+ value: any;
6
+ direction: string;
7
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
8
+ value?: number | string;
9
+ direction?: 'up' | 'down';
10
+ }>, {
11
+ value: any;
12
+ direction: string;
13
+ }>>>, {
14
+ value: number | string;
15
+ direction: 'up' | 'down';
16
+ }>;
17
+ export default _default;
18
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
19
+ type __VLS_TypePropsToRuntimeProps<T> = {
20
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
21
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
22
+ } : {
23
+ type: import('vue').PropType<T[K]>;
24
+ required: true;
25
+ };
26
+ };
27
+ type __VLS_WithDefaults<P, D> = {
28
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
29
+ default: D[K];
30
+ }> : P[K];
31
+ };
32
+ type __VLS_Prettify<T> = {
33
+ [K in keyof T]: T[K];
34
+ } & {};
@@ -0,0 +1,7 @@
1
+ import e from "./ChartHeaderTrend.vue2.js";
2
+ /* empty css */import o from "../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../ChartHeaderTrend.vue_vue_type_style_index_0_scoped_e4c673e7_lang.css"; //*');
4
+ const s = /* @__PURE__ */ o(e, [["__scopeId", "data-v-e4c673e7"]]);
5
+ export {
6
+ s as default
7
+ };
@@ -0,0 +1,32 @@
1
+ import "../../ChartHeaderTrend.vue_vue_type_style_index_0_scoped_e4c673e7_lang.css"; import { defineComponent as a, openBlock as n, createElementBlock as o, normalizeClass as i, createVNode as t, unref as r, withCtx as c, createTextVNode as l, toDisplayString as d } from "vue";
2
+ import m from "../typography/v4/Typography.vue.js";
3
+ import p from "../icon/v4/IconV4.vue.js";
4
+ import "../icon/v4/IconFlag.vue.js";
5
+ const y = /* @__PURE__ */ a({
6
+ __name: "ChartHeaderTrend",
7
+ props: {
8
+ value: { default: null },
9
+ direction: { default: "up" }
10
+ },
11
+ setup(e) {
12
+ return (u, s) => (n(), o("div", {
13
+ class: i(["chart-trend", [`chart-trend--${e.direction}`]])
14
+ }, [
15
+ t(r(p), {
16
+ class: "trend-icon",
17
+ type: "bold",
18
+ name: `arrow-${e.direction}`,
19
+ size: "13px"
20
+ }, null, 8, ["name"]),
21
+ t(r(m), { variant: "chipLabel" }, {
22
+ default: c(() => [
23
+ l(d(e.value), 1)
24
+ ]),
25
+ _: 1
26
+ })
27
+ ], 2));
28
+ }
29
+ });
30
+ export {
31
+ y as default
32
+ };
@@ -1,7 +1,7 @@
1
1
  import e from "./ChartLegend.vue2.js";
2
2
  /* empty css */import o from "../../_virtual/_plugin-vue_export-helper.js";
3
- // import "../../ChartLegend.vue_vue_type_style_index_0_scoped_4fe1c7d1_lang.css"; //*');
4
- const c = /* @__PURE__ */ o(e, [["__scopeId", "data-v-4fe1c7d1"]]);
3
+ // import "../../ChartLegend.vue_vue_type_style_index_0_scoped_532f23bc_lang.css"; //*');
4
+ const c = /* @__PURE__ */ o(e, [["__scopeId", "data-v-532f23bc"]]);
5
5
  export {
6
6
  c as default
7
7
  };
@@ -1,4 +1,4 @@
1
- import "../../ChartLegend.vue_vue_type_style_index_0_scoped_4fe1c7d1_lang.css"; import { defineComponent as D, ref as M, computed as m, openBlock as r, createElementBlock as c, createElementVNode as d, createVNode as s, unref as o, mergeProps as I, withCtx as p, createTextVNode as b, Fragment as S, renderList as P, normalizeClass as A, withModifiers as F, createBlock as H, createCommentVNode as U, toDisplayString as L } from "vue";
1
+ import "../../ChartLegend.vue_vue_type_style_index_0_scoped_532f23bc_lang.css"; import { defineComponent as S, ref as P, computed as m, openBlock as s, createElementBlock as c, createElementVNode as r, createVNode as d, unref as o, mergeProps as I, withCtx as p, createTextVNode as b, Fragment as A, renderList as F, normalizeClass as H, withModifiers as U, createBlock as k, createCommentVNode as L, toDisplayString as g } from "vue";
2
2
  import { useVirtualList as z } from "@vueuse/core";
3
3
  import f from "../typography/v4/Typography.vue.js";
4
4
  import R from "../checkbox/v4/CheckboxV4.vue.js";
@@ -10,7 +10,7 @@ import j from "../tooltip/v4/TooltipV4.vue.js";
10
10
  const J = { class: "chart-legend" }, K = { class: "search-box" }, O = {
11
11
  key: 0,
12
12
  class: "empty-list"
13
- }, Q = ["onClick"], W = { class: "label-container" }, ne = /* @__PURE__ */ D({
13
+ }, Q = ["onClick"], W = { class: "label-container" }, ne = /* @__PURE__ */ S({
14
14
  __name: "ChartLegend",
15
15
  props: {
16
16
  items: { default: () => [] },
@@ -20,77 +20,77 @@ const J = { class: "chart-legend" }, K = { class: "search-box" }, O = {
20
20
  maxLimitTooltipText: { default: "" }
21
21
  },
22
22
  emits: ["update:visibleIds"],
23
- setup(h, { emit: g }) {
24
- const l = h, k = 32, u = M(""), T = m(() => {
23
+ setup(h, { emit: T }) {
24
+ const l = h, y = 32, u = P(""), C = m(() => {
25
25
  const t = u.value.toLowerCase();
26
26
  return l.items.filter(
27
27
  (i) => i.label.toLowerCase().includes(t)
28
28
  );
29
29
  }), a = (t) => l.visibleIds.includes(t.id), v = m(
30
30
  () => l.visibleIds.length >= l.maxVisible
31
- ), y = m(
31
+ ), V = m(
32
32
  () => l.visibleIds.length <= l.minVisible
33
- ), n = (t) => y.value && a(t) || v.value && !a(t), C = (t) => !l.maxLimitTooltipText || a(t) || !v.value, V = (t, i) => {
34
- g(
33
+ ), n = (t) => V.value && a(t) || v.value && !a(t), w = (t) => !l.maxLimitTooltipText || a(t) || !v.value, E = (t, i) => {
34
+ T(
35
35
  "update:visibleIds",
36
36
  t ? [...l.visibleIds, i.id] : l.visibleIds.filter((e) => e !== i.id)
37
37
  );
38
- }, { list: x, containerProps: w, wrapperProps: E } = z(T, {
39
- itemHeight: k,
38
+ }, { list: x, containerProps: N, wrapperProps: B } = z(C, {
39
+ itemHeight: y,
40
40
  overscan: 10
41
- }), N = (t) => {
42
- n(t) || V(!a(t), t);
41
+ }), D = (t) => {
42
+ n(t) || E(!a(t), t);
43
43
  };
44
- return (t, i) => (r(), c("div", J, [
45
- d("div", K, [
46
- s(o(q), {
44
+ return (t, i) => (s(), c("div", J, [
45
+ r("div", K, [
46
+ d(o(q), {
47
47
  modelValue: u.value,
48
48
  "onUpdate:modelValue": i[0] || (i[0] = (e) => u.value = e)
49
49
  }, null, 8, ["modelValue"])
50
50
  ]),
51
- d("div", I({ class: "legend" }, o(w)), [
52
- d("ul", I({ class: "legend__list" }, o(E)), [
53
- o(x).length === 0 ? (r(), c("li", O, [
54
- s(o(f), { variant: "body2" }, {
51
+ r("div", I({ class: "legend" }, o(N)), [
52
+ r("ul", I({ class: "legend__list" }, o(B)), [
53
+ o(x).length === 0 ? (s(), c("li", O, [
54
+ d(o(f), { variant: "body2" }, {
55
55
  default: p(() => [
56
56
  b("No results")
57
57
  ]),
58
58
  _: 1
59
59
  })
60
- ])) : (r(!0), c(S, { key: 1 }, P(o(x), ({ data: e, index: B }) => (r(), c("li", {
61
- key: B,
62
- class: A({ "disabled-item": n(e) })
60
+ ])) : (s(!0), c(A, { key: 1 }, F(o(x), ({ data: e, index: M }) => (s(), c("li", {
61
+ key: M,
62
+ class: H({ "disabled-item": n(e) })
63
63
  }, [
64
- s(o(j), {
64
+ d(o(j), {
65
65
  text: h.maxLimitTooltipText,
66
- disabled: C(e),
66
+ disabled: w(e),
67
67
  class: "disabled-tooltip"
68
68
  }, {
69
69
  default: p(() => [
70
- d("div", {
70
+ r("div", {
71
71
  class: "item-wrapper",
72
- onClick: (_) => N(e)
72
+ onClick: (_) => D(e)
73
73
  }, [
74
- s(o(R), {
74
+ d(o(R), {
75
75
  color: e.color,
76
76
  "is-checked": a(e),
77
77
  disabled: n(e),
78
- onClick: i[1] || (i[1] = F(
78
+ onClick: i[1] || (i[1] = U(
79
79
  (_) => {
80
80
  _.stopPropagation();
81
81
  },
82
82
  ["stop"]
83
83
  ))
84
84
  }, null, 8, ["color", "is-checked", "disabled"]),
85
- e.icon ? (r(), H(o($), {
85
+ e.icon ? (s(), k(o($), {
86
86
  key: 0,
87
87
  class: "icon-color",
88
88
  type: e.iconType,
89
89
  name: e.icon,
90
90
  size: "16px"
91
- }, null, 8, ["type", "name"])) : U("", !0),
92
- d("div", W, [
93
- s(o(f), {
91
+ }, null, 8, ["type", "name"])) : L("", !0),
92
+ r("div", W, [
93
+ d(o(f), {
94
94
  variant: "body2",
95
95
  class: "legend-label",
96
96
  "is-truncated": "",
@@ -99,11 +99,12 @@ const J = { class: "chart-legend" }, K = { class: "search-box" }, O = {
99
99
  "tooltip-placement": "left"
100
100
  }, {
101
101
  default: p(() => [
102
- b(L(e.label), 1)
102
+ b(g(e.label), 1)
103
103
  ]),
104
104
  _: 2
105
105
  }, 1032, ["with-tooltip", "tooltip-text"]),
106
- s(o(f), {
106
+ e.caption ? (s(), k(o(f), {
107
+ key: 0,
107
108
  variant: "caption",
108
109
  class: "legend-caption legend-label",
109
110
  "is-truncated": "",
@@ -112,10 +113,10 @@ const J = { class: "chart-legend" }, K = { class: "search-box" }, O = {
112
113
  "tooltip-placement": "left"
113
114
  }, {
114
115
  default: p(() => [
115
- b(L(e.caption), 1)
116
+ b(g(e.caption), 1)
116
117
  ]),
117
118
  _: 2
118
- }, 1032, ["with-tooltip", "tooltip-text"])
119
+ }, 1032, ["with-tooltip", "tooltip-text"])) : L("", !0)
119
120
  ])
120
121
  ], 8, Q)
121
122
  ]),
@@ -0,0 +1,143 @@
1
+ import { ChartDataSet, ChartParsingConfig, ChartType, ValueFormat } from './types';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
+ dataSets: ChartDataSet[];
4
+ visibleIds: unknown[];
5
+ chartType?: ChartType;
6
+ parsing?: ChartParsingConfig;
7
+ xAxisFormat?: ValueFormat;
8
+ yAxisFormat?: ValueFormat;
9
+ tickCount?: number;
10
+ header?: string;
11
+ subheader?: string;
12
+ loading?: boolean;
13
+ noDataIcon?: string;
14
+ noDataTitle?: string;
15
+ noDataSubtitle?: string;
16
+ withAnimation?: boolean;
17
+ typeSwitcher?: boolean;
18
+ height?: string;
19
+ compactHeader?: boolean;
20
+ tooltipRespectsTopEdge?: boolean;
21
+ trendValue?: string | number;
22
+ trendDirection?: "up" | "down";
23
+ totalsChart?: boolean;
24
+ }>, {
25
+ chartType: ChartType;
26
+ dataSets: () => any[];
27
+ visibleIds: () => any[];
28
+ xAxisFormat: string;
29
+ yAxisFormat: string;
30
+ parsing: any;
31
+ tickCount: number;
32
+ header: string;
33
+ subheader: string;
34
+ subheaderTooltip: string;
35
+ loading: boolean;
36
+ noDataIcon: string;
37
+ noDataTitle: string;
38
+ noDataSubtitle: string;
39
+ withAnimation: boolean;
40
+ typeSwitcher: boolean;
41
+ height: string;
42
+ compactHeader: boolean;
43
+ tooltipRespectsTopEdge: boolean;
44
+ trendValue: any;
45
+ trendDirection: string;
46
+ totalsChart: boolean;
47
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
48
+ "update:chartType": (chartType: ChartType) => void;
49
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
50
+ dataSets: ChartDataSet[];
51
+ visibleIds: unknown[];
52
+ chartType?: ChartType;
53
+ parsing?: ChartParsingConfig;
54
+ xAxisFormat?: ValueFormat;
55
+ yAxisFormat?: ValueFormat;
56
+ tickCount?: number;
57
+ header?: string;
58
+ subheader?: string;
59
+ loading?: boolean;
60
+ noDataIcon?: string;
61
+ noDataTitle?: string;
62
+ noDataSubtitle?: string;
63
+ withAnimation?: boolean;
64
+ typeSwitcher?: boolean;
65
+ height?: string;
66
+ compactHeader?: boolean;
67
+ tooltipRespectsTopEdge?: boolean;
68
+ trendValue?: string | number;
69
+ trendDirection?: "up" | "down";
70
+ totalsChart?: boolean;
71
+ }>, {
72
+ chartType: ChartType;
73
+ dataSets: () => any[];
74
+ visibleIds: () => any[];
75
+ xAxisFormat: string;
76
+ yAxisFormat: string;
77
+ parsing: any;
78
+ tickCount: number;
79
+ header: string;
80
+ subheader: string;
81
+ subheaderTooltip: string;
82
+ loading: boolean;
83
+ noDataIcon: string;
84
+ noDataTitle: string;
85
+ noDataSubtitle: string;
86
+ withAnimation: boolean;
87
+ typeSwitcher: boolean;
88
+ height: string;
89
+ compactHeader: boolean;
90
+ tooltipRespectsTopEdge: boolean;
91
+ trendValue: any;
92
+ trendDirection: string;
93
+ totalsChart: boolean;
94
+ }>>> & {
95
+ "onUpdate:chartType"?: (chartType: ChartType) => any;
96
+ }, {
97
+ header: string;
98
+ height: string;
99
+ loading: boolean;
100
+ visibleIds: unknown[];
101
+ chartType: ChartType;
102
+ xAxisFormat: ValueFormat;
103
+ yAxisFormat: ValueFormat;
104
+ parsing: ChartParsingConfig;
105
+ dataSets: ChartDataSet[];
106
+ typeSwitcher: boolean;
107
+ subheader: string;
108
+ trendValue: string | number;
109
+ trendDirection: "up" | "down";
110
+ tickCount: number;
111
+ withAnimation: boolean;
112
+ totalsChart: boolean;
113
+ noDataIcon: string;
114
+ noDataTitle: string;
115
+ noDataSubtitle: string;
116
+ compactHeader: boolean;
117
+ tooltipRespectsTopEdge: boolean;
118
+ }>, {
119
+ "subheader-tooltip"?(_: {}): any;
120
+ }>;
121
+ export default _default;
122
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
123
+ type __VLS_TypePropsToRuntimeProps<T> = {
124
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
125
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
126
+ } : {
127
+ type: import('vue').PropType<T[K]>;
128
+ required: true;
129
+ };
130
+ };
131
+ type __VLS_WithDefaults<P, D> = {
132
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
133
+ default: D[K];
134
+ }> : P[K];
135
+ };
136
+ type __VLS_Prettify<T> = {
137
+ [K in keyof T]: T[K];
138
+ } & {};
139
+ type __VLS_WithTemplateSlots<T, S> = T & {
140
+ new (): {
141
+ $slots: S;
142
+ };
143
+ };
@@ -0,0 +1,7 @@
1
+ import o from "./ChartPlane.vue2.js";
2
+ /* empty css */import e from "../../_virtual/_plugin-vue_export-helper.js";
3
+ // import "../../ChartPlane.vue_vue_type_style_index_0_scoped_4396faf6_lang.css"; //*');
4
+ const s = /* @__PURE__ */ e(o, [["__scopeId", "data-v-4396faf6"]]);
5
+ export {
6
+ s as default
7
+ };