diff --git a/src/components/DateTimePicker/DatePicker/Styles/mixins.scss b/src/components/DateTimePicker/DatePicker/Styles/mixins.scss index ea93c2a54..85bbec1a8 100644 --- a/src/components/DateTimePicker/DatePicker/Styles/mixins.scss +++ b/src/components/DateTimePicker/DatePicker/Styles/mixins.scss @@ -55,19 +55,6 @@ $picker-input-padding-vertical: max( padding: $padding-top 0 $padding-bottom $padding-horizontal; } -// Picker css reset -@mixin reset-component() { - box-sizing: border-box; - margin: 0; - padding: 0; - color: var(--text-primary-color); - font-size: 14px; - font-variant: tabular-nums; - line-height: 1.5715; - list-style: none; - font-feature-settings: 'tnum'; -} - // Picker scroll bars @mixin scroll-bars() { -ms-overflow-style: none; diff --git a/src/components/Form/Styles/mixins.scss b/src/components/Form/Styles/mixins.scss index b4fa79201..3ba6ecaa9 100644 --- a/src/components/Form/Styles/mixins.scss +++ b/src/components/Form/Styles/mixins.scss @@ -1,15 +1,3 @@ -@mixin reset-component() { - box-sizing: border-box; - margin: 0; - padding: 0; - color: var(--text-primary-color); - font-size: $text-font-size-2; - font-variant: tabular-nums; - line-height: 1.5715; - list-style: none; - font-feature-settings: 'tnum'; -} - @mixin reset-form() { legend { display: block; diff --git a/src/components/Progress/Circle.tsx b/src/components/Progress/Circle.tsx new file mode 100644 index 000000000..e63bc9c55 --- /dev/null +++ b/src/components/Progress/Circle.tsx @@ -0,0 +1,94 @@ +import React, { FC } from 'react'; +import OcCircle, { VIEW_BOX_SIZE } from './Internal/OcCircle'; +import { CircleProps } from './Progress.types'; +import { getSuccessPercent, validProgress } from './Utils'; +import { mergeClasses } from '../../shared/utilities'; + +import styles from './progress.module.scss'; + +const DEFAULT_CIRCLE_SIZE: number = 120; +const DEFAULT_GAP_DEGREE: number = 75; +const DEFAULT_STROKE_WIDTH_DIVISOR: number = 1.6; +const FAlLBACK_STROKE_WIDTH: number = 4; +const FONT_SIZE_FLOAT: number = 0.15; + +function getPercentage({ percent, success }: CircleProps): number[] { + const realSuccessPercent = validProgress(getSuccessPercent({ success })); + return [ + realSuccessPercent, + validProgress(validProgress(percent) - realSuccessPercent), + ]; +} + +function getStrokeColor({ + success = {}, + strokeColor, +}: Partial): (string | Record)[] { + const { strokeColor: successColor } = success; + return [successColor || 'var(--success-color)', strokeColor || null!]; +} + +const Circle: FC = (props) => { + const { + children, + gapDegree, + gapPosition, + strokeLinecap = 'butt', + strokeWidth = VIEW_BOX_SIZE / DEFAULT_STROKE_WIDTH_DIVISOR, + success, + trailColor = null, + type, + width, + } = props; + + const circleSize: number = width || DEFAULT_CIRCLE_SIZE; + const circleStyle: React.CSSProperties = { + width: circleSize, + height: circleSize, + fontSize: circleSize * FONT_SIZE_FLOAT + FAlLBACK_STROKE_WIDTH, + }; + const circleWidth: number = strokeWidth || FAlLBACK_STROKE_WIDTH; + const gapPos: 'top' | 'bottom' | 'left' | 'right' = + gapPosition || (type === 'dashboard' && 'bottom') || undefined; + + const getGapDegree = (): number => { + // Support gapDeg = 0 when type = 'dashboard' + if (gapDegree || gapDegree === 0) { + return gapDegree; + } + if (type === 'dashboard') { + return DEFAULT_GAP_DEGREE; + } + return undefined; + }; + + const isGradient: boolean = + Object.prototype.toString.call(props.strokeColor) === '[object Object]'; + const strokeColor: (string | Record)[] = getStrokeColor({ + success, + strokeColor: props.strokeColor, + }); + + const wrapperClassNames: string = mergeClasses([ + styles.progressInner, + { [styles.progressCircleGradient]: isGradient }, + ]); + + return ( +
+ + {children} +
+ ); +}; + +export default Circle; diff --git a/src/components/Progress/Internal/Common.ts b/src/components/Progress/Internal/Common.ts new file mode 100644 index 000000000..5028848b0 --- /dev/null +++ b/src/components/Progress/Internal/Common.ts @@ -0,0 +1,38 @@ +import { useRef, useEffect } from 'react'; + +export const MAX_PERCENT: number = 100; + +export const useTransitionDuration = (): SVGPathElement[] => { + const pathsRef: React.MutableRefObject = useRef< + SVGPathElement[] + >([]); + const prevTimeStamp: React.MutableRefObject = useRef(null); + + useEffect(() => { + const now: number = Date.now(); + let updated: boolean = false; + + pathsRef.current.forEach((path: SVGPathElement) => { + if (!path) { + return; + } + + updated = true; + const pathStyle: CSSStyleDeclaration = path.style; + pathStyle.transitionDuration = '.3s, .3s, .3s, .06s'; + + if ( + prevTimeStamp.current && + now - prevTimeStamp.current < MAX_PERCENT + ) { + pathStyle.transitionDuration = '0s, 0s'; + } + }); + + if (updated) { + prevTimeStamp.current = Date.now(); + } + }); + + return pathsRef.current; +}; diff --git a/src/components/Progress/Internal/OcCircle.tsx b/src/components/Progress/Internal/OcCircle.tsx new file mode 100644 index 000000000..122364463 --- /dev/null +++ b/src/components/Progress/Internal/OcCircle.tsx @@ -0,0 +1,280 @@ +import React, { FC } from 'react'; +import { MAX_PERCENT, useTransitionDuration } from './Common'; +import type { OcProgressProps } from './OcProgress.types'; +import { mergeClasses, uniqueId } from '../../../shared/utilities'; +import styles from '../progress.module.scss'; + +function stripPercentToNumber(percent: string): number { + return +percent.replace('%', ''); +} + +function toArray(value: T | T[]): T[] { + const mergedValue: T | T[] = value ?? []; + return Array.isArray(mergedValue) ? mergedValue : [mergedValue]; +} + +export const VIEW_BOX_SIZE: number = 100; + +const CIRCLE_DEGREE: number = 360; +const FLIP_DEGREE: number = 180; +const ROTATE_RIGHT_ANGLE_DEGREE: number = 90; +const SPLIT_NUMBER: number = 2; +const VIEW_BOX_SIZE_RADIUS: number = VIEW_BOX_SIZE / SPLIT_NUMBER; + +const getCircleStyle = ( + gapDegree: number, + gapPosition: OcProgressProps['gapPosition'] | undefined, + offset: number, + percent: number, + perimeter: number, + perimeterWithoutGap: number, + rotateDeg: number, + strokeColor: string | Record, + strokeLinecap: OcProgressProps['strokeLinecap'], + strokeWidth: number, + stepSpace: number = 0 +) => { + const offsetDeg: number = + (offset / VIEW_BOX_SIZE) * + CIRCLE_DEGREE * + ((CIRCLE_DEGREE - gapDegree) / CIRCLE_DEGREE); + const positionDeg: number = + gapDegree === 0 + ? 0 + : { + bottom: 0, + top: FLIP_DEGREE, + left: ROTATE_RIGHT_ANGLE_DEGREE, + right: -ROTATE_RIGHT_ANGLE_DEGREE, + }[gapPosition]; + + let strokeDashoffset: number = + ((MAX_PERCENT - percent) / MAX_PERCENT) * perimeterWithoutGap; + // Fix percent accuracy when strokeLinecap is round + if (strokeLinecap === 'round' && percent !== MAX_PERCENT) { + strokeDashoffset += strokeWidth / SPLIT_NUMBER; + // when percent is small enough (<= 1%), keep smallest value to avoid stroke disappearing. + if (strokeDashoffset >= perimeterWithoutGap) { + strokeDashoffset = perimeterWithoutGap - 0.01; + } + } + + return { + stroke: typeof strokeColor === 'string' ? strokeColor : undefined, + strokeDasharray: `${perimeterWithoutGap}px ${perimeter}`, + strokeDashoffset: strokeDashoffset + stepSpace, + transform: `rotate(${rotateDeg + offsetDeg + positionDeg}deg)`, + transformOrigin: '50% 50%', + transition: + 'stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s', + fillOpacity: 0, + }; +}; + +const OcCircle: FC = ({ + classNames, + gapDegree = 0, + gapPosition = 'bottom', + id, + percent = 0, + steps, + strokeColor = 'var(--primary-color-60)', + strokeLinecap = 'butt', + strokeWidth = 1, + style, + trailColor = 'var(--accent-color-10)', + trailWidth = 1, + ...rest +}) => { + const mergedId: string = uniqueId(id ? `${id}-` : 'circle-'); + const gradientId: string = `${mergedId}-gradient`; + const radius: number = VIEW_BOX_SIZE_RADIUS; + const perimeter: number = Math.PI * SPLIT_NUMBER * radius; + const rotateDeg: number = + gapDegree > 0 + ? ROTATE_RIGHT_ANGLE_DEGREE + gapDegree / SPLIT_NUMBER + : -ROTATE_RIGHT_ANGLE_DEGREE; + const perimeterWithoutGap: number = + perimeter * ((CIRCLE_DEGREE - gapDegree) / CIRCLE_DEGREE); + const { count: stepCount, space: stepSpace } = + typeof steps === 'object' + ? steps + : { count: steps, space: SPLIT_NUMBER }; + + const circleStyle = getCircleStyle( + gapDegree, + gapPosition, + 0, + MAX_PERCENT, + perimeter, + perimeterWithoutGap, + rotateDeg, + trailColor, + strokeLinecap, + strokeWidth + ); + const percentList: number[] = toArray(percent); + const strokeColorList: (string | Record)[] = + toArray(strokeColor); + const gradient: string | Record = strokeColorList.find( + (color) => color && typeof color === 'object' + ); + + const paths: SVGPathElement[] = useTransitionDuration(); + + const getStrokeList = (): JSX.Element[] => { + let stackPtg: number = 0; + return percentList + .map((ptg: number, index: number) => { + const color: string | Record = + strokeColorList[index] || + strokeColorList[strokeColorList.length - 1]; + const stroke: string = + color && typeof color === 'object' + ? `url(#${gradientId})` + : undefined; + const circleStyleForStack = getCircleStyle( + gapDegree, + gapPosition, + stackPtg, + ptg, + perimeter, + perimeterWithoutGap, + rotateDeg, + color, + strokeLinecap, + strokeWidth + ); + stackPtg += ptg; + return ( + { + // https://reactjs.org/docs/refs-and-the-dom.html#callback-refs + // React will call the ref callback with the DOM element when the component mounts, + // and call it with `null` when it unmounts. + // Refs are guaranteed to be up-to-date before componentDidMount or componentDidUpdate fires. + + paths[index] = elem; + }} + /> + ); + }) + .reverse(); + }; + + const getStepStrokeList = (): JSX.Element[] => { + // only show the first percent when pass steps + const current: number = Math.round( + stepCount * (percentList[0] / MAX_PERCENT) + ); + const stepPtg: number = MAX_PERCENT / stepCount; + + let stackPtg: number = 0; + return new Array(stepCount).fill(null).map((_, index) => { + const color: string | Record = + index <= current - 1 ? strokeColorList[0] : trailColor; + const stroke: string = + color && typeof color === 'object' + ? `url(#${gradientId})` + : undefined; + const circleStyleForStack = getCircleStyle( + gapDegree, + gapPosition, + stackPtg, + stepPtg, + perimeter, + perimeterWithoutGap, + rotateDeg, + color, + 'butt', + strokeWidth, + stepSpace + ); + stackPtg += + ((perimeterWithoutGap - + circleStyleForStack.strokeDashoffset + + stepSpace) * + MAX_PERCENT) / + perimeterWithoutGap; + + return ( + { + paths[index] = elem; + }} + /> + ); + }); + }; + + return ( + + {gradient && ( + + + {Object.keys(gradient) + .sort( + (a, b) => + stripPercentToNumber(a) - + stripPercentToNumber(b) + ) + .map((key, index) => ( + + ))} + + + )} + {!stepCount && ( + + )} + {stepCount ? getStepStrokeList() : getStrokeList()} + + ); +}; + +export default OcCircle; diff --git a/src/components/Progress/Internal/OcLine.tsx b/src/components/Progress/Internal/OcLine.tsx new file mode 100644 index 000000000..3860d1a02 --- /dev/null +++ b/src/components/Progress/Internal/OcLine.tsx @@ -0,0 +1,100 @@ +import React, { FC } from 'react'; +import type { BaseStrokeColorType, OcProgressProps } from './OcProgress.types'; +import { MAX_PERCENT, useTransitionDuration } from './Common'; +import { mergeClasses } from '../../../shared/utilities'; + +import styles from '../progress.module.scss'; + +const OcLine: FC = ({ + classNames, + percent = 0, + strokeColor = 'var(--primary-color-60)', + strokeLinecap = 'round', + strokeWidth = 1, + style, + trailColor = 'var(--accent-color-10)', + trailWidth = 1, + transition, + ...rest +}) => { + const percentList: number[] = Array.isArray(percent) ? percent : [percent]; + const strokeColorList: BaseStrokeColorType[] = Array.isArray(strokeColor) + ? strokeColor + : [strokeColor]; + const paths: SVGPathElement[] = useTransitionDuration(); + const center: number = strokeWidth / 2; + const right: number = MAX_PERCENT - strokeWidth / 2; + const pathString: string = `M ${ + strokeLinecap === 'round' ? center : 0 + },${center} + L ${strokeLinecap === 'round' ? right : MAX_PERCENT},${center}`; + const viewBoxString: string = `0 0 100 ${strokeWidth}`; + + let stackPtg: number = 0; + + return ( + + + {percentList.map((ptg, index) => { + let dashPercent = 1; + switch (strokeLinecap) { + case 'round': + dashPercent = 1 - strokeWidth / MAX_PERCENT; + break; + case 'square': + dashPercent = 1 - strokeWidth / 2 / MAX_PERCENT; + break; + default: + dashPercent = 1; + break; + } + const pathStyle = { + strokeDasharray: `${ptg * dashPercent}px, 100px`, + strokeDashoffset: `-${stackPtg}px`, + transition: + transition || + 'stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear', + }; + const color = + strokeColorList[index] || + strokeColorList[strokeColorList.length - 1]; + stackPtg += ptg; + return ( + { + // https://reactjs.org/docs/refs-and-the-dom.html#callback-refs + // React will call the ref callback with the DOM element when the component mounts, + // and call it with `null` when it unmounts. + // Refs are guaranteed to be up-to-date before componentDidMount or componentDidUpdate fires. + + paths[index] = elem; + }} + style={pathStyle} + /> + ); + })} + + ); +}; + +export default OcLine; diff --git a/src/components/Progress/Internal/OcProgress.types.ts b/src/components/Progress/Internal/OcProgress.types.ts new file mode 100644 index 000000000..dc0bd0480 --- /dev/null +++ b/src/components/Progress/Internal/OcProgress.types.ts @@ -0,0 +1,68 @@ +export type BaseStrokeColorType = string | Record; +export type GapPositionType = 'top' | 'right' | 'bottom' | 'left'; +export type StrokeColorType = BaseStrokeColorType | BaseStrokeColorType[]; +export type StrokeLinecapType = 'round' | 'butt' | 'square'; + +export interface OcProgressProps { + /** + * The Progress class names. + */ + classNames?: string; + /** + * The gap degree of the half circle. + * @default 75 + */ + gapDegree?: number; + /** + * The gap position, options: 'top' 'bottom' 'left' 'right'. + * @default 'bottom' + */ + gapPosition?: GapPositionType | null; + /** + * The Progress id. + */ + id?: string; + /** + * The Progress click event handler. + */ + onClick?: React.MouseEventHandler; + /** + * The Progress completion percentage. + * @default 0 + */ + percent?: number | number[]; + /** + * The total step count. + */ + steps?: number | { count: number; space: number }; + /** + * The color of the Progress stroke. + */ + strokeColor?: StrokeColorType; + /** + * Sets the style of the Progress linecap. + * @default 'round' + */ + strokeLinecap?: StrokeLinecapType; + /** + * Sets the width of the Progress bar, unit: px. + * @default 6 + */ + strokeWidth?: number; + /** + * The Progress styles. + */ + style?: React.CSSProperties; + /** + * The color of the unfilled part. + */ + trailColor?: string; + /** + * Sets the width of unfilled part, unit: px. + */ + trailWidth?: number; + /** + * The stroke transition animation. + */ + transition?: string; +} diff --git a/src/components/Progress/Internal/Tests/__snapshots__/index.test.js.snap b/src/components/Progress/Internal/Tests/__snapshots__/index.test.js.snap new file mode 100644 index 000000000..b4dab4789 --- /dev/null +++ b/src/components/Progress/Internal/Tests/__snapshots__/index.test.js.snap @@ -0,0 +1,11755 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Progress Diff OcLine shape 1`] = ` +LoadedCheerio { + "0": Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-line", + "preserveAspectRatio": "none", + "viewBox": "0 0 100 1", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke-dasharray: 20px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke-dasharray: 20px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object {}, + "children": Array [], + "name": "br", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "progress-line", + "preserveAspectRatio": "none", + "viewBox": "0 0 100 1", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke-dasharray: 19.8px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke-dasharray: 19.8px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object {}, + "children": Array [], + "name": "br", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "progress-line", + "preserveAspectRatio": "none", + "viewBox": "0 0 100 1", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke-dasharray: 19.9px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke-dasharray: 19.9px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + }, + Node { + "attribs": Object {}, + "children": Array [], + "name": "br", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "progress-line", + "preserveAspectRatio": "none", + "viewBox": "0 0 100 1", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke-dasharray: 19.8px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke-dasharray: 19.8px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object {}, + "children": Array [], + "name": "br", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "progress-line", + "preserveAspectRatio": "none", + "viewBox": "0 0 100 1", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke-dasharray: 19.9px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke-dasharray: 19.9px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line", + "preserveAspectRatio": "none", + "viewBox": "0 0 100 1", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke-dasharray: 20px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke-dasharray: 20px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + Node { + "attribs": Object { + "class": "progress-line", + "preserveAspectRatio": "none", + "viewBox": "0 0 100 1", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke-dasharray: 19.8px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke-dasharray: 19.8px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object {}, + "children": Array [], + "name": "br", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "progress-line", + "preserveAspectRatio": "none", + "viewBox": "0 0 100 1", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke-dasharray: 19.9px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke-dasharray: 19.9px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [], + "name": "br", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line", + "preserveAspectRatio": "none", + "viewBox": "0 0 100 1", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke-dasharray: 20px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke-dasharray: 20px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + }, + Node { + "attribs": Object {}, + "children": Array [], + "name": "br", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "progress-line", + "preserveAspectRatio": "none", + "viewBox": "0 0 100 1", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke-dasharray: 19.9px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke-dasharray: 19.9px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line", + "preserveAspectRatio": "none", + "viewBox": "0 0 100 1", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke-dasharray: 19.8px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke-dasharray: 19.8px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [], + "name": "br", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line", + "preserveAspectRatio": "none", + "viewBox": "0 0 100 1", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke-dasharray: 20px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke-dasharray: 20px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + Node { + "attribs": Object { + "class": "progress-line", + "preserveAspectRatio": "none", + "viewBox": "0 0 100 1", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke-dasharray: 19.9px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke-dasharray: 19.9px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [], + "name": "br", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line", + "preserveAspectRatio": "none", + "viewBox": "0 0 100 1", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke-dasharray: 19.8px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke-dasharray: 19.8px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0.5,0.5 + L 99.5,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [], + "name": "br", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line", + "preserveAspectRatio": "none", + "viewBox": "0 0 100 1", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke-dasharray: 20px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-line-path", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--primary-color-60)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke-dasharray: 20px, 100px; stroke-dashoffset: -0px; transition: stroke-dashoffset 0.3s ease 0s, stroke-dasharray .3s ease 0s, stroke 0.3s linear; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-line-trail", + "d": "M 0,0.5 + L 100,0.5", + "fill-opacity": "0", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "d": undefined, + "fill-opacity": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "preserveAspectRatio": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": Node { + "children": Array [ + [Circular], + ], + "name": "root", + "next": null, + "parent": null, + "prev": null, + "type": "root", + }, + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "_root": LoadedCheerio { + "0": Node { + "children": Array [ + Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object {}, + "children": Array [], + "name": "head", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object {}, + "children": Array [], + "name": "body", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + Node { + "attribs": Object {}, + "children": Array [], + "name": "body", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [], + "name": "head", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + ], + "name": "html", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + ], + "name": "root", + "next": null, + "parent": null, + "prev": null, + "type": "root", + "x-mode": "quirks", + }, + "_root": [Circular], + "length": 1, + "options": Object { + "decodeEntities": true, + "xml": false, + }, + }, + "length": 1, + "options": Object { + "decodeEntities": true, + "xml": false, + }, +} +`; + +exports[`Progress OcCircle should gradient works and circles have different gradient IDs 1`] = ` +LoadedCheerio { + "0": Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "id": "circle--gradient", + "x1": "100%", + "x2": "0%", + "y1": "0%", + "y2": "0%", + }, + "children": Array [ + Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + ], + "name": "linearGradient", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + "x-attribsPrefix": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + }, + ], + "name": "defs", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke": "url(#circle--gradient)", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 34.41592653589794; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke": "url(#circle--gradient)", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 34.41592653589794; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "id": "circle--gradient", + "x1": "100%", + "x2": "0%", + "y1": "0%", + "y2": "0%", + }, + "children": Array [ + Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + ], + "name": "linearGradient", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + "x-attribsPrefix": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + }, + ], + "name": "defs", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke": "url(#circle--gradient)", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 34.41592653589794; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "id": "circle--gradient", + "x1": "100%", + "x2": "0%", + "y1": "0%", + "y2": "0%", + }, + "children": Array [ + Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + ], + "name": "linearGradient", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + "x-attribsPrefix": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + }, + ], + "name": "defs", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "id": "circle--gradient", + "x1": "100%", + "x2": "0%", + "y1": "0%", + "y2": "0%", + }, + "children": Array [ + Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + ], + "name": "linearGradient", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + "x-attribsPrefix": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + }, + ], + "name": "defs", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke": "url(#circle--gradient)", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 34.41592653589794; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke": "url(#circle--gradient)", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 34.41592653589794; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "id": "circle--gradient", + "x1": "100%", + "x2": "0%", + "y1": "0%", + "y2": "0%", + }, + "children": Array [ + Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + ], + "name": "linearGradient", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + "x-attribsPrefix": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + }, + ], + "name": "defs", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke": "url(#circle--gradient)", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 34.41592653589794; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "id": "circle--gradient", + "x1": "100%", + "x2": "0%", + "y1": "0%", + "y2": "0%", + }, + "children": Array [ + Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + ], + "name": "linearGradient", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + "x-attribsPrefix": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + }, + ], + "name": "defs", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "id": "circle--gradient", + "x1": "100%", + "x2": "0%", + "y1": "0%", + "y2": "0%", + }, + "children": Array [ + Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + ], + "name": "linearGradient", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + "x-attribsPrefix": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + }, + ], + "name": "defs", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke": "url(#circle--gradient)", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 34.41592653589794; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke": "url(#circle--gradient)", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 34.41592653589794; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "id": "circle--gradient", + "x1": "100%", + "x2": "0%", + "y1": "0%", + "y2": "0%", + }, + "children": Array [ + Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + ], + "name": "linearGradient", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + "x-attribsPrefix": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + }, + ], + "name": "defs", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke": "url(#circle--gradient)", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 34.41592653589794; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "id": "circle--gradient", + "x1": "100%", + "x2": "0%", + "y1": "0%", + "y2": "0%", + }, + "children": Array [ + Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + ], + "name": "linearGradient", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + "x-attribsPrefix": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + }, + ], + "name": "defs", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "id": "circle--gradient", + "x1": "100%", + "x2": "0%", + "y1": "0%", + "y2": "0%", + }, + "children": Array [ + Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + ], + "name": "linearGradient", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + "x-attribsPrefix": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + }, + ], + "name": "defs", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke": "url(#circle--gradient)", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 34.41592653589794; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke": "url(#circle--gradient)", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 34.41592653589794; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "id": "circle--gradient", + "x1": "100%", + "x2": "0%", + "y1": "0%", + "y2": "0%", + }, + "children": Array [ + Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + ], + "name": "linearGradient", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + "x-attribsPrefix": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + }, + ], + "name": "defs", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke": "url(#circle--gradient)", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 34.41592653589794; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 314.1592653589793px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "id": "circle--gradient", + "x1": "100%", + "x2": "0%", + "y1": "0%", + "y2": "0%", + }, + "children": Array [ + Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + Node { + "attribs": Object { + "offset": "100%", + "stop-color": "#87d068", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "offset": "0%", + "stop-color": "#108ee9", + }, + "children": Array [], + "name": "stop", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "offset": undefined, + "stop-color": undefined, + }, + "x-attribsPrefix": Object { + "offset": undefined, + "stop-color": undefined, + }, + }, + ], + "name": "linearGradient", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + "x-attribsPrefix": Object { + "id": undefined, + "x1": undefined, + "x2": undefined, + "y1": undefined, + "y2": undefined, + }, + }, + ], + "name": "defs", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": Node { + "children": Array [ + [Circular], + ], + "name": "root", + "next": null, + "parent": null, + "prev": null, + "type": "root", + }, + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "_root": LoadedCheerio { + "0": Node { + "children": Array [ + Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object {}, + "children": Array [], + "name": "head", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object {}, + "children": Array [], + "name": "body", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + Node { + "attribs": Object {}, + "children": Array [], + "name": "body", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [], + "name": "head", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + ], + "name": "html", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + ], + "name": "root", + "next": null, + "parent": null, + "prev": null, + "type": "root", + "x-mode": "quirks", + }, + "_root": [Circular], + "length": 1, + "options": Object { + "decodeEntities": true, + "xml": false, + }, + }, + "length": 1, + "options": Object { + "decodeEntities": true, + "xml": false, + }, +} +`; + +exports[`Progress OcCircle should show right gapPosition 1`] = ` +LoadedCheerio { + "0": Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 180.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 180.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "butt", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "butt", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 180.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 180.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "butt", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "butt", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 180.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 180.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "butt", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "butt", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 180.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 180.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "butt", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "butt", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 180.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 180.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "butt", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "butt", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "butt", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "butt", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "butt", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 180.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "round", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 180.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "round", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(35deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(215deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(125deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle", + "viewBox": "0 0 100 100", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "progress-circle-path", + "cx": "50", + "cy": "50", + "opacity": "1", + "r": "50", + "stroke-linecap": "square", + "stroke-width": "6", + "style": "stroke: var(--primary-color-60); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 177.15091907742445; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0; transition-duration: .3s, .3s, .3s, .06s;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "progress-circle-trail", + "cx": "50", + "cy": "50", + "r": "50", + "stroke": "var(--accent-color-10)", + "stroke-linecap": "square", + "stroke-width": "1", + "style": "stroke: var(--accent-color-10); stroke-dasharray: 253.0727415391778px 314.1592653589793; stroke-dashoffset: 0; transform: rotate(305deg); transform-origin: 50% 50%; transition: stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s; fill-opacity: 0;", + }, + "children": Array [], + "name": "circle", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "r": undefined, + "stroke": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "cx": undefined, + "cy": undefined, + "opacity": undefined, + "r": undefined, + "stroke-linecap": undefined, + "stroke-width": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": Node { + "children": Array [ + [Circular], + ], + "name": "root", + "next": null, + "parent": null, + "prev": null, + "type": "root", + }, + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "_root": LoadedCheerio { + "0": Node { + "children": Array [ + Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object {}, + "children": Array [], + "name": "head", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object {}, + "children": Array [], + "name": "body", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + Node { + "attribs": Object {}, + "children": Array [], + "name": "body", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [], + "name": "head", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + ], + "name": "html", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + ], + "name": "root", + "next": null, + "parent": null, + "prev": null, + "type": "root", + "x-mode": "quirks", + }, + "_root": [Circular], + "length": 1, + "options": Object { + "decodeEntities": true, + "xml": false, + }, + }, + "length": 1, + "options": Object { + "decodeEntities": true, + "xml": false, + }, +} +`; diff --git a/src/components/Progress/Internal/Tests/index.test.js b/src/components/Progress/Internal/Tests/index.test.js new file mode 100644 index 000000000..05a76f0fd --- /dev/null +++ b/src/components/Progress/Internal/Tests/index.test.js @@ -0,0 +1,260 @@ +/* eslint-disable react/no-render-return-value */ +// eslint-disable-next-line max-classes-per-file +import React from 'react'; +import Enzyme, { mount } from 'enzyme'; +import Adapter from '@wojtekmaj/enzyme-adapter-react-17'; +import { OcCircle, OcLine } from '..'; + +Enzyme.configure({ adapter: new Adapter() }); + +describe('Progress', () => { + describe('OcLine', () => { + test('change with animation', () => { + class Demo extends React.Component { + state = { + percent: '0', + }; + + render() { + const { percent } = this.state; + return ; + } + } + + const line = mount(); + expect(line.state().percent).toBe('0'); + line.setState({ percent: '30' }); + expect(line.state().percent).toBe('30'); + line.unmount(); + }); + }); + + describe('Diff OcLine', () => { + test('shape', () => { + const wrapper = mount( +
+ +
+ +
+ +
+ ); + expect(wrapper.render()).toMatchSnapshot(); + }); + }); + + describe('OcCircle', () => { + test('change with animation', () => { + class Demo extends React.Component { + state = { + percent: '0', + }; + + render() { + const { percent } = this.state; + return ; + } + } + + const circle = mount(); + expect(circle.state().percent).toBe('0'); + circle.setState({ percent: '30' }); + expect(circle.state().percent).toBe('30'); + circle.unmount(); + }); + + test('should gradient works and circles have different gradient IDs', () => { + const wrapper = mount( +
+ + +
+ ); + + expect(wrapper.render()).toMatchSnapshot(); + }); + + test('should show right gapPosition', () => { + const wrapper = mount( +
+ + + + + + +
+ ); + + expect(wrapper.render()).toMatchSnapshot(); + }); + + test('should change strokeColor between gradient and color string correctly', () => { + const gradientColor = { + '0%': '#108ee9', + '100%': '#87d068', + }; + const wrapper = mount(); + expect( + wrapper.find('.progress-circle-path').getDOMNode().style.cssText + ).not.toContain('stroke:'); + wrapper.setProps({ strokeColor: '#eeeeee' }); + expect( + wrapper.find('.progress-circle-path').getDOMNode().style.cssText + ).toContain('stroke: #eeeeee'); + wrapper.setProps({ strokeColor: gradientColor }); + expect( + wrapper.find('.progress-circle-path').getDOMNode().style.cssText + ).not.toContain('stroke:'); + }); + + test('should support ts onClick', () => { + const onClick = jest.fn(); + const wrapper = mount( +
+ + +
+ ); + + wrapper.find('.circle-target').at(0).simulate('click'); + expect(onClick).toHaveBeenCalledTimes(1); + wrapper.find('.line-target').at(0).simulate('click'); + expect(onClick).toHaveBeenCalledTimes(2); + }); + + test('should steps works with no error', () => { + const steps = 4; + const percent = 35; + const wrapper = mount( + + ); + + expect(wrapper.find('.progress-circle-path')).toHaveLength(steps); + expect( + wrapper.find('.progress-circle-path').at(0).getDOMNode().style + .cssText + ).toContain('stroke: red;'); + expect( + wrapper.find('.progress-circle-path').at(1).getDOMNode().style + .cssText + ).toContain('stroke: grey;'); + + wrapper.setProps({ + strokeColor: { + '0%': '#108ee9', + '100%': '#87d068', + }, + }); + expect( + wrapper.find('.progress-circle-path').at(0).props().stroke + ).toContain('url('); + }); + test('should steps works with gap', () => { + const wrapper = mount( + + ); + expect(wrapper.find('.progress-circle-path')).toHaveLength(5); + expect( + wrapper.find('.progress-circle-path').at(0).getDOMNode().style + .cssText + ).toContain('transform: rotate(120deg);'); + }); + }); + + test('should support percentage array changes', () => { + class Demo extends React.Component { + state = { + subPathsCount: 2, + }; + + render() { + const { subPathsCount } = this.state; + const percent = 80; + const multiPercentage = new Array(subPathsCount).fill( + percent / subPathsCount, + 0, + subPathsCount + ); + + return ( + <> + + + + ); + } + } + + const circle = mount(); + expect(circle.find(OcCircle).props().percent).toEqual([40, 40]); + circle.setState({ subPathsCount: 4 }); + expect(circle.find(OcCircle).props().percent).toEqual([20, 20, 20, 20]); + circle.unmount(); + }); +}); diff --git a/src/components/Progress/Internal/index.ts b/src/components/Progress/Internal/index.ts new file mode 100644 index 000000000..19782d176 --- /dev/null +++ b/src/components/Progress/Internal/index.ts @@ -0,0 +1,6 @@ +import OcLine from './OcLine'; +import OcCircle from './OcCircle'; + +export type { OcProgressProps } from './OcProgress.types'; +export { OcCircle, OcLine }; +export default { OcCircle, OcLine }; diff --git a/src/components/Progress/Line.tsx b/src/components/Progress/Line.tsx new file mode 100644 index 000000000..39f8d1e39 --- /dev/null +++ b/src/components/Progress/Line.tsx @@ -0,0 +1,270 @@ +import React, { FC, useLayoutEffect, useRef } from 'react'; +import { LineProps, ProgressSize } from './Progress.types'; +import type { ProgressGradient, StringGradients } from './Progress.types'; +import { getSuccessPercent, validProgress } from './Utils'; +import type { DirectionType } from '../ConfigProvider'; +import { ResizeObserver } from '../../shared/ResizeObserver/ResizeObserver'; + +import styles from './progress.module.scss'; + +/** + * @example + * { + * "0%": "#afc163", + * "75%": "#009900", + * "50%": "green", // ====> '#afc163 0%, #66FF00 25%, #00CC00 50%, #009900 75%, #ffffff 100%' + * "25%": "#66FF00", + * "100%": "#ffffff" + * } + */ +export const sortGradient = (gradients: StringGradients) => { + let tempArr: any[] = []; + Object.keys(gradients).forEach((key) => { + const formattedKey = parseFloat(key.replace(/%/g, '')); + if (!isNaN(formattedKey)) { + tempArr.push({ + key: formattedKey, + value: gradients[key], + }); + } + }); + tempArr = tempArr.sort((a, b) => a.key - b.key); + return tempArr.map(({ key, value }) => `${value} ${key}%`).join(', '); +}; + +/** + * @example + * { + * "0%": "#afc163", + * "25%": "#66FF00", + * "50%": "#00CC00", // ====> linear-gradient(to right, #afc163 0%, #66FF00 25%, + * "75%": "#009900", // #00CC00 50%, #009900 75%, #ffffff 100%) + * "100%": "#ffffff" + * } + */ +export const handleGradient = ( + strokeColor: ProgressGradient, + directionConfig?: DirectionType +) => { + const { + from = 'var(--primary-color)', + to = 'var(--primary-color)', + direction = directionConfig === 'rtl' ? 'to left' : 'to right', + ...rest + } = strokeColor; + if (Object.keys(rest).length !== 0) { + const sortedGradients = sortGradient(rest as StringGradients); + return { + backgroundImage: `linear-gradient(${direction}, ${sortedGradients})`, + }; + } + return { backgroundImage: `linear-gradient(${direction}, ${from}, ${to})` }; +}; + +const Line: FC = (props) => { + const { + children, + direction: directionConfig, + maxLabelRef, + minLabelRef, + percent, + showLabels, + showSuccessLabel, + showValueLabel, + size, + strokeColor, + strokeLinecap = 'round', + strokeWidth, + success, + successLabelRef, + trailColor = null, + valueLabelRef, + } = props; + + const progressBgRef: React.MutableRefObject = + useRef(null); + const successSegmentRef: React.MutableRefObject = + useRef(null); + + const backgroundProps = + strokeColor && typeof strokeColor !== 'string' + ? handleGradient(strokeColor, directionConfig) + : { + background: typeof strokeColor === 'string' && strokeColor, + }; + + const borderRadius = + strokeLinecap === 'square' || strokeLinecap === 'butt' ? 0 : undefined; + const trailStyle = { + backgroundColor: trailColor || undefined, + borderRadius, + }; + + const percentStyle = { + width: `${validProgress(percent)}%`, + height: strokeWidth || (size === ProgressSize.Small ? 2 : 4), + borderRadius, + ...backgroundProps, + }; + + const successPercent = getSuccessPercent(props); + + const successPercentStyle = { + width: `${validProgress(successPercent)}%`, + height: strokeWidth || (size === ProgressSize.Small ? 2 : 4), + borderRadius, + backgroundColor: success?.strokeColor, + }; + + const successSegment = + successPercent !== undefined ? ( +
+ ) : null; + + const updateLayout = (): void => { + // Early exit if there is no ref available yet. The DOM has yet to initialize + // and its not possible to calculate positions. + if (!valueLabelRef?.current || !showValueLabel) { + return; + } + + // Hide the min/max labels if the value labels would collide. + let progressBarOffset: number; + const valueLabelOffset: number = valueLabelRef.current.offsetWidth; + + let showMaxLabel: boolean; + let showMinLabel: boolean; + + if (directionConfig === 'rtl') { + progressBarOffset = progressBgRef.current.offsetWidth; + + showMaxLabel = + showLabels && + valueLabelRef.current.getBoundingClientRect().left > + maxLabelRef.current.getBoundingClientRect().right; + maxLabelRef.current.style.opacity = showMaxLabel ? '1' : '0'; + + showMinLabel = + showLabels && + valueLabelRef.current.getBoundingClientRect().left + + valueLabelOffset < + minLabelRef.current.getBoundingClientRect().left; + minLabelRef.current.style.opacity = showMinLabel ? '1' : '0'; + + valueLabelRef.current.style.right = `${ + progressBarOffset - valueLabelOffset / 2 + }px`; + valueLabelRef.current.style.left = 'unset'; + } else { + progressBarOffset = + progressBgRef.current.getBoundingClientRect().right; + showMaxLabel = + showLabels && + valueLabelRef.current.getBoundingClientRect().left + + valueLabelOffset < + maxLabelRef.current.getBoundingClientRect().left; + maxLabelRef.current.style.opacity = showMaxLabel ? '1' : '0'; + + showMinLabel = + showLabels && + valueLabelRef.current.getBoundingClientRect().left > + minLabelRef.current.getBoundingClientRect().right; + minLabelRef.current.style.opacity = showMinLabel ? '1' : '0'; + + valueLabelRef.current.style.left = `${ + progressBarOffset - valueLabelOffset + }px`; + valueLabelRef.current.style.right = 'unset'; + } + + if (!successLabelRef?.current || !showSuccessLabel) { + return; + } + + let successBarOffset: number; + const successLabelOffset: number = successLabelRef.current.offsetWidth; + + let showValLabel: boolean; + + if (directionConfig === 'rtl') { + successBarOffset = successSegmentRef.current.offsetWidth; + + showMaxLabel = + showLabels && + successLabelRef.current.getBoundingClientRect().left > + maxLabelRef.current.getBoundingClientRect().right; + maxLabelRef.current.style.opacity = showMaxLabel ? '1' : '0'; + + showMinLabel = + showLabels && + successLabelRef.current.getBoundingClientRect().left + + valueLabelOffset < + minLabelRef.current.getBoundingClientRect().left; + minLabelRef.current.style.opacity = showMinLabel ? '1' : '0'; + + showValLabel = + showLabels && + successLabelRef.current.getBoundingClientRect().left > + valueLabelRef.current.getBoundingClientRect().right; + valueLabelRef.current.style.opacity = showValLabel ? '1' : '0'; + + successLabelRef.current.style.right = `${ + successBarOffset - successLabelOffset / 2 + }px`; + successLabelRef.current.style.left = 'unset'; + } else { + successBarOffset = + successSegmentRef.current.getBoundingClientRect().right; + showMaxLabel = + showLabels && + successLabelRef.current.getBoundingClientRect().left + + successLabelOffset < + maxLabelRef.current.getBoundingClientRect().left; + maxLabelRef.current.style.opacity = showMaxLabel ? '1' : '0'; + + showMinLabel = + showLabels && + successLabelRef.current.getBoundingClientRect().left > + minLabelRef.current.getBoundingClientRect().right; + minLabelRef.current.style.opacity = showMinLabel ? '1' : '0'; + + showValLabel = + showLabels && + successLabelRef.current.getBoundingClientRect().left + + successLabelOffset < + valueLabelRef.current.getBoundingClientRect().left; + valueLabelRef.current.style.opacity = showValLabel ? '1' : '0'; + + successLabelRef.current.style.left = `${ + successBarOffset - successLabelOffset + }px`; + successLabelRef.current.style.right = 'unset'; + } + }; + + useLayoutEffect(() => { + updateLayout(); + }, [showLabels, showValueLabel, success]); + + return ( + +
+
+
+ {successSegment} +
+
+ {children} + + ); +}; + +export default Line; diff --git a/src/components/Progress/Progress.stories.tsx b/src/components/Progress/Progress.stories.tsx new file mode 100644 index 000000000..69be01e58 --- /dev/null +++ b/src/components/Progress/Progress.stories.tsx @@ -0,0 +1,367 @@ +import React, { useState } from 'react'; +import { Stories } from '@storybook/addon-docs'; +import { ComponentStory, ComponentMeta } from '@storybook/react'; +import Progress, { ProgressSize } from '.'; +import { Stack } from '../Stack'; +import { Tooltip, TooltipTheme } from '../Tooltip'; + +export default { + title: 'Progress', + parameters: { + docs: { + page: (): JSX.Element => ( +
+
+
+

Progress

+

+ Displays the current progress of an operation + flow. If it'll take a long time to complete an + operation, use Progress to show current progress + and status. +

+
+
+ +
+
+
+ ), + }, + }, + argTypes: {}, +} as ComponentMeta; + +const Line_Story: ComponentStory = (args) => { + return ( + + + percent + '%' + ' complete' + } + hideMax + /> + + + + + + + + ); +}; + +const Small_Line_Story: ComponentStory = (args) => { + return ( + + + + + + + + ); +}; + +const Circle_Story: ComponentStory = (args) => { + return ( + + + + + + ); +}; + +const Small_Circle_Story: ComponentStory = (args) => { + return ( + + + + + + ); +}; + +const Dashboard_Story: ComponentStory = (args) => { + return ( + + + + + ); +}; + +const Line_Cap_Story: ComponentStory = (args) => { + return ( + + + + + + ); +}; + +const Steps_Story: ComponentStory = (args) => { + return ( + + + + + + + + ); +}; + +const Success_Segment_Story: ComponentStory = (args) => { + return ( + + + + +
+ + + +
+
+ + + +
+
+ ); +}; + +const Gradient_Story: ComponentStory = (args) => { + return ( + + + + + + + ); +}; + +export const Line = Line_Story.bind({}); +export const Small_Line = Small_Line_Story.bind({}); +export const Circle = Circle_Story.bind({}); +export const Small_Circle = Small_Circle_Story.bind({}); +export const Dashboard = Dashboard_Story.bind({}); +export const Line_Cap = Line_Cap_Story.bind({}); +export const Steps = Steps_Story.bind({}); +export const Success_Segment = Success_Segment_Story.bind({}); +export const Gradient = Gradient_Story.bind({}); + +const progressArgs: Object = { + classNames: 'my-progress', + gapDegree: null, + gapPosition: null, + hideMax: false, + hideMin: false, + percent: 0, + showLabels: true, + showPercentSymbol: true, + showSuccessLabel: false, + showValueLabel: false, + size: ProgressSize.Medium, +}; + +Line.args = { + ...progressArgs, +}; + +Small_Line.args = { + ...progressArgs, +}; + +Circle.args = { + ...progressArgs, +}; + +Small_Circle.args = { + ...progressArgs, +}; + +Dashboard.args = { + ...progressArgs, +}; + +Line_Cap.args = { + ...progressArgs, +}; + +Steps.args = { + ...progressArgs, +}; + +Success_Segment.args = { + ...progressArgs, +}; + +Gradient.args = { + ...progressArgs, +}; diff --git a/src/components/Progress/Progress.tsx b/src/components/Progress/Progress.tsx new file mode 100644 index 000000000..a5302f739 --- /dev/null +++ b/src/components/Progress/Progress.tsx @@ -0,0 +1,327 @@ +import React, { FC, Ref, useRef } from 'react'; +import Circle from './Circle'; +import Line from './Line'; +import Steps from './Steps'; +import { + ProgressProps, + ProgressSize, + ProgressStatuses, + StringGradients, +} from './Progress.types'; +import { getSuccessPercent, validProgress } from './Utils'; +import { MAX_PERCENT } from './Internal/Common'; +import { DirectionType } from '../ConfigProvider'; +import { Icon, IconName, IconSize } from '../Icon'; +import { useCanvasDirection } from '../../hooks/useCanvasDirection'; +import { mergeClasses, omit } from '../../shared/utilities'; + +import styles from './progress.module.scss'; + +const Progress: FC = React.forwardRef( + (props: ProgressProps, ref: Ref) => { + const { + classNames, + hideMax = false, + hideMin = false, + maxLabel, + minLabel, + percent = 0, + showLabels = true, + showPercentSymbol = true, + showSuccessLabel = false, + showValueLabel = false, + size = ProgressSize.Medium, + steps, + stepWidth, + strokeColor, + successLabel, + type = 'line', + width, + ...rest + } = props; + + const htmlDir: string = useCanvasDirection(); + + const maxLabelRef: React.MutableRefObject = + useRef(null); + const minLabelRef: React.MutableRefObject = + useRef(null); + const successLabelRef: React.MutableRefObject = + useRef(null); + const valueLabelRef: React.MutableRefObject = + useRef(null); + + const getPercentNumber = (): number => { + const successPercent = getSuccessPercent(props); + return parseInt( + successPercent !== undefined + ? successPercent.toString() + : percent.toString(), + 10 + ); + }; + + const getProgressStatus = (): + | 'success' + | 'normal' + | 'exception' + | 'active' => { + const { status } = props; + if ( + ProgressStatuses.indexOf(status!) < 0 && + getPercentNumber() >= MAX_PERCENT + ) { + return 'success'; + } + return status || 'normal'; + }; + + const renderProcessInfo = ( + progressStatus: typeof ProgressStatuses[number] + ): JSX.Element => { + const { format } = props; + const successPercent = getSuccessPercent(props); + if (!showLabels) { + return null; + } + let text; + const textFormatter = + format || + ((percentNumber) => + showPercentSymbol ? `${percentNumber}%` : percentNumber); + const isLineType: boolean = type === 'line'; + if ( + format || + (progressStatus !== 'exception' && progressStatus !== 'success') + ) { + text = textFormatter( + validProgress(percent), + validProgress(successPercent) + ); + } else if (progressStatus === 'exception') { + text = isLineType ? ( + + ) : ( + + ); + } else if (progressStatus === 'success') { + text = isLineType ? ( + + ) : ( + + ); + } + return ( + <> + {type === 'line' && ( +
+ + {!hideMin && !showValueLabel && text} + {!hideMin && + !minLabel && + showValueLabel && + (showPercentSymbol ? '0%' : '0')} + {!hideMin && + minLabel && + showValueLabel && + minLabel} + + + {!hideMax && + !maxLabel && + (showPercentSymbol ? '100%' : '100')} + {!hideMax && maxLabel && maxLabel} + + + {showValueLabel && text} + + + {showSuccessLabel && + !successLabel && + (showPercentSymbol + ? `${successPercent}%` + : `${successPercent}`)} + {showSuccessLabel && + successLabel && + successLabel} + +
+ )} + {type !== 'line' && ( + + {text} + + )} + + ); + }; + + const progressStatus: 'success' | 'normal' | 'exception' | 'active' = + getProgressStatus(); + const progressInfo: JSX.Element = renderProcessInfo(progressStatus); + const strokeColorNotArray: + | string + | ({ + direction?: string; + } & StringGradients) = Array.isArray(strokeColor) + ? strokeColor[0] + : strokeColor; + const strokeColorNotGradient: string | string[] = + typeof strokeColor === 'string' || Array.isArray(strokeColor) + ? strokeColor + : undefined; + + let progress; + + if (type === 'line') { + progress = steps ? ( + + {progressInfo} + + ) : ( + + {progressInfo} + + ); + } else if (type === 'circle' || type === 'dashboard') { + progress = ( + + {progressInfo} + + ); + } + + const progressClassNames: string = mergeClasses([ + styles.progress, + (styles as any)[ + `progress-${ + (type === 'dashboard' && 'circle') || + (steps && 'steps') || + type + }` + ], + (styles as any)[`progress-status-${progressStatus}`], + { [styles.progressSmall]: size === 'small' }, + { [styles.progressRtl]: htmlDir === 'rtl' }, + classNames, + ]); + + return ( +
+ {progress} +
+ ); + } +); + +export default Progress; diff --git a/src/components/Progress/Progress.types.ts b/src/components/Progress/Progress.types.ts new file mode 100644 index 000000000..48a65feac --- /dev/null +++ b/src/components/Progress/Progress.types.ts @@ -0,0 +1,245 @@ +import { DirectionType } from '../ConfigProvider'; +import { OcBaseProps } from '../OcBase'; +import type { GapPositionType } from './Internal/OcProgress.types'; +import { tuple } from '../../shared/utilities'; + +const ProgressTypes = tuple('line', 'circle', 'dashboard'); +export type ProgressType = typeof ProgressTypes[number]; +export const ProgressStatuses = tuple( + 'normal', + 'exception', + 'active', + 'success' +); +export type StringGradients = { [percentage: string]: string }; +type FromToGradients = { from: string; to: string }; +export type ProgressGradient = { direction?: string } & ( + | StringGradients + | FromToGradients +); + +export enum ProgressSize { + Medium = 'medium', + Small = 'small', +} + +export interface ProgressProps extends OcBaseProps { + /** + * The Progress render. + */ + children?: React.ReactNode; + /** + * The Progress class names. + */ + classNames?: string; + /** + * The Progress value label function. + * Used by minLabel or valueLabel. + */ + format?: (percent?: number, successPercent?: number) => React.ReactNode; + /** + * The gap degree of the half circle. + * @default 75 + */ + gapDegree?: number; + /** + * The gap position, options: 'top' 'bottom' 'left' 'right'. + * @default 'bottom' + */ + gapPosition?: GapPositionType | null; + /** + * Hide the maximum value of Progress. + * @default false + */ + hideMax?: boolean; + /** + * Hide the minimum value of Progress. + * @default false + */ + hideMin?: boolean; + /** + * The custom maximum value label of Progress. + */ + maxLabel?: string; + /** + * The custom minimum value label of Progress. + * Use when showValueLabel is true. + */ + minLabel?: string; + /** + * The Progress completion percentage. + * @default 0 + */ + percent?: number; + /** + * Whether the labels are visible or not + * @default true + */ + showLabels?: boolean; + /** + * Whether the percent symbol is displayed. + * @default true + */ + showPercentSymbol?: boolean; + /** + * When Progress success prop is used, display the success value label + * @default false + */ + showSuccessLabel?: boolean; + /** + * Display the value label + * @default false + */ + showValueLabel?: boolean; + /** + * The Progress size. + * @default ProgressSize.Medium + */ + size?: ProgressSize; + /** + * The status of the Progress Line component. + * options: 'success', 'exception', 'normal', 'active' + */ + status?: typeof ProgressStatuses[number]; + /** + * The number of steps to display. + */ + steps?: number; + /** + * Sets a single absolute pixel width for steps. + */ + stepWidth?: number; + /** + * The color of the Progress stroke. + */ + strokeColor?: string | string[] | ProgressGradient; + /** + * Sets the style of the Progress linecap. + * @default 'round' + */ + strokeLinecap?: 'butt' | 'square' | 'round'; + /** + * Sets the width of the Progress bar, unit: px. + * @default 6 + */ + strokeWidth?: number; + /** + * The Progress styles. + */ + style?: React.CSSProperties; + /** + * The Progress success segment configuration. + */ + success?: SuccessProps; + /** + * The custom success segment value label of Progress. + */ + successLabel?: string; + /** + * The color of the unfilled part. + */ + trailColor?: string | null; + /** + * The type of Progress + * @default 'line' + */ + type?: ProgressType; + /** + * The Progress component width. + */ + width?: number; +} + +export interface SuccessProps { + /** + * The success percent. + */ + percent?: number; + /** + * The color of the success segment stroke. + */ + strokeColor?: string; +} + +export interface ProgressStepsProps extends ProgressProps { + /** + * The current canvas direction. + */ + direction?: DirectionType; + /** + * The max label ref passed down from Progress to Steps. + */ + maxLabelRef?: React.MutableRefObject; + /** + * The min label ref passed down from Progress to Steps. + */ + minLabelRef?: React.MutableRefObject; + /** + * The Progress size. + * @default ProgressSize.Medium + */ + size?: ProgressSize; + /** + * The number of steps to display. + */ + steps: number; + /** + * The color of the Progress stroke. + */ + strokeColor?: string | string[]; + /** + * The color of the unfilled part. + */ + trailColor?: string; + /** + * The value label ref passed down from Progress to Steps. + */ + valueLabelRef?: React.MutableRefObject; +} + +export interface CircleProps extends ProgressProps { + /** + * The Progress Circle render. + */ + children: React.ReactNode; + /** + * The status of the Progress Circle component. + * options: 'success', 'exception', 'normal', 'active' + */ + progressStatus: string; + /** + * The color of the Progress stroke. + */ + strokeColor?: string | ProgressGradient; +} + +export interface LineProps extends ProgressProps { + /** + * The Progress Line render. + */ + children: React.ReactNode; + /** + * The current canvas direction. + */ + direction?: DirectionType; + /** + * The max label ref passed down from Progress to Line. + */ + maxLabelRef?: React.MutableRefObject; + /** + * The min label ref passed down from Progress to Line. + */ + minLabelRef?: React.MutableRefObject; + /** + * The color of the Progress stroke. + */ + strokeColor?: string | ProgressGradient; + /** + * The success label ref passed down from Progress to Line. + */ + successLabelRef?: React.MutableRefObject; + /** + * The value label ref passed down from Progress to Line. + */ + valueLabelRef?: React.MutableRefObject; +} diff --git a/src/components/Progress/Steps.tsx b/src/components/Progress/Steps.tsx new file mode 100644 index 000000000..7252ae5e0 --- /dev/null +++ b/src/components/Progress/Steps.tsx @@ -0,0 +1,151 @@ +import React, { FC, useEffect, useLayoutEffect, useRef, useState } from 'react'; +import { ProgressStepsProps } from './Progress.types'; +import { MAX_PERCENT } from './Internal/Common'; +import { ResizeObserver } from '../../shared/ResizeObserver/ResizeObserver'; +import { mergeClasses } from '../../shared/utilities'; + +import styles from './progress.module.scss'; + +const STEP_ITEM_MARGIN_OFFSET: number = 4; + +const Steps: FC = (props) => { + const { + children, + direction: directionConfig, + maxLabelRef, + minLabelRef, + percent = 0, + showLabels, + showValueLabel, + size, + steps, + stepWidth, + strokeColor, + strokeWidth = 6, + trailColor = null as any, + valueLabelRef, + } = props; + const [calculatedWidth, setCalculatedWidth] = useState('0'); + const current: number = Math.round(steps * (percent / MAX_PERCENT)); + const styledSteps: React.ReactNode[] = new Array(steps); + const flexContainerRef: React.MutableRefObject = + useRef(null); + const progressBgRef: React.MutableRefObject = + useRef(null); + + for (let i: number = 0; i < steps; ++i) { + const color: string = Array.isArray(strokeColor) + ? strokeColor[i] + : strokeColor; + styledSteps[i] = ( +
+ ); + } + + useEffect(() => { + // Early exit if there is stepWidth via props. + if (stepWidth > 0) { + return; + } + + const flexContainerWidth: number = + flexContainerRef.current?.offsetWidth || 0; + const itemWidth: number = Math.round( + Math.floor(flexContainerWidth / steps) - + STEP_ITEM_MARGIN_OFFSET + + Math.ceil(STEP_ITEM_MARGIN_OFFSET / steps) + ); + + // Calculates the percent width of each item + setCalculatedWidth( + `${(itemWidth / flexContainerWidth) * MAX_PERCENT}%` + ); + }, [steps]); + + const updateLayout = (): void => { + // Early exit if there is no ref available yet. The DOM has yet to initialize + // and its not possible to calculate positions. + if (!valueLabelRef?.current || !showValueLabel) { + return; + } + + // Hide the min/max labels if the value labels would collide. + let progressBarOffset: number; + const valueLabelOffset: number = valueLabelRef.current.offsetWidth; + + let showMaxLabel: boolean; + let showMinLabel: boolean; + + if (directionConfig === 'rtl') { + progressBarOffset = progressBgRef.current.offsetWidth; + + showMaxLabel = + showLabels && + valueLabelRef.current.getBoundingClientRect().left > + maxLabelRef.current.getBoundingClientRect().right; + maxLabelRef.current.style.opacity = showMaxLabel ? '1' : '0'; + + showMinLabel = + showLabels && + valueLabelRef.current.getBoundingClientRect().left + + valueLabelOffset < + minLabelRef.current.getBoundingClientRect().left; + minLabelRef.current.style.opacity = showMinLabel ? '1' : '0'; + + valueLabelRef.current.style.right = `${ + progressBarOffset - valueLabelOffset / 2 + }px`; + valueLabelRef.current.style.left = 'unset'; + } else { + progressBarOffset = + progressBgRef.current.getBoundingClientRect().right; + showMaxLabel = + showLabels && + valueLabelRef.current.getBoundingClientRect().left + + valueLabelOffset < + maxLabelRef.current.getBoundingClientRect().left; + maxLabelRef.current.style.opacity = showMaxLabel ? '1' : '0'; + + showMinLabel = + showLabels && + valueLabelRef.current.getBoundingClientRect().left > + minLabelRef.current.getBoundingClientRect().right; + minLabelRef.current.style.opacity = showMinLabel ? '1' : '0'; + + valueLabelRef.current.style.left = `${ + progressBarOffset - valueLabelOffset + }px`; + valueLabelRef.current.style.right = 'unset'; + } + }; + + useLayoutEffect(() => { + updateLayout(); + }, [showLabels, showValueLabel]); + + return ( + +
+ {styledSteps} +
+ {children} +
+ ); +}; + +export default Steps; diff --git a/src/components/Progress/Styles/rtl.scss b/src/components/Progress/Styles/rtl.scss new file mode 100644 index 000000000..040d08348 --- /dev/null +++ b/src/components/Progress/Styles/rtl.scss @@ -0,0 +1,78 @@ +.progress { + &-rtl { + direction: rtl; + + .progress-success-bg { + border-right: unset; + border-bottom-left-radius: 0; + border-left: 4px solid var(--accent-color-10); + border-top-left-radius: 0; + left: unset; + right: 0; + } + + .progress-text, + .extremity-label { + text-align: right; + + &.max-label { + position: absolute; + left: 0; + right: unset; + text-align: left; + } + + &.min-label { + left: unset; + right: 0; + position: absolute; + } + + &.value-label { + text-align: center; + } + } + + &.progress-steps { + .progress-steps-item { + margin-left: $space-xxs; + margin-right: unset; + } + + .progress-text-wrapper { + position: relative; + } + } + + &.progress-circle { + .progress-text, + .extremity-label { + text-align: center; + } + } + + &.progress-status-active { + .progress-bg:before { + animation: progress-active-rtl 2.4s $motion-easing-easeout + infinite; + } + } + } +} + +@keyframes progress-active-rtl { + 0% { + opacity: 0.1; + transform: translateX(100%) scaleX(0); + } + + 20% { + opacity: 0.5; + transform: translateX(100%) scaleX(0); + } + + 100% { + opacity: 0; + transform: translateX(0) scaleX(1); + } +} diff --git a/src/components/Progress/Tests/__snapshots__/index.test.tsx.snap b/src/components/Progress/Tests/__snapshots__/index.test.tsx.snap new file mode 100644 index 000000000..e4c871b81 --- /dev/null +++ b/src/components/Progress/Tests/__snapshots__/index.test.tsx.snap @@ -0,0 +1,795 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Progress render dashboard 295 gapDegree 1`] = ` +
+
+ + + + + + + 0% + +
+
+`; + +exports[`Progress render dashboard 296 gapDegree 1`] = ` +
+
+ + + + + + + 0% + +
+
+`; + +exports[`Progress render dashboard zero gapDegree 1`] = ` +
+
+ + + + + + + 0% + +
+
+`; + +exports[`Progress render format 1`] = ` +
+
+
+
+
+
+
+
+ + 50 10 + + + 100% + + + +
+
+`; + +exports[`Progress render negative progress 1`] = ` +
+
+
+
+
+
+
+ + 0% + + + 100% + + + +
+
+`; + +exports[`Progress render negative successPercent 1`] = ` +
+
+
+
+
+
+
+
+ + 50% + + + 100% + + + +
+
+`; + +exports[`Progress render normal progress 1`] = ` +
+
+
+
+
+
+
+ + 0% + + + 100% + + + +
+
+`; + +exports[`Progress render out-of-range progress 1`] = ` +
+
+
+
+
+
+
+ + + + + + + + + 100% + + + +
+
+`; + +exports[`Progress render out-of-range progress with info 1`] = ` +
+
+
+
+
+
+
+ + + + + + + + + 100% + + + +
+
+`; + +exports[`Progress render strokeColor 1`] = ` +
+
+ + + + + + + 50% + +
+
+`; + +exports[`Progress render strokeColor 2`] = ` +
+
+
+
+
+
+
+ + 50% + + + 100% + + + +
+
+`; + +exports[`Progress render strokeColor 3`] = ` +
+
+
+
+
+
+
+ + 50% + + + 100% + + + +
+
+`; + +exports[`Progress render successColor progress 1`] = ` +
+
+
+
+
+
+
+
+ + 60% + + + 100% + + + +
+
+`; + +exports[`Progress render successColor progress type="circle" 1`] = ` +
+
+ + + + + + + 60% + +
+
+`; + +exports[`Progress render successColor progress type="dashboard" 1`] = ` +
+
+ + + + + + + 60% + +
+
+`; + +exports[`Progress render trailColor progress 1`] = ` +
+
+
+
+
+
+
+ + 0% + + + 100% + + + +
+
+`; + +exports[`Progress should support steps 1`] = ` +
+
+
+
+
+
+
+ + 0% + + + 100% + + + +
+
+`; + +exports[`Progress steps should have default percent 0 1`] = ` +
+`; diff --git a/src/components/Progress/Tests/index.test.tsx b/src/components/Progress/Tests/index.test.tsx new file mode 100644 index 000000000..356c3031e --- /dev/null +++ b/src/components/Progress/Tests/index.test.tsx @@ -0,0 +1,307 @@ +import React from 'react'; +import Progress from '..'; +import type { ProgressProps } from '..'; +import ProgressSteps from '../Steps'; +import { handleGradient, sortGradient } from '../Line'; +import { render } from '../../../tests/Utilities'; + +describe('Progress', () => { + test('successPercent should decide the progress status when it exists', () => { + const { container: wrapper, rerender } = render( + + ); + expect( + wrapper.querySelectorAll('.progress-status-success') + ).toHaveLength(0); + + rerender(); + expect( + wrapper.querySelectorAll('.progress-status-success') + ).toHaveLength(1); + + rerender(); + expect( + wrapper.querySelectorAll('.progress-status-success') + ).toHaveLength(0); + }); + + test('render out-of-range progress', () => { + const { container: wrapper } = render(); + expect(wrapper.firstChild).toMatchSnapshot(); + }); + + test('render out-of-range progress with info', () => { + const { container: wrapper } = render( + + ); + expect(wrapper.firstChild).toMatchSnapshot(); + }); + + test('render negative progress', () => { + const { container: wrapper } = render(); + expect(wrapper.firstChild).toMatchSnapshot(); + }); + + test('render negative successPercent', () => { + const { container: wrapper } = render( + + ); + expect(wrapper.firstChild).toMatchSnapshot(); + }); + + test('render format', () => { + const { container: wrapper } = render( + + `${percent} ${successPercent}` + } + /> + ); + expect(wrapper.firstChild).toMatchSnapshot(); + }); + + test('render strokeColor', () => { + const { container: wrapper, rerender } = render( + + ); + expect(wrapper.firstChild).toMatchSnapshot(); + rerender( + + ); + expect(wrapper.firstChild).toMatchSnapshot(); + rerender( + + ); + expect(wrapper.firstChild).toMatchSnapshot(); + }); + + test('render normal progress', () => { + const { container: wrapper } = render(); + expect(wrapper.firstChild).toMatchSnapshot(); + }); + + test('render trailColor progress', () => { + const { container: wrapper } = render( + + ); + expect(wrapper.firstChild).toMatchSnapshot(); + }); + + test('render successColor progress', () => { + const { container: wrapper } = render( + + ); + expect(wrapper.firstChild).toMatchSnapshot(); + }); + + test('render successColor progress type="circle"', () => { + const { container: wrapper } = render( + + ); + expect(wrapper.firstChild).toMatchSnapshot(); + }); + + test('render successColor progress type="dashboard"', () => { + const { container: wrapper } = render( + + ); + expect(wrapper.firstChild).toMatchSnapshot(); + }); + + test('render dashboard zero gapDegree', () => { + const { container: wrapper } = render( + + ); + expect(wrapper.firstChild).toMatchSnapshot(); + }); + + test('render dashboard 295 gapDegree', () => { + const { container: wrapper } = render( + + ); + expect(wrapper.firstChild).toMatchSnapshot(); + }); + + test('render dashboard 296 gapDegree', () => { + const { container: wrapper } = render( + + ); + expect(wrapper.firstChild).toMatchSnapshot(); + }); + + test('get correct line-gradient', () => { + expect( + handleGradient({ from: 'test', to: 'test' }).backgroundImage + ).toBe('linear-gradient(to right, test, test)'); + expect(handleGradient({}).backgroundImage).toBe( + 'linear-gradient(to right, var(--primary-color), var(--primary-color))' + ); + expect( + handleGradient({ from: 'test', to: 'test', '0%': 'test' }) + .backgroundImage + ).toBe('linear-gradient(to right, test 0%)'); + }); + + test('sort gradients correctly', () => { + expect( + sortGradient({ '10%': 'test10', '30%': 'test30', '20%': 'test20' }) + ).toBe('test10 10%, test20 20%, test30 30%'); + expect( + sortGradient({ + '10%': 'test10', + '30%': 'test30', + '20%': 'test20', + dummy: 'test', + }) + ).toBe('test10 10%, test20 20%, test30 30%'); + }); + + test('should show success status when percent is 100', () => { + const { container: wrapper } = render(); + expect( + wrapper.querySelectorAll('.progress-status-success') + ).toHaveLength(1); + }); + + test('should show success status when percent is 100 and status is undefined', () => { + const { container: wrapper } = render( + + ); + expect( + wrapper.querySelectorAll('.progress-status-success') + ).toHaveLength(1); + }); + + test('should show success status when status is invalid', () => { + const errorSpy = jest + .spyOn(console, 'error') + .mockImplementation(() => {}); + const { container: wrapper } = render( + + ); + expect( + wrapper.querySelectorAll('.progress-status-success') + ).toHaveLength(1); + errorSpy.mockRestore(); + }); + + test('should support steps', () => { + const { container: wrapper } = render(); + expect(wrapper.firstChild).toMatchSnapshot(); + }); + + test('steps should be changable', () => { + const { container: wrapper, rerender } = render( + + ); + expect( + wrapper.querySelectorAll('.progress-steps-item-active').length + ).toBe(3); + rerender(); + expect( + wrapper.querySelectorAll('.progress-steps-item-active').length + ).toBe(2); + }); + + test('steps should be changable when has strokeColor', () => { + const { container: wrapper, rerender } = render( + + ); + expect( + wrapper.querySelectorAll('.progress-steps-item')[0] + .style.backgroundColor + ).toBe('rgb(24, 144, 255)'); + rerender(); + expect( + wrapper.querySelectorAll('.progress-steps-item')[2] + .style.backgroundColor + ).toBe(''); + expect( + wrapper.querySelectorAll('.progress-steps-item')[1] + .style.backgroundColor + ).toBe('rgb(24, 144, 255)'); + }); + + test('steps should support trailColor', () => { + const { container: wrapper } = render( + + ); + expect( + wrapper.querySelectorAll('.progress-steps-item')[1] + .style.backgroundColor + ).toBe('rgb(24, 144, 238)'); + }); + + test('should display correct step', () => { + const { container: wrapper, rerender } = render( + + ); + expect( + wrapper.querySelectorAll('.progress-steps-item-active').length + ).toBe(2); + rerender(); + expect( + wrapper.querySelectorAll('.progress-steps-item-active').length + ).toBe(3); + rerender(); + expect( + wrapper.querySelectorAll('.progress-steps-item-active').length + ).toBe(4); + }); + + test('steps should have default percent 0', () => { + const { container } = render(); + expect(container.firstChild).toMatchSnapshot(); + }); + + describe('Hooks', () => { + test('"Rendered more hooks than during the previous render"', () => { + expect(() => { + const { rerender } = render( + + ); + rerender( + + ); + }).not.toThrow(); + }); + }); +}); diff --git a/src/components/Progress/Utils.ts b/src/components/Progress/Utils.ts new file mode 100644 index 000000000..074dc65bb --- /dev/null +++ b/src/components/Progress/Utils.ts @@ -0,0 +1,26 @@ +export function validProgress(progress: number | undefined): number { + if (!progress || progress < 0) { + return 0; + } + if (progress > 100) { + return 100; + } + return progress; +} + +export function getSuccessPercent({ + success, + successPercent, +}: { + success?: { + progress?: number; + percent?: number; + }; + successPercent?: number; +}) { + let percent = successPercent; + if (success && 'percent' in success) { + percent = success.percent; + } + return percent; +} diff --git a/src/components/Progress/index.tsx b/src/components/Progress/index.tsx new file mode 100644 index 000000000..bf33565a6 --- /dev/null +++ b/src/components/Progress/index.tsx @@ -0,0 +1,5 @@ +import Progress from './Progress'; + +export { ProgressProps, ProgressSize } from './Progress.types'; + +export default Progress; diff --git a/src/components/Progress/progress.module.scss b/src/components/Progress/progress.module.scss new file mode 100644 index 000000000..8553f647f --- /dev/null +++ b/src/components/Progress/progress.module.scss @@ -0,0 +1,264 @@ +.progress { + @include reset-component(); + + display: inline-block; + + &-line { + font-size: $text-font-size-2; + position: relative; + width: 100%; + } + + &-icon { + margin-top: $space-xxs; + } + + &-outer { + display: inline-block; + width: 100%; + } + + &-inner { + background-color: var(--accent-color-10); + border-radius: 100px; + border: 1px solid var(--primary-color-60); + display: inline-block; + overflow: hidden; + position: relative; + vertical-align: middle; + width: 100%; + } + + &-circle { + .progress-inner { + border: none; + } + } + + &-circle-trail { + stroke: var(--accent-color-10); + } + + &-circle-path { + animation: progress-appear $motion-duration-extra-fast; + } + + &-inner:not(.progress-circle-gradient) { + .progress-circle-path { + stroke: var(--primary-color-60); + } + } + + &-success-bg, + &-bg { + background-color: var(--primary-color-60); + border-radius: 100px; + position: relative; + transition: all 0.4s $motion-easing-easeout 0s; + } + + &-success-bg { + background-color: var(--success-color); + left: 0; + position: absolute; + top: 0; + } + + &-text-wrapper { + height: $text-line-height-3; + } + + &-text, + .extremity-label { + color: var(--text-primary-color); + display: inline-block; + font-size: $text-font-size-2; + line-height: $text-line-height-3; + text-align: left; + white-space: nowrap; + width: fit-content; + word-break: normal; + + &.max-label { + position: absolute; + right: 0; + text-align: right; + } + + &.min-label { + left: 0; + position: absolute; + } + + &.value-label { + position: absolute; + text-align: center; + width: 36px; + } + } + + &-steps { + display: inline-block; + + &-outer { + align-items: center; + display: flex; + flex-direction: row; + } + + &-item { + background: var(--accent-color-10); + border-radius: 100px; + border: 1px solid var(--primary-color-60); + flex-shrink: 0; + margin-bottom: $space-xxs; + margin-right: $space-xxs; + min-width: $space-xxxs; + transition: background $motion-duration-extra-fast; + + &-active { + background: var(--primary-color-60); + } + } + + .progress-text-wrapper { + position: relative; + } + } + + &-status-active { + .progress-bg:before { + animation: progress-active 2.4s $motion-easing-easeout infinite; + background: var(--background-color); + border-radius: 10px; + bottom: 0; + content: ''; + left: 0; + opacity: 0; + position: absolute; + right: 0; + top: 0; + } + } + + &-status-exception { + .progress-bg { + background-color: var(--error-color); + } + + .progress-text, + .extremity-label { + color: var(--error-color); + } + + .progress-inner { + background-color: var(--disruptive-color-10); + border-color: var(--error-color); + } + } + + &-status-exception &-inner:not(.progress-circle-gradient) { + .progress-circle-path { + stroke: var(--error-color); + } + } + + &-status-success { + .progress-bg { + background-color: var(--success-color); + } + + .progress-text, + .extremity-label { + color: var(--success-color); + } + + .progress-inner { + border-color: var(--success-color); + } + } + + &-status-success &-inner:not(.progress-circle-gradient) { + .progress-circle-path { + stroke: var(--success-color); + } + } + + &-circle &-inner { + background-color: transparent; + line-height: 1; + position: relative; + } + + &-circle &-text { + color: var(--text-primary-color); + font-size: $text-font-size-2; + left: 50%; + line-height: 1; + margin: 0; + padding: 0; + position: absolute; + text-align: center; + top: 50%; + transform: translate(-50%, -50%); + white-space: normal; + width: 100%; + } + + &-circle .progress-status-exception { + .progress-text { + color: var(--error-color); + } + } + + &-circle .progress-status-success { + .progress-text { + color: var(--success-color); + } + } + + &-small { + &.progress-line { + font-size: 6px; + } + + .progress-icon { + margin-top: $space-xxxs; + } + + .progress-text-wrapper { + height: $text-line-height-2; + } + + .progress-text, + .extremity-label { + font-size: $text-font-size-1; + line-height: $text-line-height-2; + } + + &.progress-circle { + .progress-icon { + margin-top: 7px; + } + } + } +} + +@keyframes progress-active { + 0% { + opacity: 0.1; + transform: translateX(-100%) scaleX(0); + } + + 20% { + opacity: 0.5; + transform: translateX(-100%) scaleX(0); + } + + 100% { + opacity: 0; + transform: translateX(0) scaleX(1); + } +} + +@import './Styles/rtl'; diff --git a/src/components/Table/Styles/mixins.scss b/src/components/Table/Styles/mixins.scss index 165ea4ffa..a645a7935 100644 --- a/src/components/Table/Styles/mixins.scss +++ b/src/components/Table/Styles/mixins.scss @@ -2,31 +2,6 @@ $border-width: 1px; $border-color: var(--grey-color-20); $border: $border-width solid $border-color; -@mixin clearfix() { - &:before { - display: table; - content: ''; - } - - &:after { - display: table; - clear: both; - content: ''; - } -} - -@mixin reset-component() { - box-sizing: border-box; - margin: 0; - padding: 0; - color: var(--text-primary-color); - font-size: 14px; - font-variant: tabular-nums; - line-height: 1.5715; - list-style: none; - font-feature-settings: 'tnum'; -} - @mixin operation-unit() { color: var(--primary-color); text-decoration: none; diff --git a/src/components/Tree/Styles/mixin.scss b/src/components/Tree/Styles/mixin.scss index 072fd2d75..68880f65d 100644 --- a/src/components/Tree/Styles/mixin.scss +++ b/src/components/Tree/Styles/mixin.scss @@ -1,15 +1,3 @@ -@mixin reset-component() { - box-sizing: border-box; - margin: 0; - padding: 0; - color: var(--text-primary-color); - font-size: 14px; - font-variant: tabular-nums; - line-height: 1.5715; - list-style: none; - font-feature-settings: 'tnum'; -} - @mixin drop-indicator() { .tree-drop-indicator { position: absolute; diff --git a/src/components/Tree/Tests/__snapshots__/directory.doubleclick1.shot b/src/components/Tree/Tests/__snapshots__/directory.doubleclick1.shot index 74cc4d8c1..06762c12c 100644 --- a/src/components/Tree/Tests/__snapshots__/directory.doubleclick1.shot +++ b/src/components/Tree/Tests/__snapshots__/directory.doubleclick1.shot @@ -1204,6 +1204,7 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -2164,9 +2165,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, "parent": [Circular], @@ -2186,6 +2189,7 @@ LoadedCheerio { Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -4253,9 +4257,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, ], @@ -5497,6 +5503,7 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -6457,9 +6464,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, "parent": [Circular], @@ -6479,6 +6488,7 @@ LoadedCheerio { Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -8546,9 +8556,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, ], @@ -9776,6 +9788,7 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -10736,9 +10749,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, "parent": [Circular], @@ -10758,6 +10773,7 @@ LoadedCheerio { Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -12825,9 +12841,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, ], diff --git a/src/components/Tree/Tests/__snapshots__/directory.doubleclick2.shot b/src/components/Tree/Tests/__snapshots__/directory.doubleclick2.shot index 766d3ded4..5c33c1214 100644 --- a/src/components/Tree/Tests/__snapshots__/directory.doubleclick2.shot +++ b/src/components/Tree/Tests/__snapshots__/directory.doubleclick2.shot @@ -1204,630 +1204,639 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "tree-treenode-motion", - }, - "children": Array [], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - "x-attribsPrefix": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-treenode-motion", - }, - "children": Array [], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", - "draggable": "false", + "style": "height: 0px;", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher_close", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close", - "title": "---", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, - }, - }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher_close", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, + "class": undefined, }, "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, + "class": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": null, + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "class": undefined, + "title": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close", - "title": "---", - }, - "children": Array [ - Node { + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { "class": undefined, - "role": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], "parent": [Circular], "prev": null, - "type": "text", + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], - "prev": null, + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "title": undefined, }, }, - Node { + "parent": [Circular], + "prev": Node { "attribs": Object { - "class": "tree-title", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { - "data": "---", + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, - "type": "text", + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": [Circular], "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -1906,7 +1915,32 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", @@ -1917,280 +1951,175 @@ LoadedCheerio { "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, - }, - }, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close", - "title": "---", - }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-title", }, "children": Array [ Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "data": "---", "next": null, "parent": [Circular], "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, + "type": "text", }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { + "prev": Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": null, + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, @@ -2202,142 +2131,5303 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "title": undefined, }, }, ], - "name": "span", + "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-treenode-motion", + "style": "height: 0px;", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-switcher tree-switcher_close", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, + "aria-hidden": undefined, + "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, + "aria-hidden": undefined, + "class": undefined, + "role": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "class": undefined, }, "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "class": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-treenode", + "style": "position: absolute; pointer-events: none; visibility: hidden; height: 0px; overflow: hidden;", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit", + }, + "children": Array [], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "", + "style": "position: relative;", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "virtual-list-holder", + }, + "children": Array [ + Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "class": "virtual-list-holder-inner", + "style": "display: flex; flex-direction: column;", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-treenode-motion", + "style": "height: 0px;", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-treenode-motion", + "style": "height: 0px;", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { "aria-grabbed": undefined, @@ -2350,173 +7440,380 @@ LoadedCheerio { "draggable": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "style": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object {}, - "x-attribsPrefix": Object {}, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "style": undefined, - }, - }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "style": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object {}, - "x-attribsPrefix": Object {}, - }, - Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-treenode", - "style": "position: absolute; pointer-events: none; visibility: hidden; height: 0px; overflow: hidden;", - }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent", - }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit", - }, - "children": Array [], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "", - "style": "position: relative;", - }, - "children": Array [ - Node { - "attribs": Object { - "class": "virtual-list-holder", - }, - "children": Array [ - Node { - "attribs": Object {}, - "children": Array [ - Node { - "attribs": Object { - "class": "virtual-list-holder-inner", - "style": "display: flex; flex-direction: column;", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", - "draggable": "false", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + Node { "attribs": Object { "class": "tree-switcher tree-switcher_close", }, @@ -2848,107 +8145,36 @@ LoadedCheerio { }, }, "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher_close", - }, - "children": Array [ - Node { + "prev": Node { "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", + "aria-hidden": "true", + "class": "tree-indent", }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { "attribs": Object { "class": "tree-node-content-wrapper tree-node-content-wrapper-close", "title": "---", @@ -3165,31 +8391,140 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, @@ -3200,175 +8535,264 @@ LoadedCheerio { "title": undefined, }, }, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, }, - Node { + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "aria-label": "for screen reader", + "style": "width: 0px; height: 0px; display: flex; overflow: hidden; opacity: 0; border: 0px; padding: 0px; margin: 0px;", + "tabindex": "0", + "value": "", + }, + "children": Array [], + "name": "input", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-label": undefined, + "style": undefined, + "tabindex": undefined, + "value": undefined, + }, + "x-attribsPrefix": Object { + "aria-label": undefined, + "style": undefined, + "tabindex": undefined, + "value": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "", + "style": "position: relative;", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "virtual-list-holder", + }, + "children": Array [ + Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "class": "virtual-list-holder-inner", + "style": "display: flex; flex-direction: column;", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close", - "title": "---", + "class": "tree-switcher tree-switcher_close", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close", + "title": "---", + }, + "children": Array [ + Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -3426,30 +8850,170 @@ LoadedCheerio { "viewBox": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, @@ -3458,207 +9022,138 @@ LoadedCheerio { "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, "parent": [Circular], - "prev": Node { + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-switcher tree-switcher_close", + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-treenode-motion", - }, - "children": Array [], - "name": "div", + ], + "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - "x-attribsPrefix": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-treenode-motion", - }, - "children": Array [], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", - "draggable": "false", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close", + "title": "---", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-switcher tree-switcher_close", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", + "class": "icon-wrapper", "role": "presentation", }, "children": Array [ @@ -3671,7 +9166,7 @@ LoadedCheerio { "children": Array [ Node { "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", "style": "fill: currentColor;", }, "children": Array [], @@ -3731,266 +9226,532 @@ LoadedCheerio { "namespace": "http://www.w3.org/1999/xhtml", "next": Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close", - "title": "---", + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ Node { "attribs": Object { - "class": "tree-title", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { - "data": "---", + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, - "type": "text", + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, + "d": undefined, + "style": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, + "d": undefined, + "style": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "class": undefined, + "d": undefined, + "style": undefined, }, "x-attribsPrefix": Object { - "class": undefined, + "d": undefined, + "style": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], - "prev": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", @@ -4003,347 +9764,336 @@ LoadedCheerio { "class": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher_close", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-treenode-motion", + "style": "height: 0px;", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close", - "title": "---", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ Node { - "data": "---", + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { + "prev": Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "title": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, - }, - }, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", @@ -4356,153 +10106,321 @@ LoadedCheerio { "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close", - "title": "---", - }, - "children": Array [ - Node { + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -4581,7 +10499,32 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", @@ -4592,880 +10535,877 @@ LoadedCheerio { "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher_close", - }, - "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", + "class": "tree-title", }, "children": Array [ Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "data": "---", "next": null, "parent": [Circular], "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, + }, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-switcher tree-switcher-noop", }, "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - "x-attribsPrefix": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "style": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object {}, - "x-attribsPrefix": Object {}, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "style": undefined, - }, - }, - "parent": [Circular], - "prev": Node { - "attribs": Object {}, - "children": Array [ - Node { - "attribs": Object { - "aria-label": "for screen reader", - "style": "width: 0px; height: 0px; display: flex; overflow: hidden; opacity: 0; border: 0px; padding: 0px; margin: 0px;", - "tabindex": "0", - "value": "", - }, - "children": Array [], - "name": "input", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-label": undefined, - "style": undefined, - "tabindex": undefined, - "value": undefined, - }, - "x-attribsPrefix": Object { - "aria-label": undefined, - "style": undefined, - "tabindex": undefined, - "value": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object {}, - "x-attribsPrefix": Object {}, - }, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "style": undefined, - }, - }, - Node { - "attribs": Object { - "class": "", - "style": "position: relative;", - }, - "children": Array [ - Node { - "attribs": Object { - "class": "virtual-list-holder", - }, - "children": Array [ - Node { - "attribs": Object {}, - "children": Array [ - Node { - "attribs": Object { - "class": "virtual-list-holder-inner", - "style": "display: flex; flex-direction: column;", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", - "draggable": "false", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher_close", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { + "prev": Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, + "class": undefined, }, "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, + "class": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "aria-hidden": undefined, + "class": undefined, }, "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "aria-hidden": undefined, + "class": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, + "title": undefined, }, }, ], - "name": "span", + "name": "div", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-treenode-motion", + "style": "height: 0px;", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close", - "title": "---", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, }, - "children": Array [ - Node { + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, - }, - }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher_close", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, + "class": undefined, }, "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, + "class": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": null, + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "class": undefined, + "title": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close", - "title": "---", - }, - "children": Array [ - Node { + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], "parent": [Circular], "prev": null, - "type": "text", + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], - "prev": null, + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "title": undefined, }, }, - Node { + "parent": [Circular], + "prev": Node { "attribs": Object { - "class": "tree-title", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { - "data": "---", + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, - "type": "text", + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": [Circular], "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -5544,7 +11484,32 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", @@ -5555,280 +11520,175 @@ LoadedCheerio { "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, - }, - }, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close", - "title": "---", - }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-title", }, "children": Array [ Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "data": "---", "next": null, "parent": [Circular], "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, + "type": "text", }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { + "prev": Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": null, + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, @@ -5840,178 +11700,34 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "title": undefined, }, }, ], - "name": "span", + "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher_close", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-grabbed": undefined, "class": undefined, - "title": undefined, + "draggable": undefined, }, "x-attribsPrefix": Object { + "aria-grabbed": undefined, "class": undefined, - "title": undefined, + "draggable": undefined, }, }, ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-treenode-motion", - }, - "children": Array [], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - "x-attribsPrefix": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-treenode-motion", - }, - "children": Array [], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": Node { @@ -7125,9 +12841,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, ], diff --git a/src/components/Tree/Tests/__snapshots__/directory.expandclick1.shot b/src/components/Tree/Tests/__snapshots__/directory.expandclick1.shot index b6513e99d..4fb24b6de 100644 --- a/src/components/Tree/Tests/__snapshots__/directory.expandclick1.shot +++ b/src/components/Tree/Tests/__snapshots__/directory.expandclick1.shot @@ -1204,6 +1204,7 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -2164,9 +2165,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, "parent": [Circular], @@ -2186,6 +2189,7 @@ LoadedCheerio { Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -4253,9 +4257,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, ], @@ -5497,6 +5503,7 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -6457,9 +6464,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, "parent": [Circular], @@ -6479,6 +6488,7 @@ LoadedCheerio { Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -8546,9 +8556,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, ], @@ -9776,6 +9788,7 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -10736,9 +10749,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, "parent": [Circular], @@ -10758,6 +10773,7 @@ LoadedCheerio { Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -12825,9 +12841,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, ], diff --git a/src/components/Tree/Tests/__snapshots__/directory.expandclick2.shot b/src/components/Tree/Tests/__snapshots__/directory.expandclick2.shot index 2593f3aa7..dd8c42187 100644 --- a/src/components/Tree/Tests/__snapshots__/directory.expandclick2.shot +++ b/src/components/Tree/Tests/__snapshots__/directory.expandclick2.shot @@ -1204,630 +1204,639 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "tree-treenode-motion", - }, - "children": Array [], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - "x-attribsPrefix": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-treenode-motion", - }, - "children": Array [], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-selected tree-treenode-leaf-last", - "draggable": "false", + "style": "height: 0px;", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher_close", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", - "title": "---", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, - }, - }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher_close", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, + "class": undefined, }, "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, + "class": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": null, + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "class": undefined, + "title": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", - "title": "---", - }, - "children": Array [ - Node { + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { "class": undefined, - "role": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], "parent": [Circular], "prev": null, - "type": "text", + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], - "prev": null, + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "title": undefined, }, }, - Node { + "parent": [Circular], + "prev": Node { "attribs": Object { - "class": "tree-title", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { - "data": "---", + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, - "type": "text", + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": [Circular], "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -1906,7 +1915,32 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", @@ -1917,280 +1951,175 @@ LoadedCheerio { "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, - }, - }, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", - "title": "---", - }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-title", }, "children": Array [ Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "data": "---", "next": null, "parent": [Circular], "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, + "type": "text", }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { + "prev": Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": null, + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, @@ -2202,142 +2131,5303 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "title": undefined, }, }, ], - "name": "span", + "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-treenode-motion", + "style": "height: 0px;", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-switcher tree-switcher_close", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, + "aria-hidden": undefined, + "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, + "aria-hidden": undefined, + "class": undefined, + "role": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "class": undefined, }, "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "class": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-selected tree-treenode-leaf-last", + "draggable": "false", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-treenode", + "style": "position: absolute; pointer-events: none; visibility: hidden; height: 0px; overflow: hidden;", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit", + }, + "children": Array [], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "", + "style": "position: relative;", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "virtual-list-holder", + }, + "children": Array [ + Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "class": "virtual-list-holder-inner", + "style": "display: flex; flex-direction: column;", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-selected tree-treenode-leaf-last", + "draggable": "false", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-treenode-motion", + "style": "height: 0px;", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-treenode-motion", + "style": "height: 0px;", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { "aria-grabbed": undefined, @@ -2350,173 +7440,380 @@ LoadedCheerio { "draggable": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-selected tree-treenode-leaf-last", + "draggable": "false", }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "style": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object {}, - "x-attribsPrefix": Object {}, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "style": undefined, - }, - }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "style": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object {}, - "x-attribsPrefix": Object {}, - }, - Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-treenode", - "style": "position: absolute; pointer-events: none; visibility: hidden; height: 0px; overflow: hidden;", - }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent", - }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit", - }, - "children": Array [], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "", - "style": "position: relative;", - }, - "children": Array [ - Node { - "attribs": Object { - "class": "virtual-list-holder", - }, - "children": Array [ - Node { - "attribs": Object {}, - "children": Array [ - Node { - "attribs": Object { - "class": "virtual-list-holder-inner", - "style": "display: flex; flex-direction: column;", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-selected tree-treenode-leaf-last", - "draggable": "false", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + Node { "attribs": Object { "class": "tree-switcher tree-switcher_close", }, @@ -2848,107 +8145,36 @@ LoadedCheerio { }, }, "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher_close", - }, - "children": Array [ - Node { + "prev": Node { "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", + "aria-hidden": "true", + "class": "tree-indent", }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { "attribs": Object { "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", "title": "---", @@ -3165,31 +8391,140 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, @@ -3200,175 +8535,264 @@ LoadedCheerio { "title": undefined, }, }, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, }, - Node { + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "aria-label": "for screen reader", + "style": "width: 0px; height: 0px; display: flex; overflow: hidden; opacity: 0; border: 0px; padding: 0px; margin: 0px;", + "tabindex": "0", + "value": "", + }, + "children": Array [], + "name": "input", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-label": undefined, + "style": undefined, + "tabindex": undefined, + "value": undefined, + }, + "x-attribsPrefix": Object { + "aria-label": undefined, + "style": undefined, + "tabindex": undefined, + "value": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object {}, + "x-attribsPrefix": Object {}, + }, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "style": undefined, + }, + }, + Node { + "attribs": Object { + "class": "", + "style": "position: relative;", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "virtual-list-holder", + }, + "children": Array [ + Node { + "attribs": Object {}, + "children": Array [ + Node { + "attribs": Object { + "class": "virtual-list-holder-inner", + "style": "display: flex; flex-direction: column;", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-selected tree-treenode-leaf-last", + "draggable": "false", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", - "title": "---", + "class": "tree-switcher tree-switcher_close", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", + "title": "---", + }, + "children": Array [ + Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -3426,30 +8850,170 @@ LoadedCheerio { "viewBox": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, @@ -3458,207 +9022,138 @@ LoadedCheerio { "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, "parent": [Circular], - "prev": Node { + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-switcher tree-switcher_close", + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-treenode-motion", - }, - "children": Array [], - "name": "div", + ], + "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - "x-attribsPrefix": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-treenode-motion", - }, - "children": Array [], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-selected tree-treenode-leaf-last", - "draggable": "false", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", + "title": "---", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-switcher tree-switcher_close", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", + "class": "icon-wrapper", "role": "presentation", }, "children": Array [ @@ -3671,7 +9166,7 @@ LoadedCheerio { "children": Array [ Node { "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", "style": "fill: currentColor;", }, "children": Array [], @@ -3731,266 +9226,532 @@ LoadedCheerio { "namespace": "http://www.w3.org/1999/xhtml", "next": Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", - "title": "---", + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", + "title": "---", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ Node { "attribs": Object { - "class": "tree-title", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { - "data": "---", + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, - "type": "text", + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, + "d": undefined, + "style": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, + "d": undefined, + "style": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher_close", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "tree-switcher-icon icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "class": undefined, + "d": undefined, + "style": undefined, }, "x-attribsPrefix": Object { - "class": undefined, + "d": undefined, + "style": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], - "prev": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", @@ -4003,347 +9764,336 @@ LoadedCheerio { "class": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher_close", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-treenode-motion", + "style": "height: 0px;", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", - "title": "---", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ Node { - "data": "---", + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { + "prev": Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "title": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, - }, - }, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", @@ -4356,153 +10106,321 @@ LoadedCheerio { "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", - "title": "---", - }, - "children": Array [ - Node { + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -4581,7 +10499,32 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", @@ -4592,880 +10535,877 @@ LoadedCheerio { "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher_close", - }, - "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", + "class": "tree-title", }, "children": Array [ Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "data": "---", "next": null, "parent": [Circular], "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, + }, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-switcher tree-switcher-noop", }, "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - "x-attribsPrefix": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "style": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object {}, - "x-attribsPrefix": Object {}, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "style": undefined, - }, - }, - "parent": [Circular], - "prev": Node { - "attribs": Object {}, - "children": Array [ - Node { - "attribs": Object { - "aria-label": "for screen reader", - "style": "width: 0px; height: 0px; display: flex; overflow: hidden; opacity: 0; border: 0px; padding: 0px; margin: 0px;", - "tabindex": "0", - "value": "", - }, - "children": Array [], - "name": "input", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-label": undefined, - "style": undefined, - "tabindex": undefined, - "value": undefined, - }, - "x-attribsPrefix": Object { - "aria-label": undefined, - "style": undefined, - "tabindex": undefined, - "value": undefined, - }, - }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object {}, - "x-attribsPrefix": Object {}, - }, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "style": undefined, - }, - }, - Node { - "attribs": Object { - "class": "", - "style": "position: relative;", - }, - "children": Array [ - Node { - "attribs": Object { - "class": "virtual-list-holder", - }, - "children": Array [ - Node { - "attribs": Object {}, - "children": Array [ - Node { - "attribs": Object { - "class": "virtual-list-holder-inner", - "style": "display: flex; flex-direction: column;", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-selected tree-treenode-leaf-last", - "draggable": "false", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher_close", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { + "prev": Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, + "class": undefined, }, "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, + "class": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "aria-hidden": undefined, + "class": undefined, }, "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "aria-hidden": undefined, + "class": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, + "title": undefined, }, }, ], - "name": "span", + "name": "div", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + ], + "name": "div", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "style": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + "x-attribsPrefix": Object { + "aria-grabbed": undefined, + "class": undefined, + "draggable": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-treenode-motion", + "style": "height: 0px;", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", - "title": "---", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, }, - "children": Array [ - Node { + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, - }, - }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher_close", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, + "class": undefined, }, "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, + "class": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": null, + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, + "class": undefined, + "title": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", - "title": "---", - }, - "children": Array [ - Node { + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], "parent": [Circular], "prev": null, - "type": "text", + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], - "prev": null, + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "title": undefined, }, }, - Node { + "parent": [Circular], + "prev": Node { "attribs": Object { - "class": "tree-title", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { - "data": "---", + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, - "type": "text", + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": [Circular], "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "---", + }, + "children": Array [ + Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -5544,7 +11484,32 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "---", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", @@ -5555,280 +11520,175 @@ LoadedCheerio { "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, - }, - }, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-close tree-node-selected", - "title": "---", - }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-title", }, "children": Array [ Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "data": "---", "next": null, "parent": [Circular], "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, + "type": "text", }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "---", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { + "prev": Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, - "children": Array [], - "name": "path", + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "d": undefined, + "role": undefined, "style": undefined, + "viewBox": undefined, }, }, ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, "role": undefined, - "style": undefined, - "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, - "role": undefined, }, }, - ], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": null, + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, @@ -5840,178 +11700,34 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "title": undefined, }, }, ], - "name": "span", + "name": "div", "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher_close", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "tree-switcher-icon icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-grabbed": undefined, "class": undefined, - "title": undefined, + "draggable": undefined, }, "x-attribsPrefix": Object { + "aria-grabbed": undefined, "class": undefined, - "title": undefined, + "draggable": undefined, }, }, ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-treenode-motion", - }, - "children": Array [], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - "x-attribsPrefix": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-treenode-motion", - }, - "children": Array [], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], "prev": Node { @@ -7125,9 +12841,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, ], diff --git a/src/components/Tree/Tests/__snapshots__/directory.expandkeysupdate.shot b/src/components/Tree/Tests/__snapshots__/directory.expandkeysupdate.shot index 59b802f2b..d74672108 100644 --- a/src/components/Tree/Tests/__snapshots__/directory.expandkeysupdate.shot +++ b/src/components/Tree/Tests/__snapshots__/directory.expandkeysupdate.shot @@ -1204,6 +1204,7 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -2164,9 +2165,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, "parent": [Circular], @@ -2186,6 +2189,7 @@ LoadedCheerio { Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -4253,9 +4257,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, ], @@ -5497,6 +5503,7 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -6457,9 +6464,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, "parent": [Circular], @@ -6479,6 +6488,7 @@ LoadedCheerio { Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -8546,9 +8556,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, ], @@ -9776,6 +9788,7 @@ LoadedCheerio { "next": Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -10736,9 +10749,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, "parent": [Circular], @@ -10758,6 +10773,7 @@ LoadedCheerio { Node { "attribs": Object { "class": "tree-treenode-motion", + "style": "height: 0px; opacity: 0;", }, "children": Array [ Node { @@ -12825,9 +12841,11 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, + "style": undefined, }, "x-attribsPrefix": Object { "class": undefined, + "style": undefined, }, }, ], diff --git a/src/components/Tree/Tests/__snapshots__/directory.statecontrolclick.shot b/src/components/Tree/Tests/__snapshots__/directory.statecontrolclick.shot index 606ac9082..8a45552e2 100644 --- a/src/components/Tree/Tests/__snapshots__/directory.statecontrolclick.shot +++ b/src/components/Tree/Tests/__snapshots__/directory.statecontrolclick.shot @@ -1203,956 +1203,933 @@ LoadedCheerio { "namespace": "http://www.w3.org/1999/xhtml", "next": Node { "attribs": Object { - "class": "tree-treenode-motion", + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", }, "children": Array [ Node { "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", - "draggable": "false", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], - "prev": null, + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, + "title": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", - }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], + ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, }, ], @@ -2163,10 +2140,14 @@ LoadedCheerio { "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, "x-attribsPrefix": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, }, "parent": [Circular], @@ -2185,338 +2166,184 @@ LoadedCheerio { }, Node { "attribs": Object { - "class": "tree-treenode-motion", + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", }, "children": Array [ Node { "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", - "draggable": "false", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, "parent": [Circular], "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, + "type": "text", }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], - "prev": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", - }, - "children": Array [ - Node { + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -2595,32 +2422,7 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", @@ -2631,510 +2433,666 @@ LoadedCheerio { "class": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": Node { + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], + ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, }, ], @@ -4252,10 +4210,14 @@ LoadedCheerio { }, "type": "tag", "x-attribsNamespace": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, "x-attribsPrefix": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, }, ], @@ -5496,956 +5458,933 @@ LoadedCheerio { "namespace": "http://www.w3.org/1999/xhtml", "next": Node { "attribs": Object { - "class": "tree-treenode-motion", + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", }, "children": Array [ Node { "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", - "draggable": "false", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], - "prev": null, + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, + "title": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": Node { + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], + ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, }, ], @@ -6456,10 +6395,14 @@ LoadedCheerio { "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, "x-attribsPrefix": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, }, "parent": [Circular], @@ -6478,639 +6421,465 @@ LoadedCheerio { }, Node { "attribs": Object { - "class": "tree-treenode-motion", + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", }, "children": Array [ Node { "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", - "draggable": "false", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], - "prev": null, + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, + "title": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], - "prev": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": Node { + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-title", }, "children": Array [ Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "data": "children", "next": null, "parent": [Circular], "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + "type": "text", }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", - }, - "children": Array [ - Node { + "prev": Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -7189,32 +6958,7 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", @@ -7225,175 +6969,299 @@ LoadedCheerio { "class": undefined, }, }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ Node { "attribs": Object { - "class": "tree-title", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { - "data": "children", + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, - "type": "text", + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], + ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, + "prev": null, "type": "tag", "x-attribsNamespace": Object { "class": undefined, @@ -7405,31 +7273,83 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, ], - "name": "div", + "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - "x-attribsPrefix": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - }, + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", @@ -8545,10 +8465,14 @@ LoadedCheerio { }, "type": "tag", "x-attribsNamespace": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, "x-attribsPrefix": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, }, ], @@ -9775,639 +9699,465 @@ LoadedCheerio { "namespace": "http://www.w3.org/1999/xhtml", "next": Node { "attribs": Object { - "class": "tree-treenode-motion", + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", }, "children": Array [ Node { "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", - "draggable": "false", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], - "prev": null, + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, + "title": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, "parent": [Circular], "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, + "type": "text", }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], - "prev": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": Node { + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-title", }, "children": Array [ Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "data": "children", "next": null, "parent": [Circular], "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + "type": "text", }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", - }, - "children": Array [ - Node { + "prev": Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -10486,32 +10236,7 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", @@ -10522,209 +10247,385 @@ LoadedCheerio { "class": undefined, }, }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ Node { "attribs": Object { - "class": "tree-title", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { - "data": "children", + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, - "type": "text", + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], + ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, }, ], @@ -10735,10 +10636,14 @@ LoadedCheerio { "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, "x-attribsPrefix": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, }, "parent": [Circular], @@ -10757,338 +10662,184 @@ LoadedCheerio { }, Node { "attribs": Object { - "class": "tree-treenode-motion", + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", }, "children": Array [ Node { "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", - "draggable": "false", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, "parent": [Circular], "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, + "type": "text", }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], - "prev": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", - }, - "children": Array [ - Node { + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -11167,32 +10918,7 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", @@ -11203,149 +10929,124 @@ LoadedCheerio { "class": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], - "prev": Node { + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, - "children": Array [], + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": null, @@ -11353,43 +11054,73 @@ LoadedCheerio { "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", - }, - "children": Array [ - Node { + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -11468,245 +11199,396 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], + ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, }, ], @@ -12824,10 +12706,14 @@ LoadedCheerio { }, "type": "tag", "x-attribsNamespace": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, "x-attribsPrefix": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, }, ], diff --git a/src/components/Tree/Tests/__snapshots__/directory.statecontroldoubleClick.shot b/src/components/Tree/Tests/__snapshots__/directory.statecontroldoubleClick.shot index 883c3a11b..16235cc73 100644 --- a/src/components/Tree/Tests/__snapshots__/directory.statecontroldoubleClick.shot +++ b/src/components/Tree/Tests/__snapshots__/directory.statecontroldoubleClick.shot @@ -1203,956 +1203,933 @@ LoadedCheerio { "namespace": "http://www.w3.org/1999/xhtml", "next": Node { "attribs": Object { - "class": "tree-treenode-motion", + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", }, "children": Array [ Node { "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", - "draggable": "false", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], - "prev": null, + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, + "title": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", - }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], + ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, }, ], @@ -2163,10 +2140,14 @@ LoadedCheerio { "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, "x-attribsPrefix": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, }, "parent": [Circular], @@ -2185,338 +2166,184 @@ LoadedCheerio { }, Node { "attribs": Object { - "class": "tree-treenode-motion", + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", }, "children": Array [ Node { "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", - "draggable": "false", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, "parent": [Circular], "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, + "type": "text", }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], - "prev": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", - }, - "children": Array [ - Node { + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -2595,32 +2422,7 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", @@ -2631,510 +2433,666 @@ LoadedCheerio { "class": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": Node { + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], + ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, }, ], @@ -4252,10 +4210,14 @@ LoadedCheerio { }, "type": "tag", "x-attribsNamespace": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, "x-attribsPrefix": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, }, ], @@ -5496,956 +5458,933 @@ LoadedCheerio { "namespace": "http://www.w3.org/1999/xhtml", "next": Node { "attribs": Object { - "class": "tree-treenode-motion", + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", }, "children": Array [ Node { "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", - "draggable": "false", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], - "prev": null, + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, + "title": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": Node { + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], + ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, }, ], @@ -6456,10 +6395,14 @@ LoadedCheerio { "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, "x-attribsPrefix": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, }, "parent": [Circular], @@ -6478,639 +6421,465 @@ LoadedCheerio { }, Node { "attribs": Object { - "class": "tree-treenode-motion", + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", }, "children": Array [ Node { "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", - "draggable": "false", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], - "prev": null, + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, + "title": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], - "prev": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": Node { + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-title", }, "children": Array [ Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "data": "children", "next": null, "parent": [Circular], "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + "type": "text", }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", - }, - "children": Array [ - Node { + "prev": Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -7189,32 +6958,7 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", @@ -7225,175 +6969,299 @@ LoadedCheerio { "class": undefined, }, }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ Node { "attribs": Object { - "class": "tree-title", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { - "data": "children", + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, - "type": "text", + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], + ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": Node { - "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", - }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, + "prev": null, "type": "tag", "x-attribsNamespace": Object { "class": undefined, @@ -7405,31 +7273,83 @@ LoadedCheerio { "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, ], - "name": "div", + "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - "x-attribsPrefix": Object { - "aria-grabbed": undefined, - "class": undefined, - "draggable": undefined, - }, - }, + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, ], "name": "div", "namespace": "http://www.w3.org/1999/xhtml", @@ -8545,10 +8465,14 @@ LoadedCheerio { }, "type": "tag", "x-attribsNamespace": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, "x-attribsPrefix": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, }, ], @@ -9775,639 +9699,465 @@ LoadedCheerio { "namespace": "http://www.w3.org/1999/xhtml", "next": Node { "attribs": Object { - "class": "tree-treenode-motion", + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", }, "children": Array [ Node { "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", - "draggable": "false", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], - "prev": null, + "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, + "title": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, "parent": [Circular], "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, + "type": "text", }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], - "prev": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": Node { + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-title", }, "children": Array [ Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "data": "children", "next": null, "parent": [Circular], "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + "type": "text", }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", - }, - "children": Array [ - Node { + "prev": Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -10486,32 +10236,7 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", @@ -10522,209 +10247,385 @@ LoadedCheerio { "class": undefined, }, }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ Node { "attribs": Object { - "class": "tree-title", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { - "data": "children", + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, - "type": "text", + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], + ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, }, ], @@ -10735,10 +10636,14 @@ LoadedCheerio { "prev": [Circular], "type": "tag", "x-attribsNamespace": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, "x-attribsPrefix": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, }, "parent": [Circular], @@ -10757,338 +10662,184 @@ LoadedCheerio { }, Node { "attribs": Object { - "class": "tree-treenode-motion", + "aria-grabbed": "false", + "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", + "draggable": "false", }, "children": Array [ Node { "attribs": Object { - "aria-grabbed": "false", - "class": "tree-treenode tree-treenode-switcher-close tree-treenode-leaf-last", - "draggable": "false", + "aria-hidden": "true", + "class": "tree-indent", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, "parent": [Circular], "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, + "type": "text", }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], - "prev": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { "class": undefined, - "title": undefined, }, }, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", - }, - "children": Array [ - Node { + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -11167,32 +10918,7 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + "next": [Circular], "parent": [Circular], "prev": null, "type": "tag", @@ -11203,149 +10929,124 @@ LoadedCheerio { "class": undefined, }, }, - Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", - }, - "children": Array [ - Node { - "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", - "role": "presentation", - }, - "children": Array [ - Node { - "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", - }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - "x-attribsPrefix": Object { - "role": undefined, - "style": undefined, - "viewBox": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, - "role": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - "title": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - "title": undefined, }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], - "prev": Node { + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-icon-ele tree-icon-customize", }, "children": Array [ Node { "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, - "children": Array [], + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + }, + ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": null, @@ -11353,43 +11054,73 @@ LoadedCheerio { "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - Node { - "attribs": Object { - "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", - "title": "children", - }, - "children": Array [ - Node { + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { "attribs": Object { "class": "tree-icon-ele tree-icon-customize", }, @@ -11468,245 +11199,396 @@ LoadedCheerio { ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + "title": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + "title": undefined, + }, + }, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "aria-hidden": undefined, + "class": undefined, + }, + "x-attribsPrefix": Object { + "aria-hidden": undefined, + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-node-content-wrapper tree-node-content-wrapper-normal", + "title": "children", + }, + "children": Array [ + Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { + "attribs": Object { + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", + }, + "children": Array [ + Node { + "attribs": Object { + "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", + }, + "children": Array [ + Node { + "attribs": Object { + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", + }, + "children": Array [], + "name": "path", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "d": undefined, + "style": undefined, + }, + "x-attribsPrefix": Object { + "d": undefined, + "style": undefined, + }, + }, + ], + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", + "next": null, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, + }, + "x-attribsPrefix": Object { + "role": undefined, + "style": undefined, + "viewBox": undefined, }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": [Circular], - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ + Node { + "data": "children", + "next": null, + "parent": [Circular], + "prev": null, + "type": "text", }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": [Circular], + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, }, + }, + "parent": [Circular], + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + Node { + "attribs": Object { + "class": "tree-title", + }, + "children": Array [ Node { - "attribs": Object { - "class": "tree-title", - }, - "children": Array [ - Node { - "data": "children", - "next": null, - "parent": [Circular], - "prev": null, - "type": "text", - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "data": "children", "next": null, "parent": [Circular], - "prev": Node { + "prev": null, + "type": "text", + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-icon-ele tree-icon-customize", + }, + "children": Array [ + Node { "attribs": Object { - "class": "tree-icon-ele tree-icon-customize", + "aria-hidden": "false", + "class": "icon-wrapper", + "role": "presentation", }, "children": Array [ Node { "attribs": Object { - "aria-hidden": "false", - "class": "icon-wrapper", "role": "presentation", + "style": "width: 16px; height: 16px;", + "viewBox": "0 0 24 24", }, "children": Array [ Node { "attribs": Object { - "role": "presentation", - "style": "width: 16px; height: 16px;", - "viewBox": "0 0 24 24", + "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", + "style": "fill: currentColor;", }, - "children": Array [ - Node { - "attribs": Object { - "d": "M20,18H4V8H20M20,6H12L10,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V8C22,6.89 21.1,6 20,6Z", - "style": "fill: currentColor;", - }, - "children": Array [], - "name": "path", - "namespace": "http://www.w3.org/2000/svg", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "d": undefined, - "style": undefined, - }, - "x-attribsPrefix": Object { - "d": undefined, - "style": undefined, - }, - }, - ], - "name": "svg", + "children": Array [], + "name": "path", "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, "x-attribsPrefix": Object { - "role": undefined, + "d": undefined, "style": undefined, - "viewBox": undefined, }, }, ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", + "name": "svg", + "namespace": "http://www.w3.org/2000/svg", "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, - "class": undefined, "role": undefined, + "style": undefined, + "viewBox": undefined, }, }, ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, + "role": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": Node { - "attribs": Object { - "class": "tree-switcher tree-switcher-noop", - }, - "children": Array [], + ], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", "next": [Circular], "parent": [Circular], - "prev": Node { + "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": null, + "parent": [Circular], + "prev": Node { + "attribs": Object { + "class": "tree-switcher tree-switcher-noop", + }, + "children": Array [], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": Node { + "attribs": Object { + "aria-hidden": "true", + "class": "tree-indent", + }, + "children": Array [ + Node { "attribs": Object { - "aria-hidden": "true", - "class": "tree-indent", + "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", }, - "children": Array [ - Node { - "attribs": Object { - "class": "tree-indent-unit tree-indent-unit-start tree-indent-unit-end", - }, - "children": Array [], - "name": "span", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, - ], + "children": Array [], "name": "span", "namespace": "http://www.w3.org/1999/xhtml", - "next": [Circular], + "next": null, "parent": [Circular], "prev": null, "type": "tag", "x-attribsNamespace": Object { - "aria-hidden": undefined, "class": undefined, }, "x-attribsPrefix": Object { - "aria-hidden": undefined, "class": undefined, }, }, - "type": "tag", - "x-attribsNamespace": Object { - "class": undefined, - }, - "x-attribsPrefix": Object { - "class": undefined, - }, - }, + ], + "name": "span", + "namespace": "http://www.w3.org/1999/xhtml", + "next": [Circular], + "parent": [Circular], + "prev": null, "type": "tag", "x-attribsNamespace": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, "x-attribsPrefix": Object { + "aria-hidden": undefined, "class": undefined, - "title": undefined, }, }, - ], - "name": "div", - "namespace": "http://www.w3.org/1999/xhtml", - "next": null, - "parent": [Circular], - "prev": null, + "type": "tag", + "x-attribsNamespace": Object { + "class": undefined, + }, + "x-attribsPrefix": Object { + "class": undefined, + }, + }, "type": "tag", "x-attribsNamespace": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, "x-attribsPrefix": Object { - "aria-grabbed": undefined, "class": undefined, - "draggable": undefined, + "title": undefined, }, }, ], @@ -12824,10 +12706,14 @@ LoadedCheerio { }, "type": "tag", "x-attribsNamespace": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, "x-attribsPrefix": Object { + "aria-grabbed": undefined, "class": undefined, + "draggable": undefined, }, }, ], diff --git a/src/components/Tree/Tree.tsx b/src/components/Tree/Tree.tsx index 50964aa7e..ebaa74076 100644 --- a/src/components/Tree/Tree.tsx +++ b/src/components/Tree/Tree.tsx @@ -1,14 +1,13 @@ import React from 'react'; import OcTree, { TreeNode } from './Internal'; -import { mergeClasses } from '../../shared/utilities'; import { DraggableConfig, OcTreeNodeProps, TreeProps } from './Tree.types'; import type { BasicDataNode, DataNode } from './Internal/OcTree.types'; import DirectoryTree from './DirectoryTree'; -import collapseMotion from '../Motion'; import renderSwitcherIcon from './Utils/iconUtil'; import dropIndicatorRender from './Utils/dropIndicator'; import { Icon, IconName, IconSize } from '../Icon'; import { useCanvasDirection } from '../../hooks/useCanvasDirection'; +import { collapseMotion, mergeClasses } from '../../shared/utilities'; import styles from './Styles/tree.module.scss'; diff --git a/src/octuple.ts b/src/octuple.ts index 09958210a..f9b45f9ac 100644 --- a/src/octuple.ts +++ b/src/octuple.ts @@ -86,6 +86,8 @@ import { TextInputWidth, } from './components/Inputs'; +import Progress from './components/Progress'; + import { InfoBar, InfoBarType } from './components/InfoBar'; import { @@ -227,6 +229,7 @@ export { PillType, Portal, PrimaryButton, + Progress, RadioButton, RadioGroup, RangePickerProps, diff --git a/src/styles/abstracts/_mixins.scss b/src/styles/abstracts/_mixins.scss index 8c9edafa8..a58f9b433 100644 --- a/src/styles/abstracts/_mixins.scss +++ b/src/styles/abstracts/_mixins.scss @@ -19,6 +19,31 @@ opacity: 0; } +@mixin reset-component() { + box-sizing: border-box; + margin: 0; + padding: 0; + color: var(--text-primary-color); + font-size: $text-font-size-2; + font-variant: tabular-nums; + line-height: 1.5715; + list-style: none; + font-feature-settings: 'tnum'; +} + +@mixin clearfix() { + &:before { + display: table; + content: ''; + } + + &:after { + display: table; + clear: both; + content: ''; + } +} + @mixin backdrop { @include surface-layout();