@kb-labs/workflow-entry 2.105.0 → 2.106.0

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 (55) hide show
  1. package/dist/widgets/117.js +1 -2
  2. package/dist/widgets/165.js +1 -2
  3. package/dist/widgets/326.js +1 -2
  4. package/dist/widgets/370.js +1 -2
  5. package/dist/widgets/405.js +1 -2
  6. package/dist/widgets/46.js +1 -2
  7. package/dist/widgets/50.js +1 -2
  8. package/dist/widgets/546.js +1 -2
  9. package/dist/widgets/62.js +1 -2
  10. package/dist/widgets/648.js +1 -2
  11. package/dist/widgets/669.js +1 -2
  12. package/dist/widgets/707.js +1 -2
  13. package/dist/widgets/716.js +1 -2
  14. package/dist/widgets/733.js +1 -2
  15. package/dist/widgets/775.js +1 -2
  16. package/dist/widgets/78.js +1 -2
  17. package/dist/widgets/945.js +1 -2
  18. package/dist/widgets/968.js +1 -2
  19. package/dist/widgets/__federation_expose_Crons.js +1 -2
  20. package/dist/widgets/__federation_expose_Dashboard.js +1 -2
  21. package/dist/widgets/__federation_expose_DefinitionDetail.js +1 -2
  22. package/dist/widgets/__federation_expose_Definitions.js +1 -2
  23. package/dist/widgets/__federation_expose_Jobs.js +1 -2
  24. package/dist/widgets/__federation_expose_RunDetail.js +2 -3
  25. package/dist/widgets/__federation_expose_Runs.js +1 -2
  26. package/dist/widgets/mf-manifest.json +5 -5
  27. package/dist/widgets/mf-stats.json +10 -9
  28. package/dist/widgets/remoteEntry.js +2 -3
  29. package/package.json +5 -5
  30. package/dist/widgets/117.js.map +0 -1
  31. package/dist/widgets/165.js.map +0 -1
  32. package/dist/widgets/326.js.map +0 -1
  33. package/dist/widgets/370.js.map +0 -1
  34. package/dist/widgets/405.js.map +0 -1
  35. package/dist/widgets/46.js.map +0 -1
  36. package/dist/widgets/50.js.map +0 -1
  37. package/dist/widgets/546.js.map +0 -1
  38. package/dist/widgets/62.js.map +0 -1
  39. package/dist/widgets/648.js.map +0 -1
  40. package/dist/widgets/669.js.map +0 -1
  41. package/dist/widgets/707.js.map +0 -1
  42. package/dist/widgets/716.js.map +0 -1
  43. package/dist/widgets/733.js.map +0 -1
  44. package/dist/widgets/775.js.map +0 -1
  45. package/dist/widgets/78.js.map +0 -1
  46. package/dist/widgets/945.js.map +0 -1
  47. package/dist/widgets/968.js.map +0 -1
  48. package/dist/widgets/__federation_expose_Crons.js.map +0 -1
  49. package/dist/widgets/__federation_expose_Dashboard.js.map +0 -1
  50. package/dist/widgets/__federation_expose_DefinitionDetail.js.map +0 -1
  51. package/dist/widgets/__federation_expose_Definitions.js.map +0 -1
  52. package/dist/widgets/__federation_expose_Jobs.js.map +0 -1
  53. package/dist/widgets/__federation_expose_RunDetail.js.map +0 -1
  54. package/dist/widgets/__federation_expose_Runs.js.map +0 -1
  55. package/dist/widgets/remoteEntry.js.map +0 -1
@@ -1 +0,0 @@
1
- {"version":3,"file":"50.js","sources":["webpack://@kb-labs/workflow-entry/../../../node_modules/.pnpm/react@19.2.5/node_modules/react/cjs/react-jsx-runtime.production.js","webpack://@kb-labs/workflow-entry/../../../node_modules/.pnpm/react@19.2.5/node_modules/react/jsx-runtime.js","webpack://@kb-labs/workflow-entry/../../../studio/event-bus/dist/index.js"],"sourcesContent":["/**\n * @license React\n * react-jsx-runtime.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\nvar REACT_ELEMENT_TYPE = Symbol.for(\"react.transitional.element\"),\n REACT_FRAGMENT_TYPE = Symbol.for(\"react.fragment\");\nfunction jsxProd(type, config, maybeKey) {\n var key = null;\n void 0 !== maybeKey && (key = \"\" + maybeKey);\n void 0 !== config.key && (key = \"\" + config.key);\n if (\"key\" in config) {\n maybeKey = {};\n for (var propName in config)\n \"key\" !== propName && (maybeKey[propName] = config[propName]);\n } else maybeKey = config;\n config = maybeKey.ref;\n return {\n $$typeof: REACT_ELEMENT_TYPE,\n type: type,\n key: key,\n ref: void 0 !== config ? config : null,\n props: maybeKey\n };\n}\nexports.Fragment = REACT_FRAGMENT_TYPE;\nexports.jsx = jsxProd;\nexports.jsxs = jsxProd;\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n","import { createContext, useContext } from 'react';\nimport { jsx } from 'react/jsx-runtime';\n\n// src/event-bus.ts\nvar MAX_HISTORY = 100;\nvar StudioEventBus = class {\n subscriptions = /* @__PURE__ */ new Map();\n history = [];\n devToolsObserver;\n /**\n * Subscribe to an event.\n * Returns an unsubscribe function.\n */\n subscribe(event, handler, pluginId, pageId) {\n const sub = {\n event,\n handler,\n pluginId,\n pageId\n };\n if (!this.subscriptions.has(event)) {\n this.subscriptions.set(event, /* @__PURE__ */ new Set());\n }\n this.subscriptions.get(event).add(sub);\n return () => {\n this.subscriptions.get(event)?.delete(sub);\n };\n }\n /**\n * Publish an event to all subscribers.\n */\n publish(event, payload, sourcePluginId, sourcePageId) {\n const meta = {\n sourcePluginId,\n sourcePageId,\n timestamp: Date.now()\n };\n const record = { event, payload, meta };\n this.history.push(record);\n if (this.history.length > MAX_HISTORY) {\n this.history.shift();\n }\n this.devToolsObserver?.(record);\n const subs = this.subscriptions.get(event);\n if (!subs) {\n return;\n }\n for (const sub of subs) {\n try {\n sub.handler(payload, meta);\n } catch (err) {\n console.error(\n `[StudioEventBus] Handler error for \"${event}\" in ${sub.pluginId}:${sub.pageId}:`,\n err\n );\n }\n }\n }\n /**\n * Unsubscribe all handlers for a specific page instance.\n * Called automatically on page unmount.\n */\n unsubscribeAll(pluginId, pageId) {\n for (const [, subs] of this.subscriptions) {\n for (const sub of subs) {\n if (sub.pluginId === pluginId && sub.pageId === pageId) {\n subs.delete(sub);\n }\n }\n }\n }\n /**\n * Get event history for devtools.\n */\n getHistory() {\n return this.history;\n }\n /**\n * Register a devtools observer that is called on every published event.\n * Only one observer at a time — intended for @kb-labs/studio-devtools only.\n */\n setDevToolsObserver(cb) {\n this.devToolsObserver = cb;\n }\n clearDevToolsObserver() {\n this.devToolsObserver = void 0;\n }\n /**\n * Clear all subscriptions and history. For testing.\n */\n reset() {\n this.subscriptions.clear();\n this.history = [];\n }\n};\nvar eventBus = new StudioEventBus();\nvar EventBusContext = createContext(eventBus);\nfunction EventBusProvider({ children, bus }) {\n return /* @__PURE__ */ jsx(EventBusContext.Provider, { value: bus ?? eventBus, children });\n}\nfunction useEventBusContext() {\n return useContext(EventBusContext);\n}\n\nexport { EventBusProvider, StudioEventBus, eventBus, useEventBusContext };\n//# sourceMappingURL=index.js.map\n//# sourceMappingURL=index.js.map"],"names":["Symbol","Map","e","Set","Date","console"],"mappings":"yHAWA,IAAI,EAAqBA,OAAO,GAAG,CAAC,8BAEpC,SAAS,EAAQ,CAAI,CAAE,CAAM,CAAE,CAAQ,EACrC,IAAI,EAAM,KAGV,GAFA,KAAK,IAAM,GAAa,GAAM,GAAK,CAAO,EAC1C,KAAK,IAAM,EAAO,GAAG,EAAK,GAAM,GAAK,EAAO,GAAG,AAAD,EAC1C,QAAS,EAEX,IAAK,IAAI,KADT,EAAW,CAAC,EACS,EACnB,QAAU,GAAa,EAAQ,CAAC,EAAS,CAAG,CAAM,CAAC,EAAS,AAAD,OACxD,EAAW,EAElB,MAAO,CACL,SAAU,EACV,KAAM,EACN,IAAK,EACL,IAAK,KAAK,IALZ,GAAS,EAAS,GAAG,AAAD,EAKO,EAAS,KAClC,MAAO,CACT,CACF,CACA,EAAQ,QAAQ,CAnBQA,OAAO,GAAG,CAAC,kBAoBnC,EAAQ,GAAG,CAAG,EACd,EAAQ,IAAI,CAAG,C,cC9Bb,EAAO,OAAO,CAAG,EAAjB,K,2CCEE,EAAiB,MACnB,cAAgC,IAAIC,GAAM,AAC1C,SAAU,EAAE,AAAC,AACb,iBAAiB,AAKjB,WAAUC,CAAK,CAAE,CAAO,CAAE,CAAQ,CAAE,CAAM,CAAE,CAC1C,IAAM,EAAM,CACVA,MAAAA,EACA,UACA,WACA,QACF,EAKA,OAJI,AAAC,IAAI,CAAC,aAAa,CAAC,GAAG,CAACA,IAC1B,IAAI,CAAC,aAAa,CAAC,GAAG,CAACA,EAAuB,IAAIC,KAEpD,IAAI,CAAC,aAAa,CAAC,GAAG,CAACD,GAAO,GAAG,CAAC,GAC3B,KACL,IAAI,CAAC,aAAa,CAAC,GAAG,CAACA,IAAQ,OAAO,EACxC,CACF,CAIA,QAAQA,CAAK,CAAE,CAAO,CAAE,CAAc,CAAE,CAAY,CAAE,CACpD,IAAM,EAAO,CACX,iBACA,eACA,UAAWE,KAAK,GAAG,EACrB,EACM,EAAS,CAAEF,MAAAA,EAAO,UAAS,MAAK,EACtC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,GACd,IAAI,CAAC,OAAO,CAAC,MAAM,CAnCT,KAoCZ,IAAI,CAAC,OAAO,CAAC,KAAK,GAEpB,IAAI,CAAC,gBAAgB,GAAG,GACxB,IAAM,EAAO,IAAI,CAAC,aAAa,CAAC,GAAG,CAACA,GACpC,GAAK,EAGL,IAAK,IAAM,KAAO,EAChB,GAAI,CACF,EAAI,OAAO,CAAC,EAAS,EACvB,CAAE,MAAO,EAAK,CACZG,QAAQ,KAAK,CACX,CAAC,oCAAoC,EAAEH,EAAM,KAAK,EAAE,EAAI,QAAQ,CAAC,CAAC,EAAE,EAAI,MAAM,CAAC,CAAC,CAAC,CACjF,EAEJ,CAEJ,CAKA,eAAe,CAAQ,CAAE,CAAM,CAAE,CAC/B,IAAK,GAAM,EAAG,EAAK,GAAI,IAAI,CAAC,aAAa,CACvC,IAAK,IAAM,KAAO,EACZ,EAAI,QAAQ,GAAK,GAAY,EAAI,MAAM,GAAK,GAC9C,EAAK,MAAM,CAAC,EAIpB,CAIA,YAAa,CACX,OAAO,IAAI,CAAC,OAAO,AACrB,CAKA,oBAAoB,CAAE,CAAE,CACtB,IAAI,CAAC,gBAAgB,CAAG,CAC1B,CACA,uBAAwB,CACtB,IAAI,CAAC,gBAAgB,CAAG,KAAK,CAC/B,CAIA,OAAQ,CACN,IAAI,CAAC,aAAa,CAAC,KAAK,GACxB,IAAI,CAAC,OAAO,CAAG,EAAE,AACnB,CACF,EACI,EAAW,IAAI,EACf,EAAkB,oBAAc,GACpC,SAAS,EAAiB,CAAE,UAAQ,CAAE,KAAG,CAAE,EACzC,MAAuB,UAAI,EAAgB,QAAQ,CAAE,CAAE,MAAO,GAAO,EAAU,UAAS,EAC1F,CACA,SAAS,IACP,MAAO,iBAAW,EACpB,C"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"546.js","sources":["webpack://@kb-labs/workflow-entry/../../../node_modules/.pnpm/react-dom@19.2.5_react@19.2.5/node_modules/react-dom/cjs/react-dom.production.js","webpack://@kb-labs/workflow-entry/../../../node_modules/.pnpm/react-dom@19.2.5_react@19.2.5/node_modules/react-dom/index.js"],"sourcesContent":["/**\n * @license React\n * react-dom.production.js\n *\n * Copyright (c) Meta Platforms, Inc. and affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\"use strict\";\nvar React = require(\"react\");\nfunction formatProdErrorMessage(code) {\n var url = \"https://react.dev/errors/\" + code;\n if (1 < arguments.length) {\n url += \"?args[]=\" + encodeURIComponent(arguments[1]);\n for (var i = 2; i < arguments.length; i++)\n url += \"&args[]=\" + encodeURIComponent(arguments[i]);\n }\n return (\n \"Minified React error #\" +\n code +\n \"; visit \" +\n url +\n \" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\"\n );\n}\nfunction noop() {}\nvar Internals = {\n d: {\n f: noop,\n r: function () {\n throw Error(formatProdErrorMessage(522));\n },\n D: noop,\n C: noop,\n L: noop,\n m: noop,\n X: noop,\n S: noop,\n M: noop\n },\n p: 0,\n findDOMNode: null\n },\n REACT_PORTAL_TYPE = Symbol.for(\"react.portal\");\nfunction createPortal$1(children, containerInfo, implementation) {\n var key =\n 3 < arguments.length && void 0 !== arguments[3] ? arguments[3] : null;\n return {\n $$typeof: REACT_PORTAL_TYPE,\n key: null == key ? null : \"\" + key,\n children: children,\n containerInfo: containerInfo,\n implementation: implementation\n };\n}\nvar ReactSharedInternals =\n React.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE;\nfunction getCrossOriginStringAs(as, input) {\n if (\"font\" === as) return \"\";\n if (\"string\" === typeof input)\n return \"use-credentials\" === input ? input : \"\";\n}\nexports.__DOM_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE =\n Internals;\nexports.createPortal = function (children, container) {\n var key =\n 2 < arguments.length && void 0 !== arguments[2] ? arguments[2] : null;\n if (\n !container ||\n (1 !== container.nodeType &&\n 9 !== container.nodeType &&\n 11 !== container.nodeType)\n )\n throw Error(formatProdErrorMessage(299));\n return createPortal$1(children, container, null, key);\n};\nexports.flushSync = function (fn) {\n var previousTransition = ReactSharedInternals.T,\n previousUpdatePriority = Internals.p;\n try {\n if (((ReactSharedInternals.T = null), (Internals.p = 2), fn)) return fn();\n } finally {\n (ReactSharedInternals.T = previousTransition),\n (Internals.p = previousUpdatePriority),\n Internals.d.f();\n }\n};\nexports.preconnect = function (href, options) {\n \"string\" === typeof href &&\n (options\n ? ((options = options.crossOrigin),\n (options =\n \"string\" === typeof options\n ? \"use-credentials\" === options\n ? options\n : \"\"\n : void 0))\n : (options = null),\n Internals.d.C(href, options));\n};\nexports.prefetchDNS = function (href) {\n \"string\" === typeof href && Internals.d.D(href);\n};\nexports.preinit = function (href, options) {\n if (\"string\" === typeof href && options && \"string\" === typeof options.as) {\n var as = options.as,\n crossOrigin = getCrossOriginStringAs(as, options.crossOrigin),\n integrity =\n \"string\" === typeof options.integrity ? options.integrity : void 0,\n fetchPriority =\n \"string\" === typeof options.fetchPriority\n ? options.fetchPriority\n : void 0;\n \"style\" === as\n ? Internals.d.S(\n href,\n \"string\" === typeof options.precedence ? options.precedence : void 0,\n {\n crossOrigin: crossOrigin,\n integrity: integrity,\n fetchPriority: fetchPriority\n }\n )\n : \"script\" === as &&\n Internals.d.X(href, {\n crossOrigin: crossOrigin,\n integrity: integrity,\n fetchPriority: fetchPriority,\n nonce: \"string\" === typeof options.nonce ? options.nonce : void 0\n });\n }\n};\nexports.preinitModule = function (href, options) {\n if (\"string\" === typeof href)\n if (\"object\" === typeof options && null !== options) {\n if (null == options.as || \"script\" === options.as) {\n var crossOrigin = getCrossOriginStringAs(\n options.as,\n options.crossOrigin\n );\n Internals.d.M(href, {\n crossOrigin: crossOrigin,\n integrity:\n \"string\" === typeof options.integrity ? options.integrity : void 0,\n nonce: \"string\" === typeof options.nonce ? options.nonce : void 0\n });\n }\n } else null == options && Internals.d.M(href);\n};\nexports.preload = function (href, options) {\n if (\n \"string\" === typeof href &&\n \"object\" === typeof options &&\n null !== options &&\n \"string\" === typeof options.as\n ) {\n var as = options.as,\n crossOrigin = getCrossOriginStringAs(as, options.crossOrigin);\n Internals.d.L(href, as, {\n crossOrigin: crossOrigin,\n integrity:\n \"string\" === typeof options.integrity ? options.integrity : void 0,\n nonce: \"string\" === typeof options.nonce ? options.nonce : void 0,\n type: \"string\" === typeof options.type ? options.type : void 0,\n fetchPriority:\n \"string\" === typeof options.fetchPriority\n ? options.fetchPriority\n : void 0,\n referrerPolicy:\n \"string\" === typeof options.referrerPolicy\n ? options.referrerPolicy\n : void 0,\n imageSrcSet:\n \"string\" === typeof options.imageSrcSet ? options.imageSrcSet : void 0,\n imageSizes:\n \"string\" === typeof options.imageSizes ? options.imageSizes : void 0,\n media: \"string\" === typeof options.media ? options.media : void 0\n });\n }\n};\nexports.preloadModule = function (href, options) {\n if (\"string\" === typeof href)\n if (options) {\n var crossOrigin = getCrossOriginStringAs(options.as, options.crossOrigin);\n Internals.d.m(href, {\n as:\n \"string\" === typeof options.as && \"script\" !== options.as\n ? options.as\n : void 0,\n crossOrigin: crossOrigin,\n integrity:\n \"string\" === typeof options.integrity ? options.integrity : void 0\n });\n } else Internals.d.m(href);\n};\nexports.requestFormReset = function (form) {\n Internals.d.r(form);\n};\nexports.unstable_batchedUpdates = function (fn, a) {\n return fn(a);\n};\nexports.useFormState = function (action, initialState, permalink) {\n return ReactSharedInternals.H.useFormState(action, initialState, permalink);\n};\nexports.useFormStatus = function () {\n return ReactSharedInternals.H.useHostTransitionStatus();\n};\nexports.version = \"19.2.5\";\n","'use strict';\n\nfunction checkDCE() {\n /* global __REACT_DEVTOOLS_GLOBAL_HOOK__ */\n if (\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ === 'undefined' ||\n typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE !== 'function'\n ) {\n return;\n }\n if (process.env.NODE_ENV !== 'production') {\n // This branch is unreachable because this function is only called\n // in production, but the condition is true only in development.\n // Therefore if the branch is still here, dead code elimination wasn't\n // properly applied.\n // Don't change the message. React DevTools relies on it. Also make sure\n // this message doesn't occur elsewhere in this function, or it will cause\n // a false positive.\n throw new Error('^_^');\n }\n try {\n // Verify that the code above has been dead code eliminated (DCE'd).\n __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(checkDCE);\n } catch (err) {\n // DevTools shouldn't crash React, no matter what.\n // We should still report in case we break this code.\n console.error(err);\n }\n}\n\nif (process.env.NODE_ENV === 'production') {\n // DCE check should happen before ReactDOM bundle executes so that\n // DevTools can report bad minification during injection.\n checkDCE();\n module.exports = require('./cjs/react-dom.production.js');\n} else {\n module.exports = require('./cjs/react-dom.development.js');\n}\n"],"names":["r","arguments","encodeURIComponent","Error","Symbol","__REACT_DEVTOOLS_GLOBAL_HOOK__","e","console"],"mappings":"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"}