diff --git a/docs/assets/highlight.css b/docs/assets/highlight.css index 0c2db609..de72389a 100644 --- a/docs/assets/highlight.css +++ b/docs/assets/highlight.css @@ -3,34 +3,48 @@ --dark-hl-0: #D4D4D4; --light-hl-1: #795E26; --dark-hl-1: #DCDCAA; - --light-code-background: #F5F5F5; + --light-hl-2: #A31515; + --dark-hl-2: #CE9178; + --light-hl-3: #0000FF; + --dark-hl-3: #569CD6; + --light-code-background: #FFFFFF; --dark-code-background: #1E1E1E; } @media (prefers-color-scheme: light) { :root { --hl-0: var(--light-hl-0); --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); --code-background: var(--light-code-background); } } @media (prefers-color-scheme: dark) { :root { --hl-0: var(--dark-hl-0); --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); --code-background: var(--dark-code-background); } } -body.light { +:root[data-theme='light'] { --hl-0: var(--light-hl-0); --hl-1: var(--light-hl-1); + --hl-2: var(--light-hl-2); + --hl-3: var(--light-hl-3); --code-background: var(--light-code-background); } -body.dark { +:root[data-theme='dark'] { --hl-0: var(--dark-hl-0); --hl-1: var(--dark-hl-1); + --hl-2: var(--dark-hl-2); + --hl-3: var(--dark-hl-3); --code-background: var(--dark-code-background); } .hl-0 { color: var(--hl-0); } .hl-1 { color: var(--hl-1); } +.hl-2 { color: var(--hl-2); } +.hl-3 { color: var(--hl-3); } pre, code { background: var(--code-background); } diff --git a/docs/assets/icons.css b/docs/assets/icons.css deleted file mode 100644 index 776a3562..00000000 --- a/docs/assets/icons.css +++ /dev/null @@ -1,1043 +0,0 @@ -.tsd-kind-icon { - display: block; - position: relative; - padding-left: 20px; - text-indent: -20px; -} -.tsd-kind-icon:before { - content: ""; - display: inline-block; - vertical-align: middle; - width: 17px; - height: 17px; - margin: 0 3px 2px 0; - background-image: url(./icons.png); -} -@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { - .tsd-kind-icon:before { - background-image: url(./icons@2x.png); - background-size: 238px 204px; - } -} - -.tsd-signature.tsd-kind-icon:before { - background-position: 0 -153px; -} - -.tsd-kind-object-literal > .tsd-kind-icon:before { - background-position: 0px -17px; -} -.tsd-kind-object-literal.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -17px; -} -.tsd-kind-object-literal.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -17px; -} - -.tsd-kind-class > .tsd-kind-icon:before { - background-position: 0px -34px; -} -.tsd-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -34px; -} -.tsd-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -34px; -} - -.tsd-kind-class.tsd-has-type-parameter > .tsd-kind-icon:before { - background-position: 0px -51px; -} -.tsd-kind-class.tsd-has-type-parameter.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -17px -51px; -} -.tsd-kind-class.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -51px; -} - -.tsd-kind-interface > .tsd-kind-icon:before { - background-position: 0px -68px; -} -.tsd-kind-interface.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -68px; -} -.tsd-kind-interface.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -68px; -} - -.tsd-kind-interface.tsd-has-type-parameter > .tsd-kind-icon:before { - background-position: 0px -85px; -} -.tsd-kind-interface.tsd-has-type-parameter.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -17px -85px; -} -.tsd-kind-interface.tsd-has-type-parameter.tsd-is-private - > .tsd-kind-icon:before { - background-position: -34px -85px; -} - -.tsd-kind-namespace > .tsd-kind-icon:before { - background-position: 0px -102px; -} -.tsd-kind-namespace.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -102px; -} -.tsd-kind-namespace.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -102px; -} - -.tsd-kind-module > .tsd-kind-icon:before { - background-position: 0px -102px; -} -.tsd-kind-module.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -102px; -} -.tsd-kind-module.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -102px; -} - -.tsd-kind-enum > .tsd-kind-icon:before { - background-position: 0px -119px; -} -.tsd-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -119px; -} -.tsd-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -119px; -} - -.tsd-kind-enum-member > .tsd-kind-icon:before { - background-position: 0px -136px; -} -.tsd-kind-enum-member.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -136px; -} -.tsd-kind-enum-member.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -136px; -} - -.tsd-kind-signature > .tsd-kind-icon:before { - background-position: 0px -153px; -} -.tsd-kind-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -153px; -} -.tsd-kind-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -153px; -} - -.tsd-kind-type-alias > .tsd-kind-icon:before { - background-position: 0px -170px; -} -.tsd-kind-type-alias.tsd-is-protected > .tsd-kind-icon:before { - background-position: -17px -170px; -} -.tsd-kind-type-alias.tsd-is-private > .tsd-kind-icon:before { - background-position: -34px -170px; -} - -.tsd-kind-type-alias.tsd-has-type-parameter > .tsd-kind-icon:before { - background-position: 0px -187px; -} -.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -17px -187px; -} -.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-private - > .tsd-kind-icon:before { - background-position: -34px -187px; -} - -.tsd-kind-variable > .tsd-kind-icon:before { - background-position: -136px -0px; -} -.tsd-kind-variable.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -0px; -} -.tsd-kind-variable.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -0px; -} -.tsd-kind-variable.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -0px; -} -.tsd-kind-variable.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -0px; -} -.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -0px; -} -.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -0px; -} -.tsd-kind-variable.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -0px; -} -.tsd-kind-variable.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -0px; -} -.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -0px; -} -.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -0px; -} -.tsd-kind-variable.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -0px; -} -.tsd-kind-variable.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -0px; -} - -.tsd-kind-property > .tsd-kind-icon:before { - background-position: -136px -0px; -} -.tsd-kind-property.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -0px; -} -.tsd-kind-property.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -0px; -} -.tsd-kind-property.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -0px; -} -.tsd-kind-property.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -0px; -} -.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -0px; -} -.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -0px; -} -.tsd-kind-property.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -0px; -} -.tsd-kind-property.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -0px; -} -.tsd-kind-property.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -0px; -} -.tsd-kind-property.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -0px; -} -.tsd-kind-property.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -0px; -} -.tsd-kind-property.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -0px; -} - -.tsd-kind-get-signature > .tsd-kind-icon:before { - background-position: -136px -17px; -} -.tsd-kind-get-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -17px; -} -.tsd-kind-get-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -17px; -} -.tsd-kind-get-signature.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -17px; -} - -.tsd-kind-set-signature > .tsd-kind-icon:before { - background-position: -136px -34px; -} -.tsd-kind-set-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -34px; -} -.tsd-kind-set-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -34px; -} -.tsd-kind-set-signature.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -34px; -} - -.tsd-kind-accessor > .tsd-kind-icon:before { - background-position: -136px -51px; -} -.tsd-kind-accessor.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -51px; -} -.tsd-kind-accessor.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -51px; -} -.tsd-kind-accessor.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -51px; -} - -.tsd-kind-function > .tsd-kind-icon:before { - background-position: -136px -68px; -} -.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -68px; -} -.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -68px; -} -.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -68px; -} -.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -68px; -} -.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -68px; -} -.tsd-kind-function.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -68px; -} -.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -68px; -} -.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-function.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -68px; -} -.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -68px; -} - -.tsd-kind-method > .tsd-kind-icon:before { - background-position: -136px -68px; -} -.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -68px; -} -.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -68px; -} -.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -68px; -} -.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -68px; -} -.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -68px; -} -.tsd-kind-method.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -68px; -} -.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -68px; -} -.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-method.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -68px; -} -.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -68px; -} - -.tsd-kind-call-signature > .tsd-kind-icon:before { - background-position: -136px -68px; -} -.tsd-kind-call-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -68px; -} -.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -68px; -} -.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -68px; -} - -.tsd-kind-function.tsd-has-type-parameter > .tsd-kind-icon:before { - background-position: -136px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -153px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class - > .tsd-kind-icon:before { - background-position: -51px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum - > .tsd-kind-icon:before { - background-position: -170px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface - > .tsd-kind-icon:before { - background-position: -204px -85px; -} -.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -85px; -} - -.tsd-kind-method.tsd-has-type-parameter > .tsd-kind-icon:before { - background-position: -136px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -153px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class - > .tsd-kind-icon:before { - background-position: -51px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum - > .tsd-kind-icon:before { - background-position: -170px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface - > .tsd-kind-icon:before { - background-position: -204px -85px; -} -.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -85px; -} - -.tsd-kind-constructor > .tsd-kind-icon:before { - background-position: -136px -102px; -} -.tsd-kind-constructor.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -102px; -} -.tsd-kind-constructor.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -102px; -} -.tsd-kind-constructor.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -102px; -} - -.tsd-kind-constructor-signature > .tsd-kind-icon:before { - background-position: -136px -102px; -} -.tsd-kind-constructor-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -102px; -} -.tsd-kind-constructor-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-interface - > .tsd-kind-icon:before { - background-position: -204px -102px; -} -.tsd-kind-constructor-signature.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -102px; -} - -.tsd-kind-index-signature > .tsd-kind-icon:before { - background-position: -136px -119px; -} -.tsd-kind-index-signature.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -119px; -} -.tsd-kind-index-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -119px; -} -.tsd-kind-index-signature.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -119px; -} - -.tsd-kind-event > .tsd-kind-icon:before { - background-position: -136px -136px; -} -.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -136px; -} -.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -136px; -} -.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -136px; -} -.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -136px; -} -.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -136px; -} -.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -136px; -} -.tsd-kind-event.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -136px; -} -.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -136px; -} -.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -136px; -} -.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -136px; -} -.tsd-kind-event.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -136px; -} -.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -136px; -} - -.tsd-is-static > .tsd-kind-icon:before { - background-position: -136px -153px; -} -.tsd-is-static.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -153px; -} -.tsd-is-static.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -153px; -} -.tsd-is-static.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -153px; -} -.tsd-is-static.tsd-parent-kind-class.tsd-is-inherited > .tsd-kind-icon:before { - background-position: -68px -153px; -} -.tsd-is-static.tsd-parent-kind-class.tsd-is-protected > .tsd-kind-icon:before { - background-position: -85px -153px; -} -.tsd-is-static.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -153px; -} -.tsd-is-static.tsd-parent-kind-class.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -153px; -} -.tsd-is-static.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -153px; -} -.tsd-is-static.tsd-parent-kind-enum.tsd-is-protected > .tsd-kind-icon:before { - background-position: -187px -153px; -} -.tsd-is-static.tsd-parent-kind-enum.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -153px; -} -.tsd-is-static.tsd-parent-kind-interface > .tsd-kind-icon:before { - background-position: -204px -153px; -} -.tsd-is-static.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -153px; -} - -.tsd-is-static.tsd-kind-function > .tsd-kind-icon:before { - background-position: -136px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface - > .tsd-kind-icon:before { - background-position: -204px -170px; -} -.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -170px; -} - -.tsd-is-static.tsd-kind-method > .tsd-kind-icon:before { - background-position: -136px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface - > .tsd-kind-icon:before { - background-position: -204px -170px; -} -.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -170px; -} - -.tsd-is-static.tsd-kind-call-signature > .tsd-kind-icon:before { - background-position: -136px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -153px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class - > .tsd-kind-icon:before { - background-position: -51px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum - > .tsd-kind-icon:before { - background-position: -170px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface - > .tsd-kind-icon:before { - background-position: -204px -170px; -} -.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -170px; -} - -.tsd-is-static.tsd-kind-event > .tsd-kind-icon:before { - background-position: -136px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-is-protected > .tsd-kind-icon:before { - background-position: -153px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-is-private > .tsd-kind-icon:before { - background-position: -119px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-class > .tsd-kind-icon:before { - background-position: -51px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -68px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -85px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -102px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum > .tsd-kind-icon:before { - background-position: -170px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected - > .tsd-kind-icon:before { - background-position: -187px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private - > .tsd-kind-icon:before { - background-position: -119px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface - > .tsd-kind-icon:before { - background-position: -204px -187px; -} -.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited - > .tsd-kind-icon:before { - background-position: -221px -187px; -} diff --git a/docs/assets/icons.js b/docs/assets/icons.js new file mode 100644 index 00000000..e88e8ca7 --- /dev/null +++ b/docs/assets/icons.js @@ -0,0 +1,18 @@ +(function() { + addIcons(); + function addIcons() { + if (document.readyState === "loading") return document.addEventListener("DOMContentLoaded", addIcons); + const svg = document.body.appendChild(document.createElementNS("http://www.w3.org/2000/svg", "svg")); + svg.innerHTML = `""`; + svg.style.display = "none"; + if (location.protocol === "file:") updateUseElements(); + } + + function updateUseElements() { + document.querySelectorAll("use").forEach(el => { + if (el.getAttribute("href").includes("#icon-")) { + el.setAttribute("href", el.getAttribute("href").replace(/.*#/, "#")); + } + }); + } +})() \ No newline at end of file diff --git a/docs/assets/icons.png b/docs/assets/icons.png deleted file mode 100644 index 3836d5fe..00000000 Binary files a/docs/assets/icons.png and /dev/null differ diff --git a/docs/assets/icons.svg b/docs/assets/icons.svg new file mode 100644 index 00000000..e371b8b5 --- /dev/null +++ b/docs/assets/icons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/assets/icons@2x.png b/docs/assets/icons@2x.png deleted file mode 100644 index 5a209e2f..00000000 Binary files a/docs/assets/icons@2x.png and /dev/null differ diff --git a/docs/assets/main.js b/docs/assets/main.js index 99f331b2..35728810 100644 --- a/docs/assets/main.js +++ b/docs/assets/main.js @@ -1,52 +1,60 @@ -(()=>{var Ce=Object.create;var J=Object.defineProperty;var Pe=Object.getOwnPropertyDescriptor;var Oe=Object.getOwnPropertyNames;var Re=Object.getPrototypeOf,_e=Object.prototype.hasOwnProperty;var Me=t=>J(t,"__esModule",{value:!0});var Fe=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var De=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Oe(e))!_e.call(t,i)&&(r||i!=="default")&&J(t,i,{get:()=>e[i],enumerable:!(n=Pe(e,i))||n.enumerable});return t},Ae=(t,e)=>De(Me(J(t!=null?Ce(Re(t)):{},"default",!e&&t&&t.__esModule?{get:()=>t.default,enumerable:!0}:{value:t,enumerable:!0})),t);var de=Fe((ce,he)=>{(function(){var t=function(e){var r=new t.Builder;return r.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),r.searchPipeline.add(t.stemmer),e.call(r,r),r.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(r){e.console&&console.warn&&console.warn(r)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var r=Object.create(null),n=Object.keys(e),i=0;i0){var h=t.utils.clone(r)||{};h.position=[a,l],h.index=s.length,s.push(new t.Token(n.slice(a,o),h))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,r){r in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+r),e.label=r,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var r=e.label&&e.label in this.registeredFunctions;r||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. -`,e)},t.Pipeline.load=function(e){var r=new t.Pipeline;return e.forEach(function(n){var i=t.Pipeline.registeredFunctions[n];if(i)r.add(i);else throw new Error("Cannot load unregistered function: "+n)}),r},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(r){t.Pipeline.warnIfFunctionNotRegistered(r),this._stack.push(r)},this)},t.Pipeline.prototype.after=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");n=n+1,this._stack.splice(n,0,r)},t.Pipeline.prototype.before=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");this._stack.splice(n,0,r)},t.Pipeline.prototype.remove=function(e){var r=this._stack.indexOf(e);r!=-1&&this._stack.splice(r,1)},t.Pipeline.prototype.run=function(e){for(var r=this._stack.length,n=0;n1&&(oe&&(n=s),o!=e);)i=n-r,s=r+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ou?h+=2:a==u&&(r+=n[l+1]*i[h+1],l+=2,h+=2);return r},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),r=1,n=0;r0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}if(s.str.length==0&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}s.str.length==1&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var h=s.str.charAt(0),p=s.str.charAt(1),v;p in s.node.edges?v=s.node.edges[p]:(v=new t.TokenSet,s.node.edges[p]=v),s.str.length==1&&(v.final=!0),i.push({node:v,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return n},t.TokenSet.fromString=function(e){for(var r=new t.TokenSet,n=r,i=0,s=e.length;i=e;r--){var n=this.uncheckedNodes[r],i=n.child.toString();i in this.minimizedNodes?n.parent.edges[n.char]=this.minimizedNodes[i]:(n.child._str=i,this.minimizedNodes[i]=n.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(r){var n=new t.QueryParser(e,r);n.parse()})},t.Index.prototype.query=function(e){for(var r=new t.Query(this.fields),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),u=0;u1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,r){var n=e[this._ref],i=Object.keys(this._fields);this._documents[n]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,r;do e=this.next(),r=e.charCodeAt(0);while(r>47&&r<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var r=e.next();if(r==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(r.charCodeAt(0)==92){e.escapeCharacter();continue}if(r==":")return t.QueryLexer.lexField;if(r=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(r=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(r=="+"&&e.width()===1||r=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(r.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,r){this.lexer=new t.QueryLexer(e),this.query=r,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var r=e.peekLexeme();if(r!=null)switch(r.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(n+=" with value '"+r.str+"'"),new t.QueryParseError(n,r.start,r.end)}},t.QueryParser.parsePresence=function(e){var r=e.consumeLexeme();if(r!=null){switch(r.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var n="unrecognised presence operator'"+r.str+"'";throw new t.QueryParseError(n,r.start,r.end)}var i=e.peekLexeme();if(i==null){var n="expecting term or field, found nothing";throw new t.QueryParseError(n,r.start,r.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(n,i.start,i.end)}}},t.QueryParser.parseField=function(e){var r=e.consumeLexeme();if(r!=null){if(e.query.allFields.indexOf(r.str)==-1){var n=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+r.str+"', possible fields: "+n;throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.fields=[r.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,r.start,r.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var r=e.consumeLexeme();if(r!=null){e.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var n=e.peekLexeme();if(n==null){e.nextClause();return}switch(n.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+n.type+"'";throw new t.QueryParseError(i,n.start,n.end)}}},t.QueryParser.parseEditDistance=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="edit distance must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.editDistance=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="boost must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.boost=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,r){typeof define=="function"&&define.amd?define(r):typeof ce=="object"?he.exports=r():e.lunr=r()}(this,function(){return t})})()});var le=[];function N(t,e){le.push({selector:e,constructor:t})}var X=class{constructor(){this.createComponents(document.body)}createComponents(e){le.forEach(r=>{e.querySelectorAll(r.selector).forEach(n=>{n.dataset.hasInstance||(new r.constructor({el:n}),n.dataset.hasInstance=String(!0))})})}};var Q=class{constructor(e){this.el=e.el}};var Z=class{constructor(){this.listeners={}}addEventListener(e,r){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push(r)}removeEventListener(e,r){if(!(e in this.listeners))return;let n=this.listeners[e];for(let i=0,s=n.length;i{let r=Date.now();return(...n)=>{r+e-Date.now()<0&&(t(...n),r=Date.now())}};var ee=class extends Z{constructor(){super();this.scrollTop=0;this.lastY=0;this.width=0;this.height=0;this.showToolbar=!0;this.toolbar=document.querySelector(".tsd-page-toolbar"),this.secondaryNav=document.querySelector(".tsd-navigation.secondary"),window.addEventListener("scroll",K(()=>this.onScroll(),10)),window.addEventListener("resize",K(()=>this.onResize(),10)),this.onResize(),this.onScroll()}triggerResize(){let e=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(e)}onResize(){this.width=window.innerWidth||0,this.height=window.innerHeight||0;let e=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(e)}onScroll(){this.scrollTop=window.scrollY||0;let e=new CustomEvent("scroll",{detail:{scrollTop:this.scrollTop}});this.dispatchEvent(e),this.hideShowToolbar()}hideShowToolbar(){var r;let e=this.showToolbar;this.showToolbar=this.lastY>=this.scrollTop||this.scrollTop<=0,e!==this.showToolbar&&(this.toolbar.classList.toggle("tsd-page-toolbar--hide"),(r=this.secondaryNav)==null||r.classList.toggle("tsd-navigation--toolbar-hide")),this.lastY=this.scrollTop}},I=ee;I.instance=new ee;var te=class extends Q{constructor(e){super(e);this.anchors=[];this.index=-1;I.instance.addEventListener("resize",()=>this.onResize()),I.instance.addEventListener("scroll",r=>this.onScroll(r)),this.createAnchors()}createAnchors(){let e=window.location.href;e.indexOf("#")!=-1&&(e=e.substr(0,e.indexOf("#"))),this.el.querySelectorAll("a").forEach(r=>{let n=r.href;if(n.indexOf("#")==-1||n.substr(0,e.length)!=e)return;let i=n.substr(n.indexOf("#")+1),s=document.querySelector("a.tsd-anchor[name="+i+"]"),o=r.parentNode;!s||!o||this.anchors.push({link:o,anchor:s,position:0})}),this.onResize()}onResize(){let e;for(let n=0,i=this.anchors.length;nn.position-i.position);let r=new CustomEvent("scroll",{detail:{scrollTop:I.instance.scrollTop}});this.onScroll(r)}onScroll(e){let r=e.detail.scrollTop+5,n=this.anchors,i=n.length-1,s=this.index;for(;s>-1&&n[s].position>r;)s-=1;for(;s-1&&this.anchors[this.index].link.classList.remove("focus"),this.index=s,this.index>-1&&this.anchors[this.index].link.classList.add("focus"))}};var ue=(t,e=100)=>{let r;return(...n)=>{clearTimeout(r),r=setTimeout(()=>t(n),e)}};var fe=Ae(de());function pe(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("search-script");t.classList.add("loading"),e&&(e.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),e.addEventListener("load",()=>{t.classList.remove("loading"),t.classList.add("ready")}),window.searchData&&t.classList.remove("loading"));let r=document.querySelector("#tsd-search input"),n=document.querySelector("#tsd-search .results");if(!r||!n)throw new Error("The input field or the result list wrapper was not found");let i=!1;n.addEventListener("mousedown",()=>i=!0),n.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),r.addEventListener("focus",()=>t.classList.add("has-focus")),r.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Ve(t,n,r,s)}function Ve(t,e,r,n){r.addEventListener("input",ue(()=>{ze(t,e,r,n)},200));let i=!1;r.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Ne(e,r):s.key=="Escape"?r.blur():s.key=="ArrowUp"?me(e,-1):s.key==="ArrowDown"?me(e,1):i=!1}),r.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!r.matches(":focus")&&s.key==="/"&&(r.focus(),s.preventDefault())})}function He(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=fe.Index.load(window.searchData.index))}function ze(t,e,r,n){if(He(n,t),!n.index||!n.data)return;e.textContent="";let i=r.value.trim(),s=n.index.search(`*${i}*`);for(let o=0,a=Math.min(10,s.length);o${ve(u.parent,i)}.${l}`);let h=document.createElement("li");h.classList.value=u.classes;let p=document.createElement("a");p.href=n.base+u.url,p.classList.add("tsd-kind-icon"),p.innerHTML=l,h.append(p),e.appendChild(h)}}function me(t,e){let r=t.querySelector(".current");if(!r)r=t.querySelector(e==1?"li:first-child":"li:last-child"),r&&r.classList.add("current");else{let n=r;if(e===1)do n=n.nextElementSibling;while(n instanceof HTMLElement&&n.offsetParent==null);else do n=n.previousElementSibling;while(n instanceof HTMLElement&&n.offsetParent==null);n&&(r.classList.remove("current"),n.classList.add("current"))}}function Ne(t,e){let r=t.querySelector(".current");if(r||(r=t.querySelector("li:first-child")),r){let n=r.querySelector("a");n&&(window.location.href=n.href),e.blur()}}function ve(t,e){if(e==="")return t;let r=t.toLocaleLowerCase(),n=e.toLocaleLowerCase(),i=[],s=0,o=r.indexOf(n);for(;o!=-1;)i.push(re(t.substring(s,o)),`${re(t.substring(o,o+n.length))}`),s=o+n.length,o=r.indexOf(n,s);return i.push(re(t.substring(s))),i.join("")}var je={"&":"&","<":"<",">":">","'":"'",'"':"""};function re(t){return t.replace(/[&<>"'"]/g,e=>je[e])}var ge=class{constructor(e,r){this.signature=e,this.description=r}addClass(e){return this.signature.classList.add(e),this.description.classList.add(e),this}removeClass(e){return this.signature.classList.remove(e),this.description.classList.remove(e),this}},ne=class extends Q{constructor(e){super(e);this.groups=[];this.index=-1;this.createGroups(),this.container&&(this.el.classList.add("active"),Array.from(this.el.children).forEach(r=>{r.addEventListener("touchstart",n=>this.onClick(n)),r.addEventListener("click",n=>this.onClick(n))}),this.container.classList.add("active"),this.setIndex(0))}setIndex(e){if(e<0&&(e=0),e>this.groups.length-1&&(e=this.groups.length-1),this.index==e)return;let r=this.groups[e];if(this.index>-1){let n=this.groups[this.index];n.removeClass("current").addClass("fade-out"),r.addClass("current"),r.addClass("fade-in"),I.instance.triggerResize(),setTimeout(()=>{n.removeClass("fade-out"),r.removeClass("fade-in")},300)}else r.addClass("current"),I.instance.triggerResize();this.index=e}createGroups(){let e=this.el.children;if(e.length<2)return;this.container=this.el.nextElementSibling;let r=this.container.children;this.groups=[];for(let n=0;n{r.signature===e.currentTarget&&this.setIndex(n)})}};var C="mousedown",ye="mousemove",_="mouseup",G={x:0,y:0},xe=!1,ie=!1,Be=!1,A=!1,Le=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(Le?"is-mobile":"not-mobile");Le&&"ontouchstart"in document.documentElement&&(Be=!0,C="touchstart",ye="touchmove",_="touchend");document.addEventListener(C,t=>{ie=!0,A=!1;let e=C=="touchstart"?t.targetTouches[0]:t;G.y=e.pageY||0,G.x=e.pageX||0});document.addEventListener(ye,t=>{if(!!ie&&!A){let e=C=="touchstart"?t.targetTouches[0]:t,r=G.x-(e.pageX||0),n=G.y-(e.pageY||0);A=Math.sqrt(r*r+n*n)>10}});document.addEventListener(_,()=>{ie=!1});document.addEventListener("click",t=>{xe&&(t.preventDefault(),t.stopImmediatePropagation(),xe=!1)});var se=class extends Q{constructor(e){super(e);this.className=this.el.dataset.toggle||"",this.el.addEventListener(_,r=>this.onPointerUp(r)),this.el.addEventListener("click",r=>r.preventDefault()),document.addEventListener(C,r=>this.onDocumentPointerDown(r)),document.addEventListener(_,r=>this.onDocumentPointerUp(r))}setActive(e){if(this.active==e)return;this.active=e,document.documentElement.classList.toggle("has-"+this.className,e),this.el.classList.toggle("active",e);let r=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(r),setTimeout(()=>document.documentElement.classList.remove(r),500)}onPointerUp(e){A||(this.setActive(!0),e.preventDefault())}onDocumentPointerDown(e){if(this.active){if(e.target.closest(".col-menu, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(e){if(!A&&this.active&&e.target.closest(".col-menu")){let r=e.target.closest("a");if(r){let n=window.location.href;n.indexOf("#")!=-1&&(n=n.substr(0,n.indexOf("#"))),r.href.substr(0,n.length)==n&&setTimeout(()=>this.setActive(!1),250)}}}};var oe=class{constructor(e,r){this.key=e,this.value=r,this.defaultValue=r,this.initialize(),window.localStorage[this.key]&&this.setValue(this.fromLocalStorage(window.localStorage[this.key]))}initialize(){}setValue(e){if(this.value==e)return;let r=this.value;this.value=e,window.localStorage[this.key]=this.toLocalStorage(e),this.handleValueChange(r,e)}},ae=class extends oe{initialize(){let e=document.querySelector("#tsd-filter-"+this.key);!e||(this.checkbox=e,this.checkbox.addEventListener("change",()=>{this.setValue(this.checkbox.checked)}))}handleValueChange(e,r){!this.checkbox||(this.checkbox.checked=this.value,document.documentElement.classList.toggle("toggle-"+this.key,this.value!=this.defaultValue))}fromLocalStorage(e){return e=="true"}toLocalStorage(e){return e?"true":"false"}},Ee=class extends oe{initialize(){document.documentElement.classList.add("toggle-"+this.key+this.value);let e=document.querySelector("#tsd-filter-"+this.key);if(!e)return;this.select=e;let r=()=>{this.select.classList.add("active")},n=()=>{this.select.classList.remove("active")};this.select.addEventListener(C,r),this.select.addEventListener("mouseover",r),this.select.addEventListener("mouseleave",n),this.select.querySelectorAll("li").forEach(i=>{i.addEventListener(_,s=>{e.classList.remove("active"),this.setValue(s.target.dataset.value||"")})}),document.addEventListener(C,i=>{this.select.contains(i.target)||this.select.classList.remove("active")})}handleValueChange(e,r){this.select.querySelectorAll("li.selected").forEach(s=>{s.classList.remove("selected")});let n=this.select.querySelector('li[data-value="'+r+'"]'),i=this.select.querySelector(".tsd-select-label");n&&i&&(n.classList.add("selected"),i.textContent=n.textContent),document.documentElement.classList.remove("toggle-"+e),document.documentElement.classList.add("toggle-"+r)}fromLocalStorage(e){return e}toLocalStorage(e){return e}},Y=class extends Q{constructor(e){super(e);this.optionVisibility=new Ee("visibility","private"),this.optionInherited=new ae("inherited",!0),this.optionExternals=new ae("externals",!0)}static isSupported(){try{return typeof window.localStorage!="undefined"}catch{return!1}}};function be(t){let e=localStorage.getItem("tsd-theme")||"os";t.value=e,we(e),t.addEventListener("change",()=>{localStorage.setItem("tsd-theme",t.value),we(t.value)})}function we(t){switch(t){case"os":document.body.classList.remove("light","dark");break;case"light":document.body.classList.remove("dark"),document.body.classList.add("light");break;case"dark":document.body.classList.remove("light"),document.body.classList.add("dark");break}}pe();N(te,".menu-highlight");N(ne,".tsd-signatures");N(se,"a[data-toggle]");Y.isSupported()?N(Y,"#tsd-filter"):document.documentElement.classList.add("no-filter");var Te=document.getElementById("theme");Te&&be(Te);var qe=new X;Object.defineProperty(window,"app",{value:qe});})(); -/*! - * lunr.Builder - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.Index - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.Pipeline - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.Set - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.TokenSet - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.Vector - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.stemmer - * Copyright (C) 2020 Oliver Nightingale - * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt - */ -/*! - * lunr.stopWordFilter - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.tokenizer - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.trimmer - * Copyright (C) 2020 Oliver Nightingale - */ -/*! - * lunr.utils - * Copyright (C) 2020 Oliver Nightingale - */ -/** - * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 - * Copyright (C) 2020 Oliver Nightingale - * @license MIT - */ +"use strict"; +window.translations={"copy":"Copy","copied":"Copied!","normally_hidden":"This member is normally hidden due to your filter settings."}; +"use strict";(()=>{var Pe=Object.create;var ie=Object.defineProperty;var Oe=Object.getOwnPropertyDescriptor;var _e=Object.getOwnPropertyNames;var Re=Object.getPrototypeOf,Me=Object.prototype.hasOwnProperty;var Fe=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var De=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of _e(e))!Me.call(t,i)&&i!==n&&ie(t,i,{get:()=>e[i],enumerable:!(r=Oe(e,i))||r.enumerable});return t};var Ae=(t,e,n)=>(n=t!=null?Pe(Re(t)):{},De(e||!t||!t.__esModule?ie(n,"default",{value:t,enumerable:!0}):n,t));var ue=Fe((ae,le)=>{(function(){var t=function(e){var n=new t.Builder;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),n.searchPipeline.add(t.stemmer),e.call(n,n),n.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(n){e.console&&console.warn&&console.warn(n)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var n=Object.create(null),r=Object.keys(e),i=0;i0){var d=t.utils.clone(n)||{};d.position=[a,u],d.index=s.length,s.push(new t.Token(r.slice(a,o),d))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,n){n in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. +`,e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(r){var i=t.Pipeline.registeredFunctions[r];if(i)n.add(i);else throw new Error("Cannot load unregistered function: "+r)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(n){t.Pipeline.warnIfFunctionNotRegistered(n),this._stack.push(n)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");r=r+1,this._stack.splice(r,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var r=this._stack.indexOf(e);if(r==-1)throw new Error("Cannot find existingFn");this._stack.splice(r,0,n)},t.Pipeline.prototype.remove=function(e){var n=this._stack.indexOf(e);n!=-1&&this._stack.splice(n,1)},t.Pipeline.prototype.run=function(e){for(var n=this._stack.length,r=0;r1&&(oe&&(r=s),o!=e);)i=r-n,s=n+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ol?d+=2:a==l&&(n+=r[u+1]*i[d+1],u+=2,d+=2);return n},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),n=1,r=0;n0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}if(s.str.length==0&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}s.str.length==1&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var d=s.str.charAt(0),m=s.str.charAt(1),p;m in s.node.edges?p=s.node.edges[m]:(p=new t.TokenSet,s.node.edges[m]=p),s.str.length==1&&(p.final=!0),i.push({node:p,editsRemaining:s.editsRemaining-1,str:d+s.str.slice(2)})}}}return r},t.TokenSet.fromString=function(e){for(var n=new t.TokenSet,r=n,i=0,s=e.length;i=e;n--){var r=this.uncheckedNodes[n],i=r.child.toString();i in this.minimizedNodes?r.parent.edges[r.char]=this.minimizedNodes[i]:(r.child._str=i,this.minimizedNodes[i]=r.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(n){var r=new t.QueryParser(e,n);r.parse()})},t.Index.prototype.query=function(e){for(var n=new t.Query(this.fields),r=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),l=0;l1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,n){var r=e[this._ref],i=Object.keys(this._fields);this._documents[r]=n||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,n;do e=this.next(),n=e.charCodeAt(0);while(n>47&&n<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var n=e.next();if(n==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(n.charCodeAt(0)==92){e.escapeCharacter();continue}if(n==":")return t.QueryLexer.lexField;if(n=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(n=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(n=="+"&&e.width()===1||n=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(n.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,n){this.lexer=new t.QueryLexer(e),this.query=n,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var n=e.peekLexeme();if(n!=null)switch(n.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expected either a field or a term, found "+n.type;throw n.str.length>=1&&(r+=" with value '"+n.str+"'"),new t.QueryParseError(r,n.start,n.end)}},t.QueryParser.parsePresence=function(e){var n=e.consumeLexeme();if(n!=null){switch(n.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var r="unrecognised presence operator'"+n.str+"'";throw new t.QueryParseError(r,n.start,n.end)}var i=e.peekLexeme();if(i==null){var r="expecting term or field, found nothing";throw new t.QueryParseError(r,n.start,n.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var r="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(r,i.start,i.end)}}},t.QueryParser.parseField=function(e){var n=e.consumeLexeme();if(n!=null){if(e.query.allFields.indexOf(n.str)==-1){var r=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+n.str+"', possible fields: "+r;throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.fields=[n.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,n.start,n.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var n=e.consumeLexeme();if(n!=null){e.currentClause.term=n.str.toLowerCase(),n.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var r=e.peekLexeme();if(r==null){e.nextClause();return}switch(r.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+r.type+"'";throw new t.QueryParseError(i,r.start,r.end)}}},t.QueryParser.parseEditDistance=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="edit distance must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.editDistance=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var n=e.consumeLexeme();if(n!=null){var r=parseInt(n.str,10);if(isNaN(r)){var i="boost must be numeric";throw new t.QueryParseError(i,n.start,n.end)}e.currentClause.boost=r;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,n){typeof define=="function"&&define.amd?define(n):typeof ae=="object"?le.exports=n():e.lunr=n()}(this,function(){return t})})()});var se=[];function G(t,e){se.push({selector:e,constructor:t})}var U=class{constructor(){this.alwaysVisibleMember=null;this.createComponents(document.body),this.ensureFocusedElementVisible(),this.listenForCodeCopies(),window.addEventListener("hashchange",()=>this.ensureFocusedElementVisible()),document.body.style.display||(this.ensureFocusedElementVisible(),this.updateIndexVisibility(),this.scrollToHash())}createComponents(e){se.forEach(n=>{e.querySelectorAll(n.selector).forEach(r=>{r.dataset.hasInstance||(new n.constructor({el:r,app:this}),r.dataset.hasInstance=String(!0))})})}filterChanged(){this.ensureFocusedElementVisible()}showPage(){document.body.style.display&&(document.body.style.removeProperty("display"),this.ensureFocusedElementVisible(),this.updateIndexVisibility(),this.scrollToHash())}scrollToHash(){if(location.hash){let e=document.getElementById(location.hash.substring(1));if(!e)return;e.scrollIntoView({behavior:"instant",block:"start"})}}ensureActivePageVisible(){let e=document.querySelector(".tsd-navigation .current"),n=e?.parentElement;for(;n&&!n.classList.contains(".tsd-navigation");)n instanceof HTMLDetailsElement&&(n.open=!0),n=n.parentElement;if(e&&!Ve(e)){let r=e.getBoundingClientRect().top-document.documentElement.clientHeight/4;document.querySelector(".site-menu").scrollTop=r,document.querySelector(".col-sidebar").scrollTop=r}}updateIndexVisibility(){let e=document.querySelector(".tsd-index-content"),n=e?.open;e&&(e.open=!0),document.querySelectorAll(".tsd-index-section").forEach(r=>{r.style.display="block";let i=Array.from(r.querySelectorAll(".tsd-index-link")).every(s=>s.offsetParent==null);r.style.display=i?"none":"block"}),e&&(e.open=n)}ensureFocusedElementVisible(){if(this.alwaysVisibleMember&&(this.alwaysVisibleMember.classList.remove("always-visible"),this.alwaysVisibleMember.firstElementChild.remove(),this.alwaysVisibleMember=null),!location.hash)return;let e=document.getElementById(location.hash.substring(1));if(!e)return;let n=e.parentElement;for(;n&&n.tagName!=="SECTION";)n=n.parentElement;if(!n)return;let r=n.offsetParent==null,i=n;for(;i!==document.body;)i instanceof HTMLDetailsElement&&(i.open=!0),i=i.parentElement;if(n.offsetParent==null){this.alwaysVisibleMember=n,n.classList.add("always-visible");let s=document.createElement("p");s.classList.add("warning"),s.textContent=window.translations.normally_hidden,n.prepend(s)}r&&e.scrollIntoView()}listenForCodeCopies(){document.querySelectorAll("pre > button").forEach(e=>{let n;e.addEventListener("click",()=>{e.previousElementSibling instanceof HTMLElement&&navigator.clipboard.writeText(e.previousElementSibling.innerText.trim()),e.textContent=window.translations.copied,e.classList.add("visible"),clearTimeout(n),n=setTimeout(()=>{e.classList.remove("visible"),n=setTimeout(()=>{e.textContent=window.translations.copy},100)},1e3)})})}};function Ve(t){let e=t.getBoundingClientRect(),n=Math.max(document.documentElement.clientHeight,window.innerHeight);return!(e.bottom<0||e.top-n>=0)}var oe=(t,e=100)=>{let n;return()=>{clearTimeout(n),n=setTimeout(()=>t(),e)}};var pe=Ae(ue());async function ce(t,e){if(!window.searchData)return;let n=await fetch(window.searchData),r=new Blob([await n.arrayBuffer()]).stream().pipeThrough(new DecompressionStream("gzip")),i=await new Response(r).json();t.data=i,t.index=pe.Index.load(i.index),e.classList.remove("loading"),e.classList.add("ready")}function fe(){let t=document.getElementById("tsd-search");if(!t)return;let e={base:t.dataset.base+"/"},n=document.getElementById("tsd-search-script");t.classList.add("loading"),n&&(n.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),n.addEventListener("load",()=>{ce(e,t)}),ce(e,t));let r=document.querySelector("#tsd-search input"),i=document.querySelector("#tsd-search .results");if(!r||!i)throw new Error("The input field or the result list wrapper was not found");i.addEventListener("mouseup",()=>{te(t)}),r.addEventListener("focus",()=>t.classList.add("has-focus")),He(t,i,r,e)}function He(t,e,n,r){n.addEventListener("input",oe(()=>{Ne(t,e,n,r)},200)),n.addEventListener("keydown",i=>{i.key=="Enter"?Be(e,t):i.key=="ArrowUp"?(de(e,n,-1),i.preventDefault()):i.key==="ArrowDown"&&(de(e,n,1),i.preventDefault())}),document.body.addEventListener("keypress",i=>{i.altKey||i.ctrlKey||i.metaKey||!n.matches(":focus")&&i.key==="/"&&(i.preventDefault(),n.focus())}),document.body.addEventListener("keyup",i=>{t.classList.contains("has-focus")&&(i.key==="Escape"||!e.matches(":focus-within")&&!n.matches(":focus"))&&(n.blur(),te(t))})}function te(t){t.classList.remove("has-focus")}function Ne(t,e,n,r){if(!r.index||!r.data)return;e.textContent="";let i=n.value.trim(),s;if(i){let o=i.split(" ").map(a=>a.length?`*${a}*`:"").join(" ");s=r.index.search(o)}else s=[];for(let o=0;oa.score-o.score);for(let o=0,a=Math.min(10,s.length);o`,d=he(l.name,i);globalThis.DEBUG_SEARCH_WEIGHTS&&(d+=` (score: ${s[o].score.toFixed(2)})`),l.parent&&(d=` + ${he(l.parent,i)}.${d}`);let m=document.createElement("li");m.classList.value=l.classes??"";let p=document.createElement("a");p.href=r.base+l.url,p.innerHTML=u+d,m.append(p),p.addEventListener("focus",()=>{e.querySelector(".current")?.classList.remove("current"),m.classList.add("current")}),e.appendChild(m)}}function de(t,e,n){let r=t.querySelector(".current");if(!r)r=t.querySelector(n==1?"li:first-child":"li:last-child"),r&&r.classList.add("current");else{let i=r;if(n===1)do i=i.nextElementSibling??void 0;while(i instanceof HTMLElement&&i.offsetParent==null);else do i=i.previousElementSibling??void 0;while(i instanceof HTMLElement&&i.offsetParent==null);i?(r.classList.remove("current"),i.classList.add("current")):n===-1&&(r.classList.remove("current"),e.focus())}}function Be(t,e){let n=t.querySelector(".current");if(n||(n=t.querySelector("li:first-child")),n){let r=n.querySelector("a");r&&(window.location.href=r.href),te(e)}}function he(t,e){if(e==="")return t;let n=t.toLocaleLowerCase(),r=e.toLocaleLowerCase(),i=[],s=0,o=n.indexOf(r);for(;o!=-1;)i.push(ee(t.substring(s,o)),`${ee(t.substring(o,o+r.length))}`),s=o+r.length,o=n.indexOf(r,s);return i.push(ee(t.substring(s))),i.join("")}var je={"&":"&","<":"<",">":">","'":"'",'"':"""};function ee(t){return t.replace(/[&<>"'"]/g,e=>je[e])}var I=class{constructor(e){this.el=e.el,this.app=e.app}};var F="mousedown",ye="mousemove",N="mouseup",J={x:0,y:0},me=!1,ne=!1,qe=!1,D=!1,ve=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(ve?"is-mobile":"not-mobile");ve&&"ontouchstart"in document.documentElement&&(qe=!0,F="touchstart",ye="touchmove",N="touchend");document.addEventListener(F,t=>{ne=!0,D=!1;let e=F=="touchstart"?t.targetTouches[0]:t;J.y=e.pageY||0,J.x=e.pageX||0});document.addEventListener(ye,t=>{if(ne&&!D){let e=F=="touchstart"?t.targetTouches[0]:t,n=J.x-(e.pageX||0),r=J.y-(e.pageY||0);D=Math.sqrt(n*n+r*r)>10}});document.addEventListener(N,()=>{ne=!1});document.addEventListener("click",t=>{me&&(t.preventDefault(),t.stopImmediatePropagation(),me=!1)});var X=class extends I{constructor(e){super(e),this.className=this.el.dataset.toggle||"",this.el.addEventListener(N,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(F,n=>this.onDocumentPointerDown(n)),document.addEventListener(N,n=>this.onDocumentPointerUp(n))}setActive(e){if(this.active==e)return;this.active=e,document.documentElement.classList.toggle("has-"+this.className,e),this.el.classList.toggle("active",e);let n=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(n),setTimeout(()=>document.documentElement.classList.remove(n),500)}onPointerUp(e){D||(this.setActive(!0),e.preventDefault())}onDocumentPointerDown(e){if(this.active){if(e.target.closest(".col-sidebar, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(e){if(!D&&this.active&&e.target.closest(".col-sidebar")){let n=e.target.closest("a");if(n){let r=window.location.href;r.indexOf("#")!=-1&&(r=r.substring(0,r.indexOf("#"))),n.href.substring(0,r.length)==r&&setTimeout(()=>this.setActive(!1),250)}}}};var re;try{re=localStorage}catch{re={getItem(){return null},setItem(){}}}var Q=re;var ge=document.head.appendChild(document.createElement("style"));ge.dataset.for="filters";var Y=class extends I{constructor(e){super(e),this.key=`filter-${this.el.name}`,this.value=this.el.checked,this.el.addEventListener("change",()=>{this.setLocalStorage(this.el.checked)}),this.setLocalStorage(this.fromLocalStorage()),ge.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; } +`,this.app.updateIndexVisibility()}fromLocalStorage(){let e=Q.getItem(this.key);return e?e==="true":this.el.checked}setLocalStorage(e){Q.setItem(this.key,e.toString()),this.value=e,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),this.app.filterChanged(),this.app.updateIndexVisibility()}};var Z=class extends I{constructor(e){super(e),this.summary=this.el.querySelector(".tsd-accordion-summary"),this.icon=this.summary.querySelector("svg"),this.key=`tsd-accordion-${this.summary.dataset.key??this.summary.textContent.trim().replace(/\s+/g,"-").toLowerCase()}`;let n=Q.getItem(this.key);this.el.open=n?n==="true":this.el.open,this.el.addEventListener("toggle",()=>this.update());let r=this.summary.querySelector("a");r&&r.addEventListener("click",()=>{location.assign(r.href)}),this.update()}update(){this.icon.style.transform=`rotate(${this.el.open?0:-90}deg)`,Q.setItem(this.key,this.el.open.toString())}};function Ee(t){let e=Q.getItem("tsd-theme")||"os";t.value=e,xe(e),t.addEventListener("change",()=>{Q.setItem("tsd-theme",t.value),xe(t.value)})}function xe(t){document.documentElement.dataset.theme=t}var K;function we(){let t=document.getElementById("tsd-nav-script");t&&(t.addEventListener("load",Le),Le())}async function Le(){let t=document.getElementById("tsd-nav-container");if(!t||!window.navigationData)return;let n=await(await fetch(window.navigationData)).arrayBuffer(),r=new Blob([n]).stream().pipeThrough(new DecompressionStream("gzip")),i=await new Response(r).json();K=t.dataset.base,K.endsWith("/")||(K+="/"),t.innerHTML="";for(let s of i)Se(s,t,[]);window.app.createComponents(t),window.app.showPage(),window.app.ensureActivePageVisible()}function Se(t,e,n){let r=e.appendChild(document.createElement("li"));if(t.children){let i=[...n,t.text],s=r.appendChild(document.createElement("details"));s.className=t.class?`${t.class} tsd-accordion`:"tsd-accordion";let o=s.appendChild(document.createElement("summary"));o.className="tsd-accordion-summary",o.dataset.key=i.join("$"),o.innerHTML='',be(t,o);let a=s.appendChild(document.createElement("div"));a.className="tsd-accordion-details";let l=a.appendChild(document.createElement("ul"));l.className="tsd-nested-navigation";for(let u of t.children)Se(u,l,i)}else be(t,r,t.class)}function be(t,e,n){if(t.path){let r=e.appendChild(document.createElement("a"));r.href=K+t.path,n&&(r.className=n),location.pathname===r.pathname&&r.classList.add("current"),t.kind&&(r.innerHTML=``),r.appendChild(document.createElement("span")).textContent=t.text}else e.appendChild(document.createElement("span")).textContent=t.text}G(X,"a[data-toggle]");G(Z,".tsd-accordion");G(Y,".tsd-filter-item input[type=checkbox]");var Te=document.getElementById("tsd-theme");Te&&Ee(Te);var $e=new U;Object.defineProperty(window,"app",{value:$e});fe();we();})(); +/*! Bundled license information: + +lunr/lunr.js: + (** + * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9 + * Copyright (C) 2020 Oliver Nightingale + * @license MIT + *) + (*! + * lunr.utils + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Set + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.tokenizer + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Pipeline + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Vector + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.stemmer + * Copyright (C) 2020 Oliver Nightingale + * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt + *) + (*! + * lunr.stopWordFilter + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.trimmer + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.TokenSet + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Index + * Copyright (C) 2020 Oliver Nightingale + *) + (*! + * lunr.Builder + * Copyright (C) 2020 Oliver Nightingale + *) +*/ diff --git a/docs/assets/navigation.js b/docs/assets/navigation.js new file mode 100644 index 00000000..006e62e5 --- /dev/null +++ b/docs/assets/navigation.js @@ -0,0 +1 @@ +window.navigationData = "data:application/octet-stream;base64,H4sIAAAAAAAAA52ZUW/bNhDHv4ufs2UN2mzLm+sArdEONZK0fRj2QEsniQtNEhRVzx363QeJjkVRxyO1lwTQ/f+/o0jpdKT//Hdl4R+7ulutC8uV/MIMZ3sBH7gsV1crzWyzuluB7A7t9Vzxc2MPYnW1eu7Vd7/9uBppQqgjlI+WWfgAp3bGCuJx0sYAs7AzSoOxJ2xcc0Wcti2UDP39NcIhLRg23Pon3f99OmmYITDRQuaTuldZ3F6YxU6MlB7jUwMH2CihTIgYI8T6d7YBaXnBLHxuwTxa0O4ORhrvh1KxAtrruHya4ubNrZfkLWtho2TF686wKHumSiF3Biq29yYqip0pSXTHRfloTwLuoeKSx8mIkAKnRpo5Pk+2UQfNLN9zwe0pxZyIqQQ7ZtgBLBi3sl+5bXqvkiDtA1RonoRnYbptmZtkWy5E71gN+XinXpzCNvkJbEPihycXpw2htHkdf+J8QS5o3ba8TuOcLBfqPg2J4kMZchPdg4BFiUJDbqLekYT3olzgZ10um6LQkE50eWMJ9kWzAOfy94U4BzyqM1J0rVWHVGGNaNP4d0LtmcjDz7Rp/Ecun6HMmp1QmobvmLGcCYJ5VqRRL60kwXqRpGFfDdMaDME6K7JR/tyksb56YYrzhC3LNDFRCfsemxdfmOjwifbiNCbduSxoWgLpRknbv6P7v6HAywRlWJBo2HHkJBiESfADVGBAFgTyIqFgY09NExEdhR1W9R4q1gl8Vn1BEhRr0l6CFGC6eZzuTOxJQ7i9nG9Obn75/ddXb27mm8zg0T7TvFiK8xYqZcB9+tembkNWGE/xInsSB6O2IjPSe6WeQ0B/LeXzi9HOqLIr/MroOJgmjzspPTQelaay/MGe+62VZgbOTR+yKKgoRXbj2DALtTKnEDmN5rFit7/sjtFWJUSiooXkoSIlwIMmj4u2MD403rekiZdtTRJ9UeblQEqsD45V1ggNPzLzgfEjsxgT6SnIopLnSuV+gOqTQavpGEky1HFr4TADuMspN/6RD2G46v+xp/0xxUfaYzxHrCRMglkk5PjUQ0UOT+esYeHckxCCvFCKEr7mVSeHK+019n7fvp5Zt1J354atjWN8FYUsy03DRYmCzjHKPh44ujJdcb8ueixMSID3nbVK1kZ1GsN5YQJS9KN/BAGF9Y9fR8xEQIGm57ceYH58GxhnW3bfjO7VJ4CSt1qw00dV8wJj+HEKY5Qu1RF97F5ihB1kqRXH7+IlRtgrLiafn9HsIpRV4Vn764St4SVsK8zoIoSVF/jb2V//6RVhFMP3ArO6SNI6OxIICeiJwAR0UCWggCGQMq5l+QCCxepTqCFwsjvs8RV3EcKqdCy/Qjq1iVWzGuaHISPAj5OY6Dro5Aro4ETY8w4R8hHS5x/fcLuLEXYDxblPQW/fCxOQtlFH/NVxkaT1yXRo+jFKIfh33My/p2zox3AIUMbh1GYTq+9emISc8AeunW8B5kakjQ4IFwX58Az/EER/nbIhP1B65kuUzq3qGp8CFyGs34gX9lv6ZT2G55Wj+4gdVN6+/vHXfxU0a12uHwAA" \ No newline at end of file diff --git a/docs/assets/search.js b/docs/assets/search.js index 681561ee..846c71a1 100644 --- a/docs/assets/search.js +++ b/docs/assets/search.js @@ -1 +1 @@ -window.searchData = JSON.parse("{\"kinds\":{\"8\":\"Enumeration\",\"16\":\"Enumeration member\",\"64\":\"Function\",\"256\":\"Interface\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\"},\"rows\":[{\"id\":0,\"kind\":64,\"name\":\"component\",\"url\":\"modules.html#component\",\"classes\":\"tsd-kind-function\"},{\"id\":1,\"kind\":64,\"name\":\"wrapper\",\"url\":\"modules.html#wrapper\",\"classes\":\"tsd-kind-function\"},{\"id\":2,\"kind\":64,\"name\":\"partial\",\"url\":\"modules.html#partial\",\"classes\":\"tsd-kind-function\"},{\"id\":3,\"kind\":64,\"name\":\"prefab\",\"url\":\"modules.html#prefab\",\"classes\":\"tsd-kind-function\"},{\"id\":4,\"kind\":4194304,\"name\":\"BeforeCreateArgs\",\"url\":\"modules.html#BeforeCreateArgs\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":5,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#BeforeCreateArgs.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"BeforeCreateArgs\"},{\"id\":6,\"kind\":1024,\"name\":\"modelId\",\"url\":\"modules.html#BeforeCreateArgs.__type.modelId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type\"},{\"id\":7,\"kind\":2048,\"name\":\"close\",\"url\":\"modules.html#BeforeCreateArgs.__type.close\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type\"},{\"id\":8,\"kind\":2048,\"name\":\"save\",\"url\":\"modules.html#BeforeCreateArgs.__type.save\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type\"},{\"id\":9,\"kind\":1024,\"name\":\"prefab\",\"url\":\"modules.html#BeforeCreateArgs.__type.prefab\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type\"},{\"id\":10,\"kind\":1024,\"name\":\"prefabs\",\"url\":\"modules.html#BeforeCreateArgs.__type.prefabs\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type\"},{\"id\":11,\"kind\":1024,\"name\":\"components\",\"url\":\"modules.html#BeforeCreateArgs.__type.components\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type\"},{\"id\":12,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type\"},{\"id\":13,\"kind\":1024,\"name\":\"helpers\",\"url\":\"modules.html#BeforeCreateArgs.__type.helpers\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type\"},{\"id\":14,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type\"},{\"id\":15,\"kind\":2048,\"name\":\"camelToSnakeCase\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.camelToSnakeCase\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":16,\"kind\":2048,\"name\":\"useCurrentPageId\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.useCurrentPageId\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":17,\"kind\":2048,\"name\":\"useCurrentPartialId\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.useCurrentPartialId\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":18,\"kind\":2048,\"name\":\"useModelQuery\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.useModelQuery\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":19,\"kind\":2048,\"name\":\"usePropertyQuery\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.usePropertyQuery\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":20,\"kind\":2048,\"name\":\"useModelRelationQuery\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.useModelRelationQuery\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":21,\"kind\":2048,\"name\":\"useModelIdSelector\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.useModelIdSelector\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":22,\"kind\":2048,\"name\":\"useActionIdSelector\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.useActionIdSelector\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":23,\"kind\":2048,\"name\":\"usePrefabSelector\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.usePrefabSelector\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":24,\"kind\":2048,\"name\":\"cloneStructure\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.cloneStructure\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":25,\"kind\":2048,\"name\":\"addActionVariable\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.addActionVariable\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":26,\"kind\":2048,\"name\":\"addSchemaModel\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.addSchemaModel\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":27,\"kind\":2048,\"name\":\"addModelAndProperties\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.addModelAndProperties\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":28,\"kind\":2048,\"name\":\"prepareAction\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.prepareAction\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":29,\"kind\":2048,\"name\":\"prepareInput\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.prepareInput\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":30,\"kind\":2048,\"name\":\"getPageAuthenticationProfileId\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.getPageAuthenticationProfileId\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":31,\"kind\":2048,\"name\":\"getPageName\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.getPageName\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":32,\"kind\":2048,\"name\":\"makeBettyInput\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.makeBettyInput\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":33,\"kind\":2048,\"name\":\"makeBettyUpdateInput\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.makeBettyUpdateInput\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":34,\"kind\":1024,\"name\":\"BettyPrefabs\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.BettyPrefabs\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":35,\"kind\":1024,\"name\":\"PropertyKind\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.PropertyKind\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":36,\"kind\":2048,\"name\":\"createUuid\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.createUuid\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":37,\"kind\":2048,\"name\":\"setOption\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.setOption\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":38,\"kind\":2048,\"name\":\"createBlacklist\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.createBlacklist\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":39,\"kind\":2048,\"name\":\"createWrapper\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.createWrapper\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":40,\"kind\":2048,\"name\":\"linkOption\",\"url\":\"modules.html#BeforeCreateArgs.__type.__type-2.linkOption\",\"classes\":\"tsd-kind-method tsd-parent-kind-type-literal\",\"parent\":\"BeforeCreateArgs.__type.__type\"},{\"id\":41,\"kind\":64,\"name\":\"style\",\"url\":\"modules.html#style\",\"classes\":\"tsd-kind-function\"},{\"id\":42,\"kind\":64,\"name\":\"styleReference\",\"url\":\"modules.html#styleReference\",\"classes\":\"tsd-kind-function\"},{\"id\":43,\"kind\":64,\"name\":\"staticColor\",\"url\":\"modules.html#staticColor\",\"classes\":\"tsd-kind-function\"},{\"id\":44,\"kind\":64,\"name\":\"themeColor\",\"url\":\"modules.html#themeColor\",\"classes\":\"tsd-kind-function\"},{\"id\":45,\"kind\":64,\"name\":\"action\",\"url\":\"modules.html#action\",\"classes\":\"tsd-kind-function\"},{\"id\":46,\"kind\":64,\"name\":\"authenticationProfile\",\"url\":\"modules.html#authenticationProfile\",\"classes\":\"tsd-kind-function\"},{\"id\":47,\"kind\":64,\"name\":\"actionInputObjects\",\"url\":\"modules.html#actionInputObjects\",\"classes\":\"tsd-kind-function\"},{\"id\":48,\"kind\":64,\"name\":\"childSelector\",\"url\":\"modules.html#childSelector\",\"classes\":\"tsd-kind-function\"},{\"id\":49,\"kind\":64,\"name\":\"color\",\"url\":\"modules.html#color\",\"classes\":\"tsd-kind-function\"},{\"id\":50,\"kind\":64,\"name\":\"endpoint\",\"url\":\"modules.html#endpoint\",\"classes\":\"tsd-kind-function\"},{\"id\":51,\"kind\":64,\"name\":\"font\",\"url\":\"modules.html#font\",\"classes\":\"tsd-kind-function\"},{\"id\":52,\"kind\":64,\"name\":\"option\",\"url\":\"modules.html#option\",\"classes\":\"tsd-kind-function\"},{\"id\":53,\"kind\":64,\"name\":\"toggle\",\"url\":\"modules.html#toggle\",\"classes\":\"tsd-kind-function\"},{\"id\":54,\"kind\":64,\"name\":\"sizes\",\"url\":\"modules.html#sizes\",\"classes\":\"tsd-kind-function\"},{\"id\":55,\"kind\":64,\"name\":\"size\",\"url\":\"modules.html#size\",\"classes\":\"tsd-kind-function\"},{\"id\":56,\"kind\":64,\"name\":\"variable\",\"url\":\"modules.html#variable\",\"classes\":\"tsd-kind-function\"},{\"id\":57,\"kind\":64,\"name\":\"buttongroup\",\"url\":\"modules.html#buttongroup\",\"classes\":\"tsd-kind-function\"},{\"id\":58,\"kind\":64,\"name\":\"dropdown\",\"url\":\"modules.html#dropdown\",\"classes\":\"tsd-kind-function\"},{\"id\":59,\"kind\":64,\"name\":\"number\",\"url\":\"modules.html#number\",\"classes\":\"tsd-kind-function\"},{\"id\":60,\"kind\":64,\"name\":\"text\",\"url\":\"modules.html#text\",\"classes\":\"tsd-kind-function\"},{\"id\":61,\"kind\":64,\"name\":\"icon\",\"url\":\"modules.html#icon\",\"classes\":\"tsd-kind-function\"},{\"id\":62,\"kind\":64,\"name\":\"filter\",\"url\":\"modules.html#filter\",\"classes\":\"tsd-kind-function\"},{\"id\":63,\"kind\":64,\"name\":\"linked\",\"url\":\"modules.html#linked\",\"classes\":\"tsd-kind-function\"},{\"id\":64,\"kind\":64,\"name\":\"linkedPartial\",\"url\":\"modules.html#linkedPartial\",\"classes\":\"tsd-kind-function\"},{\"id\":65,\"kind\":64,\"name\":\"model\",\"url\":\"modules.html#model\",\"classes\":\"tsd-kind-function\"},{\"id\":66,\"kind\":64,\"name\":\"modelAndRelation\",\"url\":\"modules.html#modelAndRelation\",\"classes\":\"tsd-kind-function\"},{\"id\":67,\"kind\":64,\"name\":\"property\",\"url\":\"modules.html#property\",\"classes\":\"tsd-kind-function\"},{\"id\":68,\"kind\":64,\"name\":\"reconfigure\",\"url\":\"modules.html#reconfigure\",\"classes\":\"tsd-kind-function\"},{\"id\":69,\"kind\":64,\"name\":\"addChild\",\"url\":\"modules.html#addChild\",\"classes\":\"tsd-kind-function\"},{\"id\":70,\"kind\":64,\"name\":\"displayLogic\",\"url\":\"modules.html#displayLogic\",\"classes\":\"tsd-kind-function\"},{\"id\":71,\"kind\":64,\"name\":\"pageVariable\",\"url\":\"modules.html#pageVariable\",\"classes\":\"tsd-kind-function\"},{\"id\":72,\"kind\":64,\"name\":\"showIf\",\"url\":\"modules.html#showIf\",\"classes\":\"tsd-kind-function\"},{\"id\":73,\"kind\":64,\"name\":\"showIfTrue\",\"url\":\"modules.html#showIfTrue\",\"classes\":\"tsd-kind-function\"},{\"id\":74,\"kind\":64,\"name\":\"hideIf\",\"url\":\"modules.html#hideIf\",\"classes\":\"tsd-kind-function\"},{\"id\":75,\"kind\":256,\"name\":\"Prefab\",\"url\":\"interfaces/Prefab.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":76,\"kind\":1024,\"name\":\"actions\",\"url\":\"interfaces/Prefab.html#actions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Prefab\"},{\"id\":77,\"kind\":1024,\"name\":\"beforeCreate\",\"url\":\"interfaces/Prefab.html#beforeCreate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Prefab\"},{\"id\":78,\"kind\":1024,\"name\":\"category\",\"url\":\"interfaces/Prefab.html#category\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Prefab\"},{\"id\":79,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/Prefab.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Prefab\"},{\"id\":80,\"kind\":1024,\"name\":\"keywords\",\"url\":\"interfaces/Prefab.html#keywords\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Prefab\"},{\"id\":81,\"kind\":1024,\"name\":\"icon\",\"url\":\"interfaces/Prefab.html#icon\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Prefab\"},{\"id\":82,\"kind\":1024,\"name\":\"interactions\",\"url\":\"interfaces/Prefab.html#interactions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Prefab\"},{\"id\":83,\"kind\":1024,\"name\":\"structure\",\"url\":\"interfaces/Prefab.html#structure\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Prefab\"},{\"id\":84,\"kind\":1024,\"name\":\"variables\",\"url\":\"interfaces/Prefab.html#variables\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Prefab\"},{\"id\":85,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/Prefab.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Prefab\"},{\"id\":86,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/Prefab.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Prefab\"},{\"id\":87,\"kind\":8,\"name\":\"Icon\",\"url\":\"enums/Icon.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":88,\"kind\":16,\"name\":\"AccordionIcon\",\"url\":\"enums/Icon.html#AccordionIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":89,\"kind\":16,\"name\":\"AccordionItemIcon\",\"url\":\"enums/Icon.html#AccordionItemIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":90,\"kind\":16,\"name\":\"AlertIcon\",\"url\":\"enums/Icon.html#AlertIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":91,\"kind\":16,\"name\":\"AutoCompleteIcon\",\"url\":\"enums/Icon.html#AutoCompleteIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":92,\"kind\":16,\"name\":\"AvatarIcon\",\"url\":\"enums/Icon.html#AvatarIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":93,\"kind\":16,\"name\":\"BarChartIcon\",\"url\":\"enums/Icon.html#BarChartIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":94,\"kind\":16,\"name\":\"BreadcrumbIcon\",\"url\":\"enums/Icon.html#BreadcrumbIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":95,\"kind\":16,\"name\":\"BreadcrumbItemIcon\",\"url\":\"enums/Icon.html#BreadcrumbItemIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":96,\"kind\":16,\"name\":\"ButtonGroupIcon\",\"url\":\"enums/Icon.html#ButtonGroupIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":97,\"kind\":16,\"name\":\"ButtonIcon\",\"url\":\"enums/Icon.html#ButtonIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":98,\"kind\":16,\"name\":\"CardActionsIcon\",\"url\":\"enums/Icon.html#CardActionsIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":99,\"kind\":16,\"name\":\"CardContentIcon\",\"url\":\"enums/Icon.html#CardContentIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":100,\"kind\":16,\"name\":\"CardHeaderIcon\",\"url\":\"enums/Icon.html#CardHeaderIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":101,\"kind\":16,\"name\":\"CardIcon\",\"url\":\"enums/Icon.html#CardIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":102,\"kind\":16,\"name\":\"CardMediaIcon\",\"url\":\"enums/Icon.html#CardMediaIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":103,\"kind\":16,\"name\":\"CheckboxGroupIcon\",\"url\":\"enums/Icon.html#CheckboxGroupIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":104,\"kind\":16,\"name\":\"CheckboxIcon\",\"url\":\"enums/Icon.html#CheckboxIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":105,\"kind\":16,\"name\":\"ChipIcon\",\"url\":\"enums/Icon.html#ChipIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":106,\"kind\":16,\"name\":\"Column2Icon\",\"url\":\"enums/Icon.html#Column2Icon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":107,\"kind\":16,\"name\":\"Column3Icon\",\"url\":\"enums/Icon.html#Column3Icon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":108,\"kind\":16,\"name\":\"ColumnIcon\",\"url\":\"enums/Icon.html#ColumnIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":109,\"kind\":16,\"name\":\"ConditionalIcon\",\"url\":\"enums/Icon.html#ConditionalIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":110,\"kind\":16,\"name\":\"ContainerIcon\",\"url\":\"enums/Icon.html#ContainerIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":111,\"kind\":16,\"name\":\"CreateFormIcon\",\"url\":\"enums/Icon.html#CreateFormIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":112,\"kind\":16,\"name\":\"DataContainer\",\"url\":\"enums/Icon.html#DataContainer\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":113,\"kind\":16,\"name\":\"DataList\",\"url\":\"enums/Icon.html#DataList\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":114,\"kind\":16,\"name\":\"DataTable\",\"url\":\"enums/Icon.html#DataTable\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":115,\"kind\":16,\"name\":\"DataTableBody\",\"url\":\"enums/Icon.html#DataTableBody\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":116,\"kind\":16,\"name\":\"DataTableColumn\",\"url\":\"enums/Icon.html#DataTableColumn\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":117,\"kind\":16,\"name\":\"DataTableHead\",\"url\":\"enums/Icon.html#DataTableHead\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":118,\"kind\":16,\"name\":\"DataTableRow\",\"url\":\"enums/Icon.html#DataTableRow\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":119,\"kind\":16,\"name\":\"DatePickerIcon\",\"url\":\"enums/Icon.html#DatePickerIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":120,\"kind\":16,\"name\":\"DateTimePickerIcon\",\"url\":\"enums/Icon.html#DateTimePickerIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":121,\"kind\":16,\"name\":\"DecimalInputIcon\",\"url\":\"enums/Icon.html#DecimalInputIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":122,\"kind\":16,\"name\":\"DefinitionListIcon\",\"url\":\"enums/Icon.html#DefinitionListIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":123,\"kind\":16,\"name\":\"DeleteRecordIcon\",\"url\":\"enums/Icon.html#DeleteRecordIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":124,\"kind\":16,\"name\":\"DetailViewIcon\",\"url\":\"enums/Icon.html#DetailViewIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":125,\"kind\":16,\"name\":\"DialogIcon\",\"url\":\"enums/Icon.html#DialogIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":126,\"kind\":16,\"name\":\"DrawerIcon\",\"url\":\"enums/Icon.html#DrawerIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":127,\"kind\":16,\"name\":\"DynamicFormIcon\",\"url\":\"enums/Icon.html#DynamicFormIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":128,\"kind\":16,\"name\":\"DynamicTableIcon\",\"url\":\"enums/Icon.html#DynamicTableIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":129,\"kind\":16,\"name\":\"DynamicTilesIcon\",\"url\":\"enums/Icon.html#DynamicTilesIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":130,\"kind\":16,\"name\":\"EmailInputIcon\",\"url\":\"enums/Icon.html#EmailInputIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":131,\"kind\":16,\"name\":\"FileInputIcon\",\"url\":\"enums/Icon.html#FileInputIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":132,\"kind\":16,\"name\":\"FilterIcon\",\"url\":\"enums/Icon.html#FilterIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":133,\"kind\":16,\"name\":\"FormIcon\",\"url\":\"enums/Icon.html#FormIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":134,\"kind\":16,\"name\":\"GridIcon\",\"url\":\"enums/Icon.html#GridIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":135,\"kind\":16,\"name\":\"HiddenInputIcon\",\"url\":\"enums/Icon.html#HiddenInputIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":136,\"kind\":16,\"name\":\"HorizontalRuleIcon\",\"url\":\"enums/Icon.html#HorizontalRuleIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":137,\"kind\":16,\"name\":\"HtmlIcon\",\"url\":\"enums/Icon.html#HtmlIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":138,\"kind\":16,\"name\":\"IbanInputIcon\",\"url\":\"enums/Icon.html#IbanInputIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":139,\"kind\":16,\"name\":\"IconIcon\",\"url\":\"enums/Icon.html#IconIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":140,\"kind\":16,\"name\":\"ImageCarouselIcon\",\"url\":\"enums/Icon.html#ImageCarouselIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":141,\"kind\":16,\"name\":\"ImageIcon\",\"url\":\"enums/Icon.html#ImageIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":142,\"kind\":16,\"name\":\"ImageInputIcon\",\"url\":\"enums/Icon.html#ImageInputIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":143,\"kind\":16,\"name\":\"IncludeIcon\",\"url\":\"enums/Icon.html#IncludeIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":144,\"kind\":16,\"name\":\"LabelIcon\",\"url\":\"enums/Icon.html#LabelIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":145,\"kind\":16,\"name\":\"Layout1Icon\",\"url\":\"enums/Icon.html#Layout1Icon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":146,\"kind\":16,\"name\":\"Layout2Icon\",\"url\":\"enums/Icon.html#Layout2Icon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":147,\"kind\":16,\"name\":\"Layout3333Icon\",\"url\":\"enums/Icon.html#Layout3333Icon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":148,\"kind\":16,\"name\":\"Layout363Icon\",\"url\":\"enums/Icon.html#Layout363Icon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":149,\"kind\":16,\"name\":\"Layout444Icon\",\"url\":\"enums/Icon.html#Layout444Icon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":150,\"kind\":16,\"name\":\"Layout48Icon\",\"url\":\"enums/Icon.html#Layout48Icon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":151,\"kind\":16,\"name\":\"Layout66Icon\",\"url\":\"enums/Icon.html#Layout66Icon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":152,\"kind\":16,\"name\":\"Layout84Icon\",\"url\":\"enums/Icon.html#Layout84Icon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":153,\"kind\":16,\"name\":\"ListItemIcon\",\"url\":\"enums/Icon.html#ListItemIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":154,\"kind\":16,\"name\":\"ListWithDataIcon\",\"url\":\"enums/Icon.html#ListWithDataIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":155,\"kind\":16,\"name\":\"LoginFormIcon\",\"url\":\"enums/Icon.html#LoginFormIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":156,\"kind\":16,\"name\":\"LogoutIcon\",\"url\":\"enums/Icon.html#LogoutIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":157,\"kind\":16,\"name\":\"MenuIcon\",\"url\":\"enums/Icon.html#MenuIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":158,\"kind\":16,\"name\":\"MenuItemIcon\",\"url\":\"enums/Icon.html#MenuItemIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":159,\"kind\":16,\"name\":\"MultiLineIcon\",\"url\":\"enums/Icon.html#MultiLineIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":160,\"kind\":16,\"name\":\"MultiSelectIcon\",\"url\":\"enums/Icon.html#MultiSelectIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":161,\"kind\":16,\"name\":\"NavbarIcon\",\"url\":\"enums/Icon.html#NavbarIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":162,\"kind\":16,\"name\":\"NavItemIcon\",\"url\":\"enums/Icon.html#NavItemIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":163,\"kind\":16,\"name\":\"NavSidebarIcon\",\"url\":\"enums/Icon.html#NavSidebarIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":164,\"kind\":16,\"name\":\"NumberInputIcon\",\"url\":\"enums/Icon.html#NumberInputIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":165,\"kind\":16,\"name\":\"ObectIcon\",\"url\":\"enums/Icon.html#ObectIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":166,\"kind\":16,\"name\":\"OpenPageIcon\",\"url\":\"enums/Icon.html#OpenPageIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":167,\"kind\":16,\"name\":\"OrderedListIcon\",\"url\":\"enums/Icon.html#OrderedListIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":168,\"kind\":16,\"name\":\"PanelIcon\",\"url\":\"enums/Icon.html#PanelIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":169,\"kind\":16,\"name\":\"PaperIcon\",\"url\":\"enums/Icon.html#PaperIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":170,\"kind\":16,\"name\":\"ParagraphIcon\",\"url\":\"enums/Icon.html#ParagraphIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":171,\"kind\":16,\"name\":\"PasswordInputIcon\",\"url\":\"enums/Icon.html#PasswordInputIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":172,\"kind\":16,\"name\":\"PhoneInputIcon\",\"url\":\"enums/Icon.html#PhoneInputIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":173,\"kind\":16,\"name\":\"PieChartIcon\",\"url\":\"enums/Icon.html#PieChartIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":174,\"kind\":16,\"name\":\"PriceInputIcon\",\"url\":\"enums/Icon.html#PriceInputIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":175,\"kind\":16,\"name\":\"ProgressBarIcon\",\"url\":\"enums/Icon.html#ProgressBarIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":176,\"kind\":16,\"name\":\"RadioButtonIcon\",\"url\":\"enums/Icon.html#RadioButtonIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":177,\"kind\":16,\"name\":\"RatingIcon\",\"url\":\"enums/Icon.html#RatingIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":178,\"kind\":16,\"name\":\"RichTextEditorIcon\",\"url\":\"enums/Icon.html#RichTextEditorIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":179,\"kind\":16,\"name\":\"RowColumnIcon\",\"url\":\"enums/Icon.html#RowColumnIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":180,\"kind\":16,\"name\":\"RowIcon\",\"url\":\"enums/Icon.html#RowIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":181,\"kind\":16,\"name\":\"SelectIcon\",\"url\":\"enums/Icon.html#SelectIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":182,\"kind\":16,\"name\":\"SidebarLeftIcon\",\"url\":\"enums/Icon.html#SidebarLeftIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":183,\"kind\":16,\"name\":\"SliderComponentIcon\",\"url\":\"enums/Icon.html#SliderComponentIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":184,\"kind\":16,\"name\":\"SnackbarIcon\",\"url\":\"enums/Icon.html#SnackbarIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":185,\"kind\":16,\"name\":\"StepIcon\",\"url\":\"enums/Icon.html#StepIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":186,\"kind\":16,\"name\":\"StepperIcon\",\"url\":\"enums/Icon.html#StepperIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":187,\"kind\":16,\"name\":\"SubmitButtonIcon\",\"url\":\"enums/Icon.html#SubmitButtonIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":188,\"kind\":16,\"name\":\"SubViewIcon\",\"url\":\"enums/Icon.html#SubViewIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":189,\"kind\":16,\"name\":\"SubViewItemIcon\",\"url\":\"enums/Icon.html#SubViewItemIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":190,\"kind\":16,\"name\":\"SwitcherIcon\",\"url\":\"enums/Icon.html#SwitcherIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":191,\"kind\":16,\"name\":\"TabIcon\",\"url\":\"enums/Icon.html#TabIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":192,\"kind\":16,\"name\":\"Table\",\"url\":\"enums/Icon.html#Table\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":193,\"kind\":16,\"name\":\"TabsIcon\",\"url\":\"enums/Icon.html#TabsIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":194,\"kind\":16,\"name\":\"TextareaIcon\",\"url\":\"enums/Icon.html#TextareaIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":195,\"kind\":16,\"name\":\"TextInputIcon\",\"url\":\"enums/Icon.html#TextInputIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":196,\"kind\":16,\"name\":\"TimePickerIcon\",\"url\":\"enums/Icon.html#TimePickerIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":197,\"kind\":16,\"name\":\"TitleIcon\",\"url\":\"enums/Icon.html#TitleIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":198,\"kind\":16,\"name\":\"UnorderedListIcon\",\"url\":\"enums/Icon.html#UnorderedListIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":199,\"kind\":16,\"name\":\"UpdateFormIcon\",\"url\":\"enums/Icon.html#UpdateFormIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":200,\"kind\":16,\"name\":\"UrlInputIcon\",\"url\":\"enums/Icon.html#UrlInputIcon\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"Icon\"},{\"id\":201,\"kind\":8,\"name\":\"ThemeColor\",\"url\":\"enums/ThemeColor.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":202,\"kind\":16,\"name\":\"INHERIT\",\"url\":\"enums/ThemeColor.html#INHERIT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ThemeColor\"},{\"id\":203,\"kind\":16,\"name\":\"PRIMARY\",\"url\":\"enums/ThemeColor.html#PRIMARY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ThemeColor\"},{\"id\":204,\"kind\":16,\"name\":\"SECONDARY\",\"url\":\"enums/ThemeColor.html#SECONDARY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ThemeColor\"},{\"id\":205,\"kind\":16,\"name\":\"SUCCESS\",\"url\":\"enums/ThemeColor.html#SUCCESS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ThemeColor\"},{\"id\":206,\"kind\":16,\"name\":\"INFO\",\"url\":\"enums/ThemeColor.html#INFO\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ThemeColor\"},{\"id\":207,\"kind\":16,\"name\":\"WARNING\",\"url\":\"enums/ThemeColor.html#WARNING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ThemeColor\"},{\"id\":208,\"kind\":16,\"name\":\"DANGER\",\"url\":\"enums/ThemeColor.html#DANGER\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ThemeColor\"},{\"id\":209,\"kind\":16,\"name\":\"BLACK\",\"url\":\"enums/ThemeColor.html#BLACK\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ThemeColor\"},{\"id\":210,\"kind\":16,\"name\":\"DARK\",\"url\":\"enums/ThemeColor.html#DARK\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ThemeColor\"},{\"id\":211,\"kind\":16,\"name\":\"MEDIUM\",\"url\":\"enums/ThemeColor.html#MEDIUM\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ThemeColor\"},{\"id\":212,\"kind\":16,\"name\":\"LIGHT\",\"url\":\"enums/ThemeColor.html#LIGHT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ThemeColor\"},{\"id\":213,\"kind\":16,\"name\":\"WHITE\",\"url\":\"enums/ThemeColor.html#WHITE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ThemeColor\"},{\"id\":214,\"kind\":16,\"name\":\"ACCENT_1\",\"url\":\"enums/ThemeColor.html#ACCENT_1\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ThemeColor\"},{\"id\":215,\"kind\":16,\"name\":\"ACCENT_2\",\"url\":\"enums/ThemeColor.html#ACCENT_2\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ThemeColor\"},{\"id\":216,\"kind\":16,\"name\":\"ACCENT_3\",\"url\":\"enums/ThemeColor.html#ACCENT_3\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ThemeColor\"},{\"id\":217,\"kind\":16,\"name\":\"TRANSPARENT\",\"url\":\"enums/ThemeColor.html#TRANSPARENT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ThemeColor\"},{\"id\":218,\"kind\":4194304,\"name\":\"PrefabReference\",\"url\":\"modules.html#PrefabReference\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":219,\"kind\":256,\"name\":\"PrefabPartial\",\"url\":\"interfaces/PrefabPartial.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":220,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PrefabPartial.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabPartial\"},{\"id\":221,\"kind\":1024,\"name\":\"partialId\",\"url\":\"interfaces/PrefabPartial.html#partialId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabPartial\"},{\"id\":222,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/PrefabPartial.html#ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabPartial\"},{\"id\":223,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabPartial.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabPartial\"},{\"id\":224,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/PrefabPartial.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabPartial.__type\"},{\"id\":225,\"kind\":256,\"name\":\"PrefabWrapper\",\"url\":\"interfaces/PrefabWrapper.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":226,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PrefabWrapper.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapper\"},{\"id\":227,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/PrefabWrapper.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapper\"},{\"id\":228,\"kind\":1024,\"name\":\"descendants\",\"url\":\"interfaces/PrefabWrapper.html#descendants\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapper\"},{\"id\":229,\"kind\":1024,\"name\":\"optionCategories\",\"url\":\"interfaces/PrefabWrapper.html#optionCategories\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapper\"},{\"id\":230,\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/PrefabWrapper.html#options\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapper\"},{\"id\":231,\"kind\":256,\"name\":\"PrefabComponent\",\"url\":\"interfaces/PrefabComponent.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":232,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/PrefabComponent.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponent\"},{\"id\":233,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PrefabComponent.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponent\"},{\"id\":234,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/PrefabComponent.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponent\"},{\"id\":235,\"kind\":1024,\"name\":\"actions\",\"url\":\"interfaces/PrefabComponent.html#actions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponent\"},{\"id\":236,\"kind\":1024,\"name\":\"descendants\",\"url\":\"interfaces/PrefabComponent.html#descendants\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponent\"},{\"id\":237,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/PrefabComponent.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponent\"},{\"id\":238,\"kind\":1024,\"name\":\"optionCategories\",\"url\":\"interfaces/PrefabComponent.html#optionCategories\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponent\"},{\"id\":239,\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/PrefabComponent.html#options\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponent\"},{\"id\":240,\"kind\":1024,\"name\":\"$afterCreate\",\"url\":\"interfaces/PrefabComponent.html#_afterCreate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponent\"},{\"id\":241,\"kind\":1024,\"name\":\"$afterDelete\",\"url\":\"interfaces/PrefabComponent.html#_afterDelete\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponent\"},{\"id\":242,\"kind\":1024,\"name\":\"$onUpdate\",\"url\":\"interfaces/PrefabComponent.html#_onUpdate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponent\"},{\"id\":243,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/PrefabComponent.html#ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponent\"},{\"id\":244,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabComponent.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabComponent\"},{\"id\":245,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/PrefabComponent.html#__type.id-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponent.__type\"},{\"id\":246,\"kind\":1024,\"name\":\"style\",\"url\":\"interfaces/PrefabComponent.html#style\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponent\"},{\"id\":247,\"kind\":256,\"name\":\"ThemeColorReference\",\"url\":\"interfaces/ThemeColorReference.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":248,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ThemeColorReference.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThemeColorReference\"},{\"id\":249,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ThemeColorReference.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ThemeColorReference\"},{\"id\":250,\"kind\":256,\"name\":\"StaticValue\",\"url\":\"interfaces/StaticValue.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":251,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/StaticValue.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StaticValue\"},{\"id\":252,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/StaticValue.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StaticValue\"},{\"id\":253,\"kind\":4194304,\"name\":\"RefOrValue\",\"url\":\"modules.html#RefOrValue\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":254,\"kind\":256,\"name\":\"StyleDefinitionContentObject\",\"url\":\"interfaces/StyleDefinitionContentObject.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":255,\"kind\":1024,\"name\":\"backgroundColor\",\"url\":\"interfaces/StyleDefinitionContentObject.html#backgroundColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionContentObject\"},{\"id\":256,\"kind\":1024,\"name\":\"borderColor\",\"url\":\"interfaces/StyleDefinitionContentObject.html#borderColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionContentObject\"},{\"id\":257,\"kind\":1024,\"name\":\"borderRadius\",\"url\":\"interfaces/StyleDefinitionContentObject.html#borderRadius\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionContentObject\"},{\"id\":258,\"kind\":1024,\"name\":\"borderStyle\",\"url\":\"interfaces/StyleDefinitionContentObject.html#borderStyle\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionContentObject\"},{\"id\":259,\"kind\":1024,\"name\":\"borderWidth\",\"url\":\"interfaces/StyleDefinitionContentObject.html#borderWidth\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionContentObject\"},{\"id\":260,\"kind\":1024,\"name\":\"boxShadow\",\"url\":\"interfaces/StyleDefinitionContentObject.html#boxShadow\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionContentObject\"},{\"id\":261,\"kind\":1024,\"name\":\"color\",\"url\":\"interfaces/StyleDefinitionContentObject.html#color\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionContentObject\"},{\"id\":262,\"kind\":1024,\"name\":\"fontFamily\",\"url\":\"interfaces/StyleDefinitionContentObject.html#fontFamily\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionContentObject\"},{\"id\":263,\"kind\":1024,\"name\":\"fontSize\",\"url\":\"interfaces/StyleDefinitionContentObject.html#fontSize\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionContentObject\"},{\"id\":264,\"kind\":1024,\"name\":\"fontStyle\",\"url\":\"interfaces/StyleDefinitionContentObject.html#fontStyle\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionContentObject\"},{\"id\":265,\"kind\":1024,\"name\":\"fontWeight\",\"url\":\"interfaces/StyleDefinitionContentObject.html#fontWeight\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionContentObject\"},{\"id\":266,\"kind\":1024,\"name\":\"letterSpacing\",\"url\":\"interfaces/StyleDefinitionContentObject.html#letterSpacing\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionContentObject\"},{\"id\":267,\"kind\":1024,\"name\":\"lineHeight\",\"url\":\"interfaces/StyleDefinitionContentObject.html#lineHeight\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionContentObject\"},{\"id\":268,\"kind\":1024,\"name\":\"padding\",\"url\":\"interfaces/StyleDefinitionContentObject.html#padding\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionContentObject\"},{\"id\":269,\"kind\":1024,\"name\":\"textDecoration\",\"url\":\"interfaces/StyleDefinitionContentObject.html#textDecoration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionContentObject\"},{\"id\":270,\"kind\":1024,\"name\":\"textTransform\",\"url\":\"interfaces/StyleDefinitionContentObject.html#textTransform\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionContentObject\"},{\"id\":271,\"kind\":256,\"name\":\"StyleDefinitionState\",\"url\":\"interfaces/StyleDefinitionState.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":272,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/StyleDefinitionState.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionState\"},{\"id\":273,\"kind\":1024,\"name\":\"content\",\"url\":\"interfaces/StyleDefinitionState.html#content\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinitionState\"},{\"id\":274,\"kind\":256,\"name\":\"StyleDefinition\",\"url\":\"interfaces/StyleDefinition.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":275,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/StyleDefinition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinition\"},{\"id\":276,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/StyleDefinition.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinition\"},{\"id\":277,\"kind\":1024,\"name\":\"basis\",\"url\":\"interfaces/StyleDefinition.html#basis\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinition\"},{\"id\":278,\"kind\":1024,\"name\":\"states\",\"url\":\"interfaces/StyleDefinition.html#states\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleDefinition\"},{\"id\":279,\"kind\":256,\"name\":\"StyleReference\",\"url\":\"interfaces/StyleReference.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":280,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/StyleReference.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleReference\"},{\"id\":281,\"kind\":1024,\"name\":\"overwrite\",\"url\":\"interfaces/StyleReference.html#overwrite\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"StyleReference\"},{\"id\":282,\"kind\":8,\"name\":\"AllowedStateKeys\",\"url\":\"enums/AllowedStateKeys.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":283,\"kind\":16,\"name\":\"SELECTED\",\"url\":\"enums/AllowedStateKeys.html#SELECTED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AllowedStateKeys\"},{\"id\":284,\"kind\":16,\"name\":\"HOVER\",\"url\":\"enums/AllowedStateKeys.html#HOVER\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AllowedStateKeys\"},{\"id\":285,\"kind\":16,\"name\":\"FOCUS\",\"url\":\"enums/AllowedStateKeys.html#FOCUS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AllowedStateKeys\"},{\"id\":286,\"kind\":16,\"name\":\"DISABLED\",\"url\":\"enums/AllowedStateKeys.html#DISABLED\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AllowedStateKeys\"},{\"id\":287,\"kind\":16,\"name\":\"VALID\",\"url\":\"enums/AllowedStateKeys.html#VALID\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AllowedStateKeys\"},{\"id\":288,\"kind\":16,\"name\":\"INVALID\",\"url\":\"enums/AllowedStateKeys.html#INVALID\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AllowedStateKeys\"},{\"id\":289,\"kind\":16,\"name\":\"READONLY\",\"url\":\"enums/AllowedStateKeys.html#READONLY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"AllowedStateKeys\"},{\"id\":290,\"kind\":4194304,\"name\":\"StyleStateKeys\",\"url\":\"modules.html#StyleStateKeys\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":291,\"kind\":4194304,\"name\":\"StyleDefinitionContentBase\",\"url\":\"modules.html#StyleDefinitionContentBase\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":292,\"kind\":4194304,\"name\":\"StyleDefinitionContent\",\"url\":\"modules.html#StyleDefinitionContent\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":293,\"kind\":256,\"name\":\"BuildStyleDefinition\",\"url\":\"interfaces/BuildStyleDefinition.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":294,\"kind\":1024,\"name\":\"content\",\"url\":\"interfaces/BuildStyleDefinition.html#content\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BuildStyleDefinition\"},{\"id\":295,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/BuildStyleDefinition.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"BuildStyleDefinition\"},{\"id\":296,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/BuildStyleDefinition.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"BuildStyleDefinition\"},{\"id\":297,\"kind\":256,\"name\":\"PrefabAction\",\"url\":\"interfaces/PrefabAction.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":298,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/PrefabAction.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabAction\"},{\"id\":299,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/PrefabAction.html#ref-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabAction\"},{\"id\":300,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabAction.html#__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabAction\"},{\"id\":301,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/PrefabAction.html#__type-2.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabAction.__type\"},{\"id\":302,\"kind\":1024,\"name\":\"endpointId\",\"url\":\"interfaces/PrefabAction.html#__type-2.endpointId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabAction.__type\"},{\"id\":303,\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/PrefabAction.html#options\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabAction\"},{\"id\":304,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabAction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabAction\"},{\"id\":305,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/PrefabAction.html#__type.ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabAction.__type\"},{\"id\":306,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabAction.html#__type.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"PrefabAction.__type\"},{\"id\":307,\"kind\":1024,\"name\":\"result\",\"url\":\"interfaces/PrefabAction.html#__type.__type-1.result\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabAction.__type.__type\"},{\"id\":308,\"kind\":1024,\"name\":\"useNewRuntime\",\"url\":\"interfaces/PrefabAction.html#useNewRuntime\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabAction\"},{\"id\":309,\"kind\":1024,\"name\":\"events\",\"url\":\"interfaces/PrefabAction.html#events\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabAction\"},{\"id\":310,\"kind\":256,\"name\":\"PrefabActionAssign\",\"url\":\"interfaces/PrefabActionAssign.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":311,\"kind\":1024,\"name\":\"leftHandSide\",\"url\":\"interfaces/PrefabActionAssign.html#leftHandSide\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabActionAssign\"},{\"id\":312,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/PrefabActionAssign.html#ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabActionAssign\"},{\"id\":313,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabActionAssign.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabActionAssign\"},{\"id\":314,\"kind\":1024,\"name\":\"path\",\"url\":\"interfaces/PrefabActionAssign.html#__type.path\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabActionAssign.__type\"},{\"id\":315,\"kind\":256,\"name\":\"PrefabActionUpdateStepOption\",\"url\":\"interfaces/PrefabActionUpdateStepOption.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":316,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/PrefabActionUpdateStepOption.html#ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabActionUpdateStepOption\"},{\"id\":317,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabActionUpdateStepOption.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabActionUpdateStepOption\"},{\"id\":318,\"kind\":1024,\"name\":\"object\",\"url\":\"interfaces/PrefabActionUpdateStepOption.html#__type.object\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabActionUpdateStepOption.__type\"},{\"id\":319,\"kind\":1024,\"name\":\"customModel\",\"url\":\"interfaces/PrefabActionUpdateStepOption.html#__type.customModel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabActionUpdateStepOption.__type\"},{\"id\":320,\"kind\":1024,\"name\":\"assign\",\"url\":\"interfaces/PrefabActionUpdateStepOption.html#assign\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabActionUpdateStepOption\"},{\"id\":321,\"kind\":256,\"name\":\"PrefabActionCreateStepOption\",\"url\":\"interfaces/PrefabActionCreateStepOption.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":322,\"kind\":1024,\"name\":\"modelId\",\"url\":\"interfaces/PrefabActionCreateStepOption.html#modelId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabActionCreateStepOption\"},{\"id\":323,\"kind\":1024,\"name\":\"assign\",\"url\":\"interfaces/PrefabActionCreateStepOption.html#assign\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabActionCreateStepOption\"},{\"id\":324,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/PrefabActionCreateStepOption.html#ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabActionCreateStepOption\"},{\"id\":325,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabActionCreateStepOption.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabActionCreateStepOption\"},{\"id\":326,\"kind\":1024,\"name\":\"customModel\",\"url\":\"interfaces/PrefabActionCreateStepOption.html#__type.customModel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabActionCreateStepOption.__type\"},{\"id\":327,\"kind\":256,\"name\":\"PrefabActionDeleteStepOption\",\"url\":\"interfaces/PrefabActionDeleteStepOption.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":328,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/PrefabActionDeleteStepOption.html#ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabActionDeleteStepOption\"},{\"id\":329,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabActionDeleteStepOption.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabActionDeleteStepOption\"},{\"id\":330,\"kind\":1024,\"name\":\"object\",\"url\":\"interfaces/PrefabActionDeleteStepOption.html#__type.object\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabActionDeleteStepOption.__type\"},{\"id\":331,\"kind\":1024,\"name\":\"customModel\",\"url\":\"interfaces/PrefabActionDeleteStepOption.html#__type.customModel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabActionDeleteStepOption.__type\"},{\"id\":332,\"kind\":256,\"name\":\"AuthenticateUserStepOption\",\"url\":\"interfaces/AuthenticateUserStepOption.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":333,\"kind\":1024,\"name\":\"authenticationProfileId\",\"url\":\"interfaces/AuthenticateUserStepOption.html#authenticationProfileId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AuthenticateUserStepOption\"},{\"id\":334,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/AuthenticateUserStepOption.html#ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"AuthenticateUserStepOption\"},{\"id\":335,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/AuthenticateUserStepOption.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"AuthenticateUserStepOption\"},{\"id\":336,\"kind\":1024,\"name\":\"username\",\"url\":\"interfaces/AuthenticateUserStepOption.html#__type.username\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"AuthenticateUserStepOption.__type\"},{\"id\":337,\"kind\":1024,\"name\":\"password\",\"url\":\"interfaces/AuthenticateUserStepOption.html#__type.password\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"AuthenticateUserStepOption.__type\"},{\"id\":338,\"kind\":1024,\"name\":\"jwtAs\",\"url\":\"interfaces/AuthenticateUserStepOption.html#__type.jwtAs\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"AuthenticateUserStepOption.__type\"},{\"id\":339,\"kind\":256,\"name\":\"PrefabActionStep\",\"url\":\"interfaces/PrefabActionStep.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":340,\"kind\":1024,\"name\":\"kind\",\"url\":\"interfaces/PrefabActionStep.html#kind\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabActionStep\"},{\"id\":341,\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/PrefabActionStep.html#options\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabActionStep\"},{\"id\":342,\"kind\":4194304,\"name\":\"Hook\",\"url\":\"modules.html#Hook\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":343,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#Hook.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"Hook\"},{\"id\":344,\"kind\":1024,\"name\":\"query\",\"url\":\"modules.html#Hook.__type.query\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hook.__type\"},{\"id\":345,\"kind\":1024,\"name\":\"input\",\"url\":\"modules.html#Hook.__type.input\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hook.__type\"},{\"id\":346,\"kind\":1024,\"name\":\"output\",\"url\":\"modules.html#Hook.__type.output\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"Hook.__type\"},{\"id\":347,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#Hook.__type.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"Hook.__type\"},{\"id\":348,\"kind\":8,\"name\":\"InteractionOptionType\",\"url\":\"enums/InteractionOptionType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":349,\"kind\":16,\"name\":\"Boolean\",\"url\":\"enums/InteractionOptionType.html#Boolean\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionOptionType\"},{\"id\":350,\"kind\":16,\"name\":\"Number\",\"url\":\"enums/InteractionOptionType.html#Number\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionOptionType\"},{\"id\":351,\"kind\":16,\"name\":\"String\",\"url\":\"enums/InteractionOptionType.html#String\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionOptionType\"},{\"id\":352,\"kind\":16,\"name\":\"Event\",\"url\":\"enums/InteractionOptionType.html#Event\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionOptionType\"},{\"id\":353,\"kind\":16,\"name\":\"Void\",\"url\":\"enums/InteractionOptionType.html#Void\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionOptionType\"},{\"id\":354,\"kind\":16,\"name\":\"Page\",\"url\":\"enums/InteractionOptionType.html#Page\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionOptionType\"},{\"id\":355,\"kind\":16,\"name\":\"Locale\",\"url\":\"enums/InteractionOptionType.html#Locale\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionOptionType\"},{\"id\":356,\"kind\":8,\"name\":\"InteractionOptionTypeToDo\",\"url\":\"enums/InteractionOptionTypeToDo.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":357,\"kind\":16,\"name\":\"Color\",\"url\":\"enums/InteractionOptionTypeToDo.html#Color\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionOptionTypeToDo\"},{\"id\":358,\"kind\":16,\"name\":\"Endpoint\",\"url\":\"enums/InteractionOptionTypeToDo.html#Endpoint\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionOptionTypeToDo\"},{\"id\":359,\"kind\":16,\"name\":\"Filter\",\"url\":\"enums/InteractionOptionTypeToDo.html#Filter\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionOptionTypeToDo\"},{\"id\":360,\"kind\":16,\"name\":\"Font\",\"url\":\"enums/InteractionOptionTypeToDo.html#Font\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionOptionTypeToDo\"},{\"id\":361,\"kind\":16,\"name\":\"Properties\",\"url\":\"enums/InteractionOptionTypeToDo.html#Properties\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionOptionTypeToDo\"},{\"id\":362,\"kind\":16,\"name\":\"Property\",\"url\":\"enums/InteractionOptionTypeToDo.html#Property\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionOptionTypeToDo\"},{\"id\":363,\"kind\":16,\"name\":\"Size\",\"url\":\"enums/InteractionOptionTypeToDo.html#Size\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionOptionTypeToDo\"},{\"id\":364,\"kind\":16,\"name\":\"Unit\",\"url\":\"enums/InteractionOptionTypeToDo.html#Unit\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionOptionTypeToDo\"},{\"id\":365,\"kind\":256,\"name\":\"InteractionCompatibility\",\"url\":\"interfaces/InteractionCompatibility.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":366,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/InteractionCompatibility.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InteractionCompatibility\"},{\"id\":367,\"kind\":1024,\"name\":\"parameters\",\"url\":\"interfaces/InteractionCompatibility.html#parameters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InteractionCompatibility\"},{\"id\":368,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/InteractionCompatibility.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"InteractionCompatibility\"},{\"id\":369,\"kind\":256,\"name\":\"Interaction\",\"url\":\"interfaces/Interaction.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":370,\"kind\":1024,\"name\":\"function\",\"url\":\"interfaces/Interaction.html#function\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"Interaction\"},{\"id\":371,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/Interaction.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"Interaction\"},{\"id\":372,\"kind\":1024,\"name\":\"parameters\",\"url\":\"interfaces/Interaction.html#parameters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"Interaction\"},{\"id\":373,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/Interaction.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"Interaction\"},{\"id\":374,\"kind\":8,\"name\":\"InteractionType\",\"url\":\"enums/InteractionType.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":375,\"kind\":16,\"name\":\"Custom\",\"url\":\"enums/InteractionType.html#Custom\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionType\"},{\"id\":376,\"kind\":16,\"name\":\"Global\",\"url\":\"enums/InteractionType.html#Global\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"InteractionType\"},{\"id\":377,\"kind\":256,\"name\":\"BasePrefabInteraction\",\"url\":\"interfaces/BasePrefabInteraction.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":378,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/BasePrefabInteraction.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BasePrefabInteraction\"},{\"id\":379,\"kind\":1024,\"name\":\"sourceComponentId\",\"url\":\"interfaces/BasePrefabInteraction.html#sourceComponentId-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BasePrefabInteraction\"},{\"id\":380,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/BasePrefabInteraction.html#ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BasePrefabInteraction\"},{\"id\":381,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/BasePrefabInteraction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"BasePrefabInteraction\"},{\"id\":382,\"kind\":1024,\"name\":\"sourceComponentId\",\"url\":\"interfaces/BasePrefabInteraction.html#__type.sourceComponentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BasePrefabInteraction.__type\"},{\"id\":383,\"kind\":1024,\"name\":\"targetComponentId\",\"url\":\"interfaces/BasePrefabInteraction.html#__type.targetComponentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BasePrefabInteraction.__type\"},{\"id\":384,\"kind\":1024,\"name\":\"targetOptionName\",\"url\":\"interfaces/BasePrefabInteraction.html#targetOptionName\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BasePrefabInteraction\"},{\"id\":385,\"kind\":1024,\"name\":\"sourceEvent\",\"url\":\"interfaces/BasePrefabInteraction.html#sourceEvent\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BasePrefabInteraction\"},{\"id\":386,\"kind\":256,\"name\":\"ParameterOptionWithId\",\"url\":\"interfaces/ParameterOptionWithId.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":387,\"kind\":1024,\"name\":\"parameter\",\"url\":\"interfaces/ParameterOptionWithId.html#parameter\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ParameterOptionWithId\"},{\"id\":388,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/ParameterOptionWithId.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ParameterOptionWithId\"},{\"id\":389,\"kind\":256,\"name\":\"ParameterOptionWithPath\",\"url\":\"interfaces/ParameterOptionWithPath.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":390,\"kind\":1024,\"name\":\"path\",\"url\":\"interfaces/ParameterOptionWithPath.html#path\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ParameterOptionWithPath\"},{\"id\":391,\"kind\":1024,\"name\":\"parameter\",\"url\":\"interfaces/ParameterOptionWithPath.html#parameter\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ParameterOptionWithPath\"},{\"id\":392,\"kind\":256,\"name\":\"ParameterOptionWithComponentRef\",\"url\":\"interfaces/ParameterOptionWithComponentRef.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":393,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ParameterOptionWithComponentRef.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ParameterOptionWithComponentRef\"},{\"id\":394,\"kind\":1024,\"name\":\"parameter\",\"url\":\"interfaces/ParameterOptionWithComponentRef.html#parameter\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ParameterOptionWithComponentRef\"},{\"id\":395,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/ParameterOptionWithComponentRef.html#ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ParameterOptionWithComponentRef\"},{\"id\":396,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ParameterOptionWithComponentRef.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"ParameterOptionWithComponentRef\"},{\"id\":397,\"kind\":1024,\"name\":\"componentId\",\"url\":\"interfaces/ParameterOptionWithComponentRef.html#__type.componentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ParameterOptionWithComponentRef.__type\"},{\"id\":398,\"kind\":256,\"name\":\"ParameterOptionWithPageId\",\"url\":\"interfaces/ParameterOptionWithPageId.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":399,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ParameterOptionWithPageId.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ParameterOptionWithPageId\"},{\"id\":400,\"kind\":1024,\"name\":\"pageId\",\"url\":\"interfaces/ParameterOptionWithPageId.html#pageId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ParameterOptionWithPageId\"},{\"id\":401,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/ParameterOptionWithPageId.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ParameterOptionWithPageId\"},{\"id\":402,\"kind\":1024,\"name\":\"endpointId\",\"url\":\"interfaces/ParameterOptionWithPageId.html#endpointId\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ParameterOptionWithPageId\"},{\"id\":403,\"kind\":1024,\"name\":\"parameters\",\"url\":\"interfaces/ParameterOptionWithPageId.html#parameters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ParameterOptionWithPageId\"},{\"id\":404,\"kind\":4194304,\"name\":\"PrefabInteractionParameter\",\"url\":\"modules.html#PrefabInteractionParameter\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":405,\"kind\":256,\"name\":\"PrefabCustomInteraction\",\"url\":\"interfaces/PrefabCustomInteraction.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":406,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PrefabCustomInteraction.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabCustomInteraction\"},{\"id\":407,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/PrefabCustomInteraction.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PrefabCustomInteraction\"},{\"id\":408,\"kind\":1024,\"name\":\"sourceComponentId\",\"url\":\"interfaces/PrefabCustomInteraction.html#sourceComponentId-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PrefabCustomInteraction\"},{\"id\":409,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/PrefabCustomInteraction.html#ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PrefabCustomInteraction\"},{\"id\":410,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabCustomInteraction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabCustomInteraction\"},{\"id\":411,\"kind\":1024,\"name\":\"sourceComponentId\",\"url\":\"interfaces/PrefabCustomInteraction.html#__type.sourceComponentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabCustomInteraction.__type\"},{\"id\":412,\"kind\":1024,\"name\":\"targetComponentId\",\"url\":\"interfaces/PrefabCustomInteraction.html#__type.targetComponentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabCustomInteraction.__type\"},{\"id\":413,\"kind\":1024,\"name\":\"targetOptionName\",\"url\":\"interfaces/PrefabCustomInteraction.html#targetOptionName\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PrefabCustomInteraction\"},{\"id\":414,\"kind\":1024,\"name\":\"sourceEvent\",\"url\":\"interfaces/PrefabCustomInteraction.html#sourceEvent\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PrefabCustomInteraction\"},{\"id\":415,\"kind\":256,\"name\":\"PrefabGlobalInteraction\",\"url\":\"interfaces/PrefabGlobalInteraction.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":416,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PrefabGlobalInteraction.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabGlobalInteraction\"},{\"id\":417,\"kind\":1024,\"name\":\"parameters\",\"url\":\"interfaces/PrefabGlobalInteraction.html#parameters\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabGlobalInteraction\"},{\"id\":418,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/PrefabGlobalInteraction.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PrefabGlobalInteraction\"},{\"id\":419,\"kind\":1024,\"name\":\"sourceComponentId\",\"url\":\"interfaces/PrefabGlobalInteraction.html#sourceComponentId-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PrefabGlobalInteraction\"},{\"id\":420,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/PrefabGlobalInteraction.html#ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PrefabGlobalInteraction\"},{\"id\":421,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabGlobalInteraction.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabGlobalInteraction\"},{\"id\":422,\"kind\":1024,\"name\":\"sourceComponentId\",\"url\":\"interfaces/PrefabGlobalInteraction.html#__type.sourceComponentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabGlobalInteraction.__type\"},{\"id\":423,\"kind\":1024,\"name\":\"targetComponentId\",\"url\":\"interfaces/PrefabGlobalInteraction.html#__type.targetComponentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabGlobalInteraction.__type\"},{\"id\":424,\"kind\":1024,\"name\":\"targetOptionName\",\"url\":\"interfaces/PrefabGlobalInteraction.html#targetOptionName\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PrefabGlobalInteraction\"},{\"id\":425,\"kind\":1024,\"name\":\"sourceEvent\",\"url\":\"interfaces/PrefabGlobalInteraction.html#sourceEvent\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PrefabGlobalInteraction\"},{\"id\":426,\"kind\":4194304,\"name\":\"PrefabInteraction\",\"url\":\"modules.html#PrefabInteraction\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":427,\"kind\":256,\"name\":\"PrefabVariable\",\"url\":\"interfaces/PrefabVariable.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":428,\"kind\":1024,\"name\":\"kind\",\"url\":\"interfaces/PrefabVariable.html#kind\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabVariable\"},{\"id\":429,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/PrefabVariable.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabVariable\"},{\"id\":430,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/PrefabVariable.html#ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabVariable\"},{\"id\":431,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabVariable.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabVariable\"},{\"id\":432,\"kind\":1024,\"name\":\"actionId\",\"url\":\"interfaces/PrefabVariable.html#__type.actionId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabVariable.__type\"},{\"id\":433,\"kind\":1024,\"name\":\"endpointId\",\"url\":\"interfaces/PrefabVariable.html#__type.endpointId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabVariable.__type\"},{\"id\":434,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/PrefabVariable.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabVariable.__type\"},{\"id\":435,\"kind\":1024,\"name\":\"options\",\"url\":\"interfaces/PrefabVariable.html#options\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabVariable\"},{\"id\":436,\"kind\":4194304,\"name\":\"PrefabVariableKind\",\"url\":\"modules.html#PrefabVariableKind\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":437,\"kind\":4194304,\"name\":\"ValueConfig\",\"url\":\"modules.html#ValueConfig\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":438,\"kind\":8,\"name\":\"ActionVariableKind\",\"url\":\"enums/ActionVariableKind.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":439,\"kind\":16,\"name\":\"ARRAY\",\"url\":\"enums/ActionVariableKind.html#ARRAY\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ActionVariableKind\"},{\"id\":440,\"kind\":16,\"name\":\"BOOLEAN\",\"url\":\"enums/ActionVariableKind.html#BOOLEAN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ActionVariableKind\"},{\"id\":441,\"kind\":16,\"name\":\"COLLECTION\",\"url\":\"enums/ActionVariableKind.html#COLLECTION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ActionVariableKind\"},{\"id\":442,\"kind\":16,\"name\":\"DATE\",\"url\":\"enums/ActionVariableKind.html#DATE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ActionVariableKind\"},{\"id\":443,\"kind\":16,\"name\":\"DATE_TIME\",\"url\":\"enums/ActionVariableKind.html#DATE_TIME\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ActionVariableKind\"},{\"id\":444,\"kind\":16,\"name\":\"DECIMAL\",\"url\":\"enums/ActionVariableKind.html#DECIMAL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ActionVariableKind\"},{\"id\":445,\"kind\":16,\"name\":\"INTEGER\",\"url\":\"enums/ActionVariableKind.html#INTEGER\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ActionVariableKind\"},{\"id\":446,\"kind\":16,\"name\":\"JSON\",\"url\":\"enums/ActionVariableKind.html#JSON\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ActionVariableKind\"},{\"id\":447,\"kind\":16,\"name\":\"OBJECT\",\"url\":\"enums/ActionVariableKind.html#OBJECT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ActionVariableKind\"},{\"id\":448,\"kind\":16,\"name\":\"RECORD\",\"url\":\"enums/ActionVariableKind.html#RECORD\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ActionVariableKind\"},{\"id\":449,\"kind\":16,\"name\":\"STRING\",\"url\":\"enums/ActionVariableKind.html#STRING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"ActionVariableKind\"},{\"id\":450,\"kind\":4194304,\"name\":\"ActionVariableType\",\"url\":\"modules.html#ActionVariableType\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":451,\"kind\":8,\"name\":\"CreatePropertyKind\",\"url\":\"enums/CreatePropertyKind.html\",\"classes\":\"tsd-kind-enum\"},{\"id\":452,\"kind\":16,\"name\":\"AUTO_INCREMENT\",\"url\":\"enums/CreatePropertyKind.html#AUTO_INCREMENT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":453,\"kind\":16,\"name\":\"BOOLEAN\",\"url\":\"enums/CreatePropertyKind.html#BOOLEAN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":454,\"kind\":16,\"name\":\"BOOLEAN_EXPRESSION\",\"url\":\"enums/CreatePropertyKind.html#BOOLEAN_EXPRESSION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":455,\"kind\":16,\"name\":\"DATE\",\"url\":\"enums/CreatePropertyKind.html#DATE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":456,\"kind\":16,\"name\":\"DATE_EXPRESSION\",\"url\":\"enums/CreatePropertyKind.html#DATE_EXPRESSION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":457,\"kind\":16,\"name\":\"DATE_TIME\",\"url\":\"enums/CreatePropertyKind.html#DATE_TIME\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":458,\"kind\":16,\"name\":\"DATE_TIME_EXPRESSION\",\"url\":\"enums/CreatePropertyKind.html#DATE_TIME_EXPRESSION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":459,\"kind\":16,\"name\":\"DECIMAL\",\"url\":\"enums/CreatePropertyKind.html#DECIMAL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":460,\"kind\":16,\"name\":\"DECIMAL_EXPRESSION\",\"url\":\"enums/CreatePropertyKind.html#DECIMAL_EXPRESSION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":461,\"kind\":16,\"name\":\"EMAIL_ADDRESS\",\"url\":\"enums/CreatePropertyKind.html#EMAIL_ADDRESS\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":462,\"kind\":16,\"name\":\"FILE\",\"url\":\"enums/CreatePropertyKind.html#FILE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":463,\"kind\":16,\"name\":\"IBAN\",\"url\":\"enums/CreatePropertyKind.html#IBAN\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":464,\"kind\":16,\"name\":\"IMAGE\",\"url\":\"enums/CreatePropertyKind.html#IMAGE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":465,\"kind\":16,\"name\":\"INTEGER\",\"url\":\"enums/CreatePropertyKind.html#INTEGER\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":466,\"kind\":16,\"name\":\"INTEGER_EXPRESSION\",\"url\":\"enums/CreatePropertyKind.html#INTEGER_EXPRESSION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":467,\"kind\":16,\"name\":\"LIST\",\"url\":\"enums/CreatePropertyKind.html#LIST\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":468,\"kind\":16,\"name\":\"MINUTES\",\"url\":\"enums/CreatePropertyKind.html#MINUTES\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":469,\"kind\":16,\"name\":\"MINUTES_EXPRESSION\",\"url\":\"enums/CreatePropertyKind.html#MINUTES_EXPRESSION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":470,\"kind\":16,\"name\":\"MULTI_FILE\",\"url\":\"enums/CreatePropertyKind.html#MULTI_FILE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":471,\"kind\":16,\"name\":\"MULTI_IMAGE\",\"url\":\"enums/CreatePropertyKind.html#MULTI_IMAGE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":472,\"kind\":16,\"name\":\"OBJECT\",\"url\":\"enums/CreatePropertyKind.html#OBJECT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":473,\"kind\":16,\"name\":\"PASSWORD\",\"url\":\"enums/CreatePropertyKind.html#PASSWORD\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":474,\"kind\":16,\"name\":\"PDF\",\"url\":\"enums/CreatePropertyKind.html#PDF\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":475,\"kind\":16,\"name\":\"PHONE_NUMBER\",\"url\":\"enums/CreatePropertyKind.html#PHONE_NUMBER\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":476,\"kind\":16,\"name\":\"PRICE\",\"url\":\"enums/CreatePropertyKind.html#PRICE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":477,\"kind\":16,\"name\":\"PRICE_EXPRESSION\",\"url\":\"enums/CreatePropertyKind.html#PRICE_EXPRESSION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":478,\"kind\":16,\"name\":\"RICH_TEXT\",\"url\":\"enums/CreatePropertyKind.html#RICH_TEXT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":479,\"kind\":16,\"name\":\"STRING\",\"url\":\"enums/CreatePropertyKind.html#STRING\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":480,\"kind\":16,\"name\":\"STRING_EXPRESSION\",\"url\":\"enums/CreatePropertyKind.html#STRING_EXPRESSION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":481,\"kind\":16,\"name\":\"TEXT\",\"url\":\"enums/CreatePropertyKind.html#TEXT\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":482,\"kind\":16,\"name\":\"TEXT_EXPRESSION\",\"url\":\"enums/CreatePropertyKind.html#TEXT_EXPRESSION\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":483,\"kind\":16,\"name\":\"TIME\",\"url\":\"enums/CreatePropertyKind.html#TIME\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":484,\"kind\":16,\"name\":\"URL\",\"url\":\"enums/CreatePropertyKind.html#URL\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":485,\"kind\":16,\"name\":\"ZIPCODE\",\"url\":\"enums/CreatePropertyKind.html#ZIPCODE\",\"classes\":\"tsd-kind-enum-member tsd-parent-kind-enum\",\"parent\":\"CreatePropertyKind\"},{\"id\":486,\"kind\":4194304,\"name\":\"OptionCategory\",\"url\":\"modules.html#OptionCategory\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":487,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#OptionCategory.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"OptionCategory\"},{\"id\":488,\"kind\":1024,\"name\":\"label\",\"url\":\"modules.html#OptionCategory.__type.label\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"OptionCategory.__type\"},{\"id\":489,\"kind\":1024,\"name\":\"expanded\",\"url\":\"modules.html#OptionCategory.__type.expanded\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"OptionCategory.__type\"},{\"id\":490,\"kind\":1024,\"name\":\"members\",\"url\":\"modules.html#OptionCategory.__type.members\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"OptionCategory.__type\"},{\"id\":491,\"kind\":1024,\"name\":\"condition\",\"url\":\"modules.html#OptionCategory.__type.condition\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"OptionCategory.__type\"},{\"id\":492,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#OptionCategory.__type.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"OptionCategory.__type\"},{\"id\":493,\"kind\":1024,\"name\":\"type\",\"url\":\"modules.html#OptionCategory.__type.__type-1.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"OptionCategory.__type.__type\"},{\"id\":494,\"kind\":1024,\"name\":\"option\",\"url\":\"modules.html#OptionCategory.__type.__type-1.option\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"OptionCategory.__type.__type\"},{\"id\":495,\"kind\":1024,\"name\":\"comparator\",\"url\":\"modules.html#OptionCategory.__type.__type-1.comparator\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"OptionCategory.__type.__type\"},{\"id\":496,\"kind\":1024,\"name\":\"value\",\"url\":\"modules.html#OptionCategory.__type.__type-1.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"OptionCategory.__type.__type\"},{\"id\":497,\"kind\":4194304,\"name\":\"RowItem\",\"url\":\"modules.html#RowItem\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":498,\"kind\":4194304,\"name\":\"AllowedValue\",\"url\":\"modules.html#AllowedValue\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":499,\"kind\":256,\"name\":\"PrefabComponentOptionBase\",\"url\":\"interfaces/PrefabComponentOptionBase.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":500,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/PrefabComponentOptionBase.html#label-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponentOptionBase\"},{\"id\":501,\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/PrefabComponentOptionBase.html#key\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponentOptionBase\"},{\"id\":502,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PrefabComponentOptionBase.html#type-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponentOptionBase\"},{\"id\":503,\"kind\":1024,\"name\":\"optionRef\",\"url\":\"interfaces/PrefabComponentOptionBase.html#optionRef\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponentOptionBase\"},{\"id\":504,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabComponentOptionBase\"},{\"id\":505,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type-8.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":506,\"kind\":1024,\"name\":\"sourceId\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type-8.sourceId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":507,\"kind\":1024,\"name\":\"inherit\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type-8.inherit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":508,\"kind\":1024,\"name\":\"configuration\",\"url\":\"interfaces/PrefabComponentOptionBase.html#configuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabComponentOptionBase\"},{\"id\":509,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabComponentOptionBase\"},{\"id\":510,\"kind\":1024,\"name\":\"allowedKinds\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.allowedKinds\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":511,\"kind\":1024,\"name\":\"allowedClickThroughKinds\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.allowedClickThroughKinds\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":512,\"kind\":1024,\"name\":\"allowedSplitButtonKinds\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.allowedSplitButtonKinds\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":513,\"kind\":1024,\"name\":\"allowRelations\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.allowRelations\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":514,\"kind\":1024,\"name\":\"allowFormatting\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.allowFormatting\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":515,\"kind\":1024,\"name\":\"allowPropertyName\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.allowPropertyName\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":516,\"kind\":1024,\"name\":\"allowedExtensions\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.allowedExtensions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":517,\"kind\":1024,\"name\":\"allowedInput\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.allowedInput\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":518,\"kind\":1024,\"name\":\"allowedTypes\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.allowedTypes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":519,\"kind\":1024,\"name\":\"apiVersion\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.apiVersion\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":520,\"kind\":1024,\"name\":\"as\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.as\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":521,\"kind\":1024,\"name\":\"component\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.component\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":522,\"kind\":1024,\"name\":\"condition\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.condition\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":523,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":524,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-1.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":525,\"kind\":1024,\"name\":\"option\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-1.option\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":526,\"kind\":1024,\"name\":\"comparator\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-1.comparator\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":527,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-1.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":528,\"kind\":1024,\"name\":\"createProperty\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.createProperty\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":529,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":530,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-3.type-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":531,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-3.value-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":532,\"kind\":1024,\"name\":\"createAction\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.createAction\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":533,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":534,\"kind\":1024,\"name\":\"template\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-2.template\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":535,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-2.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":536,\"kind\":1024,\"name\":\"permissions\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-2.permissions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":537,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-2.value-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":538,\"kind\":1024,\"name\":\"dataType\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.dataType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":539,\"kind\":1024,\"name\":\"dependsOn\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.dependsOn\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":540,\"kind\":1024,\"name\":\"disabled\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.disabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":541,\"kind\":1024,\"name\":\"mediaType\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.mediaType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":542,\"kind\":1024,\"name\":\"modal\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.modal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":543,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":544,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-5.type-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":545,\"kind\":1024,\"name\":\"generateCustomModel\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-5.generateCustomModel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":546,\"kind\":1024,\"name\":\"modelRequired\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-5.modelRequired\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":547,\"kind\":1024,\"name\":\"placeholder\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.placeholder\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":548,\"kind\":1024,\"name\":\"showOnDrop\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.showOnDrop\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":549,\"kind\":1024,\"name\":\"showTextStyleColor\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.showTextStyleColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":550,\"kind\":1024,\"name\":\"manageObjectValues\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.manageObjectValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":551,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":552,\"kind\":1024,\"name\":\"buttonLabel\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-4.buttonLabel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":553,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-4.label\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":554,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-4.value-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":555,\"kind\":1024,\"name\":\"selectableObjectKey\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-4.selectableObjectKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":556,\"kind\":1024,\"name\":\"pushToWrapper\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.pushToWrapper\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":557,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type\"},{\"id\":558,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-6.name-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":559,\"kind\":1024,\"name\":\"condition\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-6.condition-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":560,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-6.__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type\"},{\"id\":561,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-6.__type-7.type-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type.__type\"},{\"id\":562,\"kind\":1024,\"name\":\"option\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-6.__type-7.option-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type.__type\"},{\"id\":563,\"kind\":1024,\"name\":\"comparator\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-6.__type-7.comparator-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type.__type\"},{\"id\":564,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/PrefabComponentOptionBase.html#__type.__type-6.__type-7.value-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentOptionBase.__type.__type.__type\"},{\"id\":565,\"kind\":256,\"name\":\"PrefabLinkedOptionBase\",\"url\":\"interfaces/PrefabLinkedOptionBase.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":566,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/PrefabLinkedOptionBase.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabLinkedOptionBase\"},{\"id\":567,\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/PrefabLinkedOptionBase.html#key\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabLinkedOptionBase\"},{\"id\":568,\"kind\":256,\"name\":\"ValueDefault\",\"url\":\"interfaces/ValueDefault.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":569,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ValueDefault.html#value-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ValueDefault\"},{\"id\":570,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/ValueDefault.html#ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ValueDefault\"},{\"id\":571,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueDefault.html#__type-9\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"ValueDefault\"},{\"id\":572,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/ValueDefault.html#__type-9.id-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":573,\"kind\":1024,\"name\":\"showInReconfigure\",\"url\":\"interfaces/ValueDefault.html#showInReconfigure\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ValueDefault\"},{\"id\":574,\"kind\":1024,\"name\":\"showInAddChild\",\"url\":\"interfaces/ValueDefault.html#showInAddChild\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ValueDefault\"},{\"id\":575,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/ValueDefault.html#label-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ValueDefault\"},{\"id\":576,\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/ValueDefault.html#key\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ValueDefault\"},{\"id\":577,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ValueDefault.html#type-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ValueDefault\"},{\"id\":578,\"kind\":1024,\"name\":\"optionRef\",\"url\":\"interfaces/ValueDefault.html#optionRef\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ValueDefault\"},{\"id\":579,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueDefault.html#__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"ValueDefault\"},{\"id\":580,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/ValueDefault.html#__type-8.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":581,\"kind\":1024,\"name\":\"sourceId\",\"url\":\"interfaces/ValueDefault.html#__type-8.sourceId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":582,\"kind\":1024,\"name\":\"inherit\",\"url\":\"interfaces/ValueDefault.html#__type-8.inherit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":583,\"kind\":1024,\"name\":\"configuration\",\"url\":\"interfaces/ValueDefault.html#configuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ValueDefault\"},{\"id\":584,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueDefault.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"ValueDefault\"},{\"id\":585,\"kind\":1024,\"name\":\"allowedKinds\",\"url\":\"interfaces/ValueDefault.html#__type.allowedKinds\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":586,\"kind\":1024,\"name\":\"allowedClickThroughKinds\",\"url\":\"interfaces/ValueDefault.html#__type.allowedClickThroughKinds\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":587,\"kind\":1024,\"name\":\"allowedSplitButtonKinds\",\"url\":\"interfaces/ValueDefault.html#__type.allowedSplitButtonKinds\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":588,\"kind\":1024,\"name\":\"allowRelations\",\"url\":\"interfaces/ValueDefault.html#__type.allowRelations\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":589,\"kind\":1024,\"name\":\"allowFormatting\",\"url\":\"interfaces/ValueDefault.html#__type.allowFormatting\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":590,\"kind\":1024,\"name\":\"allowPropertyName\",\"url\":\"interfaces/ValueDefault.html#__type.allowPropertyName\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":591,\"kind\":1024,\"name\":\"allowedExtensions\",\"url\":\"interfaces/ValueDefault.html#__type.allowedExtensions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":592,\"kind\":1024,\"name\":\"allowedInput\",\"url\":\"interfaces/ValueDefault.html#__type.allowedInput\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":593,\"kind\":1024,\"name\":\"allowedTypes\",\"url\":\"interfaces/ValueDefault.html#__type.allowedTypes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":594,\"kind\":1024,\"name\":\"apiVersion\",\"url\":\"interfaces/ValueDefault.html#__type.apiVersion\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":595,\"kind\":1024,\"name\":\"as\",\"url\":\"interfaces/ValueDefault.html#__type.as\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":596,\"kind\":1024,\"name\":\"component\",\"url\":\"interfaces/ValueDefault.html#__type.component\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":597,\"kind\":1024,\"name\":\"condition\",\"url\":\"interfaces/ValueDefault.html#__type.condition\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":598,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueDefault.html#__type.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":599,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ValueDefault.html#__type.__type-1.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":600,\"kind\":1024,\"name\":\"option\",\"url\":\"interfaces/ValueDefault.html#__type.__type-1.option\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":601,\"kind\":1024,\"name\":\"comparator\",\"url\":\"interfaces/ValueDefault.html#__type.__type-1.comparator\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":602,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ValueDefault.html#__type.__type-1.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":603,\"kind\":1024,\"name\":\"createProperty\",\"url\":\"interfaces/ValueDefault.html#__type.createProperty\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":604,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueDefault.html#__type.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":605,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ValueDefault.html#__type.__type-3.type-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":606,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ValueDefault.html#__type.__type-3.value-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":607,\"kind\":1024,\"name\":\"createAction\",\"url\":\"interfaces/ValueDefault.html#__type.createAction\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":608,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueDefault.html#__type.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":609,\"kind\":1024,\"name\":\"template\",\"url\":\"interfaces/ValueDefault.html#__type.__type-2.template\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":610,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ValueDefault.html#__type.__type-2.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":611,\"kind\":1024,\"name\":\"permissions\",\"url\":\"interfaces/ValueDefault.html#__type.__type-2.permissions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":612,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ValueDefault.html#__type.__type-2.value-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":613,\"kind\":1024,\"name\":\"dataType\",\"url\":\"interfaces/ValueDefault.html#__type.dataType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":614,\"kind\":1024,\"name\":\"dependsOn\",\"url\":\"interfaces/ValueDefault.html#__type.dependsOn\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":615,\"kind\":1024,\"name\":\"disabled\",\"url\":\"interfaces/ValueDefault.html#__type.disabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":616,\"kind\":1024,\"name\":\"mediaType\",\"url\":\"interfaces/ValueDefault.html#__type.mediaType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":617,\"kind\":1024,\"name\":\"modal\",\"url\":\"interfaces/ValueDefault.html#__type.modal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":618,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueDefault.html#__type.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":619,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ValueDefault.html#__type.__type-5.type-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":620,\"kind\":1024,\"name\":\"generateCustomModel\",\"url\":\"interfaces/ValueDefault.html#__type.__type-5.generateCustomModel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":621,\"kind\":1024,\"name\":\"modelRequired\",\"url\":\"interfaces/ValueDefault.html#__type.__type-5.modelRequired\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":622,\"kind\":1024,\"name\":\"placeholder\",\"url\":\"interfaces/ValueDefault.html#__type.placeholder\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":623,\"kind\":1024,\"name\":\"showOnDrop\",\"url\":\"interfaces/ValueDefault.html#__type.showOnDrop\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":624,\"kind\":1024,\"name\":\"showTextStyleColor\",\"url\":\"interfaces/ValueDefault.html#__type.showTextStyleColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":625,\"kind\":1024,\"name\":\"manageObjectValues\",\"url\":\"interfaces/ValueDefault.html#__type.manageObjectValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":626,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueDefault.html#__type.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":627,\"kind\":1024,\"name\":\"buttonLabel\",\"url\":\"interfaces/ValueDefault.html#__type.__type-4.buttonLabel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":628,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/ValueDefault.html#__type.__type-4.label\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":629,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ValueDefault.html#__type.__type-4.value-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":630,\"kind\":1024,\"name\":\"selectableObjectKey\",\"url\":\"interfaces/ValueDefault.html#__type.__type-4.selectableObjectKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":631,\"kind\":1024,\"name\":\"pushToWrapper\",\"url\":\"interfaces/ValueDefault.html#__type.pushToWrapper\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":632,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueDefault.html#__type.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type\"},{\"id\":633,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ValueDefault.html#__type.__type-6.name-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":634,\"kind\":1024,\"name\":\"condition\",\"url\":\"interfaces/ValueDefault.html#__type.__type-6.condition-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":635,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueDefault.html#__type.__type-6.__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type\"},{\"id\":636,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ValueDefault.html#__type.__type-6.__type-7.type-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type.__type\"},{\"id\":637,\"kind\":1024,\"name\":\"option\",\"url\":\"interfaces/ValueDefault.html#__type.__type-6.__type-7.option-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type.__type\"},{\"id\":638,\"kind\":1024,\"name\":\"comparator\",\"url\":\"interfaces/ValueDefault.html#__type.__type-6.__type-7.comparator-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type.__type\"},{\"id\":639,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ValueDefault.html#__type.__type-6.__type-7.value-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueDefault.__type.__type.__type\"},{\"id\":640,\"kind\":256,\"name\":\"ValueRef\",\"url\":\"interfaces/ValueRef.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":641,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/ValueRef.html#ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ValueRef\"},{\"id\":642,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueRef.html#__type-9\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"ValueRef\"},{\"id\":643,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/ValueRef.html#__type-9.id-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":644,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ValueRef.html#__type-9.value-5\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":645,\"kind\":1024,\"name\":\"showInReconfigure\",\"url\":\"interfaces/ValueRef.html#showInReconfigure\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ValueRef\"},{\"id\":646,\"kind\":1024,\"name\":\"showInAddChild\",\"url\":\"interfaces/ValueRef.html#showInAddChild\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"ValueRef\"},{\"id\":647,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/ValueRef.html#label-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ValueRef\"},{\"id\":648,\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/ValueRef.html#key\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ValueRef\"},{\"id\":649,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ValueRef.html#type-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ValueRef\"},{\"id\":650,\"kind\":1024,\"name\":\"optionRef\",\"url\":\"interfaces/ValueRef.html#optionRef\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ValueRef\"},{\"id\":651,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueRef.html#__type-8\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"ValueRef\"},{\"id\":652,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/ValueRef.html#__type-8.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":653,\"kind\":1024,\"name\":\"sourceId\",\"url\":\"interfaces/ValueRef.html#__type-8.sourceId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":654,\"kind\":1024,\"name\":\"inherit\",\"url\":\"interfaces/ValueRef.html#__type-8.inherit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":655,\"kind\":1024,\"name\":\"configuration\",\"url\":\"interfaces/ValueRef.html#configuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"ValueRef\"},{\"id\":656,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueRef.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"ValueRef\"},{\"id\":657,\"kind\":1024,\"name\":\"allowedKinds\",\"url\":\"interfaces/ValueRef.html#__type.allowedKinds\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":658,\"kind\":1024,\"name\":\"allowedClickThroughKinds\",\"url\":\"interfaces/ValueRef.html#__type.allowedClickThroughKinds\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":659,\"kind\":1024,\"name\":\"allowedSplitButtonKinds\",\"url\":\"interfaces/ValueRef.html#__type.allowedSplitButtonKinds\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":660,\"kind\":1024,\"name\":\"allowRelations\",\"url\":\"interfaces/ValueRef.html#__type.allowRelations\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":661,\"kind\":1024,\"name\":\"allowFormatting\",\"url\":\"interfaces/ValueRef.html#__type.allowFormatting\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":662,\"kind\":1024,\"name\":\"allowPropertyName\",\"url\":\"interfaces/ValueRef.html#__type.allowPropertyName\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":663,\"kind\":1024,\"name\":\"allowedExtensions\",\"url\":\"interfaces/ValueRef.html#__type.allowedExtensions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":664,\"kind\":1024,\"name\":\"allowedInput\",\"url\":\"interfaces/ValueRef.html#__type.allowedInput\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":665,\"kind\":1024,\"name\":\"allowedTypes\",\"url\":\"interfaces/ValueRef.html#__type.allowedTypes\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":666,\"kind\":1024,\"name\":\"apiVersion\",\"url\":\"interfaces/ValueRef.html#__type.apiVersion\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":667,\"kind\":1024,\"name\":\"as\",\"url\":\"interfaces/ValueRef.html#__type.as\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":668,\"kind\":1024,\"name\":\"component\",\"url\":\"interfaces/ValueRef.html#__type.component\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":669,\"kind\":1024,\"name\":\"condition\",\"url\":\"interfaces/ValueRef.html#__type.condition\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":670,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueRef.html#__type.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":671,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ValueRef.html#__type.__type-1.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":672,\"kind\":1024,\"name\":\"option\",\"url\":\"interfaces/ValueRef.html#__type.__type-1.option\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":673,\"kind\":1024,\"name\":\"comparator\",\"url\":\"interfaces/ValueRef.html#__type.__type-1.comparator\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":674,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ValueRef.html#__type.__type-1.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":675,\"kind\":1024,\"name\":\"createProperty\",\"url\":\"interfaces/ValueRef.html#__type.createProperty\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":676,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueRef.html#__type.__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":677,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ValueRef.html#__type.__type-3.type-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":678,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ValueRef.html#__type.__type-3.value-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":679,\"kind\":1024,\"name\":\"createAction\",\"url\":\"interfaces/ValueRef.html#__type.createAction\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":680,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueRef.html#__type.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":681,\"kind\":1024,\"name\":\"template\",\"url\":\"interfaces/ValueRef.html#__type.__type-2.template\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":682,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ValueRef.html#__type.__type-2.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":683,\"kind\":1024,\"name\":\"permissions\",\"url\":\"interfaces/ValueRef.html#__type.__type-2.permissions\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":684,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ValueRef.html#__type.__type-2.value-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":685,\"kind\":1024,\"name\":\"dataType\",\"url\":\"interfaces/ValueRef.html#__type.dataType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":686,\"kind\":1024,\"name\":\"dependsOn\",\"url\":\"interfaces/ValueRef.html#__type.dependsOn\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":687,\"kind\":1024,\"name\":\"disabled\",\"url\":\"interfaces/ValueRef.html#__type.disabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":688,\"kind\":1024,\"name\":\"mediaType\",\"url\":\"interfaces/ValueRef.html#__type.mediaType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":689,\"kind\":1024,\"name\":\"modal\",\"url\":\"interfaces/ValueRef.html#__type.modal\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":690,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueRef.html#__type.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":691,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ValueRef.html#__type.__type-5.type-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":692,\"kind\":1024,\"name\":\"generateCustomModel\",\"url\":\"interfaces/ValueRef.html#__type.__type-5.generateCustomModel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":693,\"kind\":1024,\"name\":\"modelRequired\",\"url\":\"interfaces/ValueRef.html#__type.__type-5.modelRequired\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":694,\"kind\":1024,\"name\":\"placeholder\",\"url\":\"interfaces/ValueRef.html#__type.placeholder\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":695,\"kind\":1024,\"name\":\"showOnDrop\",\"url\":\"interfaces/ValueRef.html#__type.showOnDrop\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":696,\"kind\":1024,\"name\":\"showTextStyleColor\",\"url\":\"interfaces/ValueRef.html#__type.showTextStyleColor\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":697,\"kind\":1024,\"name\":\"manageObjectValues\",\"url\":\"interfaces/ValueRef.html#__type.manageObjectValues\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":698,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueRef.html#__type.__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":699,\"kind\":1024,\"name\":\"buttonLabel\",\"url\":\"interfaces/ValueRef.html#__type.__type-4.buttonLabel\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":700,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/ValueRef.html#__type.__type-4.label\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":701,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ValueRef.html#__type.__type-4.value-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":702,\"kind\":1024,\"name\":\"selectableObjectKey\",\"url\":\"interfaces/ValueRef.html#__type.__type-4.selectableObjectKey\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":703,\"kind\":1024,\"name\":\"pushToWrapper\",\"url\":\"interfaces/ValueRef.html#__type.pushToWrapper\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":704,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueRef.html#__type.__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type\"},{\"id\":705,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/ValueRef.html#__type.__type-6.name-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":706,\"kind\":1024,\"name\":\"condition\",\"url\":\"interfaces/ValueRef.html#__type.__type-6.condition-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":707,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/ValueRef.html#__type.__type-6.__type-7\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type\"},{\"id\":708,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/ValueRef.html#__type.__type-6.__type-7.type-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type.__type\"},{\"id\":709,\"kind\":1024,\"name\":\"option\",\"url\":\"interfaces/ValueRef.html#__type.__type-6.__type-7.option-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type.__type\"},{\"id\":710,\"kind\":1024,\"name\":\"comparator\",\"url\":\"interfaces/ValueRef.html#__type.__type-6.__type-7.comparator-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type.__type\"},{\"id\":711,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/ValueRef.html#__type.__type-6.__type-7.value-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"ValueRef.__type.__type.__type\"},{\"id\":712,\"kind\":4194304,\"name\":\"PrefabComponentOption\",\"url\":\"modules.html#PrefabComponentOption\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":713,\"kind\":4194304,\"name\":\"PrefabWrapperLinkedOptionConfiguration\",\"url\":\"modules.html#PrefabWrapperLinkedOptionConfiguration\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":714,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#PrefabWrapperLinkedOptionConfiguration.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"PrefabWrapperLinkedOptionConfiguration\"},{\"id\":715,\"kind\":1024,\"name\":\"as\",\"url\":\"modules.html#PrefabWrapperLinkedOptionConfiguration.__type.as\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOptionConfiguration.__type\"},{\"id\":716,\"kind\":1024,\"name\":\"dataType\",\"url\":\"modules.html#PrefabWrapperLinkedOptionConfiguration.__type.dataType\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOptionConfiguration.__type\"},{\"id\":717,\"kind\":1024,\"name\":\"allowedInput\",\"url\":\"modules.html#PrefabWrapperLinkedOptionConfiguration.__type.allowedInput\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOptionConfiguration.__type\"},{\"id\":718,\"kind\":1024,\"name\":\"condition\",\"url\":\"modules.html#PrefabWrapperLinkedOptionConfiguration.__type.condition\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOptionConfiguration.__type\"},{\"id\":719,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#PrefabWrapperLinkedOptionConfiguration.__type.__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOptionConfiguration.__type\"},{\"id\":720,\"kind\":1024,\"name\":\"type\",\"url\":\"modules.html#PrefabWrapperLinkedOptionConfiguration.__type.__type-1.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOptionConfiguration.__type.__type\"},{\"id\":721,\"kind\":1024,\"name\":\"option\",\"url\":\"modules.html#PrefabWrapperLinkedOptionConfiguration.__type.__type-1.option\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOptionConfiguration.__type.__type\"},{\"id\":722,\"kind\":1024,\"name\":\"comparator\",\"url\":\"modules.html#PrefabWrapperLinkedOptionConfiguration.__type.__type-1.comparator\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOptionConfiguration.__type.__type\"},{\"id\":723,\"kind\":1024,\"name\":\"value\",\"url\":\"modules.html#PrefabWrapperLinkedOptionConfiguration.__type.__type-1.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOptionConfiguration.__type.__type\"},{\"id\":724,\"kind\":1024,\"name\":\"showOnDrop\",\"url\":\"modules.html#PrefabWrapperLinkedOptionConfiguration.__type.showOnDrop\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOptionConfiguration.__type\"},{\"id\":725,\"kind\":256,\"name\":\"PrefabWrapperLinkedOption\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":726,\"kind\":1024,\"name\":\"configuration\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#configuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapperLinkedOption\"},{\"id\":727,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapperLinkedOption\"},{\"id\":728,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapperLinkedOption\"},{\"id\":729,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabWrapperLinkedOption\"},{\"id\":730,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#__type-1.ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOption.__type\"},{\"id\":731,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#__type-1.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOption.__type\"},{\"id\":732,\"kind\":1024,\"name\":\"componentId\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#__type-1.__type-2.componentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOption.__type.__type\"},{\"id\":733,\"kind\":1024,\"name\":\"optionId\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#__type-1.__type-2.optionId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOption.__type.__type\"},{\"id\":734,\"kind\":1024,\"name\":\"optionRef\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#optionRef\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapperLinkedOption\"},{\"id\":735,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabWrapperLinkedOption\"},{\"id\":736,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOption.__type\"},{\"id\":737,\"kind\":1024,\"name\":\"sourceId\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#__type.sourceId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOption.__type\"},{\"id\":738,\"kind\":1024,\"name\":\"inherit\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#__type.inherit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedOption.__type\"},{\"id\":739,\"kind\":1024,\"name\":\"showInReconfigure\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#showInReconfigure\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapperLinkedOption\"},{\"id\":740,\"kind\":1024,\"name\":\"showInAddChild\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#showInAddChild\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapperLinkedOption\"},{\"id\":741,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PrefabWrapperLinkedOption\"},{\"id\":742,\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/PrefabWrapperLinkedOption.html#key\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PrefabWrapperLinkedOption\"},{\"id\":743,\"kind\":256,\"name\":\"PrefabWrapperLinkedPartialOption\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":744,\"kind\":1024,\"name\":\"configuration\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html#configuration\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapperLinkedPartialOption\"},{\"id\":745,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapperLinkedPartialOption\"},{\"id\":746,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html#value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapperLinkedPartialOption\"},{\"id\":747,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabWrapperLinkedPartialOption\"},{\"id\":748,\"kind\":1024,\"name\":\"ref\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html#__type-1.ref\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedPartialOption.__type\"},{\"id\":749,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html#__type-1.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedPartialOption.__type\"},{\"id\":750,\"kind\":1024,\"name\":\"componentId\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html#__type-1.__type-2.componentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedPartialOption.__type.__type\"},{\"id\":751,\"kind\":1024,\"name\":\"optionRef\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html#optionRef\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapperLinkedPartialOption\"},{\"id\":752,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"PrefabWrapperLinkedPartialOption\"},{\"id\":753,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html#__type.id\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedPartialOption.__type\"},{\"id\":754,\"kind\":1024,\"name\":\"sourceId\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html#__type.sourceId\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedPartialOption.__type\"},{\"id\":755,\"kind\":1024,\"name\":\"inherit\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html#__type.inherit\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabWrapperLinkedPartialOption.__type\"},{\"id\":756,\"kind\":1024,\"name\":\"showInReconfigure\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html#showInReconfigure\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapperLinkedPartialOption\"},{\"id\":757,\"kind\":1024,\"name\":\"showInAddChild\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html#showInAddChild\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"PrefabWrapperLinkedPartialOption\"},{\"id\":758,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html#label\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PrefabWrapperLinkedPartialOption\"},{\"id\":759,\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/PrefabWrapperLinkedPartialOption.html#key\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"PrefabWrapperLinkedPartialOption\"},{\"id\":760,\"kind\":4194304,\"name\":\"PrefabComponentStyle\",\"url\":\"modules.html#PrefabComponentStyle\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":761,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#PrefabComponentStyle.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"PrefabComponentStyle\"},{\"id\":762,\"kind\":1024,\"name\":\"name\",\"url\":\"modules.html#PrefabComponentStyle.__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentStyle.__type\"},{\"id\":763,\"kind\":1024,\"name\":\"overwrite\",\"url\":\"modules.html#PrefabComponentStyle.__type.overwrite\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"PrefabComponentStyle.__type\"},{\"id\":764,\"kind\":4194304,\"name\":\"OptionProducer\",\"url\":\"modules.html#OptionProducer\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":765,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#OptionProducer.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"OptionProducer\"},{\"id\":766,\"kind\":4194304,\"name\":\"LinkedOptionProducer\",\"url\":\"modules.html#LinkedOptionProducer\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":767,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#LinkedOptionProducer.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"LinkedOptionProducer\"},{\"id\":768,\"kind\":4194304,\"name\":\"LinkedPartialOptionProducer\",\"url\":\"modules.html#LinkedPartialOptionProducer\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":769,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#LinkedPartialOptionProducer.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"LinkedPartialOptionProducer\"},{\"id\":770,\"kind\":4194304,\"name\":\"StyleProducer\",\"url\":\"modules.html#StyleProducer\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":771,\"kind\":65536,\"name\":\"__type\",\"url\":\"modules.html#StyleProducer.__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-alias\",\"parent\":\"StyleProducer\"},{\"id\":772,\"kind\":256,\"name\":\"BaseConfiguration\",\"url\":\"interfaces/BaseConfiguration.html\",\"classes\":\"tsd-kind-interface\"},{\"id\":773,\"kind\":1024,\"name\":\"condition\",\"url\":\"interfaces/BaseConfiguration.html#condition\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"BaseConfiguration\"},{\"id\":774,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/BaseConfiguration.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"BaseConfiguration\"},{\"id\":775,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/BaseConfiguration.html#__type.type\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BaseConfiguration.__type\"},{\"id\":776,\"kind\":1024,\"name\":\"option\",\"url\":\"interfaces/BaseConfiguration.html#__type.option\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BaseConfiguration.__type\"},{\"id\":777,\"kind\":1024,\"name\":\"comparator\",\"url\":\"interfaces/BaseConfiguration.html#__type.comparator\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BaseConfiguration.__type\"},{\"id\":778,\"kind\":1024,\"name\":\"value\",\"url\":\"interfaces/BaseConfiguration.html#__type.value\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"BaseConfiguration.__type\"},{\"id\":779,\"kind\":4194304,\"name\":\"Configuration\",\"url\":\"modules.html#Configuration\",\"classes\":\"tsd-kind-type-alias\"},{\"id\":780,\"kind\":4194304,\"name\":\"MakePrepareActionArgs\",\"url\":\"modules.html#MakePrepareActionArgs\",\"classes\":\"tsd-kind-type-alias\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,51.578]],[\"parent/0\",[]],[\"name/1\",[1,62.564]],[\"parent/1\",[]],[\"name/2\",[2,62.564]],[\"parent/2\",[]],[\"name/3\",[3,39.877]],[\"parent/3\",[]],[\"name/4\",[4,57.456]],[\"parent/4\",[]],[\"name/5\",[5,24.798]],[\"parent/5\",[4,5.402]],[\"name/6\",[6,57.456]],[\"parent/6\",[7,4.147]],[\"name/7\",[8,62.564]],[\"parent/7\",[7,4.147]],[\"name/8\",[9,62.564]],[\"parent/8\",[7,4.147]],[\"name/9\",[3,39.877]],[\"parent/9\",[7,4.147]],[\"name/10\",[10,62.564]],[\"parent/10\",[7,4.147]],[\"name/11\",[11,62.564]],[\"parent/11\",[7,4.147]],[\"name/12\",[5,24.798]],[\"parent/12\",[7,4.147]],[\"name/13\",[12,62.564]],[\"parent/13\",[7,4.147]],[\"name/14\",[5,24.798]],[\"parent/14\",[7,4.147]],[\"name/15\",[13,62.564]],[\"parent/15\",[14,3.182]],[\"name/16\",[15,62.564]],[\"parent/16\",[14,3.182]],[\"name/17\",[16,62.564]],[\"parent/17\",[14,3.182]],[\"name/18\",[17,62.564]],[\"parent/18\",[14,3.182]],[\"name/19\",[18,62.564]],[\"parent/19\",[14,3.182]],[\"name/20\",[19,62.564]],[\"parent/20\",[14,3.182]],[\"name/21\",[20,62.564]],[\"parent/21\",[14,3.182]],[\"name/22\",[21,62.564]],[\"parent/22\",[14,3.182]],[\"name/23\",[22,62.564]],[\"parent/23\",[14,3.182]],[\"name/24\",[23,62.564]],[\"parent/24\",[14,3.182]],[\"name/25\",[24,62.564]],[\"parent/25\",[14,3.182]],[\"name/26\",[25,62.564]],[\"parent/26\",[14,3.182]],[\"name/27\",[26,62.564]],[\"parent/27\",[14,3.182]],[\"name/28\",[27,62.564]],[\"parent/28\",[14,3.182]],[\"name/29\",[28,62.564]],[\"parent/29\",[14,3.182]],[\"name/30\",[29,62.564]],[\"parent/30\",[14,3.182]],[\"name/31\",[30,62.564]],[\"parent/31\",[14,3.182]],[\"name/32\",[31,62.564]],[\"parent/32\",[14,3.182]],[\"name/33\",[32,62.564]],[\"parent/33\",[14,3.182]],[\"name/34\",[33,62.564]],[\"parent/34\",[14,3.182]],[\"name/35\",[34,62.564]],[\"parent/35\",[14,3.182]],[\"name/36\",[35,62.564]],[\"parent/36\",[14,3.182]],[\"name/37\",[36,62.564]],[\"parent/37\",[14,3.182]],[\"name/38\",[37,62.564]],[\"parent/38\",[14,3.182]],[\"name/39\",[38,62.564]],[\"parent/39\",[14,3.182]],[\"name/40\",[39,62.564]],[\"parent/40\",[14,3.182]],[\"name/41\",[40,57.456]],[\"parent/41\",[]],[\"name/42\",[41,51.578]],[\"parent/42\",[]],[\"name/43\",[42,62.564]],[\"parent/43\",[]],[\"name/44\",[43,37.441]],[\"parent/44\",[]],[\"name/45\",[44,62.564]],[\"parent/45\",[]],[\"name/46\",[45,62.564]],[\"parent/46\",[]],[\"name/47\",[46,62.564]],[\"parent/47\",[]],[\"name/48\",[47,62.564]],[\"parent/48\",[]],[\"name/49\",[48,54.091]],[\"parent/49\",[]],[\"name/50\",[49,57.456]],[\"parent/50\",[]],[\"name/51\",[50,57.456]],[\"parent/51\",[]],[\"name/52\",[51,43.105]],[\"parent/52\",[]],[\"name/53\",[52,62.564]],[\"parent/53\",[]],[\"name/54\",[53,62.564]],[\"parent/54\",[]],[\"name/55\",[54,57.456]],[\"parent/55\",[]],[\"name/56\",[55,62.564]],[\"parent/56\",[]],[\"name/57\",[56,62.564]],[\"parent/57\",[]],[\"name/58\",[57,62.564]],[\"parent/58\",[]],[\"name/59\",[58,57.456]],[\"parent/59\",[]],[\"name/60\",[59,57.456]],[\"parent/60\",[]],[\"name/61\",[60,19.04]],[\"parent/61\",[]],[\"name/62\",[61,57.456]],[\"parent/62\",[]],[\"name/63\",[62,62.564]],[\"parent/63\",[]],[\"name/64\",[63,62.564]],[\"parent/64\",[]],[\"name/65\",[64,62.564]],[\"parent/65\",[]],[\"name/66\",[65,62.564]],[\"parent/66\",[]],[\"name/67\",[66,57.456]],[\"parent/67\",[]],[\"name/68\",[67,62.564]],[\"parent/68\",[]],[\"name/69\",[68,62.564]],[\"parent/69\",[]],[\"name/70\",[69,62.564]],[\"parent/70\",[]],[\"name/71\",[70,62.564]],[\"parent/71\",[]],[\"name/72\",[71,62.564]],[\"parent/72\",[]],[\"name/73\",[72,62.564]],[\"parent/73\",[]],[\"name/74\",[73,62.564]],[\"parent/74\",[]],[\"name/75\",[3,39.877]],[\"parent/75\",[]],[\"name/76\",[74,57.456]],[\"parent/76\",[3,3.749]],[\"name/77\",[75,62.564]],[\"parent/77\",[3,3.749]],[\"name/78\",[76,62.564]],[\"parent/78\",[3,3.749]],[\"name/79\",[77,35.483]],[\"parent/79\",[3,3.749]],[\"name/80\",[78,62.564]],[\"parent/80\",[3,3.749]],[\"name/81\",[60,19.04]],[\"parent/81\",[3,3.749]],[\"name/82\",[79,62.564]],[\"parent/82\",[3,3.749]],[\"name/83\",[80,62.564]],[\"parent/83\",[3,3.749]],[\"name/84\",[81,62.564]],[\"parent/84\",[3,3.749]],[\"name/85\",[82,31.806]],[\"parent/85\",[3,3.749]],[\"name/86\",[83,62.564]],[\"parent/86\",[3,3.749]],[\"name/87\",[60,19.04]],[\"parent/87\",[]],[\"name/88\",[84,62.564]],[\"parent/88\",[60,1.79]],[\"name/89\",[85,62.564]],[\"parent/89\",[60,1.79]],[\"name/90\",[86,62.564]],[\"parent/90\",[60,1.79]],[\"name/91\",[87,62.564]],[\"parent/91\",[60,1.79]],[\"name/92\",[88,62.564]],[\"parent/92\",[60,1.79]],[\"name/93\",[89,62.564]],[\"parent/93\",[60,1.79]],[\"name/94\",[90,62.564]],[\"parent/94\",[60,1.79]],[\"name/95\",[91,62.564]],[\"parent/95\",[60,1.79]],[\"name/96\",[92,62.564]],[\"parent/96\",[60,1.79]],[\"name/97\",[93,62.564]],[\"parent/97\",[60,1.79]],[\"name/98\",[94,62.564]],[\"parent/98\",[60,1.79]],[\"name/99\",[95,62.564]],[\"parent/99\",[60,1.79]],[\"name/100\",[96,62.564]],[\"parent/100\",[60,1.79]],[\"name/101\",[97,62.564]],[\"parent/101\",[60,1.79]],[\"name/102\",[98,62.564]],[\"parent/102\",[60,1.79]],[\"name/103\",[99,62.564]],[\"parent/103\",[60,1.79]],[\"name/104\",[100,62.564]],[\"parent/104\",[60,1.79]],[\"name/105\",[101,62.564]],[\"parent/105\",[60,1.79]],[\"name/106\",[102,62.564]],[\"parent/106\",[60,1.79]],[\"name/107\",[103,62.564]],[\"parent/107\",[60,1.79]],[\"name/108\",[104,62.564]],[\"parent/108\",[60,1.79]],[\"name/109\",[105,62.564]],[\"parent/109\",[60,1.79]],[\"name/110\",[106,62.564]],[\"parent/110\",[60,1.79]],[\"name/111\",[107,62.564]],[\"parent/111\",[60,1.79]],[\"name/112\",[108,62.564]],[\"parent/112\",[60,1.79]],[\"name/113\",[109,62.564]],[\"parent/113\",[60,1.79]],[\"name/114\",[110,62.564]],[\"parent/114\",[60,1.79]],[\"name/115\",[111,62.564]],[\"parent/115\",[60,1.79]],[\"name/116\",[112,62.564]],[\"parent/116\",[60,1.79]],[\"name/117\",[113,62.564]],[\"parent/117\",[60,1.79]],[\"name/118\",[114,62.564]],[\"parent/118\",[60,1.79]],[\"name/119\",[115,62.564]],[\"parent/119\",[60,1.79]],[\"name/120\",[116,62.564]],[\"parent/120\",[60,1.79]],[\"name/121\",[117,62.564]],[\"parent/121\",[60,1.79]],[\"name/122\",[118,62.564]],[\"parent/122\",[60,1.79]],[\"name/123\",[119,62.564]],[\"parent/123\",[60,1.79]],[\"name/124\",[120,62.564]],[\"parent/124\",[60,1.79]],[\"name/125\",[121,62.564]],[\"parent/125\",[60,1.79]],[\"name/126\",[122,62.564]],[\"parent/126\",[60,1.79]],[\"name/127\",[123,62.564]],[\"parent/127\",[60,1.79]],[\"name/128\",[124,62.564]],[\"parent/128\",[60,1.79]],[\"name/129\",[125,62.564]],[\"parent/129\",[60,1.79]],[\"name/130\",[126,62.564]],[\"parent/130\",[60,1.79]],[\"name/131\",[127,62.564]],[\"parent/131\",[60,1.79]],[\"name/132\",[128,62.564]],[\"parent/132\",[60,1.79]],[\"name/133\",[129,62.564]],[\"parent/133\",[60,1.79]],[\"name/134\",[130,62.564]],[\"parent/134\",[60,1.79]],[\"name/135\",[131,62.564]],[\"parent/135\",[60,1.79]],[\"name/136\",[132,62.564]],[\"parent/136\",[60,1.79]],[\"name/137\",[133,62.564]],[\"parent/137\",[60,1.79]],[\"name/138\",[134,62.564]],[\"parent/138\",[60,1.79]],[\"name/139\",[135,62.564]],[\"parent/139\",[60,1.79]],[\"name/140\",[136,62.564]],[\"parent/140\",[60,1.79]],[\"name/141\",[137,62.564]],[\"parent/141\",[60,1.79]],[\"name/142\",[138,62.564]],[\"parent/142\",[60,1.79]],[\"name/143\",[139,62.564]],[\"parent/143\",[60,1.79]],[\"name/144\",[140,62.564]],[\"parent/144\",[60,1.79]],[\"name/145\",[141,62.564]],[\"parent/145\",[60,1.79]],[\"name/146\",[142,62.564]],[\"parent/146\",[60,1.79]],[\"name/147\",[143,62.564]],[\"parent/147\",[60,1.79]],[\"name/148\",[144,62.564]],[\"parent/148\",[60,1.79]],[\"name/149\",[145,62.564]],[\"parent/149\",[60,1.79]],[\"name/150\",[146,62.564]],[\"parent/150\",[60,1.79]],[\"name/151\",[147,62.564]],[\"parent/151\",[60,1.79]],[\"name/152\",[148,62.564]],[\"parent/152\",[60,1.79]],[\"name/153\",[149,62.564]],[\"parent/153\",[60,1.79]],[\"name/154\",[150,62.564]],[\"parent/154\",[60,1.79]],[\"name/155\",[151,62.564]],[\"parent/155\",[60,1.79]],[\"name/156\",[152,62.564]],[\"parent/156\",[60,1.79]],[\"name/157\",[153,62.564]],[\"parent/157\",[60,1.79]],[\"name/158\",[154,62.564]],[\"parent/158\",[60,1.79]],[\"name/159\",[155,62.564]],[\"parent/159\",[60,1.79]],[\"name/160\",[156,62.564]],[\"parent/160\",[60,1.79]],[\"name/161\",[157,62.564]],[\"parent/161\",[60,1.79]],[\"name/162\",[158,62.564]],[\"parent/162\",[60,1.79]],[\"name/163\",[159,62.564]],[\"parent/163\",[60,1.79]],[\"name/164\",[160,62.564]],[\"parent/164\",[60,1.79]],[\"name/165\",[161,62.564]],[\"parent/165\",[60,1.79]],[\"name/166\",[162,62.564]],[\"parent/166\",[60,1.79]],[\"name/167\",[163,62.564]],[\"parent/167\",[60,1.79]],[\"name/168\",[164,62.564]],[\"parent/168\",[60,1.79]],[\"name/169\",[165,62.564]],[\"parent/169\",[60,1.79]],[\"name/170\",[166,62.564]],[\"parent/170\",[60,1.79]],[\"name/171\",[167,62.564]],[\"parent/171\",[60,1.79]],[\"name/172\",[168,62.564]],[\"parent/172\",[60,1.79]],[\"name/173\",[169,62.564]],[\"parent/173\",[60,1.79]],[\"name/174\",[170,62.564]],[\"parent/174\",[60,1.79]],[\"name/175\",[171,62.564]],[\"parent/175\",[60,1.79]],[\"name/176\",[172,62.564]],[\"parent/176\",[60,1.79]],[\"name/177\",[173,62.564]],[\"parent/177\",[60,1.79]],[\"name/178\",[174,62.564]],[\"parent/178\",[60,1.79]],[\"name/179\",[175,62.564]],[\"parent/179\",[60,1.79]],[\"name/180\",[176,62.564]],[\"parent/180\",[60,1.79]],[\"name/181\",[177,62.564]],[\"parent/181\",[60,1.79]],[\"name/182\",[178,62.564]],[\"parent/182\",[60,1.79]],[\"name/183\",[179,62.564]],[\"parent/183\",[60,1.79]],[\"name/184\",[180,62.564]],[\"parent/184\",[60,1.79]],[\"name/185\",[181,62.564]],[\"parent/185\",[60,1.79]],[\"name/186\",[182,62.564]],[\"parent/186\",[60,1.79]],[\"name/187\",[183,62.564]],[\"parent/187\",[60,1.79]],[\"name/188\",[184,62.564]],[\"parent/188\",[60,1.79]],[\"name/189\",[185,62.564]],[\"parent/189\",[60,1.79]],[\"name/190\",[186,62.564]],[\"parent/190\",[60,1.79]],[\"name/191\",[187,62.564]],[\"parent/191\",[60,1.79]],[\"name/192\",[188,62.564]],[\"parent/192\",[60,1.79]],[\"name/193\",[189,62.564]],[\"parent/193\",[60,1.79]],[\"name/194\",[190,62.564]],[\"parent/194\",[60,1.79]],[\"name/195\",[191,62.564]],[\"parent/195\",[60,1.79]],[\"name/196\",[192,62.564]],[\"parent/196\",[60,1.79]],[\"name/197\",[193,62.564]],[\"parent/197\",[60,1.79]],[\"name/198\",[194,62.564]],[\"parent/198\",[60,1.79]],[\"name/199\",[195,62.564]],[\"parent/199\",[60,1.79]],[\"name/200\",[196,62.564]],[\"parent/200\",[60,1.79]],[\"name/201\",[43,37.441]],[\"parent/201\",[]],[\"name/202\",[197,47.901]],[\"parent/202\",[43,3.52]],[\"name/203\",[198,62.564]],[\"parent/203\",[43,3.52]],[\"name/204\",[199,62.564]],[\"parent/204\",[43,3.52]],[\"name/205\",[200,62.564]],[\"parent/205\",[43,3.52]],[\"name/206\",[201,62.564]],[\"parent/206\",[43,3.52]],[\"name/207\",[202,62.564]],[\"parent/207\",[43,3.52]],[\"name/208\",[203,62.564]],[\"parent/208\",[43,3.52]],[\"name/209\",[204,62.564]],[\"parent/209\",[43,3.52]],[\"name/210\",[205,62.564]],[\"parent/210\",[43,3.52]],[\"name/211\",[206,62.564]],[\"parent/211\",[43,3.52]],[\"name/212\",[207,62.564]],[\"parent/212\",[43,3.52]],[\"name/213\",[208,62.564]],[\"parent/213\",[43,3.52]],[\"name/214\",[209,62.564]],[\"parent/214\",[43,3.52]],[\"name/215\",[210,62.564]],[\"parent/215\",[43,3.52]],[\"name/216\",[211,62.564]],[\"parent/216\",[43,3.52]],[\"name/217\",[212,62.564]],[\"parent/217\",[43,3.52]],[\"name/218\",[213,62.564]],[\"parent/218\",[]],[\"name/219\",[214,49.571]],[\"parent/219\",[]],[\"name/220\",[82,31.806]],[\"parent/220\",[214,4.661]],[\"name/221\",[215,62.564]],[\"parent/221\",[214,4.661]],[\"name/222\",[216,37.441]],[\"parent/222\",[214,4.661]],[\"name/223\",[5,24.798]],[\"parent/223\",[214,4.661]],[\"name/224\",[217,39.877]],[\"parent/224\",[218,5.883]],[\"name/225\",[219,47.901]],[\"parent/225\",[]],[\"name/226\",[82,31.806]],[\"parent/226\",[219,4.504]],[\"name/227\",[220,41.361]],[\"parent/227\",[219,4.504]],[\"name/228\",[221,57.456]],[\"parent/228\",[219,4.504]],[\"name/229\",[222,57.456]],[\"parent/229\",[219,4.504]],[\"name/230\",[223,49.571]],[\"parent/230\",[219,4.504]],[\"name/231\",[224,39.21]],[\"parent/231\",[]],[\"name/232\",[217,39.877]],[\"parent/232\",[224,3.687]],[\"name/233\",[82,31.806]],[\"parent/233\",[224,3.687]],[\"name/234\",[220,41.361]],[\"parent/234\",[224,3.687]],[\"name/235\",[74,57.456]],[\"parent/235\",[224,3.687]],[\"name/236\",[221,57.456]],[\"parent/236\",[224,3.687]],[\"name/237\",[77,35.483]],[\"parent/237\",[224,3.687]],[\"name/238\",[222,57.456]],[\"parent/238\",[224,3.687]],[\"name/239\",[223,49.571]],[\"parent/239\",[224,3.687]],[\"name/240\",[225,62.564]],[\"parent/240\",[224,3.687]],[\"name/241\",[226,62.564]],[\"parent/241\",[224,3.687]],[\"name/242\",[227,62.564]],[\"parent/242\",[224,3.687]],[\"name/243\",[216,37.441]],[\"parent/243\",[224,3.687]],[\"name/244\",[5,24.798]],[\"parent/244\",[224,3.687]],[\"name/245\",[217,39.877]],[\"parent/245\",[228,5.883]],[\"name/246\",[40,57.456]],[\"parent/246\",[224,3.687]],[\"name/247\",[229,54.091]],[\"parent/247\",[]],[\"name/248\",[82,31.806]],[\"parent/248\",[229,5.086]],[\"name/249\",[230,34.632]],[\"parent/249\",[229,5.086]],[\"name/250\",[231,54.091]],[\"parent/250\",[]],[\"name/251\",[82,31.806]],[\"parent/251\",[231,5.086]],[\"name/252\",[230,34.632]],[\"parent/252\",[231,5.086]],[\"name/253\",[232,62.564]],[\"parent/253\",[]],[\"name/254\",[233,37.997]],[\"parent/254\",[]],[\"name/255\",[234,62.564]],[\"parent/255\",[233,3.573]],[\"name/256\",[235,62.564]],[\"parent/256\",[233,3.573]],[\"name/257\",[236,62.564]],[\"parent/257\",[233,3.573]],[\"name/258\",[237,62.564]],[\"parent/258\",[233,3.573]],[\"name/259\",[238,62.564]],[\"parent/259\",[233,3.573]],[\"name/260\",[239,62.564]],[\"parent/260\",[233,3.573]],[\"name/261\",[48,54.091]],[\"parent/261\",[233,3.573]],[\"name/262\",[240,62.564]],[\"parent/262\",[233,3.573]],[\"name/263\",[241,62.564]],[\"parent/263\",[233,3.573]],[\"name/264\",[242,62.564]],[\"parent/264\",[233,3.573]],[\"name/265\",[243,62.564]],[\"parent/265\",[233,3.573]],[\"name/266\",[244,62.564]],[\"parent/266\",[233,3.573]],[\"name/267\",[245,62.564]],[\"parent/267\",[233,3.573]],[\"name/268\",[246,62.564]],[\"parent/268\",[233,3.573]],[\"name/269\",[247,62.564]],[\"parent/269\",[233,3.573]],[\"name/270\",[248,62.564]],[\"parent/270\",[233,3.573]],[\"name/271\",[249,54.091]],[\"parent/271\",[]],[\"name/272\",[77,35.483]],[\"parent/272\",[249,5.086]],[\"name/273\",[250,57.456]],[\"parent/273\",[249,5.086]],[\"name/274\",[251,49.571]],[\"parent/274\",[]],[\"name/275\",[82,31.806]],[\"parent/275\",[251,4.661]],[\"name/276\",[77,35.483]],[\"parent/276\",[251,4.661]],[\"name/277\",[252,62.564]],[\"parent/277\",[251,4.661]],[\"name/278\",[253,62.564]],[\"parent/278\",[251,4.661]],[\"name/279\",[41,51.578]],[\"parent/279\",[]],[\"name/280\",[77,35.483]],[\"parent/280\",[41,4.85]],[\"name/281\",[254,57.456]],[\"parent/281\",[41,4.85]],[\"name/282\",[255,45.218]],[\"parent/282\",[]],[\"name/283\",[256,62.564]],[\"parent/283\",[255,4.252]],[\"name/284\",[257,62.564]],[\"parent/284\",[255,4.252]],[\"name/285\",[258,62.564]],[\"parent/285\",[255,4.252]],[\"name/286\",[259,51.578]],[\"parent/286\",[255,4.252]],[\"name/287\",[260,62.564]],[\"parent/287\",[255,4.252]],[\"name/288\",[261,62.564]],[\"parent/288\",[255,4.252]],[\"name/289\",[262,62.564]],[\"parent/289\",[255,4.252]],[\"name/290\",[263,62.564]],[\"parent/290\",[]],[\"name/291\",[264,62.564]],[\"parent/291\",[]],[\"name/292\",[265,62.564]],[\"parent/292\",[]],[\"name/293\",[266,51.578]],[\"parent/293\",[]],[\"name/294\",[250,57.456]],[\"parent/294\",[266,4.85]],[\"name/295\",[77,35.483]],[\"parent/295\",[266,4.85]],[\"name/296\",[82,31.806]],[\"parent/296\",[266,4.85]],[\"name/297\",[267,45.218]],[\"parent/297\",[]],[\"name/298\",[77,35.483]],[\"parent/298\",[267,4.252]],[\"name/299\",[216,37.441]],[\"parent/299\",[267,4.252]],[\"name/300\",[5,24.798]],[\"parent/300\",[267,4.252]],[\"name/301\",[217,39.877]],[\"parent/301\",[268,4.85]],[\"name/302\",[269,54.091]],[\"parent/302\",[268,4.85]],[\"name/303\",[223,49.571]],[\"parent/303\",[267,4.252]],[\"name/304\",[5,24.798]],[\"parent/304\",[267,4.252]],[\"name/305\",[216,37.441]],[\"parent/305\",[268,4.85]],[\"name/306\",[5,24.798]],[\"parent/306\",[268,4.85]],[\"name/307\",[270,62.564]],[\"parent/307\",[271,5.883]],[\"name/308\",[272,62.564]],[\"parent/308\",[267,4.252]],[\"name/309\",[273,62.564]],[\"parent/309\",[267,4.252]],[\"name/310\",[274,51.578]],[\"parent/310\",[]],[\"name/311\",[275,62.564]],[\"parent/311\",[274,4.85]],[\"name/312\",[216,37.441]],[\"parent/312\",[274,4.85]],[\"name/313\",[5,24.798]],[\"parent/313\",[274,4.85]],[\"name/314\",[276,57.456]],[\"parent/314\",[277,5.883]],[\"name/315\",[278,51.578]],[\"parent/315\",[]],[\"name/316\",[216,37.441]],[\"parent/316\",[278,4.85]],[\"name/317\",[5,24.798]],[\"parent/317\",[278,4.85]],[\"name/318\",[279,51.578]],[\"parent/318\",[280,5.402]],[\"name/319\",[281,54.091]],[\"parent/319\",[280,5.402]],[\"name/320\",[282,57.456]],[\"parent/320\",[278,4.85]],[\"name/321\",[283,49.571]],[\"parent/321\",[]],[\"name/322\",[6,57.456]],[\"parent/322\",[283,4.661]],[\"name/323\",[282,57.456]],[\"parent/323\",[283,4.661]],[\"name/324\",[216,37.441]],[\"parent/324\",[283,4.661]],[\"name/325\",[5,24.798]],[\"parent/325\",[283,4.661]],[\"name/326\",[281,54.091]],[\"parent/326\",[284,5.883]],[\"name/327\",[285,54.091]],[\"parent/327\",[]],[\"name/328\",[216,37.441]],[\"parent/328\",[285,5.086]],[\"name/329\",[5,24.798]],[\"parent/329\",[285,5.086]],[\"name/330\",[279,51.578]],[\"parent/330\",[286,5.402]],[\"name/331\",[281,54.091]],[\"parent/331\",[286,5.402]],[\"name/332\",[287,51.578]],[\"parent/332\",[]],[\"name/333\",[288,62.564]],[\"parent/333\",[287,4.85]],[\"name/334\",[216,37.441]],[\"parent/334\",[287,4.85]],[\"name/335\",[5,24.798]],[\"parent/335\",[287,4.85]],[\"name/336\",[289,62.564]],[\"parent/336\",[290,5.086]],[\"name/337\",[291,57.456]],[\"parent/337\",[290,5.086]],[\"name/338\",[292,62.564]],[\"parent/338\",[290,5.086]],[\"name/339\",[293,54.091]],[\"parent/339\",[]],[\"name/340\",[294,57.456]],[\"parent/340\",[293,5.086]],[\"name/341\",[223,49.571]],[\"parent/341\",[293,5.086]],[\"name/342\",[295,57.456]],[\"parent/342\",[]],[\"name/343\",[5,24.798]],[\"parent/343\",[295,5.402]],[\"name/344\",[296,62.564]],[\"parent/344\",[297,4.85]],[\"name/345\",[298,62.564]],[\"parent/345\",[297,4.85]],[\"name/346\",[299,62.564]],[\"parent/346\",[297,4.85]],[\"name/347\",[5,24.798]],[\"parent/347\",[297,4.85]],[\"name/348\",[300,45.218]],[\"parent/348\",[]],[\"name/349\",[301,54.091]],[\"parent/349\",[300,4.252]],[\"name/350\",[58,57.456]],[\"parent/350\",[300,4.252]],[\"name/351\",[302,54.091]],[\"parent/351\",[300,4.252]],[\"name/352\",[303,62.564]],[\"parent/352\",[300,4.252]],[\"name/353\",[304,62.564]],[\"parent/353\",[300,4.252]],[\"name/354\",[305,62.564]],[\"parent/354\",[300,4.252]],[\"name/355\",[306,62.564]],[\"parent/355\",[300,4.252]],[\"name/356\",[307,44.106]],[\"parent/356\",[]],[\"name/357\",[48,54.091]],[\"parent/357\",[307,4.147]],[\"name/358\",[49,57.456]],[\"parent/358\",[307,4.147]],[\"name/359\",[61,57.456]],[\"parent/359\",[307,4.147]],[\"name/360\",[50,57.456]],[\"parent/360\",[307,4.147]],[\"name/361\",[308,62.564]],[\"parent/361\",[307,4.147]],[\"name/362\",[66,57.456]],[\"parent/362\",[307,4.147]],[\"name/363\",[54,57.456]],[\"parent/363\",[307,4.147]],[\"name/364\",[309,62.564]],[\"parent/364\",[307,4.147]],[\"name/365\",[310,51.578]],[\"parent/365\",[]],[\"name/366\",[77,35.483]],[\"parent/366\",[310,4.85]],[\"name/367\",[311,51.578]],[\"parent/367\",[310,4.85]],[\"name/368\",[82,31.806]],[\"parent/368\",[310,4.85]],[\"name/369\",[312,49.571]],[\"parent/369\",[]],[\"name/370\",[313,62.564]],[\"parent/370\",[312,4.661]],[\"name/371\",[77,35.483]],[\"parent/371\",[312,4.661]],[\"name/372\",[311,51.578]],[\"parent/372\",[312,4.661]],[\"name/373\",[82,31.806]],[\"parent/373\",[312,4.661]],[\"name/374\",[314,54.091]],[\"parent/374\",[]],[\"name/375\",[315,62.564]],[\"parent/375\",[314,5.086]],[\"name/376\",[316,62.564]],[\"parent/376\",[314,5.086]],[\"name/377\",[317,46.47]],[\"parent/377\",[]],[\"name/378\",[77,35.483]],[\"parent/378\",[317,4.369]],[\"name/379\",[318,47.901]],[\"parent/379\",[317,4.369]],[\"name/380\",[216,37.441]],[\"parent/380\",[317,4.369]],[\"name/381\",[5,24.798]],[\"parent/381\",[317,4.369]],[\"name/382\",[318,47.901]],[\"parent/382\",[319,5.402]],[\"name/383\",[320,54.091]],[\"parent/383\",[319,5.402]],[\"name/384\",[321,54.091]],[\"parent/384\",[317,4.369]],[\"name/385\",[322,54.091]],[\"parent/385\",[317,4.369]],[\"name/386\",[323,54.091]],[\"parent/386\",[]],[\"name/387\",[324,54.091]],[\"parent/387\",[323,5.086]],[\"name/388\",[217,39.877]],[\"parent/388\",[323,5.086]],[\"name/389\",[325,54.091]],[\"parent/389\",[]],[\"name/390\",[276,57.456]],[\"parent/390\",[325,5.086]],[\"name/391\",[324,54.091]],[\"parent/391\",[325,5.086]],[\"name/392\",[326,49.571]],[\"parent/392\",[]],[\"name/393\",[77,35.483]],[\"parent/393\",[326,4.661]],[\"name/394\",[324,54.091]],[\"parent/394\",[326,4.661]],[\"name/395\",[216,37.441]],[\"parent/395\",[326,4.661]],[\"name/396\",[5,24.798]],[\"parent/396\",[326,4.661]],[\"name/397\",[327,54.091]],[\"parent/397\",[328,5.883]],[\"name/398\",[329,47.901]],[\"parent/398\",[]],[\"name/399\",[77,35.483]],[\"parent/399\",[329,4.504]],[\"name/400\",[330,62.564]],[\"parent/400\",[329,4.504]],[\"name/401\",[217,39.877]],[\"parent/401\",[329,4.504]],[\"name/402\",[269,54.091]],[\"parent/402\",[329,4.504]],[\"name/403\",[311,51.578]],[\"parent/403\",[329,4.504]],[\"name/404\",[331,62.564]],[\"parent/404\",[]],[\"name/405\",[332,45.218]],[\"parent/405\",[]],[\"name/406\",[82,31.806]],[\"parent/406\",[332,4.252]],[\"name/407\",[77,35.483]],[\"parent/407\",[332,4.252]],[\"name/408\",[318,47.901]],[\"parent/408\",[332,4.252]],[\"name/409\",[216,37.441]],[\"parent/409\",[332,4.252]],[\"name/410\",[5,24.798]],[\"parent/410\",[332,4.252]],[\"name/411\",[318,47.901]],[\"parent/411\",[333,5.402]],[\"name/412\",[320,54.091]],[\"parent/412\",[333,5.402]],[\"name/413\",[321,54.091]],[\"parent/413\",[332,4.252]],[\"name/414\",[322,54.091]],[\"parent/414\",[332,4.252]],[\"name/415\",[334,44.106]],[\"parent/415\",[]],[\"name/416\",[82,31.806]],[\"parent/416\",[334,4.147]],[\"name/417\",[311,51.578]],[\"parent/417\",[334,4.147]],[\"name/418\",[77,35.483]],[\"parent/418\",[334,4.147]],[\"name/419\",[318,47.901]],[\"parent/419\",[334,4.147]],[\"name/420\",[216,37.441]],[\"parent/420\",[334,4.147]],[\"name/421\",[5,24.798]],[\"parent/421\",[334,4.147]],[\"name/422\",[318,47.901]],[\"parent/422\",[335,5.402]],[\"name/423\",[320,54.091]],[\"parent/423\",[335,5.402]],[\"name/424\",[321,54.091]],[\"parent/424\",[334,4.147]],[\"name/425\",[322,54.091]],[\"parent/425\",[334,4.147]],[\"name/426\",[336,62.564]],[\"parent/426\",[]],[\"name/427\",[337,47.901]],[\"parent/427\",[]],[\"name/428\",[294,57.456]],[\"parent/428\",[337,4.504]],[\"name/429\",[77,35.483]],[\"parent/429\",[337,4.504]],[\"name/430\",[216,37.441]],[\"parent/430\",[337,4.504]],[\"name/431\",[5,24.798]],[\"parent/431\",[337,4.504]],[\"name/432\",[338,62.564]],[\"parent/432\",[339,5.086]],[\"name/433\",[269,54.091]],[\"parent/433\",[339,5.086]],[\"name/434\",[217,39.877]],[\"parent/434\",[339,5.086]],[\"name/435\",[223,49.571]],[\"parent/435\",[337,4.504]],[\"name/436\",[340,62.564]],[\"parent/436\",[]],[\"name/437\",[341,62.564]],[\"parent/437\",[]],[\"name/438\",[342,41.361]],[\"parent/438\",[]],[\"name/439\",[343,62.564]],[\"parent/439\",[342,3.889]],[\"name/440\",[301,54.091]],[\"parent/440\",[342,3.889]],[\"name/441\",[344,62.564]],[\"parent/441\",[342,3.889]],[\"name/442\",[345,57.456]],[\"parent/442\",[342,3.889]],[\"name/443\",[346,57.456]],[\"parent/443\",[342,3.889]],[\"name/444\",[347,57.456]],[\"parent/444\",[342,3.889]],[\"name/445\",[348,57.456]],[\"parent/445\",[342,3.889]],[\"name/446\",[349,62.564]],[\"parent/446\",[342,3.889]],[\"name/447\",[279,51.578]],[\"parent/447\",[342,3.889]],[\"name/448\",[350,62.564]],[\"parent/448\",[342,3.889]],[\"name/449\",[302,54.091]],[\"parent/449\",[342,3.889]],[\"name/450\",[351,62.564]],[\"parent/450\",[]],[\"name/451\",[352,30.923]],[\"parent/451\",[]],[\"name/452\",[353,62.564]],[\"parent/452\",[352,2.908]],[\"name/453\",[301,54.091]],[\"parent/453\",[352,2.908]],[\"name/454\",[354,62.564]],[\"parent/454\",[352,2.908]],[\"name/455\",[345,57.456]],[\"parent/455\",[352,2.908]],[\"name/456\",[355,62.564]],[\"parent/456\",[352,2.908]],[\"name/457\",[346,57.456]],[\"parent/457\",[352,2.908]],[\"name/458\",[356,62.564]],[\"parent/458\",[352,2.908]],[\"name/459\",[347,57.456]],[\"parent/459\",[352,2.908]],[\"name/460\",[357,62.564]],[\"parent/460\",[352,2.908]],[\"name/461\",[358,62.564]],[\"parent/461\",[352,2.908]],[\"name/462\",[359,62.564]],[\"parent/462\",[352,2.908]],[\"name/463\",[360,62.564]],[\"parent/463\",[352,2.908]],[\"name/464\",[361,62.564]],[\"parent/464\",[352,2.908]],[\"name/465\",[348,57.456]],[\"parent/465\",[352,2.908]],[\"name/466\",[362,62.564]],[\"parent/466\",[352,2.908]],[\"name/467\",[363,62.564]],[\"parent/467\",[352,2.908]],[\"name/468\",[364,62.564]],[\"parent/468\",[352,2.908]],[\"name/469\",[365,62.564]],[\"parent/469\",[352,2.908]],[\"name/470\",[366,62.564]],[\"parent/470\",[352,2.908]],[\"name/471\",[367,62.564]],[\"parent/471\",[352,2.908]],[\"name/472\",[279,51.578]],[\"parent/472\",[352,2.908]],[\"name/473\",[291,57.456]],[\"parent/473\",[352,2.908]],[\"name/474\",[368,62.564]],[\"parent/474\",[352,2.908]],[\"name/475\",[369,62.564]],[\"parent/475\",[352,2.908]],[\"name/476\",[370,62.564]],[\"parent/476\",[352,2.908]],[\"name/477\",[371,62.564]],[\"parent/477\",[352,2.908]],[\"name/478\",[372,62.564]],[\"parent/478\",[352,2.908]],[\"name/479\",[302,54.091]],[\"parent/479\",[352,2.908]],[\"name/480\",[373,62.564]],[\"parent/480\",[352,2.908]],[\"name/481\",[59,57.456]],[\"parent/481\",[352,2.908]],[\"name/482\",[374,62.564]],[\"parent/482\",[352,2.908]],[\"name/483\",[375,62.564]],[\"parent/483\",[352,2.908]],[\"name/484\",[376,62.564]],[\"parent/484\",[352,2.908]],[\"name/485\",[377,62.564]],[\"parent/485\",[352,2.908]],[\"name/486\",[378,57.456]],[\"parent/486\",[]],[\"name/487\",[5,24.798]],[\"parent/487\",[378,5.402]],[\"name/488\",[220,41.361]],[\"parent/488\",[379,4.661]],[\"name/489\",[380,62.564]],[\"parent/489\",[379,4.661]],[\"name/490\",[381,62.564]],[\"parent/490\",[379,4.661]],[\"name/491\",[382,44.106]],[\"parent/491\",[379,4.661]],[\"name/492\",[5,24.798]],[\"parent/492\",[379,4.661]],[\"name/493\",[82,31.806]],[\"parent/493\",[383,4.85]],[\"name/494\",[51,43.105]],[\"parent/494\",[383,4.85]],[\"name/495\",[384,44.106]],[\"parent/495\",[383,4.85]],[\"name/496\",[230,34.632]],[\"parent/496\",[383,4.85]],[\"name/497\",[385,62.564]],[\"parent/497\",[]],[\"name/498\",[386,62.564]],[\"parent/498\",[]],[\"name/499\",[387,45.218]],[\"parent/499\",[]],[\"name/500\",[220,41.361]],[\"parent/500\",[387,4.252]],[\"name/501\",[388,47.901]],[\"parent/501\",[387,4.252]],[\"name/502\",[82,31.806]],[\"parent/502\",[387,4.252]],[\"name/503\",[389,49.571]],[\"parent/503\",[387,4.252]],[\"name/504\",[5,24.798]],[\"parent/504\",[387,4.252]],[\"name/505\",[217,39.877]],[\"parent/505\",[390,2.934]],[\"name/506\",[391,49.571]],[\"parent/506\",[390,2.934]],[\"name/507\",[197,47.901]],[\"parent/507\",[390,2.934]],[\"name/508\",[392,47.901]],[\"parent/508\",[387,4.252]],[\"name/509\",[5,24.798]],[\"parent/509\",[387,4.252]],[\"name/510\",[393,54.091]],[\"parent/510\",[390,2.934]],[\"name/511\",[394,54.091]],[\"parent/511\",[390,2.934]],[\"name/512\",[395,54.091]],[\"parent/512\",[390,2.934]],[\"name/513\",[396,54.091]],[\"parent/513\",[390,2.934]],[\"name/514\",[397,54.091]],[\"parent/514\",[390,2.934]],[\"name/515\",[398,54.091]],[\"parent/515\",[390,2.934]],[\"name/516\",[399,54.091]],[\"parent/516\",[390,2.934]],[\"name/517\",[400,51.578]],[\"parent/517\",[390,2.934]],[\"name/518\",[401,54.091]],[\"parent/518\",[390,2.934]],[\"name/519\",[402,54.091]],[\"parent/519\",[390,2.934]],[\"name/520\",[403,51.578]],[\"parent/520\",[390,2.934]],[\"name/521\",[0,51.578]],[\"parent/521\",[390,2.934]],[\"name/522\",[382,44.106]],[\"parent/522\",[390,2.934]],[\"name/523\",[5,24.798]],[\"parent/523\",[390,2.934]],[\"name/524\",[82,31.806]],[\"parent/524\",[404,3.424]],[\"name/525\",[51,43.105]],[\"parent/525\",[404,3.424]],[\"name/526\",[384,44.106]],[\"parent/526\",[404,3.424]],[\"name/527\",[230,34.632]],[\"parent/527\",[404,3.424]],[\"name/528\",[405,54.091]],[\"parent/528\",[390,2.934]],[\"name/529\",[5,24.798]],[\"parent/529\",[390,2.934]],[\"name/530\",[82,31.806]],[\"parent/530\",[404,3.424]],[\"name/531\",[230,34.632]],[\"parent/531\",[404,3.424]],[\"name/532\",[406,54.091]],[\"parent/532\",[390,2.934]],[\"name/533\",[5,24.798]],[\"parent/533\",[390,2.934]],[\"name/534\",[407,54.091]],[\"parent/534\",[404,3.424]],[\"name/535\",[77,35.483]],[\"parent/535\",[404,3.424]],[\"name/536\",[408,54.091]],[\"parent/536\",[404,3.424]],[\"name/537\",[230,34.632]],[\"parent/537\",[404,3.424]],[\"name/538\",[409,51.578]],[\"parent/538\",[390,2.934]],[\"name/539\",[410,54.091]],[\"parent/539\",[390,2.934]],[\"name/540\",[259,51.578]],[\"parent/540\",[390,2.934]],[\"name/541\",[411,54.091]],[\"parent/541\",[390,2.934]],[\"name/542\",[412,54.091]],[\"parent/542\",[390,2.934]],[\"name/543\",[5,24.798]],[\"parent/543\",[390,2.934]],[\"name/544\",[82,31.806]],[\"parent/544\",[404,3.424]],[\"name/545\",[413,54.091]],[\"parent/545\",[404,3.424]],[\"name/546\",[414,54.091]],[\"parent/546\",[404,3.424]],[\"name/547\",[415,54.091]],[\"parent/547\",[390,2.934]],[\"name/548\",[416,51.578]],[\"parent/548\",[390,2.934]],[\"name/549\",[417,54.091]],[\"parent/549\",[390,2.934]],[\"name/550\",[418,54.091]],[\"parent/550\",[390,2.934]],[\"name/551\",[5,24.798]],[\"parent/551\",[390,2.934]],[\"name/552\",[419,54.091]],[\"parent/552\",[404,3.424]],[\"name/553\",[220,41.361]],[\"parent/553\",[404,3.424]],[\"name/554\",[230,34.632]],[\"parent/554\",[404,3.424]],[\"name/555\",[420,54.091]],[\"parent/555\",[404,3.424]],[\"name/556\",[421,54.091]],[\"parent/556\",[390,2.934]],[\"name/557\",[5,24.798]],[\"parent/557\",[390,2.934]],[\"name/558\",[77,35.483]],[\"parent/558\",[404,3.424]],[\"name/559\",[382,44.106]],[\"parent/559\",[404,3.424]],[\"name/560\",[5,24.798]],[\"parent/560\",[404,3.424]],[\"name/561\",[82,31.806]],[\"parent/561\",[422,4.85]],[\"name/562\",[51,43.105]],[\"parent/562\",[422,4.85]],[\"name/563\",[384,44.106]],[\"parent/563\",[422,4.85]],[\"name/564\",[230,34.632]],[\"parent/564\",[422,4.85]],[\"name/565\",[423,54.091]],[\"parent/565\",[]],[\"name/566\",[220,41.361]],[\"parent/566\",[423,5.086]],[\"name/567\",[388,47.901]],[\"parent/567\",[423,5.086]],[\"name/568\",[424,40.592]],[\"parent/568\",[]],[\"name/569\",[230,34.632]],[\"parent/569\",[424,3.817]],[\"name/570\",[216,37.441]],[\"parent/570\",[424,3.817]],[\"name/571\",[5,24.798]],[\"parent/571\",[424,3.817]],[\"name/572\",[217,39.877]],[\"parent/572\",[425,2.908]],[\"name/573\",[426,51.578]],[\"parent/573\",[424,3.817]],[\"name/574\",[427,51.578]],[\"parent/574\",[424,3.817]],[\"name/575\",[220,41.361]],[\"parent/575\",[424,3.817]],[\"name/576\",[388,47.901]],[\"parent/576\",[424,3.817]],[\"name/577\",[82,31.806]],[\"parent/577\",[424,3.817]],[\"name/578\",[389,49.571]],[\"parent/578\",[424,3.817]],[\"name/579\",[5,24.798]],[\"parent/579\",[424,3.817]],[\"name/580\",[217,39.877]],[\"parent/580\",[425,2.908]],[\"name/581\",[391,49.571]],[\"parent/581\",[425,2.908]],[\"name/582\",[197,47.901]],[\"parent/582\",[425,2.908]],[\"name/583\",[392,47.901]],[\"parent/583\",[424,3.817]],[\"name/584\",[5,24.798]],[\"parent/584\",[424,3.817]],[\"name/585\",[393,54.091]],[\"parent/585\",[425,2.908]],[\"name/586\",[394,54.091]],[\"parent/586\",[425,2.908]],[\"name/587\",[395,54.091]],[\"parent/587\",[425,2.908]],[\"name/588\",[396,54.091]],[\"parent/588\",[425,2.908]],[\"name/589\",[397,54.091]],[\"parent/589\",[425,2.908]],[\"name/590\",[398,54.091]],[\"parent/590\",[425,2.908]],[\"name/591\",[399,54.091]],[\"parent/591\",[425,2.908]],[\"name/592\",[400,51.578]],[\"parent/592\",[425,2.908]],[\"name/593\",[401,54.091]],[\"parent/593\",[425,2.908]],[\"name/594\",[402,54.091]],[\"parent/594\",[425,2.908]],[\"name/595\",[403,51.578]],[\"parent/595\",[425,2.908]],[\"name/596\",[0,51.578]],[\"parent/596\",[425,2.908]],[\"name/597\",[382,44.106]],[\"parent/597\",[425,2.908]],[\"name/598\",[5,24.798]],[\"parent/598\",[425,2.908]],[\"name/599\",[82,31.806]],[\"parent/599\",[428,3.424]],[\"name/600\",[51,43.105]],[\"parent/600\",[428,3.424]],[\"name/601\",[384,44.106]],[\"parent/601\",[428,3.424]],[\"name/602\",[230,34.632]],[\"parent/602\",[428,3.424]],[\"name/603\",[405,54.091]],[\"parent/603\",[425,2.908]],[\"name/604\",[5,24.798]],[\"parent/604\",[425,2.908]],[\"name/605\",[82,31.806]],[\"parent/605\",[428,3.424]],[\"name/606\",[230,34.632]],[\"parent/606\",[428,3.424]],[\"name/607\",[406,54.091]],[\"parent/607\",[425,2.908]],[\"name/608\",[5,24.798]],[\"parent/608\",[425,2.908]],[\"name/609\",[407,54.091]],[\"parent/609\",[428,3.424]],[\"name/610\",[77,35.483]],[\"parent/610\",[428,3.424]],[\"name/611\",[408,54.091]],[\"parent/611\",[428,3.424]],[\"name/612\",[230,34.632]],[\"parent/612\",[428,3.424]],[\"name/613\",[409,51.578]],[\"parent/613\",[425,2.908]],[\"name/614\",[410,54.091]],[\"parent/614\",[425,2.908]],[\"name/615\",[259,51.578]],[\"parent/615\",[425,2.908]],[\"name/616\",[411,54.091]],[\"parent/616\",[425,2.908]],[\"name/617\",[412,54.091]],[\"parent/617\",[425,2.908]],[\"name/618\",[5,24.798]],[\"parent/618\",[425,2.908]],[\"name/619\",[82,31.806]],[\"parent/619\",[428,3.424]],[\"name/620\",[413,54.091]],[\"parent/620\",[428,3.424]],[\"name/621\",[414,54.091]],[\"parent/621\",[428,3.424]],[\"name/622\",[415,54.091]],[\"parent/622\",[425,2.908]],[\"name/623\",[416,51.578]],[\"parent/623\",[425,2.908]],[\"name/624\",[417,54.091]],[\"parent/624\",[425,2.908]],[\"name/625\",[418,54.091]],[\"parent/625\",[425,2.908]],[\"name/626\",[5,24.798]],[\"parent/626\",[425,2.908]],[\"name/627\",[419,54.091]],[\"parent/627\",[428,3.424]],[\"name/628\",[220,41.361]],[\"parent/628\",[428,3.424]],[\"name/629\",[230,34.632]],[\"parent/629\",[428,3.424]],[\"name/630\",[420,54.091]],[\"parent/630\",[428,3.424]],[\"name/631\",[421,54.091]],[\"parent/631\",[425,2.908]],[\"name/632\",[5,24.798]],[\"parent/632\",[425,2.908]],[\"name/633\",[77,35.483]],[\"parent/633\",[428,3.424]],[\"name/634\",[382,44.106]],[\"parent/634\",[428,3.424]],[\"name/635\",[5,24.798]],[\"parent/635\",[428,3.424]],[\"name/636\",[82,31.806]],[\"parent/636\",[429,4.85]],[\"name/637\",[51,43.105]],[\"parent/637\",[429,4.85]],[\"name/638\",[384,44.106]],[\"parent/638\",[429,4.85]],[\"name/639\",[230,34.632]],[\"parent/639\",[429,4.85]],[\"name/640\",[430,41.361]],[\"parent/640\",[]],[\"name/641\",[216,37.441]],[\"parent/641\",[430,3.889]],[\"name/642\",[5,24.798]],[\"parent/642\",[430,3.889]],[\"name/643\",[217,39.877]],[\"parent/643\",[431,2.881]],[\"name/644\",[230,34.632]],[\"parent/644\",[431,2.881]],[\"name/645\",[426,51.578]],[\"parent/645\",[430,3.889]],[\"name/646\",[427,51.578]],[\"parent/646\",[430,3.889]],[\"name/647\",[220,41.361]],[\"parent/647\",[430,3.889]],[\"name/648\",[388,47.901]],[\"parent/648\",[430,3.889]],[\"name/649\",[82,31.806]],[\"parent/649\",[430,3.889]],[\"name/650\",[389,49.571]],[\"parent/650\",[430,3.889]],[\"name/651\",[5,24.798]],[\"parent/651\",[430,3.889]],[\"name/652\",[217,39.877]],[\"parent/652\",[431,2.881]],[\"name/653\",[391,49.571]],[\"parent/653\",[431,2.881]],[\"name/654\",[197,47.901]],[\"parent/654\",[431,2.881]],[\"name/655\",[392,47.901]],[\"parent/655\",[430,3.889]],[\"name/656\",[5,24.798]],[\"parent/656\",[430,3.889]],[\"name/657\",[393,54.091]],[\"parent/657\",[431,2.881]],[\"name/658\",[394,54.091]],[\"parent/658\",[431,2.881]],[\"name/659\",[395,54.091]],[\"parent/659\",[431,2.881]],[\"name/660\",[396,54.091]],[\"parent/660\",[431,2.881]],[\"name/661\",[397,54.091]],[\"parent/661\",[431,2.881]],[\"name/662\",[398,54.091]],[\"parent/662\",[431,2.881]],[\"name/663\",[399,54.091]],[\"parent/663\",[431,2.881]],[\"name/664\",[400,51.578]],[\"parent/664\",[431,2.881]],[\"name/665\",[401,54.091]],[\"parent/665\",[431,2.881]],[\"name/666\",[402,54.091]],[\"parent/666\",[431,2.881]],[\"name/667\",[403,51.578]],[\"parent/667\",[431,2.881]],[\"name/668\",[0,51.578]],[\"parent/668\",[431,2.881]],[\"name/669\",[382,44.106]],[\"parent/669\",[431,2.881]],[\"name/670\",[5,24.798]],[\"parent/670\",[431,2.881]],[\"name/671\",[82,31.806]],[\"parent/671\",[432,3.424]],[\"name/672\",[51,43.105]],[\"parent/672\",[432,3.424]],[\"name/673\",[384,44.106]],[\"parent/673\",[432,3.424]],[\"name/674\",[230,34.632]],[\"parent/674\",[432,3.424]],[\"name/675\",[405,54.091]],[\"parent/675\",[431,2.881]],[\"name/676\",[5,24.798]],[\"parent/676\",[431,2.881]],[\"name/677\",[82,31.806]],[\"parent/677\",[432,3.424]],[\"name/678\",[230,34.632]],[\"parent/678\",[432,3.424]],[\"name/679\",[406,54.091]],[\"parent/679\",[431,2.881]],[\"name/680\",[5,24.798]],[\"parent/680\",[431,2.881]],[\"name/681\",[407,54.091]],[\"parent/681\",[432,3.424]],[\"name/682\",[77,35.483]],[\"parent/682\",[432,3.424]],[\"name/683\",[408,54.091]],[\"parent/683\",[432,3.424]],[\"name/684\",[230,34.632]],[\"parent/684\",[432,3.424]],[\"name/685\",[409,51.578]],[\"parent/685\",[431,2.881]],[\"name/686\",[410,54.091]],[\"parent/686\",[431,2.881]],[\"name/687\",[259,51.578]],[\"parent/687\",[431,2.881]],[\"name/688\",[411,54.091]],[\"parent/688\",[431,2.881]],[\"name/689\",[412,54.091]],[\"parent/689\",[431,2.881]],[\"name/690\",[5,24.798]],[\"parent/690\",[431,2.881]],[\"name/691\",[82,31.806]],[\"parent/691\",[432,3.424]],[\"name/692\",[413,54.091]],[\"parent/692\",[432,3.424]],[\"name/693\",[414,54.091]],[\"parent/693\",[432,3.424]],[\"name/694\",[415,54.091]],[\"parent/694\",[431,2.881]],[\"name/695\",[416,51.578]],[\"parent/695\",[431,2.881]],[\"name/696\",[417,54.091]],[\"parent/696\",[431,2.881]],[\"name/697\",[418,54.091]],[\"parent/697\",[431,2.881]],[\"name/698\",[5,24.798]],[\"parent/698\",[431,2.881]],[\"name/699\",[419,54.091]],[\"parent/699\",[432,3.424]],[\"name/700\",[220,41.361]],[\"parent/700\",[432,3.424]],[\"name/701\",[230,34.632]],[\"parent/701\",[432,3.424]],[\"name/702\",[420,54.091]],[\"parent/702\",[432,3.424]],[\"name/703\",[421,54.091]],[\"parent/703\",[431,2.881]],[\"name/704\",[5,24.798]],[\"parent/704\",[431,2.881]],[\"name/705\",[77,35.483]],[\"parent/705\",[432,3.424]],[\"name/706\",[382,44.106]],[\"parent/706\",[432,3.424]],[\"name/707\",[5,24.798]],[\"parent/707\",[432,3.424]],[\"name/708\",[82,31.806]],[\"parent/708\",[433,4.85]],[\"name/709\",[51,43.105]],[\"parent/709\",[433,4.85]],[\"name/710\",[384,44.106]],[\"parent/710\",[433,4.85]],[\"name/711\",[230,34.632]],[\"parent/711\",[433,4.85]],[\"name/712\",[434,62.564]],[\"parent/712\",[]],[\"name/713\",[435,57.456]],[\"parent/713\",[]],[\"name/714\",[5,24.798]],[\"parent/714\",[435,5.402]],[\"name/715\",[403,51.578]],[\"parent/715\",[436,4.504]],[\"name/716\",[409,51.578]],[\"parent/716\",[436,4.504]],[\"name/717\",[400,51.578]],[\"parent/717\",[436,4.504]],[\"name/718\",[382,44.106]],[\"parent/718\",[436,4.504]],[\"name/719\",[5,24.798]],[\"parent/719\",[436,4.504]],[\"name/720\",[82,31.806]],[\"parent/720\",[437,4.85]],[\"name/721\",[51,43.105]],[\"parent/721\",[437,4.85]],[\"name/722\",[384,44.106]],[\"parent/722\",[437,4.85]],[\"name/723\",[230,34.632]],[\"parent/723\",[437,4.85]],[\"name/724\",[416,51.578]],[\"parent/724\",[436,4.504]],[\"name/725\",[438,42.195]],[\"parent/725\",[]],[\"name/726\",[392,47.901]],[\"parent/726\",[438,3.967]],[\"name/727\",[82,31.806]],[\"parent/727\",[438,3.967]],[\"name/728\",[230,34.632]],[\"parent/728\",[438,3.967]],[\"name/729\",[5,24.798]],[\"parent/729\",[438,3.967]],[\"name/730\",[216,37.441]],[\"parent/730\",[439,4.661]],[\"name/731\",[5,24.798]],[\"parent/731\",[439,4.661]],[\"name/732\",[327,54.091]],[\"parent/732\",[440,5.402]],[\"name/733\",[441,62.564]],[\"parent/733\",[440,5.402]],[\"name/734\",[389,49.571]],[\"parent/734\",[438,3.967]],[\"name/735\",[5,24.798]],[\"parent/735\",[438,3.967]],[\"name/736\",[217,39.877]],[\"parent/736\",[439,4.661]],[\"name/737\",[391,49.571]],[\"parent/737\",[439,4.661]],[\"name/738\",[197,47.901]],[\"parent/738\",[439,4.661]],[\"name/739\",[426,51.578]],[\"parent/739\",[438,3.967]],[\"name/740\",[427,51.578]],[\"parent/740\",[438,3.967]],[\"name/741\",[220,41.361]],[\"parent/741\",[438,3.967]],[\"name/742\",[388,47.901]],[\"parent/742\",[438,3.967]],[\"name/743\",[442,42.195]],[\"parent/743\",[]],[\"name/744\",[392,47.901]],[\"parent/744\",[442,3.967]],[\"name/745\",[82,31.806]],[\"parent/745\",[442,3.967]],[\"name/746\",[230,34.632]],[\"parent/746\",[442,3.967]],[\"name/747\",[5,24.798]],[\"parent/747\",[442,3.967]],[\"name/748\",[216,37.441]],[\"parent/748\",[443,4.661]],[\"name/749\",[5,24.798]],[\"parent/749\",[443,4.661]],[\"name/750\",[327,54.091]],[\"parent/750\",[444,5.883]],[\"name/751\",[389,49.571]],[\"parent/751\",[442,3.967]],[\"name/752\",[5,24.798]],[\"parent/752\",[442,3.967]],[\"name/753\",[217,39.877]],[\"parent/753\",[443,4.661]],[\"name/754\",[391,49.571]],[\"parent/754\",[443,4.661]],[\"name/755\",[197,47.901]],[\"parent/755\",[443,4.661]],[\"name/756\",[426,51.578]],[\"parent/756\",[442,3.967]],[\"name/757\",[427,51.578]],[\"parent/757\",[442,3.967]],[\"name/758\",[220,41.361]],[\"parent/758\",[442,3.967]],[\"name/759\",[388,47.901]],[\"parent/759\",[442,3.967]],[\"name/760\",[445,57.456]],[\"parent/760\",[]],[\"name/761\",[5,24.798]],[\"parent/761\",[445,5.402]],[\"name/762\",[77,35.483]],[\"parent/762\",[446,5.402]],[\"name/763\",[254,57.456]],[\"parent/763\",[446,5.402]],[\"name/764\",[447,57.456]],[\"parent/764\",[]],[\"name/765\",[5,24.798]],[\"parent/765\",[447,5.402]],[\"name/766\",[448,57.456]],[\"parent/766\",[]],[\"name/767\",[5,24.798]],[\"parent/767\",[448,5.402]],[\"name/768\",[449,57.456]],[\"parent/768\",[]],[\"name/769\",[5,24.798]],[\"parent/769\",[449,5.402]],[\"name/770\",[450,57.456]],[\"parent/770\",[]],[\"name/771\",[5,24.798]],[\"parent/771\",[450,5.402]],[\"name/772\",[451,54.091]],[\"parent/772\",[]],[\"name/773\",[382,44.106]],[\"parent/773\",[451,5.086]],[\"name/774\",[5,24.798]],[\"parent/774\",[451,5.086]],[\"name/775\",[82,31.806]],[\"parent/775\",[452,4.85]],[\"name/776\",[51,43.105]],[\"parent/776\",[452,4.85]],[\"name/777\",[384,44.106]],[\"parent/777\",[452,4.85]],[\"name/778\",[230,34.632]],[\"parent/778\",[452,4.85]],[\"name/779\",[392,47.901]],[\"parent/779\",[]],[\"name/780\",[453,62.564]],[\"parent/780\",[]]],\"invertedIndex\":[[\"__type\",{\"_index\":5,\"name\":{\"5\":{},\"12\":{},\"14\":{},\"223\":{},\"244\":{},\"300\":{},\"304\":{},\"306\":{},\"313\":{},\"317\":{},\"325\":{},\"329\":{},\"335\":{},\"343\":{},\"347\":{},\"381\":{},\"396\":{},\"410\":{},\"421\":{},\"431\":{},\"487\":{},\"492\":{},\"504\":{},\"509\":{},\"523\":{},\"529\":{},\"533\":{},\"543\":{},\"551\":{},\"557\":{},\"560\":{},\"571\":{},\"579\":{},\"584\":{},\"598\":{},\"604\":{},\"608\":{},\"618\":{},\"626\":{},\"632\":{},\"635\":{},\"642\":{},\"651\":{},\"656\":{},\"670\":{},\"676\":{},\"680\":{},\"690\":{},\"698\":{},\"704\":{},\"707\":{},\"714\":{},\"719\":{},\"729\":{},\"731\":{},\"735\":{},\"747\":{},\"749\":{},\"752\":{},\"761\":{},\"765\":{},\"767\":{},\"769\":{},\"771\":{},\"774\":{}},\"parent\":{}}],[\"accent_1\",{\"_index\":209,\"name\":{\"214\":{}},\"parent\":{}}],[\"accent_2\",{\"_index\":210,\"name\":{\"215\":{}},\"parent\":{}}],[\"accent_3\",{\"_index\":211,\"name\":{\"216\":{}},\"parent\":{}}],[\"accordionicon\",{\"_index\":84,\"name\":{\"88\":{}},\"parent\":{}}],[\"accordionitemicon\",{\"_index\":85,\"name\":{\"89\":{}},\"parent\":{}}],[\"action\",{\"_index\":44,\"name\":{\"45\":{}},\"parent\":{}}],[\"actionid\",{\"_index\":338,\"name\":{\"432\":{}},\"parent\":{}}],[\"actioninputobjects\",{\"_index\":46,\"name\":{\"47\":{}},\"parent\":{}}],[\"actions\",{\"_index\":74,\"name\":{\"76\":{},\"235\":{}},\"parent\":{}}],[\"actionvariablekind\",{\"_index\":342,\"name\":{\"438\":{}},\"parent\":{\"439\":{},\"440\":{},\"441\":{},\"442\":{},\"443\":{},\"444\":{},\"445\":{},\"446\":{},\"447\":{},\"448\":{},\"449\":{}}}],[\"actionvariabletype\",{\"_index\":351,\"name\":{\"450\":{}},\"parent\":{}}],[\"addactionvariable\",{\"_index\":24,\"name\":{\"25\":{}},\"parent\":{}}],[\"addchild\",{\"_index\":68,\"name\":{\"69\":{}},\"parent\":{}}],[\"addmodelandproperties\",{\"_index\":26,\"name\":{\"27\":{}},\"parent\":{}}],[\"addschemamodel\",{\"_index\":25,\"name\":{\"26\":{}},\"parent\":{}}],[\"aftercreate\",{\"_index\":225,\"name\":{\"240\":{}},\"parent\":{}}],[\"afterdelete\",{\"_index\":226,\"name\":{\"241\":{}},\"parent\":{}}],[\"alerticon\",{\"_index\":86,\"name\":{\"90\":{}},\"parent\":{}}],[\"allowedclickthroughkinds\",{\"_index\":394,\"name\":{\"511\":{},\"586\":{},\"658\":{}},\"parent\":{}}],[\"allowedextensions\",{\"_index\":399,\"name\":{\"516\":{},\"591\":{},\"663\":{}},\"parent\":{}}],[\"allowedinput\",{\"_index\":400,\"name\":{\"517\":{},\"592\":{},\"664\":{},\"717\":{}},\"parent\":{}}],[\"allowedkinds\",{\"_index\":393,\"name\":{\"510\":{},\"585\":{},\"657\":{}},\"parent\":{}}],[\"allowedsplitbuttonkinds\",{\"_index\":395,\"name\":{\"512\":{},\"587\":{},\"659\":{}},\"parent\":{}}],[\"allowedstatekeys\",{\"_index\":255,\"name\":{\"282\":{}},\"parent\":{\"283\":{},\"284\":{},\"285\":{},\"286\":{},\"287\":{},\"288\":{},\"289\":{}}}],[\"allowedtypes\",{\"_index\":401,\"name\":{\"518\":{},\"593\":{},\"665\":{}},\"parent\":{}}],[\"allowedvalue\",{\"_index\":386,\"name\":{\"498\":{}},\"parent\":{}}],[\"allowformatting\",{\"_index\":397,\"name\":{\"514\":{},\"589\":{},\"661\":{}},\"parent\":{}}],[\"allowpropertyname\",{\"_index\":398,\"name\":{\"515\":{},\"590\":{},\"662\":{}},\"parent\":{}}],[\"allowrelations\",{\"_index\":396,\"name\":{\"513\":{},\"588\":{},\"660\":{}},\"parent\":{}}],[\"apiversion\",{\"_index\":402,\"name\":{\"519\":{},\"594\":{},\"666\":{}},\"parent\":{}}],[\"array\",{\"_index\":343,\"name\":{\"439\":{}},\"parent\":{}}],[\"as\",{\"_index\":403,\"name\":{\"520\":{},\"595\":{},\"667\":{},\"715\":{}},\"parent\":{}}],[\"assign\",{\"_index\":282,\"name\":{\"320\":{},\"323\":{}},\"parent\":{}}],[\"authenticateuserstepoption\",{\"_index\":287,\"name\":{\"332\":{}},\"parent\":{\"333\":{},\"334\":{},\"335\":{}}}],[\"authenticateuserstepoption.__type\",{\"_index\":290,\"name\":{},\"parent\":{\"336\":{},\"337\":{},\"338\":{}}}],[\"authenticationprofile\",{\"_index\":45,\"name\":{\"46\":{}},\"parent\":{}}],[\"authenticationprofileid\",{\"_index\":288,\"name\":{\"333\":{}},\"parent\":{}}],[\"auto_increment\",{\"_index\":353,\"name\":{\"452\":{}},\"parent\":{}}],[\"autocompleteicon\",{\"_index\":87,\"name\":{\"91\":{}},\"parent\":{}}],[\"avataricon\",{\"_index\":88,\"name\":{\"92\":{}},\"parent\":{}}],[\"backgroundcolor\",{\"_index\":234,\"name\":{\"255\":{}},\"parent\":{}}],[\"barcharticon\",{\"_index\":89,\"name\":{\"93\":{}},\"parent\":{}}],[\"baseconfiguration\",{\"_index\":451,\"name\":{\"772\":{}},\"parent\":{\"773\":{},\"774\":{}}}],[\"baseconfiguration.__type\",{\"_index\":452,\"name\":{},\"parent\":{\"775\":{},\"776\":{},\"777\":{},\"778\":{}}}],[\"baseprefabinteraction\",{\"_index\":317,\"name\":{\"377\":{}},\"parent\":{\"378\":{},\"379\":{},\"380\":{},\"381\":{},\"384\":{},\"385\":{}}}],[\"baseprefabinteraction.__type\",{\"_index\":319,\"name\":{},\"parent\":{\"382\":{},\"383\":{}}}],[\"basis\",{\"_index\":252,\"name\":{\"277\":{}},\"parent\":{}}],[\"beforecreate\",{\"_index\":75,\"name\":{\"77\":{}},\"parent\":{}}],[\"beforecreateargs\",{\"_index\":4,\"name\":{\"4\":{}},\"parent\":{\"5\":{}}}],[\"beforecreateargs.__type\",{\"_index\":7,\"name\":{},\"parent\":{\"6\":{},\"7\":{},\"8\":{},\"9\":{},\"10\":{},\"11\":{},\"12\":{},\"13\":{},\"14\":{}}}],[\"beforecreateargs.__type.__type\",{\"_index\":14,\"name\":{},\"parent\":{\"15\":{},\"16\":{},\"17\":{},\"18\":{},\"19\":{},\"20\":{},\"21\":{},\"22\":{},\"23\":{},\"24\":{},\"25\":{},\"26\":{},\"27\":{},\"28\":{},\"29\":{},\"30\":{},\"31\":{},\"32\":{},\"33\":{},\"34\":{},\"35\":{},\"36\":{},\"37\":{},\"38\":{},\"39\":{},\"40\":{}}}],[\"bettyprefabs\",{\"_index\":33,\"name\":{\"34\":{}},\"parent\":{}}],[\"black\",{\"_index\":204,\"name\":{\"209\":{}},\"parent\":{}}],[\"boolean\",{\"_index\":301,\"name\":{\"349\":{},\"440\":{},\"453\":{}},\"parent\":{}}],[\"boolean_expression\",{\"_index\":354,\"name\":{\"454\":{}},\"parent\":{}}],[\"bordercolor\",{\"_index\":235,\"name\":{\"256\":{}},\"parent\":{}}],[\"borderradius\",{\"_index\":236,\"name\":{\"257\":{}},\"parent\":{}}],[\"borderstyle\",{\"_index\":237,\"name\":{\"258\":{}},\"parent\":{}}],[\"borderwidth\",{\"_index\":238,\"name\":{\"259\":{}},\"parent\":{}}],[\"boxshadow\",{\"_index\":239,\"name\":{\"260\":{}},\"parent\":{}}],[\"breadcrumbicon\",{\"_index\":90,\"name\":{\"94\":{}},\"parent\":{}}],[\"breadcrumbitemicon\",{\"_index\":91,\"name\":{\"95\":{}},\"parent\":{}}],[\"buildstyledefinition\",{\"_index\":266,\"name\":{\"293\":{}},\"parent\":{\"294\":{},\"295\":{},\"296\":{}}}],[\"buttongroup\",{\"_index\":56,\"name\":{\"57\":{}},\"parent\":{}}],[\"buttongroupicon\",{\"_index\":92,\"name\":{\"96\":{}},\"parent\":{}}],[\"buttonicon\",{\"_index\":93,\"name\":{\"97\":{}},\"parent\":{}}],[\"buttonlabel\",{\"_index\":419,\"name\":{\"552\":{},\"627\":{},\"699\":{}},\"parent\":{}}],[\"cameltosnakecase\",{\"_index\":13,\"name\":{\"15\":{}},\"parent\":{}}],[\"cardactionsicon\",{\"_index\":94,\"name\":{\"98\":{}},\"parent\":{}}],[\"cardcontenticon\",{\"_index\":95,\"name\":{\"99\":{}},\"parent\":{}}],[\"cardheadericon\",{\"_index\":96,\"name\":{\"100\":{}},\"parent\":{}}],[\"cardicon\",{\"_index\":97,\"name\":{\"101\":{}},\"parent\":{}}],[\"cardmediaicon\",{\"_index\":98,\"name\":{\"102\":{}},\"parent\":{}}],[\"category\",{\"_index\":76,\"name\":{\"78\":{}},\"parent\":{}}],[\"checkboxgroupicon\",{\"_index\":99,\"name\":{\"103\":{}},\"parent\":{}}],[\"checkboxicon\",{\"_index\":100,\"name\":{\"104\":{}},\"parent\":{}}],[\"childselector\",{\"_index\":47,\"name\":{\"48\":{}},\"parent\":{}}],[\"chipicon\",{\"_index\":101,\"name\":{\"105\":{}},\"parent\":{}}],[\"clonestructure\",{\"_index\":23,\"name\":{\"24\":{}},\"parent\":{}}],[\"close\",{\"_index\":8,\"name\":{\"7\":{}},\"parent\":{}}],[\"collection\",{\"_index\":344,\"name\":{\"441\":{}},\"parent\":{}}],[\"color\",{\"_index\":48,\"name\":{\"49\":{},\"261\":{},\"357\":{}},\"parent\":{}}],[\"column2icon\",{\"_index\":102,\"name\":{\"106\":{}},\"parent\":{}}],[\"column3icon\",{\"_index\":103,\"name\":{\"107\":{}},\"parent\":{}}],[\"columnicon\",{\"_index\":104,\"name\":{\"108\":{}},\"parent\":{}}],[\"comparator\",{\"_index\":384,\"name\":{\"495\":{},\"526\":{},\"563\":{},\"601\":{},\"638\":{},\"673\":{},\"710\":{},\"722\":{},\"777\":{}},\"parent\":{}}],[\"component\",{\"_index\":0,\"name\":{\"0\":{},\"521\":{},\"596\":{},\"668\":{}},\"parent\":{}}],[\"componentid\",{\"_index\":327,\"name\":{\"397\":{},\"732\":{},\"750\":{}},\"parent\":{}}],[\"components\",{\"_index\":11,\"name\":{\"11\":{}},\"parent\":{}}],[\"condition\",{\"_index\":382,\"name\":{\"491\":{},\"522\":{},\"559\":{},\"597\":{},\"634\":{},\"669\":{},\"706\":{},\"718\":{},\"773\":{}},\"parent\":{}}],[\"conditionalicon\",{\"_index\":105,\"name\":{\"109\":{}},\"parent\":{}}],[\"configuration\",{\"_index\":392,\"name\":{\"508\":{},\"583\":{},\"655\":{},\"726\":{},\"744\":{},\"779\":{}},\"parent\":{}}],[\"containericon\",{\"_index\":106,\"name\":{\"110\":{}},\"parent\":{}}],[\"content\",{\"_index\":250,\"name\":{\"273\":{},\"294\":{}},\"parent\":{}}],[\"createaction\",{\"_index\":406,\"name\":{\"532\":{},\"607\":{},\"679\":{}},\"parent\":{}}],[\"createblacklist\",{\"_index\":37,\"name\":{\"38\":{}},\"parent\":{}}],[\"createformicon\",{\"_index\":107,\"name\":{\"111\":{}},\"parent\":{}}],[\"createproperty\",{\"_index\":405,\"name\":{\"528\":{},\"603\":{},\"675\":{}},\"parent\":{}}],[\"createpropertykind\",{\"_index\":352,\"name\":{\"451\":{}},\"parent\":{\"452\":{},\"453\":{},\"454\":{},\"455\":{},\"456\":{},\"457\":{},\"458\":{},\"459\":{},\"460\":{},\"461\":{},\"462\":{},\"463\":{},\"464\":{},\"465\":{},\"466\":{},\"467\":{},\"468\":{},\"469\":{},\"470\":{},\"471\":{},\"472\":{},\"473\":{},\"474\":{},\"475\":{},\"476\":{},\"477\":{},\"478\":{},\"479\":{},\"480\":{},\"481\":{},\"482\":{},\"483\":{},\"484\":{},\"485\":{}}}],[\"createuuid\",{\"_index\":35,\"name\":{\"36\":{}},\"parent\":{}}],[\"createwrapper\",{\"_index\":38,\"name\":{\"39\":{}},\"parent\":{}}],[\"custom\",{\"_index\":315,\"name\":{\"375\":{}},\"parent\":{}}],[\"custommodel\",{\"_index\":281,\"name\":{\"319\":{},\"326\":{},\"331\":{}},\"parent\":{}}],[\"danger\",{\"_index\":203,\"name\":{\"208\":{}},\"parent\":{}}],[\"dark\",{\"_index\":205,\"name\":{\"210\":{}},\"parent\":{}}],[\"datacontainer\",{\"_index\":108,\"name\":{\"112\":{}},\"parent\":{}}],[\"datalist\",{\"_index\":109,\"name\":{\"113\":{}},\"parent\":{}}],[\"datatable\",{\"_index\":110,\"name\":{\"114\":{}},\"parent\":{}}],[\"datatablebody\",{\"_index\":111,\"name\":{\"115\":{}},\"parent\":{}}],[\"datatablecolumn\",{\"_index\":112,\"name\":{\"116\":{}},\"parent\":{}}],[\"datatablehead\",{\"_index\":113,\"name\":{\"117\":{}},\"parent\":{}}],[\"datatablerow\",{\"_index\":114,\"name\":{\"118\":{}},\"parent\":{}}],[\"datatype\",{\"_index\":409,\"name\":{\"538\":{},\"613\":{},\"685\":{},\"716\":{}},\"parent\":{}}],[\"date\",{\"_index\":345,\"name\":{\"442\":{},\"455\":{}},\"parent\":{}}],[\"date_expression\",{\"_index\":355,\"name\":{\"456\":{}},\"parent\":{}}],[\"date_time\",{\"_index\":346,\"name\":{\"443\":{},\"457\":{}},\"parent\":{}}],[\"date_time_expression\",{\"_index\":356,\"name\":{\"458\":{}},\"parent\":{}}],[\"datepickericon\",{\"_index\":115,\"name\":{\"119\":{}},\"parent\":{}}],[\"datetimepickericon\",{\"_index\":116,\"name\":{\"120\":{}},\"parent\":{}}],[\"decimal\",{\"_index\":347,\"name\":{\"444\":{},\"459\":{}},\"parent\":{}}],[\"decimal_expression\",{\"_index\":357,\"name\":{\"460\":{}},\"parent\":{}}],[\"decimalinputicon\",{\"_index\":117,\"name\":{\"121\":{}},\"parent\":{}}],[\"definitionlisticon\",{\"_index\":118,\"name\":{\"122\":{}},\"parent\":{}}],[\"deleterecordicon\",{\"_index\":119,\"name\":{\"123\":{}},\"parent\":{}}],[\"dependson\",{\"_index\":410,\"name\":{\"539\":{},\"614\":{},\"686\":{}},\"parent\":{}}],[\"descendants\",{\"_index\":221,\"name\":{\"228\":{},\"236\":{}},\"parent\":{}}],[\"description\",{\"_index\":83,\"name\":{\"86\":{}},\"parent\":{}}],[\"detailviewicon\",{\"_index\":120,\"name\":{\"124\":{}},\"parent\":{}}],[\"dialogicon\",{\"_index\":121,\"name\":{\"125\":{}},\"parent\":{}}],[\"disabled\",{\"_index\":259,\"name\":{\"286\":{},\"540\":{},\"615\":{},\"687\":{}},\"parent\":{}}],[\"displaylogic\",{\"_index\":69,\"name\":{\"70\":{}},\"parent\":{}}],[\"drawericon\",{\"_index\":122,\"name\":{\"126\":{}},\"parent\":{}}],[\"dropdown\",{\"_index\":57,\"name\":{\"58\":{}},\"parent\":{}}],[\"dynamicformicon\",{\"_index\":123,\"name\":{\"127\":{}},\"parent\":{}}],[\"dynamictableicon\",{\"_index\":124,\"name\":{\"128\":{}},\"parent\":{}}],[\"dynamictilesicon\",{\"_index\":125,\"name\":{\"129\":{}},\"parent\":{}}],[\"email_address\",{\"_index\":358,\"name\":{\"461\":{}},\"parent\":{}}],[\"emailinputicon\",{\"_index\":126,\"name\":{\"130\":{}},\"parent\":{}}],[\"endpoint\",{\"_index\":49,\"name\":{\"50\":{},\"358\":{}},\"parent\":{}}],[\"endpointid\",{\"_index\":269,\"name\":{\"302\":{},\"402\":{},\"433\":{}},\"parent\":{}}],[\"event\",{\"_index\":303,\"name\":{\"352\":{}},\"parent\":{}}],[\"events\",{\"_index\":273,\"name\":{\"309\":{}},\"parent\":{}}],[\"expanded\",{\"_index\":380,\"name\":{\"489\":{}},\"parent\":{}}],[\"file\",{\"_index\":359,\"name\":{\"462\":{}},\"parent\":{}}],[\"fileinputicon\",{\"_index\":127,\"name\":{\"131\":{}},\"parent\":{}}],[\"filter\",{\"_index\":61,\"name\":{\"62\":{},\"359\":{}},\"parent\":{}}],[\"filtericon\",{\"_index\":128,\"name\":{\"132\":{}},\"parent\":{}}],[\"focus\",{\"_index\":258,\"name\":{\"285\":{}},\"parent\":{}}],[\"font\",{\"_index\":50,\"name\":{\"51\":{},\"360\":{}},\"parent\":{}}],[\"fontfamily\",{\"_index\":240,\"name\":{\"262\":{}},\"parent\":{}}],[\"fontsize\",{\"_index\":241,\"name\":{\"263\":{}},\"parent\":{}}],[\"fontstyle\",{\"_index\":242,\"name\":{\"264\":{}},\"parent\":{}}],[\"fontweight\",{\"_index\":243,\"name\":{\"265\":{}},\"parent\":{}}],[\"formicon\",{\"_index\":129,\"name\":{\"133\":{}},\"parent\":{}}],[\"function\",{\"_index\":313,\"name\":{\"370\":{}},\"parent\":{}}],[\"generatecustommodel\",{\"_index\":413,\"name\":{\"545\":{},\"620\":{},\"692\":{}},\"parent\":{}}],[\"getpageauthenticationprofileid\",{\"_index\":29,\"name\":{\"30\":{}},\"parent\":{}}],[\"getpagename\",{\"_index\":30,\"name\":{\"31\":{}},\"parent\":{}}],[\"global\",{\"_index\":316,\"name\":{\"376\":{}},\"parent\":{}}],[\"gridicon\",{\"_index\":130,\"name\":{\"134\":{}},\"parent\":{}}],[\"helpers\",{\"_index\":12,\"name\":{\"13\":{}},\"parent\":{}}],[\"hiddeninputicon\",{\"_index\":131,\"name\":{\"135\":{}},\"parent\":{}}],[\"hideif\",{\"_index\":73,\"name\":{\"74\":{}},\"parent\":{}}],[\"hook\",{\"_index\":295,\"name\":{\"342\":{}},\"parent\":{\"343\":{}}}],[\"hook.__type\",{\"_index\":297,\"name\":{},\"parent\":{\"344\":{},\"345\":{},\"346\":{},\"347\":{}}}],[\"horizontalruleicon\",{\"_index\":132,\"name\":{\"136\":{}},\"parent\":{}}],[\"hover\",{\"_index\":257,\"name\":{\"284\":{}},\"parent\":{}}],[\"htmlicon\",{\"_index\":133,\"name\":{\"137\":{}},\"parent\":{}}],[\"iban\",{\"_index\":360,\"name\":{\"463\":{}},\"parent\":{}}],[\"ibaninputicon\",{\"_index\":134,\"name\":{\"138\":{}},\"parent\":{}}],[\"icon\",{\"_index\":60,\"name\":{\"61\":{},\"81\":{},\"87\":{}},\"parent\":{\"88\":{},\"89\":{},\"90\":{},\"91\":{},\"92\":{},\"93\":{},\"94\":{},\"95\":{},\"96\":{},\"97\":{},\"98\":{},\"99\":{},\"100\":{},\"101\":{},\"102\":{},\"103\":{},\"104\":{},\"105\":{},\"106\":{},\"107\":{},\"108\":{},\"109\":{},\"110\":{},\"111\":{},\"112\":{},\"113\":{},\"114\":{},\"115\":{},\"116\":{},\"117\":{},\"118\":{},\"119\":{},\"120\":{},\"121\":{},\"122\":{},\"123\":{},\"124\":{},\"125\":{},\"126\":{},\"127\":{},\"128\":{},\"129\":{},\"130\":{},\"131\":{},\"132\":{},\"133\":{},\"134\":{},\"135\":{},\"136\":{},\"137\":{},\"138\":{},\"139\":{},\"140\":{},\"141\":{},\"142\":{},\"143\":{},\"144\":{},\"145\":{},\"146\":{},\"147\":{},\"148\":{},\"149\":{},\"150\":{},\"151\":{},\"152\":{},\"153\":{},\"154\":{},\"155\":{},\"156\":{},\"157\":{},\"158\":{},\"159\":{},\"160\":{},\"161\":{},\"162\":{},\"163\":{},\"164\":{},\"165\":{},\"166\":{},\"167\":{},\"168\":{},\"169\":{},\"170\":{},\"171\":{},\"172\":{},\"173\":{},\"174\":{},\"175\":{},\"176\":{},\"177\":{},\"178\":{},\"179\":{},\"180\":{},\"181\":{},\"182\":{},\"183\":{},\"184\":{},\"185\":{},\"186\":{},\"187\":{},\"188\":{},\"189\":{},\"190\":{},\"191\":{},\"192\":{},\"193\":{},\"194\":{},\"195\":{},\"196\":{},\"197\":{},\"198\":{},\"199\":{},\"200\":{}}}],[\"iconicon\",{\"_index\":135,\"name\":{\"139\":{}},\"parent\":{}}],[\"id\",{\"_index\":217,\"name\":{\"224\":{},\"232\":{},\"245\":{},\"301\":{},\"388\":{},\"401\":{},\"434\":{},\"505\":{},\"572\":{},\"580\":{},\"643\":{},\"652\":{},\"736\":{},\"753\":{}},\"parent\":{}}],[\"image\",{\"_index\":361,\"name\":{\"464\":{}},\"parent\":{}}],[\"imagecarouselicon\",{\"_index\":136,\"name\":{\"140\":{}},\"parent\":{}}],[\"imageicon\",{\"_index\":137,\"name\":{\"141\":{}},\"parent\":{}}],[\"imageinputicon\",{\"_index\":138,\"name\":{\"142\":{}},\"parent\":{}}],[\"includeicon\",{\"_index\":139,\"name\":{\"143\":{}},\"parent\":{}}],[\"info\",{\"_index\":201,\"name\":{\"206\":{}},\"parent\":{}}],[\"inherit\",{\"_index\":197,\"name\":{\"202\":{},\"507\":{},\"582\":{},\"654\":{},\"738\":{},\"755\":{}},\"parent\":{}}],[\"input\",{\"_index\":298,\"name\":{\"345\":{}},\"parent\":{}}],[\"integer\",{\"_index\":348,\"name\":{\"445\":{},\"465\":{}},\"parent\":{}}],[\"integer_expression\",{\"_index\":362,\"name\":{\"466\":{}},\"parent\":{}}],[\"interaction\",{\"_index\":312,\"name\":{\"369\":{}},\"parent\":{\"370\":{},\"371\":{},\"372\":{},\"373\":{}}}],[\"interactioncompatibility\",{\"_index\":310,\"name\":{\"365\":{}},\"parent\":{\"366\":{},\"367\":{},\"368\":{}}}],[\"interactionoptiontype\",{\"_index\":300,\"name\":{\"348\":{}},\"parent\":{\"349\":{},\"350\":{},\"351\":{},\"352\":{},\"353\":{},\"354\":{},\"355\":{}}}],[\"interactionoptiontypetodo\",{\"_index\":307,\"name\":{\"356\":{}},\"parent\":{\"357\":{},\"358\":{},\"359\":{},\"360\":{},\"361\":{},\"362\":{},\"363\":{},\"364\":{}}}],[\"interactions\",{\"_index\":79,\"name\":{\"82\":{}},\"parent\":{}}],[\"interactiontype\",{\"_index\":314,\"name\":{\"374\":{}},\"parent\":{\"375\":{},\"376\":{}}}],[\"invalid\",{\"_index\":261,\"name\":{\"288\":{}},\"parent\":{}}],[\"json\",{\"_index\":349,\"name\":{\"446\":{}},\"parent\":{}}],[\"jwtas\",{\"_index\":292,\"name\":{\"338\":{}},\"parent\":{}}],[\"key\",{\"_index\":388,\"name\":{\"501\":{},\"567\":{},\"576\":{},\"648\":{},\"742\":{},\"759\":{}},\"parent\":{}}],[\"keywords\",{\"_index\":78,\"name\":{\"80\":{}},\"parent\":{}}],[\"kind\",{\"_index\":294,\"name\":{\"340\":{},\"428\":{}},\"parent\":{}}],[\"label\",{\"_index\":220,\"name\":{\"227\":{},\"234\":{},\"488\":{},\"500\":{},\"553\":{},\"566\":{},\"575\":{},\"628\":{},\"647\":{},\"700\":{},\"741\":{},\"758\":{}},\"parent\":{}}],[\"labelicon\",{\"_index\":140,\"name\":{\"144\":{}},\"parent\":{}}],[\"layout1icon\",{\"_index\":141,\"name\":{\"145\":{}},\"parent\":{}}],[\"layout2icon\",{\"_index\":142,\"name\":{\"146\":{}},\"parent\":{}}],[\"layout3333icon\",{\"_index\":143,\"name\":{\"147\":{}},\"parent\":{}}],[\"layout363icon\",{\"_index\":144,\"name\":{\"148\":{}},\"parent\":{}}],[\"layout444icon\",{\"_index\":145,\"name\":{\"149\":{}},\"parent\":{}}],[\"layout48icon\",{\"_index\":146,\"name\":{\"150\":{}},\"parent\":{}}],[\"layout66icon\",{\"_index\":147,\"name\":{\"151\":{}},\"parent\":{}}],[\"layout84icon\",{\"_index\":148,\"name\":{\"152\":{}},\"parent\":{}}],[\"lefthandside\",{\"_index\":275,\"name\":{\"311\":{}},\"parent\":{}}],[\"letterspacing\",{\"_index\":244,\"name\":{\"266\":{}},\"parent\":{}}],[\"light\",{\"_index\":207,\"name\":{\"212\":{}},\"parent\":{}}],[\"lineheight\",{\"_index\":245,\"name\":{\"267\":{}},\"parent\":{}}],[\"linked\",{\"_index\":62,\"name\":{\"63\":{}},\"parent\":{}}],[\"linkedoptionproducer\",{\"_index\":448,\"name\":{\"766\":{}},\"parent\":{\"767\":{}}}],[\"linkedpartial\",{\"_index\":63,\"name\":{\"64\":{}},\"parent\":{}}],[\"linkedpartialoptionproducer\",{\"_index\":449,\"name\":{\"768\":{}},\"parent\":{\"769\":{}}}],[\"linkoption\",{\"_index\":39,\"name\":{\"40\":{}},\"parent\":{}}],[\"list\",{\"_index\":363,\"name\":{\"467\":{}},\"parent\":{}}],[\"listitemicon\",{\"_index\":149,\"name\":{\"153\":{}},\"parent\":{}}],[\"listwithdataicon\",{\"_index\":150,\"name\":{\"154\":{}},\"parent\":{}}],[\"locale\",{\"_index\":306,\"name\":{\"355\":{}},\"parent\":{}}],[\"loginformicon\",{\"_index\":151,\"name\":{\"155\":{}},\"parent\":{}}],[\"logouticon\",{\"_index\":152,\"name\":{\"156\":{}},\"parent\":{}}],[\"makebettyinput\",{\"_index\":31,\"name\":{\"32\":{}},\"parent\":{}}],[\"makebettyupdateinput\",{\"_index\":32,\"name\":{\"33\":{}},\"parent\":{}}],[\"makeprepareactionargs\",{\"_index\":453,\"name\":{\"780\":{}},\"parent\":{}}],[\"manageobjectvalues\",{\"_index\":418,\"name\":{\"550\":{},\"625\":{},\"697\":{}},\"parent\":{}}],[\"mediatype\",{\"_index\":411,\"name\":{\"541\":{},\"616\":{},\"688\":{}},\"parent\":{}}],[\"medium\",{\"_index\":206,\"name\":{\"211\":{}},\"parent\":{}}],[\"members\",{\"_index\":381,\"name\":{\"490\":{}},\"parent\":{}}],[\"menuicon\",{\"_index\":153,\"name\":{\"157\":{}},\"parent\":{}}],[\"menuitemicon\",{\"_index\":154,\"name\":{\"158\":{}},\"parent\":{}}],[\"minutes\",{\"_index\":364,\"name\":{\"468\":{}},\"parent\":{}}],[\"minutes_expression\",{\"_index\":365,\"name\":{\"469\":{}},\"parent\":{}}],[\"modal\",{\"_index\":412,\"name\":{\"542\":{},\"617\":{},\"689\":{}},\"parent\":{}}],[\"model\",{\"_index\":64,\"name\":{\"65\":{}},\"parent\":{}}],[\"modelandrelation\",{\"_index\":65,\"name\":{\"66\":{}},\"parent\":{}}],[\"modelid\",{\"_index\":6,\"name\":{\"6\":{},\"322\":{}},\"parent\":{}}],[\"modelrequired\",{\"_index\":414,\"name\":{\"546\":{},\"621\":{},\"693\":{}},\"parent\":{}}],[\"multi_file\",{\"_index\":366,\"name\":{\"470\":{}},\"parent\":{}}],[\"multi_image\",{\"_index\":367,\"name\":{\"471\":{}},\"parent\":{}}],[\"multilineicon\",{\"_index\":155,\"name\":{\"159\":{}},\"parent\":{}}],[\"multiselecticon\",{\"_index\":156,\"name\":{\"160\":{}},\"parent\":{}}],[\"name\",{\"_index\":77,\"name\":{\"79\":{},\"237\":{},\"272\":{},\"276\":{},\"280\":{},\"295\":{},\"298\":{},\"366\":{},\"371\":{},\"378\":{},\"393\":{},\"399\":{},\"407\":{},\"418\":{},\"429\":{},\"535\":{},\"558\":{},\"610\":{},\"633\":{},\"682\":{},\"705\":{},\"762\":{}},\"parent\":{}}],[\"navbaricon\",{\"_index\":157,\"name\":{\"161\":{}},\"parent\":{}}],[\"navitemicon\",{\"_index\":158,\"name\":{\"162\":{}},\"parent\":{}}],[\"navsidebaricon\",{\"_index\":159,\"name\":{\"163\":{}},\"parent\":{}}],[\"number\",{\"_index\":58,\"name\":{\"59\":{},\"350\":{}},\"parent\":{}}],[\"numberinputicon\",{\"_index\":160,\"name\":{\"164\":{}},\"parent\":{}}],[\"obecticon\",{\"_index\":161,\"name\":{\"165\":{}},\"parent\":{}}],[\"object\",{\"_index\":279,\"name\":{\"318\":{},\"330\":{},\"447\":{},\"472\":{}},\"parent\":{}}],[\"onupdate\",{\"_index\":227,\"name\":{\"242\":{}},\"parent\":{}}],[\"openpageicon\",{\"_index\":162,\"name\":{\"166\":{}},\"parent\":{}}],[\"option\",{\"_index\":51,\"name\":{\"52\":{},\"494\":{},\"525\":{},\"562\":{},\"600\":{},\"637\":{},\"672\":{},\"709\":{},\"721\":{},\"776\":{}},\"parent\":{}}],[\"optioncategories\",{\"_index\":222,\"name\":{\"229\":{},\"238\":{}},\"parent\":{}}],[\"optioncategory\",{\"_index\":378,\"name\":{\"486\":{}},\"parent\":{\"487\":{}}}],[\"optioncategory.__type\",{\"_index\":379,\"name\":{},\"parent\":{\"488\":{},\"489\":{},\"490\":{},\"491\":{},\"492\":{}}}],[\"optioncategory.__type.__type\",{\"_index\":383,\"name\":{},\"parent\":{\"493\":{},\"494\":{},\"495\":{},\"496\":{}}}],[\"optionid\",{\"_index\":441,\"name\":{\"733\":{}},\"parent\":{}}],[\"optionproducer\",{\"_index\":447,\"name\":{\"764\":{}},\"parent\":{\"765\":{}}}],[\"optionref\",{\"_index\":389,\"name\":{\"503\":{},\"578\":{},\"650\":{},\"734\":{},\"751\":{}},\"parent\":{}}],[\"options\",{\"_index\":223,\"name\":{\"230\":{},\"239\":{},\"303\":{},\"341\":{},\"435\":{}},\"parent\":{}}],[\"orderedlisticon\",{\"_index\":163,\"name\":{\"167\":{}},\"parent\":{}}],[\"output\",{\"_index\":299,\"name\":{\"346\":{}},\"parent\":{}}],[\"overwrite\",{\"_index\":254,\"name\":{\"281\":{},\"763\":{}},\"parent\":{}}],[\"padding\",{\"_index\":246,\"name\":{\"268\":{}},\"parent\":{}}],[\"page\",{\"_index\":305,\"name\":{\"354\":{}},\"parent\":{}}],[\"pageid\",{\"_index\":330,\"name\":{\"400\":{}},\"parent\":{}}],[\"pagevariable\",{\"_index\":70,\"name\":{\"71\":{}},\"parent\":{}}],[\"panelicon\",{\"_index\":164,\"name\":{\"168\":{}},\"parent\":{}}],[\"papericon\",{\"_index\":165,\"name\":{\"169\":{}},\"parent\":{}}],[\"paragraphicon\",{\"_index\":166,\"name\":{\"170\":{}},\"parent\":{}}],[\"parameter\",{\"_index\":324,\"name\":{\"387\":{},\"391\":{},\"394\":{}},\"parent\":{}}],[\"parameteroptionwithcomponentref\",{\"_index\":326,\"name\":{\"392\":{}},\"parent\":{\"393\":{},\"394\":{},\"395\":{},\"396\":{}}}],[\"parameteroptionwithcomponentref.__type\",{\"_index\":328,\"name\":{},\"parent\":{\"397\":{}}}],[\"parameteroptionwithid\",{\"_index\":323,\"name\":{\"386\":{}},\"parent\":{\"387\":{},\"388\":{}}}],[\"parameteroptionwithpageid\",{\"_index\":329,\"name\":{\"398\":{}},\"parent\":{\"399\":{},\"400\":{},\"401\":{},\"402\":{},\"403\":{}}}],[\"parameteroptionwithpath\",{\"_index\":325,\"name\":{\"389\":{}},\"parent\":{\"390\":{},\"391\":{}}}],[\"parameters\",{\"_index\":311,\"name\":{\"367\":{},\"372\":{},\"403\":{},\"417\":{}},\"parent\":{}}],[\"partial\",{\"_index\":2,\"name\":{\"2\":{}},\"parent\":{}}],[\"partialid\",{\"_index\":215,\"name\":{\"221\":{}},\"parent\":{}}],[\"password\",{\"_index\":291,\"name\":{\"337\":{},\"473\":{}},\"parent\":{}}],[\"passwordinputicon\",{\"_index\":167,\"name\":{\"171\":{}},\"parent\":{}}],[\"path\",{\"_index\":276,\"name\":{\"314\":{},\"390\":{}},\"parent\":{}}],[\"pdf\",{\"_index\":368,\"name\":{\"474\":{}},\"parent\":{}}],[\"permissions\",{\"_index\":408,\"name\":{\"536\":{},\"611\":{},\"683\":{}},\"parent\":{}}],[\"phone_number\",{\"_index\":369,\"name\":{\"475\":{}},\"parent\":{}}],[\"phoneinputicon\",{\"_index\":168,\"name\":{\"172\":{}},\"parent\":{}}],[\"piecharticon\",{\"_index\":169,\"name\":{\"173\":{}},\"parent\":{}}],[\"placeholder\",{\"_index\":415,\"name\":{\"547\":{},\"622\":{},\"694\":{}},\"parent\":{}}],[\"prefab\",{\"_index\":3,\"name\":{\"3\":{},\"9\":{},\"75\":{}},\"parent\":{\"76\":{},\"77\":{},\"78\":{},\"79\":{},\"80\":{},\"81\":{},\"82\":{},\"83\":{},\"84\":{},\"85\":{},\"86\":{}}}],[\"prefabaction\",{\"_index\":267,\"name\":{\"297\":{}},\"parent\":{\"298\":{},\"299\":{},\"300\":{},\"303\":{},\"304\":{},\"308\":{},\"309\":{}}}],[\"prefabaction.__type\",{\"_index\":268,\"name\":{},\"parent\":{\"301\":{},\"302\":{},\"305\":{},\"306\":{}}}],[\"prefabaction.__type.__type\",{\"_index\":271,\"name\":{},\"parent\":{\"307\":{}}}],[\"prefabactionassign\",{\"_index\":274,\"name\":{\"310\":{}},\"parent\":{\"311\":{},\"312\":{},\"313\":{}}}],[\"prefabactionassign.__type\",{\"_index\":277,\"name\":{},\"parent\":{\"314\":{}}}],[\"prefabactioncreatestepoption\",{\"_index\":283,\"name\":{\"321\":{}},\"parent\":{\"322\":{},\"323\":{},\"324\":{},\"325\":{}}}],[\"prefabactioncreatestepoption.__type\",{\"_index\":284,\"name\":{},\"parent\":{\"326\":{}}}],[\"prefabactiondeletestepoption\",{\"_index\":285,\"name\":{\"327\":{}},\"parent\":{\"328\":{},\"329\":{}}}],[\"prefabactiondeletestepoption.__type\",{\"_index\":286,\"name\":{},\"parent\":{\"330\":{},\"331\":{}}}],[\"prefabactionstep\",{\"_index\":293,\"name\":{\"339\":{}},\"parent\":{\"340\":{},\"341\":{}}}],[\"prefabactionupdatestepoption\",{\"_index\":278,\"name\":{\"315\":{}},\"parent\":{\"316\":{},\"317\":{},\"320\":{}}}],[\"prefabactionupdatestepoption.__type\",{\"_index\":280,\"name\":{},\"parent\":{\"318\":{},\"319\":{}}}],[\"prefabcomponent\",{\"_index\":224,\"name\":{\"231\":{}},\"parent\":{\"232\":{},\"233\":{},\"234\":{},\"235\":{},\"236\":{},\"237\":{},\"238\":{},\"239\":{},\"240\":{},\"241\":{},\"242\":{},\"243\":{},\"244\":{},\"246\":{}}}],[\"prefabcomponent.__type\",{\"_index\":228,\"name\":{},\"parent\":{\"245\":{}}}],[\"prefabcomponentoption\",{\"_index\":434,\"name\":{\"712\":{}},\"parent\":{}}],[\"prefabcomponentoptionbase\",{\"_index\":387,\"name\":{\"499\":{}},\"parent\":{\"500\":{},\"501\":{},\"502\":{},\"503\":{},\"504\":{},\"508\":{},\"509\":{}}}],[\"prefabcomponentoptionbase.__type\",{\"_index\":390,\"name\":{},\"parent\":{\"505\":{},\"506\":{},\"507\":{},\"510\":{},\"511\":{},\"512\":{},\"513\":{},\"514\":{},\"515\":{},\"516\":{},\"517\":{},\"518\":{},\"519\":{},\"520\":{},\"521\":{},\"522\":{},\"523\":{},\"528\":{},\"529\":{},\"532\":{},\"533\":{},\"538\":{},\"539\":{},\"540\":{},\"541\":{},\"542\":{},\"543\":{},\"547\":{},\"548\":{},\"549\":{},\"550\":{},\"551\":{},\"556\":{},\"557\":{}}}],[\"prefabcomponentoptionbase.__type.__type\",{\"_index\":404,\"name\":{},\"parent\":{\"524\":{},\"525\":{},\"526\":{},\"527\":{},\"530\":{},\"531\":{},\"534\":{},\"535\":{},\"536\":{},\"537\":{},\"544\":{},\"545\":{},\"546\":{},\"552\":{},\"553\":{},\"554\":{},\"555\":{},\"558\":{},\"559\":{},\"560\":{}}}],[\"prefabcomponentoptionbase.__type.__type.__type\",{\"_index\":422,\"name\":{},\"parent\":{\"561\":{},\"562\":{},\"563\":{},\"564\":{}}}],[\"prefabcomponentstyle\",{\"_index\":445,\"name\":{\"760\":{}},\"parent\":{\"761\":{}}}],[\"prefabcomponentstyle.__type\",{\"_index\":446,\"name\":{},\"parent\":{\"762\":{},\"763\":{}}}],[\"prefabcustominteraction\",{\"_index\":332,\"name\":{\"405\":{}},\"parent\":{\"406\":{},\"407\":{},\"408\":{},\"409\":{},\"410\":{},\"413\":{},\"414\":{}}}],[\"prefabcustominteraction.__type\",{\"_index\":333,\"name\":{},\"parent\":{\"411\":{},\"412\":{}}}],[\"prefabglobalinteraction\",{\"_index\":334,\"name\":{\"415\":{}},\"parent\":{\"416\":{},\"417\":{},\"418\":{},\"419\":{},\"420\":{},\"421\":{},\"424\":{},\"425\":{}}}],[\"prefabglobalinteraction.__type\",{\"_index\":335,\"name\":{},\"parent\":{\"422\":{},\"423\":{}}}],[\"prefabinteraction\",{\"_index\":336,\"name\":{\"426\":{}},\"parent\":{}}],[\"prefabinteractionparameter\",{\"_index\":331,\"name\":{\"404\":{}},\"parent\":{}}],[\"prefablinkedoptionbase\",{\"_index\":423,\"name\":{\"565\":{}},\"parent\":{\"566\":{},\"567\":{}}}],[\"prefabpartial\",{\"_index\":214,\"name\":{\"219\":{}},\"parent\":{\"220\":{},\"221\":{},\"222\":{},\"223\":{}}}],[\"prefabpartial.__type\",{\"_index\":218,\"name\":{},\"parent\":{\"224\":{}}}],[\"prefabreference\",{\"_index\":213,\"name\":{\"218\":{}},\"parent\":{}}],[\"prefabs\",{\"_index\":10,\"name\":{\"10\":{}},\"parent\":{}}],[\"prefabvariable\",{\"_index\":337,\"name\":{\"427\":{}},\"parent\":{\"428\":{},\"429\":{},\"430\":{},\"431\":{},\"435\":{}}}],[\"prefabvariable.__type\",{\"_index\":339,\"name\":{},\"parent\":{\"432\":{},\"433\":{},\"434\":{}}}],[\"prefabvariablekind\",{\"_index\":340,\"name\":{\"436\":{}},\"parent\":{}}],[\"prefabwrapper\",{\"_index\":219,\"name\":{\"225\":{}},\"parent\":{\"226\":{},\"227\":{},\"228\":{},\"229\":{},\"230\":{}}}],[\"prefabwrapperlinkedoption\",{\"_index\":438,\"name\":{\"725\":{}},\"parent\":{\"726\":{},\"727\":{},\"728\":{},\"729\":{},\"734\":{},\"735\":{},\"739\":{},\"740\":{},\"741\":{},\"742\":{}}}],[\"prefabwrapperlinkedoption.__type\",{\"_index\":439,\"name\":{},\"parent\":{\"730\":{},\"731\":{},\"736\":{},\"737\":{},\"738\":{}}}],[\"prefabwrapperlinkedoption.__type.__type\",{\"_index\":440,\"name\":{},\"parent\":{\"732\":{},\"733\":{}}}],[\"prefabwrapperlinkedoptionconfiguration\",{\"_index\":435,\"name\":{\"713\":{}},\"parent\":{\"714\":{}}}],[\"prefabwrapperlinkedoptionconfiguration.__type\",{\"_index\":436,\"name\":{},\"parent\":{\"715\":{},\"716\":{},\"717\":{},\"718\":{},\"719\":{},\"724\":{}}}],[\"prefabwrapperlinkedoptionconfiguration.__type.__type\",{\"_index\":437,\"name\":{},\"parent\":{\"720\":{},\"721\":{},\"722\":{},\"723\":{}}}],[\"prefabwrapperlinkedpartialoption\",{\"_index\":442,\"name\":{\"743\":{}},\"parent\":{\"744\":{},\"745\":{},\"746\":{},\"747\":{},\"751\":{},\"752\":{},\"756\":{},\"757\":{},\"758\":{},\"759\":{}}}],[\"prefabwrapperlinkedpartialoption.__type\",{\"_index\":443,\"name\":{},\"parent\":{\"748\":{},\"749\":{},\"753\":{},\"754\":{},\"755\":{}}}],[\"prefabwrapperlinkedpartialoption.__type.__type\",{\"_index\":444,\"name\":{},\"parent\":{\"750\":{}}}],[\"prepareaction\",{\"_index\":27,\"name\":{\"28\":{}},\"parent\":{}}],[\"prepareinput\",{\"_index\":28,\"name\":{\"29\":{}},\"parent\":{}}],[\"price\",{\"_index\":370,\"name\":{\"476\":{}},\"parent\":{}}],[\"price_expression\",{\"_index\":371,\"name\":{\"477\":{}},\"parent\":{}}],[\"priceinputicon\",{\"_index\":170,\"name\":{\"174\":{}},\"parent\":{}}],[\"primary\",{\"_index\":198,\"name\":{\"203\":{}},\"parent\":{}}],[\"progressbaricon\",{\"_index\":171,\"name\":{\"175\":{}},\"parent\":{}}],[\"properties\",{\"_index\":308,\"name\":{\"361\":{}},\"parent\":{}}],[\"property\",{\"_index\":66,\"name\":{\"67\":{},\"362\":{}},\"parent\":{}}],[\"propertykind\",{\"_index\":34,\"name\":{\"35\":{}},\"parent\":{}}],[\"pushtowrapper\",{\"_index\":421,\"name\":{\"556\":{},\"631\":{},\"703\":{}},\"parent\":{}}],[\"query\",{\"_index\":296,\"name\":{\"344\":{}},\"parent\":{}}],[\"radiobuttonicon\",{\"_index\":172,\"name\":{\"176\":{}},\"parent\":{}}],[\"ratingicon\",{\"_index\":173,\"name\":{\"177\":{}},\"parent\":{}}],[\"readonly\",{\"_index\":262,\"name\":{\"289\":{}},\"parent\":{}}],[\"reconfigure\",{\"_index\":67,\"name\":{\"68\":{}},\"parent\":{}}],[\"record\",{\"_index\":350,\"name\":{\"448\":{}},\"parent\":{}}],[\"ref\",{\"_index\":216,\"name\":{\"222\":{},\"243\":{},\"299\":{},\"305\":{},\"312\":{},\"316\":{},\"324\":{},\"328\":{},\"334\":{},\"380\":{},\"395\":{},\"409\":{},\"420\":{},\"430\":{},\"570\":{},\"641\":{},\"730\":{},\"748\":{}},\"parent\":{}}],[\"reforvalue\",{\"_index\":232,\"name\":{\"253\":{}},\"parent\":{}}],[\"result\",{\"_index\":270,\"name\":{\"307\":{}},\"parent\":{}}],[\"rich_text\",{\"_index\":372,\"name\":{\"478\":{}},\"parent\":{}}],[\"richtexteditoricon\",{\"_index\":174,\"name\":{\"178\":{}},\"parent\":{}}],[\"rowcolumnicon\",{\"_index\":175,\"name\":{\"179\":{}},\"parent\":{}}],[\"rowicon\",{\"_index\":176,\"name\":{\"180\":{}},\"parent\":{}}],[\"rowitem\",{\"_index\":385,\"name\":{\"497\":{}},\"parent\":{}}],[\"save\",{\"_index\":9,\"name\":{\"8\":{}},\"parent\":{}}],[\"secondary\",{\"_index\":199,\"name\":{\"204\":{}},\"parent\":{}}],[\"selectableobjectkey\",{\"_index\":420,\"name\":{\"555\":{},\"630\":{},\"702\":{}},\"parent\":{}}],[\"selected\",{\"_index\":256,\"name\":{\"283\":{}},\"parent\":{}}],[\"selecticon\",{\"_index\":177,\"name\":{\"181\":{}},\"parent\":{}}],[\"setoption\",{\"_index\":36,\"name\":{\"37\":{}},\"parent\":{}}],[\"showif\",{\"_index\":71,\"name\":{\"72\":{}},\"parent\":{}}],[\"showiftrue\",{\"_index\":72,\"name\":{\"73\":{}},\"parent\":{}}],[\"showinaddchild\",{\"_index\":427,\"name\":{\"574\":{},\"646\":{},\"740\":{},\"757\":{}},\"parent\":{}}],[\"showinreconfigure\",{\"_index\":426,\"name\":{\"573\":{},\"645\":{},\"739\":{},\"756\":{}},\"parent\":{}}],[\"showondrop\",{\"_index\":416,\"name\":{\"548\":{},\"623\":{},\"695\":{},\"724\":{}},\"parent\":{}}],[\"showtextstylecolor\",{\"_index\":417,\"name\":{\"549\":{},\"624\":{},\"696\":{}},\"parent\":{}}],[\"sidebarlefticon\",{\"_index\":178,\"name\":{\"182\":{}},\"parent\":{}}],[\"size\",{\"_index\":54,\"name\":{\"55\":{},\"363\":{}},\"parent\":{}}],[\"sizes\",{\"_index\":53,\"name\":{\"54\":{}},\"parent\":{}}],[\"slidercomponenticon\",{\"_index\":179,\"name\":{\"183\":{}},\"parent\":{}}],[\"snackbaricon\",{\"_index\":180,\"name\":{\"184\":{}},\"parent\":{}}],[\"sourcecomponentid\",{\"_index\":318,\"name\":{\"379\":{},\"382\":{},\"408\":{},\"411\":{},\"419\":{},\"422\":{}},\"parent\":{}}],[\"sourceevent\",{\"_index\":322,\"name\":{\"385\":{},\"414\":{},\"425\":{}},\"parent\":{}}],[\"sourceid\",{\"_index\":391,\"name\":{\"506\":{},\"581\":{},\"653\":{},\"737\":{},\"754\":{}},\"parent\":{}}],[\"states\",{\"_index\":253,\"name\":{\"278\":{}},\"parent\":{}}],[\"staticcolor\",{\"_index\":42,\"name\":{\"43\":{}},\"parent\":{}}],[\"staticvalue\",{\"_index\":231,\"name\":{\"250\":{}},\"parent\":{\"251\":{},\"252\":{}}}],[\"stepicon\",{\"_index\":181,\"name\":{\"185\":{}},\"parent\":{}}],[\"steppericon\",{\"_index\":182,\"name\":{\"186\":{}},\"parent\":{}}],[\"string\",{\"_index\":302,\"name\":{\"351\":{},\"449\":{},\"479\":{}},\"parent\":{}}],[\"string_expression\",{\"_index\":373,\"name\":{\"480\":{}},\"parent\":{}}],[\"structure\",{\"_index\":80,\"name\":{\"83\":{}},\"parent\":{}}],[\"style\",{\"_index\":40,\"name\":{\"41\":{},\"246\":{}},\"parent\":{}}],[\"styledefinition\",{\"_index\":251,\"name\":{\"274\":{}},\"parent\":{\"275\":{},\"276\":{},\"277\":{},\"278\":{}}}],[\"styledefinitioncontent\",{\"_index\":265,\"name\":{\"292\":{}},\"parent\":{}}],[\"styledefinitioncontentbase\",{\"_index\":264,\"name\":{\"291\":{}},\"parent\":{}}],[\"styledefinitioncontentobject\",{\"_index\":233,\"name\":{\"254\":{}},\"parent\":{\"255\":{},\"256\":{},\"257\":{},\"258\":{},\"259\":{},\"260\":{},\"261\":{},\"262\":{},\"263\":{},\"264\":{},\"265\":{},\"266\":{},\"267\":{},\"268\":{},\"269\":{},\"270\":{}}}],[\"styledefinitionstate\",{\"_index\":249,\"name\":{\"271\":{}},\"parent\":{\"272\":{},\"273\":{}}}],[\"styleproducer\",{\"_index\":450,\"name\":{\"770\":{}},\"parent\":{\"771\":{}}}],[\"stylereference\",{\"_index\":41,\"name\":{\"42\":{},\"279\":{}},\"parent\":{\"280\":{},\"281\":{}}}],[\"stylestatekeys\",{\"_index\":263,\"name\":{\"290\":{}},\"parent\":{}}],[\"submitbuttonicon\",{\"_index\":183,\"name\":{\"187\":{}},\"parent\":{}}],[\"subviewicon\",{\"_index\":184,\"name\":{\"188\":{}},\"parent\":{}}],[\"subviewitemicon\",{\"_index\":185,\"name\":{\"189\":{}},\"parent\":{}}],[\"success\",{\"_index\":200,\"name\":{\"205\":{}},\"parent\":{}}],[\"switchericon\",{\"_index\":186,\"name\":{\"190\":{}},\"parent\":{}}],[\"tabicon\",{\"_index\":187,\"name\":{\"191\":{}},\"parent\":{}}],[\"table\",{\"_index\":188,\"name\":{\"192\":{}},\"parent\":{}}],[\"tabsicon\",{\"_index\":189,\"name\":{\"193\":{}},\"parent\":{}}],[\"targetcomponentid\",{\"_index\":320,\"name\":{\"383\":{},\"412\":{},\"423\":{}},\"parent\":{}}],[\"targetoptionname\",{\"_index\":321,\"name\":{\"384\":{},\"413\":{},\"424\":{}},\"parent\":{}}],[\"template\",{\"_index\":407,\"name\":{\"534\":{},\"609\":{},\"681\":{}},\"parent\":{}}],[\"text\",{\"_index\":59,\"name\":{\"60\":{},\"481\":{}},\"parent\":{}}],[\"text_expression\",{\"_index\":374,\"name\":{\"482\":{}},\"parent\":{}}],[\"textareaicon\",{\"_index\":190,\"name\":{\"194\":{}},\"parent\":{}}],[\"textdecoration\",{\"_index\":247,\"name\":{\"269\":{}},\"parent\":{}}],[\"textinputicon\",{\"_index\":191,\"name\":{\"195\":{}},\"parent\":{}}],[\"texttransform\",{\"_index\":248,\"name\":{\"270\":{}},\"parent\":{}}],[\"themecolor\",{\"_index\":43,\"name\":{\"44\":{},\"201\":{}},\"parent\":{\"202\":{},\"203\":{},\"204\":{},\"205\":{},\"206\":{},\"207\":{},\"208\":{},\"209\":{},\"210\":{},\"211\":{},\"212\":{},\"213\":{},\"214\":{},\"215\":{},\"216\":{},\"217\":{}}}],[\"themecolorreference\",{\"_index\":229,\"name\":{\"247\":{}},\"parent\":{\"248\":{},\"249\":{}}}],[\"time\",{\"_index\":375,\"name\":{\"483\":{}},\"parent\":{}}],[\"timepickericon\",{\"_index\":192,\"name\":{\"196\":{}},\"parent\":{}}],[\"titleicon\",{\"_index\":193,\"name\":{\"197\":{}},\"parent\":{}}],[\"toggle\",{\"_index\":52,\"name\":{\"53\":{}},\"parent\":{}}],[\"transparent\",{\"_index\":212,\"name\":{\"217\":{}},\"parent\":{}}],[\"type\",{\"_index\":82,\"name\":{\"85\":{},\"220\":{},\"226\":{},\"233\":{},\"248\":{},\"251\":{},\"275\":{},\"296\":{},\"368\":{},\"373\":{},\"406\":{},\"416\":{},\"493\":{},\"502\":{},\"524\":{},\"530\":{},\"544\":{},\"561\":{},\"577\":{},\"599\":{},\"605\":{},\"619\":{},\"636\":{},\"649\":{},\"671\":{},\"677\":{},\"691\":{},\"708\":{},\"720\":{},\"727\":{},\"745\":{},\"775\":{}},\"parent\":{}}],[\"unit\",{\"_index\":309,\"name\":{\"364\":{}},\"parent\":{}}],[\"unorderedlisticon\",{\"_index\":194,\"name\":{\"198\":{}},\"parent\":{}}],[\"updateformicon\",{\"_index\":195,\"name\":{\"199\":{}},\"parent\":{}}],[\"url\",{\"_index\":376,\"name\":{\"484\":{}},\"parent\":{}}],[\"urlinputicon\",{\"_index\":196,\"name\":{\"200\":{}},\"parent\":{}}],[\"useactionidselector\",{\"_index\":21,\"name\":{\"22\":{}},\"parent\":{}}],[\"usecurrentpageid\",{\"_index\":15,\"name\":{\"16\":{}},\"parent\":{}}],[\"usecurrentpartialid\",{\"_index\":16,\"name\":{\"17\":{}},\"parent\":{}}],[\"usemodelidselector\",{\"_index\":20,\"name\":{\"21\":{}},\"parent\":{}}],[\"usemodelquery\",{\"_index\":17,\"name\":{\"18\":{}},\"parent\":{}}],[\"usemodelrelationquery\",{\"_index\":19,\"name\":{\"20\":{}},\"parent\":{}}],[\"usenewruntime\",{\"_index\":272,\"name\":{\"308\":{}},\"parent\":{}}],[\"useprefabselector\",{\"_index\":22,\"name\":{\"23\":{}},\"parent\":{}}],[\"usepropertyquery\",{\"_index\":18,\"name\":{\"19\":{}},\"parent\":{}}],[\"username\",{\"_index\":289,\"name\":{\"336\":{}},\"parent\":{}}],[\"valid\",{\"_index\":260,\"name\":{\"287\":{}},\"parent\":{}}],[\"value\",{\"_index\":230,\"name\":{\"249\":{},\"252\":{},\"496\":{},\"527\":{},\"531\":{},\"537\":{},\"554\":{},\"564\":{},\"569\":{},\"602\":{},\"606\":{},\"612\":{},\"629\":{},\"639\":{},\"644\":{},\"674\":{},\"678\":{},\"684\":{},\"701\":{},\"711\":{},\"723\":{},\"728\":{},\"746\":{},\"778\":{}},\"parent\":{}}],[\"valueconfig\",{\"_index\":341,\"name\":{\"437\":{}},\"parent\":{}}],[\"valuedefault\",{\"_index\":424,\"name\":{\"568\":{}},\"parent\":{\"569\":{},\"570\":{},\"571\":{},\"573\":{},\"574\":{},\"575\":{},\"576\":{},\"577\":{},\"578\":{},\"579\":{},\"583\":{},\"584\":{}}}],[\"valuedefault.__type\",{\"_index\":425,\"name\":{},\"parent\":{\"572\":{},\"580\":{},\"581\":{},\"582\":{},\"585\":{},\"586\":{},\"587\":{},\"588\":{},\"589\":{},\"590\":{},\"591\":{},\"592\":{},\"593\":{},\"594\":{},\"595\":{},\"596\":{},\"597\":{},\"598\":{},\"603\":{},\"604\":{},\"607\":{},\"608\":{},\"613\":{},\"614\":{},\"615\":{},\"616\":{},\"617\":{},\"618\":{},\"622\":{},\"623\":{},\"624\":{},\"625\":{},\"626\":{},\"631\":{},\"632\":{}}}],[\"valuedefault.__type.__type\",{\"_index\":428,\"name\":{},\"parent\":{\"599\":{},\"600\":{},\"601\":{},\"602\":{},\"605\":{},\"606\":{},\"609\":{},\"610\":{},\"611\":{},\"612\":{},\"619\":{},\"620\":{},\"621\":{},\"627\":{},\"628\":{},\"629\":{},\"630\":{},\"633\":{},\"634\":{},\"635\":{}}}],[\"valuedefault.__type.__type.__type\",{\"_index\":429,\"name\":{},\"parent\":{\"636\":{},\"637\":{},\"638\":{},\"639\":{}}}],[\"valueref\",{\"_index\":430,\"name\":{\"640\":{}},\"parent\":{\"641\":{},\"642\":{},\"645\":{},\"646\":{},\"647\":{},\"648\":{},\"649\":{},\"650\":{},\"651\":{},\"655\":{},\"656\":{}}}],[\"valueref.__type\",{\"_index\":431,\"name\":{},\"parent\":{\"643\":{},\"644\":{},\"652\":{},\"653\":{},\"654\":{},\"657\":{},\"658\":{},\"659\":{},\"660\":{},\"661\":{},\"662\":{},\"663\":{},\"664\":{},\"665\":{},\"666\":{},\"667\":{},\"668\":{},\"669\":{},\"670\":{},\"675\":{},\"676\":{},\"679\":{},\"680\":{},\"685\":{},\"686\":{},\"687\":{},\"688\":{},\"689\":{},\"690\":{},\"694\":{},\"695\":{},\"696\":{},\"697\":{},\"698\":{},\"703\":{},\"704\":{}}}],[\"valueref.__type.__type\",{\"_index\":432,\"name\":{},\"parent\":{\"671\":{},\"672\":{},\"673\":{},\"674\":{},\"677\":{},\"678\":{},\"681\":{},\"682\":{},\"683\":{},\"684\":{},\"691\":{},\"692\":{},\"693\":{},\"699\":{},\"700\":{},\"701\":{},\"702\":{},\"705\":{},\"706\":{},\"707\":{}}}],[\"valueref.__type.__type.__type\",{\"_index\":433,\"name\":{},\"parent\":{\"708\":{},\"709\":{},\"710\":{},\"711\":{}}}],[\"variable\",{\"_index\":55,\"name\":{\"56\":{}},\"parent\":{}}],[\"variables\",{\"_index\":81,\"name\":{\"84\":{}},\"parent\":{}}],[\"void\",{\"_index\":304,\"name\":{\"353\":{}},\"parent\":{}}],[\"warning\",{\"_index\":202,\"name\":{\"207\":{}},\"parent\":{}}],[\"white\",{\"_index\":208,\"name\":{\"213\":{}},\"parent\":{}}],[\"wrapper\",{\"_index\":1,\"name\":{\"1\":{}},\"parent\":{}}],[\"zipcode\",{\"_index\":377,\"name\":{\"485\":{}},\"parent\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file +window.searchData = "data:application/octet-stream;base64,H4sIAAAAAAAAA9W9XZfcNpLn/V2kvdTUJN6ZvpNldVs7suSV5O591qePDpVJVXGUlVmTL5I1fea7P4dAkgUG/yCDZJasvrJcCUYEwAAIxi8C/Oej/e7L4dEPv//z0adyu370g9VPHm3z2+LRD49Wu9u73bbYHh89eXTabx798Ojjabs6lrvt4d+b365ujrebR08erTb54VAcHv3w6NH/PAHCvuzzu7tiD0Sdf+EKusv3xzLfAEHnX9iC9sXH/AOS43/4N9ErSC6WThjZSPux+LjbF8/2RX4snu6vD43c49e74vDv9Od+I41RtpH8/n0lgiPvcdM0EvukGrHqJgIb71WKhbwfmdvduti8WI9QeXV/CU/11dnUhAWrze4wpstX9QVTtc8c8qD/LPbfxFhDzuYnBuOQfx5ly7n9nzUUlfp6JIwdPRTe+sRIkCnLMKa54iJuGaSx5nbbgMPFJka97o4yonXVnzZFGiNq71Dj58l9RxIDdFNs7or9qNG5v+TPGpqzBfW46NHjUnch5TX5bbF5t3u7zT8Vz/JxKyu17QoIm2Tsww9jx9RmgR6/QrdldwchMfKnQ/HstK9k/5pfF+OeqZ3uAGHf68hTU5spv5w78p1BYIy83xdecPDv5f0rjP/Z2ubH2c6PhiJ9F36ptob/51Tsv87tUUvSdzzy93Y2fzYXGPOo+9/e/uZftvmXu2if6j/27382u3xdbq+/VQ+v7vU9VE8HOrzOj/k36+1Z2Z/U1WK/3+2/WV9rbX9SZ0+H4tf97q7YH79eZG2kwr7j5bFlavOmOP5loHsv2oPwp/Si+Zdu/nWJtR9p+zZL5Yh+1qvlv8mH7fE3WDLH9LrS9yd3+SJL55g+e4V/cqfrxfdNscmryO3l9phU4ne8mHbtbX7OLvV0aw/Hn9ef5l/LxhMXD9LHb78XHdHjZpW9xHvcUN+/1e50TP/9evsddP5y+9UxvQ8r73fQ/VrCi/XbYlOsjhcai5a4733hvTe2+e0S+1g6EOk78NQzy8vdAiDvO74H1Nr6R3WJ0ERnKPre5CrIc6l70JH2Hd+Btq3NMnWJ5YkMQ5oUb4u3x/1pdTztZ9ICKup7Hfe2ofXfxeyVhwxAYsTz9TpMjb/l+zL/sJnXFyTtex33jq2Nv88d+e4opAf/7eqmuM39I2Jub9qivuNhjwyt/z4bJJH+pwfc//50uz6/qZbFFLrc6g6U+B0Pf9fe+ufZD1o8Gun8i0p+mCqzOkUlfa+D37Kz2d7Mfry2u98/2i+2d6fjJTpRC/rOx9qb2Qz17Idqq/OJkb4uPMx+ejreFNtjufJvZL/udx/LzdycgUHR3+vd6De8bidnT4WBAeq/Y6+q/7tAL89yvvN7UVnZDPzsiRF3PZWImn8qfiyOx6/z16COqO91rNuGNsM9+0FLBmBoxH+7W+fHC6z9CYHf/ehH5jb3YPaWEw5G4k74dr+OTzjtdIkIutDIt2ytGc5/VD/NsZUIeghbV/66307lPEtbYr5Xb743sgkSzF5Hoo6n8tWL4+u72Tv0WMr3Or6Njc12cXYk4L7bvf774yZffdqUh3mLc1fW9zrSxNLGnWePNx2C3lH/Oylimt6Te0nf94if7WzGe/YjsN39FFktt58usIS0xHyv43xvZLPPmO3UUcdh6dvh+DUK295Xvvm/c+vnfOM3xcdiX2xXSWlNg4F6upbg/Fiunu02O1QuGP3KFXi8KW6LlLz7H/kW5u0A1L2w8ANbDHrnRFJRu3G2+q3m6w//WayiyiFqd9yIK351U2669DEqFI1/ZwtN3KvVmLtebNd3uxJWr9Y/cUV93EEx1Z+5InZ3CZcJP7BdeXd9DX0k/MCeYuV/F8gP/N/HCEnI4Ir4TBHSvZj6J66oD6fjcbe93u9Od0Ba9CtX4Hq/u1vvvqB7Vv/EFbU93X6Atc/hB/bNL/5Ablj9mSuiXEEnrP7MX/4+lpsj7E74gSumekoVayAm/DBOzK/JsvDW71yhty28di/M/32UkKfbdZ1jk5IXNeEXr4cXZVi+Hn7iitoXq932Y3kd4/N7adGv7CfOev2sWvXRc+b8E3sOloe7Tf715e66XKF5GP3MPz/guuiQ6/gQgfuf2Qvhze7Li49oKfQ/jBPzbn+Cq2rzI1fcTbkuoFXhh/7TDcz9HvfXdtF1uT0W+4/5qjj8e/ilV1CbpQYDBkQ9vm+GN8FngxJKPkRb5CFNpO0Udav8WFzvorzjhKqo3RQ12xg0JFRs+yBCv/hPxdcvu/168NZE7aaoaT19EirObSaJryQynYy0naLu0Mk6Sug6DOYU9Suqt0KDnYobTlHUeplN6Dj2nTDSL35dHFb7sr0RTmhpN2UqyxpNL2JHK7an28O/V3/qX6rul7ynq9Vuv67eiHrkPKatsJX+xwEtx+KWqem+5Whtm2J/7NcStRgt/XTcPdvd3m2KY9GvpNtwtK7P+THf92uJm4yV/2O+f3aTDwwWaTRax77I16v96fZDvxbabIaeISeDTUfr8+9Zf63es/qVddpN08RQMlH+s3x/zsk79Crptpui6dlueyy2/S7XbTdF089Fvi76Z0+n2RQ9gxpmyP6lWJf5oIK41WgtN8Xq04fdH8OejFpO1cZSNFlHOdSRcrL9u83pdiv7xbfaTNOgGBrULA0MBZPlb9dltUzkmwEltN0ETce83A5NctJqtBb/1vSX3b7/qdJpNlbPT/kxb2xNqqGtpmh5GeNUpOBlHyPtl/2uFW5Awt/1Jr8zpP+4W38d1nBuNVlLmAPDepp2kzVVT6BhPedWk7W82X0ZVhIaTdBR/FquPg1MxE6zKXrelbdcXZ2mo/UVq/I233ha1K+t23C8ro/l1i+H1eQb0AaajtdXvZi8Kar3rQFtnYbjdR3zcvO3svgyoIk0G62nzDe7634dcZPR8vf5lyG/i5uMlv91m9+Wq8FHTbfdRE1+znNUxQ2n6io3Rf8LBmg4Vtfz27xkzNdOs7F6/lLlTA+qoa0maDkO+FuryWj5Q442w8P+ui/715WowVjZP5frdbEdHv9uu9Gadvvyv6vd1ubNaWCmwKaj9R1v+zfNUYOxsl98yBljRluN1rIaiFVEDUbLvs2vi2f5fnc6FP3DhFpO0jasZZb04dtBm43Ws11tTuuBfrTajNXwMv8wcDfiFuOlf92djmJAftxmmob+d/p2m2kalFL9r/WdZhP1WJYaO0+L1pqh5b7VRC0ZR0k2S4e1DB1No2k6Ms5gZZPHqnoNGIp6k0ZTdPy9PN5Ur4qDekjD0bp21+V2cHNCW03QshtYfVtNxsr/pdieeqVHDSbJHrrjpNFoHafNsXxZbvufHbTVJC0hbXJYT6vdWE2v8s8fBmhaq8kE+YO3pN1mgoa35bpg9KLdbLQen6w3vDnpthur6fWHofsetxgt/a7Y/jq0iSONRuvYr4t9sR4M2nTbjdX0a74d2GfFLcZLvxt41YxbjJe+z6/3+d3NgIZ2q/FaDocqa2fYc1HL0dpudlvGDr7TbLSeshim9KTRaB37csXpC202Xs/uel8cDj8OLGHddmM1vcnX5Y6Bzrvtxms6ltv+qGOryWj55ermXfHH8fm6PO76hw02Ha1v94WBCGmrCVqG5E+UzNhMzNpHnJ+tL4uPA0o67UZr2pTrYv+s/hRMvzbYdrTGbb76NLS/II1G6zgW/Xw+ajBF9tBzrN1mtIbTh9vyyFhYQMMJugahSbvNVA1D+9Zuu9GavpTH1c3QrWk3GqvjXd6fZHb/+wTJPVR7KtF+l3/oJyJRg9Gyiz+O+b7of1cnjaboGN400FajtfCI72za+648DoT44xZjpf+23THfFFDL0dr8sRuDIZROs9F69gzaRhqxdNxnOL/r1rQGBfc/cLOdX7z6+fmbF+/65Ty+b4UtjQzCe9w3L355+ub/G9By32qalrfPn71+9dOwnrjdRE2/PXv2/O3bIT1Nq2laXrz6y+vBG+ObTJP/96dvXr149dcBFfetpmn56emrvz5/M6CkaTRNx48vnz77jwEVdZupvXgzpODcZJr8X57/9OK3XwY0NI2m6Xj54q8/D830us1Ej/r5xbvnQ/50bjNNw9Nnz56/evdeDCiJms3SI3l60t/CYOpRPD3pc9eG9Lx78/TV21+fvnn+asgD2i1HaKNfRQ4lOt1DIsJBGeTX3udVtyKRVvx2Kok4Jb8jyp9icZwqqNq+hLK7zlcJ+zXeDX51kKV2X3xkKgwtx6nqPR1lUN1VcwFD61VlX6KTJXdQ75Ve9Rzk1dHbPRam6570rKCOIX9nfPd8hHvG4jjuOXQET5WcwNRWt52hrqr3K7brPP6wcb/S9hUzVIcDOJ6F+tyyr8iypR9cNtuIcbrHq+x6aRMZS2tumvA9tW/+tcU9Hpx29xZOmhZEHWNiDCocmBpEI2dyDKocLGomSnmFzYNqWbOSqObPy0H1/j9cvefGsxTylwKifORiwDRkrP7Zav9X/vFY7IfOTiC637cvuoABIbd+pAHNRfMM2G1D9IevPbpilurenRlROrw3Q+rG7c66Knn7s/vrJu7QkoqvynXPh6+A9oGjYNvH4A3ZUbceO+rxQ/f+pan7ThTpB83mbxNTQvuficjihOLP+eY0TnN9xRTV8bC+9WcC/i2lP/p5/jBSYf3DF1s2dtg6mvqHC6uib+Rvio+v9+2RCi/j9z+w38PfVjPivuzqXJseDhDEHUq359+YD/nqU3WQ23bdDn+PUfS4KyQ1qD1dTBnoQcUc41oCLm1YldpxglsLrmWNhEub9ja1IHMte9u7Rk837O/l+ngzx7BawCUN++PtTb6OyldHmnV/+eWMWk13+tXF3b06nvMv+W25gYdzDVvUuv6yZr2Nj84cbdT56gubNH3uxZdf1qi/F+X1zbRnyePW9Zcza1Mcj8X+7V2+ir/9O8oyKuKCxpXb4ucZY9a6/nJm3eXr9eTRur/4cgZVR6b+VNVut8/lHGVXR8ZlzXu3z7eHj7v97XTrYhGzjOvZ9FW7Ts6y4dvxN3mp0E9San/8BxqdfIb5QRin/f6iSQb0DDDDjku81HQFDr3YtK2cdx/H38L028Gh5Gxu69eA0HqWyupEehwrhDqb5mOVdpykN4bQbnGhmUfe34dv2GDQYPe52H/Zlz1rCNEZXzBS8X321NPNZvelWPtp+B/F1/ubF3g4/ZmbSfX2+cvnz949/4kj7nHUGPejYyTU+fPrv3VSa7DCuuUcbX95/ew3mvOEtdUt52j76cXbpz++ZI5n1HiOzr89ffmCp7BuOUfbi1d8ffdt52h88/zpT69fvaQJclhl1Hi0Thp58tOyO+NC9Kn9Y38ECsnt7GF+zA80wpVueAF9LF3syNqPp+qrGcMbAdSOv9T37HSSggd3OtD0kc+atPbOE+d4WP9befi3cntTVA+F9VRTUjujtCmd7dEMU7pgnnzjuAMnng5/aWYES42kcUBq/3eDe0FWrGlffBzkOR1V4yBWR13zkSWW3qkIK612OM/oXvMAvqq/YtOXQtZjSOvyixg0SK1ja3jI+oK3/6yQBzHPF9ZGzvX0tu6rYXzb1j/yM2QjTWk+7jbFpr4Zsi8Op01PZhHTrKtGziTrBpz2dCheFV/enLbHkrtC0kumL5XF56I3tybW2rQdpS71ZHl6OJTXg8+X0Ir/lNkUH48/59t1VeQ5QvZjct1wD8/mT5+XsXbudOwonTILieIxy9H50p4Zd5djTDVswNX50jFWcNJgwzUhQ6YqMX098PkH3J7vgYxbD4WznaDTlXnukDRmjGN0hPS4yC6J58eYddWImWbd0EeaT4fj7vaX1ke4plralvUg5uasxRRb2lw7y/VSEy+k5fEnHm3Pn3j+S2bDW1Go4PH9xcOj0OnSrJuC7RlxU7jmMBYmbAt3YeoxZMrClDRmzMLUEdKzMI2Y80O2jZ7zyE7+0y2knvInGW1/0acbFM52ok5X5jlR0pgxTtQRMvvpNmTWmKcbsu5yT7dBS8d6Os/c2NOf3n99uPjtUOVY9fl5ujXfy+H3jvGjZUDd47SoRDw73dlxU3LIsL4JyTKCOx0ZhgxNxh4RPVPxdCj2qagj36irSMwU6wam4t35xLOZRkZiHsDI//xyfAqDBCMsrGVcxrzUk7C6bmhJq9rw1wL/J67Ex+fWw8ugN3ReGPNe65hQJlFM4dLPu90ngpKqP/WOV+9KQGQ8HpjqXn9iXP7rVETfOcWCr+pGafEDzl5WZ6IMaakbTdayOx0ZappWY/RMuB1nRcOB2EhjbRxKb3hx/3HTMIvfxTacD6JBbbiJDj/udpsi75xtkxT5+P4C3DFsMdT9qv0x9UHVTfvZmt8e93EW46Dmpv1szc8/x5x2UHHdfLbev+3KzjeY0mrPrWdrrc6d5Ws9t56t9eVulXdPM0vrbdpP0zwwW9/tftpxbKnacWctOi6qX+jj/iKUtOXYi8/EcZwJ0VUXsSJ8G2acDc01l7FgN3YMzldcRPuv+91dsT/G5c0sG1rXXdKSzlfrWHb0fMVunBWtWgyWBb31FyO1/7YtR/rC+Yrp2uPNe9S+ql3Nj+WHclMeYcVMqu38JJReyf0JKckOJF/49vltcSz2cH/fb0jr2suYk3pr7zekdwvPMCHhAQOG8O/zx9OWLfBx1HiwQzMca0L+GEMx2516PWimEQwnmpCyhhXDbUv/68WYF4tnPpzJkPW4aTnoNOkt3183uw/RCWI92pqWY7W1sjrzQxFiAQOTDjacv8ymxfavsdjuVDXE7rRfFfcnbsPoTY8lnet7XodHGZYI1PaY0hejHVLNDc/2qx+KzOKre4Kyc+9OFFFEokZaORCkOeb76+J4EWORqIcwNmy6Xo2fgODyi03GdvRgzDTsDyQMmdKKEtdPvtDF6lNYiWQB1JC/9jVP2HGyH8fXJaK4sAfjkoPT+vvSggcUDwzzr6mcMNx0zFCPF/y4P80sYf2F7nVsxYS7TUwZGPZmrXmTYPb9l1wgs5+hYCDZf6BXF7otXasm3R6Oaan8CY5RvSkUbHPYWRRMkwYTKQbk9CXk9D94R1p4tWI8fBnWDsBING2vE8kDycYPMvki0aOn3bkPyQk3rYePmwsvZAj7qRcbMe7J12/AQElMvyGcgpjxt6YvPjB4ewbjTRyD8KHc0Zbt186CHZ/PjRqyCxnPx+L5d/WBl95EU/5cHDjOEApmHQjbsX5SjV3CgFERqZEGsd72eq0behu/oLH9519i8+gzeZ45I8/HTJrEPCezc/3c93amXSPe3HssvcS7O9dg/tv7XIP739/7V5K+N/iLT+rkOz1jOnff6ueZ113wQ7iUteB3ml5qwceCOQt+1/ppT/c+MzjP9nHG9D99EmZMePqwDRqxZiWsm//0YRvb+/RJmDf+6dNnzrinT9ok3tOne/1lnj6Ddo1++kBLL/f0GTZ47NNnusGcp09qWZv39Bk5qQeePr3TecrTp8+8wdebobeakS8zf8v3Zeu7l53u1y0uleXcksfJcW5MnPSoaKvrD1Ww1PWurW1tw3VKQNm4lbOjkLdgNpf1rJPBn/pWm5Tyq+hSrhUXOB4kaQ77cJARBvUdmJI0ZPC4lBEGDCb2t63gpfUDf8QrUt3wP+K5Hi9JcYP+NYnI96e2P9ttP5bXRHD0S6/E6GQ874fQ1vNBYZ0G3NyOp2/ePO0cO4alPa7bJspVukbiNPXXr18+f/qKqfO+9Tytz16/rE72e/Gaq7h1wTzdPz3tfHwxpfXcdL6+9+9e/DJGad1+pubnz1788vQlV2/Tep7WF6/ePe9+yjSl9b71PK3/+y3bl85N5+l7/eP/fv6MfiQypbFpPE/nm+fPXr/pHISY0Nk0nqfz7bs33Y/fpnQ2jSfopCt2u3ErfS4s3N0GzPU7VLLXOdJg/e42YK/fv717/f7Fq2dvnv/S/YRoQuzjzkV49IDZI1b0lPKhFX2k1vfP/++vb56/fdtd2QcMaF84zxawwqe0967wY/SN73j3qgtYAZ4zvfp7nzOjNU8chO6lM+2Bz72kCQPPvZFaJ4wBunCeLc9/efri5funP/30pvv99ZQZ9Jp5FvzlxUuuI56bztP34kf2knduOlPfL0//yu1g3XamRrivSuoc2FeN1Dreq+GF82x5+eIt95l6bjpP3y8vXv327jl3/ty3vojW8SMOL5xpy28v3714P2Iuty64hO4x86x9xTztcH+fUjywv+fq/PXp27d/7+7wU1qj5jP1/vQXrkrfcqa2n1+/ev7+1W+//MhezMglM/W/efGM61F12wtoHD+fwWXz7Hjz4tnP7989/79ct47bz9MM3yJTagfeIsfpHD/s6Lp5lowY8ouMdiVkfL+7V820gv8qcpG3kN/ecHf8oeU8bf/vxa/PXv/E7eB96wlaaWQkEMzzl7TpaTPtH3vjFoxTWIC0oeNxiHUJztD+QPyQsqv+L8STCweYzx93+XZdUL7Qozy64gL6b4vqrBX6cY8e9fcXXED7arddtz+VMag/vmSaBbMc7V7/8Nk/0JCoA5wkqQn2XI2YEB2jWEBulnWNiIewrypZyPf5cUczo8fZ2BLzEHZ+Bt9zHmdi/6elR1vX+er07suLY3FLTDz/dRTrPH9wCH3BOv5pbIJ6ndwTetr6eFA3t7LbmJ/p0X42sGU/9tcNfqIB9SOVclLAQz4GzAhXXciEgfzqlA3eZfXlzAhLSKpMr9+W+Nrp5oxMPB80pp7X2Xirru57NCGNY4Rpw5kdvdYNrIgh1aw363yEqZG0hzL4nPx2oaFthD2UuSufU3JKfz93wGh6/Z8+d1oGMQs4gKx2v1JpYuFBVb0J9SQjjTL1isicZffQ1w6CqmebcvXp3c1+d7q+eYiuIPnfoFtv7zbl8cfT8bjbPkSvgPgH79SbYpMPZL5N6Ess9cG78Jfd/jY/HhMfEZ/ch5bYB+9EHQIZKC8a3w0i+BvMkud/HIvt4eI+RQR/g468aB03fJk+vOg9nfii5leZQZe+BbXMBzX/rvxbsT9cYPPQGB9LfFDTLzfeDz3KzZELl7I4FviwhtNI3mzDh+J8kw1/wA3omPDgOPtHxg0v3o3+qOLUvowLN16+UwPByAfqFohSXr5rjBjmA3WvHdy8fM/6Q58Pdc9aTOxivaNS/5WWupbt9e1RF7sx7aH5Fose7tDVhddxpOXbTKVE/7ySwe9rP0wHQ+Ohb6dP6Wcj819uSp2/IXy+Pxe+L/2fNz4Wt3eb/PiwHbqKtFy8ZwP+1l9Ie4nOMcpvH6Jjd8X+tjxc9AUf96+t6Ft38wEWRNrBsBxeeL1ndW6dH/N3F1xOInkP+e63Lu6K7frw+mILeCzwQQ0vD1Wx1hTmhO2+l/eQZt8W6/KifhILfFDDd+t8CkrHRp+F/Qs93r3J9UJjLrXAhIH4BvvjtvlXl92dxMJTnbkutsU+PxbPOJ9jndU3rOmbddR/XftN8V+ncn+51Yl0ker4Zp272+Sr4ma3WSfOG57QtbbIh1zCDje7L6+3P+13PV/NHGd7S+JDm/6u+OP49vh1U7S/LHaBLnQkP+iDJN/m18Vr/81nnz12sT0vlPyv9Ijp2F/P+An5V4k53h2ixG364Kn5y4kJdGP7d9VW90B9HfDMqdmCozvbn4P+0N286GtYXzfDy9jFgoqjO3ooNsXqWO3qw0X/MSkJc3S3sdo/ZwjuToebd7u/7/O7uws+sYnQf6EltmV6fcvspW5Pe2C+QRQLd8eHsS4XBEFKvhlKTvSw0fPNuvntvTLuZP1H95C9/baYekSnry5Lp/r7/k2x9phBCJof1uH/RAw+ZijutX8nw3HRPdWYkQh7rIu9H4wdhG5xz8ty+6lYR8njyUGhLS9W1gMFP+ZsujvGTynnweqHa3l6lMfD7Pd9PxUf89MGZprFv/OHNOnAHXGPg8ulQ6AtAxPqEofUdpX1HVGbUMR9UkNl9cxasrT2HU+LK3f6lV6VfR/gpJoZMaMX2zdFPdGZg4Aum36jg7Sn6/Wzm3LDHJHONdPVJ1eKrlZU89d3VjZHfWKd6Cqnq8NcxXyfB/Glucp7S/y6FuCqvglGTJ/4I2r5WhdPLN/jGNBXsYdtGFoOeor0WAYN1uVNMqunFI83TAPVd5OMGiy465qWrrH7pp48qrKudflFiul4BvHq59LWDdy9MSVz4wzmV8nNNZ5TGDfOdnYt3DzTe8vfxlg8XPE2z9D+IrcxljLq2uaZOlTKNsZYVvXaXO/tL1gb57eMGrW55ibL0sZZ2l+JNtfIZPHZOCP7682mG9lbYsY1cbiqbLqBs8buAUast1yMaddwhdgM83oi+WzzhurAxph32U3RmGqvQSunR84nG9tf0zXC4snx7ummD1RuXc74/ij19A4w6rMu14kRobnLVGFdcPwHC6+4feDVWv2Zy8nIiirGIM8qoppn9lDd1FjrH9rFJ1ZHXbgbQwVRo3ozUAP1p7s6t9KJO8bTi5vmmD1czzTO/gEPSSV/zOpCb9XSRc0fKFSa1QtObdJFO3OZRWdsBdJFu9BXdMTsxWCd0eQ3iN7SIq51g9VE083rKSDiWjdUMzTZuN4yIaZ1w5VB081LFQNxTeut//kTH23MKp/hSTypsGeSkUO1PExbB+44s3xnWg/GVOxcpjuDRTrTOsKry7lMFwZKcZgd4FTfTF4m+gtumBYyamxmGThcVjPCUGYlzfSFl1U8w3Vefr3Mn7kkT6iKYcywSxXCzO8Fq/ZlSo8GfGlEbsyFK1weoDNzN/Nz6lgeoDvM0pULdG5MtcoDdHSwQIX7HGPVpPyJy9jIypPhoZ5VbDLL6KH6kpG2fwMQNaOKZHZnvokfjasVmdanB4dcF6wImdvDh4ZiF637eODOXgSiXby644E7PXc/cckajst3tVNP0JesW6VLsusI+hL7a0HDSf3tjNpRK2ispB7igWT+6pJpifxQGSOJ/6xxlg9i3aziDJ56fv1AY8rI2oGexGlm3QDRzKsZ6FHb/07UaJtUK9Cjtq9OoFE6ukagRyFvCoG37DlKh+sCGs0TawIusW6MrQWoWs6pA+hRPFgD0NI9NJ2H8v/7DOHl/o8xZyjvv3dYODn/Y4zh5fs3Js3I9b+Eh47P8a8uvVx+f68hI3L7O1YN3KXRef0sQ0fm9E80mp3Pz7J5XC7/JJOH8/gZljJz+CcZyMjfZ1jIzd2fZCIrb59hJD9nf6J3MvL1WX7JzdWfaGZ/nj7LQkaO/kTj+vPzWcYxcvNHGzeclz9gGjMnf7Rhk8fqwiM0nIffbw8zB3+8WUNhzyGzWLn3DLMut0kZnXOfsm5mKHKskYxc+2FL54UUR5vMybGfbTQjNDjacG5u/WzjmeGVC+bUzx9vXj79gO0jcum/8fIwJYc+Pajz8+cnmcvKnWda/ZAuPCdn/jLms/LlOb3g5Mr/Ga48Kkd+YExn5sdPMJeZG8+ye8ATejn1FNOHc+IvYTYnH36K9exc+Et0Yv4iMikH/hKmD+a/91vPy30fu3MfznsfsIqX8z7arKF89wGrWLnuY40aznPvt4qZ4z7arN789gGThnPbv+2jaExOe3JSTs9nH2McK5e938aBOzsmj32U5aNz2Gd1g5e/PqoDI3LXZ5nOyVvvN5ydsz522jPy1fst4+aqTzGMmac+bOCYHPXRCyc/P33AOUfmpn/jJXVqTnp65lw0H32y9fxc9BE9GfAZZs7FQ+SgX64TczbRs3PPL9eNMXnn0zs1Ouf8ch3k5ZsPPH/4uebfdlmakmOeHNr5+eVTjGXllvNsfmDAMjenfGonHtxfJuSSj+rLg8KbS+eQT+zZQ8Key+eOP0wnZ8Ohh8kZf5jOznn+XzxX/GJdlIulE0Y2vYRfE2h6XV2c+OJBbwI51nK2Mj4V/xlM04vVDl3Ua0fvyjpay+NGAL5TzF4Op09Mtawvk4IpbWR0drKlzI8hz7QXZhlNH11OwtFF7O7uZCYbPZw1MtXiB5lcYxJKRhk+co9yQfv7c00mdmLcduSSvRlIQ3mY/oCdxyX7xMhQeZh+tTcZl+xSf/LKw/QGRFsnd4n9Id7xC1f3E0dABtr5JRvzq+kG6xL6dfQUKrBGZuz72YA101a20TvuASsmuvqEN3COITOeW+dJO64Qc5RNV32FmgN2TQ9cjDaxSTyYaWtfEWiT5YsLqKbbfNWWPNd+1pP+4n2IxH6TDiRqCAd6gIsK/6TZ3ylNGz90E6sORxrWV4TIsG1oE9BTlTjW0MEixfnm9lQtjh7WgSLGC4wtp4B7wGx+RffoB/hwiTfLtsGa79GGDXxeMmlPFzj2lYOONqv3o5NJo8ZUjXNMGtgO/5rvj2W+GbUrbl3zsJvjrqrpe+R2V+dvlYFtYx8MLJPGbJyBTaP3zymjZjxIU2ZN2k23hV1oUz1o4di9NbDyoltslsGTdtppyy+74R7Xg6n77v7eXHj3Cro0aRP7babgnC1tW9zldrYMM0ducBOWXnafyzF7ynZ3mvHjdr2sIR+/+Z047hP3wKATs7bCrCfzpB1x0tIpG2OWmWP2x8C62dtklpH83TIwceamOWXgAE73Sbn9NN03uQzEBjJ5yJrYy8kM4+ntL9qCVw88bj8X+y/VDRtrSHzhHGvoDQ8e8et+tz6tCgqn2j/OvclA2tDtJdaluxG/GiY6g5rM7VJS5lDHoL1D3WtN4t5ewpaX6WxaNK/PuBPprns/TnS29dvc7nWFDXWobRoOSPyYHwqcJBQ9AjqNRoUc0jmjWO7j4ZSKrtXjd+hDyoe25N3rJ2dpMk3pT3TosWdybiXXsIGchemm9WdEcs1jpB9MNzEZHOJa1x8eGmUYXZz60v/4E5pK/SX/VPy6LyoTQ83x0/01Ta6DbZCWfzx5VG7XxR+Pfvjno8/nY5N+eCSv1FV1Bu3HstisD49++L3eHa12t7fh5KD1bnXy//zHudnfitVxt68ah9b/vnj05PfFEyOvFkb+4x9Pfq8v9j/4P9Qy7v/iLxSPnvwunlh1tVBZ60LRuVC0LpSPnvwu0YWyc6FsXagePfldPTH6yljTulB1LlStC/WjJ79rpFF3LtStC82jJ7+bJ1Jc2YVrXWg6F5rWhfbRk9/tE+Oulqp1ne1cZ1vXuUdPfnfIUte50LUuzFKWZp0Ls9aFy0dPfs+QxmXnwmX7/i9SKkXXdQTxHZG6lQJ4T9t9ROUUS+h4XQcSbQ8SlV+IBby460Si7UVCJzvc9SPRdiRRuYfA06XrS6LtTMImFXf9SbQdSlRuIuB0E12fEm2nEkmvEl23Em2/EpW3CAUVd11LtH1LJn1Ldn1Ltn1L+oUJTnfZdS5J1iaZVAxWp7ZzSe9cBiruOpdsO5dMOpfsOpdsO5dMLlOy61uy7Vuychdh0VSUXeeSbeeS3rkcvLjrXLLtXLLyF5HBi7veJdveJb13wVVAdr1Ltr1LJb1Ldb1Ltb1LieS1XedSbedSMjnWqutdijz8VHKsFXj+tb1L6eRYq657qbZ7qcpjJFw0Vde/VNu/VHLtUl33Um33Ui55bde7VNu7VJYe6653qbZ3qWV6rLvepdrepRfJsdZd99Jt99KVx0j4nNBd/9Jt/9LJxUt33Uu33UtXDiPhc0J33UuT/VVy8dJgh9X2Lu29Cz4ndNe7dNu7dNK7dNe7dNu7dOUwEm8Lu+6l2+6lk09G3fUu3fYuXfmLhM8J3fUu3fYuk1y7TNe5TNu5jHcuixSbrnOZtnOZpHOZrnOZtnMZ71xwX2u6zmXazmWSzmW6zmXI/t07F9zeGrCFbzuXSTqX6TqXaTuX8c4Fn0+m61ym7Vwm6Vym61ym7VymchcFF2vTdS7Tdi6bdC7bdS7bdi7rt/Rw5bJd57Jt57JJ57Jd57Jt57L+tRCuXLbrXLbtXDbpXLbrXLbtXLZyFwVXLtt1LkteEJPOZcE7Ytu5bOUuCq5ctutctu1ctvIXBVcf2/Uu2/Yu670LriC261227V0u6V2u612u7V3Oexd+M+56l2t7l0t6l+t6l2t7l/PeBVcQ1/Uu1/Yul/Qu1/Uu1/Yu570LriCu612u7V0u6V2u612OhCAqf9FwBXEgCtH2LpdculzXuVzbuVzlLlqAqInr+pZr+1ZWuYuW4Nqs61tZ27eyyls0nMdZ17eytm9llbtojRR3fStr+1ZWeYuGUzHr+lbW9q3MB7XgVMy6zpW1nSur3EXD6ZR1nStrO1dW+YuGUyLrelfW9q7Me9cS7Y6zrndlJMjlvWuBBhuEudrelVUOY5B3ZV3vytretfQrl3yi1ZVxy9bFy657LdvutfRvjNC9ll33Wrbda+mXLrjUL7v+tWz717LyGGNAl5dd91q23Wvply7oXsuuey3b7rX0AQnoXsuuey3b7rX0axcOSXbda9l2r6V/ZVyiLne9a9n2rmXlMBZ517LrXUsSRa0cxgrk1ksQSKWR1MpjLFq9wk/tq6O/nS+vfMbiUNsCxFMXJKC6qNzGQicLv9HrSVB1UbmOhetY+I1eT+Kqi8p7LPS18Bu9nsRWF5UDWQeHDwRXFyS6uvDBeuhw4Td6PYmwLio3sjgivQAx1gUJsi4qV3I4KL0AcdYFCbQuKm9yOLa8AKHWBfE+H5t3OESMQvmdWH7lTg67HwznE/fzMXqH3Q+F9GlMXyS5kEBBfRrV95F6h1ZJgeL6NLDvY/UOOy8K7dPYvo/XO7hWChTep/F9H7J32RNlrpaGXg+8j4b4fdjeYe9FUX4a5hfplU+gQD+J9Asfvc+w94NgvyDRfuED+Bn2fhDvFyTgL3wQP8PeD2L+ggT9hY/jZ+qJklcyE+R64H4k7i98LD/D3g9C/4LE/oWP5yfGH4T/BYn/Cx/Sz/DiDQiAIAhA+Kh+hv0fQABBKIDwgf0M+z/gAIKAAOFj+xlevQEKEIQFCB/fz7D/AxwgCA8QPsa/TCBF4H+ECQgf5l9i/wVUQBAsIHykf4n9F4ABQciA8MH+JV69ARsQBA4IH+9fYv8FeEAQPiB8zH+J/Q8gAkEYgfBx/yX2P4AJBOEEwof+l9j/ACkQBBUIH/1fYv8DsEAQWiA8AFhi/wO8QBBgIDwDEAvsgIAZCAINhAcBYoE9EIADQciB0AGqYxcE8EAQeiA8ERAL7IOAIAiCEISnAmKBnRBQBEEwgvBoQCywFwKUIAhLEB4PiAV2Q4ATBOEJwjMCscB+CJiCIFBBeE4gFtgRAVcQBCwIDwvEAnsigAuC0AXhgYFIZFcAwCAIYRCeGohUlgTwRIIZhCcHIpHtAEiDIKhBeHwgElkLADcIwhuECXke2BMBchCEOQjPEQTOIhCAOwgCHoRnCUJgTwTsQRD4IDxQEAJ7IgAQghAI4aGCENgTAYQQhEIITxYEpvsCkAhBUITwdEFgZC0AjRAERwiPGATmsAIgCUGYhPCYQWCeKgCWEIRLCM8aBOaiArAJQeCE8LxBYL4pAJ8QBFAIDx0E5pQCQApBKIWwIfUIeyIAFYKQCuHhg8DcUABYIQitEB5ACMz/BAAWghAL4SmEwBxPAGohCLYQnkQIzOMEIBeCoAvhcYTAXE0AfCEIvxAeSQjMxwRAGIIwDOG5hMCcSwCOIQjIEJ5NCMyrBGAZgsAM4QGFwMxKAKAhCNEQHlIIzK0EgBqCUA3hSYXA/EkAsiEI2hAuZMNhTwR4QxC+ITyzEJgHCcA4BIEcIgtpcdgTAecQBHQIDy+Exp4IYIcgtEN4gCE09kQAPAQhHsJDDIFJjQDQQxDqITzIEBp7IgAfgpAP4WGGwMhGAPghCP0QHmgIjG0EACCCEBDhqYbA6EYACiIIBhEebQiMbwRAIYKwEOHxhtDYEwEOEYSHCI84hMGeCJCIIExEeMwhDPZEgEUE4SJiGTI1sScCNiIIHBGedwgMdQTgI4IAEuGZh8BgRwBGIggkEZ57CIM9EXASQUCJ8PBDYMIjACwRhJYIT0AEpjwCEBNBkInwFERg0iMANREEm0jPQYTBWaAAnEgCTqQHIcJCT5SAnEhCTuQiZHRCT5QAnUiCTqRHIcLicgjATiRhJ9KzEIHhjwTwRBJ4Ij0NEZj+SIBPJMEnchEyiHHeM+AnkvAT6XmIwPxHAoAiCUCRi5DrCT1RAoIiCUGRnogIjIAkQCiSIBTpkYjADEgChiIJQ5GeiQgMgSSAKJJAFOmhiMAUSAKKIglFkaE0AmMgCTiKJBxFejAiMAeSgKRIQlJkqJHAIEgClCIJSpEejQiHPRGwFElYigzFEhjmSABTJIEp0sMRgWmOBDRFEpoiQ9WEw54IcIqkhRMejwjMcyQqnqDVE6F8AgMZiQooOhUU3hMxkZGwioJ4YqijwEhGokoKWkohQ7Y79kRUTkHrKTwjERjKSFRTQYsqQlUFpioS1VXQwopQWYGxikS1FbS44lxdgT0R1VfQAotQYYHBikQ1FgSsSBXy4LEnArIiCVmRnpQIjFYkQCuSoBUZ6i0wW5GArUjCVmSoucBwRQK4IglckaHuAtMVCeiKJHRFeloiMF6RAK9IglekxyUC8xUJ+IokfEV6XiIwYJEAsEgCWGSoxMCERQLCIglhkZ6YwBQ7CQCLJIBFhnqMZfZEZ1fKkUIjQFgkISwyEBaMaCQgLJIQFumBicSIRgLCIglhkaE4AyMaCQiLJIRFemAiMaKRgLBIQlhkqNLAiEYCwiIJYZEemEiMaCQgLJIQFhnKNTCikYCwSEJYpAcmEiMaCQiLJIRFhroNjGgkICySEBbpgYnEiEYCwiIJYZGhgAMjGgkIiySERXpgIjGikYCwSEJYZKjkwIhGAsIiCWGRHphIjGgkICySEBYZSjowopGAsEhCWKQHJjJRIAoIiySERYbajkShJyAskhAW6YEJThmRALBIAlik5yUSIx4JAIskgEV6XiKFe6Lc1VLQqk/giASwSJusgpQAr0iCV6QNbpg90YsrRY4dkACvSIJXpA1uiCcCwCuS4BXpaUniFgC6IgldkR6WSLl4osVVpiwRALyQ0BXpYYmUKB9ZArgiCVyRnpVIiXJGJWArkrAV6VGJlOqJWVwtNO0AcELCVqRHJRLzJQnYiiRsRbpFjxMAtiIJW5EelSTuIUArkqAV6UlJ6h4CtCIJWpGelMDMQQnAiiRgRXpOknABwFUk4SrSYxKc+ScBVpEEq0hn0y4EqIokVEU61+NCgKpIQlWkCz6IF1JAVSShKtIFH8QLIaAqklAV6SGJxIRRAqoiCVWRmehZSQFVkYSqyCx94ABgKpIwFZmpnkkEmIokTEWGMhLog4CoSEJUZBbWQbylAURFEqIiPSBJTGIAVCQBKjILTrisZoFYECcEQEUSoCI9H5GY0EoAVCQBKtLzkVQPgA8SniKXi54eAJ4iCU+RHo9IjIgl4CmS8BTp8YjEiFgCniIJT5Eej0iMiCXgKZLwFOnxiMSIWAKeIglPkctQRY6XEsBTJOEp0uMRiRGxBDxFEp4iPR6RGBFLwFMk4SlyGRwRTyXAUyThKdLjEVxaJQFOkQSnKE9HJEbMCuAURXCK8nREYsSsAE5RBKcoT0ckRswK4BRFcIrydERixKwATlEEpyhPRyRGzArgFEVwivJ0RGLErABOUQSnKE9HJEbMCuAURXCKWoRzDaAnK4BTFMEpytMRiRGzAjhFEZyiPB2RGDErgFMUwSkqVKTAnY0CNEURmqJEcERUBqYATFEEpijPRiQm1ArAFEVgihLpogAFWIoiLEWFmpTEAAAvJChFeTIiMSFXAKUoglKUJyMSE3IFUIoiKEV5MgILchUAKYqAFBWqUhIDAFyQcBQlwhkbCuoHHkgwivJURGI+rwBGUQSjKE9FJObzCmAURTCKksEH8TQGGEURjKI8FZGYzyuAURTBKMpTEWkydDigAhhFEYyiZPBC/EABGEURjKI8FZGYzyuAURTBKMpTEYn5vAIYRRGMojwVkZjPK4BRFMEoylMRifm8AhhF0bOqPBWRmM8rdF4VPbBKhVNfsCeiQ6voqVVKpldTdG5V5+AqlZ7L8Ogq4ocqHatR6PQqenxVOL8K5xcodIIVPcLKI5FUB4AX0mOslEu/JCp0lBU9y0olT1VQ6DArepqVWqZfEhU60IogFKWDD+IDsQBCUQShqHCsFQ4VKIBQFEEoKn20lQIARRGAogJASdwBAFAUASgqfcKVAvhEEXyiAj7BCSYK4BNF8IkK+AQnmCiATxTBJyrgE5xgogA+UQSfqIBPcIKJAvhEEXyiAj7BCSYK4BNF8IkyPVFrBfCJIvhEmfTZfQCeKAJPVIAnDu4pADtRhJ2o8ylYeCUH7EQRdqLO7CQxAMANCTtRJnlQpALkRBFyogI5qQKeYEMAyIki5EQFcuLwqXyAnChCTpQJTohK/RUgJ4qQExXICU6vUYCcKEJOlAch6GBfBbCJIthEeQ6SMB9wE0W4iTpzE+wAgJsowk2UxyCJ0xiBAxJqojwFSd0/gE0UwSYqYBOcnaQANlEEm6iATVIjgE6UJC5o02dKAmyiCDZRAZskpgDAJopgExWwSWoIgQcSbKICNsH5WQpgE0WwifIYROL8LAW4iSLcRLk+LwTcRBFuolzaCwE3UYSbqMBNcH6YAuBEEXCiXDgVEC7kAJwoAk5UACc4PUwBcqIIOVGBnOD0MAXIiSLkRAVyksGFCIATRcCJOoMTvB8D4EQRcKICOMHpZQqAE0XAicrSz2KATRTBJspzEImz0xQAJ4qAExXACc5OUwCcKAJOlCchEmenKYBOFEEnKks/jAE4UQScKA9CJE5uU4CcKEJOVCAnS4mPyAVOSMiJCqdxwddCwE0U4SbKcxC5xAf6A3CiCDhRAZzg3DgFwIki4EQFcIJz4xQAJ4qAExXACc6NUwCcKAJOVAAnODdOAXCiCDhRAZzg4wcUACeKgBPlOQiGBgpwE0W4iQqndaFDsxSgJopQE+UhCDz5SgFmoggzUR6BwEPdFCAmihATtQwuiBcBgEwUQSY6HNyF9nMaABNNgIn2/AMe0KYBLtEEl2hPPxTOK9QAl2iCS7SnHwrnFWqASzTBJXqRjlNrQEs0oSXaww+1kGg7pQEt0YSW6EUaH2sASzSBJdqzD4XzGjWAJZrAEu3Zh8J5jRrAEk1giQ6ndyWGEBwHTViJ9uwjNYQAlmgCS7RIp9FoAEs0gSVaBC/E51kDWKIJLNHh/C6cmKkBLdGElmhPPxROzNQAl2iCS7QIbghXUQ1wiSa4RIt0hFADWqIJLdEiuOES5ShrwEs04SXa84/EnlwDYKIJMNEegOADzQEv0YSXaLno6QDgJZrwEi3D8dELeGw+4CWa8BLt8YcS8CAsDXiJJrxEe/yhBNwPacBLNOEl2uMPhTNTNeAlmvAS7fGHEhpbANyQ8BIdeAkO9GrASzThJdrjD4VTWzXgJZrwEh14CYyRaYBLNMEl2tOP5BAARyS4RHv6oXBurAa4RBNcoj39SExlQEs0oSVayZ4eAFyiCS7RqidWrQEv0YSXaJX+GgPAJZrgEq2CF8Jgvwa4RBNcoj3+UPj8Fw14iSa8RKv0kYYa4BJNcIn2/EPh7GANgIkmwET3ARMNgImmnwDpAyYafQWEfgbE84/UUx19CYR+CsQTEIWPwNHocyD0eyA6HKuP94bokyCdb4KksZ2GnwUhfqjT6a0afRmEfhrEE5DUIwl9HoR+H0T3YDuNPhFCvxHS85EQ9JUQ+pkQvezrAPBCAky0WfQ8UwEw0QSYaCN6nqkAmWiCTLSRPc9UwEw0YSbaBC/E36UBzEQTZqJNjxcCZKIJMtGm7w0FQBNNoIk2PVtDwEw0YSba9G0NATPRhJlo07c1BNBEE2iiTXprCJCJJshE276tIaAmmlATbfu2hgCbaIJNtO3bGgJsogk20bZvawjAiSbgRHsOohJfOQLgRBNwosO3RhJfKwLgRBNwogM4gRFjDbiJJtxE255nMgAnmoATbfu8EIATTcCJtmkvBNhEE2yiPQVRia8uAWyiCTbRAZskHukAm2iCTbTrKXrSAJtogk205yCJoL0G4EQTcKJd8EK8NwbgRBNwosM3SXC5hAbkRBNyoj0IUbhcQANyogk50R6EKHwgmwbkRBNyogM5wVFvDdCJJuhEexKicL2ABuhEE3SiPQlRCgUtNSAnmpAT7VGIUihmqgE60QSdaE9ClIKvaICcaEJOtAchSqF6bA3AiSbgRHsOonCqvgbgRBNwokPNCWawGqATTdCJ9iRE4Vx/DdCJJuhEn9EJRBcaoBNN0In2LEThYgEN4Ikm8ERnwQvxRALwRBN4opfBC/FEAvBEE3iiz/AETyQATzSBJ9qzEIWrBTSAJ5rAE71U6YkE2Ikm7ER7FKJwtYEG7EQTdqI9C0nMRMBONGEn2sMQhasVNKAnmtAT7XFIYioDfKIJPtGehyhc7aABQNEEoGjPQxSudtAAoGgCUIwnIgpXOxiAUAxBKMYzEYWrHQyAKIZAFBMgCq52MACiGAJRzCK9HhrAUAxhKGYR3BB/pBBAFEMgigkQBR/IZwBEMQSiGA9FFC53MICiGEJRTKAouNzAAIpiCEUxgaLgcgMDKIohFMV4KqLwgXwGYBRDMIrxVCTxUDEAoxiCUUyoOYFJJQZgFEMwigkYBVccGIBRDMEoJmAUXHFgAEYxBKOYgFFwxYEBGMUQjGICRsEVBwZgFEMwihHBEfFUABzFEI5iRM+D2QCOYghHMSI4Ip5LgKMYwlFM+BwK4uEGcBRDOIoJHAVXPBjAUQzhKCZwFFzxYABHMYSjmMBRcMWDARzFEI5iAkfBFQ8GcBRDOIoJHAVXPBjAUQzhKCb9PXQDKIohFMUEioLPBTCAohhCUUygKLjiwgCKYghFMZ6KKFyxYABGMQSjmIBRrHui9ZWh1wM3JBTFpL+QbgBDMYShGJVGygYwFEMYivFIBH9vzwCEYghCMSq4YIa6DwiKIQTFKJ0uyTaAoRjCUExgKDhd3wCGYghDMYGh4HR9AxiKIQzFeCaicLq+ARDFEIhiVNYzCwBEMQSiGM9ElJMo7mcARDEEohjPRBJeBBiKIQzFBIbiYLzEAIZiCEMx6aITAwiKIQTF6J6zGQwgKIYQFOOJiHIadwC4IUEoJnwXBR99ZgBDMYShmMBQnMECgBsShmJ0Mt3aAIJiCEExHokonC1tAEMxhKGYwFAcjNoZwFAM/dx6YCgugwLQJ9fpN9cDQ3Eww86gz67T764HhpLB8LdB316nH18PDCWD4W+Dvr9OP8DumYjK4Ku+QR9h73yF3S+H1d4YbK7hh9iJH3ooojII1Q36Gjv9HHugKJnBAoAn0k+yeyiiqvg56gLwRPpddo9FFvhy4IeEophAUfATHUAUQyCKSZ/YZQBCMQShGE9EEmsxICiGEBQTCk/wEx0AFEMAigkABT/RAT8xhJ+Y83ld+IkO+Ikh/MTY4IF4IQEAxRCAYtKFJwbwE0P4ibHpM+MMwCeG4BNzPq4rMQDAAQlAMQGgZHghBADFEIBiXNoDAT4xBJ8YF5ZBvI4CfGIIPjEuXYZsAD0xhJ6YQE+WeB0G9MQQemJcnw8CemIIPTGBniwFXEQAPTGEnphAT3DM1gB6Ygg9MYGe4CMBDKAnhtATE+hJ4gUd0BND6IkJ9GSJnwQAnxiCT0y68MQAemIIPTFZz0II6Ikh9MQEerLEDyKATwzBJybgkyXeEgF8Ygg+MZ6GqCVeyQA+MQSfmIBPltgJAD4xBJ+YLLghnsoAnxiCT4ynIXqBpyLAJ4bgE5MlYbIB8MQQeGI8C9ELvKMC8MQQeGICPEm8XAF4Ygg8MaHyJLGWAHhiCDwxHoboBV4KAD0xhJ4YD0P0As9kQE8MoSdmmY7SAHhiCDwxy3RejQHsxBB2YgI7wRsqwE4MYSdmmUzuMoCcGEJOzDJ9apwB4MQQcGI9B8EbKgu4iSXcxAZuAjdUFmATS7CJXfQ4oAXYxBJsYhfBAWGUzwJuYgk3seGoLjyHLOAmlnATG7gJDlBYwE0s4SbWYxCNKx8s4CaWcBO76Dm80AJuYgk3sYuerBoLuIkl3MQukguhBdTEEmpiRc8ZrhZQE0uoifUURC/ga5UF2MQSbGI9BdELhwUAPyTYxArV40YAm1iCTWzAJgk3AtjEEmxiPQXBS4EF1MQSamIDNcFxLguoiSXUxIrkq4kFzMQSZmLPtScJJwBOSJiJFct0nMsCamIJNbGy54h/C6iJJdTEBmqC41wWUBNLqImVyVChBczEEmZiAzPBcS4LmIklzMQGZoLjXBYwE0uYiQ21JzjOZQE1sYSaWGnTcS4LqIkl1MQGaoLjXBZQE0uoiQ3UBMe5LKAmllATG6gJjnNZgE0swSY2FJ/gOJcF4MQScGI9CEnEuSwgJ5aQExuqT3CcywJ0Ygk6sQGd4DiXBezEEnZiPQqBcS4LyIkl5MSeyQnallkATiwBJ9ZzEDwRATaxBJtYT0ESazGgJpZQExtO6sLbMgBNLIEmNkATvC0DzMQSZmJ1z2HCFkATS6CJDdAEx7ksgCaWQBObhiYWQBNLoInV6ZMzLWAmljATq3vQnQXMxBJmYrVJx7ksYCaWMBOr0x4IiIklxMRql45zWcBMLGEmVqePzrQAmViCTGxAJjjOZQEysQSZWNPngwCZWIJMbEAmOM5lATKxBJnYgExwnMsCZGIJMrHhqC4c57IAmViCTGxAJjjOZQEysQSZ2IBMcJzLAmRiCTKxJu2GAJhYAkys6VkIAS+xhJfYwEtwnMsCXmIJL7FmmY5zWUBMLCEmNhATHOeyAJlYgkxsqDvBcS4LoIkl0MSGuhMc57KAmlhCTaxV6TiXBdjEEmxibbIU1AJqYgk1sR6CJOJcFlATS6iJtT2pNBZQE0uoibV9b8iAm1jCTazN0nEuC8CJJeDEeg6SiHNZAE4sASfWJXNpLMAmlmAT69L1yBZwE0u4iQ3cBG+oADaxBJvY9GFdFlATS6iJden6OwugiSXQxHoGkthQAWZiCTOxgZngDRVAJpYgE+v6HBAgE0uQiXXBAWFOowXIxBJkYsNZXYkYD0AmliATm6UdEAATS4CJPX/iBL/eA2RiCTKxWV+oEDATS5iJzVRPkAgwE0uYiQ0fOUkEiQAzsYSZ2Kznc08WMBNLmIkNzCQRJALMxBJmYrOe5zFAJpYgExsqThJBIoBMLEEmNo1MLEAmliATu+yLFAJkYgkysUvREyQCyMQSZGLDV+MTQSKATCxBJjbUmySCRACZWIJM7DL9NAbAxBJgYkO5SSJIBJCJJcjEhnqTRJAIMBNLmIkNzCQRJALQxBJoYkPBSSJIBLCJJdjEhoKTRJAIcBNLuIkLBSc4SOQAOHEEnLgATnCQyAFy4gg5caHgBAeJHCAnjpATFwpOcJDIAXLiCDlxoeIEB4kcICeOkBMXyAkOEjlAThwhJ86DEBgkcoCbOMJN3CLN7hzAJo5gE7dIsjsHoIkj0MQt0uzOAWriCDVxIs3uHIAmjkATJ9LszgFm4ggzcaLngewAM3GEmbhQaoKDRA4wE0eYiRPJldABYuIIMXE9xMQBYuIIMXHh6yapAQAOSIiJC+d14SCRA8zEEWbiRNoDATFxhJi4QExwkMgBYuIIMXEy/YUdB4CJI8DEBWCCg0QOABNHgImTfT4IkIkjyMQFZIKDRA4gE0eQiQvIBAeJHEAmjiATd/68CYwPOIBMHEEmLiATHCRyAJk4gkxcQCY4SOQAMnEEmTiZdkMATBwBJk72LISAlzjCS1zgJThI5AAvcYSXuMBLcJDIAV7iCC9xgZfgIJEDvMQRXuICL8FBIgd4iSO8xCmdDhI5QEwcISZOmXSQyAFk4ggycWlk4gAycQSZOI9AEkEiB5iJI8zE9VWaOABNHIEmTvXktjpATRyhJk4v0kEiB6iJI9TEaZEOEjlATRyhJi5NTRygJo5QE6fTua0OUBNHqIkLlSZ4QwWgiSPQxOlkLpcDyMQRZOJ0+hRXB5iJI8zEhSoTvKECyMQRZOJCmQneUAFk4ggycbrPAQEycQSZOBMcENaLOYBMHEEmzhMQjT/s7gAycQSZOJN2QABMHAEmzvRgYweAiSPAxJ2BCX6cA2DiCDBxfTUmDgATR4CJCzUmeA4AYuIIMXEmmUXjADBxBJi4no/CO8BLHOElLpzShecAwCWO4BJ3LjCBcwDQEkdoiQvfNknMAUBLHKEl7kxL8JMU0BJHaIkLtETAkkcHaIkjtMSFIhMc4HGAlzjCS5zteS8BuMQRXOJs33sJwCWO4BKXLjJxAJY4Aktc3yFdDsASR2CJSx/S5QAqcQSVuFBjgo8edQCWOAJLnAvLICxed4CWOEJLXKAlOEzqAC5xBJe4NC5xAJc4gktc+LYJDpM6wEsc4SUuHNGFw6QOABNHgInzACQRJnWAmDhCTJxz6Wi9A8TEEWLizsQERusdICaOEBN3/roJ3lACYuIIMXGhyARH6x1gJo4wE5cFP4RnIDjATBxhJi4c0pVYigAzcYSZuCydR+MAMnEEmbisJ4/GAWTiCDJx6c+bOABMHAEmLuv50JMDwMQRYOKy9FIIeIkjvMQFXpJYigAvcYSXuHBCV2IlAcTEEWLilkls5wAvcYSXuGUPtnOAlzjCS1w4nyuxkgBe4ggvcR5/pFYSwEsc4SXuXGKCVxJATBwhJi583CSxkgBi4ggxccue/AUHiIkjxMSdiQleSQAxcYSYOA9AtIBlEg4QE0eIiVumH8mAlzjCS7JFOlCYAVySEVyShW/Cww8xZ4CWZISWZB5+aHwifQZoSUZoSbZIPpAzwEoywkoyjz40Pk8+A6wkI6wkWyTXwQyQkoyQkizUmAh4plIGWElGWEm2SK6DGUAlGUEl2SL4H0xfyAAsyQgsydIVJhlgJRlhJZlnHxqf5Z4BWJIRWJKdYQl6rcsALMkILMlE8sU4A6gkI6gk6/kSfAZISUZISRZICXytywAqyQgqycKZXPC1LgOoJCOoJOtDJRlAJRlBJVlAJXgnkwFUkhFUknn2ofFJ9hmAJfXf/vHkUbn9XOyPxfrFdl388eiH339/9P798etd8ejJPx+9L8MfzROv59EP/3xkHv3wz/958igL/xGL83/1+b/2/N/z7/L8u5Tn/57bybMYdf5difN/z9crF/6rz9fp83X6/Ls+yzfn6825nTm3M+d25tzOntvZczt7bmfP7dz5d3f+3Z1/d/XvdX/s2VCZnVtWH5IO/6htVbWx1cdxz/+ou2tV/Q9Xd7T+S1Y3zs6Nq+/HhH+ouvd1t6vzw8/jsawH4HyVqYfU6GZMXD0oov5H/RdX/yVr/lELXNYCl80Ynn+qipvOo1kPZ33frG4GuP5LfStsM+b1YNu671U61fkftYplfQMWZ+2udjFX+1ZFWsI/au1ON7fvbLyrHaMKJZ3vaPOPsy5Xm+Hqka82uuEfy9ovlufG1bPv/I96Jixc/Y+6jfBK/+dJPQXDn+vJ53+rZmO+WhXb43sRzzQpFvdzTZpRgmRbkIgFqTGCVFuQjAVprqDdfl3utuVqt42lZdFSIqQdKexY3HYE2ligYwo8lm0pOjIr445VJaRcx2Kqs9MbOTr4OVfQ9u503H34z2J1PLQsc5FlZoTAlhQXD3s9k6Qb09PP+b7MP2yKT+WW9DmL+8y9pbFI+ripDn2+F5llPJHrdVtqy4nj+7LkylvdlJtWX+0yGsYF09nW69vdutjk2/XdfndX7I9l0bo3Muosd56u14fVTXGbe8ktYdF0CI+fYWEfj8V+tS/yY3vI4jGTjnkTKlnrYlNQWTaWxbwBm2qs6HR38XRnGrXZ7L4U69WmXH063ux3p+ubyolbN6HK+LsfOF0/hur9SpXlN0JV8cex2B7oJKwS4u511FuVqkDy/Khj3q+gwy8YbfEqFm/qR3P9CFs0j0LmMhL0gKGKfazeklTVtuehGiX+cLcpjx9Ox+NuCzRlcY+aPVzdtSVzBp41HfNj8an42p58Rt+rUJK5YgeB1bJFbrCO7a03PvXm1i2YszuI/5xvTu1l0S3ilWKER37c7W/z47HcXrfNjeXVOyUr693dkjtPN7sv56XtqxfX0iFiHbWPNFu3xYgR3xebvPNkqxJlIwWiVlAP/pK5RtyVn4v9gWwLVLxdMfUWsqoHPlvP3A3t9/nX9jNzGT8zmW5MfC2ehc17jqr3sotmB8x0usOhvN62n0vRkqhqDcoyV6nT8abYHstVfixOh2J/OBZ3uzu675KxCyruhuledLnb3u13H8v2015HQ5MxbxGS2d7cydiVlWMPw+59uV3tC//n1iYn9oElu+u71e72rnrAdh6NWfxoZM7dz/kx33ckxdscxbPsQ776dL3fnbbr1W6z27cGTkUPJrnk+eOHfL+6ybsbgOUito13Ez7kh2K1234sr0/7vLP1F1FvM8Ht7aG42xcf8w/l9ljsuy8U1Ydy7++u4D0SP+SHkjydYpfjSik+7vZFd0MXP7bFBFn5/rr9ZhJ1kCnsePwaRq29lEWSLG8t/LDJV59aI7WId6uaKWW32xR5e0FaRns0VccBdB3/qT7QMkLy++KPu31x6DxW9CKe+ryX/A+7/brYg8ml48nFvBNe1j5fl6e2v6l4FJkbuSDscPxKXrlUvOdn7p+DrC/l+njTluViWdy7+8fhJl/vvrQlZbEk3ubgw77I16v96fZDZzUS8WrEvJH30kA8I/Y/oZhr5ancrP0NWBcfy23Zecra6LYq7qLp9+TVkn7XCgVHd4LrIPeSOr1VcW+ZzuvFdSTpWNIYwzb5h/Y7dJWne7+1qkOAVd32OdzI879VfltsjrvDNv9UrPJDa3LEMTXBFbc/BzgOnb7H0R3me0ElbrXbHv2mh4iLHxTszu7XN0W+LjqbiWX8xq54E66S1pETb28Ub3tTybkt1mXeERbvcDTvmV/tZK93+9ZGPt4iC8Ec+Zti9enD7g84IcQi3t9o3lStJXaFxcuT5i1PPuh1KDbF6th+0ujoBmTcrpagh7Hva94Kt9rstsXhuD+tjqd9+zETb0OYvrrZtWdjdBOZEnabanzoY13Fj3VmlKvzQNfxdvS8/5A1flDMJXe125xut7I79vF6q3nrbZClurLiFVePsasrKl7ANNO3drd3+T4nTlpR3ChGcn4bNg17WtQBAlWH+BrEJ+owTR3ScjU1zJi75cqk3Za850U+UZO5mt5Z1VAufp+9AoIdRBwvV/VzqoGazAh6I/3QvjnxussUtF13NiFVesH9namDnqYeY7Nsoit1eK+BsTVhczVZdXVsLRPMFbK2KN90nS9+3HGXkNTbpIpJi2kgqKzdblnHZ2qPdDVIzrj7gN32mJfb7oNWLOKHkebec78FaK+o0Qqk6lmhmLvb87tid3GMwxOmQcANqOX23ov3r3+b8kDi39EyznRUL62KjnYHM95uMJFREFeHQtu2xc5vG1peLzncidVS0CFx8QjobIzNpxNZUaI5YccI+rLP7+6K9pIcuZNjLqSnw3F3246nRBZp7nB5MV1GFkdCVB3VVfWMVMwOr/PtdbunMn4kSuZzbJ3vSSQjfm9mTuN1fsxb7hu/L9cdrDNNuN075s1a054a8ebZ8DbPlTQ6YUXr0cKklZWgI8W7Ik52EMysiUbSh936a1tavENlxs8baWGL05YX77qYGRSNvOqtqi0t3ncxWV4jbd8OhwgR77wM12OPeQfZx5EQ45rkn3qBq+mg43efpASIeG07Pz40M5hcSUvG4mLBzPiZl3csCepSMjZR1Cay71AQmbQzls4Mp1VC78rVJ7BZEPGux/AevpW4ysSUyHj/YZgLV7Eqb/NNexxVPI51BiAz6ncWmBzFWDYz/HcW6YF7t9PxPsEwl9YmSlctiV2R8fpqmeurz7nYFz5TigqU8TrL5Hfr4q7Yrg9k+OLopHH1jr1JspPM6VMcVsV2nZM3DSnjlLV6kyQdX+i+7BDGGMkLtn3HvNx8Losv3aGMHzSW+aAp883uuisqfspY5kJWHqpVvM0lTeSCqs5YMTWysDV0d5K5EpWHu03+1ZvcipLEXrRgTp19/gWsFDJ+IFrmTdnv7ta7Ly1Bcc+5S2KVolCu4J4/jiUJyxytIM8/XLsC46erHWXgsdwUnUCviPOoBJOVFbd5uXmfr9fVetheDOPYGTPbw0vDS2GcyCYsz0GK7fpuV7ZfQE3kaFmddsC8vbU8gu7j2IPS9e6h+QcT5hf7fTvaFC/+sskDPwvlLdzFZ/r6HZMMxcwL8FJIVmGcWcEMaxR/3OXbdUFeBeOIBjPDlmZkqDjB1jCTfnwKBva0+KHLfF37WG6O7RcZGy/Ai7oSgbnPCOK6lsXPbmY+y8fdimDYGLIpyXs0fNyRWRQ9qbImfMyblZWsj/ltuWm9F8n4TV5xb+JuezyU/01i9rFvMtMevaAOZI5372rBex5Xkr4U5fUNCXvF5J+ZqgcfIzEGEMyl5eNpC3JI4vWZ+cS9LrbFPj8WidiHilmhyep8PNOUUvDu6nVxvMuvC0bWVDwYzO3xWXgnlTC61cxN7PVm94G8XMRBUi14W4/rfdndVMfmCMfzvJtic1fs2+H1VuSCJ6Vcr4stXhlVCyzznPimXBflx9ZWL94IMatZbna7dhwrDnmqjOdXN7t9+d9V0GmzP4H9VPxmKJjvBTe7zyRKZ+Lwn2T27njbJQdx6o1ghjbLDzl5I43zOJlrYSUkcf/jHSezGIMKsZFL1uBR1MVogvkWUQntWhdvX5lpr2Qn19py1eV8suYJsl7RVM33dJ0JrJu/uKYwrl7+6jJGW9eW2awBNjVEa0oCmSlg5W1+TfZAMQNgPqu8lFW+350OBXDAeMfNLNHwEruS4h0VE10HSdgN420Qc+6X29XmtO6aFm8WRMYc/O3HXTuoHhexMcF3ub0p9mU7ZB1nocj6/cHUFMvW9a52WYdEGrzMDFV2yjpknI2rmMVpVVYqgRMqXq10PU8Mc6NzFpgMq8Vwj5kVn8ycjUN0zCKrSJbPCziWH8pNSRhcnA2jR/T7LDhkr9PAt4wD34qZFwOlHnfrts/GvqaYkelIcmubEefZC2aZSySrE+6PMzY0c4dQbj/nG/piHr8JMOtB/5NGJeOHnmYm/P/nl2O7oELGkULFfHR+Ktou5uL4aJNiUtdi2Lry0mZNXXlTYMxz9E/F1y+7fbtMKq6AEYL3FKDsWMblJKpJd2bGrDoplDIOOcs6c1I2T976oWzq6nmzrB+4i3qMRP10bnB5U59dX+VcXTvHDA95Q7tPmHgPnvGceZN/3Z2Ooisr3oAzV+sgq5utFcMKwfTrIEsp1U3YisN9gllLfBZngbR4p8lc94I0rXVXWrwzzHhz4Swt6wqLt0XM5KcgzNqusHhnxEyqCMIy0M14qjJje5vi4/Em364P5br95IkXG8VMUdkUx2OxP9zlK1IMKGNnU8xH+KYTRInTZiQzN2BTbosbEI+J1+MF013L7ad2+NLGc4j5ehWkhCfz3X63Pq3aWykdw9OMPVaV0LuqpKkdkrDxtGS+FrSE9Rkanx7ATDKsZHcr9eJdOPPNrZOgFXu/Yd/RwxHVSYiYEgjmO1kl7Et5vKkyGLoC46cAsyhns8vXZCLFvlE/5uqCUWb6+2a3ykmcM86iV8xXiYrgbWGE0sQPKb60HXjTM/H8Ym5Sb/NPhS8G69awR4YxkWgj7HRX5Sd0RUYGMpleJfJuX9zl+3MiY6f0Ld7eZMwt122+za+LcMTH56q2uy0yTvw3Nfay9YFBjlnS4qsdusk58ckA9Z7J1icQOOa+u5J9um0v93GeGfMRdFvcfiBBUGXjIBjzWIfbYnvqumO8mDJTb7wguMTEWxzmDvO23J6O5FiAeKkyzFX4LCf1wh0vVob5kny7W5NgeIwaTXMIU310hGPCvg5kiImhYL5o12ek1EX+LXnx5pD5uPXy2i+bcU7reT1mZtd4Yfviv07lnsDRuFbKZPWrS53g75i1drenzbF834Gm8TJtmPwniOoGH+N12iyYM7WSVe3OujMjviPMV1cvLRQWdeXFO3YmpKR8KD4sRNRHlElXH71Wx3hV/RKu6mCvajJj64PE9KKB+HXQWDRh5Dqxrzmjro7+6boqQd+fr1aH2ZZNyne9srsmNbIOAdTh6IyJVrf55w/d4n0RJ8UIZlbHNv+MV8Boxyb5ZlWvKsi0ONojmZvx7al6XLTIdmRUXTWimK95QRoOWsfcQzI34rsPyJ3jzALJXADDxqD9gheX7ZpmzaqDM3U4xDAPLdhtwxapHaiJn+DMSP3urtjeIYoQv2xJ5kLdfdWIl70av5h6C23qHZGtMzasaqZUU0zSTKm6cqhekTMm8g1WnUs+6YFdceaetM1Kw3uwtyS3o4fxm6Bh5ioGce0HnY4T2B0zA6HvLTI+HY87Mby4fdHiytVR3/c9rKtfrGgCfE1cr8YnzIBL0EbuUuyM9aSRddKqqrUr13BB5kStjigo1jB1N76DkvmGuzsdKfKJDzlRzMBfhbm/7EsyvePHvqoZbsZceu/yNX27lXHYTzH3sndkMyLjXZNivmr7BYeUPcYn6DDfrSsx6IRAF7/9M/dHd/kWRJPj3a9kj9AdSCaL972SucmvamKv9/ndTVdavNIzd5OVtNuC5M2puAJF16ex6bqkUzMrBRvZYfJWcZmmApWuG3FQRTNzlIB86j8xaWSut0Aq8sy4Eo95IgOU3D4HRcUrsWa+njVy2y+lMRHXNaHSosmNrbe5zAojENiMn5JjZNCMj3gWMFPI7vLDoeJkbcQVr4Wu2Txx18IgMbF1jMPe7NWDHHITPxxVXVOhmdGQu3V7xsSBEMMEtHfF/rY8dM+tjB9Hps6DsfUhmU4yR/Bmty3ed7fzKg6zGGZppxeWuBfxOwtza3xXFvC0MRFnUUuuq2zyVXGz26xpHWyc/1Nv3m1dAO+4y6Y/QKslOHKbcFFdtC24o+lldnMxZPwEUswQZCwMnSoY50swy1tjkaHOOHGcYBwDUNy1IhIeyqhSwuNEHGYoORZeiW0vSPFeiglVYoHhdS5lbYzPmEWsQTg8xkLGxTGSmXNP5CGq1CoOZ05WJPUDOWFJxX5mmKcYEcmddHMd73wcM051FurzsVM5T3FZmWaeiRPkhhTnpNz4IT/KCZIS4z0Ts3SrIxFvK2OoopmnFQXRMbCljqDjLHrLDMYEsWhPE+/AJLNuNkjbFx+LfbFdtV+FYo+SzAJscIZinFcwZuTQq5Bqnak0aqFLHxIfb+CZmdtBJDhRQsYvfpLJCVvSYodpT/BoIrq5knvOHI1pOvPkA6CmlQDQVhBNU8dMmm0hz/aDKlpK2e5Qyepms8YpANzZU64Iy2gdcs91pnKVrK2P8YNhVmF4gXgHGj96JHs6lrd5Ox4o4lPqJPMsuLv97rrqIgq/xwlDkr01hN8siE1TTMiADsaJgxKieQtlkobkQTjRGs2sQ707HW6OO7DW6Dgd2dSfpbHNx2OYt+W/TkX75sr4PCTFTDqsTmzd4fMvRfz2KJmTolqZtt3K9HjrKJnToTrUdLclBYMxUVHMcMW+Oaq5NenjN2zBjKqF4xDaySDxc4iZtUiCUbJ1uI5tKk+ag7KaCHONFesvF6g640LVhSuqzm1VdcRb11RS11RS1xBDmyYtt/kkU4M+an+sf3L8zu32n+mnBmRc3SaZ2VX74nDatFf7+K4p5hmB+3J18/5Y/NHO4omppmGetFlJqgQV6/K4A8thvJXjitx9SZxhGB8qJZmnme133RMm4iNFJTO1qJJzLNoHZsVhEMN8dT/kn1tuEB+vwBNQTd41eY7JOLVJMjf2IVGg2ksGMEoy7XUcvjTLJlW89n5m9X3QQs/TiF/LmcGtRF5DHI+QgjuG4EU5rvRiAr3Dze4LKeuM0/6YkbEg5bhvrw/xw0Yww2Je0hZ9VknHaWRW1B8iqdNpXF2O4JgJXUFT4kGi4/PVbB0ps3VBlKsBoWMmM1bKdtvqdJJ2sC9er+pyD1t/gc813+lgniFTaamWMh+S6JwZq+LtmKlPjbX1U8YxT9Y+p21UCeddT473oswCIlr3H0+sespqJousZLW2oHGAm4kQD5vSH6FfH6JK+xgXSUnuxN/mq09osx1/LUQyq4wPu9N+VaROeY1jZbpOcNKyITZ19lEdmNf10YaameYW1HdOJFFxOoGuT3LTDaFgviYH6aRP8VbT6Kb0p/kMZD1fmtQO7q2uPvZEDtWIyyWYj/tKTLnqntEcLX/Ml+sgCWy0Yp9jJjEd/Klu1N/ilzvmmSGVIASeY1ImmWD0cNzTXIE47VjVZ5DoenkyzE1SEJx8dY9XPuZ2CR4kHs9XwZ383QBxHB9+dH4z4A5g+gMOcQaxYkYUiDx00m+crqKYWB2LpVFXGaeCKebXiLBokBgXlwlI9orQEu4XiHZmS/yuwmS4XijOmYpPy2dmW3hpMEwcVxVmTSIrd/583RT443dxnqJigubD6cNt/cW+7sIRRw6YJ0UcTh/gUXsxHZPMEoVaFspljStcJTMYcTitVuTUNBmXkUsmqzl8KY+rG7TSxm97zDtwzDvfoRFxNEkyp1v3GN34qAHJXA+O+YfuOXVxxoBkJsEf8/11cUwecR/DIdkkp9SbH+aBQEFHeL3y0loqYghXf9pa10fYauZO/Vjc3m3o6bVZK+zdfCO7ftVgvhnSoEicTl1/pduMkJV6psZyDXOvX8mr4EHXFeLpwsxxqIStq+Bdh5zIuFBYMXPiKnE4Uh+fZyqZX1uqpB33+fZQlda1bYuL9Jhr/vGmuO2+0MW1r/UJuJJ5cPe9REwcZevQQt4a3TnrOI7sGuZuqefo4HinKJlvq8fyCI6IikuaJDPsddxdX7dXwjhtlhn99C5RMS+yx4pJnGTSM1rAF+/HRf0CJutwsKxPrpd1TYmsAw6yOflPNDUuTWlL/b5Yx0B0/f6l6zi1qYtdTHPUjW3y8OsFp/ZPU58VZUXz7eE6EtGctNR8Q7VJI6tfB1xdauNEU3/WQJb6uIzmnLrmY1x13CZj8qzTtn2ij4qDk5qZ3H7a9iWBx0fsSWbyZ0jlgcW6cbK0ZCaynPbtQr94o2eYwYjTPnHOa5zHJplp16fDmSuX8NtSrTwV5o08FKvTvppu3fzb1oH7vFUzFgeyUFtpGrwF4XQozkWIsMfxZmOcwA5LbOWksEfvXNQYyi27fDJ+4+StWqdDsS2+7E9b+rSQMYtQzO9inOovrMLRi7OQ2NbVvLg7gPG+l+0ve7qDlHEMRjGzXLpnIsUhDcV8ieoGluJMC3n/IbGmnqpe4uuV1NRI2zSp0fUhZnbR/KNZ0JsP+DQ1r813Epslvv5H/YRwovlHvaDLJkTdrPUNyaxjfzUjdTUQyJjROz8oAQK0k5HiM0CZ5zZ6WeviY04Qp45PwrJMMO2FEays46NTLPMwP5S+FWfHMBlGLaZ9ZFhMi5jPjM874svxs1Axd1Jf8v2WhhLjLAzJnPFfbmg1VBxBl8y0K5ATEkcKWTL+u7xb7dZkBx3nlXBW7X88eXRX3hVVPfajH37/x//8z/8PZdGQ6tMaAwA="; \ No newline at end of file diff --git a/docs/assets/style.css b/docs/assets/style.css index a16ed029..9d619a64 100644 --- a/docs/assets/style.css +++ b/docs/assets/style.css @@ -1,155 +1,277 @@ -@import url("./icons.css"); - :root { /* Light */ - --light-color-background: #fcfcfc; - --light-color-secondary-background: #fff; + --light-color-background: #f2f4f8; + --light-color-background-secondary: #eff0f1; + --light-color-warning-text: #222; + --light-color-background-warning: #e6e600; + --light-color-icon-background: var(--light-color-background); + --light-color-accent: #c5c7c9; + --light-color-active-menu-item: var(--light-color-accent); --light-color-text: #222; - --light-color-text-aside: #707070; - --light-color-link: #4da6ff; - --light-color-menu-divider: #eee; - --light-color-menu-divider-focus: #000; - --light-color-menu-label: #707070; - --light-color-panel: var(--light-color-secondary-background); - --light-color-panel-divider: #eee; - --light-color-comment-tag: #707070; - --light-color-comment-tag-text: #fff; - --light-color-ts: #9600ff; - --light-color-ts-interface: #647f1b; - --light-color-ts-enum: #937210; - --light-color-ts-class: #0672de; - --light-color-ts-private: #707070; - --light-color-toolbar: #fff; - --light-color-toolbar-text: #333; - --light-icon-filter: invert(0); + --light-color-text-aside: #6e6e6e; + --light-color-link: #1f70c2; + --light-color-focus-outline: #3584e4; + + --light-color-ts-keyword: #056bd6; + --light-color-ts-project: #b111c9; + --light-color-ts-module: var(--light-color-ts-project); + --light-color-ts-namespace: var(--light-color-ts-project); + --light-color-ts-enum: #7e6f15; + --light-color-ts-enum-member: var(--light-color-ts-enum); + --light-color-ts-variable: #4760ec; + --light-color-ts-function: #572be7; + --light-color-ts-class: #1f70c2; + --light-color-ts-interface: #108024; + --light-color-ts-constructor: var(--light-color-ts-class); + --light-color-ts-property: var(--light-color-ts-variable); + --light-color-ts-method: var(--light-color-ts-function); + --light-color-ts-call-signature: var(--light-color-ts-method); + --light-color-ts-index-signature: var(--light-color-ts-property); + --light-color-ts-constructor-signature: var(--light-color-ts-constructor); + --light-color-ts-parameter: var(--light-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --light-color-ts-type-parameter: #a55c0e; + --light-color-ts-accessor: var(--light-color-ts-property); + --light-color-ts-get-signature: var(--light-color-ts-accessor); + --light-color-ts-set-signature: var(--light-color-ts-accessor); + --light-color-ts-type-alias: #d51270; + /* reference not included as links will be colored with the kind that it points to */ + --light-color-document: #000000; + --light-external-icon: url("data:image/svg+xml;utf8,"); + --light-color-scheme: light; /* Dark */ - --dark-color-background: #36393f; - --dark-color-secondary-background: #2f3136; - --dark-color-text: #ffffff; - --dark-color-text-aside: #e6e4e4; + --dark-color-background: #2b2e33; + --dark-color-background-secondary: #1e2024; + --dark-color-background-warning: #bebe00; + --dark-color-warning-text: #222; + --dark-color-icon-background: var(--dark-color-background-secondary); + --dark-color-accent: #9096a2; + --dark-color-active-menu-item: #5d5d6a; + --dark-color-text: #f5f5f5; + --dark-color-text-aside: #dddddd; --dark-color-link: #00aff4; - --dark-color-menu-divider: #eee; - --dark-color-menu-divider-focus: #000; - --dark-color-menu-label: #707070; - --dark-color-panel: var(--dark-color-secondary-background); - --dark-color-panel-divider: #818181; - --dark-color-comment-tag: #dcddde; - --dark-color-comment-tag-text: #2f3136; - --dark-color-ts: #c97dff; - --dark-color-ts-interface: #9cbe3c; - --dark-color-ts-enum: #d6ab29; - --dark-color-ts-class: #3695f3; - --dark-color-ts-private: #e2e2e2; - --dark-color-toolbar: #34373c; - --dark-color-toolbar-text: #ffffff; - --dark-icon-filter: invert(1); + --dark-color-focus-outline: #4c97f2; + + --dark-color-ts-keyword: #3399ff; + --dark-color-ts-project: #e358ff; + --dark-color-ts-module: var(--dark-color-ts-project); + --dark-color-ts-namespace: var(--dark-color-ts-project); + --dark-color-ts-enum: #f4d93e; + --dark-color-ts-enum-member: var(--dark-color-ts-enum); + --dark-color-ts-variable: #798dff; + --dark-color-ts-function: #a280ff; + --dark-color-ts-class: #8ac4ff; + --dark-color-ts-interface: #6cff87; + --dark-color-ts-constructor: var(--dark-color-ts-class); + --dark-color-ts-property: var(--dark-color-ts-variable); + --dark-color-ts-method: var(--dark-color-ts-function); + --dark-color-ts-call-signature: var(--dark-color-ts-method); + --dark-color-ts-index-signature: var(--dark-color-ts-property); + --dark-color-ts-constructor-signature: var(--dark-color-ts-constructor); + --dark-color-ts-parameter: var(--dark-color-ts-variable); + /* type literal not included as links will never be generated to it */ + --dark-color-ts-type-parameter: #e07d13; + --dark-color-ts-accessor: var(--dark-color-ts-property); + --dark-color-ts-get-signature: var(--dark-color-ts-accessor); + --dark-color-ts-set-signature: var(--dark-color-ts-accessor); + --dark-color-ts-type-alias: #ff6492; + /* reference not included as links will be colored with the kind that it points to */ + --dark-color-document: #ffffff; + --dark-external-icon: url("data:image/svg+xml;utf8,"); + --dark-color-scheme: dark; } @media (prefers-color-scheme: light) { :root { --color-background: var(--light-color-background); - --color-secondary-background: var(--light-color-secondary-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); --color-text: var(--light-color-text); --color-text-aside: var(--light-color-text-aside); --color-link: var(--light-color-link); - --color-menu-divider: var(--light-color-menu-divider); - --color-menu-divider-focus: var(--light-color-menu-divider-focus); - --color-menu-label: var(--light-color-menu-label); - --color-panel: var(--light-color-panel); - --color-panel-divider: var(--light-color-panel-divider); - --color-comment-tag: var(--light-color-comment-tag); - --color-comment-tag-text: var(--light-color-comment-tag-text); - --color-ts: var(--light-color-ts); - --color-ts-interface: var(--light-color-ts-interface); + --color-focus-outline: var(--light-color-focus-outline); + + --color-ts-keyword: var(--light-color-ts-keyword); + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); --color-ts-class: var(--light-color-ts-class); - --color-ts-private: var(--light-color-ts-private); - --color-toolbar: var(--light-color-toolbar); - --color-toolbar-text: var(--light-color-toolbar-text); - --icon-filter: var(--light-icon-filter); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + --color-document: var(--light-color-document); + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); } } @media (prefers-color-scheme: dark) { :root { --color-background: var(--dark-color-background); - --color-secondary-background: var(--dark-color-secondary-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); --color-text: var(--dark-color-text); --color-text-aside: var(--dark-color-text-aside); --color-link: var(--dark-color-link); - --color-menu-divider: var(--dark-color-menu-divider); - --color-menu-divider-focus: var(--dark-color-menu-divider-focus); - --color-menu-label: var(--dark-color-menu-label); - --color-panel: var(--dark-color-panel); - --color-panel-divider: var(--dark-color-panel-divider); - --color-comment-tag: var(--dark-color-comment-tag); - --color-comment-tag-text: var(--dark-color-comment-tag-text); - --color-ts: var(--dark-color-ts); - --color-ts-interface: var(--dark-color-ts-interface); + --color-focus-outline: var(--dark-color-focus-outline); + + --color-ts-keyword: var(--dark-color-ts-keyword); + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); --color-ts-class: var(--dark-color-ts-class); - --color-ts-private: var(--dark-color-ts-private); - --color-toolbar: var(--dark-color-toolbar); - --color-toolbar-text: var(--dark-color-toolbar-text); - --icon-filter: var(--dark-icon-filter); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + --color-document: var(--dark-color-document); + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); } } +html { + color-scheme: var(--color-scheme); +} + body { margin: 0; } -body.light { +:root[data-theme="light"] { --color-background: var(--light-color-background); - --color-secondary-background: var(--light-color-secondary-background); + --color-background-secondary: var(--light-color-background-secondary); + --color-background-warning: var(--light-color-background-warning); + --color-warning-text: var(--light-color-warning-text); + --color-icon-background: var(--light-color-icon-background); + --color-accent: var(--light-color-accent); + --color-active-menu-item: var(--light-color-active-menu-item); --color-text: var(--light-color-text); --color-text-aside: var(--light-color-text-aside); --color-link: var(--light-color-link); - --color-menu-divider: var(--light-color-menu-divider); - --color-menu-divider-focus: var(--light-color-menu-divider-focus); - --color-menu-label: var(--light-color-menu-label); - --color-panel: var(--light-color-panel); - --color-panel-divider: var(--light-color-panel-divider); - --color-comment-tag: var(--light-color-comment-tag); - --color-comment-tag-text: var(--light-color-comment-tag-text); - --color-ts: var(--light-color-ts); - --color-ts-interface: var(--light-color-ts-interface); + --color-focus-outline: var(--light-color-focus-outline); + + --color-ts-keyword: var(--light-color-ts-keyword); + --color-ts-module: var(--light-color-ts-module); + --color-ts-namespace: var(--light-color-ts-namespace); --color-ts-enum: var(--light-color-ts-enum); + --color-ts-enum-member: var(--light-color-ts-enum-member); + --color-ts-variable: var(--light-color-ts-variable); + --color-ts-function: var(--light-color-ts-function); --color-ts-class: var(--light-color-ts-class); - --color-ts-private: var(--light-color-ts-private); - --color-toolbar: var(--light-color-toolbar); - --color-toolbar-text: var(--light-color-toolbar-text); - --icon-filter: var(--light-icon-filter); + --color-ts-interface: var(--light-color-ts-interface); + --color-ts-constructor: var(--light-color-ts-constructor); + --color-ts-property: var(--light-color-ts-property); + --color-ts-method: var(--light-color-ts-method); + --color-ts-call-signature: var(--light-color-ts-call-signature); + --color-ts-index-signature: var(--light-color-ts-index-signature); + --color-ts-constructor-signature: var( + --light-color-ts-constructor-signature + ); + --color-ts-parameter: var(--light-color-ts-parameter); + --color-ts-type-parameter: var(--light-color-ts-type-parameter); + --color-ts-accessor: var(--light-color-ts-accessor); + --color-ts-get-signature: var(--light-color-ts-get-signature); + --color-ts-set-signature: var(--light-color-ts-set-signature); + --color-ts-type-alias: var(--light-color-ts-type-alias); + --color-document: var(--light-color-document); + --external-icon: var(--light-external-icon); + --color-scheme: var(--light-color-scheme); } -body.dark { +:root[data-theme="dark"] { --color-background: var(--dark-color-background); - --color-secondary-background: var(--dark-color-secondary-background); + --color-background-secondary: var(--dark-color-background-secondary); + --color-background-warning: var(--dark-color-background-warning); + --color-warning-text: var(--dark-color-warning-text); + --color-icon-background: var(--dark-color-icon-background); + --color-accent: var(--dark-color-accent); + --color-active-menu-item: var(--dark-color-active-menu-item); --color-text: var(--dark-color-text); --color-text-aside: var(--dark-color-text-aside); --color-link: var(--dark-color-link); - --color-menu-divider: var(--dark-color-menu-divider); - --color-menu-divider-focus: var(--dark-color-menu-divider-focus); - --color-menu-label: var(--dark-color-menu-label); - --color-panel: var(--dark-color-panel); - --color-panel-divider: var(--dark-color-panel-divider); - --color-comment-tag: var(--dark-color-comment-tag); - --color-comment-tag-text: var(--dark-color-comment-tag-text); - --color-ts: var(--dark-color-ts); - --color-ts-interface: var(--dark-color-ts-interface); + --color-focus-outline: var(--dark-color-focus-outline); + + --color-ts-keyword: var(--dark-color-ts-keyword); + --color-ts-module: var(--dark-color-ts-module); + --color-ts-namespace: var(--dark-color-ts-namespace); --color-ts-enum: var(--dark-color-ts-enum); + --color-ts-enum-member: var(--dark-color-ts-enum-member); + --color-ts-variable: var(--dark-color-ts-variable); + --color-ts-function: var(--dark-color-ts-function); --color-ts-class: var(--dark-color-ts-class); - --color-ts-private: var(--dark-color-ts-private); - --color-toolbar: var(--dark-color-toolbar); - --color-toolbar-text: var(--dark-color-toolbar-text); - --icon-filter: var(--dark-icon-filter); + --color-ts-interface: var(--dark-color-ts-interface); + --color-ts-constructor: var(--dark-color-ts-constructor); + --color-ts-property: var(--dark-color-ts-property); + --color-ts-method: var(--dark-color-ts-method); + --color-ts-call-signature: var(--dark-color-ts-call-signature); + --color-ts-index-signature: var(--dark-color-ts-index-signature); + --color-ts-constructor-signature: var( + --dark-color-ts-constructor-signature + ); + --color-ts-parameter: var(--dark-color-ts-parameter); + --color-ts-type-parameter: var(--dark-color-ts-type-parameter); + --color-ts-accessor: var(--dark-color-ts-accessor); + --color-ts-get-signature: var(--dark-color-ts-get-signature); + --color-ts-set-signature: var(--dark-color-ts-set-signature); + --color-ts-type-alias: var(--dark-color-ts-type-alias); + --color-document: var(--dark-color-document); + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); +} + +*:focus-visible, +.tsd-accordion-summary:focus-visible svg { + outline: 2px solid var(--color-focus-outline); +} + +.always-visible, +.always-visible .tsd-signatures { + display: inherit !important; } h1, @@ -162,40 +284,33 @@ h6 { } h1 { - font-size: 2em; - margin: 0.67em 0; + font-size: 1.875rem; + margin: 0.67rem 0; } h2 { - font-size: 1.5em; - margin: 0.83em 0; + font-size: 1.5rem; + margin: 0.83rem 0; } h3 { - font-size: 1.17em; - margin: 1em 0; + font-size: 1.25rem; + margin: 1rem 0; } -h4, -.tsd-index-panel h3 { - font-size: 1em; - margin: 1.33em 0; +h4 { + font-size: 1.05rem; + margin: 1.33rem 0; } h5 { - font-size: 0.83em; - margin: 1.67em 0; + font-size: 1rem; + margin: 1.5rem 0; } h6 { - font-size: 0.67em; - margin: 2.33em 0; -} - -pre { - white-space: pre; - white-space: pre-wrap; - word-wrap: break-word; + font-size: 0.875rem; + margin: 2.33rem 0; } dl, @@ -210,74 +325,25 @@ dd { } .container { - max-width: 1200px; - margin: 0 auto; - padding: 0 40px; -} -@media (max-width: 640px) { - .container { - padding: 0 20px; - } -} - -.container-main { - padding-bottom: 200px; -} - -.row { - display: flex; - position: relative; - margin: 0 -10px; -} -.row:after { - visibility: hidden; - display: block; - content: ""; - clear: both; - height: 0; + max-width: 1700px; + padding: 0 2rem; } -.col-4, -.col-8 { - box-sizing: border-box; - float: left; - padding: 0 10px; -} - -.col-4 { - width: 33.3333333333%; +/* Footer */ +footer { + border-top: 1px solid var(--color-accent); + padding-top: 1rem; + padding-bottom: 1rem; + max-height: 3.5rem; } -.col-8 { - width: 66.6666666667%; +footer > p { + margin: 0 1em; } -ul.tsd-descriptions > li > :first-child, -.tsd-panel > :first-child, -.col-8 > :first-child, -.col-4 > :first-child, -ul.tsd-descriptions > li > :first-child > :first-child, -.tsd-panel > :first-child > :first-child, -.col-8 > :first-child > :first-child, -.col-4 > :first-child > :first-child, -ul.tsd-descriptions > li > :first-child > :first-child > :first-child, -.tsd-panel > :first-child > :first-child > :first-child, -.col-8 > :first-child > :first-child > :first-child, -.col-4 > :first-child > :first-child > :first-child { - margin-top: 0; -} -ul.tsd-descriptions > li > :last-child, -.tsd-panel > :last-child, -.col-8 > :last-child, -.col-4 > :last-child, -ul.tsd-descriptions > li > :last-child > :last-child, -.tsd-panel > :last-child > :last-child, -.col-8 > :last-child > :last-child, -.col-4 > :last-child > :last-child, -ul.tsd-descriptions > li > :last-child > :last-child > :last-child, -.tsd-panel > :last-child > :last-child > :last-child, -.col-8 > :last-child > :last-child > :last-child, -.col-4 > :last-child > :last-child > :last-child { - margin-bottom: 0; +.container-main { + margin: 0 auto; + /* toolbar, footer, margin */ + min-height: calc(100vh - 41px - 56px - 4rem); } @keyframes fade-in { @@ -320,22 +386,6 @@ ul.tsd-descriptions > li > :last-child > :last-child > :last-child, opacity: 0; } } -@keyframes shift-to-left { - from { - transform: translate(0, 0); - } - to { - transform: translate(-25%, 0); - } -} -@keyframes unshift-to-left { - from { - transform: translate(-25%, 0); - } - to { - transform: translate(0, 0); - } -} @keyframes pop-in-from-right { from { transform: translate(100%, 0); @@ -355,7 +405,8 @@ ul.tsd-descriptions > li > :last-child > :last-child > :last-child, } body { background: var(--color-background); - font-family: "Segoe UI", sans-serif; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", + Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; font-size: 16px; color: var(--color-text); } @@ -373,22 +424,43 @@ a.external[target="_blank"] { background-repeat: no-repeat; padding-right: 13px; } +a.tsd-anchor-link { + color: var(--color-text); +} code, pre { font-family: Menlo, Monaco, Consolas, "Courier New", monospace; padding: 0.2em; margin: 0; - font-size: 14px; + font-size: 0.875rem; + border-radius: 0.8em; } pre { + position: relative; + white-space: pre; + white-space: pre-wrap; + word-wrap: break-word; padding: 10px; + border: 1px solid var(--color-accent); } pre code { padding: 0; font-size: 100%; } +pre > button { + position: absolute; + top: 10px; + right: 10px; + opacity: 0; + transition: opacity 0.1s; + box-sizing: border-box; +} +pre:hover > button, +pre > button.visible { + opacity: 1; +} blockquote { margin: 1em 0; @@ -404,13 +476,12 @@ blockquote { padding: 0 0 0 20px; margin: 0; } -.tsd-typography h4, .tsd-typography .tsd-index-panel h3, .tsd-index-panel .tsd-typography h3, +.tsd-typography h4, .tsd-typography h5, .tsd-typography h6 { font-size: 1em; - margin: 0; } .tsd-typography h5, .tsd-typography h6 { @@ -421,108 +492,18 @@ blockquote { .tsd-typography ol { margin: 1em 0; } - -@media (min-width: 901px) and (max-width: 1024px) { - html .col-content { - width: 72%; - } - html .col-menu { - width: 28%; - } - html .tsd-navigation { - padding-left: 10px; - } -} -@media (max-width: 900px) { - html .col-content { - float: none; - width: 100%; - } - html .col-menu { - position: fixed !important; - overflow: auto; - -webkit-overflow-scrolling: touch; - z-index: 1024; - top: 0 !important; - bottom: 0 !important; - left: auto !important; - right: 0 !important; - width: 100%; - padding: 20px 20px 0 0; - max-width: 450px; - visibility: hidden; - background-color: var(--color-panel); - transform: translate(100%, 0); - } - html .col-menu > *:last-child { - padding-bottom: 20px; - } - html .overlay { - content: ""; - display: block; - position: fixed; - z-index: 1023; - top: 0; - left: 0; - right: 0; - bottom: 0; - background-color: rgba(0, 0, 0, 0.75); - visibility: hidden; - } - - .to-has-menu .overlay { - animation: fade-in 0.4s; - } - - .to-has-menu :is(header, footer, .col-content) { - animation: shift-to-left 0.4s; - } - - .to-has-menu .col-menu { - animation: pop-in-from-right 0.4s; - } - - .from-has-menu .overlay { - animation: fade-out 0.4s; - } - - .from-has-menu :is(header, footer, .col-content) { - animation: unshift-to-left 0.4s; - } - - .from-has-menu .col-menu { - animation: pop-out-to-right 0.4s; - } - - .has-menu body { - overflow: hidden; - } - .has-menu .overlay { - visibility: visible; - } - .has-menu :is(header, footer, .col-content) { - transform: translate(-25%, 0); - } - .has-menu .col-menu { - visibility: visible; - transform: translate(0, 0); - display: grid; - grid-template-rows: auto 1fr; - max-height: 100vh; - } - .has-menu .tsd-navigation { - max-height: 100%; - } +.tsd-typography table { + border-collapse: collapse; + border: none; } - -.tsd-page-title { - padding: 70px 0 20px 0; - margin: 0 0 40px 0; - background: var(--color-panel); - box-shadow: 0 0 5px rgba(0, 0, 0, 0.35); +.tsd-typography td, +.tsd-typography th { + padding: 6px 13px; + border: 1px solid var(--color-accent); } -.tsd-page-title h1 { - margin: 0; +.tsd-typography thead, +.tsd-typography tr:nth-child(even) { + background-color: var(--color-background-secondary); } .tsd-breadcrumb { @@ -544,32 +525,44 @@ blockquote { content: " / "; } -dl.tsd-comment-tags { +.tsd-comment-tags { + display: flex; + flex-direction: column; +} +dl.tsd-comment-tag-group { + display: flex; + align-items: center; overflow: hidden; + margin: 0.5em 0; } -dl.tsd-comment-tags dt { - float: left; - padding: 1px 5px; - margin: 0 10px 0 0; - border-radius: 4px; - border: 1px solid var(--color-comment-tag); - color: var(--color-comment-tag); - font-size: 0.8em; +dl.tsd-comment-tag-group dt { + display: flex; + margin-right: 0.5em; + font-size: 0.875em; font-weight: normal; } -dl.tsd-comment-tags dd { - margin: 0 0 10px 0; +dl.tsd-comment-tag-group dd { + margin: 0; +} +code.tsd-tag { + padding: 0.25em 0.4em; + border: 0.1em solid var(--color-accent); + margin-right: 0.25em; + font-size: 70%; } -dl.tsd-comment-tags dd:before, -dl.tsd-comment-tags dd:after { - display: table; +h1 code.tsd-tag:first-of-type { + margin-left: 0.25em; +} + +dl.tsd-comment-tag-group dd:before, +dl.tsd-comment-tag-group dd:after { content: " "; } -dl.tsd-comment-tags dd pre, -dl.tsd-comment-tags dd:after { +dl.tsd-comment-tag-group dd pre, +dl.tsd-comment-tag-group dd:after { clear: both; } -dl.tsd-comment-tags p { +dl.tsd-comment-tag-group p { margin: 0; } @@ -582,201 +575,154 @@ dl.tsd-comment-tags p { margin-bottom: 0; } -.toggle-protected .tsd-is-private { - display: none; -} - -.toggle-public .tsd-is-private, -.toggle-public .tsd-is-protected, -.toggle-public .tsd-is-private-protected { - display: none; -} - -.toggle-inherited .tsd-is-inherited { - display: none; +.tsd-filter-visibility h4 { + font-size: 1rem; + padding-top: 0.75rem; + padding-bottom: 0.5rem; + margin: 0; } - -.toggle-externals .tsd-is-external { - display: none; +.tsd-filter-item:not(:last-child) { + margin-bottom: 0.5rem; } - -#tsd-filter { - position: relative; - display: inline-block; - height: 40px; - vertical-align: bottom; +.tsd-filter-input { + display: flex; + width: -moz-fit-content; + width: fit-content; + align-items: center; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + cursor: pointer; } -.no-filter #tsd-filter { - display: none; +.tsd-filter-input input[type="checkbox"] { + cursor: pointer; + position: absolute; + width: 1.5em; + height: 1.5em; + opacity: 0; } -#tsd-filter .tsd-filter-group { - display: inline-block; - height: 40px; - vertical-align: bottom; - white-space: nowrap; +.tsd-filter-input input[type="checkbox"]:disabled { + pointer-events: none; } -#tsd-filter input { - display: none; +.tsd-filter-input svg { + cursor: pointer; + width: 1.5em; + height: 1.5em; + margin-right: 0.5em; + border-radius: 0.33em; + /* Leaving this at full opacity breaks event listeners on Firefox. + Don't remove unless you know what you're doing. */ + opacity: 0.99; } -@media (max-width: 900px) { - #tsd-filter .tsd-filter-group { - display: block; - position: absolute; - top: 40px; - right: 20px; - height: auto; - background-color: var(--color-panel); - visibility: hidden; - transform: translate(50%, 0); - box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); - } - .has-options #tsd-filter .tsd-filter-group { - visibility: visible; - } - .to-has-options #tsd-filter .tsd-filter-group { - animation: fade-in 0.2s; - } - .from-has-options #tsd-filter .tsd-filter-group { - animation: fade-out 0.2s; - } - #tsd-filter label, - #tsd-filter .tsd-select { - display: block; - padding-right: 20px; - } +.tsd-filter-input input[type="checkbox"]:focus-visible + svg { + outline: 2px solid var(--color-focus-outline); } - -footer { - border-top: 1px solid var(--color-panel-divider); - background-color: var(--color-panel); +.tsd-checkbox-background { + fill: var(--color-accent); } -footer:after { - content: ""; - display: table; +input[type="checkbox"]:checked ~ svg .tsd-checkbox-checkmark { + stroke: var(--color-text); } -footer.with-border-bottom { - border-bottom: 1px solid var(--color-panel-divider); +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-background { + fill: var(--color-background); + stroke: var(--color-accent); + stroke-width: 0.25rem; } -footer .tsd-legend-group { - font-size: 0; +.tsd-filter-input input:disabled ~ svg > .tsd-checkbox-checkmark { + stroke: var(--color-accent); } -footer .tsd-legend { + +.settings-label { + font-weight: bold; + text-transform: uppercase; display: inline-block; - width: 25%; - padding: 0; - font-size: 16px; - list-style: none; - line-height: 1.333em; - vertical-align: top; } -@media (max-width: 900px) { - footer .tsd-legend { - width: 50%; - } + +.tsd-filter-visibility .settings-label { + margin: 0.75rem 0 0.5rem 0; +} + +.tsd-theme-toggle .settings-label { + margin: 0.75rem 0.75rem 0 0; } .tsd-hierarchy { list-style: square; - padding: 0 0 0 20px; margin: 0; } .tsd-hierarchy .target { font-weight: bold; } -.tsd-index-panel .tsd-index-content { - margin-bottom: -30px !important; -} -.tsd-index-panel .tsd-index-section { - margin-bottom: 30px !important; -} -.tsd-index-panel h3 { - margin: 0 -20px 10px -20px; - padding: 0 20px 10px 20px; - border-bottom: 1px solid var(--color-panel-divider); -} -.tsd-index-panel ul.tsd-index-list { - -webkit-column-count: 3; - -moz-column-count: 3; - -ms-column-count: 3; - -o-column-count: 3; - column-count: 3; - -webkit-column-gap: 20px; - -moz-column-gap: 20px; - -ms-column-gap: 20px; - -o-column-gap: 20px; - column-gap: 20px; +.tsd-full-hierarchy:not(:last-child) { + margin-bottom: 1em; + padding-bottom: 1em; + border-bottom: 1px solid var(--color-accent); +} +.tsd-full-hierarchy, +.tsd-full-hierarchy ul { + list-style: none; + margin: 0; padding: 0; +} +.tsd-full-hierarchy ul { + padding-left: 1.5rem; +} +.tsd-full-hierarchy a { + padding: 0.25rem 0 !important; + font-size: 1rem; + display: inline-flex; + align-items: center; + color: var(--color-text); +} + +.tsd-panel-group.tsd-index-group { + margin-bottom: 0; +} +.tsd-index-panel .tsd-index-list { list-style: none; line-height: 1.333em; -} -@media (max-width: 900px) { - .tsd-index-panel ul.tsd-index-list { - -webkit-column-count: 1; - -moz-column-count: 1; - -ms-column-count: 1; - -o-column-count: 1; - column-count: 1; + margin: 0; + padding: 0.25rem 0 0 0; + overflow: hidden; + display: grid; + grid-template-columns: repeat(3, 1fr); + column-gap: 1rem; + grid-template-rows: auto; +} +@media (max-width: 1024px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(2, 1fr); } } -@media (min-width: 901px) and (max-width: 1024px) { - .tsd-index-panel ul.tsd-index-list { - -webkit-column-count: 2; - -moz-column-count: 2; - -ms-column-count: 2; - -o-column-count: 2; - column-count: 2; +@media (max-width: 768px) { + .tsd-index-panel .tsd-index-list { + grid-template-columns: repeat(1, 1fr); } } -.tsd-index-panel ul.tsd-index-list li { +.tsd-index-panel .tsd-index-list li { -webkit-page-break-inside: avoid; -moz-page-break-inside: avoid; -ms-page-break-inside: avoid; -o-page-break-inside: avoid; page-break-inside: avoid; } -.tsd-index-panel a, -.tsd-index-panel .tsd-parent-kind-module a { - color: var(--color-ts); -} -.tsd-index-panel .tsd-parent-kind-interface a { - color: var(--color-ts-interface); -} -.tsd-index-panel .tsd-parent-kind-enum a { - color: var(--color-ts-enum); -} -.tsd-index-panel .tsd-parent-kind-class a { - color: var(--color-ts-class); -} -.tsd-index-panel .tsd-kind-module a { - color: var(--color-ts); -} -.tsd-index-panel .tsd-kind-interface a { - color: var(--color-ts-interface); -} -.tsd-index-panel .tsd-kind-enum a { - color: var(--color-ts-enum); -} -.tsd-index-panel .tsd-kind-class a { - color: var(--color-ts-class); -} -.tsd-index-panel .tsd-is-private a { - color: var(--color-ts-private); -} .tsd-flag { display: inline-block; - padding: 1px 5px; + padding: 0.25em 0.4em; border-radius: 4px; color: var(--color-comment-tag-text); background-color: var(--color-comment-tag); text-indent: 0; - font-size: 14px; + font-size: 75%; + line-height: 1; font-weight: normal; } .tsd-anchor { - position: absolute; + position: relative; top: -100px; } @@ -784,154 +730,156 @@ footer .tsd-legend { position: relative; } .tsd-member .tsd-anchor + h3 { + display: flex; + align-items: center; margin-top: 0; margin-bottom: 0; border-bottom: none; } -.tsd-member [data-tsd-kind] { - color: var(--color-ts); -} -.tsd-member [data-tsd-kind="Interface"] { - color: var(--color-ts-interface); + +.tsd-navigation.settings { + margin: 1rem 0; } -.tsd-member [data-tsd-kind="Enum"] { - color: var(--color-ts-enum); +.tsd-navigation > a, +.tsd-navigation .tsd-accordion-summary { + width: calc(100% - 0.25rem); + display: flex; + align-items: center; } -.tsd-member [data-tsd-kind="Class"] { - color: var(--color-ts-class); -} -.tsd-member [data-tsd-kind="Private"] { - color: var(--color-ts-private); -} - -.tsd-navigation { - margin: 0 0 0 40px; -} -.tsd-navigation a { - display: block; - padding-top: 2px; - padding-bottom: 2px; - border-left: 2px solid transparent; +.tsd-navigation a, +.tsd-navigation summary > span, +.tsd-page-navigation a { + display: flex; + width: calc(100% - 0.25rem); + align-items: center; + padding: 0.25rem; color: var(--color-text); text-decoration: none; - transition: border-left-color 0.1s; + box-sizing: border-box; +} +.tsd-navigation a.current, +.tsd-page-navigation a.current { + background: var(--color-active-menu-item); } -.tsd-navigation a:hover { +.tsd-navigation a:hover, +.tsd-page-navigation a:hover { text-decoration: underline; } -.tsd-navigation ul { - margin: 0; +.tsd-navigation ul, +.tsd-page-navigation ul { + margin-top: 0; + margin-bottom: 0; padding: 0; list-style: none; } -.tsd-navigation li { +.tsd-navigation li, +.tsd-page-navigation li { padding: 0; + max-width: 100%; } - -.tsd-navigation.primary { - padding-bottom: 40px; -} -.tsd-navigation.primary a { - display: block; - padding-top: 6px; - padding-bottom: 6px; -} -.tsd-navigation.primary ul li a { - padding-left: 5px; -} -.tsd-navigation.primary ul li li a { - padding-left: 25px; -} -.tsd-navigation.primary ul li li li a { - padding-left: 45px; +.tsd-navigation .tsd-nav-link { + display: none; } -.tsd-navigation.primary ul li li li li a { - padding-left: 65px; +.tsd-nested-navigation { + margin-left: 3rem; } -.tsd-navigation.primary ul li li li li li a { - padding-left: 85px; +.tsd-nested-navigation > li > details { + margin-left: -1.5rem; } -.tsd-navigation.primary ul li li li li li li a { - padding-left: 105px; +.tsd-small-nested-navigation { + margin-left: 1.5rem; } -.tsd-navigation.primary > ul { - border-bottom: 1px solid var(--color-panel-divider); +.tsd-small-nested-navigation > li > details { + margin-left: -1.5rem; } -.tsd-navigation.primary li { - border-top: 1px solid var(--color-panel-divider); + +.tsd-page-navigation-section { + margin-left: 10px; } -.tsd-navigation.primary li.current > a { - font-weight: bold; +.tsd-page-navigation-section > summary { + padding: 0.25rem; } -.tsd-navigation.primary li.label span { - display: block; - padding: 20px 0 6px 5px; - color: var(--color-menu-label); +.tsd-page-navigation-section > div { + margin-left: 20px; } -.tsd-navigation.primary li.globals + li > span, -.tsd-navigation.primary li.globals + li > a { - padding-top: 20px; +.tsd-page-navigation ul { + padding-left: 1.75rem; } -.tsd-navigation.secondary { - max-height: calc(100vh - 1rem - 40px); - overflow: auto; - position: sticky; - top: calc(0.5rem + 40px); - transition: 0.3s; +#tsd-sidebar-links a { + margin-top: 0; + margin-bottom: 0.5rem; + line-height: 1.25rem; } -.tsd-navigation.secondary.tsd-navigation--toolbar-hide { - max-height: calc(100vh - 1rem); - top: 0.5rem; +#tsd-sidebar-links a:last-of-type { + margin-bottom: 0; } -.tsd-navigation.secondary ul { - transition: opacity 0.2s; + +a.tsd-index-link { + padding: 0.25rem 0 !important; + font-size: 1rem; + line-height: 1.25rem; + display: inline-flex; + align-items: center; + color: var(--color-text); } -.tsd-navigation.secondary ul li a { - padding-left: 25px; +.tsd-accordion-summary { + list-style-type: none; /* hide marker on non-safari */ + outline: none; /* broken on safari, so just hide it */ } -.tsd-navigation.secondary ul li li a { - padding-left: 45px; +.tsd-accordion-summary::-webkit-details-marker { + display: none; /* hide marker on safari */ } -.tsd-navigation.secondary ul li li li a { - padding-left: 65px; +.tsd-accordion-summary, +.tsd-accordion-summary a { + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + user-select: none; + + cursor: pointer; } -.tsd-navigation.secondary ul li li li li a { - padding-left: 85px; +.tsd-accordion-summary a { + width: calc(100% - 1.5rem); } -.tsd-navigation.secondary ul li li li li li a { - padding-left: 105px; +.tsd-accordion-summary > * { + margin-top: 0; + margin-bottom: 0; + padding-top: 0; + padding-bottom: 0; } -.tsd-navigation.secondary ul li li li li li li a { - padding-left: 125px; +.tsd-accordion .tsd-accordion-summary > svg { + margin-left: 0.25rem; + vertical-align: text-top; } -.tsd-navigation.secondary ul.current a { - border-left-color: var(--color-panel-divider); +.tsd-index-content > :not(:first-child) { + margin-top: 0.75rem; } -.tsd-navigation.secondary li.focus > a, -.tsd-navigation.secondary ul.current li.focus > a { - border-left-color: var(--color-menu-divider-focus); +.tsd-index-heading { + margin-top: 1.5rem; + margin-bottom: 0.75rem; } -.tsd-navigation.secondary li.current { - margin-top: 20px; - margin-bottom: 20px; - border-left-color: var(--color-panel-divider); + +.tsd-kind-icon { + margin-right: 0.5rem; + width: 1.25rem; + height: 1.25rem; + min-width: 1.25rem; + min-height: 1.25rem; } -.tsd-navigation.secondary li.current > a { - font-weight: bold; +.tsd-kind-icon path { + transform-origin: center; + transform: scale(1.1); } - -@media (min-width: 901px) { - .menu-sticky-wrap { - position: static; - } +.tsd-signature > .tsd-kind-icon { + margin-right: 0.8rem; } .tsd-panel { - margin: 20px 0; - padding: 20px; - background-color: var(--color-panel); - box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); + margin-bottom: 2.5rem; +} +.tsd-panel.tsd-member { + margin-bottom: 4rem; } .tsd-panel:empty { display: none; @@ -939,48 +887,27 @@ footer .tsd-legend { .tsd-panel > h1, .tsd-panel > h2, .tsd-panel > h3 { - margin: 1.5em -20px 10px -20px; - padding: 0 20px 10px 20px; - border-bottom: 1px solid var(--color-panel-divider); + margin: 1.5rem -1.5rem 0.75rem -1.5rem; + padding: 0 1.5rem 0.75rem 1.5rem; } .tsd-panel > h1.tsd-before-signature, .tsd-panel > h2.tsd-before-signature, .tsd-panel > h3.tsd-before-signature { margin-bottom: 0; - border-bottom: 0; -} -.tsd-panel table { - display: block; - width: 100%; - overflow: auto; - margin-top: 10px; - word-break: normal; - word-break: keep-all; - border-collapse: collapse; -} -.tsd-panel table th { - font-weight: bold; -} -.tsd-panel table th, -.tsd-panel table td { - padding: 6px 13px; - border: 1px solid var(--color-panel-divider); -} -.tsd-panel table tr { - background: var(--color-background); -} -.tsd-panel table tr:nth-child(even) { - background: var(--color-secondary-background); + border-bottom: none; } .tsd-panel-group { - margin: 60px 0; + margin: 2rem 0; } -.tsd-panel-group > h1, -.tsd-panel-group > h2, -.tsd-panel-group > h3 { - padding-left: 20px; - padding-right: 20px; +.tsd-panel-group.tsd-index-group { + margin: 2rem 0; +} +.tsd-panel-group.tsd-index-group details { + margin: 2rem 0; +} +.tsd-panel-group > .tsd-accordion-summary { + margin-bottom: 1rem; } #tsd-search { @@ -994,8 +921,8 @@ footer .tsd-legend { position: absolute; left: 0; top: 0; - right: 40px; - height: 40px; + right: 2.5rem; + height: 100%; } #tsd-search .field input { box-sizing: border-box; @@ -1016,7 +943,8 @@ footer .tsd-legend { right: -40px; } #tsd-search .field input, -#tsd-search .title { +#tsd-search .title, +#tsd-toolbar-links a { transition: opacity 0.2s; } #tsd-search .results { @@ -1030,21 +958,25 @@ footer .tsd-legend { box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); } #tsd-search .results li { - padding: 0 10px; background-color: var(--color-background); + line-height: initial; + padding: 4px; } #tsd-search .results li:nth-child(even) { - background-color: var(--color-panel); + background-color: var(--color-background-secondary); } #tsd-search .results li.state { display: none; } -#tsd-search .results li.current, -#tsd-search .results li:hover { - background-color: var(--color-panel-divider); +#tsd-search .results li.current:not(.no-results), +#tsd-search .results li:hover:not(.no-results) { + background-color: var(--color-accent); } #tsd-search .results a { - display: block; + display: flex; + align-items: center; + padding: 0.25rem; + box-sizing: border-box; } #tsd-search .results a:before { top: 10px; @@ -1054,13 +986,14 @@ footer .tsd-legend { font-weight: normal; } #tsd-search.has-focus { - background-color: var(--color-panel-divider); + background-color: var(--color-accent); } #tsd-search.has-focus .field input { top: 0; opacity: 1; } -#tsd-search.has-focus .title { +#tsd-search.has-focus .title, +#tsd-search.has-focus #tsd-toolbar-links a { z-index: 0; opacity: 0; } @@ -1074,31 +1007,34 @@ footer .tsd-legend { display: block; } +#tsd-toolbar-links { + position: absolute; + top: 0; + right: 2rem; + height: 100%; + display: flex; + align-items: center; + justify-content: flex-end; +} +#tsd-toolbar-links a { + margin-left: 1.5rem; +} +#tsd-toolbar-links a:hover { + text-decoration: underline; +} + .tsd-signature { - margin: 0 0 1em 0; - padding: 10px; - border: 1px solid var(--color-panel-divider); + margin: 0 0 1rem 0; + padding: 1rem 0.5rem; + border: 1px solid var(--color-accent); font-family: Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 14px; overflow-x: auto; } -.tsd-signature.tsd-kind-icon { - padding-left: 30px; -} -.tsd-signature.tsd-kind-icon:before { - top: 10px; - left: 10px; -} -.tsd-panel > .tsd-signature { - margin-left: -20px; - margin-right: -20px; - border-width: 1px 0; -} -.tsd-panel > .tsd-signature.tsd-kind-icon { - padding-left: 40px; -} -.tsd-panel > .tsd-signature.tsd-kind-icon:before { - left: 20px; + +.tsd-signature-keyword { + color: var(--color-ts-keyword); + font-weight: normal; } .tsd-signature-symbol { @@ -1114,123 +1050,66 @@ footer .tsd-legend { .tsd-signatures { padding: 0; margin: 0 0 1em 0; - border: 1px solid var(--color-panel-divider); + list-style-type: none; } .tsd-signatures .tsd-signature { margin: 0; - border-width: 1px 0 0 0; - transition: background-color 0.1s; -} -.tsd-signatures .tsd-signature:first-child { - border-top-width: 0; -} -.tsd-signatures .tsd-signature.current { - background-color: var(--color-panel-divider); -} -.tsd-signatures.active > .tsd-signature { - cursor: pointer; -} -.tsd-panel > .tsd-signatures { - margin-left: -20px; - margin-right: -20px; + border-color: var(--color-accent); border-width: 1px 0; + transition: background-color 0.1s; } -.tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon { - padding-left: 40px; -} -.tsd-panel > .tsd-signatures .tsd-signature.tsd-kind-icon:before { - left: 20px; -} -.tsd-panel > a.anchor + .tsd-signatures { - border-top-width: 0; - margin-top: -20px; -} - -ul.tsd-descriptions { - position: relative; - overflow: hidden; - padding: 0; - list-style: none; -} -ul.tsd-descriptions.active > .tsd-description { - display: none; +.tsd-signatures .tsd-index-signature:not(:last-child) { + margin-bottom: 1em; } -ul.tsd-descriptions.active > .tsd-description.current { - display: block; +.tsd-signatures .tsd-index-signature .tsd-signature { + border-width: 1px; } -ul.tsd-descriptions.active > .tsd-description.fade-in { - animation: fade-in-delayed 0.3s; -} -ul.tsd-descriptions.active > .tsd-description.fade-out { - animation: fade-out-delayed 0.3s; - position: absolute; - display: block; - top: 0; - left: 0; - right: 0; - opacity: 0; - visibility: hidden; -} -ul.tsd-descriptions h4, -ul.tsd-descriptions .tsd-index-panel h3, -.tsd-index-panel ul.tsd-descriptions h3 { - font-size: 16px; - margin: 1em 0 0.5em 0; +.tsd-description .tsd-signatures .tsd-signature { + border-width: 1px; } -ul.tsd-parameters, -ul.tsd-type-parameters { +ul.tsd-parameter-list, +ul.tsd-type-parameter-list { list-style: square; margin: 0; padding-left: 20px; } -ul.tsd-parameters > li.tsd-parameter-signature, -ul.tsd-type-parameters > li.tsd-parameter-signature { +ul.tsd-parameter-list > li.tsd-parameter-signature, +ul.tsd-type-parameter-list > li.tsd-parameter-signature { list-style: none; margin-left: -20px; } -ul.tsd-parameters h5, -ul.tsd-type-parameters h5 { +ul.tsd-parameter-list h5, +ul.tsd-type-parameter-list h5 { font-size: 16px; margin: 1em 0 0.5em 0; } -ul.tsd-parameters .tsd-comment, -ul.tsd-type-parameters .tsd-comment { - margin-top: -0.5em; -} - .tsd-sources { - font-size: 14px; - color: var(--color-text-aside); - margin: 0 0 1em 0; + margin-top: 1rem; + font-size: 0.875em; } .tsd-sources a { color: var(--color-text-aside); text-decoration: underline; } -.tsd-sources ul, -.tsd-sources p { - margin: 0 !important; -} .tsd-sources ul { list-style: none; padding: 0; } .tsd-page-toolbar { - position: fixed; + position: sticky; z-index: 1; top: 0; left: 0; width: 100%; - height: 40px; - color: var(--color-toolbar-text); - background: var(--color-toolbar); - border-bottom: 1px solid var(--color-panel-divider); - transition: transform 0.3s linear; + color: var(--color-text); + background: var(--color-background-secondary); + border-bottom: 1px var(--color-accent) solid; + transition: transform 0.3s ease-in-out; } .tsd-page-toolbar a { - color: var(--color-toolbar-text); + color: var(--color-text); text-decoration: none; } .tsd-page-toolbar a.title { @@ -1239,13 +1118,13 @@ ul.tsd-type-parameters .tsd-comment { .tsd-page-toolbar a.title:hover { text-decoration: underline; } -.tsd-page-toolbar .table-wrap { - display: table; - width: 100%; - height: 40px; +.tsd-page-toolbar .tsd-toolbar-contents { + display: flex; + justify-content: space-between; + height: 2.5rem; + margin: 0 auto; } .tsd-page-toolbar .table-cell { - display: table-cell; position: relative; white-space: nowrap; line-height: 40px; @@ -1253,32 +1132,10 @@ ul.tsd-type-parameters .tsd-comment { .tsd-page-toolbar .table-cell:first-child { width: 100%; } - -.tsd-page-toolbar--hide { - transform: translateY(-100%); -} - -.tsd-select .tsd-select-list li:before, -.tsd-select .tsd-select-label:before, -.tsd-widget:before { - content: ""; - display: inline-block; - width: 40px; - height: 40px; - margin: 0 -8px 0 0; - background-image: url(./widgets.png); - background-repeat: no-repeat; - text-indent: -1024px; - vertical-align: bottom; - filter: var(--icon-filter); -} -@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) { - .tsd-select .tsd-select-list li:before, - .tsd-select .tsd-select-label:before, - .tsd-widget:before { - background-image: url(./widgets@2x.png); - background-size: 320px 40px; - } +.tsd-page-toolbar .tsd-toolbar-icon { + box-sizing: border-box; + line-height: 0; + padding: 12px 0; } .tsd-widget { @@ -1286,7 +1143,9 @@ ul.tsd-type-parameters .tsd-comment { overflow: hidden; opacity: 0.8; height: 40px; - transition: opacity 0.1s, background-color 0.2s; + transition: + opacity 0.1s, + background-color 0.2s; vertical-align: bottom; cursor: pointer; } @@ -1295,7 +1154,7 @@ ul.tsd-type-parameters .tsd-comment { } .tsd-widget.active { opacity: 1; - background-color: var(--color-panel-divider); + background-color: var(--color-accent); } .tsd-widget.no-caption { width: 40px; @@ -1303,25 +1162,11 @@ ul.tsd-type-parameters .tsd-comment { .tsd-widget.no-caption:before { margin: 0; } -.tsd-widget.search:before { - background-position: 0 0; -} -.tsd-widget.menu:before { - background-position: -40px 0; -} -.tsd-widget.options:before { - background-position: -80px 0; -} + .tsd-widget.options, .tsd-widget.menu { display: none; } -@media (max-width: 900px) { - .tsd-widget.options, - .tsd-widget.menu { - display: inline-block; - } -} input[type="checkbox"] + .tsd-widget:before { background-position: -120px 0; } @@ -1329,85 +1174,275 @@ input[type="checkbox"]:checked + .tsd-widget:before { background-position: -160px 0; } -.tsd-select { - position: relative; - display: inline-block; - height: 40px; - transition: opacity 0.1s, background-color 0.2s; - vertical-align: bottom; - cursor: pointer; -} -.tsd-select .tsd-select-label { - opacity: 0.6; - transition: opacity 0.2s; +img { + max-width: 100%; } -.tsd-select .tsd-select-label:before { - background-position: -240px 0; + +.tsd-anchor-icon { + display: inline-flex; + align-items: center; + margin-left: 0.5rem; + vertical-align: middle; + color: var(--color-text); } -.tsd-select.active .tsd-select-label { - opacity: 0.8; + +.tsd-anchor-icon svg { + width: 1em; + height: 1em; + visibility: hidden; } -.tsd-select.active .tsd-select-list { + +.tsd-anchor-link:hover > .tsd-anchor-icon svg { visibility: visible; - opacity: 1; - transition-delay: 0s; } -.tsd-select .tsd-select-list { - position: absolute; - visibility: hidden; - top: 40px; - left: 0; - margin: 0; - padding: 0; - opacity: 0; - list-style: none; - box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); - transition: visibility 0s 0.2s, opacity 0.2s; + +.deprecated { + text-decoration: line-through !important; } -.tsd-select .tsd-select-list li { - padding: 0 20px 0 0; - background-color: var(--color-background); + +.warning { + padding: 1rem; + color: var(--color-warning-text); + background: var(--color-background-warning); +} + +.tsd-kind-project { + color: var(--color-ts-project); +} +.tsd-kind-module { + color: var(--color-ts-module); +} +.tsd-kind-namespace { + color: var(--color-ts-namespace); +} +.tsd-kind-enum { + color: var(--color-ts-enum); +} +.tsd-kind-enum-member { + color: var(--color-ts-enum-member); +} +.tsd-kind-variable { + color: var(--color-ts-variable); +} +.tsd-kind-function { + color: var(--color-ts-function); +} +.tsd-kind-class { + color: var(--color-ts-class); +} +.tsd-kind-interface { + color: var(--color-ts-interface); } -.tsd-select .tsd-select-list li:before { - background-position: 40px 0; +.tsd-kind-constructor { + color: var(--color-ts-constructor); } -.tsd-select .tsd-select-list li:nth-child(even) { - background-color: var(--color-panel); +.tsd-kind-property { + color: var(--color-ts-property); } -.tsd-select .tsd-select-list li:hover { - background-color: var(--color-panel-divider); +.tsd-kind-method { + color: var(--color-ts-method); } -.tsd-select .tsd-select-list li.selected:before { - background-position: -200px 0; +.tsd-kind-call-signature { + color: var(--color-ts-call-signature); } -@media (max-width: 900px) { - .tsd-select .tsd-select-list { +.tsd-kind-index-signature { + color: var(--color-ts-index-signature); +} +.tsd-kind-constructor-signature { + color: var(--color-ts-constructor-signature); +} +.tsd-kind-parameter { + color: var(--color-ts-parameter); +} +.tsd-kind-type-literal { + color: var(--color-ts-type-literal); +} +.tsd-kind-type-parameter { + color: var(--color-ts-type-parameter); +} +.tsd-kind-accessor { + color: var(--color-ts-accessor); +} +.tsd-kind-get-signature { + color: var(--color-ts-get-signature); +} +.tsd-kind-set-signature { + color: var(--color-ts-set-signature); +} +.tsd-kind-type-alias { + color: var(--color-ts-type-alias); +} + +/* if we have a kind icon, don't color the text by kind */ +.tsd-kind-icon ~ span { + color: var(--color-text); +} + +* { + scrollbar-width: thin; + scrollbar-color: var(--color-accent) var(--color-icon-background); +} + +*::-webkit-scrollbar { + width: 0.75rem; +} + +*::-webkit-scrollbar-track { + background: var(--color-icon-background); +} + +*::-webkit-scrollbar-thumb { + background-color: var(--color-accent); + border-radius: 999rem; + border: 0.25rem solid var(--color-icon-background); +} + +/* mobile */ +@media (max-width: 769px) { + .tsd-widget.options, + .tsd-widget.menu { + display: inline-block; + } + + .container-main { + display: flex; + } + html .col-content { + float: none; + max-width: 100%; + width: 100%; + } + html .col-sidebar { + position: fixed !important; + overflow-y: auto; + -webkit-overflow-scrolling: touch; + z-index: 1024; + top: 0 !important; + bottom: 0 !important; + left: auto !important; + right: 0 !important; + padding: 1.5rem 1.5rem 0 0; + width: 75vw; + visibility: hidden; + background-color: var(--color-background); + transform: translate(100%, 0); + } + html .col-sidebar > *:last-child { + padding-bottom: 20px; + } + html .overlay { + content: ""; + display: block; + position: fixed; + z-index: 1023; top: 0; - left: auto; - right: 100%; - margin-right: -5px; + left: 0; + right: 0; + bottom: 0; + background-color: rgba(0, 0, 0, 0.75); + visibility: hidden; } - .tsd-select .tsd-select-label:before { - background-position: -280px 0; + + .to-has-menu .overlay { + animation: fade-in 0.4s; } -} -img { - max-width: 100%; -} + .to-has-menu .col-sidebar { + animation: pop-in-from-right 0.4s; + } -.tsd-anchor-icon { - margin-left: 10px; - vertical-align: middle; - color: var(--color-text); + .from-has-menu .overlay { + animation: fade-out 0.4s; + } + + .from-has-menu .col-sidebar { + animation: pop-out-to-right 0.4s; + } + + .has-menu body { + overflow: hidden; + } + .has-menu .overlay { + visibility: visible; + } + .has-menu .col-sidebar { + visibility: visible; + transform: translate(0, 0); + display: flex; + flex-direction: column; + gap: 1.5rem; + max-height: 100vh; + padding: 1rem 2rem; + } + .has-menu .tsd-navigation { + max-height: 100%; + } + #tsd-toolbar-links { + display: none; + } + .tsd-navigation .tsd-nav-link { + display: flex; + } } -.tsd-anchor-icon svg { - width: 1em; - height: 1em; - visibility: hidden; +/* one sidebar */ +@media (min-width: 770px) { + .container-main { + display: grid; + grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); + grid-template-areas: "sidebar content"; + margin: 2rem auto; + } + + .col-sidebar { + grid-area: sidebar; + } + .col-content { + grid-area: content; + padding: 0 1rem; + } +} +@media (min-width: 770px) and (max-width: 1399px) { + .col-sidebar { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + padding-top: 1rem; + } + .site-menu { + margin-top: 1rem; + } } -.tsd-anchor-link:hover > .tsd-anchor-icon svg { - visibility: visible; +/* two sidebars */ +@media (min-width: 1200px) { + .container-main { + grid-template-columns: minmax(0, 1fr) minmax(0, 2.5fr) minmax(0, 20rem); + grid-template-areas: "sidebar content toc"; + } + + .col-sidebar { + display: contents; + } + + .page-menu { + grid-area: toc; + padding-left: 1rem; + } + .site-menu { + grid-area: sidebar; + } + + .site-menu { + margin-top: 1rem 0; + } + + .page-menu, + .site-menu { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + } } diff --git a/docs/assets/widgets.png b/docs/assets/widgets.png deleted file mode 100644 index c7380532..00000000 Binary files a/docs/assets/widgets.png and /dev/null differ diff --git a/docs/assets/widgets@2x.png b/docs/assets/widgets@2x.png deleted file mode 100644 index 4bbbd572..00000000 Binary files a/docs/assets/widgets@2x.png and /dev/null differ diff --git a/docs/enums/ActionVariableKind.html b/docs/enums/ActionVariableKind.html index f1d17455..9f530e90 100644 --- a/docs/enums/ActionVariableKind.html +++ b/docs/enums/ActionVariableKind.html @@ -1 +1,12 @@ -ActionVariableKind | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration ActionVariableKind

Index

Enumeration members

ARRAY = "ARRAY"
BOOLEAN = "BOOLEAN"
COLLECTION = "COLLECTION"
DATE = "DATE"
DATE_TIME = "DATE_TIME"
DECIMAL = "DECIMAL"
INTEGER = "INTEGER"
JSON = "JSON"
OBJECT = "OBJECT"
RECORD = "RECORD"
STRING = "STRING"

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ActionVariableKind | @betty-blocks/component-sdk

Enumeration ActionVariableKind

Enumeration Members

ARRAY: "ARRAY"
BOOLEAN: "BOOLEAN"
COLLECTION: "COLLECTION"
DATE: "DATE"
DATE_TIME: "DATE_TIME"
DECIMAL: "DECIMAL"
INTEGER: "INTEGER"
JSON: "JSON"
OBJECT: "OBJECT"
RECORD: "RECORD"
STRING: "STRING"
diff --git a/docs/enums/AllowedStateKeys.html b/docs/enums/AllowedStateKeys.html index 69a1ff8b..b715de94 100644 --- a/docs/enums/AllowedStateKeys.html +++ b/docs/enums/AllowedStateKeys.html @@ -1 +1,8 @@ -AllowedStateKeys | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Enumeration members

DISABLED = "disabled"
FOCUS = "focus"
HOVER = "hover"
INVALID = "invalid"
READONLY = "readOnly"
SELECTED = "selected"
VALID = "valid"

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +AllowedStateKeys | @betty-blocks/component-sdk

Enumeration Members

Enumeration Members

DISABLED: "disabled"
FOCUS: "focus"
HOVER: "hover"
INVALID: "invalid"
READONLY: "readOnly"
SELECTED: "selected"
VALID: "valid"
diff --git a/docs/enums/CreatePropertyKind.html b/docs/enums/CreatePropertyKind.html index d1525f81..d687ca3f 100644 --- a/docs/enums/CreatePropertyKind.html +++ b/docs/enums/CreatePropertyKind.html @@ -1 +1,35 @@ -CreatePropertyKind | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration CreatePropertyKind

Index

Enumeration members

AUTO_INCREMENT = "AUTO_INCREMENT"
BOOLEAN = "BOOLEAN"
BOOLEAN_EXPRESSION = "BOOLEAN_EXPRESSION"
DATE = "DATE"
DATE_EXPRESSION = "DATE_EXPRESSION"
DATE_TIME = "DATE_TIME"
DATE_TIME_EXPRESSION = "DATE_TIME_EXPRESSION"
DECIMAL = "DECIMAL"
DECIMAL_EXPRESSION = "DECIMAL_EXPRESSION"
EMAIL_ADDRESS = "EMAIL_ADDRESS"
FILE = "FILE"
IBAN = "IBAN"
IMAGE = "IMAGE"
INTEGER = "INTEGER"
INTEGER_EXPRESSION = "INTEGER_EXPRESSION"
LIST = "LIST"
MINUTES = "MINUTES"
MINUTES_EXPRESSION = "MINUTES_EXPRESSION"
MULTI_FILE = "MULTI_FILE"
MULTI_IMAGE = "MULTI_IMAGE"
OBJECT = "OBJECT"
PASSWORD = "PASSWORD"
PDF = "PDF"
PHONE_NUMBER = "PHONE_NUMBER"
PRICE = "PRICE"
PRICE_EXPRESSION = "PRICE_EXPRESSION"
RICH_TEXT = "RICH_TEXT"
STRING = "STRING"
STRING_EXPRESSION = "STRING_EXPRESSION"
TEXT = "TEXT"
TEXT_EXPRESSION = "TEXT_EXPRESSION"
TIME = "TIME"
URL = "URL"
ZIPCODE = "ZIPCODE"

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +CreatePropertyKind | @betty-blocks/component-sdk

Enumeration CreatePropertyKind

Enumeration Members

AUTO_INCREMENT: "AUTO_INCREMENT"
BOOLEAN: "BOOLEAN"
BOOLEAN_EXPRESSION: "BOOLEAN_EXPRESSION"
DATE: "DATE"
DATE_EXPRESSION: "DATE_EXPRESSION"
DATE_TIME: "DATE_TIME"
DATE_TIME_EXPRESSION: "DATE_TIME_EXPRESSION"
DECIMAL: "DECIMAL"
DECIMAL_EXPRESSION: "DECIMAL_EXPRESSION"
EMAIL_ADDRESS: "EMAIL_ADDRESS"
FILE: "FILE"
IBAN: "IBAN"
IMAGE: "IMAGE"
INTEGER: "INTEGER"
INTEGER_EXPRESSION: "INTEGER_EXPRESSION"
LIST: "LIST"
MINUTES: "MINUTES"
MINUTES_EXPRESSION: "MINUTES_EXPRESSION"
MULTI_FILE: "MULTI_FILE"
MULTI_IMAGE: "MULTI_IMAGE"
OBJECT: "OBJECT"
PASSWORD: "PASSWORD"
PDF: "PDF"
PHONE_NUMBER: "PHONE_NUMBER"
PRICE: "PRICE"
PRICE_EXPRESSION: "PRICE_EXPRESSION"
RICH_TEXT: "RICH_TEXT"
STRING: "STRING"
STRING_EXPRESSION: "STRING_EXPRESSION"
TEXT: "TEXT"
TEXT_EXPRESSION: "TEXT_EXPRESSION"
TIME: "TIME"
URL: "URL"
ZIPCODE: "ZIPCODE"
diff --git a/docs/enums/Icon.html b/docs/enums/Icon.html index 939172fb..9248de40 100644 --- a/docs/enums/Icon.html +++ b/docs/enums/Icon.html @@ -1 +1,114 @@ -Icon | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Enumeration members

AccordionIcon = "AccordionIcon"
AccordionItemIcon = "AccordionItemIcon"
AlertIcon = "AlertIcon"
AutoCompleteIcon = "AutoCompleteIcon"
AvatarIcon = "AvatarIcon"
BarChartIcon = "BarChartIcon"
BreadcrumbIcon = "BreadcrumbIcon"
BreadcrumbItemIcon = "BreadcrumbItemIcon"
ButtonGroupIcon = "ButtonGroupIcon"
ButtonIcon = "ButtonIcon"
CardActionsIcon = "CardActionsIcon"
CardContentIcon = "CardContentIcon"
CardHeaderIcon = "CardHeaderIcon"
CardIcon = "CardIcon"
CardMediaIcon = "CardMediaIcon"
CheckboxGroupIcon = "CheckboxGroupIcon"
CheckboxIcon = "CheckboxIcon"
ChipIcon = "ChipIcon"
Column2Icon = "Column2Icon"
Column3Icon = "Column3Icon"
ColumnIcon = "ColumnIcon"
ConditionalIcon = "ConditionalIcon"
ContainerIcon = "ContainerIcon"
CreateFormIcon = "CreateFormIcon"
DataContainer = "DataContainer"
DataList = "DataList"
DataTable = "DataTable"
DataTableBody = "DataTableBody"
DataTableColumn = "DataTableColumn"
DataTableHead = "DataTableHead"
DataTableRow = "DataTableRow"
DatePickerIcon = "DatePickerIcon"
DateTimePickerIcon = "DateTimePickerIcon"
DecimalInputIcon = "DecimalInputIcon"
DefinitionListIcon = "DefinitionListIcon"
DeleteRecordIcon = "DeleteRecordIcon"
DetailViewIcon = "DetailViewIcon"
DialogIcon = "DialogIcon"
DrawerIcon = "DrawerIcon"
DynamicFormIcon = "DynamicFormIcon"
DynamicTableIcon = "DynamicTableIcon"
DynamicTilesIcon = "DynamicTilesIcon"
EmailInputIcon = "EmailInputIcon"
FileInputIcon = "FileInputIcon"
FilterIcon = "FilterIcon"
FormIcon = "FormIcon"
GridIcon = "GridIcon"
HiddenInputIcon = "HiddenInputIcon"
HorizontalRuleIcon = "HorizontalRuleIcon"
HtmlIcon = "HtmlIcon"
IbanInputIcon = "IbanInputIcon"
IconIcon = "IconIcon"
ImageCarouselIcon = "ImageCarouselIcon"
ImageIcon = "ImageIcon"
ImageInputIcon = "ImageInputIcon"
IncludeIcon = "IncludeIcon"
LabelIcon = "LabelIcon"
Layout1Icon = "Layout1Icon"
Layout2Icon = "Layout2Icon"
Layout3333Icon = "Layout3333Icon"
Layout363Icon = "Layout363Icon"
Layout444Icon = "Layout444Icon"
Layout48Icon = "Layout48Icon"
Layout66Icon = "Layout66Icon"
Layout84Icon = "Layout84Icon"
ListItemIcon = "ListItemIcon"
ListWithDataIcon = "ListWithDataIcon"
LoginFormIcon = "LoginFormIcon"
LogoutIcon = "LogoutIcon"
MenuIcon = "MenuIcon"
MenuItemIcon = "MenuItemIcon"
MultiLineIcon = "MultiLineIcon"
MultiSelectIcon = "MultiSelectIcon"
NavItemIcon = "NavItemIcon"
NavSidebarIcon = "NavSidebarIcon"
NavbarIcon = "NavbarIcon"
NumberInputIcon = "NumberInputIcon"
ObectIcon = "ObjectIcon"
OpenPageIcon = "OpenPageIcon"
OrderedListIcon = "OrderedListIcon"
PanelIcon = "PanelIcon"
PaperIcon = "PaperIcon"
ParagraphIcon = "ParagraphIcon"
PasswordInputIcon = "PasswordInputIcon"
PhoneInputIcon = "PhoneInputIcon"
PieChartIcon = "PieChartIcon"
PriceInputIcon = "PriceInputIcon"
ProgressBarIcon = "ProgressBarIcon"
RadioButtonIcon = "RadioButtonIcon"
RatingIcon = "RatingIcon"
RichTextEditorIcon = "RichTextEditorIcon"
RowColumnIcon = "RowColumnIcon"
RowIcon = "RowIcon"
SelectIcon = "SelectIcon"
SidebarLeftIcon = "SidebarLeftIcon"
SliderComponentIcon = "SliderComponentIcon"
SnackbarIcon = "SnackbarIcon"
StepIcon = "StepIcon"
StepperIcon = "StepperIcon"
SubViewIcon = "SubViewIcon"
SubViewItemIcon = "SubViewItemIcon"
SubmitButtonIcon = "SubmitButtonIcon"
SwitcherIcon = "SwitcherIcon"
TabIcon = "TabIcon"
Table = "Table"
TabsIcon = "TabsIcon"
TextInputIcon = "TextInputIcon"
TextareaIcon = "TextareaIcon"
TimePickerIcon = "TimePickerIcon"
TitleIcon = "TitleIcon"
UnorderedListIcon = "UnorderedListIcon"
UpdateFormIcon = "UpdateFormIcon"
UrlInputIcon = "UrlInputIcon"

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Icon | @betty-blocks/component-sdk

Enumeration Members

AccordionIcon +AccordionItemIcon +AlertIcon +AutoCompleteIcon +AvatarIcon +BarChartIcon +BreadcrumbIcon +BreadcrumbItemIcon +ButtonGroupIcon +ButtonIcon +CardActionsIcon +CardContentIcon +CardHeaderIcon +CardIcon +CardMediaIcon +CheckboxGroupIcon +CheckboxIcon +ChipIcon +Column2Icon +Column3Icon +ColumnIcon +ConditionalIcon +ContainerIcon +CreateFormIcon +DataContainer +DataList +DataTable +DataTableBody +DataTableColumn +DataTableHead +DataTableRow +DatePickerIcon +DateTimePickerIcon +DecimalInputIcon +DefinitionListIcon +DeleteRecordIcon +DetailViewIcon +DialogIcon +DrawerIcon +DynamicFormIcon +DynamicTableIcon +DynamicTilesIcon +EmailInputIcon +FileInputIcon +FilterIcon +FormIcon +GridIcon +HiddenInputIcon +HorizontalRuleIcon +HtmlIcon +IbanInputIcon +IconIcon +ImageCarouselIcon +ImageIcon +ImageInputIcon +IncludeIcon +LabelIcon +Layout1Icon +Layout2Icon +Layout3333Icon +Layout363Icon +Layout444Icon +Layout48Icon +Layout66Icon +Layout84Icon +ListItemIcon +ListWithDataIcon +LoginFormIcon +LogoutIcon +MenuIcon +MenuItemIcon +MultiLineIcon +MultiSelectIcon +NavItemIcon +NavSidebarIcon +NavbarIcon +NumberInputIcon +ObectIcon +OpenPageIcon +OrderedListIcon +PanelIcon +PaperIcon +ParagraphIcon +PasswordInputIcon +PhoneInputIcon +PieChartIcon +PriceInputIcon +ProgressBarIcon +RadioButtonIcon +RatingIcon +RichTextEditorIcon +RowColumnIcon +RowIcon +SelectIcon +SidebarLeftIcon +SliderComponentIcon +SnackbarIcon +StepIcon +StepperIcon +SubViewIcon +SubViewItemIcon +SubmitButtonIcon +SwitcherIcon +TabIcon +Table +TabsIcon +TextInputIcon +TextareaIcon +TimePickerIcon +TitleIcon +UnorderedListIcon +UpdateFormIcon +UrlInputIcon +

Enumeration Members

AccordionIcon: "AccordionIcon"
AccordionItemIcon: "AccordionItemIcon"
AlertIcon: "AlertIcon"
AutoCompleteIcon: "AutoCompleteIcon"
AvatarIcon: "AvatarIcon"
BarChartIcon: "BarChartIcon"
BreadcrumbIcon: "BreadcrumbIcon"
BreadcrumbItemIcon: "BreadcrumbItemIcon"
ButtonGroupIcon: "ButtonGroupIcon"
ButtonIcon: "ButtonIcon"
CardActionsIcon: "CardActionsIcon"
CardContentIcon: "CardContentIcon"
CardHeaderIcon: "CardHeaderIcon"
CardIcon: "CardIcon"
CardMediaIcon: "CardMediaIcon"
CheckboxGroupIcon: "CheckboxGroupIcon"
CheckboxIcon: "CheckboxIcon"
ChipIcon: "ChipIcon"
Column2Icon: "Column2Icon"
Column3Icon: "Column3Icon"
ColumnIcon: "ColumnIcon"
ConditionalIcon: "ConditionalIcon"
ContainerIcon: "ContainerIcon"
CreateFormIcon: "CreateFormIcon"
DataContainer: "DataContainer"
DataList: "DataList"
DataTable: "DataTable"
DataTableBody: "DataTableBody"
DataTableColumn: "DataTableColumn"
DataTableHead: "DataTableHead"
DataTableRow: "DataTableRow"
DatePickerIcon: "DatePickerIcon"
DateTimePickerIcon: "DateTimePickerIcon"
DecimalInputIcon: "DecimalInputIcon"
DefinitionListIcon: "DefinitionListIcon"
DeleteRecordIcon: "DeleteRecordIcon"
DetailViewIcon: "DetailViewIcon"
DialogIcon: "DialogIcon"
DrawerIcon: "DrawerIcon"
DynamicFormIcon: "DynamicFormIcon"
DynamicTableIcon: "DynamicTableIcon"
DynamicTilesIcon: "DynamicTilesIcon"
EmailInputIcon: "EmailInputIcon"
FileInputIcon: "FileInputIcon"
FilterIcon: "FilterIcon"
FormIcon: "FormIcon"
GridIcon: "GridIcon"
HiddenInputIcon: "HiddenInputIcon"
HorizontalRuleIcon: "HorizontalRuleIcon"
HtmlIcon: "HtmlIcon"
IbanInputIcon: "IbanInputIcon"
IconIcon: "IconIcon"
ImageCarouselIcon: "ImageCarouselIcon"
ImageIcon: "ImageIcon"
ImageInputIcon: "ImageInputIcon"
IncludeIcon: "IncludeIcon"
LabelIcon: "LabelIcon"
Layout1Icon: "Layout1Icon"
Layout2Icon: "Layout2Icon"
Layout3333Icon: "Layout3333Icon"
Layout363Icon: "Layout363Icon"
Layout444Icon: "Layout444Icon"
Layout48Icon: "Layout48Icon"
Layout66Icon: "Layout66Icon"
Layout84Icon: "Layout84Icon"
ListItemIcon: "ListItemIcon"
ListWithDataIcon: "ListWithDataIcon"
LoginFormIcon: "LoginFormIcon"
LogoutIcon: "LogoutIcon"
MenuIcon: "MenuIcon"
MenuItemIcon: "MenuItemIcon"
MultiLineIcon: "MultiLineIcon"
MultiSelectIcon: "MultiSelectIcon"
NavItemIcon: "NavItemIcon"
NavSidebarIcon: "NavSidebarIcon"
NavbarIcon: "NavbarIcon"
NumberInputIcon: "NumberInputIcon"
ObectIcon: "ObjectIcon"
OpenPageIcon: "OpenPageIcon"
OrderedListIcon: "OrderedListIcon"
PanelIcon: "PanelIcon"
PaperIcon: "PaperIcon"
ParagraphIcon: "ParagraphIcon"
PasswordInputIcon: "PasswordInputIcon"
PhoneInputIcon: "PhoneInputIcon"
PieChartIcon: "PieChartIcon"
PriceInputIcon: "PriceInputIcon"
ProgressBarIcon: "ProgressBarIcon"
RadioButtonIcon: "RadioButtonIcon"
RatingIcon: "RatingIcon"
RichTextEditorIcon: "RichTextEditorIcon"
RowColumnIcon: "RowColumnIcon"
RowIcon: "RowIcon"
SelectIcon: "SelectIcon"
SidebarLeftIcon: "SidebarLeftIcon"
SliderComponentIcon: "SliderComponentIcon"
SnackbarIcon: "SnackbarIcon"
StepIcon: "StepIcon"
StepperIcon: "StepperIcon"
SubViewIcon: "SubViewIcon"
SubViewItemIcon: "SubViewItemIcon"
SubmitButtonIcon: "SubmitButtonIcon"
SwitcherIcon: "SwitcherIcon"
TabIcon: "TabIcon"
Table: "Table"
TabsIcon: "TabsIcon"
TextInputIcon: "TextInputIcon"
TextareaIcon: "TextareaIcon"
TimePickerIcon: "TimePickerIcon"
TitleIcon: "TitleIcon"
UnorderedListIcon: "UnorderedListIcon"
UpdateFormIcon: "UpdateFormIcon"
UrlInputIcon: "UrlInputIcon"
diff --git a/docs/enums/InteractionOptionType.html b/docs/enums/InteractionOptionType.html index 685c8de1..37a071d8 100644 --- a/docs/enums/InteractionOptionType.html +++ b/docs/enums/InteractionOptionType.html @@ -1 +1,8 @@ -InteractionOptionType | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration InteractionOptionType

Index

Enumeration members

Boolean = "Boolean"
Event = "Event"
Locale = "Locale"
Number = "Number"
Page = "Page"
String = "String"
Void = "Void"

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +InteractionOptionType | @betty-blocks/component-sdk

Enumeration InteractionOptionType

Enumeration Members

Enumeration Members

Boolean: "Boolean"
Event: "Event"
Locale: "Locale"
Number: "Number"
Page: "Page"
String: "String"
Void: "Void"
diff --git a/docs/enums/InteractionOptionTypeToDo.html b/docs/enums/InteractionOptionTypeToDo.html index 5516bd02..ba9d7269 100644 --- a/docs/enums/InteractionOptionTypeToDo.html +++ b/docs/enums/InteractionOptionTypeToDo.html @@ -1 +1,9 @@ -InteractionOptionTypeToDo | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Enumeration InteractionOptionTypeToDo

Index

Enumeration members

Color = "Color"
Endpoint = "Endpoint"
Filter = "Filter"
Font = "Font"
Properties = "Properties"
Property = "Property"
Size = "Size"
Unit = "Unit"

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +InteractionOptionTypeToDo | @betty-blocks/component-sdk

Enumeration InteractionOptionTypeToDo

Enumeration Members

Enumeration Members

Color: "Color"
Endpoint: "Endpoint"
Filter: "Filter"
Font: "Font"
Properties: "Properties"
Property: "Property"
Size: "Size"
Unit: "Unit"
diff --git a/docs/enums/InteractionType.html b/docs/enums/InteractionType.html index f45695d4..ce500e90 100644 --- a/docs/enums/InteractionType.html +++ b/docs/enums/InteractionType.html @@ -1 +1,3 @@ -InteractionType | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Enumeration members

Enumeration members

Custom = "Custom"
Global = "Global"

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +InteractionType | @betty-blocks/component-sdk

Enumeration Members

Enumeration Members

Custom: "Custom"
Global: "Global"
diff --git a/docs/enums/ThemeColor.html b/docs/enums/ThemeColor.html index bbd7c16f..21a38305 100644 --- a/docs/enums/ThemeColor.html +++ b/docs/enums/ThemeColor.html @@ -1 +1,17 @@ -ThemeColor | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Enumeration members

ACCENT_1 = "Accent1"
ACCENT_2 = "Accent2"
ACCENT_3 = "Accent3"
BLACK = "Black"
DANGER = "Danger"
DARK = "Dark"
INFO = "Info"
INHERIT = "[Inherit]"
LIGHT = "Light"
MEDIUM = "Medium"
PRIMARY = "Primary"
SECONDARY = "Secondary"
SUCCESS = "Success"
TRANSPARENT = "Transparent"
WARNING = "Warning"
WHITE = "White"

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ThemeColor | @betty-blocks/component-sdk

Enumeration Members

ACCENT_1: "Accent1"
ACCENT_2: "Accent2"
ACCENT_3: "Accent3"
BLACK: "Black"
DANGER: "Danger"
DARK: "Dark"
INFO: "Info"
INHERIT: "[Inherit]"
LIGHT: "Light"
MEDIUM: "Medium"
PRIMARY: "Primary"
SECONDARY: "Secondary"
SUCCESS: "Success"
TRANSPARENT: "Transparent"
WARNING: "Warning"
WHITE: "White"
diff --git a/docs/functions/action.html b/docs/functions/action.html new file mode 100644 index 00000000..ff47fa61 --- /dev/null +++ b/docs/functions/action.html @@ -0,0 +1 @@ +action | @betty-blocks/component-sdk
diff --git a/docs/functions/actionInputObjects.html b/docs/functions/actionInputObjects.html new file mode 100644 index 00000000..71eb1469 --- /dev/null +++ b/docs/functions/actionInputObjects.html @@ -0,0 +1 @@ +actionInputObjects | @betty-blocks/component-sdk
diff --git a/docs/functions/addChild.html b/docs/functions/addChild.html new file mode 100644 index 00000000..59c3aacc --- /dev/null +++ b/docs/functions/addChild.html @@ -0,0 +1 @@ +addChild | @betty-blocks/component-sdk
diff --git a/docs/functions/authenticationProfile.html b/docs/functions/authenticationProfile.html new file mode 100644 index 00000000..d0106db4 --- /dev/null +++ b/docs/functions/authenticationProfile.html @@ -0,0 +1 @@ +authenticationProfile | @betty-blocks/component-sdk
diff --git a/docs/functions/buttongroup.html b/docs/functions/buttongroup.html new file mode 100644 index 00000000..866fae58 --- /dev/null +++ b/docs/functions/buttongroup.html @@ -0,0 +1 @@ +buttongroup | @betty-blocks/component-sdk
  • Parameters

    • label: string
    • options: [string, string, string?][]
    • attrs: Attributes = {}

    Returns OptionProducer

diff --git a/docs/functions/childSelector.html b/docs/functions/childSelector.html new file mode 100644 index 00000000..7a5899a0 --- /dev/null +++ b/docs/functions/childSelector.html @@ -0,0 +1 @@ +childSelector | @betty-blocks/component-sdk
diff --git a/docs/functions/color.html b/docs/functions/color.html new file mode 100644 index 00000000..33f54951 --- /dev/null +++ b/docs/functions/color.html @@ -0,0 +1 @@ +color | @betty-blocks/component-sdk
diff --git a/docs/functions/component.html b/docs/functions/component.html new file mode 100644 index 00000000..5fe61b20 --- /dev/null +++ b/docs/functions/component.html @@ -0,0 +1,5 @@ +component | @betty-blocks/component-sdk

Create a component prefab

+
diff --git a/docs/functions/displayLogic.html b/docs/functions/displayLogic.html new file mode 100644 index 00000000..94846ee4 --- /dev/null +++ b/docs/functions/displayLogic.html @@ -0,0 +1 @@ +displayLogic | @betty-blocks/component-sdk
diff --git a/docs/functions/dropdown.html b/docs/functions/dropdown.html new file mode 100644 index 00000000..457dd544 --- /dev/null +++ b/docs/functions/dropdown.html @@ -0,0 +1 @@ +dropdown | @betty-blocks/component-sdk
  • Parameters

    • label: string
    • options: [string, string][]
    • attrs: Attributes = {}

    Returns OptionProducer

diff --git a/docs/functions/endpoint.html b/docs/functions/endpoint.html new file mode 100644 index 00000000..3e376172 --- /dev/null +++ b/docs/functions/endpoint.html @@ -0,0 +1 @@ +endpoint | @betty-blocks/component-sdk
diff --git a/docs/functions/filter.html b/docs/functions/filter.html new file mode 100644 index 00000000..658fe08c --- /dev/null +++ b/docs/functions/filter.html @@ -0,0 +1 @@ +filter | @betty-blocks/component-sdk
diff --git a/docs/functions/font.html b/docs/functions/font.html new file mode 100644 index 00000000..3b052bbb --- /dev/null +++ b/docs/functions/font.html @@ -0,0 +1 @@ +font | @betty-blocks/component-sdk
diff --git a/docs/functions/hideIf.html b/docs/functions/hideIf.html new file mode 100644 index 00000000..8fe3f3da --- /dev/null +++ b/docs/functions/hideIf.html @@ -0,0 +1 @@ +hideIf | @betty-blocks/component-sdk
  • Parameters

    • key: string
    • comparator: "EQ"
    • value: string | boolean

    Returns undefined | {
        comparator: "EQ";
        option: string;
        type: "SHOW" | "HIDE";
        value: string | boolean;
    }

diff --git a/docs/functions/icon-1.html b/docs/functions/icon-1.html new file mode 100644 index 00000000..ebf5635f --- /dev/null +++ b/docs/functions/icon-1.html @@ -0,0 +1 @@ +icon | @betty-blocks/component-sdk
  • Parameters

    • label: string
    • attrs: Attributes = {}

    Returns OptionProducer

diff --git a/docs/functions/linked.html b/docs/functions/linked.html new file mode 100644 index 00000000..00c8a0be --- /dev/null +++ b/docs/functions/linked.html @@ -0,0 +1 @@ +linked | @betty-blocks/component-sdk
diff --git a/docs/functions/linkedPartial.html b/docs/functions/linkedPartial.html new file mode 100644 index 00000000..e5bbfc12 --- /dev/null +++ b/docs/functions/linkedPartial.html @@ -0,0 +1 @@ +linkedPartial | @betty-blocks/component-sdk
diff --git a/docs/functions/model.html b/docs/functions/model.html new file mode 100644 index 00000000..5924c435 --- /dev/null +++ b/docs/functions/model.html @@ -0,0 +1 @@ +model | @betty-blocks/component-sdk
diff --git a/docs/functions/modelAndRelation.html b/docs/functions/modelAndRelation.html new file mode 100644 index 00000000..f1c9ccee --- /dev/null +++ b/docs/functions/modelAndRelation.html @@ -0,0 +1 @@ +modelAndRelation | @betty-blocks/component-sdk
diff --git a/docs/functions/number.html b/docs/functions/number.html new file mode 100644 index 00000000..2a134156 --- /dev/null +++ b/docs/functions/number.html @@ -0,0 +1 @@ +number | @betty-blocks/component-sdk
diff --git a/docs/functions/option.html b/docs/functions/option.html new file mode 100644 index 00000000..56aedc92 --- /dev/null +++ b/docs/functions/option.html @@ -0,0 +1 @@ +option | @betty-blocks/component-sdk
diff --git a/docs/functions/pageVariable.html b/docs/functions/pageVariable.html new file mode 100644 index 00000000..e49dec34 --- /dev/null +++ b/docs/functions/pageVariable.html @@ -0,0 +1 @@ +pageVariable | @betty-blocks/component-sdk
diff --git a/docs/functions/partial.html b/docs/functions/partial.html new file mode 100644 index 00000000..e3950cb5 --- /dev/null +++ b/docs/functions/partial.html @@ -0,0 +1,2 @@ +partial | @betty-blocks/component-sdk

Create a partial prefab

+
diff --git a/docs/functions/prefab-1.html b/docs/functions/prefab-1.html new file mode 100644 index 00000000..300e666f --- /dev/null +++ b/docs/functions/prefab-1.html @@ -0,0 +1 @@ +prefab | @betty-blocks/component-sdk
diff --git a/docs/functions/property.html b/docs/functions/property.html new file mode 100644 index 00000000..3ebc69f4 --- /dev/null +++ b/docs/functions/property.html @@ -0,0 +1 @@ +property | @betty-blocks/component-sdk
diff --git a/docs/functions/reconfigure.html b/docs/functions/reconfigure.html new file mode 100644 index 00000000..424efd40 --- /dev/null +++ b/docs/functions/reconfigure.html @@ -0,0 +1 @@ +reconfigure | @betty-blocks/component-sdk
diff --git a/docs/functions/showIf.html b/docs/functions/showIf.html new file mode 100644 index 00000000..5f89035e --- /dev/null +++ b/docs/functions/showIf.html @@ -0,0 +1 @@ +showIf | @betty-blocks/component-sdk
  • Parameters

    • key: string
    • comparator: "EQ"
    • value: string | boolean

    Returns undefined | {
        comparator: "EQ";
        option: string;
        type: "SHOW" | "HIDE";
        value: string | boolean;
    }

diff --git a/docs/functions/showIfTrue.html b/docs/functions/showIfTrue.html new file mode 100644 index 00000000..ab8c7079 --- /dev/null +++ b/docs/functions/showIfTrue.html @@ -0,0 +1 @@ +showIfTrue | @betty-blocks/component-sdk
  • Parameters

    • key: string

    Returns undefined | {
        comparator: "EQ";
        option: string;
        type: "SHOW" | "HIDE";
        value: string | boolean;
    }

diff --git a/docs/functions/size.html b/docs/functions/size.html new file mode 100644 index 00000000..cfc57194 --- /dev/null +++ b/docs/functions/size.html @@ -0,0 +1 @@ +size | @betty-blocks/component-sdk
diff --git a/docs/functions/sizes.html b/docs/functions/sizes.html new file mode 100644 index 00000000..20cdd75b --- /dev/null +++ b/docs/functions/sizes.html @@ -0,0 +1 @@ +sizes | @betty-blocks/component-sdk
diff --git a/docs/functions/staticColor.html b/docs/functions/staticColor.html new file mode 100644 index 00000000..35b80a6a --- /dev/null +++ b/docs/functions/staticColor.html @@ -0,0 +1 @@ +staticColor | @betty-blocks/component-sdk
diff --git a/docs/functions/style.html b/docs/functions/style.html new file mode 100644 index 00000000..3b195853 --- /dev/null +++ b/docs/functions/style.html @@ -0,0 +1 @@ +style | @betty-blocks/component-sdk
diff --git a/docs/functions/styleReference-1.html b/docs/functions/styleReference-1.html new file mode 100644 index 00000000..02a3aff6 --- /dev/null +++ b/docs/functions/styleReference-1.html @@ -0,0 +1 @@ +styleReference | @betty-blocks/component-sdk
diff --git a/docs/functions/text.html b/docs/functions/text.html new file mode 100644 index 00000000..53e171cc --- /dev/null +++ b/docs/functions/text.html @@ -0,0 +1 @@ +text | @betty-blocks/component-sdk
  • Parameters

    • label: string
    • attrs: Attributes = {}

    Returns OptionProducer

diff --git a/docs/functions/themeColor-1.html b/docs/functions/themeColor-1.html new file mode 100644 index 00000000..e09ae555 --- /dev/null +++ b/docs/functions/themeColor-1.html @@ -0,0 +1 @@ +themeColor | @betty-blocks/component-sdk
diff --git a/docs/functions/toggle.html b/docs/functions/toggle.html new file mode 100644 index 00000000..2289c79d --- /dev/null +++ b/docs/functions/toggle.html @@ -0,0 +1 @@ +toggle | @betty-blocks/component-sdk
diff --git a/docs/functions/variable.html b/docs/functions/variable.html new file mode 100644 index 00000000..c1100ac4 --- /dev/null +++ b/docs/functions/variable.html @@ -0,0 +1 @@ +variable | @betty-blocks/component-sdk
diff --git a/docs/functions/wrapper.html b/docs/functions/wrapper.html new file mode 100644 index 00000000..1df200f4 --- /dev/null +++ b/docs/functions/wrapper.html @@ -0,0 +1,2 @@ +wrapper | @betty-blocks/component-sdk

Create a wrapper prefab

+
diff --git a/docs/hierarchy.html b/docs/hierarchy.html new file mode 100644 index 00000000..ae819ae0 --- /dev/null +++ b/docs/hierarchy.html @@ -0,0 +1 @@ +@betty-blocks/component-sdk
diff --git a/docs/index.html b/docs/index.html index fb6cf2a4..0edda500 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,39 +1,23 @@ -@betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

@betty-blocks/component-sdk

- -

Bettty SDK

-
-

A collection of APIs to develop on the Betty Blocks platform

- - -

Documentation

-
-

API docs

+@betty-blocks/component-sdk

@betty-blocks/component-sdk

Betty Component SDK

A collection of APIs to develop on the Betty Blocks platform

+

API docs

Guides

Generate documentation locally:

-
    npm run build:docs
-
+
    yarn build:docs
+
+ +

Install the sdk with npm:

+
  npm install @betty-blocks/component-sdk --also=dev
+
- -

Installation

-
-

Install the sdk with npm

-
  npm install @betty-blocks/component-sdk --also=dev
-
-

Install the sdk with yarn

-
  yarn add -D @betty-blocks/component-sdk
-
+

Install the sdk with yarn:

+
  yarn add -D @betty-blocks/component-sdk
+
- -

Running Tests

-
-

To run tests, run the following command

-
  npm run test
-
+

To run tests, run the following command:

+
  yarn test
+
- -

Develoment Notes

-
-

Please add unit tests for all new functionality.

+

Please add unit tests for all new functionality.

You can use yarn link to test this package locally to make sure it performs as expected.

-

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +
diff --git a/docs/interfaces/AuthenticateUserStepOption.html b/docs/interfaces/AuthenticateUserStepOption.html index fd28ddc4..1ca0d231 100644 --- a/docs/interfaces/AuthenticateUserStepOption.html +++ b/docs/interfaces/AuthenticateUserStepOption.html @@ -1 +1,3 @@ -AuthenticateUserStepOption | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface AuthenticateUserStepOption

Hierarchy

  • AuthenticateUserStepOption

Index

Properties

authenticationProfileId: string
ref: { jwtAs: string; password: string; username: string }

Type declaration

  • jwtAs: string
  • password: string
  • username: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +AuthenticateUserStepOption | @betty-blocks/component-sdk

Interface AuthenticateUserStepOption

interface AuthenticateUserStepOption {
    authenticationProfileId: string;
    ref: {
        jwtAs: string;
        password: string;
        username: string;
    };
}

Properties

authenticationProfileId: string
ref: {
    jwtAs: string;
    password: string;
    username: string;
}
diff --git a/docs/interfaces/BaseConfiguration.html b/docs/interfaces/BaseConfiguration.html index 4054d662..b5cbda15 100644 --- a/docs/interfaces/BaseConfiguration.html +++ b/docs/interfaces/BaseConfiguration.html @@ -1 +1,2 @@ -BaseConfiguration | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • BaseConfiguration

Index

Properties

Properties

condition?: { comparator: "EQ"; option: string; type: "SHOW" | "HIDE"; value: string | boolean }

Type declaration

  • comparator: "EQ"
  • option: string
  • type: "SHOW" | "HIDE"
  • value: string | boolean

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +BaseConfiguration | @betty-blocks/component-sdk
interface BaseConfiguration {
    condition?: {
        comparator: "EQ";
        option: string;
        type: "SHOW" | "HIDE";
        value: string | boolean;
    };
}

Properties

Properties

condition?: {
    comparator: "EQ";
    option: string;
    type: "SHOW" | "HIDE";
    value: string | boolean;
}
diff --git a/docs/interfaces/BasePrefabInteraction.html b/docs/interfaces/BasePrefabInteraction.html index ea366580..d92538a6 100644 --- a/docs/interfaces/BasePrefabInteraction.html +++ b/docs/interfaces/BasePrefabInteraction.html @@ -1 +1,6 @@ -BasePrefabInteraction | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

name: string
ref: { sourceComponentId?: string; targetComponentId?: string }

Type declaration

  • Optional sourceComponentId?: string
  • Optional targetComponentId?: string
sourceComponentId?: string
sourceEvent: string
targetOptionName?: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +BasePrefabInteraction | @betty-blocks/component-sdk
interface BasePrefabInteraction {
    name: string;
    ref: {
        sourceComponentId?: string;
        targetComponentId?: string;
    };
    sourceComponentId?: string;
    sourceEvent: string;
    targetOptionName?: string;
}

Hierarchy (view full)

Properties

name: string
ref: {
    sourceComponentId?: string;
    targetComponentId?: string;
}
sourceComponentId?: string
sourceEvent: string
targetOptionName?: string
diff --git a/docs/interfaces/BuildStyleDefinition.html b/docs/interfaces/BuildStyleDefinition.html index 4e66d35b..eefd5fca 100644 --- a/docs/interfaces/BuildStyleDefinition.html +++ b/docs/interfaces/BuildStyleDefinition.html @@ -1 +1,4 @@ -BuildStyleDefinition | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

Properties

name: string
type: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +BuildStyleDefinition | @betty-blocks/component-sdk
interface BuildStyleDefinition {
    content: StyleDefinitionContent;
    name: string;
    type: string;
}

Hierarchy

Properties

Properties

name: string
type: string
diff --git a/docs/interfaces/Interaction.html b/docs/interfaces/Interaction.html index e17b4bb2..a1845bac 100644 --- a/docs/interfaces/Interaction.html +++ b/docs/interfaces/Interaction.html @@ -1 +1,5 @@ -Interaction | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Interaction | @betty-blocks/component-sdk
interface Interaction {
    function: string;
    name: string;
    parameters: Record<string, InteractionOptionType>;
    type: InteractionOptionType;
}

Hierarchy (view full)

Properties

Properties

function: string
name: string
parameters: Record<string, InteractionOptionType>
diff --git a/docs/interfaces/InteractionCompatibility.html b/docs/interfaces/InteractionCompatibility.html index b6582e99..30c95eed 100644 --- a/docs/interfaces/InteractionCompatibility.html +++ b/docs/interfaces/InteractionCompatibility.html @@ -1 +1,4 @@ -InteractionCompatibility | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface InteractionCompatibility

Hierarchy

Index

Properties

name: string
parameters: Record<string, InteractionOptionType>

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +InteractionCompatibility | @betty-blocks/component-sdk

Interface InteractionCompatibility

interface InteractionCompatibility {
    name: string;
    parameters: Record<string, InteractionOptionType>;
    type: InteractionOptionType;
}

Hierarchy (view full)

Properties

Properties

name: string
parameters: Record<string, InteractionOptionType>
diff --git a/docs/interfaces/ParameterOptionWithComponentRef.html b/docs/interfaces/ParameterOptionWithComponentRef.html index 829d1f31..bab7e83d 100644 --- a/docs/interfaces/ParameterOptionWithComponentRef.html +++ b/docs/interfaces/ParameterOptionWithComponentRef.html @@ -1 +1,4 @@ -ParameterOptionWithComponentRef | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ParameterOptionWithComponentRef

Hierarchy

  • ParameterOptionWithComponentRef

Index

Properties

name: string
parameter: string
ref: { componentId: string }

Type declaration

  • componentId: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ParameterOptionWithComponentRef | @betty-blocks/component-sdk

Interface ParameterOptionWithComponentRef

interface ParameterOptionWithComponentRef {
    name: string;
    parameter: string;
    ref: {
        componentId: string;
    };
}

Properties

Properties

name: string
parameter: string
ref: {
    componentId: string;
}
diff --git a/docs/interfaces/ParameterOptionWithId.html b/docs/interfaces/ParameterOptionWithId.html index e7b85580..39e29c87 100644 --- a/docs/interfaces/ParameterOptionWithId.html +++ b/docs/interfaces/ParameterOptionWithId.html @@ -1 +1,3 @@ -ParameterOptionWithId | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ParameterOptionWithId

Index

Properties

Properties

id: string[]
parameter: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ParameterOptionWithId | @betty-blocks/component-sdk
interface ParameterOptionWithId {
    id: string[];
    parameter: string;
}

Properties

Properties

id: string[]
parameter: string
diff --git a/docs/interfaces/ParameterOptionWithPageId.html b/docs/interfaces/ParameterOptionWithPageId.html index f6b95591..6f4ab0c1 100644 --- a/docs/interfaces/ParameterOptionWithPageId.html +++ b/docs/interfaces/ParameterOptionWithPageId.html @@ -1 +1,6 @@ -ParameterOptionWithPageId | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ParameterOptionWithPageId

Hierarchy

  • ParameterOptionWithPageId

Index

Properties

endpointId?: string
id?: string
name?: string
pageId: string
parameters?: { name: string; value: string }[]

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ParameterOptionWithPageId | @betty-blocks/component-sdk

Interface ParameterOptionWithPageId

interface ParameterOptionWithPageId {
    endpointId?: string;
    id?: string;
    name?: string;
    pageId: string;
    parameters?: {
        name: string;
        value: string;
    }[];
}

Properties

endpointId?: string
id?: string
name?: string
pageId: string
parameters?: {
    name: string;
    value: string;
}[]
diff --git a/docs/interfaces/ParameterOptionWithPath.html b/docs/interfaces/ParameterOptionWithPath.html index 6f4cbc64..17511c89 100644 --- a/docs/interfaces/ParameterOptionWithPath.html +++ b/docs/interfaces/ParameterOptionWithPath.html @@ -1 +1,3 @@ -ParameterOptionWithPath | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ParameterOptionWithPath

Index

Properties

Properties

parameter: string
path: string[]

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ParameterOptionWithPath | @betty-blocks/component-sdk
interface ParameterOptionWithPath {
    parameter: string;
    path: string[];
}

Properties

Properties

parameter: string
path: string[]
diff --git a/docs/interfaces/Prefab.html b/docs/interfaces/Prefab.html index 8fd89f75..2505d969 100644 --- a/docs/interfaces/Prefab.html +++ b/docs/interfaces/Prefab.html @@ -1 +1,12 @@ -Prefab | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Prefab

Index

Properties

actions?: PrefabAction[]
beforeCreate?: string
category: string
description?: string
icon: Icon
interactions?: PrefabInteraction[]
keywords?: string[]
name: string
structure: PrefabReference[]
type?: string
variables?: PrefabVariable[]

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Prefab | @betty-blocks/component-sdk
interface Prefab {
    actions?: PrefabAction[];
    beforeCreate?: string;
    category: string;
    description?: string;
    icon: Icon;
    interactions?: PrefabInteraction[];
    keywords?: string[];
    name: string;
    structure: PrefabReference[];
    type?: string;
    variables?: PrefabVariable[];
}

Properties

actions?: PrefabAction[]
beforeCreate?: string
category: string
description?: string
icon: Icon
interactions?: PrefabInteraction[]
keywords?: string[]
name: string
structure: PrefabReference[]
type?: string
variables?: PrefabVariable[]
diff --git a/docs/interfaces/PrefabAction.html b/docs/interfaces/PrefabAction.html index bff83260..db97b4ca 100644 --- a/docs/interfaces/PrefabAction.html +++ b/docs/interfaces/PrefabAction.html @@ -1 +1,6 @@ -PrefabAction | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • PrefabAction

Index

Properties

events?: PrefabActionStep[]
name: string
options?: { ref: { result: string } }

Type declaration

  • ref: { result: string }
    • result: string
ref: { endpointId?: string; id: string }

Type declaration

  • Optional endpointId?: string
  • id: string
useNewRuntime: boolean

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PrefabAction | @betty-blocks/component-sdk
interface PrefabAction {
    events?: PrefabActionStep[];
    name: string;
    options?: {
        ref: {
            result: string;
        };
    };
    ref: {
        endpointId?: string;
        id: string;
    };
    useNewRuntime: boolean;
}

Properties

events?: PrefabActionStep[]
name: string
options?: {
    ref: {
        result: string;
    };
}
ref: {
    endpointId?: string;
    id: string;
}
useNewRuntime: boolean
diff --git a/docs/interfaces/PrefabActionAssign.html b/docs/interfaces/PrefabActionAssign.html index f14681b2..e0bdc265 100644 --- a/docs/interfaces/PrefabActionAssign.html +++ b/docs/interfaces/PrefabActionAssign.html @@ -1 +1,3 @@ -PrefabActionAssign | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • PrefabActionAssign

Index

Properties

Properties

leftHandSide: string
ref: { path: string[] }

Type declaration

  • path: string[]

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PrefabActionAssign | @betty-blocks/component-sdk
interface PrefabActionAssign {
    leftHandSide: string;
    ref: {
        path: string[];
    };
}

Properties

Properties

leftHandSide: string
ref: {
    path: string[];
}
diff --git a/docs/interfaces/PrefabActionCreateStepOption.html b/docs/interfaces/PrefabActionCreateStepOption.html index f1fa4795..79004651 100644 --- a/docs/interfaces/PrefabActionCreateStepOption.html +++ b/docs/interfaces/PrefabActionCreateStepOption.html @@ -1 +1,4 @@ -PrefabActionCreateStepOption | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface PrefabActionCreateStepOption

Hierarchy

  • PrefabActionCreateStepOption

Index

Properties

modelId: string
ref: { customModel: string }

Type declaration

  • customModel: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PrefabActionCreateStepOption | @betty-blocks/component-sdk

Interface PrefabActionCreateStepOption

interface PrefabActionCreateStepOption {
    assign: PrefabActionAssign[];
    modelId: string;
    ref: {
        customModel: string;
    };
}

Properties

Properties

modelId: string
ref: {
    customModel: string;
}
diff --git a/docs/interfaces/PrefabActionDeleteStepOption.html b/docs/interfaces/PrefabActionDeleteStepOption.html index 787084a6..cc730eac 100644 --- a/docs/interfaces/PrefabActionDeleteStepOption.html +++ b/docs/interfaces/PrefabActionDeleteStepOption.html @@ -1 +1,2 @@ -PrefabActionDeleteStepOption | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface PrefabActionDeleteStepOption

Hierarchy

  • PrefabActionDeleteStepOption

Index

Properties

Properties

ref: { customModel: string; object: string }

Type declaration

  • customModel: string
  • object: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PrefabActionDeleteStepOption | @betty-blocks/component-sdk

Interface PrefabActionDeleteStepOption

interface PrefabActionDeleteStepOption {
    ref: {
        customModel: string;
        object: string;
    };
}

Properties

ref +

Properties

ref: {
    customModel: string;
    object: string;
}
diff --git a/docs/interfaces/PrefabActionStep.html b/docs/interfaces/PrefabActionStep.html index 79a46389..3936bf5f 100644 --- a/docs/interfaces/PrefabActionStep.html +++ b/docs/interfaces/PrefabActionStep.html @@ -1 +1,3 @@ -PrefabActionStep | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PrefabActionStep | @betty-blocks/component-sdk
interface PrefabActionStep {
    kind: string;
    options?:
        | PrefabActionUpdateStepOption
        | PrefabActionCreateStepOption
        | PrefabActionDeleteStepOption
        | AuthenticateUserStepOption;
}

Properties

Properties

kind: string
diff --git a/docs/interfaces/PrefabActionUpdateStepOption.html b/docs/interfaces/PrefabActionUpdateStepOption.html index 5ea98948..ff091380 100644 --- a/docs/interfaces/PrefabActionUpdateStepOption.html +++ b/docs/interfaces/PrefabActionUpdateStepOption.html @@ -1 +1,3 @@ -PrefabActionUpdateStepOption | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface PrefabActionUpdateStepOption

Hierarchy

  • PrefabActionUpdateStepOption

Index

Properties

Properties

ref: { customModel?: string; object: string }

Type declaration

  • Optional customModel?: string
  • object: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PrefabActionUpdateStepOption | @betty-blocks/component-sdk

Interface PrefabActionUpdateStepOption

interface PrefabActionUpdateStepOption {
    assign: PrefabActionAssign[];
    ref: {
        customModel?: string;
        object: string;
    };
}

Properties

Properties

ref: {
    customModel?: string;
    object: string;
}
diff --git a/docs/interfaces/PrefabComponent.html b/docs/interfaces/PrefabComponent.html index bc41e687..3a78d03f 100644 --- a/docs/interfaces/PrefabComponent.html +++ b/docs/interfaces/PrefabComponent.html @@ -1 +1,14 @@ -PrefabComponent | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • PrefabComponent

Index

Properties

$afterCreate?: Hook[]
$afterDelete?: Hook[]
$onUpdate?: Hook[]
actions?: PrefabAction[]
descendants: PrefabReference[]
id?: string
label?: string
name: string
optionCategories?: OptionCategory[]
ref?: { id: string }

Type declaration

  • id: string
type?: "COMPONENT"

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PrefabComponent | @betty-blocks/component-sdk
interface PrefabComponent {
    $afterCreate?: Hook[];
    $afterDelete?: Hook[];
    $onUpdate?: Hook[];
    actions?: PrefabAction[];
    descendants: PrefabReference[];
    id?: string;
    label?: string;
    name: string;
    optionCategories?: OptionCategory[];
    options: PrefabComponentOption[];
    ref?: {
        id: string;
    };
    style?: PrefabComponentStyle;
    type?: "COMPONENT";
}

Properties

$afterCreate?: Hook[]
$afterDelete?: Hook[]
$onUpdate?: Hook[]
actions?: PrefabAction[]
descendants: PrefabReference[]
id?: string
label?: string
name: string
optionCategories?: OptionCategory[]
ref?: {
    id: string;
}
type?: "COMPONENT"
diff --git a/docs/interfaces/PrefabComponentOptionBase.html b/docs/interfaces/PrefabComponentOptionBase.html index 7dccae04..6c855e68 100644 --- a/docs/interfaces/PrefabComponentOptionBase.html +++ b/docs/interfaces/PrefabComponentOptionBase.html @@ -1 +1,6 @@ -PrefabComponentOptionBase | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface PrefabComponentOptionBase

Hierarchy

Index

Properties

configuration?: { allowFormatting?: boolean; allowPropertyName?: boolean; allowRelations?: boolean; allowedClickThroughKinds?: ("BELONGS_TO" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "OBJECT")[]; allowedExtensions?: string[]; allowedInput?: { name: string; value: string | number | boolean }[]; allowedKinds?: string[]; allowedSplitButtonKinds?: ("AUTO_INCREMENT" | "BELONGS_TO" | "BOOLEAN" | "BOOLEAN_EXPRESSION" | "COUNT" | "DATE" | "DATE_EXPRESSION" | "DATE_TIME" | "DATE_TIME_EXPRESSION" | "DECIMAL" | "DECIMAL_EXPRESSION" | "EMAIL" | "EMAIL_ADDRESS" | "ENUM" | "FILE" | "FLOAT" | "GOOGLE_DOCUMENT" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "HAS_ONE" | "IBAN" | "IMAGE" | "INTEGER" | "INTEGER_EXPRESSION" | "LIST" | "LOGIN_TOKEN" | "MINUTES" | "MINUTES_EXPRESSION" | "MULTI_FILE" | "MULTI_IMAGE" | "OBJECT" | "PASSWORD" | "PDF" | "PERIODIC_COUNT" | "PHONE_NUMBER" | "PRICE" | "PRICE_EXPRESSION" | "RICH_TEXT" | "SERIAL" | "SIGNED_PDF" | "STRING" | "STRING_EXPRESSION" | "SUM" | "TEXT" | "TEXT_EXPRESSION" | "TIME" | "URL" | "ZIPCODE")[]; allowedTypes?: string[]; apiVersion?: string; as?: "BUTTONGROUP" | "DROPDOWN" | "MULTILINE" | "UNIT" | "VISIBILITY"; component?: string; condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | number | boolean }; createAction?: { name?: string; permissions?: string; template: string; value?: string }; createProperty?: { type: CreatePropertyKind; value?: string }; dataType?: string; dependsOn?: string; disabled?: boolean; manageObjectValues?: { buttonLabel?: string; label?: string; selectableObjectKey?: boolean; value: AllowedValue[] }; mediaType?: "IMAGE" | "VIDEO"; modal?: { generateCustomModel: boolean; modelRequired: boolean; type: "MODEL_AND_PROPERTIES" }; placeholder?: string; pushToWrapper?: { condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | number | boolean }; name: string }; showOnDrop?: boolean; showTextStyleColor?: boolean }

Type declaration

  • Optional allowFormatting?: boolean
  • Optional allowPropertyName?: boolean
  • Optional allowRelations?: boolean
  • Optional allowedClickThroughKinds?: ("BELONGS_TO" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "OBJECT")[]
  • Optional allowedExtensions?: string[]
  • Optional allowedInput?: { name: string; value: string | number | boolean }[]
  • Optional allowedKinds?: string[]
  • Optional allowedSplitButtonKinds?: ("AUTO_INCREMENT" | "BELONGS_TO" | "BOOLEAN" | "BOOLEAN_EXPRESSION" | "COUNT" | "DATE" | "DATE_EXPRESSION" | "DATE_TIME" | "DATE_TIME_EXPRESSION" | "DECIMAL" | "DECIMAL_EXPRESSION" | "EMAIL" | "EMAIL_ADDRESS" | "ENUM" | "FILE" | "FLOAT" | "GOOGLE_DOCUMENT" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "HAS_ONE" | "IBAN" | "IMAGE" | "INTEGER" | "INTEGER_EXPRESSION" | "LIST" | "LOGIN_TOKEN" | "MINUTES" | "MINUTES_EXPRESSION" | "MULTI_FILE" | "MULTI_IMAGE" | "OBJECT" | "PASSWORD" | "PDF" | "PERIODIC_COUNT" | "PHONE_NUMBER" | "PRICE" | "PRICE_EXPRESSION" | "RICH_TEXT" | "SERIAL" | "SIGNED_PDF" | "STRING" | "STRING_EXPRESSION" | "SUM" | "TEXT" | "TEXT_EXPRESSION" | "TIME" | "URL" | "ZIPCODE")[]
  • Optional allowedTypes?: string[]
  • Optional apiVersion?: string
  • Optional as?: "BUTTONGROUP" | "DROPDOWN" | "MULTILINE" | "UNIT" | "VISIBILITY"
  • Optional component?: string
  • Optional condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | number | boolean }
    • comparator: "EQ" | "EQ_COMPONENT_ID"
    • option: string
    • type: "SHOW" | "HIDE"
    • value: string | number | boolean
  • Optional createAction?: { name?: string; permissions?: string; template: string; value?: string }
    • Optional name?: string
    • Optional permissions?: string
    • template: string
    • Optional value?: string
  • Optional createProperty?: { type: CreatePropertyKind; value?: string }
  • Optional dataType?: string
  • Optional dependsOn?: string
  • Optional disabled?: boolean
  • Optional manageObjectValues?: { buttonLabel?: string; label?: string; selectableObjectKey?: boolean; value: AllowedValue[] }
    • Optional buttonLabel?: string
    • Optional label?: string
    • Optional selectableObjectKey?: boolean
    • value: AllowedValue[]
  • Optional mediaType?: "IMAGE" | "VIDEO"
  • Optional modal?: { generateCustomModel: boolean; modelRequired: boolean; type: "MODEL_AND_PROPERTIES" }
    • generateCustomModel: boolean
    • modelRequired: boolean
    • type: "MODEL_AND_PROPERTIES"
  • Optional placeholder?: string
  • Optional pushToWrapper?: { condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | number | boolean }; name: string }
    • Optional condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | number | boolean }
      • comparator: "EQ" | "EQ_COMPONENT_ID"
      • option: string
      • type: "SHOW" | "HIDE"
      • value: string | number | boolean
    • name: string
  • Optional showOnDrop?: boolean
  • Optional showTextStyleColor?: boolean
key: string
label: string
optionRef?: { id?: string; inherit?: {} | "name" | "label" | "value" | (string | {})[]; sourceId?: string }

Type declaration

  • Optional id?: string
  • Optional inherit?: {} | "name" | "label" | "value" | (string | {})[]
  • Optional sourceId?: string
type: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PrefabComponentOptionBase | @betty-blocks/component-sdk

Interface PrefabComponentOptionBase

interface PrefabComponentOptionBase {
    configuration?: {
        allowFormatting?: boolean;
        allowPropertyName?: boolean;
        allowRelations?: boolean;
        allowedClickThroughKinds?: (
            | "BELONGS_TO"
            | "HAS_AND_BELONGS_TO_MANY"
            | "HAS_MANY"
            | "OBJECT")[];
        allowedExtensions?: string[];
        allowedInput?: {
            name: string;
            value: string | number | boolean;
        }[];
        allowedKinds?: string[];
        allowedSplitButtonKinds?: (
            | "AUTO_INCREMENT"
            | "BELONGS_TO"
            | "BOOLEAN"
            | "BOOLEAN_EXPRESSION"
            | "COUNT"
            | "DATE"
            | "DATE_EXPRESSION"
            | "DATE_TIME"
            | "DATE_TIME_EXPRESSION"
            | "DECIMAL"
            | "DECIMAL_EXPRESSION"
            | "EMAIL"
            | "EMAIL_ADDRESS"
            | "ENUM"
            | "FILE"
            | "FLOAT"
            | "GOOGLE_DOCUMENT"
            | "HAS_AND_BELONGS_TO_MANY"
            | "HAS_MANY"
            | "HAS_ONE"
            | "IBAN"
            | "IMAGE"
            | "INTEGER"
            | "INTEGER_EXPRESSION"
            | "LIST"
            | "LOGIN_TOKEN"
            | "MINUTES"
            | "MINUTES_EXPRESSION"
            | "MULTI_FILE"
            | "MULTI_IMAGE"
            | "OBJECT"
            | "PASSWORD"
            | "PDF"
            | "PERIODIC_COUNT"
            | "PHONE_NUMBER"
            | "PRICE"
            | "PRICE_EXPRESSION"
            | "RICH_TEXT"
            | "SERIAL"
            | "SIGNED_PDF"
            | "STRING"
            | "STRING_EXPRESSION"
            | "SUM"
            | "TEXT"
            | "TEXT_EXPRESSION"
            | "TIME"
            | "URL"
            | "ZIPCODE")[];
        allowedTypes?: string[];
        apiVersion?: string;
        as?:
            | "BUTTONGROUP"
            | "DROPDOWN"
            | "MULTILINE"
            | "UNIT"
            | "VISIBILITY";
        component?: string;
        condition?: {
            comparator: "EQ" | "EQ_COMPONENT_ID";
            option: string;
            type: "SHOW" | "HIDE";
            value: string | number | boolean;
        };
        createAction?: {
            name?: string;
            permissions?: string;
            template: string;
            value?: string;
        };
        createProperty?: {
            type: CreatePropertyKind;
            value?: string;
        };
        dataType?: string;
        dependsOn?: string;
        disabled?: boolean;
        manageObjectValues?: {
            buttonLabel?: string;
            label?: string;
            selectableObjectKey?: boolean;
            value: AllowedValue[];
        };
        mediaType?: "IMAGE" | "VIDEO";
        modal?: {
            generateCustomModel: boolean;
            modelRequired: boolean;
            type: "MODEL_AND_PROPERTIES";
        };
        placeholder?: string;
        pushToWrapper?: {
            condition?: {
                comparator: "EQ" | "EQ_COMPONENT_ID";
                option: string;
                type: "SHOW" | "HIDE";
                value: string | number | boolean;
            };
            name: string;
        };
        showOnDrop?: boolean;
        showTextStyleColor?: boolean;
    };
    key: string;
    label: string;
    optionRef?: {
        id?: string;
        inherit?:
            | {}
            | "name"
            | (string | {})[]
            | "label"
            | "value";
        sourceId?: string;
    };
    type: string;
}

Hierarchy (view full)

Properties

configuration?: {
    allowFormatting?: boolean;
    allowPropertyName?: boolean;
    allowRelations?: boolean;
    allowedClickThroughKinds?: (
        | "BELONGS_TO"
        | "HAS_AND_BELONGS_TO_MANY"
        | "HAS_MANY"
        | "OBJECT")[];
    allowedExtensions?: string[];
    allowedInput?: {
        name: string;
        value: string | number | boolean;
    }[];
    allowedKinds?: string[];
    allowedSplitButtonKinds?: (
        | "AUTO_INCREMENT"
        | "BELONGS_TO"
        | "BOOLEAN"
        | "BOOLEAN_EXPRESSION"
        | "COUNT"
        | "DATE"
        | "DATE_EXPRESSION"
        | "DATE_TIME"
        | "DATE_TIME_EXPRESSION"
        | "DECIMAL"
        | "DECIMAL_EXPRESSION"
        | "EMAIL"
        | "EMAIL_ADDRESS"
        | "ENUM"
        | "FILE"
        | "FLOAT"
        | "GOOGLE_DOCUMENT"
        | "HAS_AND_BELONGS_TO_MANY"
        | "HAS_MANY"
        | "HAS_ONE"
        | "IBAN"
        | "IMAGE"
        | "INTEGER"
        | "INTEGER_EXPRESSION"
        | "LIST"
        | "LOGIN_TOKEN"
        | "MINUTES"
        | "MINUTES_EXPRESSION"
        | "MULTI_FILE"
        | "MULTI_IMAGE"
        | "OBJECT"
        | "PASSWORD"
        | "PDF"
        | "PERIODIC_COUNT"
        | "PHONE_NUMBER"
        | "PRICE"
        | "PRICE_EXPRESSION"
        | "RICH_TEXT"
        | "SERIAL"
        | "SIGNED_PDF"
        | "STRING"
        | "STRING_EXPRESSION"
        | "SUM"
        | "TEXT"
        | "TEXT_EXPRESSION"
        | "TIME"
        | "URL"
        | "ZIPCODE")[];
    allowedTypes?: string[];
    apiVersion?: string;
    as?:
        | "BUTTONGROUP"
        | "DROPDOWN"
        | "MULTILINE"
        | "UNIT"
        | "VISIBILITY";
    component?: string;
    condition?: {
        comparator: "EQ" | "EQ_COMPONENT_ID";
        option: string;
        type: "SHOW" | "HIDE";
        value: string | number | boolean;
    };
    createAction?: {
        name?: string;
        permissions?: string;
        template: string;
        value?: string;
    };
    createProperty?: {
        type: CreatePropertyKind;
        value?: string;
    };
    dataType?: string;
    dependsOn?: string;
    disabled?: boolean;
    manageObjectValues?: {
        buttonLabel?: string;
        label?: string;
        selectableObjectKey?: boolean;
        value: AllowedValue[];
    };
    mediaType?: "IMAGE" | "VIDEO";
    modal?: {
        generateCustomModel: boolean;
        modelRequired: boolean;
        type: "MODEL_AND_PROPERTIES";
    };
    placeholder?: string;
    pushToWrapper?: {
        condition?: {
            comparator: "EQ" | "EQ_COMPONENT_ID";
            option: string;
            type: "SHOW" | "HIDE";
            value: string | number | boolean;
        };
        name: string;
    };
    showOnDrop?: boolean;
    showTextStyleColor?: boolean;
}
key: string
label: string
optionRef?: {
    id?: string;
    inherit?:
        | {}
        | "name"
        | (string | {})[]
        | "label"
        | "value";
    sourceId?: string;
}
type: string
diff --git a/docs/interfaces/PrefabCustomInteraction.html b/docs/interfaces/PrefabCustomInteraction.html index ce6e62f6..d6a9123e 100644 --- a/docs/interfaces/PrefabCustomInteraction.html +++ b/docs/interfaces/PrefabCustomInteraction.html @@ -1 +1,7 @@ -PrefabCustomInteraction | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

name: string
ref: { sourceComponentId?: string; targetComponentId?: string }

Type declaration

  • Optional sourceComponentId?: string
  • Optional targetComponentId?: string
sourceComponentId?: string
sourceEvent: string
targetOptionName?: string
type: Custom

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PrefabCustomInteraction | @betty-blocks/component-sdk
interface PrefabCustomInteraction {
    name: string;
    ref: {
        sourceComponentId?: string;
        targetComponentId?: string;
    };
    sourceComponentId?: string;
    sourceEvent: string;
    targetOptionName?: string;
    type: Custom;
}

Hierarchy (view full)

Properties

name: string
ref: {
    sourceComponentId?: string;
    targetComponentId?: string;
}
sourceComponentId?: string
sourceEvent: string
targetOptionName?: string
type: Custom
diff --git a/docs/interfaces/PrefabGlobalInteraction.html b/docs/interfaces/PrefabGlobalInteraction.html index 640ef32a..86c3c0e5 100644 --- a/docs/interfaces/PrefabGlobalInteraction.html +++ b/docs/interfaces/PrefabGlobalInteraction.html @@ -1 +1,8 @@ -PrefabGlobalInteraction | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

name: string
ref: { sourceComponentId?: string; targetComponentId?: string }

Type declaration

  • Optional sourceComponentId?: string
  • Optional targetComponentId?: string
sourceComponentId?: string
sourceEvent: string
targetOptionName?: string
type: Global

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PrefabGlobalInteraction | @betty-blocks/component-sdk
interface PrefabGlobalInteraction {
    name: string;
    parameters: PrefabInteractionParameter[];
    ref: {
        sourceComponentId?: string;
        targetComponentId?: string;
    };
    sourceComponentId?: string;
    sourceEvent: string;
    targetOptionName?: string;
    type: Global;
}

Hierarchy (view full)

Properties

name: string
ref: {
    sourceComponentId?: string;
    targetComponentId?: string;
}
sourceComponentId?: string
sourceEvent: string
targetOptionName?: string
type: Global
diff --git a/docs/interfaces/PrefabLinkedOptionBase.html b/docs/interfaces/PrefabLinkedOptionBase.html index 37b59b22..74963377 100644 --- a/docs/interfaces/PrefabLinkedOptionBase.html +++ b/docs/interfaces/PrefabLinkedOptionBase.html @@ -1 +1,3 @@ -PrefabLinkedOptionBase | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

Properties

key: string
label: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PrefabLinkedOptionBase | @betty-blocks/component-sdk
interface PrefabLinkedOptionBase {
    key: string;
    label: string;
}

Hierarchy (view full)

Properties

Properties

key: string
label: string
diff --git a/docs/interfaces/PrefabPartial.html b/docs/interfaces/PrefabPartial.html index 4debc797..55910b6e 100644 --- a/docs/interfaces/PrefabPartial.html +++ b/docs/interfaces/PrefabPartial.html @@ -1 +1,4 @@ -PrefabPartial | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • PrefabPartial

Index

Properties

partialId: string
ref?: { id: string }

Type declaration

  • id: string
type: "PARTIAL"

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PrefabPartial | @betty-blocks/component-sdk
interface PrefabPartial {
    partialId: string;
    ref?: {
        id: string;
    };
    type: "PARTIAL";
}

Properties

Properties

partialId: string
ref?: {
    id: string;
}
type: "PARTIAL"
diff --git a/docs/interfaces/PrefabVariable.html b/docs/interfaces/PrefabVariable.html index 5ca6beb0..1e3ea481 100644 --- a/docs/interfaces/PrefabVariable.html +++ b/docs/interfaces/PrefabVariable.html @@ -1 +1,5 @@ -PrefabVariable | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • PrefabVariable

Index

Properties

name: string
options?: unknown
ref: { actionId?: string; endpointId?: string; id: string }

Type declaration

  • Optional actionId?: string
  • Optional endpointId?: string
  • id: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PrefabVariable | @betty-blocks/component-sdk
interface PrefabVariable {
    kind: PrefabVariableKind;
    name: string;
    options?: unknown;
    ref: {
        actionId?: string;
        endpointId?: string;
        id: string;
    };
}

Properties

Properties

name: string
options?: unknown
ref: {
    actionId?: string;
    endpointId?: string;
    id: string;
}
diff --git a/docs/interfaces/PrefabWrapper.html b/docs/interfaces/PrefabWrapper.html index 4b830857..e1540efc 100644 --- a/docs/interfaces/PrefabWrapper.html +++ b/docs/interfaces/PrefabWrapper.html @@ -1 +1,6 @@ -PrefabWrapper | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • PrefabWrapper

Index

Properties

descendants: PrefabReference[]
label?: string
optionCategories?: OptionCategory[]
type: "WRAPPER"

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PrefabWrapper | @betty-blocks/component-sdk
interface PrefabWrapper {
    descendants: PrefabReference[];
    label?: string;
    optionCategories?: OptionCategory[];
    options: (PrefabComponentOption | PrefabWrapperLinkedOption | PrefabWrapperLinkedPartialOption)[];
    type: "WRAPPER";
}

Properties

descendants: PrefabReference[]
label?: string
optionCategories?: OptionCategory[]
type: "WRAPPER"
diff --git a/docs/interfaces/PrefabWrapperLinkedOption.html b/docs/interfaces/PrefabWrapperLinkedOption.html index 88441873..6dc4eece 100644 --- a/docs/interfaces/PrefabWrapperLinkedOption.html +++ b/docs/interfaces/PrefabWrapperLinkedOption.html @@ -1 +1,9 @@ -PrefabWrapperLinkedOption | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface PrefabWrapperLinkedOption

Hierarchy

Index

Properties

key: string
label: string
optionRef?: { id?: string; inherit?: "name" | "label" | "value" | (string | {})[]; sourceId?: string }

Type declaration

  • Optional id?: string
  • Optional inherit?: "name" | "label" | "value" | (string | {})[]
  • Optional sourceId?: string
showInAddChild?: boolean
showInReconfigure?: boolean
type: "LINKED_OPTION"
value?: { ref: { componentId: string; optionId: string } }

Type declaration

  • ref: { componentId: string; optionId: string }
    • componentId: string
    • optionId: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PrefabWrapperLinkedOption | @betty-blocks/component-sdk

Interface PrefabWrapperLinkedOption

interface PrefabWrapperLinkedOption {
    configuration?: PrefabWrapperLinkedOptionConfiguration;
    key: string;
    label: string;
    optionRef?: {
        id?: string;
        inherit?:
            | "name"
            | (string | {})[]
            | "label"
            | "value";
        sourceId?: string;
    };
    showInAddChild?: boolean;
    showInReconfigure?: boolean;
    type: "LINKED_OPTION";
    value?: {
        ref: {
            componentId: string;
            optionId: string;
        };
    };
}

Hierarchy (view full)

Properties

key: string
label: string
optionRef?: {
    id?: string;
    inherit?:
        | "name"
        | (string | {})[]
        | "label"
        | "value";
    sourceId?: string;
}
showInAddChild?: boolean
showInReconfigure?: boolean
type: "LINKED_OPTION"
value?: {
    ref: {
        componentId: string;
        optionId: string;
    };
}
diff --git a/docs/interfaces/PrefabWrapperLinkedPartialOption.html b/docs/interfaces/PrefabWrapperLinkedPartialOption.html index 62aab8c3..7e8a44ce 100644 --- a/docs/interfaces/PrefabWrapperLinkedPartialOption.html +++ b/docs/interfaces/PrefabWrapperLinkedPartialOption.html @@ -1 +1,9 @@ -PrefabWrapperLinkedPartialOption | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface PrefabWrapperLinkedPartialOption

Hierarchy

Index

Properties

key: string
label: string
optionRef?: { id?: string; inherit?: "name" | "label" | "value" | (string | {})[]; sourceId?: string }

Type declaration

  • Optional id?: string
  • Optional inherit?: "name" | "label" | "value" | (string | {})[]
  • Optional sourceId?: string
showInAddChild?: boolean
showInReconfigure?: boolean
type: "LINKED_PARTIAL"
value?: { ref: { componentId: string } }

Type declaration

  • ref: { componentId: string }
    • componentId: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PrefabWrapperLinkedPartialOption | @betty-blocks/component-sdk

Interface PrefabWrapperLinkedPartialOption

interface PrefabWrapperLinkedPartialOption {
    configuration?: PrefabWrapperLinkedOptionConfiguration;
    key: string;
    label: string;
    optionRef?: {
        id?: string;
        inherit?:
            | "name"
            | (string | {})[]
            | "label"
            | "value";
        sourceId?: string;
    };
    showInAddChild?: boolean;
    showInReconfigure?: boolean;
    type: "LINKED_PARTIAL";
    value?: {
        ref: {
            componentId: string;
        };
    };
}

Hierarchy (view full)

Properties

key: string
label: string
optionRef?: {
    id?: string;
    inherit?:
        | "name"
        | (string | {})[]
        | "label"
        | "value";
    sourceId?: string;
}
showInAddChild?: boolean
showInReconfigure?: boolean
type: "LINKED_PARTIAL"
value?: {
    ref: {
        componentId: string;
    };
}
diff --git a/docs/interfaces/StaticValue.html b/docs/interfaces/StaticValue.html index 5be26884..50d6ec5a 100644 --- a/docs/interfaces/StaticValue.html +++ b/docs/interfaces/StaticValue.html @@ -1 +1,3 @@ -StaticValue | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • StaticValue

Index

Properties

Properties

type: "STATIC"
value: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +StaticValue | @betty-blocks/component-sdk
interface StaticValue {
    type: "STATIC";
    value: string;
}

Properties

Properties

type: "STATIC"
value: string
diff --git a/docs/interfaces/StyleDefinition.html b/docs/interfaces/StyleDefinition.html index 276f69cf..1a17c207 100644 --- a/docs/interfaces/StyleDefinition.html +++ b/docs/interfaces/StyleDefinition.html @@ -1 +1,5 @@ -StyleDefinition | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • StyleDefinition

Index

Properties

name: string
type: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +StyleDefinition | @betty-blocks/component-sdk
interface StyleDefinition {
    basis: StyleDefinitionContentObject;
    name: string;
    states: StyleDefinitionState[];
    type: string;
}

Properties

Properties

name: string
type: string
diff --git a/docs/interfaces/StyleDefinitionContentObject.html b/docs/interfaces/StyleDefinitionContentObject.html index eec0497f..0b9ea470 100644 --- a/docs/interfaces/StyleDefinitionContentObject.html +++ b/docs/interfaces/StyleDefinitionContentObject.html @@ -1 +1,17 @@ -StyleDefinitionContentObject | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface StyleDefinitionContentObject

Hierarchy

  • StyleDefinitionContentObject

Index

Properties

backgroundColor?: RefOrValue
borderColor?: RefOrValue
borderRadius?: string[]
borderStyle?: string
borderWidth?: string[]
boxShadow?: string
color?: RefOrValue
fontFamily?: string
fontSize?: string
fontStyle?: string
fontWeight?: string
letterSpacing?: string
lineHeight?: string
padding?: string[]
textDecoration?: string
textTransform?: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +StyleDefinitionContentObject | @betty-blocks/component-sdk

Interface StyleDefinitionContentObject

interface StyleDefinitionContentObject {
    backgroundColor?: RefOrValue;
    borderColor?: RefOrValue;
    borderRadius?: string[];
    borderStyle?: string;
    borderWidth?: string[];
    boxShadow?: string;
    color?: RefOrValue;
    fontFamily?: string;
    fontSize?: string;
    fontStyle?: string;
    fontWeight?: string;
    letterSpacing?: string;
    lineHeight?: string;
    padding?: string[];
    textDecoration?: string;
    textTransform?: string;
}

Properties

backgroundColor?: RefOrValue
borderColor?: RefOrValue
borderRadius?: string[]
borderStyle?: string
borderWidth?: string[]
boxShadow?: string
color?: RefOrValue
fontFamily?: string
fontSize?: string
fontStyle?: string
fontWeight?: string
letterSpacing?: string
lineHeight?: string
padding?: string[]
textDecoration?: string
textTransform?: string
diff --git a/docs/interfaces/StyleDefinitionState.html b/docs/interfaces/StyleDefinitionState.html index df9d2021..4099cbf6 100644 --- a/docs/interfaces/StyleDefinitionState.html +++ b/docs/interfaces/StyleDefinitionState.html @@ -1 +1,3 @@ -StyleDefinitionState | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • StyleDefinitionState

Index

Properties

Properties

name: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +StyleDefinitionState | @betty-blocks/component-sdk
interface StyleDefinitionState {
    content: StyleDefinitionContentObject;
    name: string;
}

Properties

Properties

name: string
diff --git a/docs/interfaces/StyleReference.html b/docs/interfaces/StyleReference.html index 101977df..1a208139 100644 --- a/docs/interfaces/StyleReference.html +++ b/docs/interfaces/StyleReference.html @@ -1 +1,3 @@ -StyleReference | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • StyleReference

Index

Properties

Properties

name: string
overwrite?: StyleDefinitionState[]

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +StyleReference | @betty-blocks/component-sdk
interface StyleReference {
    name: string;
    overwrite?: StyleDefinitionState[];
}

Properties

Properties

name: string
overwrite?: StyleDefinitionState[]
diff --git a/docs/interfaces/ThemeColorReference.html b/docs/interfaces/ThemeColorReference.html index 40cf48ef..1f357738 100644 --- a/docs/interfaces/ThemeColorReference.html +++ b/docs/interfaces/ThemeColorReference.html @@ -1 +1,3 @@ -ThemeColorReference | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • ThemeColorReference

Index

Properties

Properties

type: "THEME_COLOR"
value: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ThemeColorReference | @betty-blocks/component-sdk
interface ThemeColorReference {
    type: "THEME_COLOR";
    value: string;
}

Properties

Properties

type: "THEME_COLOR"
value: string
diff --git a/docs/interfaces/ValueDefault.html b/docs/interfaces/ValueDefault.html index 16f0408b..6281ce94 100644 --- a/docs/interfaces/ValueDefault.html +++ b/docs/interfaces/ValueDefault.html @@ -1 +1,10 @@ -ValueDefault | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

configuration?: { allowFormatting?: boolean; allowPropertyName?: boolean; allowRelations?: boolean; allowedClickThroughKinds?: ("BELONGS_TO" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "OBJECT")[]; allowedExtensions?: string[]; allowedInput?: { name: string; value: string | number | boolean }[]; allowedKinds?: string[]; allowedSplitButtonKinds?: ("AUTO_INCREMENT" | "BELONGS_TO" | "BOOLEAN" | "BOOLEAN_EXPRESSION" | "COUNT" | "DATE" | "DATE_EXPRESSION" | "DATE_TIME" | "DATE_TIME_EXPRESSION" | "DECIMAL" | "DECIMAL_EXPRESSION" | "EMAIL" | "EMAIL_ADDRESS" | "ENUM" | "FILE" | "FLOAT" | "GOOGLE_DOCUMENT" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "HAS_ONE" | "IBAN" | "IMAGE" | "INTEGER" | "INTEGER_EXPRESSION" | "LIST" | "LOGIN_TOKEN" | "MINUTES" | "MINUTES_EXPRESSION" | "MULTI_FILE" | "MULTI_IMAGE" | "OBJECT" | "PASSWORD" | "PDF" | "PERIODIC_COUNT" | "PHONE_NUMBER" | "PRICE" | "PRICE_EXPRESSION" | "RICH_TEXT" | "SERIAL" | "SIGNED_PDF" | "STRING" | "STRING_EXPRESSION" | "SUM" | "TEXT" | "TEXT_EXPRESSION" | "TIME" | "URL" | "ZIPCODE")[]; allowedTypes?: string[]; apiVersion?: string; as?: "BUTTONGROUP" | "DROPDOWN" | "MULTILINE" | "UNIT" | "VISIBILITY"; component?: string; condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | number | boolean }; createAction?: { name?: string; permissions?: string; template: string; value?: string }; createProperty?: { type: CreatePropertyKind; value?: string }; dataType?: string; dependsOn?: string; disabled?: boolean; manageObjectValues?: { buttonLabel?: string; label?: string; selectableObjectKey?: boolean; value: AllowedValue[] }; mediaType?: "IMAGE" | "VIDEO"; modal?: { generateCustomModel: boolean; modelRequired: boolean; type: "MODEL_AND_PROPERTIES" }; placeholder?: string; pushToWrapper?: { condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | number | boolean }; name: string }; showOnDrop?: boolean; showTextStyleColor?: boolean }

Type declaration

  • Optional allowFormatting?: boolean
  • Optional allowPropertyName?: boolean
  • Optional allowRelations?: boolean
  • Optional allowedClickThroughKinds?: ("BELONGS_TO" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "OBJECT")[]
  • Optional allowedExtensions?: string[]
  • Optional allowedInput?: { name: string; value: string | number | boolean }[]
  • Optional allowedKinds?: string[]
  • Optional allowedSplitButtonKinds?: ("AUTO_INCREMENT" | "BELONGS_TO" | "BOOLEAN" | "BOOLEAN_EXPRESSION" | "COUNT" | "DATE" | "DATE_EXPRESSION" | "DATE_TIME" | "DATE_TIME_EXPRESSION" | "DECIMAL" | "DECIMAL_EXPRESSION" | "EMAIL" | "EMAIL_ADDRESS" | "ENUM" | "FILE" | "FLOAT" | "GOOGLE_DOCUMENT" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "HAS_ONE" | "IBAN" | "IMAGE" | "INTEGER" | "INTEGER_EXPRESSION" | "LIST" | "LOGIN_TOKEN" | "MINUTES" | "MINUTES_EXPRESSION" | "MULTI_FILE" | "MULTI_IMAGE" | "OBJECT" | "PASSWORD" | "PDF" | "PERIODIC_COUNT" | "PHONE_NUMBER" | "PRICE" | "PRICE_EXPRESSION" | "RICH_TEXT" | "SERIAL" | "SIGNED_PDF" | "STRING" | "STRING_EXPRESSION" | "SUM" | "TEXT" | "TEXT_EXPRESSION" | "TIME" | "URL" | "ZIPCODE")[]
  • Optional allowedTypes?: string[]
  • Optional apiVersion?: string
  • Optional as?: "BUTTONGROUP" | "DROPDOWN" | "MULTILINE" | "UNIT" | "VISIBILITY"
  • Optional component?: string
  • Optional condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | number | boolean }
    • comparator: "EQ" | "EQ_COMPONENT_ID"
    • option: string
    • type: "SHOW" | "HIDE"
    • value: string | number | boolean
  • Optional createAction?: { name?: string; permissions?: string; template: string; value?: string }
    • Optional name?: string
    • Optional permissions?: string
    • template: string
    • Optional value?: string
  • Optional createProperty?: { type: CreatePropertyKind; value?: string }
  • Optional dataType?: string
  • Optional dependsOn?: string
  • Optional disabled?: boolean
  • Optional manageObjectValues?: { buttonLabel?: string; label?: string; selectableObjectKey?: boolean; value: AllowedValue[] }
    • Optional buttonLabel?: string
    • Optional label?: string
    • Optional selectableObjectKey?: boolean
    • value: AllowedValue[]
  • Optional mediaType?: "IMAGE" | "VIDEO"
  • Optional modal?: { generateCustomModel: boolean; modelRequired: boolean; type: "MODEL_AND_PROPERTIES" }
    • generateCustomModel: boolean
    • modelRequired: boolean
    • type: "MODEL_AND_PROPERTIES"
  • Optional placeholder?: string
  • Optional pushToWrapper?: { condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | number | boolean }; name: string }
    • Optional condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | number | boolean }
      • comparator: "EQ" | "EQ_COMPONENT_ID"
      • option: string
      • type: "SHOW" | "HIDE"
      • value: string | number | boolean
    • name: string
  • Optional showOnDrop?: boolean
  • Optional showTextStyleColor?: boolean
key: string
label: string
optionRef?: { id?: string; inherit?: {} | "name" | "label" | "value" | (string | {})[]; sourceId?: string }

Type declaration

  • Optional id?: string
  • Optional inherit?: {} | "name" | "label" | "value" | (string | {})[]
  • Optional sourceId?: string
ref?: { id?: string }

Type declaration

  • Optional id?: string
showInAddChild?: boolean
showInReconfigure?: boolean
type: string
value: string | number | boolean | string[] | ValueConfig

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ValueDefault | @betty-blocks/component-sdk
interface ValueDefault {
    configuration?: {
        allowFormatting?: boolean;
        allowPropertyName?: boolean;
        allowRelations?: boolean;
        allowedClickThroughKinds?: (
            | "BELONGS_TO"
            | "HAS_AND_BELONGS_TO_MANY"
            | "HAS_MANY"
            | "OBJECT")[];
        allowedExtensions?: string[];
        allowedInput?: {
            name: string;
            value: string | number | boolean;
        }[];
        allowedKinds?: string[];
        allowedSplitButtonKinds?: (
            | "AUTO_INCREMENT"
            | "BELONGS_TO"
            | "BOOLEAN"
            | "BOOLEAN_EXPRESSION"
            | "COUNT"
            | "DATE"
            | "DATE_EXPRESSION"
            | "DATE_TIME"
            | "DATE_TIME_EXPRESSION"
            | "DECIMAL"
            | "DECIMAL_EXPRESSION"
            | "EMAIL"
            | "EMAIL_ADDRESS"
            | "ENUM"
            | "FILE"
            | "FLOAT"
            | "GOOGLE_DOCUMENT"
            | "HAS_AND_BELONGS_TO_MANY"
            | "HAS_MANY"
            | "HAS_ONE"
            | "IBAN"
            | "IMAGE"
            | "INTEGER"
            | "INTEGER_EXPRESSION"
            | "LIST"
            | "LOGIN_TOKEN"
            | "MINUTES"
            | "MINUTES_EXPRESSION"
            | "MULTI_FILE"
            | "MULTI_IMAGE"
            | "OBJECT"
            | "PASSWORD"
            | "PDF"
            | "PERIODIC_COUNT"
            | "PHONE_NUMBER"
            | "PRICE"
            | "PRICE_EXPRESSION"
            | "RICH_TEXT"
            | "SERIAL"
            | "SIGNED_PDF"
            | "STRING"
            | "STRING_EXPRESSION"
            | "SUM"
            | "TEXT"
            | "TEXT_EXPRESSION"
            | "TIME"
            | "URL"
            | "ZIPCODE")[];
        allowedTypes?: string[];
        apiVersion?: string;
        as?:
            | "BUTTONGROUP"
            | "DROPDOWN"
            | "MULTILINE"
            | "UNIT"
            | "VISIBILITY";
        component?: string;
        condition?: {
            comparator: "EQ" | "EQ_COMPONENT_ID";
            option: string;
            type: "SHOW" | "HIDE";
            value: string | number | boolean;
        };
        createAction?: {
            name?: string;
            permissions?: string;
            template: string;
            value?: string;
        };
        createProperty?: {
            type: CreatePropertyKind;
            value?: string;
        };
        dataType?: string;
        dependsOn?: string;
        disabled?: boolean;
        manageObjectValues?: {
            buttonLabel?: string;
            label?: string;
            selectableObjectKey?: boolean;
            value: AllowedValue[];
        };
        mediaType?: "IMAGE" | "VIDEO";
        modal?: {
            generateCustomModel: boolean;
            modelRequired: boolean;
            type: "MODEL_AND_PROPERTIES";
        };
        placeholder?: string;
        pushToWrapper?: {
            condition?: {
                comparator: "EQ" | "EQ_COMPONENT_ID";
                option: string;
                type: "SHOW" | "HIDE";
                value: string | number | boolean;
            };
            name: string;
        };
        showOnDrop?: boolean;
        showTextStyleColor?: boolean;
    };
    key: string;
    label: string;
    optionRef?: {
        id?: string;
        inherit?:
            | {}
            | "name"
            | (string | {})[]
            | "label"
            | "value";
        sourceId?: string;
    };
    ref?: {
        id?: string;
    };
    showInAddChild?: boolean;
    showInReconfigure?: boolean;
    type: string;
    value:
        | string
        | number
        | boolean
        | string[]
        | ValueConfig;
}

Hierarchy (view full)

Properties

configuration?: {
    allowFormatting?: boolean;
    allowPropertyName?: boolean;
    allowRelations?: boolean;
    allowedClickThroughKinds?: (
        | "BELONGS_TO"
        | "HAS_AND_BELONGS_TO_MANY"
        | "HAS_MANY"
        | "OBJECT")[];
    allowedExtensions?: string[];
    allowedInput?: {
        name: string;
        value: string | number | boolean;
    }[];
    allowedKinds?: string[];
    allowedSplitButtonKinds?: (
        | "AUTO_INCREMENT"
        | "BELONGS_TO"
        | "BOOLEAN"
        | "BOOLEAN_EXPRESSION"
        | "COUNT"
        | "DATE"
        | "DATE_EXPRESSION"
        | "DATE_TIME"
        | "DATE_TIME_EXPRESSION"
        | "DECIMAL"
        | "DECIMAL_EXPRESSION"
        | "EMAIL"
        | "EMAIL_ADDRESS"
        | "ENUM"
        | "FILE"
        | "FLOAT"
        | "GOOGLE_DOCUMENT"
        | "HAS_AND_BELONGS_TO_MANY"
        | "HAS_MANY"
        | "HAS_ONE"
        | "IBAN"
        | "IMAGE"
        | "INTEGER"
        | "INTEGER_EXPRESSION"
        | "LIST"
        | "LOGIN_TOKEN"
        | "MINUTES"
        | "MINUTES_EXPRESSION"
        | "MULTI_FILE"
        | "MULTI_IMAGE"
        | "OBJECT"
        | "PASSWORD"
        | "PDF"
        | "PERIODIC_COUNT"
        | "PHONE_NUMBER"
        | "PRICE"
        | "PRICE_EXPRESSION"
        | "RICH_TEXT"
        | "SERIAL"
        | "SIGNED_PDF"
        | "STRING"
        | "STRING_EXPRESSION"
        | "SUM"
        | "TEXT"
        | "TEXT_EXPRESSION"
        | "TIME"
        | "URL"
        | "ZIPCODE")[];
    allowedTypes?: string[];
    apiVersion?: string;
    as?:
        | "BUTTONGROUP"
        | "DROPDOWN"
        | "MULTILINE"
        | "UNIT"
        | "VISIBILITY";
    component?: string;
    condition?: {
        comparator: "EQ" | "EQ_COMPONENT_ID";
        option: string;
        type: "SHOW" | "HIDE";
        value: string | number | boolean;
    };
    createAction?: {
        name?: string;
        permissions?: string;
        template: string;
        value?: string;
    };
    createProperty?: {
        type: CreatePropertyKind;
        value?: string;
    };
    dataType?: string;
    dependsOn?: string;
    disabled?: boolean;
    manageObjectValues?: {
        buttonLabel?: string;
        label?: string;
        selectableObjectKey?: boolean;
        value: AllowedValue[];
    };
    mediaType?: "IMAGE" | "VIDEO";
    modal?: {
        generateCustomModel: boolean;
        modelRequired: boolean;
        type: "MODEL_AND_PROPERTIES";
    };
    placeholder?: string;
    pushToWrapper?: {
        condition?: {
            comparator: "EQ" | "EQ_COMPONENT_ID";
            option: string;
            type: "SHOW" | "HIDE";
            value: string | number | boolean;
        };
        name: string;
    };
    showOnDrop?: boolean;
    showTextStyleColor?: boolean;
}
key: string
label: string
optionRef?: {
    id?: string;
    inherit?:
        | {}
        | "name"
        | (string | {})[]
        | "label"
        | "value";
    sourceId?: string;
}
ref?: {
    id?: string;
}
showInAddChild?: boolean
showInReconfigure?: boolean
type: string
value:
    | string
    | number
    | boolean
    | string[]
    | ValueConfig
diff --git a/docs/interfaces/ValueRef.html b/docs/interfaces/ValueRef.html index 76d89250..226f0c51 100644 --- a/docs/interfaces/ValueRef.html +++ b/docs/interfaces/ValueRef.html @@ -1 +1,9 @@ -ValueRef | @betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

configuration?: { allowFormatting?: boolean; allowPropertyName?: boolean; allowRelations?: boolean; allowedClickThroughKinds?: ("BELONGS_TO" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "OBJECT")[]; allowedExtensions?: string[]; allowedInput?: { name: string; value: string | number | boolean }[]; allowedKinds?: string[]; allowedSplitButtonKinds?: ("AUTO_INCREMENT" | "BELONGS_TO" | "BOOLEAN" | "BOOLEAN_EXPRESSION" | "COUNT" | "DATE" | "DATE_EXPRESSION" | "DATE_TIME" | "DATE_TIME_EXPRESSION" | "DECIMAL" | "DECIMAL_EXPRESSION" | "EMAIL" | "EMAIL_ADDRESS" | "ENUM" | "FILE" | "FLOAT" | "GOOGLE_DOCUMENT" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "HAS_ONE" | "IBAN" | "IMAGE" | "INTEGER" | "INTEGER_EXPRESSION" | "LIST" | "LOGIN_TOKEN" | "MINUTES" | "MINUTES_EXPRESSION" | "MULTI_FILE" | "MULTI_IMAGE" | "OBJECT" | "PASSWORD" | "PDF" | "PERIODIC_COUNT" | "PHONE_NUMBER" | "PRICE" | "PRICE_EXPRESSION" | "RICH_TEXT" | "SERIAL" | "SIGNED_PDF" | "STRING" | "STRING_EXPRESSION" | "SUM" | "TEXT" | "TEXT_EXPRESSION" | "TIME" | "URL" | "ZIPCODE")[]; allowedTypes?: string[]; apiVersion?: string; as?: "BUTTONGROUP" | "DROPDOWN" | "MULTILINE" | "UNIT" | "VISIBILITY"; component?: string; condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | number | boolean }; createAction?: { name?: string; permissions?: string; template: string; value?: string }; createProperty?: { type: CreatePropertyKind; value?: string }; dataType?: string; dependsOn?: string; disabled?: boolean; manageObjectValues?: { buttonLabel?: string; label?: string; selectableObjectKey?: boolean; value: AllowedValue[] }; mediaType?: "IMAGE" | "VIDEO"; modal?: { generateCustomModel: boolean; modelRequired: boolean; type: "MODEL_AND_PROPERTIES" }; placeholder?: string; pushToWrapper?: { condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | number | boolean }; name: string }; showOnDrop?: boolean; showTextStyleColor?: boolean }

Type declaration

  • Optional allowFormatting?: boolean
  • Optional allowPropertyName?: boolean
  • Optional allowRelations?: boolean
  • Optional allowedClickThroughKinds?: ("BELONGS_TO" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "OBJECT")[]
  • Optional allowedExtensions?: string[]
  • Optional allowedInput?: { name: string; value: string | number | boolean }[]
  • Optional allowedKinds?: string[]
  • Optional allowedSplitButtonKinds?: ("AUTO_INCREMENT" | "BELONGS_TO" | "BOOLEAN" | "BOOLEAN_EXPRESSION" | "COUNT" | "DATE" | "DATE_EXPRESSION" | "DATE_TIME" | "DATE_TIME_EXPRESSION" | "DECIMAL" | "DECIMAL_EXPRESSION" | "EMAIL" | "EMAIL_ADDRESS" | "ENUM" | "FILE" | "FLOAT" | "GOOGLE_DOCUMENT" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "HAS_ONE" | "IBAN" | "IMAGE" | "INTEGER" | "INTEGER_EXPRESSION" | "LIST" | "LOGIN_TOKEN" | "MINUTES" | "MINUTES_EXPRESSION" | "MULTI_FILE" | "MULTI_IMAGE" | "OBJECT" | "PASSWORD" | "PDF" | "PERIODIC_COUNT" | "PHONE_NUMBER" | "PRICE" | "PRICE_EXPRESSION" | "RICH_TEXT" | "SERIAL" | "SIGNED_PDF" | "STRING" | "STRING_EXPRESSION" | "SUM" | "TEXT" | "TEXT_EXPRESSION" | "TIME" | "URL" | "ZIPCODE")[]
  • Optional allowedTypes?: string[]
  • Optional apiVersion?: string
  • Optional as?: "BUTTONGROUP" | "DROPDOWN" | "MULTILINE" | "UNIT" | "VISIBILITY"
  • Optional component?: string
  • Optional condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | number | boolean }
    • comparator: "EQ" | "EQ_COMPONENT_ID"
    • option: string
    • type: "SHOW" | "HIDE"
    • value: string | number | boolean
  • Optional createAction?: { name?: string; permissions?: string; template: string; value?: string }
    • Optional name?: string
    • Optional permissions?: string
    • template: string
    • Optional value?: string
  • Optional createProperty?: { type: CreatePropertyKind; value?: string }
  • Optional dataType?: string
  • Optional dependsOn?: string
  • Optional disabled?: boolean
  • Optional manageObjectValues?: { buttonLabel?: string; label?: string; selectableObjectKey?: boolean; value: AllowedValue[] }
    • Optional buttonLabel?: string
    • Optional label?: string
    • Optional selectableObjectKey?: boolean
    • value: AllowedValue[]
  • Optional mediaType?: "IMAGE" | "VIDEO"
  • Optional modal?: { generateCustomModel: boolean; modelRequired: boolean; type: "MODEL_AND_PROPERTIES" }
    • generateCustomModel: boolean
    • modelRequired: boolean
    • type: "MODEL_AND_PROPERTIES"
  • Optional placeholder?: string
  • Optional pushToWrapper?: { condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | number | boolean }; name: string }
    • Optional condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | number | boolean }
      • comparator: "EQ" | "EQ_COMPONENT_ID"
      • option: string
      • type: "SHOW" | "HIDE"
      • value: string | number | boolean
    • name: string
  • Optional showOnDrop?: boolean
  • Optional showTextStyleColor?: boolean
key: string
label: string
optionRef?: { id?: string; inherit?: {} | "name" | "label" | "value" | (string | {})[]; sourceId?: string }

Type declaration

  • Optional id?: string
  • Optional inherit?: {} | "name" | "label" | "value" | (string | {})[]
  • Optional sourceId?: string
ref: { id?: string; value: string | string[] }

Type declaration

  • Optional id?: string
  • value: string | string[]
showInAddChild?: boolean
showInReconfigure?: boolean
type: string

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ValueRef | @betty-blocks/component-sdk
interface ValueRef {
    configuration?: {
        allowFormatting?: boolean;
        allowPropertyName?: boolean;
        allowRelations?: boolean;
        allowedClickThroughKinds?: (
            | "BELONGS_TO"
            | "HAS_AND_BELONGS_TO_MANY"
            | "HAS_MANY"
            | "OBJECT")[];
        allowedExtensions?: string[];
        allowedInput?: {
            name: string;
            value: string | number | boolean;
        }[];
        allowedKinds?: string[];
        allowedSplitButtonKinds?: (
            | "AUTO_INCREMENT"
            | "BELONGS_TO"
            | "BOOLEAN"
            | "BOOLEAN_EXPRESSION"
            | "COUNT"
            | "DATE"
            | "DATE_EXPRESSION"
            | "DATE_TIME"
            | "DATE_TIME_EXPRESSION"
            | "DECIMAL"
            | "DECIMAL_EXPRESSION"
            | "EMAIL"
            | "EMAIL_ADDRESS"
            | "ENUM"
            | "FILE"
            | "FLOAT"
            | "GOOGLE_DOCUMENT"
            | "HAS_AND_BELONGS_TO_MANY"
            | "HAS_MANY"
            | "HAS_ONE"
            | "IBAN"
            | "IMAGE"
            | "INTEGER"
            | "INTEGER_EXPRESSION"
            | "LIST"
            | "LOGIN_TOKEN"
            | "MINUTES"
            | "MINUTES_EXPRESSION"
            | "MULTI_FILE"
            | "MULTI_IMAGE"
            | "OBJECT"
            | "PASSWORD"
            | "PDF"
            | "PERIODIC_COUNT"
            | "PHONE_NUMBER"
            | "PRICE"
            | "PRICE_EXPRESSION"
            | "RICH_TEXT"
            | "SERIAL"
            | "SIGNED_PDF"
            | "STRING"
            | "STRING_EXPRESSION"
            | "SUM"
            | "TEXT"
            | "TEXT_EXPRESSION"
            | "TIME"
            | "URL"
            | "ZIPCODE")[];
        allowedTypes?: string[];
        apiVersion?: string;
        as?:
            | "BUTTONGROUP"
            | "DROPDOWN"
            | "MULTILINE"
            | "UNIT"
            | "VISIBILITY";
        component?: string;
        condition?: {
            comparator: "EQ" | "EQ_COMPONENT_ID";
            option: string;
            type: "SHOW" | "HIDE";
            value: string | number | boolean;
        };
        createAction?: {
            name?: string;
            permissions?: string;
            template: string;
            value?: string;
        };
        createProperty?: {
            type: CreatePropertyKind;
            value?: string;
        };
        dataType?: string;
        dependsOn?: string;
        disabled?: boolean;
        manageObjectValues?: {
            buttonLabel?: string;
            label?: string;
            selectableObjectKey?: boolean;
            value: AllowedValue[];
        };
        mediaType?: "IMAGE" | "VIDEO";
        modal?: {
            generateCustomModel: boolean;
            modelRequired: boolean;
            type: "MODEL_AND_PROPERTIES";
        };
        placeholder?: string;
        pushToWrapper?: {
            condition?: {
                comparator: "EQ" | "EQ_COMPONENT_ID";
                option: string;
                type: "SHOW" | "HIDE";
                value: string | number | boolean;
            };
            name: string;
        };
        showOnDrop?: boolean;
        showTextStyleColor?: boolean;
    };
    key: string;
    label: string;
    optionRef?: {
        id?: string;
        inherit?:
            | {}
            | "name"
            | (string | {})[]
            | "label"
            | "value";
        sourceId?: string;
    };
    ref: {
        id?: string;
        value: string | string[];
    };
    showInAddChild?: boolean;
    showInReconfigure?: boolean;
    type: string;
}

Hierarchy (view full)

Properties

configuration?: {
    allowFormatting?: boolean;
    allowPropertyName?: boolean;
    allowRelations?: boolean;
    allowedClickThroughKinds?: (
        | "BELONGS_TO"
        | "HAS_AND_BELONGS_TO_MANY"
        | "HAS_MANY"
        | "OBJECT")[];
    allowedExtensions?: string[];
    allowedInput?: {
        name: string;
        value: string | number | boolean;
    }[];
    allowedKinds?: string[];
    allowedSplitButtonKinds?: (
        | "AUTO_INCREMENT"
        | "BELONGS_TO"
        | "BOOLEAN"
        | "BOOLEAN_EXPRESSION"
        | "COUNT"
        | "DATE"
        | "DATE_EXPRESSION"
        | "DATE_TIME"
        | "DATE_TIME_EXPRESSION"
        | "DECIMAL"
        | "DECIMAL_EXPRESSION"
        | "EMAIL"
        | "EMAIL_ADDRESS"
        | "ENUM"
        | "FILE"
        | "FLOAT"
        | "GOOGLE_DOCUMENT"
        | "HAS_AND_BELONGS_TO_MANY"
        | "HAS_MANY"
        | "HAS_ONE"
        | "IBAN"
        | "IMAGE"
        | "INTEGER"
        | "INTEGER_EXPRESSION"
        | "LIST"
        | "LOGIN_TOKEN"
        | "MINUTES"
        | "MINUTES_EXPRESSION"
        | "MULTI_FILE"
        | "MULTI_IMAGE"
        | "OBJECT"
        | "PASSWORD"
        | "PDF"
        | "PERIODIC_COUNT"
        | "PHONE_NUMBER"
        | "PRICE"
        | "PRICE_EXPRESSION"
        | "RICH_TEXT"
        | "SERIAL"
        | "SIGNED_PDF"
        | "STRING"
        | "STRING_EXPRESSION"
        | "SUM"
        | "TEXT"
        | "TEXT_EXPRESSION"
        | "TIME"
        | "URL"
        | "ZIPCODE")[];
    allowedTypes?: string[];
    apiVersion?: string;
    as?:
        | "BUTTONGROUP"
        | "DROPDOWN"
        | "MULTILINE"
        | "UNIT"
        | "VISIBILITY";
    component?: string;
    condition?: {
        comparator: "EQ" | "EQ_COMPONENT_ID";
        option: string;
        type: "SHOW" | "HIDE";
        value: string | number | boolean;
    };
    createAction?: {
        name?: string;
        permissions?: string;
        template: string;
        value?: string;
    };
    createProperty?: {
        type: CreatePropertyKind;
        value?: string;
    };
    dataType?: string;
    dependsOn?: string;
    disabled?: boolean;
    manageObjectValues?: {
        buttonLabel?: string;
        label?: string;
        selectableObjectKey?: boolean;
        value: AllowedValue[];
    };
    mediaType?: "IMAGE" | "VIDEO";
    modal?: {
        generateCustomModel: boolean;
        modelRequired: boolean;
        type: "MODEL_AND_PROPERTIES";
    };
    placeholder?: string;
    pushToWrapper?: {
        condition?: {
            comparator: "EQ" | "EQ_COMPONENT_ID";
            option: string;
            type: "SHOW" | "HIDE";
            value: string | number | boolean;
        };
        name: string;
    };
    showOnDrop?: boolean;
    showTextStyleColor?: boolean;
}
key: string
label: string
optionRef?: {
    id?: string;
    inherit?:
        | {}
        | "name"
        | (string | {})[]
        | "label"
        | "value";
    sourceId?: string;
}
ref: {
    id?: string;
    value: string | string[];
}
showInAddChild?: boolean
showInReconfigure?: boolean
type: string
diff --git a/docs/modules.html b/docs/modules.html index 251c2fa2..d25a0ed2 100644 --- a/docs/modules.html +++ b/docs/modules.html @@ -1,13 +1,106 @@ -@betty-blocks/component-sdk
Options
All
  • Public
  • Public/Protected
  • All
Menu

@betty-blocks/component-sdk

Index

Enumerations

Interfaces

Type aliases

Functions

Type aliases

ActionVariableType: "ARRAY" | "BOOLEAN" | "COLLECTION" | "DATE" | "DATE_TIME" | "DECIMAL" | "INTEGER" | "JSON" | "OBJECT" | "RECORD" | "STRING"
AllowedValue: Record<string | "uuid", RowItem>
BeforeCreateArgs: { components: {}; helpers: { BettyPrefabs: typeof BettyPrefabs; PropertyKind: typeof PropertyKind; addActionVariable: any; addModelAndProperties: any; addSchemaModel: any; camelToSnakeCase: any; cloneStructure: any; createBlacklist: any; createUuid: any; createWrapper: any; getPageAuthenticationProfileId: any; getPageName: any; linkOption: any; makeBettyInput: any; makeBettyUpdateInput: any; prepareAction: any; prepareInput: any; setOption: any; useActionIdSelector: any; useCurrentPageId: any; useCurrentPartialId: any; useModelIdSelector: any; useModelQuery: any; useModelRelationQuery: any; usePrefabSelector: any; usePropertyQuery: any }; modelId: string; prefab: Prefab; prefabs: Prefab[]; close: any; save: any }

Type declaration

  • components: {}
    • [name: string]: any
  • helpers: { BettyPrefabs: typeof BettyPrefabs; PropertyKind: typeof PropertyKind; addActionVariable: any; addModelAndProperties: any; addSchemaModel: any; camelToSnakeCase: any; cloneStructure: any; createBlacklist: any; createUuid: any; createWrapper: any; getPageAuthenticationProfileId: any; getPageName: any; linkOption: any; makeBettyInput: any; makeBettyUpdateInput: any; prepareAction: any; prepareInput: any; setOption: any; useActionIdSelector: any; useCurrentPageId: any; useCurrentPartialId: any; useModelIdSelector: any; useModelQuery: any; useModelRelationQuery: any; usePrefabSelector: any; usePropertyQuery: any }
    • BettyPrefabs: typeof BettyPrefabs
    • PropertyKind: typeof PropertyKind
    • addActionVariable:function
      • addActionVariable(actionId: string, name: string, kind: ActionVariableKind, options: object): Promise<ActionVariable>
    • addModelAndProperties:function
      • addModelAndProperties(modelName: string, properties: ModelPropertyInput[]): Promise<Model>
    • addSchemaModel:function
      • addSchemaModel(name: string, jsonSchema: string): Promise<SchemaModel>
    • camelToSnakeCase:function
      • camelToSnakeCase(str: string): string
    • cloneStructure:function
    • createBlacklist:function
      • createBlacklist(whiteList: ("AUTO_INCREMENT" | "BELONGS_TO" | "BOOLEAN" | "BOOLEAN_EXPRESSION" | "COUNT" | "DATE" | "DATE_EXPRESSION" | "DATE_TIME" | "DATE_TIME_EXPRESSION" | "DECIMAL" | "DECIMAL_EXPRESSION" | "EMAIL" | "EMAIL_ADDRESS" | "ENUM" | "FILE" | "FLOAT" | "GOOGLE_DOCUMENT" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "HAS_ONE" | "IBAN" | "IMAGE" | "INTEGER" | "INTEGER_EXPRESSION" | "LIST" | "LOGIN_TOKEN" | "MINUTES" | "MINUTES_EXPRESSION" | "MULTI_FILE" | "MULTI_IMAGE" | "OBJECT" | "PASSWORD" | "PDF" | "PERIODIC_COUNT" | "PHONE_NUMBER" | "PRICE" | "PRICE_EXPRESSION" | "RICH_TEXT" | "SERIAL" | "SIGNED_PDF" | "STRING" | "STRING_EXPRESSION" | "SUM" | "TEXT" | "TEXT_EXPRESSION" | "TIME" | "URL" | "ZIPCODE")[]): ("AUTO_INCREMENT" | "BELONGS_TO" | "BOOLEAN" | "BOOLEAN_EXPRESSION" | "COUNT" | "DATE" | "DATE_EXPRESSION" | "DATE_TIME" | "DATE_TIME_EXPRESSION" | "DECIMAL" | "DECIMAL_EXPRESSION" | "EMAIL" | "EMAIL_ADDRESS" | "ENUM" | "FILE" | "FLOAT" | "GOOGLE_DOCUMENT" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "HAS_ONE" | "IBAN" | "IMAGE" | "INTEGER" | "INTEGER_EXPRESSION" | "LIST" | "LOGIN_TOKEN" | "MINUTES" | "MINUTES_EXPRESSION" | "MULTI_FILE" | "MULTI_IMAGE" | "OBJECT" | "PASSWORD" | "PDF" | "PERIODIC_COUNT" | "PHONE_NUMBER" | "PRICE" | "PRICE_EXPRESSION" | "RICH_TEXT" | "SERIAL" | "SIGNED_PDF" | "STRING" | "STRING_EXPRESSION" | "SUM" | "TEXT" | "TEXT_EXPRESSION" | "TIME" | "URL" | "ZIPCODE")[]
      • Parameters

        • whiteList: ("AUTO_INCREMENT" | "BELONGS_TO" | "BOOLEAN" | "BOOLEAN_EXPRESSION" | "COUNT" | "DATE" | "DATE_EXPRESSION" | "DATE_TIME" | "DATE_TIME_EXPRESSION" | "DECIMAL" | "DECIMAL_EXPRESSION" | "EMAIL" | "EMAIL_ADDRESS" | "ENUM" | "FILE" | "FLOAT" | "GOOGLE_DOCUMENT" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "HAS_ONE" | "IBAN" | "IMAGE" | "INTEGER" | "INTEGER_EXPRESSION" | "LIST" | "LOGIN_TOKEN" | "MINUTES" | "MINUTES_EXPRESSION" | "MULTI_FILE" | "MULTI_IMAGE" | "OBJECT" | "PASSWORD" | "PDF" | "PERIODIC_COUNT" | "PHONE_NUMBER" | "PRICE" | "PRICE_EXPRESSION" | "RICH_TEXT" | "SERIAL" | "SIGNED_PDF" | "STRING" | "STRING_EXPRESSION" | "SUM" | "TEXT" | "TEXT_EXPRESSION" | "TIME" | "URL" | "ZIPCODE")[]

        Returns ("AUTO_INCREMENT" | "BELONGS_TO" | "BOOLEAN" | "BOOLEAN_EXPRESSION" | "COUNT" | "DATE" | "DATE_EXPRESSION" | "DATE_TIME" | "DATE_TIME_EXPRESSION" | "DECIMAL" | "DECIMAL_EXPRESSION" | "EMAIL" | "EMAIL_ADDRESS" | "ENUM" | "FILE" | "FLOAT" | "GOOGLE_DOCUMENT" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "HAS_ONE" | "IBAN" | "IMAGE" | "INTEGER" | "INTEGER_EXPRESSION" | "LIST" | "LOGIN_TOKEN" | "MINUTES" | "MINUTES_EXPRESSION" | "MULTI_FILE" | "MULTI_IMAGE" | "OBJECT" | "PASSWORD" | "PDF" | "PERIODIC_COUNT" | "PHONE_NUMBER" | "PRICE" | "PRICE_EXPRESSION" | "RICH_TEXT" | "SERIAL" | "SIGNED_PDF" | "STRING" | "STRING_EXPRESSION" | "SUM" | "TEXT" | "TEXT_EXPRESSION" | "TIME" | "URL" | "ZIPCODE")[]

    • createUuid:function
      • createUuid(): string
    • createWrapper:function
    • getPageAuthenticationProfileId:function
      • getPageAuthenticationProfileId(): string
    • getPageName:function
      • getPageName(): string
    • linkOption:function
    • makeBettyInput:function
      • makeBettyInput(prefabName: string, model: Model, property: Property, variable: ActionVariable, relatedIdProperties?: string[][], relatedModelIds?: Record<string, string>): PrefabReference
      • Parameters

        • prefabName: string
        • model: Model
        • property: Property
        • variable: ActionVariable
        • Optional relatedIdProperties: string[][]
        • Optional relatedModelIds: Record<string, string>

        Returns PrefabReference

    • makeBettyUpdateInput:function
      • makeBettyUpdateInput(prefabName: string, model: Model, property: Property, variable: ActionVariable, relatedIdProperties?: string[][], relatedModelIds?: Record<string, string>): PrefabReference
      • Parameters

        • prefabName: string
        • model: Model
        • property: Property
        • variable: ActionVariable
        • Optional relatedIdProperties: string[][]
        • Optional relatedModelIds: Record<string, string>

        Returns PrefabReference

    • prepareAction:function
    • prepareInput:function
      • prepareInput(actionId: null | string, variableName: undefined | string, kind: "AUTO_INCREMENT" | "BELONGS_TO" | "BOOLEAN" | "BOOLEAN_EXPRESSION" | "COUNT" | "DATE" | "DATE_EXPRESSION" | "DATE_TIME" | "DATE_TIME_EXPRESSION" | "DECIMAL" | "DECIMAL_EXPRESSION" | "EMAIL" | "EMAIL_ADDRESS" | "ENUM" | "FILE" | "FLOAT" | "GOOGLE_DOCUMENT" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "HAS_ONE" | "IBAN" | "IMAGE" | "INTEGER" | "INTEGER_EXPRESSION" | "LIST" | "LOGIN_TOKEN" | "MINUTES" | "MINUTES_EXPRESSION" | "MULTI_FILE" | "MULTI_IMAGE" | "OBJECT" | "PASSWORD" | "PDF" | "PERIODIC_COUNT" | "PHONE_NUMBER" | "PRICE" | "PRICE_EXPRESSION" | "RICH_TEXT" | "SERIAL" | "SIGNED_PDF" | "STRING" | "STRING_EXPRESSION" | "SUM" | "TEXT" | "TEXT_EXPRESSION" | "TIME" | "URL" | "ZIPCODE", propertyKind: "AUTO_INCREMENT" | "BELONGS_TO" | "BOOLEAN" | "BOOLEAN_EXPRESSION" | "COUNT" | "DATE" | "DATE_EXPRESSION" | "DATE_TIME" | "DATE_TIME_EXPRESSION" | "DECIMAL" | "DECIMAL_EXPRESSION" | "EMAIL" | "EMAIL_ADDRESS" | "ENUM" | "FILE" | "FLOAT" | "GOOGLE_DOCUMENT" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "HAS_ONE" | "IBAN" | "IMAGE" | "INTEGER" | "INTEGER_EXPRESSION" | "LIST" | "LOGIN_TOKEN" | "MINUTES" | "MINUTES_EXPRESSION" | "MULTI_FILE" | "MULTI_IMAGE" | "OBJECT" | "PASSWORD" | "PDF" | "PERIODIC_COUNT" | "PHONE_NUMBER" | "PRICE" | "PRICE_EXPRESSION" | "RICH_TEXT" | "SERIAL" | "SIGNED_PDF" | "STRING" | "STRING_EXPRESSION" | "SUM" | "TEXT" | "TEXT_EXPRESSION" | "TIME" | "URL" | "ZIPCODE", permissions?: "public" | "private" | "inherit", getPageAuthenticationProfileId?: string): Promise<PreparedInput>
      • Parameters

        • actionId: null | string
        • variableName: undefined | string
        • kind: "AUTO_INCREMENT" | "BELONGS_TO" | "BOOLEAN" | "BOOLEAN_EXPRESSION" | "COUNT" | "DATE" | "DATE_EXPRESSION" | "DATE_TIME" | "DATE_TIME_EXPRESSION" | "DECIMAL" | "DECIMAL_EXPRESSION" | "EMAIL" | "EMAIL_ADDRESS" | "ENUM" | "FILE" | "FLOAT" | "GOOGLE_DOCUMENT" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "HAS_ONE" | "IBAN" | "IMAGE" | "INTEGER" | "INTEGER_EXPRESSION" | "LIST" | "LOGIN_TOKEN" | "MINUTES" | "MINUTES_EXPRESSION" | "MULTI_FILE" | "MULTI_IMAGE" | "OBJECT" | "PASSWORD" | "PDF" | "PERIODIC_COUNT" | "PHONE_NUMBER" | "PRICE" | "PRICE_EXPRESSION" | "RICH_TEXT" | "SERIAL" | "SIGNED_PDF" | "STRING" | "STRING_EXPRESSION" | "SUM" | "TEXT" | "TEXT_EXPRESSION" | "TIME" | "URL" | "ZIPCODE"
        • propertyKind: "AUTO_INCREMENT" | "BELONGS_TO" | "BOOLEAN" | "BOOLEAN_EXPRESSION" | "COUNT" | "DATE" | "DATE_EXPRESSION" | "DATE_TIME" | "DATE_TIME_EXPRESSION" | "DECIMAL" | "DECIMAL_EXPRESSION" | "EMAIL" | "EMAIL_ADDRESS" | "ENUM" | "FILE" | "FLOAT" | "GOOGLE_DOCUMENT" | "HAS_AND_BELONGS_TO_MANY" | "HAS_MANY" | "HAS_ONE" | "IBAN" | "IMAGE" | "INTEGER" | "INTEGER_EXPRESSION" | "LIST" | "LOGIN_TOKEN" | "MINUTES" | "MINUTES_EXPRESSION" | "MULTI_FILE" | "MULTI_IMAGE" | "OBJECT" | "PASSWORD" | "PDF" | "PERIODIC_COUNT" | "PHONE_NUMBER" | "PRICE" | "PRICE_EXPRESSION" | "RICH_TEXT" | "SERIAL" | "SIGNED_PDF" | "STRING" | "STRING_EXPRESSION" | "SUM" | "TEXT" | "TEXT_EXPRESSION" | "TIME" | "URL" | "ZIPCODE"
        • Optional permissions: "public" | "private" | "inherit"
        • Optional getPageAuthenticationProfileId: string

        Returns Promise<PreparedInput>

    • setOption:function
    • useActionIdSelector:function
      • useActionIdSelector(): null | string
    • useCurrentPageId:function
      • useCurrentPageId(): string
    • useCurrentPartialId:function
      • useCurrentPartialId(): string
    • useModelIdSelector:function
      • useModelIdSelector(): null | string
    • useModelQuery:function
      • useModelQuery(options: Record<string, any>): { data: Record<string, any> | null; error: Record<string, any> | null; loading: boolean }
      • Parameters

        • options: Record<string, any>

        Returns { data: Record<string, any> | null; error: Record<string, any> | null; loading: boolean }

        • data: Record<string, any> | null
        • error: Record<string, any> | null
        • loading: boolean
    • useModelRelationQuery:function
      • useModelRelationQuery(propertyModelId: string): { data: Record<string, any> | null; error: Record<string, any> | null; loading: boolean }
      • Parameters

        • propertyModelId: string

        Returns { data: Record<string, any> | null; error: Record<string, any> | null; loading: boolean }

        • data: Record<string, any> | null
        • error: Record<string, any> | null
        • loading: boolean
    • usePrefabSelector:function
      • usePrefabSelector(): null | { id: string; name: string }
    • usePropertyQuery:function
      • usePropertyQuery(propertyId: string): { data: Record<string, any> | null; error: Record<string, any> | null; loading: boolean }
      • Parameters

        • propertyId: string

        Returns { data: Record<string, any> | null; error: Record<string, any> | null; loading: boolean }

        • data: Record<string, any> | null
        • error: Record<string, any> | null
        • loading: boolean
  • modelId: string
  • prefab: Prefab
  • prefabs: Prefab[]
  • close:function
    • close(): void
  • save:function
Configuration: VariableConfiguration | ButtonGroupConfiguration | DropdownConfiguration
Hook: { input: Record<string, Ref>; output?: {}; query: string }

Type declaration

  • input: Record<string, Ref>
  • Optional output?: {}
    • [key: string]: Ref
  • query: string
LinkedOptionProducer: (key: string) => PrefabWrapperLinkedOption

Type declaration

LinkedPartialOptionProducer: (key: string) => PrefabWrapperLinkedPartialOption

Type declaration

MakePrepareActionArgs: [string, Property | undefined, Property[] | undefined, "create" | "update" | "delete" | "login" | "empty", AuthenticationProfile?, string?, string?, "public" | "private" | "inherit" | string?, string?, boolean?] | [PrepareActionObjectProps]
OptionCategory: { condition?: { comparator: string; option: string; type: string; value: string | boolean | number }; expanded?: boolean; label: string; members: string[] }

Type declaration

  • Optional condition?: { comparator: string; option: string; type: string; value: string | boolean | number }
    • comparator: string
    • option: string
    • type: string
    • value: string | boolean | number
  • Optional expanded?: boolean
  • label: string
  • members: string[]
OptionProducer: (key: string) => PrefabComponentOption

Type declaration

PrefabComponentOption: ValueDefault | ValueRef
PrefabComponentStyle: { name?: string; overwrite?: { backgroundColor?: { type: string; value: string }; borderColor?: { type: string; value: string }; borderRadius?: string | string[]; borderStyle?: string; borderWidth?: string | string[]; boxShadow?: string; color?: { type: string; value: string }; fontFamily?: string; fontSize?: string; fontStyle?: string; fontWeight?: string; letterSpacing?: string; lineHeight?: string; padding?: string | string[]; textDecoration?: string; textTransform?: string } | StyleDefinitionState[] }

Type declaration

  • Optional name?: string
  • Optional overwrite?: { backgroundColor?: { type: string; value: string }; borderColor?: { type: string; value: string }; borderRadius?: string | string[]; borderStyle?: string; borderWidth?: string | string[]; boxShadow?: string; color?: { type: string; value: string }; fontFamily?: string; fontSize?: string; fontStyle?: string; fontWeight?: string; letterSpacing?: string; lineHeight?: string; padding?: string | string[]; textDecoration?: string; textTransform?: string } | StyleDefinitionState[]
PrefabVariableKind: "construct" | "object" | "string" | "integer"
PrefabWrapperLinkedOptionConfiguration: { allowedInput?: { name: string; value: string | boolean | number }[]; as?: string; condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | boolean | number | { ref: { componentId: string } } }; dataType?: string; showOnDrop?: boolean }

Type declaration

  • Optional allowedInput?: { name: string; value: string | boolean | number }[]
  • Optional as?: string
  • Optional condition?: { comparator: "EQ" | "EQ_COMPONENT_ID"; option: string; type: "SHOW" | "HIDE"; value: string | boolean | number | { ref: { componentId: string } } }
    • comparator: "EQ" | "EQ_COMPONENT_ID"
    • option: string
    • type: "SHOW" | "HIDE"
    • value: string | boolean | number | { ref: { componentId: string } }
  • Optional dataType?: string
  • Optional showOnDrop?: boolean
RowItem: string | number | boolean
StyleDefinitionContent: Partial<StyleDefinitionContentBase> & Pick<StyleDefinitionContentBase, "basis">
StyleDefinitionContentBase: { [ key in StyleStateKeys | "basis"]: StyleDefinitionContentObject }
StyleProducer: (key: string) => PrefabComponentStyle

Type declaration

StyleStateKeys: SELECTED | HOVER | FOCUS | DISABLED | VALID | INVALID | READONLY
ValueConfig: Record<string, unknown>

Functions

  • action(label: string, attrs: Attributes): OptionProducer
  • actionInputObjects(label: string, attrs: Attributes): OptionProducer
  • addChild(label: string, attrs?: Attributes): OptionProducer
  • authenticationProfile(label: string, attrs: Attributes): OptionProducer
  • buttongroup(label: string, options: [string, string, string?][], attrs?: Attributes): OptionProducer
  • childSelector(label: string, attrs?: Attributes): OptionProducer
  • displayLogic(label: string, attrs?: Attributes): OptionProducer
  • dropdown(label: string, options: [string, string][], attrs?: Attributes): OptionProducer
  • endpoint(label: string, attrs?: Attributes): OptionProducer
  • filter(label: string, attrs?: Attributes): OptionProducer
  • font(label: string, attrs: Attributes): OptionProducer
  • hideIf(key: string, comparator: "EQ", value: string | boolean): undefined | { comparator: "EQ"; option: string; type: "SHOW" | "HIDE"; value: string | boolean }
  • icon(label: string, attrs?: Attributes): OptionProducer
  • model(label: string, attrs?: Attributes): OptionProducer
  • modelAndRelation(label: string, attrs?: Attributes): OptionProducer
  • number(label: string, attrs?: Attributes): OptionProducer
  • option(type: string, attrs: Attributes): OptionProducer
  • prefab(name: string, attr: Attributes, beforeCreate: undefined | BeforeCreate, structure: PrefabReference[]): Prefab
  • property(label: string, attrs?: Attributes): OptionProducer
  • reconfigure(label: string, attrs?: Attributes): OptionProducer
  • showIf(key: string, comparator: "EQ", value: string | boolean): undefined | { comparator: "EQ"; option: string; type: "SHOW" | "HIDE"; value: string | boolean }
  • showIfTrue(key: string): undefined | { comparator: "EQ"; option: string; type: "SHOW" | "HIDE"; value: string | boolean }
  • size(label: string, attrs: Attributes): OptionProducer
  • sizes(label: string, attrs: Attributes): OptionProducer
  • style(type: string, __namedParameters: RequiredStyleAttrs): StyleDefinition
  • styleReference(name: string, attrs: StyleReferenceAttrs): StyleReference
  • text(label: string, attrs?: Attributes): OptionProducer
  • toggle(label: string, attrs?: Attributes): OptionProducer
  • variable(label: string, attrs?: Attributes): OptionProducer

Legend

  • Property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +@betty-blocks/component-sdk

@betty-blocks/component-sdk

Index

Enumerations

Interfaces

Type Aliases

Functions

diff --git a/docs/types/ActionVariableType.html b/docs/types/ActionVariableType.html new file mode 100644 index 00000000..13db07b2 --- /dev/null +++ b/docs/types/ActionVariableType.html @@ -0,0 +1 @@ +ActionVariableType | @betty-blocks/component-sdk
ActionVariableType:
    | "ARRAY"
    | "BOOLEAN"
    | "COLLECTION"
    | "DATE"
    | "DATE_TIME"
    | "DECIMAL"
    | "INTEGER"
    | "JSON"
    | "OBJECT"
    | "RECORD"
    | "STRING"
diff --git a/docs/types/AllowedValue.html b/docs/types/AllowedValue.html new file mode 100644 index 00000000..d16b62bb --- /dev/null +++ b/docs/types/AllowedValue.html @@ -0,0 +1 @@ +AllowedValue | @betty-blocks/component-sdk
AllowedValue: Record<string | "uuid", RowItem>
diff --git a/docs/types/BeforeCreateArgs.html b/docs/types/BeforeCreateArgs.html new file mode 100644 index 00000000..c1ece2cd --- /dev/null +++ b/docs/types/BeforeCreateArgs.html @@ -0,0 +1 @@ +BeforeCreateArgs | @betty-blocks/component-sdk
BeforeCreateArgs: {
    close: (() => void);
    components: {
        [name: string]: any;
    };
    helpers: {
        BettyPrefabs: typeof BettyPrefabs;
        PropertyKind: typeof PropertyKind;
        addActionVariable: ((actionId: string, name: string, kind: ActionVariableKind, options: object) => Promise<ActionVariable>);
        addModelAndProperties: ((modelName: string, properties: ModelPropertyInput[]) => Promise<Model>);
        addSchemaModel: ((name: string, jsonSchema: string) => Promise<SchemaModel>);
        camelToSnakeCase: ((str: string) => string);
        cloneStructure: ((prefabName: string) => PrefabReference);
        createBlacklist: ((whiteList: PropertyKind[]) => PropertyKind[]);
        createUuid: (() => string);
        createWrapper: ((attrs: WrapperAttrs, descendants: PrefabReference[]) => PrefabWrapper);
        getPageAuthenticationProfileId: (() => string);
        getPageName: (() => string);
        linkOption: ((attrs: LinkOptionProps) => LinkedOptionProducer);
        makeBettyInput: ((prefabName: string, model: Model, property: Property, variable: ActionVariable, relatedIdProperties?: string[][], relatedModelIds?: Record<string, string>) => PrefabReference);
        makeBettyUpdateInput: ((prefabName: string, model: Model, property: Property, variable: ActionVariable, relatedIdProperties?: string[][], relatedModelIds?: Record<string, string>) => PrefabReference);
        prepareAction: ((...args: MakePrepareActionArgs) => Promise<PreparedAction>);
        prepareInput: ((actionId: string | null, variableName: string | undefined, kind: PropertyKind, propertyKind: PropertyKind, permissions?: "public" | "private" | "inherit", getPageAuthenticationProfileId?: string) => Promise<PreparedInput>);
        setOption: ((structure: PrefabComponent, key: string, transform: ((option: PrefabComponentOption) => PrefabComponentOption)) => void);
        useActionIdSelector: (() => string | null);
        useCurrentPageId: (() => string);
        useCurrentPartialId: (() => string);
        useModelIdSelector: (() => string | null);
        useModelQuery: ((options: Record<string, any>) => {
            data: Record<string, any> | null;
            error: Record<string, any> | null;
            loading: boolean;
        });
        useModelRelationQuery: ((propertyModelId: string) => {
            data: Record<string, any> | null;
            error: Record<string, any> | null;
            loading: boolean;
        });
        usePrefabSelector: (() => {
            id: string;
            name: string;
        } | null);
        usePropertyQuery: ((propertyId: string) => {
            data: Record<string, any> | null;
            error: Record<string, any> | null;
            loading: boolean;
        });
    };
    modelId: string;
    prefab: Prefab;
    prefabs: Prefab[];
    save: ((prefab: Prefab) => void);
}
diff --git a/docs/types/Configuration.html b/docs/types/Configuration.html new file mode 100644 index 00000000..0a5d3646 --- /dev/null +++ b/docs/types/Configuration.html @@ -0,0 +1 @@ +Configuration | @betty-blocks/component-sdk
Configuration: VariableConfiguration | ButtonGroupConfiguration | DropdownConfiguration
diff --git a/docs/types/Hook.html b/docs/types/Hook.html new file mode 100644 index 00000000..5847ed6d --- /dev/null +++ b/docs/types/Hook.html @@ -0,0 +1 @@ +Hook | @betty-blocks/component-sdk
Hook: {
    input: Record<string, Ref>;
    output?: {
        [key: string]: Ref;
    };
    query: string;
}
diff --git a/docs/types/LinkedOptionProducer.html b/docs/types/LinkedOptionProducer.html new file mode 100644 index 00000000..4012bb98 --- /dev/null +++ b/docs/types/LinkedOptionProducer.html @@ -0,0 +1 @@ +LinkedOptionProducer | @betty-blocks/component-sdk
LinkedOptionProducer: ((key: string) => PrefabWrapperLinkedOption)
diff --git a/docs/types/LinkedPartialOptionProducer.html b/docs/types/LinkedPartialOptionProducer.html new file mode 100644 index 00000000..e61dcb46 --- /dev/null +++ b/docs/types/LinkedPartialOptionProducer.html @@ -0,0 +1 @@ +LinkedPartialOptionProducer | @betty-blocks/component-sdk

Type Alias LinkedPartialOptionProducer

LinkedPartialOptionProducer: ((key: string) => PrefabWrapperLinkedPartialOption)
diff --git a/docs/types/MakePrepareActionArgs.html b/docs/types/MakePrepareActionArgs.html new file mode 100644 index 00000000..7a8fe616 --- /dev/null +++ b/docs/types/MakePrepareActionArgs.html @@ -0,0 +1 @@ +MakePrepareActionArgs | @betty-blocks/component-sdk

Type Alias MakePrepareActionArgs

MakePrepareActionArgs: [string, Property | undefined, Property[] | undefined,
    | "create"
    | "update"
    | "delete"
    | "login"
    | "empty", AuthenticationProfile?, string?, string?, (
    | "public"
    | "private"
    | "inherit"
    | string)?, string?, boolean?] | [PrepareActionObjectProps]
diff --git a/docs/types/OptionCategory.html b/docs/types/OptionCategory.html new file mode 100644 index 00000000..548d7a7b --- /dev/null +++ b/docs/types/OptionCategory.html @@ -0,0 +1 @@ +OptionCategory | @betty-blocks/component-sdk
OptionCategory: {
    condition?: {
        comparator: string;
        option: string;
        type: string;
        value: string | boolean | number;
    };
    expanded?: boolean;
    label: string;
    members: string[];
}
diff --git a/docs/types/OptionProducer.html b/docs/types/OptionProducer.html new file mode 100644 index 00000000..a7b78042 --- /dev/null +++ b/docs/types/OptionProducer.html @@ -0,0 +1 @@ +OptionProducer | @betty-blocks/component-sdk
OptionProducer: ((key: string) => PrefabComponentOption)
diff --git a/docs/types/PrefabComponentOption.html b/docs/types/PrefabComponentOption.html new file mode 100644 index 00000000..b49483ef --- /dev/null +++ b/docs/types/PrefabComponentOption.html @@ -0,0 +1 @@ +PrefabComponentOption | @betty-blocks/component-sdk

Type Alias PrefabComponentOption

PrefabComponentOption: ValueDefault | ValueRef
diff --git a/docs/types/PrefabComponentStyle.html b/docs/types/PrefabComponentStyle.html new file mode 100644 index 00000000..6fb69627 --- /dev/null +++ b/docs/types/PrefabComponentStyle.html @@ -0,0 +1 @@ +PrefabComponentStyle | @betty-blocks/component-sdk
PrefabComponentStyle: {
    name?: string;
    overwrite?: {
        backgroundColor?: {
            type: string;
            value: string;
        };
        borderColor?: {
            type: string;
            value: string;
        };
        borderRadius?: string | string[];
        borderStyle?: string;
        borderWidth?: string | string[];
        boxShadow?: string;
        color?: {
            type: string;
            value: string;
        };
        fontFamily?: string;
        fontSize?: string;
        fontStyle?: string;
        fontWeight?: string;
        letterSpacing?: string;
        lineHeight?: string;
        padding?: string | string[];
        textDecoration?: string;
        textTransform?: string;
    } | StyleDefinitionState[];
}
diff --git a/docs/types/PrefabInteraction.html b/docs/types/PrefabInteraction.html new file mode 100644 index 00000000..f88ff228 --- /dev/null +++ b/docs/types/PrefabInteraction.html @@ -0,0 +1 @@ +PrefabInteraction | @betty-blocks/component-sdk
diff --git a/docs/types/PrefabInteractionParameter.html b/docs/types/PrefabInteractionParameter.html new file mode 100644 index 00000000..0d425d60 --- /dev/null +++ b/docs/types/PrefabInteractionParameter.html @@ -0,0 +1 @@ +PrefabInteractionParameter | @betty-blocks/component-sdk
diff --git a/docs/types/PrefabReference.html b/docs/types/PrefabReference.html new file mode 100644 index 00000000..0603ff2e --- /dev/null +++ b/docs/types/PrefabReference.html @@ -0,0 +1 @@ +PrefabReference | @betty-blocks/component-sdk
diff --git a/docs/types/PrefabVariableKind.html b/docs/types/PrefabVariableKind.html new file mode 100644 index 00000000..64c9fee8 --- /dev/null +++ b/docs/types/PrefabVariableKind.html @@ -0,0 +1 @@ +PrefabVariableKind | @betty-blocks/component-sdk
PrefabVariableKind:
    | "construct"
    | "object"
    | "string"
    | "integer"
diff --git a/docs/types/PrefabWrapperLinkedOptionConfiguration.html b/docs/types/PrefabWrapperLinkedOptionConfiguration.html new file mode 100644 index 00000000..7e56bbd3 --- /dev/null +++ b/docs/types/PrefabWrapperLinkedOptionConfiguration.html @@ -0,0 +1 @@ +PrefabWrapperLinkedOptionConfiguration | @betty-blocks/component-sdk

Type Alias PrefabWrapperLinkedOptionConfiguration

PrefabWrapperLinkedOptionConfiguration: {
    allowedInput?: {
        name: string;
        value: string | boolean | number;
    }[];
    as?: string;
    condition?: {
        comparator: "EQ" | "EQ_COMPONENT_ID";
        option: string;
        type: "SHOW" | "HIDE";
        value:
            | string
            | boolean
            | number
            | {
                ref: {
                    componentId: string;
                };
            };
    };
    dataType?: string;
    showOnDrop?: boolean;
}
diff --git a/docs/types/RefOrValue.html b/docs/types/RefOrValue.html new file mode 100644 index 00000000..10e6d992 --- /dev/null +++ b/docs/types/RefOrValue.html @@ -0,0 +1 @@ +RefOrValue | @betty-blocks/component-sdk
diff --git a/docs/types/RowItem.html b/docs/types/RowItem.html new file mode 100644 index 00000000..6dbfb251 --- /dev/null +++ b/docs/types/RowItem.html @@ -0,0 +1 @@ +RowItem | @betty-blocks/component-sdk
RowItem: string | number | boolean
diff --git a/docs/types/StyleDefinitionContent.html b/docs/types/StyleDefinitionContent.html new file mode 100644 index 00000000..4fe5fb7f --- /dev/null +++ b/docs/types/StyleDefinitionContent.html @@ -0,0 +1 @@ +StyleDefinitionContent | @betty-blocks/component-sdk

Type Alias StyleDefinitionContent

StyleDefinitionContent: Partial<StyleDefinitionContentBase> & Pick<StyleDefinitionContentBase, "basis">
diff --git a/docs/types/StyleDefinitionContentBase.html b/docs/types/StyleDefinitionContentBase.html new file mode 100644 index 00000000..8bd0bde2 --- /dev/null +++ b/docs/types/StyleDefinitionContentBase.html @@ -0,0 +1 @@ +StyleDefinitionContentBase | @betty-blocks/component-sdk

Type Alias StyleDefinitionContentBase

StyleDefinitionContentBase: {
    [key in StyleStateKeys | "basis"]: StyleDefinitionContentObject
}
diff --git a/docs/types/StyleProducer.html b/docs/types/StyleProducer.html new file mode 100644 index 00000000..0f8c02d2 --- /dev/null +++ b/docs/types/StyleProducer.html @@ -0,0 +1 @@ +StyleProducer | @betty-blocks/component-sdk
StyleProducer: ((key: string) => PrefabComponentStyle)
diff --git a/docs/types/StyleStateKeys.html b/docs/types/StyleStateKeys.html new file mode 100644 index 00000000..74978d74 --- /dev/null +++ b/docs/types/StyleStateKeys.html @@ -0,0 +1 @@ +StyleStateKeys | @betty-blocks/component-sdk
StyleStateKeys:
    | SELECTED
    | HOVER
    | FOCUS
    | DISABLED
    | VALID
    | INVALID
    | READONLY
diff --git a/docs/types/ValueConfig.html b/docs/types/ValueConfig.html new file mode 100644 index 00000000..d7c62afa --- /dev/null +++ b/docs/types/ValueConfig.html @@ -0,0 +1 @@ +ValueConfig | @betty-blocks/component-sdk
ValueConfig: Record<string, unknown>