primevue
Version:
PrimeVue is a premium UI library for Vue featuring a rich set of 90+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBlock, wh
27 lines (24 loc) • 944 B
JavaScript
import { style } from '@primeuix/styles/organizationchart';
import BaseStyle from '@primevue/core/base/style';
var extendedStyle = /*css*/"\n ".concat(style, "\n\n /* For PrimeVue */\n .p-organizationchart-node-content {\n gap: 0.5rem;\n }\n");
var classes = {
root: 'p-organizationchart p-component',
tree: 'p-organizationchart-tree',
subtree: function subtree(_ref) {
var root = _ref.root;
return ['p-organizationchart-subtree', {
'p-organizationchart-subtree-root': root
}];
},
node: 'p-organizationchart-node',
content: 'p-organizationchart-node-content',
label: 'p-organizationchart-node-label',
toggle: 'p-organizationchart-node-toggle-button',
toggleIndicator: 'p-organizationchart-node-toggle-button-icon'
};
var OrganizationChartStyle = BaseStyle.extend({
name: 'organizationchart',
style: extendedStyle,
classes: classes
});
export { OrganizationChartStyle as default };