nucleus-core-ts 0.10.131 → 0.10.133

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/.build-ok CHANGED
@@ -1 +1 @@
1
- 0.10.131
1
+ 0.10.133
@@ -1,6 +1,21 @@
1
+ /**
2
+ * The DRAWN editor's parts: three node renderers, the palette that dragged
3
+ * them onto a canvas, and the properties panel that branched three ways to
4
+ * edit whichever one was selected.
5
+ *
6
+ * @deprecated Use the authored-chain editor (`StepListEditor` and the pieces
7
+ * it is built from). A step's meaning was spread across three node types and
8
+ * the edges between them, which is why a step could look connected on screen
9
+ * and resolve to nobody, and why `step_order` had to be guessed back out of
10
+ * the drawing on every save. Kept for one minor because other products import
11
+ * these, and because a flow already drawn still opens in the editor it was
12
+ * drawn in — the stored `model_version` decides that, not this export.
13
+ */
1
14
  export { NotificationFlowNode, StepFlowNode, VerifierFlowNode, } from './components/FlowNode';
15
+ /** @deprecated See the note above `FlowNode`'s exports. */
2
16
  export { NodePalette, type NodePaletteProps } from './components/NodePropertiesPanel';
3
17
  export { PendingTab } from './components/PendingTab';
18
+ /** @deprecated See the note above `FlowNode`'s exports. */
4
19
  export { PropertiesPanel } from './components/PropertiesPanel';
5
20
  export { VerificationEntityList, type VerificationEntityListProps, type VerificationEntityListTheme, } from './components/VerificationEntityList';
6
21
  export { VerificationFlowPage } from './components/VerificationFlowPage';
@@ -16,4 +31,20 @@ export * from './model2';
16
31
  export { useVerificationFlowStore } from './store';
17
32
  export type { VerificationFlowPageTheme } from './theme';
18
33
  export { extendVerificationFlowPageTheme, getVerificationFlowTheme, verificationFlowPageLightTheme, verificationFlowPageTheme, } from './theme';
19
- export type { FlowDeleteAction, FlowEdgeData, FlowGetAction, FlowGraphData, FlowItemData, FlowListAction, FlowPublishAction, FlowSaveAction, GenericAction as VerificationFlowGenericAction, ListRolesAction, ListUsersAction, NodeType, NotificationChannel, NotificationChannelData, NotificationRecipientData, NotificationRuleData, PendingItem as VerificationFlowPendingItem, RecipientType, RoleItem, StepNodeData, UserItem, VerificationBulkStatusItem, VerificationBulkStatusResponse, VerificationDecideAction as VerificationFlowDecideAction, VerificationEntityStatusesAction, VerificationFlowPageProps, VerificationFlowPageState, VerificationPendingAction as VerificationFlowPendingAction, VerificationStartAction as VerificationFlowStartAction, VerificationStartForEntityAction, VerificationStatusAction, VerificationStatusResponse, VerificationTrigger, VerifierConfigData, } from './types';
34
+ export type { FlowDeleteAction,
35
+ /** @deprecated Describes the drawn graph. See `Model2Graph`. */
36
+ FlowEdgeData, FlowGetAction,
37
+ /** @deprecated Describes the drawn graph. See `Model2Graph`. */
38
+ FlowGraphData, FlowItemData, FlowListAction, FlowPublishAction, FlowSaveAction, GenericAction as VerificationFlowGenericAction, ListRolesAction, ListUsersAction,
39
+ /** @deprecated One of the drawn editor's three node kinds. */
40
+ NodeType, NotificationChannel,
41
+ /** @deprecated Describes a drawn notification node. See `Model2Action`. */
42
+ NotificationChannelData,
43
+ /** @deprecated Describes a drawn notification node. See `Model2ActionRecipient`. */
44
+ NotificationRecipientData,
45
+ /** @deprecated Describes a drawn notification node. See `Model2Action`. */
46
+ NotificationRuleData, PendingItem as VerificationFlowPendingItem, RecipientType, RoleItem,
47
+ /** @deprecated Describes a drawn step node. See `Model2Step`. */
48
+ StepNodeData, UserItem, VerificationBulkStatusItem, VerificationBulkStatusResponse, VerificationDecideAction as VerificationFlowDecideAction, VerificationEntityStatusesAction, VerificationFlowPageProps, VerificationFlowPageState, VerificationPendingAction as VerificationFlowPendingAction, VerificationStartAction as VerificationFlowStartAction, VerificationStartForEntityAction, VerificationStatusAction, VerificationStatusResponse, VerificationTrigger,
49
+ /** @deprecated Describes a drawn verifier node. See `Model2Assignee`. */
50
+ VerifierConfigData, } from './types';
@@ -1,7 +1,19 @@
1
- export { NotificationFlowNode, StepFlowNode, VerifierFlowNode } from './components/FlowNode';
2
- export { NodePalette } from './components/NodePropertiesPanel';
1
+ /**
2
+ * The DRAWN editor's parts: three node renderers, the palette that dragged
3
+ * them onto a canvas, and the properties panel that branched three ways to
4
+ * edit whichever one was selected.
5
+ *
6
+ * @deprecated Use the authored-chain editor (`StepListEditor` and the pieces
7
+ * it is built from). A step's meaning was spread across three node types and
8
+ * the edges between them, which is why a step could look connected on screen
9
+ * and resolve to nobody, and why `step_order` had to be guessed back out of
10
+ * the drawing on every save. Kept for one minor because other products import
11
+ * these, and because a flow already drawn still opens in the editor it was
12
+ * drawn in — the stored `model_version` decides that, not this export.
13
+ */ export { NotificationFlowNode, StepFlowNode, VerifierFlowNode } from './components/FlowNode';
14
+ /** @deprecated See the note above `FlowNode`'s exports. */ export { NodePalette } from './components/NodePropertiesPanel';
3
15
  export { PendingTab } from './components/PendingTab';
4
- export { PropertiesPanel } from './components/PropertiesPanel';
16
+ /** @deprecated See the note above `FlowNode`'s exports. */ export { PropertiesPanel } from './components/PropertiesPanel';
5
17
  export { VerificationEntityList } from './components/VerificationEntityList';
6
18
  export { VerificationFlowPage } from './components/VerificationFlowPage';
7
19
  export { VerificationStatusCard } from './components/VerificationStatusCard';