@apteva/apteva-kit 0.1.91 → 0.1.92
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/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -233,8 +233,8 @@ declare const WIDGET_DEFINITIONS: {
|
|
|
233
233
|
readonly example: "@ui:chart[{\"chartType\": \"bar\", \"data\": {\"labels\": [\"A\"], \"datasets\": [{\"label\": \"X\", \"data\": [10]}]}}]";
|
|
234
234
|
};
|
|
235
235
|
readonly flow: {
|
|
236
|
-
readonly schema: "title, subtitle?, icon?: research|schedule|analyze|deploy, steps: [{id, label, type?:
|
|
237
|
-
readonly example: "@ui:flow[{\"title\": \"Deploy
|
|
236
|
+
readonly schema: "title, subtitle?, icon?: research|schedule|analyze|deploy|recurring|automation|data, steps: [{id, label, type?, color?: blue|purple|cyan|amber|emerald|rose|indigo|orange, status?: pending|active|completed|error|skipped}] - Horizontal pipeline. Use @label for agents. Types auto-detected from label.";
|
|
237
|
+
readonly example: "@ui:flow[{\"title\": \"Deploy Pipeline\", \"icon\": \"deploy\", \"steps\": [{\"id\": \"1\", \"label\": \"Test\", \"color\": \"cyan\"}, {\"id\": \"2\", \"label\": \"Build\", \"color\": \"amber\"}, {\"id\": \"3\", \"label\": \"Deploy\", \"color\": \"rose\"}]}]";
|
|
238
238
|
};
|
|
239
239
|
};
|
|
240
240
|
type WidgetType = keyof typeof WIDGET_DEFINITIONS;
|
package/dist/index.d.ts
CHANGED
|
@@ -233,8 +233,8 @@ declare const WIDGET_DEFINITIONS: {
|
|
|
233
233
|
readonly example: "@ui:chart[{\"chartType\": \"bar\", \"data\": {\"labels\": [\"A\"], \"datasets\": [{\"label\": \"X\", \"data\": [10]}]}}]";
|
|
234
234
|
};
|
|
235
235
|
readonly flow: {
|
|
236
|
-
readonly schema: "title, subtitle?, icon?: research|schedule|analyze|deploy, steps: [{id, label, type?:
|
|
237
|
-
readonly example: "@ui:flow[{\"title\": \"Deploy
|
|
236
|
+
readonly schema: "title, subtitle?, icon?: research|schedule|analyze|deploy|recurring|automation|data, steps: [{id, label, type?, color?: blue|purple|cyan|amber|emerald|rose|indigo|orange, status?: pending|active|completed|error|skipped}] - Horizontal pipeline. Use @label for agents. Types auto-detected from label.";
|
|
237
|
+
readonly example: "@ui:flow[{\"title\": \"Deploy Pipeline\", \"icon\": \"deploy\", \"steps\": [{\"id\": \"1\", \"label\": \"Test\", \"color\": \"cyan\"}, {\"id\": \"2\", \"label\": \"Build\", \"color\": \"amber\"}, {\"id\": \"3\", \"label\": \"Deploy\", \"color\": \"rose\"}]}]";
|
|
238
238
|
};
|
|
239
239
|
};
|
|
240
240
|
type WidgetType = keyof typeof WIDGET_DEFINITIONS;
|
package/dist/index.js
CHANGED
|
@@ -763,8 +763,8 @@ var WIDGET_DEFINITIONS = {
|
|
|
763
763
|
example: '@ui:chart[{"chartType": "bar", "data": {"labels": ["A"], "datasets": [{"label": "X", "data": [10]}]}}]'
|
|
764
764
|
},
|
|
765
765
|
flow: {
|
|
766
|
-
schema: "title, subtitle?, icon?: research|schedule|analyze|deploy, steps: [{id, label, type?:
|
|
767
|
-
example: '@ui:flow[{"title": "Deploy
|
|
766
|
+
schema: "title, subtitle?, icon?: research|schedule|analyze|deploy|recurring|automation|data, steps: [{id, label, type?, color?: blue|purple|cyan|amber|emerald|rose|indigo|orange, status?: pending|active|completed|error|skipped}] - Horizontal pipeline. Use @label for agents. Types auto-detected from label.",
|
|
767
|
+
example: '@ui:flow[{"title": "Deploy Pipeline", "icon": "deploy", "steps": [{"id": "1", "label": "Test", "color": "cyan"}, {"id": "2", "label": "Build", "color": "amber"}, {"id": "3", "label": "Deploy", "color": "rose"}]}]'
|
|
768
768
|
}
|
|
769
769
|
};
|
|
770
770
|
var ALL_WIDGET_TYPES = Object.keys(WIDGET_DEFINITIONS);
|