@kestra-io/ui-libs 0.0.262 → 0.0.263
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 -1
- package/dist/components/index.d.ts.map +1 -1
- 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/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/kestra-index.cjs.js +13 -13
- package/dist/kestra-index.cjs.js.map +1 -1
- package/dist/kestra-index.es.js +976 -948
- package/dist/kestra-index.es.js.map +1 -1
- package/dist/ui-libs.css +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 +1 -1
- package/src/components/misc/Status.vue +121 -0
- package/src/index.ts +1 -1
- package/src/scss/_variables.scss +1 -1
- package/src/utils/state.ts +2 -0
- package/dist/components/misc/State.vue.d.ts.map +0 -1
- package/src/components/misc/State.vue +0 -59
|
@@ -1,6 +1,6 @@
|
|
|
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
6
|
export { default as SchemaToHtml } from "./plugins/SchemaToHtml.vue";
|
|
@@ -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;AAG9D,OAAO,EAAC,OAAO,IAAI,YAAY,EAAC,MAAM,4BAA4B,CAAC;AACnE,OAAO,EAAC,OAAO,IAAI,WAAW,EAAC,MAAM,2BAA2B,CAAC;AAGjE,OAAO,EAAC,OAAO,IAAI,WAAW,EAAC,MAAM,2BAA2B,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":"AA8HI,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;AA4FN,QAAA,MAAM,YAAY;WA/FF,MAAM;UAEP,OAAO,GAAG,SAAS,GAAG,OAAO;UAD7B,OAAO;6EAiGpB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
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";
|
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,OAAO,IAAI,gBAAgB,EAAC,MAAM,iCAAiC,CAAC;AAE5E,YAAY,EAAC,WAAW,EAAC,MAAM,yBAAyB,CAAC;AACzD,YAAY,EAAC,MAAM,EAAC,MAAM,iBAAiB,CAAC;AAC5C,YAAY,EAAC,UAAU,EAAE,YAAY,EAAC,MAAM,qBAAqB,CAAC;AAElE,OAAO,4BAA4B,CAAC;AACpC,OAAO,2BAA2B,CAAC;AAEnC,cAAc,oBAAoB,CAAC"}
|