@dpuse/dpuse-tool-d3 0.0.9 → 0.0.10
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/README.md +108 -103
- package/dist/bump-S1d-3Q8P.js +813 -0
- package/dist/bump-S1d-3Q8P.js.map +1 -0
- package/dist/dpuse-tool-d3.es.js +12420 -15156
- package/dist/dpuse-tool-d3.es.js.map +1 -1
- package/dist/erdDiagram-DNEvMuIA.js +1932 -0
- package/dist/erdDiagram-DNEvMuIA.js.map +1 -0
- package/dist/types/src/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bump-S1d-3Q8P.js","names":["namespaces","namespace","selector","selectorAll","matcher","sparse","constant","sparse","namespace","defaultView","creator","creator","selector","defaultView","selection_select","selection_selectAll","selection_selectChild","selection_selectChildren","selection_filter","selection_data","selection_enter","selection_exit","selection_join","selection_merge","selection_order","selection_sort","selection_call","selection_nodes","selection_node","selection_size","selection_empty","selection_each","selection_attr","selection_style","selection_property","selection_classed","selection_text","selection_html","selection_raise","selection_lower","selection_append","selection_insert","selection_remove","selection_clone","selection_datum","selection_on","selection_dispatch","selection_iterator"],"sources":["../node_modules/d3-selection/src/namespaces.js","../node_modules/d3-selection/src/namespace.js","../node_modules/d3-selection/src/creator.js","../node_modules/d3-selection/src/selector.js","../node_modules/d3-selection/src/selection/select.js","../node_modules/d3-selection/src/array.js","../node_modules/d3-selection/src/selectorAll.js","../node_modules/d3-selection/src/selection/selectAll.js","../node_modules/d3-selection/src/matcher.js","../node_modules/d3-selection/src/selection/selectChild.js","../node_modules/d3-selection/src/selection/selectChildren.js","../node_modules/d3-selection/src/selection/filter.js","../node_modules/d3-selection/src/selection/sparse.js","../node_modules/d3-selection/src/selection/enter.js","../node_modules/d3-selection/src/constant.js","../node_modules/d3-selection/src/selection/data.js","../node_modules/d3-selection/src/selection/exit.js","../node_modules/d3-selection/src/selection/join.js","../node_modules/d3-selection/src/selection/merge.js","../node_modules/d3-selection/src/selection/order.js","../node_modules/d3-selection/src/selection/sort.js","../node_modules/d3-selection/src/selection/call.js","../node_modules/d3-selection/src/selection/nodes.js","../node_modules/d3-selection/src/selection/node.js","../node_modules/d3-selection/src/selection/size.js","../node_modules/d3-selection/src/selection/empty.js","../node_modules/d3-selection/src/selection/each.js","../node_modules/d3-selection/src/selection/attr.js","../node_modules/d3-selection/src/window.js","../node_modules/d3-selection/src/selection/style.js","../node_modules/d3-selection/src/selection/property.js","../node_modules/d3-selection/src/selection/classed.js","../node_modules/d3-selection/src/selection/text.js","../node_modules/d3-selection/src/selection/html.js","../node_modules/d3-selection/src/selection/raise.js","../node_modules/d3-selection/src/selection/lower.js","../node_modules/d3-selection/src/selection/append.js","../node_modules/d3-selection/src/selection/insert.js","../node_modules/d3-selection/src/selection/remove.js","../node_modules/d3-selection/src/selection/clone.js","../node_modules/d3-selection/src/selection/datum.js","../node_modules/d3-selection/src/selection/on.js","../node_modules/d3-selection/src/selection/dispatch.js","../node_modules/d3-selection/src/selection/iterator.js","../node_modules/d3-selection/src/selection/index.js","../node_modules/d3-selection/src/select.js","../node_modules/d3-shape/src/constant.js","../node_modules/d3-path/src/path.js","../node_modules/d3-shape/src/path.js","../node_modules/d3-shape/src/array.js","../node_modules/d3-shape/src/curve/linear.js","../node_modules/d3-shape/src/point.js","../node_modules/d3-shape/src/curve/bump.js"],"sourcesContent":["export var xhtml = \"http://www.w3.org/1999/xhtml\";\n\nexport default {\n svg: \"http://www.w3.org/2000/svg\",\n xhtml: xhtml,\n xlink: \"http://www.w3.org/1999/xlink\",\n xml: \"http://www.w3.org/XML/1998/namespace\",\n xmlns: \"http://www.w3.org/2000/xmlns/\"\n};\n","import namespaces from \"./namespaces.js\";\n\nexport default function(name) {\n var prefix = name += \"\", i = prefix.indexOf(\":\");\n if (i >= 0 && (prefix = name.slice(0, i)) !== \"xmlns\") name = name.slice(i + 1);\n return namespaces.hasOwnProperty(prefix) ? {space: namespaces[prefix], local: name} : name; // eslint-disable-line no-prototype-builtins\n}\n","import namespace from \"./namespace.js\";\nimport {xhtml} from \"./namespaces.js\";\n\nfunction creatorInherit(name) {\n return function() {\n var document = this.ownerDocument,\n uri = this.namespaceURI;\n return uri === xhtml && document.documentElement.namespaceURI === xhtml\n ? document.createElement(name)\n : document.createElementNS(uri, name);\n };\n}\n\nfunction creatorFixed(fullname) {\n return function() {\n return this.ownerDocument.createElementNS(fullname.space, fullname.local);\n };\n}\n\nexport default function(name) {\n var fullname = namespace(name);\n return (fullname.local\n ? creatorFixed\n : creatorInherit)(fullname);\n}\n","function none() {}\n\nexport default function(selector) {\n return selector == null ? none : function() {\n return this.querySelector(selector);\n };\n}\n","import {Selection} from \"./index.js\";\nimport selector from \"../selector.js\";\n\nexport default function(select) {\n if (typeof select !== \"function\") select = selector(select);\n\n for (var groups = this._groups, m = groups.length, subgroups = new Array(m), j = 0; j < m; ++j) {\n for (var group = groups[j], n = group.length, subgroup = subgroups[j] = new Array(n), node, subnode, i = 0; i < n; ++i) {\n if ((node = group[i]) && (subnode = select.call(node, node.__data__, i, group))) {\n if (\"__data__\" in node) subnode.__data__ = node.__data__;\n subgroup[i] = subnode;\n }\n }\n }\n\n return new Selection(subgroups, this._parents);\n}\n","// Given something array like (or null), returns something that is strictly an\n// array. This is used to ensure that array-like objects passed to d3.selectAll\n// or selection.selectAll are converted into proper arrays when creating a\n// selection; we don’t ever want to create a selection backed by a live\n// HTMLCollection or NodeList. However, note that selection.selectAll will use a\n// static NodeList as a group, since it safely derived from querySelectorAll.\nexport default function array(x) {\n return x == null ? [] : Array.isArray(x) ? x : Array.from(x);\n}\n","function empty() {\n return [];\n}\n\nexport default function(selector) {\n return selector == null ? empty : function() {\n return this.querySelectorAll(selector);\n };\n}\n","import {Selection} from \"./index.js\";\nimport array from \"../array.js\";\nimport selectorAll from \"../selectorAll.js\";\n\nfunction arrayAll(select) {\n return function() {\n return array(select.apply(this, arguments));\n };\n}\n\nexport default function(select) {\n if (typeof select === \"function\") select = arrayAll(select);\n else select = selectorAll(select);\n\n for (var groups = this._groups, m = groups.length, subgroups = [], parents = [], j = 0; j < m; ++j) {\n for (var group = groups[j], n = group.length, node, i = 0; i < n; ++i) {\n if (node = group[i]) {\n subgroups.push(select.call(node, node.__data__, i, group));\n parents.push(node);\n }\n }\n }\n\n return new Selection(subgroups, parents);\n}\n","export default function(selector) {\n return function() {\n return this.matches(selector);\n };\n}\n\nexport function childMatcher(selector) {\n return function(node) {\n return node.matches(selector);\n };\n}\n\n","import {childMatcher} from \"../matcher.js\";\n\nvar find = Array.prototype.find;\n\nfunction childFind(match) {\n return function() {\n return find.call(this.children, match);\n };\n}\n\nfunction childFirst() {\n return this.firstElementChild;\n}\n\nexport default function(match) {\n return this.select(match == null ? childFirst\n : childFind(typeof match === \"function\" ? match : childMatcher(match)));\n}\n","import {childMatcher} from \"../matcher.js\";\n\nvar filter = Array.prototype.filter;\n\nfunction children() {\n return Array.from(this.children);\n}\n\nfunction childrenFilter(match) {\n return function() {\n return filter.call(this.children, match);\n };\n}\n\nexport default function(match) {\n return this.selectAll(match == null ? children\n : childrenFilter(typeof match === \"function\" ? match : childMatcher(match)));\n}\n","import {Selection} from \"./index.js\";\nimport matcher from \"../matcher.js\";\n\nexport default function(match) {\n if (typeof match !== \"function\") match = matcher(match);\n\n for (var groups = this._groups, m = groups.length, subgroups = new Array(m), j = 0; j < m; ++j) {\n for (var group = groups[j], n = group.length, subgroup = subgroups[j] = [], node, i = 0; i < n; ++i) {\n if ((node = group[i]) && match.call(node, node.__data__, i, group)) {\n subgroup.push(node);\n }\n }\n }\n\n return new Selection(subgroups, this._parents);\n}\n","export default function(update) {\n return new Array(update.length);\n}\n","import sparse from \"./sparse.js\";\nimport {Selection} from \"./index.js\";\n\nexport default function() {\n return new Selection(this._enter || this._groups.map(sparse), this._parents);\n}\n\nexport function EnterNode(parent, datum) {\n this.ownerDocument = parent.ownerDocument;\n this.namespaceURI = parent.namespaceURI;\n this._next = null;\n this._parent = parent;\n this.__data__ = datum;\n}\n\nEnterNode.prototype = {\n constructor: EnterNode,\n appendChild: function(child) { return this._parent.insertBefore(child, this._next); },\n insertBefore: function(child, next) { return this._parent.insertBefore(child, next); },\n querySelector: function(selector) { return this._parent.querySelector(selector); },\n querySelectorAll: function(selector) { return this._parent.querySelectorAll(selector); }\n};\n","export default function(x) {\n return function() {\n return x;\n };\n}\n","import {Selection} from \"./index.js\";\nimport {EnterNode} from \"./enter.js\";\nimport constant from \"../constant.js\";\n\nfunction bindIndex(parent, group, enter, update, exit, data) {\n var i = 0,\n node,\n groupLength = group.length,\n dataLength = data.length;\n\n // Put any non-null nodes that fit into update.\n // Put any null nodes into enter.\n // Put any remaining data into enter.\n for (; i < dataLength; ++i) {\n if (node = group[i]) {\n node.__data__ = data[i];\n update[i] = node;\n } else {\n enter[i] = new EnterNode(parent, data[i]);\n }\n }\n\n // Put any non-null nodes that don’t fit into exit.\n for (; i < groupLength; ++i) {\n if (node = group[i]) {\n exit[i] = node;\n }\n }\n}\n\nfunction bindKey(parent, group, enter, update, exit, data, key) {\n var i,\n node,\n nodeByKeyValue = new Map,\n groupLength = group.length,\n dataLength = data.length,\n keyValues = new Array(groupLength),\n keyValue;\n\n // Compute the key for each node.\n // If multiple nodes have the same key, the duplicates are added to exit.\n for (i = 0; i < groupLength; ++i) {\n if (node = group[i]) {\n keyValues[i] = keyValue = key.call(node, node.__data__, i, group) + \"\";\n if (nodeByKeyValue.has(keyValue)) {\n exit[i] = node;\n } else {\n nodeByKeyValue.set(keyValue, node);\n }\n }\n }\n\n // Compute the key for each datum.\n // If there a node associated with this key, join and add it to update.\n // If there is not (or the key is a duplicate), add it to enter.\n for (i = 0; i < dataLength; ++i) {\n keyValue = key.call(parent, data[i], i, data) + \"\";\n if (node = nodeByKeyValue.get(keyValue)) {\n update[i] = node;\n node.__data__ = data[i];\n nodeByKeyValue.delete(keyValue);\n } else {\n enter[i] = new EnterNode(parent, data[i]);\n }\n }\n\n // Add any remaining nodes that were not bound to data to exit.\n for (i = 0; i < groupLength; ++i) {\n if ((node = group[i]) && (nodeByKeyValue.get(keyValues[i]) === node)) {\n exit[i] = node;\n }\n }\n}\n\nfunction datum(node) {\n return node.__data__;\n}\n\nexport default function(value, key) {\n if (!arguments.length) return Array.from(this, datum);\n\n var bind = key ? bindKey : bindIndex,\n parents = this._parents,\n groups = this._groups;\n\n if (typeof value !== \"function\") value = constant(value);\n\n for (var m = groups.length, update = new Array(m), enter = new Array(m), exit = new Array(m), j = 0; j < m; ++j) {\n var parent = parents[j],\n group = groups[j],\n groupLength = group.length,\n data = arraylike(value.call(parent, parent && parent.__data__, j, parents)),\n dataLength = data.length,\n enterGroup = enter[j] = new Array(dataLength),\n updateGroup = update[j] = new Array(dataLength),\n exitGroup = exit[j] = new Array(groupLength);\n\n bind(parent, group, enterGroup, updateGroup, exitGroup, data, key);\n\n // Now connect the enter nodes to their following update node, such that\n // appendChild can insert the materialized enter node before this node,\n // rather than at the end of the parent node.\n for (var i0 = 0, i1 = 0, previous, next; i0 < dataLength; ++i0) {\n if (previous = enterGroup[i0]) {\n if (i0 >= i1) i1 = i0 + 1;\n while (!(next = updateGroup[i1]) && ++i1 < dataLength);\n previous._next = next || null;\n }\n }\n }\n\n update = new Selection(update, parents);\n update._enter = enter;\n update._exit = exit;\n return update;\n}\n\n// Given some data, this returns an array-like view of it: an object that\n// exposes a length property and allows numeric indexing. Note that unlike\n// selectAll, this isn’t worried about “live” collections because the resulting\n// array will only be used briefly while data is being bound. (It is possible to\n// cause the data to change while iterating by using a key function, but please\n// don’t; we’d rather avoid a gratuitous copy.)\nfunction arraylike(data) {\n return typeof data === \"object\" && \"length\" in data\n ? data // Array, TypedArray, NodeList, array-like\n : Array.from(data); // Map, Set, iterable, string, or anything else\n}\n","import sparse from \"./sparse.js\";\nimport {Selection} from \"./index.js\";\n\nexport default function() {\n return new Selection(this._exit || this._groups.map(sparse), this._parents);\n}\n","export default function(onenter, onupdate, onexit) {\n var enter = this.enter(), update = this, exit = this.exit();\n if (typeof onenter === \"function\") {\n enter = onenter(enter);\n if (enter) enter = enter.selection();\n } else {\n enter = enter.append(onenter + \"\");\n }\n if (onupdate != null) {\n update = onupdate(update);\n if (update) update = update.selection();\n }\n if (onexit == null) exit.remove(); else onexit(exit);\n return enter && update ? enter.merge(update).order() : update;\n}\n","import {Selection} from \"./index.js\";\n\nexport default function(context) {\n var selection = context.selection ? context.selection() : context;\n\n for (var groups0 = this._groups, groups1 = selection._groups, m0 = groups0.length, m1 = groups1.length, m = Math.min(m0, m1), merges = new Array(m0), j = 0; j < m; ++j) {\n for (var group0 = groups0[j], group1 = groups1[j], n = group0.length, merge = merges[j] = new Array(n), node, i = 0; i < n; ++i) {\n if (node = group0[i] || group1[i]) {\n merge[i] = node;\n }\n }\n }\n\n for (; j < m0; ++j) {\n merges[j] = groups0[j];\n }\n\n return new Selection(merges, this._parents);\n}\n","export default function() {\n\n for (var groups = this._groups, j = -1, m = groups.length; ++j < m;) {\n for (var group = groups[j], i = group.length - 1, next = group[i], node; --i >= 0;) {\n if (node = group[i]) {\n if (next && node.compareDocumentPosition(next) ^ 4) next.parentNode.insertBefore(node, next);\n next = node;\n }\n }\n }\n\n return this;\n}\n","import {Selection} from \"./index.js\";\n\nexport default function(compare) {\n if (!compare) compare = ascending;\n\n function compareNode(a, b) {\n return a && b ? compare(a.__data__, b.__data__) : !a - !b;\n }\n\n for (var groups = this._groups, m = groups.length, sortgroups = new Array(m), j = 0; j < m; ++j) {\n for (var group = groups[j], n = group.length, sortgroup = sortgroups[j] = new Array(n), node, i = 0; i < n; ++i) {\n if (node = group[i]) {\n sortgroup[i] = node;\n }\n }\n sortgroup.sort(compareNode);\n }\n\n return new Selection(sortgroups, this._parents).order();\n}\n\nfunction ascending(a, b) {\n return a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;\n}\n","export default function() {\n var callback = arguments[0];\n arguments[0] = this;\n callback.apply(null, arguments);\n return this;\n}\n","export default function() {\n return Array.from(this);\n}\n","export default function() {\n\n for (var groups = this._groups, j = 0, m = groups.length; j < m; ++j) {\n for (var group = groups[j], i = 0, n = group.length; i < n; ++i) {\n var node = group[i];\n if (node) return node;\n }\n }\n\n return null;\n}\n","export default function() {\n let size = 0;\n for (const node of this) ++size; // eslint-disable-line no-unused-vars\n return size;\n}\n","export default function() {\n return !this.node();\n}\n","export default function(callback) {\n\n for (var groups = this._groups, j = 0, m = groups.length; j < m; ++j) {\n for (var group = groups[j], i = 0, n = group.length, node; i < n; ++i) {\n if (node = group[i]) callback.call(node, node.__data__, i, group);\n }\n }\n\n return this;\n}\n","import namespace from \"../namespace.js\";\n\nfunction attrRemove(name) {\n return function() {\n this.removeAttribute(name);\n };\n}\n\nfunction attrRemoveNS(fullname) {\n return function() {\n this.removeAttributeNS(fullname.space, fullname.local);\n };\n}\n\nfunction attrConstant(name, value) {\n return function() {\n this.setAttribute(name, value);\n };\n}\n\nfunction attrConstantNS(fullname, value) {\n return function() {\n this.setAttributeNS(fullname.space, fullname.local, value);\n };\n}\n\nfunction attrFunction(name, value) {\n return function() {\n var v = value.apply(this, arguments);\n if (v == null) this.removeAttribute(name);\n else this.setAttribute(name, v);\n };\n}\n\nfunction attrFunctionNS(fullname, value) {\n return function() {\n var v = value.apply(this, arguments);\n if (v == null) this.removeAttributeNS(fullname.space, fullname.local);\n else this.setAttributeNS(fullname.space, fullname.local, v);\n };\n}\n\nexport default function(name, value) {\n var fullname = namespace(name);\n\n if (arguments.length < 2) {\n var node = this.node();\n return fullname.local\n ? node.getAttributeNS(fullname.space, fullname.local)\n : node.getAttribute(fullname);\n }\n\n return this.each((value == null\n ? (fullname.local ? attrRemoveNS : attrRemove) : (typeof value === \"function\"\n ? (fullname.local ? attrFunctionNS : attrFunction)\n : (fullname.local ? attrConstantNS : attrConstant)))(fullname, value));\n}\n","export default function(node) {\n return (node.ownerDocument && node.ownerDocument.defaultView) // node is a Node\n || (node.document && node) // node is a Window\n || node.defaultView; // node is a Document\n}\n","import defaultView from \"../window.js\";\n\nfunction styleRemove(name) {\n return function() {\n this.style.removeProperty(name);\n };\n}\n\nfunction styleConstant(name, value, priority) {\n return function() {\n this.style.setProperty(name, value, priority);\n };\n}\n\nfunction styleFunction(name, value, priority) {\n return function() {\n var v = value.apply(this, arguments);\n if (v == null) this.style.removeProperty(name);\n else this.style.setProperty(name, v, priority);\n };\n}\n\nexport default function(name, value, priority) {\n return arguments.length > 1\n ? this.each((value == null\n ? styleRemove : typeof value === \"function\"\n ? styleFunction\n : styleConstant)(name, value, priority == null ? \"\" : priority))\n : styleValue(this.node(), name);\n}\n\nexport function styleValue(node, name) {\n return node.style.getPropertyValue(name)\n || defaultView(node).getComputedStyle(node, null).getPropertyValue(name);\n}\n","function propertyRemove(name) {\n return function() {\n delete this[name];\n };\n}\n\nfunction propertyConstant(name, value) {\n return function() {\n this[name] = value;\n };\n}\n\nfunction propertyFunction(name, value) {\n return function() {\n var v = value.apply(this, arguments);\n if (v == null) delete this[name];\n else this[name] = v;\n };\n}\n\nexport default function(name, value) {\n return arguments.length > 1\n ? this.each((value == null\n ? propertyRemove : typeof value === \"function\"\n ? propertyFunction\n : propertyConstant)(name, value))\n : this.node()[name];\n}\n","function classArray(string) {\n return string.trim().split(/^|\\s+/);\n}\n\nfunction classList(node) {\n return node.classList || new ClassList(node);\n}\n\nfunction ClassList(node) {\n this._node = node;\n this._names = classArray(node.getAttribute(\"class\") || \"\");\n}\n\nClassList.prototype = {\n add: function(name) {\n var i = this._names.indexOf(name);\n if (i < 0) {\n this._names.push(name);\n this._node.setAttribute(\"class\", this._names.join(\" \"));\n }\n },\n remove: function(name) {\n var i = this._names.indexOf(name);\n if (i >= 0) {\n this._names.splice(i, 1);\n this._node.setAttribute(\"class\", this._names.join(\" \"));\n }\n },\n contains: function(name) {\n return this._names.indexOf(name) >= 0;\n }\n};\n\nfunction classedAdd(node, names) {\n var list = classList(node), i = -1, n = names.length;\n while (++i < n) list.add(names[i]);\n}\n\nfunction classedRemove(node, names) {\n var list = classList(node), i = -1, n = names.length;\n while (++i < n) list.remove(names[i]);\n}\n\nfunction classedTrue(names) {\n return function() {\n classedAdd(this, names);\n };\n}\n\nfunction classedFalse(names) {\n return function() {\n classedRemove(this, names);\n };\n}\n\nfunction classedFunction(names, value) {\n return function() {\n (value.apply(this, arguments) ? classedAdd : classedRemove)(this, names);\n };\n}\n\nexport default function(name, value) {\n var names = classArray(name + \"\");\n\n if (arguments.length < 2) {\n var list = classList(this.node()), i = -1, n = names.length;\n while (++i < n) if (!list.contains(names[i])) return false;\n return true;\n }\n\n return this.each((typeof value === \"function\"\n ? classedFunction : value\n ? classedTrue\n : classedFalse)(names, value));\n}\n","function textRemove() {\n this.textContent = \"\";\n}\n\nfunction textConstant(value) {\n return function() {\n this.textContent = value;\n };\n}\n\nfunction textFunction(value) {\n return function() {\n var v = value.apply(this, arguments);\n this.textContent = v == null ? \"\" : v;\n };\n}\n\nexport default function(value) {\n return arguments.length\n ? this.each(value == null\n ? textRemove : (typeof value === \"function\"\n ? textFunction\n : textConstant)(value))\n : this.node().textContent;\n}\n","function htmlRemove() {\n this.innerHTML = \"\";\n}\n\nfunction htmlConstant(value) {\n return function() {\n this.innerHTML = value;\n };\n}\n\nfunction htmlFunction(value) {\n return function() {\n var v = value.apply(this, arguments);\n this.innerHTML = v == null ? \"\" : v;\n };\n}\n\nexport default function(value) {\n return arguments.length\n ? this.each(value == null\n ? htmlRemove : (typeof value === \"function\"\n ? htmlFunction\n : htmlConstant)(value))\n : this.node().innerHTML;\n}\n","function raise() {\n if (this.nextSibling) this.parentNode.appendChild(this);\n}\n\nexport default function() {\n return this.each(raise);\n}\n","function lower() {\n if (this.previousSibling) this.parentNode.insertBefore(this, this.parentNode.firstChild);\n}\n\nexport default function() {\n return this.each(lower);\n}\n","import creator from \"../creator.js\";\n\nexport default function(name) {\n var create = typeof name === \"function\" ? name : creator(name);\n return this.select(function() {\n return this.appendChild(create.apply(this, arguments));\n });\n}\n","import creator from \"../creator.js\";\nimport selector from \"../selector.js\";\n\nfunction constantNull() {\n return null;\n}\n\nexport default function(name, before) {\n var create = typeof name === \"function\" ? name : creator(name),\n select = before == null ? constantNull : typeof before === \"function\" ? before : selector(before);\n return this.select(function() {\n return this.insertBefore(create.apply(this, arguments), select.apply(this, arguments) || null);\n });\n}\n","function remove() {\n var parent = this.parentNode;\n if (parent) parent.removeChild(this);\n}\n\nexport default function() {\n return this.each(remove);\n}\n","function selection_cloneShallow() {\n var clone = this.cloneNode(false), parent = this.parentNode;\n return parent ? parent.insertBefore(clone, this.nextSibling) : clone;\n}\n\nfunction selection_cloneDeep() {\n var clone = this.cloneNode(true), parent = this.parentNode;\n return parent ? parent.insertBefore(clone, this.nextSibling) : clone;\n}\n\nexport default function(deep) {\n return this.select(deep ? selection_cloneDeep : selection_cloneShallow);\n}\n","export default function(value) {\n return arguments.length\n ? this.property(\"__data__\", value)\n : this.node().__data__;\n}\n","function contextListener(listener) {\n return function(event) {\n listener.call(this, event, this.__data__);\n };\n}\n\nfunction parseTypenames(typenames) {\n return typenames.trim().split(/^|\\s+/).map(function(t) {\n var name = \"\", i = t.indexOf(\".\");\n if (i >= 0) name = t.slice(i + 1), t = t.slice(0, i);\n return {type: t, name: name};\n });\n}\n\nfunction onRemove(typename) {\n return function() {\n var on = this.__on;\n if (!on) return;\n for (var j = 0, i = -1, m = on.length, o; j < m; ++j) {\n if (o = on[j], (!typename.type || o.type === typename.type) && o.name === typename.name) {\n this.removeEventListener(o.type, o.listener, o.options);\n } else {\n on[++i] = o;\n }\n }\n if (++i) on.length = i;\n else delete this.__on;\n };\n}\n\nfunction onAdd(typename, value, options) {\n return function() {\n var on = this.__on, o, listener = contextListener(value);\n if (on) for (var j = 0, m = on.length; j < m; ++j) {\n if ((o = on[j]).type === typename.type && o.name === typename.name) {\n this.removeEventListener(o.type, o.listener, o.options);\n this.addEventListener(o.type, o.listener = listener, o.options = options);\n o.value = value;\n return;\n }\n }\n this.addEventListener(typename.type, listener, options);\n o = {type: typename.type, name: typename.name, value: value, listener: listener, options: options};\n if (!on) this.__on = [o];\n else on.push(o);\n };\n}\n\nexport default function(typename, value, options) {\n var typenames = parseTypenames(typename + \"\"), i, n = typenames.length, t;\n\n if (arguments.length < 2) {\n var on = this.node().__on;\n if (on) for (var j = 0, m = on.length, o; j < m; ++j) {\n for (i = 0, o = on[j]; i < n; ++i) {\n if ((t = typenames[i]).type === o.type && t.name === o.name) {\n return o.value;\n }\n }\n }\n return;\n }\n\n on = value ? onAdd : onRemove;\n for (i = 0; i < n; ++i) this.each(on(typenames[i], value, options));\n return this;\n}\n","import defaultView from \"../window.js\";\n\nfunction dispatchEvent(node, type, params) {\n var window = defaultView(node),\n event = window.CustomEvent;\n\n if (typeof event === \"function\") {\n event = new event(type, params);\n } else {\n event = window.document.createEvent(\"Event\");\n if (params) event.initEvent(type, params.bubbles, params.cancelable), event.detail = params.detail;\n else event.initEvent(type, false, false);\n }\n\n node.dispatchEvent(event);\n}\n\nfunction dispatchConstant(type, params) {\n return function() {\n return dispatchEvent(this, type, params);\n };\n}\n\nfunction dispatchFunction(type, params) {\n return function() {\n return dispatchEvent(this, type, params.apply(this, arguments));\n };\n}\n\nexport default function(type, params) {\n return this.each((typeof params === \"function\"\n ? dispatchFunction\n : dispatchConstant)(type, params));\n}\n","export default function*() {\n for (var groups = this._groups, j = 0, m = groups.length; j < m; ++j) {\n for (var group = groups[j], i = 0, n = group.length, node; i < n; ++i) {\n if (node = group[i]) yield node;\n }\n }\n}\n","import selection_select from \"./select.js\";\nimport selection_selectAll from \"./selectAll.js\";\nimport selection_selectChild from \"./selectChild.js\";\nimport selection_selectChildren from \"./selectChildren.js\";\nimport selection_filter from \"./filter.js\";\nimport selection_data from \"./data.js\";\nimport selection_enter from \"./enter.js\";\nimport selection_exit from \"./exit.js\";\nimport selection_join from \"./join.js\";\nimport selection_merge from \"./merge.js\";\nimport selection_order from \"./order.js\";\nimport selection_sort from \"./sort.js\";\nimport selection_call from \"./call.js\";\nimport selection_nodes from \"./nodes.js\";\nimport selection_node from \"./node.js\";\nimport selection_size from \"./size.js\";\nimport selection_empty from \"./empty.js\";\nimport selection_each from \"./each.js\";\nimport selection_attr from \"./attr.js\";\nimport selection_style from \"./style.js\";\nimport selection_property from \"./property.js\";\nimport selection_classed from \"./classed.js\";\nimport selection_text from \"./text.js\";\nimport selection_html from \"./html.js\";\nimport selection_raise from \"./raise.js\";\nimport selection_lower from \"./lower.js\";\nimport selection_append from \"./append.js\";\nimport selection_insert from \"./insert.js\";\nimport selection_remove from \"./remove.js\";\nimport selection_clone from \"./clone.js\";\nimport selection_datum from \"./datum.js\";\nimport selection_on from \"./on.js\";\nimport selection_dispatch from \"./dispatch.js\";\nimport selection_iterator from \"./iterator.js\";\n\nexport var root = [null];\n\nexport function Selection(groups, parents) {\n this._groups = groups;\n this._parents = parents;\n}\n\nfunction selection() {\n return new Selection([[document.documentElement]], root);\n}\n\nfunction selection_selection() {\n return this;\n}\n\nSelection.prototype = selection.prototype = {\n constructor: Selection,\n select: selection_select,\n selectAll: selection_selectAll,\n selectChild: selection_selectChild,\n selectChildren: selection_selectChildren,\n filter: selection_filter,\n data: selection_data,\n enter: selection_enter,\n exit: selection_exit,\n join: selection_join,\n merge: selection_merge,\n selection: selection_selection,\n order: selection_order,\n sort: selection_sort,\n call: selection_call,\n nodes: selection_nodes,\n node: selection_node,\n size: selection_size,\n empty: selection_empty,\n each: selection_each,\n attr: selection_attr,\n style: selection_style,\n property: selection_property,\n classed: selection_classed,\n text: selection_text,\n html: selection_html,\n raise: selection_raise,\n lower: selection_lower,\n append: selection_append,\n insert: selection_insert,\n remove: selection_remove,\n clone: selection_clone,\n datum: selection_datum,\n on: selection_on,\n dispatch: selection_dispatch,\n [Symbol.iterator]: selection_iterator\n};\n\nexport default selection;\n","import {Selection, root} from \"./selection/index.js\";\n\nexport default function(selector) {\n return typeof selector === \"string\"\n ? new Selection([[document.querySelector(selector)]], [document.documentElement])\n : new Selection([[selector]], root);\n}\n","export default function(x) {\n return function constant() {\n return x;\n };\n}\n","const pi = Math.PI,\n tau = 2 * pi,\n epsilon = 1e-6,\n tauEpsilon = tau - epsilon;\n\nfunction append(strings) {\n this._ += strings[0];\n for (let i = 1, n = strings.length; i < n; ++i) {\n this._ += arguments[i] + strings[i];\n }\n}\n\nfunction appendRound(digits) {\n let d = Math.floor(digits);\n if (!(d >= 0)) throw new Error(`invalid digits: ${digits}`);\n if (d > 15) return append;\n const k = 10 ** d;\n return function(strings) {\n this._ += strings[0];\n for (let i = 1, n = strings.length; i < n; ++i) {\n this._ += Math.round(arguments[i] * k) / k + strings[i];\n }\n };\n}\n\nexport class Path {\n constructor(digits) {\n this._x0 = this._y0 = // start of current subpath\n this._x1 = this._y1 = null; // end of current subpath\n this._ = \"\";\n this._append = digits == null ? append : appendRound(digits);\n }\n moveTo(x, y) {\n this._append`M${this._x0 = this._x1 = +x},${this._y0 = this._y1 = +y}`;\n }\n closePath() {\n if (this._x1 !== null) {\n this._x1 = this._x0, this._y1 = this._y0;\n this._append`Z`;\n }\n }\n lineTo(x, y) {\n this._append`L${this._x1 = +x},${this._y1 = +y}`;\n }\n quadraticCurveTo(x1, y1, x, y) {\n this._append`Q${+x1},${+y1},${this._x1 = +x},${this._y1 = +y}`;\n }\n bezierCurveTo(x1, y1, x2, y2, x, y) {\n this._append`C${+x1},${+y1},${+x2},${+y2},${this._x1 = +x},${this._y1 = +y}`;\n }\n arcTo(x1, y1, x2, y2, r) {\n x1 = +x1, y1 = +y1, x2 = +x2, y2 = +y2, r = +r;\n\n // Is the radius negative? Error.\n if (r < 0) throw new Error(`negative radius: ${r}`);\n\n let x0 = this._x1,\n y0 = this._y1,\n x21 = x2 - x1,\n y21 = y2 - y1,\n x01 = x0 - x1,\n y01 = y0 - y1,\n l01_2 = x01 * x01 + y01 * y01;\n\n // Is this path empty? Move to (x1,y1).\n if (this._x1 === null) {\n this._append`M${this._x1 = x1},${this._y1 = y1}`;\n }\n\n // Or, is (x1,y1) coincident with (x0,y0)? Do nothing.\n else if (!(l01_2 > epsilon));\n\n // Or, are (x0,y0), (x1,y1) and (x2,y2) collinear?\n // Equivalently, is (x1,y1) coincident with (x2,y2)?\n // Or, is the radius zero? Line to (x1,y1).\n else if (!(Math.abs(y01 * x21 - y21 * x01) > epsilon) || !r) {\n this._append`L${this._x1 = x1},${this._y1 = y1}`;\n }\n\n // Otherwise, draw an arc!\n else {\n let x20 = x2 - x0,\n y20 = y2 - y0,\n l21_2 = x21 * x21 + y21 * y21,\n l20_2 = x20 * x20 + y20 * y20,\n l21 = Math.sqrt(l21_2),\n l01 = Math.sqrt(l01_2),\n l = r * Math.tan((pi - Math.acos((l21_2 + l01_2 - l20_2) / (2 * l21 * l01))) / 2),\n t01 = l / l01,\n t21 = l / l21;\n\n // If the start tangent is not coincident with (x0,y0), line to.\n if (Math.abs(t01 - 1) > epsilon) {\n this._append`L${x1 + t01 * x01},${y1 + t01 * y01}`;\n }\n\n this._append`A${r},${r},0,0,${+(y01 * x20 > x01 * y20)},${this._x1 = x1 + t21 * x21},${this._y1 = y1 + t21 * y21}`;\n }\n }\n arc(x, y, r, a0, a1, ccw) {\n x = +x, y = +y, r = +r, ccw = !!ccw;\n\n // Is the radius negative? Error.\n if (r < 0) throw new Error(`negative radius: ${r}`);\n\n let dx = r * Math.cos(a0),\n dy = r * Math.sin(a0),\n x0 = x + dx,\n y0 = y + dy,\n cw = 1 ^ ccw,\n da = ccw ? a0 - a1 : a1 - a0;\n\n // Is this path empty? Move to (x0,y0).\n if (this._x1 === null) {\n this._append`M${x0},${y0}`;\n }\n\n // Or, is (x0,y0) not coincident with the previous point? Line to (x0,y0).\n else if (Math.abs(this._x1 - x0) > epsilon || Math.abs(this._y1 - y0) > epsilon) {\n this._append`L${x0},${y0}`;\n }\n\n // Is this arc empty? We’re done.\n if (!r) return;\n\n // Does the angle go the wrong way? Flip the direction.\n if (da < 0) da = da % tau + tau;\n\n // Is this a complete circle? Draw two arcs to complete the circle.\n if (da > tauEpsilon) {\n this._append`A${r},${r},0,1,${cw},${x - dx},${y - dy}A${r},${r},0,1,${cw},${this._x1 = x0},${this._y1 = y0}`;\n }\n\n // Is this arc non-empty? Draw an arc!\n else if (da > epsilon) {\n this._append`A${r},${r},0,${+(da >= pi)},${cw},${this._x1 = x + r * Math.cos(a1)},${this._y1 = y + r * Math.sin(a1)}`;\n }\n }\n rect(x, y, w, h) {\n this._append`M${this._x0 = this._x1 = +x},${this._y0 = this._y1 = +y}h${w = +w}v${+h}h${-w}Z`;\n }\n toString() {\n return this._;\n }\n}\n\nexport function path() {\n return new Path;\n}\n\n// Allow instanceof d3.path\npath.prototype = Path.prototype;\n\nexport function pathRound(digits = 3) {\n return new Path(+digits);\n}\n","import {Path} from \"d3-path\";\n\nexport function withPath(shape) {\n let digits = 3;\n\n shape.digits = function(_) {\n if (!arguments.length) return digits;\n if (_ == null) {\n digits = null;\n } else {\n const d = Math.floor(_);\n if (!(d >= 0)) throw new RangeError(`invalid digits: ${_}`);\n digits = d;\n }\n return shape;\n };\n\n return () => new Path(digits);\n}\n","export var slice = Array.prototype.slice;\n\nexport default function(x) {\n return typeof x === \"object\" && \"length\" in x\n ? x // Array, TypedArray, NodeList, array-like\n : Array.from(x); // Map, Set, iterable, string, or anything else\n}\n","function Linear(context) {\n this._context = context;\n}\n\nLinear.prototype = {\n areaStart: function() {\n this._line = 0;\n },\n areaEnd: function() {\n this._line = NaN;\n },\n lineStart: function() {\n this._point = 0;\n },\n lineEnd: function() {\n if (this._line || (this._line !== 0 && this._point === 1)) this._context.closePath();\n this._line = 1 - this._line;\n },\n point: function(x, y) {\n x = +x, y = +y;\n switch (this._point) {\n case 0: this._point = 1; this._line ? this._context.lineTo(x, y) : this._context.moveTo(x, y); break;\n case 1: this._point = 2; // falls through\n default: this._context.lineTo(x, y); break;\n }\n }\n};\n\nexport default function(context) {\n return new Linear(context);\n}\n","export function x(p) {\n return p[0];\n}\n\nexport function y(p) {\n return p[1];\n}\n","import pointRadial from \"../pointRadial.js\";\n\nclass Bump {\n constructor(context, x) {\n this._context = context;\n this._x = x;\n }\n areaStart() {\n this._line = 0;\n }\n areaEnd() {\n this._line = NaN;\n }\n lineStart() {\n this._point = 0;\n }\n lineEnd() {\n if (this._line || (this._line !== 0 && this._point === 1)) this._context.closePath();\n this._line = 1 - this._line;\n }\n point(x, y) {\n x = +x, y = +y;\n switch (this._point) {\n case 0: {\n this._point = 1;\n if (this._line) this._context.lineTo(x, y);\n else this._context.moveTo(x, y);\n break;\n }\n case 1: this._point = 2; // falls through\n default: {\n if (this._x) this._context.bezierCurveTo(this._x0 = (this._x0 + x) / 2, this._y0, this._x0, y, x, y);\n else this._context.bezierCurveTo(this._x0, this._y0 = (this._y0 + y) / 2, x, this._y0, x, y);\n break;\n }\n }\n this._x0 = x, this._y0 = y;\n }\n}\n\nclass BumpRadial {\n constructor(context) {\n this._context = context;\n }\n lineStart() {\n this._point = 0;\n }\n lineEnd() {}\n point(x, y) {\n x = +x, y = +y;\n if (this._point === 0) {\n this._point = 1;\n } else {\n const p0 = pointRadial(this._x0, this._y0);\n const p1 = pointRadial(this._x0, this._y0 = (this._y0 + y) / 2);\n const p2 = pointRadial(x, this._y0);\n const p3 = pointRadial(x, y);\n this._context.moveTo(...p0);\n this._context.bezierCurveTo(...p1, ...p2, ...p3);\n }\n this._x0 = x, this._y0 = y;\n }\n}\n\nexport function bumpX(context) {\n return new Bump(context, true);\n}\n\nexport function bumpY(context) {\n return new Bump(context, false);\n}\n\nexport function bumpRadial(context) {\n return new BumpRadial(context);\n}\n"],"x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52],"mappings":"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"}
|