UNPKG

@nodeject/ui-components

Version:

UI library for non-trivial components

18 lines (17 loc) 599 B
var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; import { v4 as uuidv4 } from 'uuid'; export var createNewNode = function (args) { return { data: __assign({ id: uuidv4(), visibility: 'visible', title: 'New node' }, args.data) }; };