@difizen/magent-au
Version:
57 lines • 2.9 kB
JavaScript
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
var _dec, _class;
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
import { ColorContribution, VariableContribution } from '@difizen/mana-app';
import { singleton } from '@difizen/mana-app';
export var ReactFlowThemeContribution = (_dec = singleton({
contrib: [ColorContribution, VariableContribution]
}), _dec(_class = /*#__PURE__*/function () {
function ReactFlowThemeContribution() {
_classCallCheck(this, ReactFlowThemeContribution);
}
_createClass(ReactFlowThemeContribution, [{
key: "registerVariables",
value: function registerVariables(vars) {
vars.register.apply(vars, [
// --xy-edge-stroke-width
{
id: 'xy.edge.stroke.width',
prefix: '',
defaults: {
dark: '2px',
light: '2px'
},
description: ''
}]);
}
}, {
key: "registerColors",
value: function registerColors(colors) {
colors.register.apply(colors, [
// --xy-edge-stroke-selected
// --xy-edge-stroke
{
id: 'xy.edge.stroke.selected',
prefix: '',
defaults: {
dark: '#1677FF',
light: '#1677FF'
},
description: ''
}, {
id: 'xy.edge.stroke',
prefix: '',
defaults: {
dark: '#3b82f6',
light: '#3b82f6'
},
description: ''
}]);
}
}]);
return ReactFlowThemeContribution;
}()) || _class);