@kestra-io/ui-libs 0.0.262 → 0.0.264
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/{VueFlowUtils-D6fVYEkI.js → VueFlowUtils-DifPO0kH.js} +1229 -1261
- package/dist/VueFlowUtils-DifPO0kH.js.map +1 -0
- package/dist/VueFlowUtils-DjetWQIy.cjs +2 -0
- package/dist/VueFlowUtils-DjetWQIy.cjs.map +1 -0
- package/dist/components/index.d.ts +5 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/misc/Collapsible.vue.d.ts.map +1 -1
- package/dist/components/misc/ElementCard.vue.d.ts +25 -0
- package/dist/components/misc/ElementCard.vue.d.ts.map +1 -0
- package/dist/components/misc/{State.vue.d.ts → Status.vue.d.ts} +8 -3
- package/dist/components/misc/Status.vue.d.ts.map +1 -0
- package/dist/components/misc/SubgroupCard.vue.d.ts +20 -0
- package/dist/components/misc/SubgroupCard.vue.d.ts.map +1 -0
- package/dist/components/nodes/EdgeNode.vue.d.ts.map +1 -1
- package/dist/components/plugins/CollapsibleProperties.vue.d.ts.map +1 -1
- package/dist/components/plugins/PluginIndex.vue.d.ts +13 -3
- package/dist/components/plugins/PluginIndex.vue.d.ts.map +1 -1
- package/dist/components/plugins/PropertyDetail.vue.d.ts.map +1 -1
- package/dist/components/plugins/SchemaToHtml.vue.d.ts.map +1 -1
- package/dist/components/plugins_v2/CollapsiblePropertiesV2.vue.d.ts +39 -0
- package/dist/components/plugins_v2/CollapsiblePropertiesV2.vue.d.ts.map +1 -0
- package/dist/components/plugins_v2/CollapsibleV2.vue.d.ts +34 -0
- package/dist/components/plugins_v2/CollapsibleV2.vue.d.ts.map +1 -0
- package/dist/components/plugins_v2/DefinitionCollapsible.vue.d.ts +34 -0
- package/dist/components/plugins_v2/DefinitionCollapsible.vue.d.ts.map +1 -0
- package/dist/components/plugins_v2/PropertyBadges.vue.d.ts +13 -0
- package/dist/components/plugins_v2/PropertyBadges.vue.d.ts.map +1 -0
- package/dist/components/plugins_v2/PropertyDetailV2.vue.d.ts +43 -0
- package/dist/components/plugins_v2/PropertyDetailV2.vue.d.ts.map +1 -0
- package/dist/components/plugins_v2/PropertyMeta.vue.d.ts +10 -0
- package/dist/components/plugins_v2/PropertyMeta.vue.d.ts.map +1 -0
- package/dist/components/plugins_v2/SchemaToHtmlV2.vue.d.ts +50 -0
- package/dist/components/plugins_v2/SchemaToHtmlV2.vue.d.ts.map +1 -0
- package/dist/components/topology/Topology.vue.d.ts +1 -1
- package/dist/composables/usePluginElementCounts.d.ts +13 -0
- package/dist/composables/usePluginElementCounts.d.ts.map +1 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/kestra-index.cjs.js +15 -13
- package/dist/kestra-index.cjs.js.map +1 -1
- package/dist/kestra-index.es.js +4875 -4002
- package/dist/kestra-index.es.js.map +1 -1
- package/dist/kestra-vueflowutils.cjs.js +1 -1
- package/dist/kestra-vueflowutils.es.js +10 -10
- package/dist/ui-libs.css +1 -1
- package/dist/utils/Utils.d.ts +2 -0
- package/dist/utils/Utils.d.ts.map +1 -1
- package/dist/utils/VueFlowUtils.d.ts.map +1 -1
- package/dist/utils/constants.d.ts +0 -39
- package/dist/utils/constants.d.ts.map +1 -1
- package/dist/utils/plugins.d.ts +30 -0
- package/dist/utils/plugins.d.ts.map +1 -1
- package/dist/utils/schemaUtils.d.ts +6 -0
- package/dist/utils/schemaUtils.d.ts.map +1 -1
- package/dist/utils/state.d.ts +1 -0
- package/dist/utils/state.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/index.ts +5 -1
- package/src/components/misc/Collapsible.vue +7 -1
- package/src/components/misc/ElementCard.vue +132 -0
- package/src/components/misc/Status.vue +120 -0
- package/src/components/misc/SubgroupCard.vue +178 -0
- package/src/components/nodes/EdgeNode.vue +17 -1
- package/src/components/plugins/CollapsibleProperties.vue +2 -13
- package/src/components/plugins/PluginIndex.vue +166 -37
- package/src/components/plugins/PropertyDetail.vue +5 -5
- package/src/components/plugins/SchemaToHtml.vue +7 -3
- package/src/components/plugins_v2/CollapsiblePropertiesV2.vue +183 -0
- package/src/components/plugins_v2/CollapsibleV2.vue +121 -0
- package/src/components/plugins_v2/DefinitionCollapsible.vue +208 -0
- package/src/components/plugins_v2/PropertyBadges.vue +93 -0
- package/src/components/plugins_v2/PropertyDetailV2.vue +127 -0
- package/src/components/plugins_v2/PropertyMeta.vue +169 -0
- package/src/components/plugins_v2/SchemaToHtmlV2.vue +213 -0
- package/src/composables/usePluginElementCounts.ts +16 -0
- package/src/index.ts +3 -2
- package/src/scss/_variables.scss +70 -1
- package/src/utils/Utils.ts +5 -0
- package/src/utils/VueFlowUtils.ts +10 -2
- package/src/utils/constants.ts +0 -45
- package/src/utils/plugins.ts +76 -1
- package/src/utils/schemaUtils.ts +45 -1
- package/src/utils/state.ts +2 -0
- package/dist/VueFlowUtils-CF-L3pYu.cjs +0 -2
- package/dist/VueFlowUtils-CF-L3pYu.cjs.map +0 -1
- package/dist/VueFlowUtils-D6fVYEkI.js.map +0 -1
- package/dist/components/misc/State.vue.d.ts.map +0 -1
- package/src/components/misc/State.vue +0 -59
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
export { default as DependenciesNode } from "./nodes/DependenciesNode.vue";
|
|
2
2
|
export { default as Topology } from "./topology/Topology.vue";
|
|
3
|
-
export { default as
|
|
3
|
+
export { default as Status } from "./misc/Status.vue";
|
|
4
4
|
export { default as TaskIcon } from "./misc/TaskIcon.vue";
|
|
5
5
|
export { default as Collapsible } from "./misc/Collapsible.vue";
|
|
6
|
+
export { default as CollapsibleV2 } from "./plugins_v2/CollapsibleV2.vue";
|
|
7
|
+
export { default as SubgroupCard } from "./misc/SubgroupCard.vue";
|
|
8
|
+
export { default as ElementCard } from "./misc/ElementCard.vue";
|
|
6
9
|
export { default as SchemaToHtml } from "./plugins/SchemaToHtml.vue";
|
|
10
|
+
export { default as SchemaToHtmlV2 } from "./plugins_v2/SchemaToHtmlV2.vue";
|
|
7
11
|
export { default as PluginIndex } from "./plugins/PluginIndex.vue";
|
|
8
12
|
export { default as MDCRenderer } from "./content/MDCRenderer.vue";
|
|
9
13
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,OAAO,IAAI,gBAAgB,EAAC,MAAM,8BAA8B,CAAA;AAGxE,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,yBAAyB,CAAC;AAG5D,OAAO,EAAC,OAAO,IAAI,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,OAAO,IAAI,gBAAgB,EAAC,MAAM,8BAA8B,CAAA;AAGxE,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,yBAAyB,CAAC;AAG5D,OAAO,EAAC,OAAO,IAAI,MAAM,EAAC,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAC,OAAO,IAAI,QAAQ,EAAC,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAC,OAAO,IAAI,WAAW,EAAC,MAAM,wBAAwB,CAAC;AAC9D,OAAO,EAAC,OAAO,IAAI,aAAa,EAAC,MAAM,gCAAgC,CAAC;AACxE,OAAO,EAAC,OAAO,IAAI,YAAY,EAAC,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAC,OAAO,IAAI,WAAW,EAAC,MAAM,wBAAwB,CAAC;AAG9D,OAAO,EAAC,OAAO,IAAI,YAAY,EAAC,MAAM,4BAA4B,CAAC;AACnE,OAAO,EAAC,OAAO,IAAI,cAAc,EAAC,MAAM,iCAAiC,CAAC;AAC1E,OAAO,EAAC,OAAO,IAAI,WAAW,EAAC,MAAM,2BAA2B,CAAC;AAGjE,OAAO,EAAC,OAAO,IAAI,WAAW,EAAC,MAAM,2BAA2B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Collapsible.vue.d.ts","sourceRoot":"","sources":["../../../src/components/misc/Collapsible.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Collapsible.vue.d.ts","sourceRoot":"","sources":["../../../src/components/misc/Collapsible.vue"],"names":[],"mappings":"AA6HI,KAAK,WAAW,GAAG;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,aAAa,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,WAAW,CAAC,EAAE,OAAO,CAAA;CACxB,CAAC;AAiKN,QAAA,IAAI,OAAO,IAAU,EAAE,OAAO;;CAAU,EAAE,QAAQ,IAAW,CAAE;AAC/D,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,oBAAoB,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GACzD;IAAE,WAAW,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAChD;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAKhD,QAAA,MAAM,UAAU;;;;;UA/KD,MAAM;WAEL,OAAO;uBACK,OAAO;iBACb,OAAO;6EA+K3B,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,25 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
iconB64Svg: string;
|
|
3
|
+
text: string;
|
|
4
|
+
routePath: string;
|
|
5
|
+
pluginClass: string;
|
|
6
|
+
href?: string | undefined;
|
|
7
|
+
isActive?: boolean;
|
|
8
|
+
title?: string;
|
|
9
|
+
};
|
|
10
|
+
declare var __VLS_5: {
|
|
11
|
+
content: string;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_Slots = {} & {
|
|
14
|
+
markdown?: (props: typeof __VLS_5) => any;
|
|
15
|
+
};
|
|
16
|
+
declare const __VLS_base: 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>;
|
|
17
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
19
|
+
export default _default;
|
|
20
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
21
|
+
new (): {
|
|
22
|
+
$slots: S;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
//# sourceMappingURL=ElementCard.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ElementCard.vue.d.ts","sourceRoot":"","sources":["../../../src/components/misc/ElementCard.vue"],"names":[],"mappings":"AAyII,KAAK,WAAW,GAAG;IACf,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAA;IACjB,WAAW,EAAE,MAAM,CAAA;IACnB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,KAAK,CAAC,EAAE,MAAM,CAAA;CACjB,CAAC;AAqFN,QAAA,IAAI,OAAO;;CAAW,CAAE;AACxB,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,CAAC;AAKhD,QAAA,MAAM,UAAU,kSAEd,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"}
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
type __VLS_Props = {
|
|
2
|
-
|
|
2
|
+
status: string;
|
|
3
|
+
title?: string;
|
|
4
|
+
icon?: boolean;
|
|
5
|
+
size?: "large" | "default" | "small";
|
|
3
6
|
};
|
|
4
7
|
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
5
|
-
|
|
8
|
+
title: string;
|
|
9
|
+
size: "large" | "default" | "small";
|
|
10
|
+
icon: boolean;
|
|
6
11
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
12
|
declare const _default: typeof __VLS_export;
|
|
8
13
|
export default _default;
|
|
9
|
-
//# sourceMappingURL=
|
|
14
|
+
//# sourceMappingURL=Status.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Status.vue.d.ts","sourceRoot":"","sources":["../../../src/components/misc/Status.vue"],"names":[],"mappings":"AA6HI,KAAK,WAAW,GAAG;IACf,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,OAAO,CAAC;CACxC,CAAC;AA2FN,QAAA,MAAM,YAAY;WA9FF,MAAM;UAEP,OAAO,GAAG,SAAS,GAAG,OAAO;UAD7B,OAAO;6EAgGpB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
iconB64Svg: string;
|
|
3
|
+
text: string;
|
|
4
|
+
routePath: string;
|
|
5
|
+
totalCount: number;
|
|
6
|
+
description?: string;
|
|
7
|
+
href?: string | undefined;
|
|
8
|
+
isActive?: boolean;
|
|
9
|
+
blueprintsCount?: number;
|
|
10
|
+
};
|
|
11
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
12
|
+
description: string;
|
|
13
|
+
href: string;
|
|
14
|
+
totalCount: number;
|
|
15
|
+
isActive: boolean;
|
|
16
|
+
blueprintsCount: number;
|
|
17
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
19
|
+
export default _default;
|
|
20
|
+
//# sourceMappingURL=SubgroupCard.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SubgroupCard.vue.d.ts","sourceRoot":"","sources":["../../../src/components/misc/SubgroupCard.vue"],"names":[],"mappings":"AAuLI,KAAK,WAAW,GAAG;IACf,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAA;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IACzB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,eAAe,CAAC,EAAE,MAAM,CAAA;CAC3B,CAAC;AAwIN,QAAA,MAAM,YAAY;iBA5II,MAAM;;gBADR,MAAM;cAGP,OAAO;qBACA,MAAM;6EA4I9B,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"EdgeNode.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nodes/EdgeNode.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"EdgeNode.vue.d.ts","sourceRoot":"","sources":["../../../src/components/nodes/EdgeNode.vue"],"names":[],"mappings":"AAkJI,OAAO,EAAW,QAAQ,EAAC,MAAM,KAAK,CAAC;AAiN3C,QAAA,MAAM,YAAY;;;;;;cAOU,QAAQ,CAAC,GAAG,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAAb,QAAQ,CAAC,GAAG,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAgCvC,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CollapsibleProperties.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins/CollapsibleProperties.vue"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"CollapsibleProperties.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins/CollapsibleProperties.vue"],"names":[],"mappings":"AAAA,OAsMW,EAGH,KAAK,YAAY,EAGpB,MAAM,yBAAyB,CAAC;AAYjC,KAAK,WAAW,GAAG;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC;IAC1C,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,WAAW,CAAC,EAAE,OAAO,CAAA;CACxB,CAAC;AA2XN,QAAA,IAAI,QAAQ;;CAAY,CAAE;AAC1B,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAKjD,QAAA,MAAM,UAAU;;;;;UAzYD,MAAM;uBAIO,OAAO;iBAEb,OAAO;gBAJR,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC;iBAC3B,OAAO;kBAEN,MAAM,EAAE;6EAwY7B,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,16 +1,26 @@
|
|
|
1
|
-
import type { Plugin } from "../../utils/plugins";
|
|
1
|
+
import type { Plugin, PluginMetadata } from "../../utils/plugins";
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
plugins: Plugin[];
|
|
4
4
|
pluginName: string;
|
|
5
5
|
routePath: string;
|
|
6
6
|
icons: Record<string, string>;
|
|
7
7
|
subGroup?: string | undefined;
|
|
8
|
+
activeId?: string | undefined;
|
|
9
|
+
subgroupBlueprintCounts?: Record<string, number>;
|
|
10
|
+
metadataMap?: Record<string, PluginMetadata>;
|
|
11
|
+
schemas?: Record<string, {
|
|
12
|
+
title?: string;
|
|
13
|
+
}>;
|
|
8
14
|
};
|
|
9
|
-
declare var
|
|
15
|
+
declare var __VLS_16: {
|
|
16
|
+
content: string;
|
|
17
|
+
}, __VLS_18: {
|
|
10
18
|
content: string;
|
|
11
19
|
};
|
|
12
20
|
type __VLS_Slots = {} & {
|
|
13
|
-
markdown?: (props: typeof
|
|
21
|
+
markdown?: (props: typeof __VLS_16) => any;
|
|
22
|
+
} & {
|
|
23
|
+
markdown?: (props: typeof __VLS_18) => any;
|
|
14
24
|
};
|
|
15
25
|
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
16
26
|
goTo: (target: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PluginIndex.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins/PluginIndex.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"PluginIndex.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins/PluginIndex.vue"],"names":[],"mappings":"AA8NI,OAAO,KAAK,EAAC,MAAM,EAAE,cAAc,EAAC,MAAM,qBAAqB,CAAC;AAShE,KAAK,WAAW,GAAG;IACf,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAA;IACjB,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IAC7B,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC9B,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAC7B,uBAAuB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACjD,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC;IAC7C,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE;QAAC,KAAK,CAAC,EAAE,MAAM,CAAA;KAAC,CAAC,CAAA;CAC7C,CAAC;AAgVN,QAAA,IAAI,QAAQ;;CAAW,EAAE,QAAQ;;CAAY,CAAE;AAC/C,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAOjD,QAAA,MAAM,UAAU;;mBApSwB,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE,UAAU,CAAC;kBAAY,MAAM;;;;mBAAnD,MAAM,GAAG,IAAI,CAAC,MAAM,EAAE,UAAU,CAAC;kBAAY,MAAM;;kFAuSzF,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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PropertyDetail.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins/PropertyDetail.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"PropertyDetail.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins/PropertyDetail.vue"],"names":[],"mappings":"AAwNI,OAAO,EAAgD,KAAK,YAAY,EAAC,MAAM,4BAA4B,CAAC;AAK5G,KAAK,WAAW,GAAG;IACf,QAAQ,EAAE,YAAY,CAAA;CACzB,CAAC;AAqYN,QAAA,IAAI,OAAO;;CAAU,EAAE,OAAO;;CAAU,EAAE,QAAQ;;CAAY,CAAE;AAChE,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAKjD,QAAA,MAAM,UAAU,kSAEd,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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SchemaToHtml.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins/SchemaToHtml.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SchemaToHtml.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins/SchemaToHtml.vue"],"names":[],"mappings":"AAqSI,OAAO,KAAK,EAAe,UAAU,EAAC,MAAM,4BAA4B,CAAC;AAIzE,KAAK,WAAW,GAAG;IACf,MAAM,EAAE,UAAU,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,sBAAsB,CAAC,EAAE,MAAM,EAAE,CAAC;IAClC,WAAW,CAAC,EAAE,OAAO,CAAA;CACxB,CAAC;AA0fN,QAAA,IAAI,OAAO;;CAAU,EAAE,OAAO;;CAAU,EAAE,QAAQ;;CAAW,EAAE,QAAQ;;CAAW,EAAE,QAAQ;;CAAW,EAAE,QAAQ;;CAAW,EAAE,QAAQ;;CAAY,CAAE;AACpJ,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAKjD,QAAA,MAAM,UAAU;iBAxgBM,OAAO;cAHV,OAAO;4BACO,OAAO;4BACP,MAAM,EAAE;6EA4gBvC,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,39 @@
|
|
|
1
|
+
import { type JSONProperty, type JSONSchema } from "../../utils/schemaUtils";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
href?: string;
|
|
4
|
+
sectionName: string;
|
|
5
|
+
properties?: Record<string, JSONProperty>;
|
|
6
|
+
showDynamic?: boolean;
|
|
7
|
+
initiallyExpanded?: boolean;
|
|
8
|
+
forceInclude?: string[];
|
|
9
|
+
noUrlChange?: boolean;
|
|
10
|
+
definitions?: Record<string, JSONSchema>;
|
|
11
|
+
};
|
|
12
|
+
declare var __VLS_28: {
|
|
13
|
+
content: any;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_Slots = {} & {
|
|
16
|
+
markdown?: (props: typeof __VLS_28) => any;
|
|
17
|
+
};
|
|
18
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
+
expand: (...args: any[]) => void;
|
|
20
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
21
|
+
onExpand?: ((...args: any[]) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
href: string;
|
|
24
|
+
initiallyExpanded: boolean;
|
|
25
|
+
noUrlChange: boolean;
|
|
26
|
+
properties: Record<string, JSONProperty>;
|
|
27
|
+
showDynamic: boolean;
|
|
28
|
+
forceInclude: string[];
|
|
29
|
+
definitions: Record<string, JSONSchema>;
|
|
30
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
31
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
32
|
+
declare const _default: typeof __VLS_export;
|
|
33
|
+
export default _default;
|
|
34
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
35
|
+
new (): {
|
|
36
|
+
$slots: S;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
//# sourceMappingURL=CollapsiblePropertiesV2.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CollapsiblePropertiesV2.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins_v2/CollapsiblePropertiesV2.vue"],"names":[],"mappings":"AAwLI,OAAO,EACH,KAAK,YAAY,EACjB,KAAK,UAAU,EAElB,MAAM,yBAAyB,CAAC;AAMjC,KAAK,WAAW,GAAG;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC;IAC1C,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,CAAA;CAC3C,CAAC;AAqON,QAAA,IAAI,QAAQ;;CAAY,CAAE;AAC1B,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAKjD,QAAA,MAAM,UAAU;;;;;UApPD,MAAM;uBAIO,OAAO;iBAEb,OAAO;gBAJR,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC;iBAC3B,OAAO;kBAEN,MAAM,EAAE;iBAET,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;6EAiP9C,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,34 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
href?: string;
|
|
3
|
+
title: string;
|
|
4
|
+
arrow?: boolean;
|
|
5
|
+
initiallyExpanded?: boolean;
|
|
6
|
+
noUrlChange?: boolean;
|
|
7
|
+
};
|
|
8
|
+
declare var __VLS_1: {}, __VLS_3: {}, __VLS_10: {};
|
|
9
|
+
type __VLS_Slots = {} & {
|
|
10
|
+
additional?: (props: typeof __VLS_1) => any;
|
|
11
|
+
} & {
|
|
12
|
+
right?: (props: typeof __VLS_3) => any;
|
|
13
|
+
} & {
|
|
14
|
+
content?: (props: typeof __VLS_10) => any;
|
|
15
|
+
};
|
|
16
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
|
+
expand: (...args: any[]) => void;
|
|
18
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
19
|
+
onExpand?: ((...args: any[]) => any) | undefined;
|
|
20
|
+
}>, {
|
|
21
|
+
href: string;
|
|
22
|
+
arrow: boolean;
|
|
23
|
+
initiallyExpanded: boolean;
|
|
24
|
+
noUrlChange: boolean;
|
|
25
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
27
|
+
declare const _default: typeof __VLS_export;
|
|
28
|
+
export default _default;
|
|
29
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
30
|
+
new (): {
|
|
31
|
+
$slots: S;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
//# sourceMappingURL=CollapsibleV2.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CollapsibleV2.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins_v2/CollapsibleV2.vue"],"names":[],"mappings":"AA+HI,KAAK,WAAW,GAAG;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,WAAW,CAAC,EAAE,OAAO,CAAA;CACxB,CAAC;AAwJN,QAAA,IAAI,OAAO,IAAU,EAAE,OAAO,IAAU,EAAE,QAAQ,IAAW,CAAE;AAC/D,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,UAAU,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC/C;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,CAAC;AAKhD,QAAA,MAAM,UAAU;;;;;UAtKD,MAAM;WAEL,OAAO;uBACK,OAAO;iBACb,OAAO;6EAsK3B,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,34 @@
|
|
|
1
|
+
import { type JSONProperty, type JSONSchema } from "../../utils/schemaUtils.ts";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
definition: {
|
|
4
|
+
key: string;
|
|
5
|
+
title: string;
|
|
6
|
+
properties: Record<string, JSONProperty>;
|
|
7
|
+
};
|
|
8
|
+
definitions?: Record<string, JSONSchema>;
|
|
9
|
+
visitedKeys?: Set<string>;
|
|
10
|
+
depth?: number;
|
|
11
|
+
maxDepth?: number;
|
|
12
|
+
section?: string;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_Slots = {
|
|
15
|
+
markdown: {
|
|
16
|
+
content: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
20
|
+
section: string;
|
|
21
|
+
definitions: Record<string, JSONSchema>;
|
|
22
|
+
visitedKeys: Set<string>;
|
|
23
|
+
depth: number;
|
|
24
|
+
maxDepth: number;
|
|
25
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
27
|
+
declare const _default: typeof __VLS_export;
|
|
28
|
+
export default _default;
|
|
29
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
30
|
+
new (): {
|
|
31
|
+
$slots: S;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
//# sourceMappingURL=DefinitionCollapsible.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DefinitionCollapsible.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins_v2/DefinitionCollapsible.vue"],"names":[],"mappings":"AAmNI,OAAO,EAIH,KAAK,YAAY,EACjB,KAAK,UAAU,EAClB,MAAM,4BAA4B,CAAC;AAMpC,KAAK,WAAW,GAAG;IACf,UAAU,EAAE;QACR,GAAG,EAAE,MAAM,CAAC;QACZ,KAAK,EAAE,MAAM,CAAC;QACd,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC,CAAA;KAC3C,CAAC;IACF,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;IACzC,WAAW,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAA;CACnB,CAAC;AASF,KAAK,WAAW,GAAG;IACf,QAAQ,EAAE;QAAE,OAAO,EAAE,MAAM,CAAA;KAAE,CAAA;CAChC,CAAC;AA0NN,QAAA,MAAM,UAAU;aAtOE,MAAM;iBAJF,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;iBAC1B,GAAG,CAAC,MAAM,CAAC;WACjB,MAAM;cACH,MAAM;6EA0OvB,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,13 @@
|
|
|
1
|
+
import { type JSONProperty } from "../../utils/schemaUtils";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
property: JSONProperty;
|
|
4
|
+
showDynamic?: boolean;
|
|
5
|
+
sectionClass?: string;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
8
|
+
showDynamic: boolean;
|
|
9
|
+
sectionClass: string;
|
|
10
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const _default: typeof __VLS_export;
|
|
12
|
+
export default _default;
|
|
13
|
+
//# sourceMappingURL=PropertyBadges.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PropertyBadges.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins_v2/PropertyBadges.vue"],"names":[],"mappings":"AA+FI,OAAO,EAEH,KAAK,YAAY,EAEpB,MAAM,yBAAyB,CAAC;AAMjC,KAAK,WAAW,GAAG;IACf,QAAQ,EAAE,YAAY,CAAC;IACvB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAA;CACxB,CAAC;AAsLN,QAAA,MAAM,YAAY;iBAxLI,OAAO;kBACN,MAAM;6EA0L3B,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { type JSONProperty, type JSONSchema } from "../../utils/schemaUtils.ts";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
property: JSONProperty;
|
|
4
|
+
definitions?: Record<string, JSONSchema>;
|
|
5
|
+
visitedKeys?: Set<string>;
|
|
6
|
+
depth?: number;
|
|
7
|
+
maxDepth?: number;
|
|
8
|
+
section?: string;
|
|
9
|
+
};
|
|
10
|
+
declare var __VLS_5: {
|
|
11
|
+
content: string;
|
|
12
|
+
}, __VLS_7: {
|
|
13
|
+
content: string;
|
|
14
|
+
}, __VLS_13: {
|
|
15
|
+
content: string;
|
|
16
|
+
}, __VLS_20: {
|
|
17
|
+
content: any;
|
|
18
|
+
};
|
|
19
|
+
type __VLS_Slots = {} & {
|
|
20
|
+
markdown?: (props: typeof __VLS_5) => any;
|
|
21
|
+
} & {
|
|
22
|
+
markdown?: (props: typeof __VLS_7) => any;
|
|
23
|
+
} & {
|
|
24
|
+
markdown?: (props: typeof __VLS_13) => any;
|
|
25
|
+
} & {
|
|
26
|
+
markdown?: (props: typeof __VLS_20) => any;
|
|
27
|
+
};
|
|
28
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
29
|
+
section: string;
|
|
30
|
+
definitions: Record<string, JSONSchema>;
|
|
31
|
+
visitedKeys: Set<string>;
|
|
32
|
+
depth: number;
|
|
33
|
+
maxDepth: number;
|
|
34
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
35
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
36
|
+
declare const _default: typeof __VLS_export;
|
|
37
|
+
export default _default;
|
|
38
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
39
|
+
new (): {
|
|
40
|
+
$slots: S;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
//# sourceMappingURL=PropertyDetailV2.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PropertyDetailV2.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins_v2/PropertyDetailV2.vue"],"names":[],"mappings":"AAgII,OAAO,EAAmE,KAAK,YAAY,EAAE,KAAK,UAAU,EAAC,MAAM,4BAA4B,CAAC;AAOhJ,KAAK,WAAW,GAAG;IACf,QAAQ,EAAE,YAAY,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;IACzC,WAAW,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,MAAM,CAAA;CACnB,CAAC;AAsLN,QAAA,IAAI,OAAO;;CAAU,EAAE,OAAO;;CAAU,EAAE,QAAQ;;CAAW,EAAE,QAAQ;;CAAY,CAAE;AACrF,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAKjD,QAAA,MAAM,UAAU;aAjME,MAAM;iBAJF,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;iBAC1B,GAAG,CAAC,MAAM,CAAC;WACjB,MAAM;cACH,MAAM;6EAqMvB,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,10 @@
|
|
|
1
|
+
import type { JSONProperty } from "../../utils/schemaUtils";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
property: JSONProperty;
|
|
4
|
+
subtype?: string;
|
|
5
|
+
enumValues?: string[];
|
|
6
|
+
};
|
|
7
|
+
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>;
|
|
8
|
+
declare const _default: typeof __VLS_export;
|
|
9
|
+
export default _default;
|
|
10
|
+
//# sourceMappingURL=PropertyMeta.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PropertyMeta.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins_v2/PropertyMeta.vue"],"names":[],"mappings":"AA2KI,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,yBAAyB,CAAC;AAE1D,KAAK,WAAW,GAAG;IACf,QAAQ,EAAE,YAAY,CAAC;IACvB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,EAAE,CAAA;CACxB,CAAC;AAoSN,QAAA,MAAM,YAAY,kSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import type { JSONSchema } from "../../utils/schemaUtils.ts";
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
schema: JSONSchema;
|
|
4
|
+
pluginType: string;
|
|
5
|
+
darkMode?: boolean;
|
|
6
|
+
propsInitiallyExpanded?: boolean;
|
|
7
|
+
forceIncludeProperties?: string[];
|
|
8
|
+
noUrlChange?: boolean;
|
|
9
|
+
};
|
|
10
|
+
declare var __VLS_1: {
|
|
11
|
+
content: string;
|
|
12
|
+
}, __VLS_3: {
|
|
13
|
+
content: string;
|
|
14
|
+
}, __VLS_14: {
|
|
15
|
+
content: string;
|
|
16
|
+
}, __VLS_25: {
|
|
17
|
+
content: any;
|
|
18
|
+
}, __VLS_32: {
|
|
19
|
+
content: any;
|
|
20
|
+
}, __VLS_39: {
|
|
21
|
+
content: any;
|
|
22
|
+
};
|
|
23
|
+
type __VLS_Slots = {} & {
|
|
24
|
+
markdown?: (props: typeof __VLS_1) => any;
|
|
25
|
+
} & {
|
|
26
|
+
markdown?: (props: typeof __VLS_3) => any;
|
|
27
|
+
} & {
|
|
28
|
+
markdown?: (props: typeof __VLS_14) => any;
|
|
29
|
+
} & {
|
|
30
|
+
markdown?: (props: typeof __VLS_25) => any;
|
|
31
|
+
} & {
|
|
32
|
+
markdown?: (props: typeof __VLS_32) => any;
|
|
33
|
+
} & {
|
|
34
|
+
markdown?: (props: typeof __VLS_39) => any;
|
|
35
|
+
};
|
|
36
|
+
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
37
|
+
noUrlChange: boolean;
|
|
38
|
+
darkMode: boolean;
|
|
39
|
+
propsInitiallyExpanded: boolean;
|
|
40
|
+
forceIncludeProperties: string[];
|
|
41
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
42
|
+
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
43
|
+
declare const _default: typeof __VLS_export;
|
|
44
|
+
export default _default;
|
|
45
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
46
|
+
new (): {
|
|
47
|
+
$slots: S;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
//# sourceMappingURL=SchemaToHtmlV2.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SchemaToHtmlV2.vue.d.ts","sourceRoot":"","sources":["../../../src/components/plugins_v2/SchemaToHtmlV2.vue"],"names":[],"mappings":"AAyNI,OAAO,KAAK,EAAe,UAAU,EAAC,MAAM,4BAA4B,CAAC;AAIzE,KAAK,WAAW,GAAG;IACf,MAAM,EAAE,UAAU,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,sBAAsB,CAAC,EAAE,OAAO,CAAC;IACjC,sBAAsB,CAAC,EAAE,MAAM,EAAE,CAAC;IAClC,WAAW,CAAC,EAAE,OAAO,CAAA;CACxB,CAAC;AA2WN,QAAA,IAAI,OAAO;;CAAU,EAAE,OAAO;;CAAU,EAAE,QAAQ;;CAAW,EAAE,QAAQ;;CAAW,EAAE,QAAQ;;CAAW,EAAE,QAAQ;;CAAY,CAAE;AAC/H,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC9C;IAAE,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAKjD,QAAA,MAAM,UAAU;iBAxXM,OAAO;cAHV,OAAO;4BACO,OAAO;4BACP,MAAM,EAAE;6EA4XvC,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"}
|
|
@@ -171,8 +171,8 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
171
171
|
onMessage?: ((...args: any[]) => any) | undefined;
|
|
172
172
|
"onExpand-subflow"?: ((...args: any[]) => any) | undefined;
|
|
173
173
|
}>, {
|
|
174
|
-
source: string;
|
|
175
174
|
namespace: string;
|
|
175
|
+
source: string;
|
|
176
176
|
icons: Record<string, any>;
|
|
177
177
|
flowId: string;
|
|
178
178
|
execution: Record<string, any>;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { type Ref } from "vue";
|
|
2
|
+
import { type Plugin } from "../utils/plugins";
|
|
3
|
+
/**
|
|
4
|
+
* Composable to compute plugin element counts and groupings.
|
|
5
|
+
* Provides reactive computed values for elements by type and total count.
|
|
6
|
+
* @param plugin - The plugin to analyze.
|
|
7
|
+
* @returns Object with elementsByType (computed) and total (computed) counts.
|
|
8
|
+
*/
|
|
9
|
+
export declare function usePluginElementCounts(plugin: Plugin | Ref<Plugin>): {
|
|
10
|
+
readonly elementsByType: import("vue").ComputedRef<Record<string, string[]>>;
|
|
11
|
+
readonly total: import("vue").ComputedRef<number>;
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=usePluginElementCounts.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"usePluginElementCounts.d.ts","sourceRoot":"","sources":["../../src/composables/usePluginElementCounts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,KAAK,GAAG,EAAC,MAAM,KAAK,CAAC;AAC9C,OAAO,EAAwB,KAAK,MAAM,EAAC,MAAM,kBAAkB,CAAC;AAEpE;;;;;GAKG;AACH,wBAAgB,sBAAsB,CAAC,MAAM,EAAE,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC;;;EAMlE"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
export { YamlUtils } from "./utils/YamlUtilsLegacy";
|
|
2
2
|
export { cssVariable } from "./utils/global";
|
|
3
|
-
export { default as State, STATES } from "./utils/state";
|
|
3
|
+
export { default as State, STATES, LOG_LEVELS } from "./utils/state";
|
|
4
4
|
export { default as Utils } from "./utils/Utils";
|
|
5
5
|
export * as VueFlowUtils from "./utils/VueFlowUtils";
|
|
6
6
|
export { default as getMDCParser } from "./composables/getMDCParser";
|
|
7
7
|
export * from "./utils/constants";
|
|
8
8
|
export * from "./utils/url";
|
|
9
9
|
export * from "./utils/plugins";
|
|
10
|
+
export { usePluginElementCounts } from "./composables/usePluginElementCounts";
|
|
10
11
|
export { default as RotatingDotsIcon } from "./assets/icons/RotatingDots.vue";
|
|
11
12
|
export type { YamlElement } from "./utils/YamlUtilsLegacy";
|
|
12
|
-
export type { Plugin } from "./utils/plugins";
|
|
13
|
+
export type { Plugin, PluginMetadata, PluginElement } from "./utils/plugins";
|
|
13
14
|
export type { JSONSchema, JSONProperty } from "./utils/schemaUtils";
|
|
14
15
|
import "./scss/ks-theme-light.scss";
|
|
15
16
|
import "./scss/ks-theme-dark.scss";
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,yBAAyB,CAAC;AAClD,OAAO,EAAC,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAC3C,OAAO,EAAC,OAAO,IAAI,KAAK,EAAE,MAAM,EAAC,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,yBAAyB,CAAC;AAClD,OAAO,EAAC,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAC3C,OAAO,EAAC,OAAO,IAAI,KAAK,EAAE,MAAM,EAAE,UAAU,EAAC,MAAM,eAAe,CAAC;AACnE,OAAO,EAAC,OAAO,IAAI,KAAK,EAAC,MAAM,eAAe,CAAC;AAC/C,OAAO,KAAK,YAAY,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAC,OAAO,IAAI,YAAY,EAAC,MAAM,4BAA4B,CAAC;AACnE,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAChC,OAAO,EAAC,sBAAsB,EAAC,MAAM,sCAAsC,CAAC;AAC5E,OAAO,EAAC,OAAO,IAAI,gBAAgB,EAAC,MAAM,iCAAiC,CAAC;AAE5E,YAAY,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACzD,YAAY,EAAC,MAAM,EAAE,cAAc,EAAE,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAC3E,YAAY,EAAC,UAAU,EAAE,YAAY,EAAC,MAAM,qBAAqB,CAAC;AAElE,OAAO,4BAA4B,CAAC;AACpC,OAAO,2BAA2B,CAAC;AAEnC,cAAc,oBAAoB,CAAC"}
|