@akiraka/quark-big-screen-ui 0.1.17 → 0.1.19

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 (31) hide show
  1. package/dist/components/AlertDialog.vue.d.ts +100 -0
  2. package/dist/components/AlertDialog.vue.d.ts.map +1 -0
  3. package/dist/components/BaseModal.vue.d.ts +45 -0
  4. package/dist/components/BaseModal.vue.d.ts.map +1 -0
  5. package/dist/components/BigScreenAlertRow.vue.d.ts.map +1 -1
  6. package/dist/components/BigScreenTemplateRenderer.vue.d.ts +38 -0
  7. package/dist/components/BigScreenTemplateRenderer.vue.d.ts.map +1 -0
  8. package/dist/components/Collapse.vue.d.ts +24 -0
  9. package/dist/components/Collapse.vue.d.ts.map +1 -0
  10. package/dist/components/CollapseItem.vue.d.ts +25 -0
  11. package/dist/components/CollapseItem.vue.d.ts.map +1 -0
  12. package/dist/components/MetricTrendChart.vue.d.ts +32 -0
  13. package/dist/components/MetricTrendChart.vue.d.ts.map +1 -0
  14. package/dist/components/Timeline.vue.d.ts +18 -0
  15. package/dist/components/Timeline.vue.d.ts.map +1 -0
  16. package/dist/components/TimelineItem.vue.d.ts +37 -0
  17. package/dist/components/TimelineItem.vue.d.ts.map +1 -0
  18. package/dist/components/UiButton.vue.d.ts +28 -0
  19. package/dist/components/UiButton.vue.d.ts.map +1 -0
  20. package/dist/components/UiMetricValue.vue.d.ts +11 -0
  21. package/dist/components/UiMetricValue.vue.d.ts.map +1 -0
  22. package/dist/components/UiSegmented.vue.d.ts +21 -0
  23. package/dist/components/UiSegmented.vue.d.ts.map +1 -0
  24. package/dist/fixtures/big-screen.d.ts +13 -2
  25. package/dist/fixtures/big-screen.d.ts.map +1 -1
  26. package/dist/index.css +1 -1
  27. package/dist/index.d.ts +11 -0
  28. package/dist/index.d.ts.map +1 -1
  29. package/dist/index.js +51489 -1464
  30. package/dist/index.umd.cjs +91 -8
  31. package/package.json +4 -1
@@ -0,0 +1,100 @@
1
+ type AlertDialogLevel = "info" | "warning" | "critical" | "recovery";
2
+ type AlertDialogLayout = "normal" | "monitor";
3
+ export interface AlertDialogField {
4
+ label: string;
5
+ value: string | number;
6
+ mono?: boolean;
7
+ accent?: boolean;
8
+ marker?: "min" | "max" | "trigger";
9
+ }
10
+ type AlertDialogFieldVariant = "cards" | "compact";
11
+ type __VLS_Props = {
12
+ modelValue: boolean;
13
+ title: string;
14
+ subtitle?: string;
15
+ content?: string;
16
+ layout?: AlertDialogLayout;
17
+ level?: AlertDialogLevel;
18
+ source?: string;
19
+ timestamp?: number | string;
20
+ showCloseButton?: boolean;
21
+ showCancelButton?: boolean;
22
+ showConfirmButton?: boolean;
23
+ titleAlign?: "left" | "center";
24
+ cancelText?: string;
25
+ confirmText?: string;
26
+ actionSize?: "sm" | "md" | "lg";
27
+ closeOnMask?: boolean;
28
+ autoCloseMs?: number;
29
+ monitorFields?: AlertDialogField[];
30
+ trend?: number[];
31
+ chartTimestamps?: number[];
32
+ chartTriggerTime?: string;
33
+ chartTriggerValue?: string;
34
+ chartContext?: Record<string, string | number | null | undefined>;
35
+ chartTitle?: string;
36
+ chartPlacement?: "side" | "bottom";
37
+ chartShowExtremaMarkers?: boolean;
38
+ chartEnableExtremaHover?: boolean;
39
+ chartEnableSelectionZoom?: boolean;
40
+ infoItems?: string[];
41
+ monitorFieldsVariant?: AlertDialogFieldVariant;
42
+ };
43
+ declare var __VLS_10: {}, __VLS_15: {}, __VLS_17: {}, __VLS_19: {};
44
+ type __VLS_Slots = {} & {
45
+ default?: (props: typeof __VLS_10) => any;
46
+ } & {
47
+ default?: (props: typeof __VLS_15) => any;
48
+ } & {
49
+ details?: (props: typeof __VLS_17) => any;
50
+ } & {
51
+ footer?: (props: typeof __VLS_19) => any;
52
+ };
53
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
54
+ close: () => any;
55
+ "update:modelValue": (value: boolean) => any;
56
+ confirm: () => any;
57
+ timeout: () => any;
58
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
59
+ onClose?: (() => any) | undefined;
60
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
61
+ onConfirm?: (() => any) | undefined;
62
+ onTimeout?: (() => any) | undefined;
63
+ }>, {
64
+ source: string;
65
+ subtitle: string;
66
+ showCloseButton: boolean;
67
+ closeOnMask: boolean;
68
+ titleAlign: "left" | "center";
69
+ content: string;
70
+ layout: AlertDialogLayout;
71
+ level: AlertDialogLevel;
72
+ timestamp: number | string;
73
+ showCancelButton: boolean;
74
+ showConfirmButton: boolean;
75
+ cancelText: string;
76
+ confirmText: string;
77
+ actionSize: "sm" | "md" | "lg";
78
+ autoCloseMs: number;
79
+ monitorFields: AlertDialogField[];
80
+ trend: number[];
81
+ chartTimestamps: number[];
82
+ chartTriggerTime: string;
83
+ chartTriggerValue: string;
84
+ chartContext: Record<string, string | number | null | undefined>;
85
+ chartTitle: string;
86
+ chartPlacement: "side" | "bottom";
87
+ chartShowExtremaMarkers: boolean;
88
+ chartEnableExtremaHover: boolean;
89
+ chartEnableSelectionZoom: boolean;
90
+ infoItems: string[];
91
+ monitorFieldsVariant: AlertDialogFieldVariant;
92
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
93
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
94
+ export default _default;
95
+ type __VLS_WithSlots<T, S> = T & {
96
+ new (): {
97
+ $slots: S;
98
+ };
99
+ };
100
+ //# sourceMappingURL=AlertDialog.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AlertDialog.vue.d.ts","sourceRoot":"","sources":["../../src/components/AlertDialog.vue"],"names":[],"mappings":"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"}
@@ -0,0 +1,45 @@
1
+ type __VLS_Props = {
2
+ modelValue: boolean;
3
+ title?: string;
4
+ eyebrow?: string;
5
+ showCloseButton?: boolean;
6
+ closeOnMask?: boolean;
7
+ padded?: boolean;
8
+ titleAlign?: "left" | "center";
9
+ width?: string;
10
+ maskClass?: string;
11
+ panelClass?: string;
12
+ };
13
+ declare var __VLS_9: {}, __VLS_11: {}, __VLS_13: {};
14
+ type __VLS_Slots = {} & {
15
+ header?: (props: typeof __VLS_9) => any;
16
+ } & {
17
+ default?: (props: typeof __VLS_11) => any;
18
+ } & {
19
+ footer?: (props: typeof __VLS_13) => any;
20
+ };
21
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
22
+ close: () => any;
23
+ "update:modelValue": (value: boolean) => any;
24
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
25
+ onClose?: (() => any) | undefined;
26
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
27
+ }>, {
28
+ title: string;
29
+ width: string;
30
+ eyebrow: string;
31
+ showCloseButton: boolean;
32
+ closeOnMask: boolean;
33
+ padded: boolean;
34
+ titleAlign: "left" | "center";
35
+ maskClass: string;
36
+ panelClass: string;
37
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
38
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
39
+ export default _default;
40
+ type __VLS_WithSlots<T, S> = T & {
41
+ new (): {
42
+ $slots: S;
43
+ };
44
+ };
45
+ //# sourceMappingURL=BaseModal.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BaseModal.vue.d.ts","sourceRoot":"","sources":["../../src/components/BaseModal.vue"],"names":[],"mappings":"AA6CA;AAkPA,KAAK,WAAW,GAAG;IACjB,UAAU,EAAE,OAAO,CAAA;IACnB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,UAAU,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAA;IAC9B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB,CAAC;AA0KF,QAAA,IAAI,OAAO,IAAU,EAAE,QAAQ,IAAW,EAAE,QAAQ,IAAY,CAAE;AAClE,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC3C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAwB/C,QAAA,MAAM,eAAe;;;;;;;WA/MX,MAAM;WAMN,MAAM;aALJ,MAAM;qBACE,OAAO;iBACX,OAAO;YACZ,OAAO;gBACH,MAAM,GAAG,QAAQ;eAElB,MAAM;gBACL,MAAM;6EA+MnB,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAa1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"BigScreenAlertRow.vue.d.ts","sourceRoot":"","sources":["../../src/components/BigScreenAlertRow.vue"],"names":[],"mappings":"AAqCA,KAAK,WAAW,GAAG;IACjB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB,CAAC;AA4GF,QAAA,IAAI,OAAO,IAAU,EAAE,OAAO,IAAW,CAAE;AAC3C,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC3C;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAqB7C,QAAA,MAAM,eAAe;;;;;YAtIV,MAAM;UAHR,MAAM;WAFL,MAAM;WACN,MAAM;SAER,MAAM;gBACC,MAAM;gBAEN,OAAO;6EA6IpB,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAa1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"BigScreenAlertRow.vue.d.ts","sourceRoot":"","sources":["../../src/components/BigScreenAlertRow.vue"],"names":[],"mappings":"AAAA,KAqCK,WAAW,GAAG;IACjB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,UAAU,CAAC,EAAE,OAAO,CAAA;CACrB,CAAC;AA4GF,QAAA,IAAI,OAAO,IAAU,EAAE,OAAO,IAAW,CAAE;AAC3C,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC3C;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAqB7C,QAAA,MAAM,eAAe;;;;;YAtIV,MAAM;UAHR,MAAM;WAFL,MAAM;WACN,MAAM;SAER,MAAM;gBACC,MAAM;gBAEN,OAAO;6EA6IpB,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAa1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,38 @@
1
+ export interface BigScreenRuntimeWidget {
2
+ id: number;
3
+ widgetType: string;
4
+ title?: string | null;
5
+ layout: {
6
+ x: number;
7
+ y: number;
8
+ w: number;
9
+ h: number;
10
+ };
11
+ props: Record<string, any>;
12
+ data: Record<string, any>;
13
+ enabled: boolean;
14
+ }
15
+ export interface BigScreenRuntime {
16
+ profile: {
17
+ id: number;
18
+ code: string;
19
+ name: string;
20
+ baseWidth?: number | null;
21
+ baseHeight?: number | null;
22
+ };
23
+ widgets: BigScreenRuntimeWidget[];
24
+ }
25
+ type __VLS_Props = {
26
+ runtime?: BigScreenRuntime;
27
+ showHalo?: boolean;
28
+ loadAlertDetail?: (id: number) => Promise<any>;
29
+ };
30
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
31
+ secretTap: () => any;
32
+ openDuty: () => any;
33
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
34
+ onSecretTap?: (() => any) | undefined;
35
+ onOpenDuty?: (() => any) | undefined;
36
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
37
+ export default _default;
38
+ //# sourceMappingURL=BigScreenTemplateRenderer.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"BigScreenTemplateRenderer.vue.d.ts","sourceRoot":"","sources":["../../src/components/BigScreenTemplateRenderer.vue"],"names":[],"mappings":"AA+MA,MAAM,WAAW,sBAAsB;IAAG,EAAE,EAAE,MAAM,CAAC;IAAC,UAAU,EAAE,MAAM,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAAC,MAAM,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAAC,OAAO,EAAE,OAAO,CAAA;CAAE;AAClO,MAAM,WAAW,gBAAgB;IAAG,OAAO,EAAE;QAAE,EAAE,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;KAAE,CAAC;IAAC,OAAO,EAAE,sBAAsB,EAAE,CAAA;CAAE;AACnL,KAAK,WAAW,GAAG;IAAE,OAAO,CAAC,EAAE,gBAAgB,CAAC;IAAC,QAAQ,CAAC,EAAE,OAAO,CAAC;IAAC,eAAe,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,OAAO,CAAC,GAAG,CAAC,CAAA;CAAE,CAAC;;;;;;;;AA+tBtH,wBAOG"}
@@ -0,0 +1,24 @@
1
+ interface Props {
2
+ defaultActiveKey?: Array<string | number>;
3
+ accordion?: boolean;
4
+ theme?: "default" | "kube";
5
+ card?: boolean;
6
+ }
7
+ declare var __VLS_1: {};
8
+ type __VLS_Slots = {} & {
9
+ default?: (props: typeof __VLS_1) => any;
10
+ };
11
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
12
+ theme: "default" | "kube";
13
+ defaultActiveKey: Array<string | number>;
14
+ accordion: boolean;
15
+ card: boolean;
16
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
17
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
18
+ export default _default;
19
+ type __VLS_WithSlots<T, S> = T & {
20
+ new (): {
21
+ $slots: S;
22
+ };
23
+ };
24
+ //# sourceMappingURL=Collapse.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Collapse.vue.d.ts","sourceRoot":"","sources":["../../src/components/Collapse.vue"],"names":[],"mappings":"AA4DA,UAAU,KAAK;IACb,gBAAgB,CAAC,EAAE,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC,CAAA;IACzC,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,KAAK,CAAC,EAAE,SAAS,GAAG,MAAM,CAAA;IAC1B,IAAI,CAAC,EAAE,OAAO,CAAA;CACf;AAuDD,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;AAoB/C,QAAA,MAAM,eAAe;WA/EX,SAAS,GAAG,MAAM;sBAFP,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC;eAC7B,OAAO;UAEZ,OAAO;6EAqFd,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAa1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,25 @@
1
+ interface Props {
2
+ itemKey?: string | number;
3
+ key?: string | number;
4
+ header?: string;
5
+ disabled?: boolean;
6
+ }
7
+ declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {};
8
+ type __VLS_Slots = {} & {
9
+ header?: (props: typeof __VLS_1) => any;
10
+ } & {
11
+ extra?: (props: typeof __VLS_3) => any;
12
+ } & {
13
+ default?: (props: typeof __VLS_5) => any;
14
+ };
15
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
16
+ disabled: boolean;
17
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
18
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
19
+ export default _default;
20
+ type __VLS_WithSlots<T, S> = T & {
21
+ new (): {
22
+ $slots: S;
23
+ };
24
+ };
25
+ //# sourceMappingURL=CollapseItem.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CollapseItem.vue.d.ts","sourceRoot":"","sources":["../../src/components/CollapseItem.vue"],"names":[],"mappings":"AAkIA,UAAU,KAAK;IACb,OAAO,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACzB,GAAG,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;IACrB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAqGD,QAAA,IAAI,OAAO,IAAU,EAAE,OAAO,IAAU,EAAE,OAAO,IAAW,CAAE;AAC9D,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,MAAM,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC3C;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC1C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAwB/C,QAAA,MAAM,eAAe;cAlIR,OAAO;6EAyIlB,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAa1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,32 @@
1
+ type __VLS_Props = {
2
+ values?: number[];
3
+ timestamps?: number[];
4
+ failureTimestamps?: number[];
5
+ triggerTime?: string;
6
+ triggerValue?: string;
7
+ context?: Record<string, string | number | null | undefined>;
8
+ color?: string;
9
+ height?: number;
10
+ compact?: boolean;
11
+ showExtremaMarkers?: boolean;
12
+ enableExtremaHover?: boolean;
13
+ activeMarker?: "min" | "max" | "trigger" | null;
14
+ enableSelectionZoom?: boolean;
15
+ };
16
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
17
+ compact: boolean;
18
+ values: number[];
19
+ height: number;
20
+ timestamps: number[];
21
+ failureTimestamps: number[];
22
+ triggerTime: string;
23
+ triggerValue: string;
24
+ context: Record<string, string | number | null | undefined>;
25
+ color: string;
26
+ showExtremaMarkers: boolean;
27
+ enableExtremaHover: boolean;
28
+ activeMarker: "min" | "max" | "trigger" | null;
29
+ enableSelectionZoom: boolean;
30
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
31
+ export default _default;
32
+ //# sourceMappingURL=MetricTrendChart.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MetricTrendChart.vue.d.ts","sourceRoot":"","sources":["../../src/components/MetricTrendChart.vue"],"names":[],"mappings":"AAmDA;AAw6BA,KAAK,WAAW,GAAG;IACjB,MAAM,CAAC,EAAE,MAAM,EAAE,CAAA;IACjB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAA;IACrB,iBAAiB,CAAC,EAAE,MAAM,EAAE,CAAA;IAC5B,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC,CAAA;IAC5D,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAC5B,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAC5B,YAAY,CAAC,EAAE,KAAK,GAAG,KAAK,GAAG,SAAS,GAAG,IAAI,CAAA;IAC/C,mBAAmB,CAAC,EAAE,OAAO,CAAA;CAC9B,CAAC;;aALU,OAAO;YARR,MAAM,EAAE;YAOR,MAAM;gBANF,MAAM,EAAE;uBACD,MAAM,EAAE;iBACd,MAAM;kBACL,MAAM;aACX,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;WACpD,MAAM;wBAGO,OAAO;wBACP,OAAO;kBACb,KAAK,GAAG,KAAK,GAAG,SAAS,GAAG,IAAI;yBACzB,OAAO;;AAq6B/B,wBAOG"}
@@ -0,0 +1,18 @@
1
+ interface Props {
2
+ theme?: "default" | "kube";
3
+ }
4
+ declare var __VLS_1: {};
5
+ type __VLS_Slots = {} & {
6
+ default?: (props: typeof __VLS_1) => any;
7
+ };
8
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
9
+ theme: "default" | "kube";
10
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
11
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
12
+ export default _default;
13
+ type __VLS_WithSlots<T, S> = T & {
14
+ new (): {
15
+ $slots: S;
16
+ };
17
+ };
18
+ //# sourceMappingURL=Timeline.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Timeline.vue.d.ts","sourceRoot":"","sources":["../../src/components/Timeline.vue"],"names":[],"mappings":"AAyBA,UAAU,KAAK;IACb,KAAK,CAAC,EAAE,SAAS,GAAG,MAAM,CAAA;CAC3B;AA4BD,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;AAoB/C,QAAA,MAAM,eAAe;WAnDX,SAAS,GAAG,MAAM;6EA0D1B,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAa1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,37 @@
1
+ interface Props {
2
+ time?: string;
3
+ active?: boolean;
4
+ last?: boolean;
5
+ lineColor?: string;
6
+ dotColor?: string;
7
+ hideDot?: boolean;
8
+ dotType?: "hollow" | "solid";
9
+ lineType?: "solid" | "dashed" | "dotted";
10
+ label?: string;
11
+ }
12
+ declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {};
13
+ type __VLS_Slots = {} & {
14
+ label?: (props: typeof __VLS_1) => any;
15
+ } & {
16
+ dot?: (props: typeof __VLS_3) => any;
17
+ } & {
18
+ default?: (props: typeof __VLS_5) => any;
19
+ };
20
+ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
21
+ label: string;
22
+ active: boolean;
23
+ last: boolean;
24
+ lineColor: string;
25
+ dotColor: string;
26
+ hideDot: boolean;
27
+ dotType: "hollow" | "solid";
28
+ lineType: "solid" | "dashed" | "dotted";
29
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
30
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
31
+ export default _default;
32
+ type __VLS_WithSlots<T, S> = T & {
33
+ new (): {
34
+ $slots: S;
35
+ };
36
+ };
37
+ //# sourceMappingURL=TimelineItem.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TimelineItem.vue.d.ts","sourceRoot":"","sources":["../../src/components/TimelineItem.vue"],"names":[],"mappings":"AA2JA,UAAU,KAAK;IACb,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,OAAO,CAAC,EAAE,QAAQ,GAAG,OAAO,CAAA;IAC5B,QAAQ,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,QAAQ,CAAA;IACxC,KAAK,CAAC,EAAE,MAAM,CAAA;CACf;AA6GD,QAAA,IAAI,OAAO,IAAU,EAAE,OAAO,IAAU,EAAE,OAAO,IAAW,CAAE;AAC9D,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,KAAK,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC1C;IAAE,GAAG,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GACxC;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAoB/C,QAAA,MAAM,eAAe;WAtIX,MAAM;YAPL,OAAO;UACT,OAAO;eACF,MAAM;cACP,MAAM;aACP,OAAO;aACP,QAAQ,GAAG,OAAO;cACjB,OAAO,GAAG,QAAQ,GAAG,QAAQ;6EA8IxC,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAa1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,28 @@
1
+ type __VLS_Props = {
2
+ variant?: "primary" | "secondary" | "danger";
3
+ appearance?: "dialog" | "tech" | "soft" | "surface";
4
+ size?: "xs" | "sm" | "md" | "lg" | "icon";
5
+ type?: "button" | "submit" | "reset";
6
+ disabled?: boolean;
7
+ block?: boolean;
8
+ };
9
+ declare var __VLS_1: {};
10
+ type __VLS_Slots = {} & {
11
+ default?: (props: typeof __VLS_1) => any;
12
+ };
13
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
14
+ type: "button" | "submit" | "reset";
15
+ disabled: boolean;
16
+ variant: "primary" | "secondary" | "danger";
17
+ appearance: "dialog" | "tech" | "soft" | "surface";
18
+ size: "xs" | "sm" | "md" | "lg" | "icon";
19
+ block: boolean;
20
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
21
+ declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
22
+ export default _default;
23
+ type __VLS_WithSlots<T, S> = T & {
24
+ new (): {
25
+ $slots: S;
26
+ };
27
+ };
28
+ //# sourceMappingURL=UiButton.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UiButton.vue.d.ts","sourceRoot":"","sources":["../../src/components/UiButton.vue"],"names":[],"mappings":"AAeA;AA6NA,KAAK,WAAW,GAAG;IACjB,OAAO,CAAC,EAAE,SAAS,GAAG,WAAW,GAAG,QAAQ,CAAA;IAC5C,UAAU,CAAC,EAAE,QAAQ,GAAG,MAAM,GAAG,MAAM,GAAG,SAAS,CAAA;IACnD,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,MAAM,CAAA;IACzC,IAAI,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,OAAO,CAAA;IACpC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,KAAK,CAAC,EAAE,OAAO,CAAA;CAChB,CAAC;AAsGF,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;AAoB/C,QAAA,MAAM,eAAe;UA/HZ,QAAQ,GAAG,QAAQ,GAAG,OAAO;cACzB,OAAO;aAJR,SAAS,GAAG,WAAW,GAAG,QAAQ;gBAC/B,QAAQ,GAAG,MAAM,GAAG,MAAM,GAAG,SAAS;UAC5C,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,MAAM;WAGjC,OAAO;6EAoIf,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAa1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,11 @@
1
+ type __VLS_Props = {
2
+ value: string | number;
3
+ tone?: string;
4
+ size?: "sm" | "md" | "lg";
5
+ };
6
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
7
+ tone: string;
8
+ size: "sm" | "md" | "lg";
9
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
10
+ export default _default;
11
+ //# sourceMappingURL=UiMetricValue.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UiMetricValue.vue.d.ts","sourceRoot":"","sources":["../../src/components/UiMetricValue.vue"],"names":[],"mappings":"AASA;AA2CA,KAAK,WAAW,GAAG;IACjB,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;IACtB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;CAC1B,CAAC;;UAFO,MAAM;UACN,IAAI,GAAG,IAAI,GAAG,IAAI;;AAqD3B,wBAOG"}
@@ -0,0 +1,21 @@
1
+ type __VLS_Props = {
2
+ modelValue: string;
3
+ items: Array<{
4
+ label: string;
5
+ value: string;
6
+ badge?: string | number;
7
+ }>;
8
+ ariaLabel?: string;
9
+ variant?: "default" | "tech";
10
+ size?: "xs" | "sm" | "md";
11
+ };
12
+ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
13
+ "update:modelValue": (value: string) => any;
14
+ }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
15
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
16
+ }>, {
17
+ variant: "default" | "tech";
18
+ size: "xs" | "sm" | "md";
19
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
20
+ export default _default;
21
+ //# sourceMappingURL=UiSegmented.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UiSegmented.vue.d.ts","sourceRoot":"","sources":["../../src/components/UiSegmented.vue"],"names":[],"mappings":"AAiBA;AA8LA,KAAK,WAAW,GAAG;IACjB,UAAU,EAAE,MAAM,CAAA;IAClB,KAAK,EAAE,KAAK,CAAC;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC,CAAA;IACvE,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,OAAO,CAAC,EAAE,SAAS,GAAG,MAAM,CAAA;IAC5B,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,CAAA;CAC1B,CAAC;;;;;;aAFU,SAAS,GAAG,MAAM;UACrB,IAAI,GAAG,IAAI,GAAG,IAAI;;AA0H3B,wBAQG"}
@@ -72,6 +72,7 @@ export declare const bigScreenPreviewFixtures: {
72
72
  readonly stats: {
73
73
  readonly todayTotal: 12;
74
74
  readonly todayPending: 3;
75
+ readonly todayResolved: 9;
75
76
  readonly overdueTotal: 1;
76
77
  readonly criticalCount: 1;
77
78
  readonly warningCount: 5;
@@ -88,6 +89,9 @@ export declare const bigScreenPreviewFixtures: {
88
89
  readonly source: "edge-01";
89
90
  readonly firedAt: "14:20";
90
91
  readonly groupNames: readonly ["网络组"];
92
+ readonly triggerValue: "218ms";
93
+ readonly chartValues: readonly [118, 125, 131, 146, 153, 168, 182, 196, 218];
94
+ readonly chartTimestamps: readonly ["13:40", "13:45", "13:50", "13:55", "14:00", "14:05", "14:10", "14:15", "14:20"];
91
95
  }, {
92
96
  readonly id: 2;
93
97
  readonly alertId: "AL-20260727-002";
@@ -99,17 +103,23 @@ export declare const bigScreenPreviewFixtures: {
99
103
  readonly source: "CI/CD";
100
104
  readonly firedAt: "14:08";
101
105
  readonly groupNames: readonly ["平台组"];
106
+ readonly triggerValue: "14min";
107
+ readonly chartValues: readonly [4, 5, 5, 7, 8, 10, 12, 14];
108
+ readonly chartTimestamps: readonly ["13:33", "13:38", "13:43", "13:48", "13:53", "13:58", "14:03", "14:08"];
102
109
  }, {
103
110
  readonly id: 3;
104
111
  readonly alertId: "AL-20260727-003";
105
112
  readonly title: "磁盘使用率接近阈值";
106
113
  readonly severity: "INFO";
107
114
  readonly severityText: "提示";
108
- readonly status: "pending";
109
- readonly statusText: "待处理";
115
+ readonly status: "RESOLVED";
116
+ readonly statusText: "已恢复";
110
117
  readonly source: "node-03";
111
118
  readonly firedAt: "13:56";
112
119
  readonly groupNames: readonly ["运维组"];
120
+ readonly triggerValue: "88%";
121
+ readonly chartValues: readonly [72, 75, 78, 81, 85, 88, 83, 78];
122
+ readonly chartTimestamps: readonly ["13:21", "13:26", "13:31", "13:36", "13:41", "13:46", "13:51", "13:56"];
113
123
  }];
114
124
  };
115
125
  readonly build_projects: {
@@ -184,6 +194,7 @@ export declare const bigScreenPreviewFixtures: {
184
194
  readonly heartbeatResults: readonly [];
185
195
  }];
186
196
  };
197
+ readonly external_embed: {};
187
198
  };
188
199
  export type BigScreenPreviewWidgetType = keyof typeof bigScreenPreviewFixtures;
189
200
  /** Returns a fresh object so an editor preview can never mutate package fixtures. */
@@ -1 +1 @@
1
- {"version":3,"file":"big-screen.d.ts","sourceRoot":"","sources":["../../src/fixtures/big-screen.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkD3B,CAAA;AAEV,MAAM,MAAM,0BAA0B,GAAG,MAAM,OAAO,wBAAwB,CAAA;AAE9E,qFAAqF;AACrF,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,0BAA0B,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAEjG"}
1
+ {"version":3,"file":"big-screen.d.ts","sourceRoot":"","sources":["../../src/fixtures/big-screen.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmD3B,CAAA;AAEV,MAAM,MAAM,0BAA0B,GAAG,MAAM,OAAO,wBAAwB,CAAA;AAE9E,qFAAqF;AACrF,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,0BAA0B,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAEjG"}