@universal-material/web 3.0.62 → 3.0.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/custom-elements.json +1709 -1709
- package/field/field-base.styles.d.ts.map +1 -1
- package/field/field-base.styles.js +2 -0
- package/field/field-base.styles.js.map +1 -1
- package/package.json +1 -1
- package/text-field/text-field.d.ts.map +1 -1
- package/text-field/text-field.js +0 -2
- package/text-field/text-field.js.map +1 -1
package/custom-elements.json
CHANGED
|
@@ -5975,7 +5975,7 @@
|
|
|
5975
5975
|
{
|
|
5976
5976
|
"kind": "variable",
|
|
5977
5977
|
"name": "styles",
|
|
5978
|
-
"default": "css `\n :host {\n --_control-line-height: var(--u-field-control-line-height, 1.5rem);\n --_label-line-height: var(--u-field-label-line-height, 1rem);\n --_field-icon-size: var(--u-field-icon-size, 1.5rem);\n --_field-control-padding: var(--u-field-control-padding, 16px);\n --_field-control-inline-padding: var(--u-field-control-inline-padding, var(--_field-control-padding));\n --_field-control-block-padding: var(--u-field-control-block-padding, var(--_field-control-padding));\n --_field-min-height: var(--u-field-min-height, 56px);\n --_field-placeholder-color: var(--u-field-placeholder-color, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n --_disabled-color: var(--u-field-disabled-color, rgba(var(--u-color-on-surface-rgb, 29, 27, 32), var(--u-field-disabled-opacity, .38)));\n --_disabled-background-color: var(--u-filled-field-disabled-background-color, rgba(var(--u-color-on-surface-rgb, ), var(--u-filled-field-background-disabled-opacity, .12)));\n --_color-primary: var(--u-color-primary, rgb(103, 80, 164));\n --_color-error: var(--u-field-error-color, var(--u-color-error, rgb(179, 38, 30)));\n --_active-indicator-opacity: 1;\n --_vertical-padding: var(--u-field-vertical-padding, 8px);\n --_icon-size: var(--u-field-icon-size, 1.5rem);\n --_icon-padding: var(--u-field-icon-padding, 12px);\n --_icon-color: var(--u-icon-color, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n --_focus-border-width: var(--u-text-field-focus-border-width, 2px);\n --_field-control-leading-padding: var(--_field-control-inline-padding);\n --_outlined-label-margin: var(--u-outlined-field-label-margin, 12px);\n --_outlined-label-padding: var(--u-outlined-field-label-padding, 4px);\n --u-label-input-start: auto;\n --u-label-input-span-leading-offset: 0;\n --u-label-input-span-trailing-offset: 0;\n --u-text-field-horizontal-padding: 12px;\n }\n\n .container {\n display: flex;\n align-items: center;\n position: relative;\n }\n .container::before, .container::after {\n content: \"\";\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n box-sizing: border-box;\n pointer-events: none;\n }\n .container::before {\n background: var(--u-color-on-surface, rgb(29, 27, 32));\n transition: opacity 150ms;\n opacity: 0;\n }\n .container::after {\n border-width: var(--u-field-border-width, 1px);\n border-color: var(--u-field-border-color, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n }\n\n @media (hover: hover) {\n :host(:not([disabled]):not([invalid]):hover) .container.filled::before {\n opacity: var(--u-state-hover-opacity, 0.08);\n }\n :host(:not([disabled]):not([invalid]):not(:focus-within):hover) .container::after {\n border-color: var(--u-field-hover-border-color, var(--u-color-on-surface, rgb(29, 27, 32)));\n }\n }\n .icon {\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n width: var(--_icon-size);\n color: var(--_icon-color);\n font-size: var(--_icon-size);\n line-height: var(--_icon-size);\n }\n .icon::slotted(*) {\n flex-shrink: 0;\n }\n\n .leading-icon {\n margin-inline-start: var(--_icon-padding);\n }\n\n .trailing-icon {\n margin-inline-end: var(--_icon-padding);\n }\n\n .label {\n font-family: var(--u-font-family, var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"));\n line-height: var(--u-field-label-line-height, var(--u-body-l-line-height, 1.5rem));\n font-size: var(--u-field-label-font-size, var(--u-body-l-font-size, 1rem));\n letter-spacing: var(--u-field-label-letter-spacing, var(--u-body-l-letter-spacing, 0.03125rem));\n font-weight: var(--u-field-label-font-weight, var(--u-body-l-font-weight, var(--u-font-weight-regular, 400)));\n font-size: var(--u-field-label-font-size, var(--u-body-s-font-size, 0.75rem));\n display: block;\n position: absolute;\n inset-inline-start: var(--_field-control-leading-padding);\n margin-bottom: 0;\n line-height: var(--_label-line-height);\n color: var(--u-field-label-color, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n transition: inset 200ms, font-size 200ms;\n }\n\n .input-wrapper {\n display: flex;\n align-items: center;\n flex: 1;\n padding-block: var(--_vertical-padding);\n padding-inline: var(--_field-control-inline-padding);\n min-height: var(--_field-min-height);\n transition: opacity 150ms;\n }\n\n .input {\n color: var(--u-field-input-text-color, var(--u-color-on-surface, rgb(29, 27, 32)));\n flex: 1;\n }\n .input:focus {\n outline: 0;\n }\n .input input,\n .input ::slotted(*) {\n font-family: var(--u-font-family, var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"));\n line-height: var(--u-field-control-line-height, var(--u-body-l-line-height, 1.5rem));\n font-size: var(--u-field-control-font-size, var(--u-body-l-font-size, 1rem));\n letter-spacing: var(--u-field-control-letter-spacing, var(--u-body-l-letter-spacing, 0.03125rem));\n font-weight: var(--u-field-control-font-weight, var(--u-body-l-font-weight, var(--u-font-weight-regular, 400)));\n width: 100%;\n color: var(--u-field-input-text-color, var(--u-color-on-surface, rgb(29, 27, 32)));\n min-height: var(--_control-line-height);\n line-height: var(--_control-line-height);\n padding: 0;\n margin: 0;\n appearance: none;\n background: transparent;\n border: none;\n outline: 0 !important;\n }\n .input,\n .input ::slotted(select),\n .input ::slotted(:is(input, textarea))::placeholder {\n transition: color 150ms 100ms;\n }\n .input ::slotted(:is(input, textarea))::placeholder {\n color: var(--_field-placeholder-color);\n }\n\n .supporting-text {\n font-family: var(--u-font-family, var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"));\n line-height: var(--u-field-supporting-text-line-height, var(--u-body-s-line-height, 1rem));\n font-size: var(--u-field-supporting-text-font-size, var(--u-body-s-font-size, 0.75rem));\n letter-spacing: var(--u-field-supporting-text-letter-spacing, var(--u-body-s-letter-spacing, 0.0333333333rem));\n font-weight: var(--u-field-supporting-text-font-weight, var(--u-body-s-font-weight, var(--u-font-weight-regular, 400)));\n display: flex;\n color: var(--u-field-supporting-text, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n padding-inline: 16px;\n gap: 16px;\n }\n .supporting-text div:empty {\n display: none;\n }\n .supporting-text div,\n .supporting-text ::slotted(*) {\n display: inline-block;\n margin-top: 4px;\n }\n\n .error-text {\n display: none;\n }\n\n .counter div, .counter::slotted(*) {\n margin-inline-start: auto;\n }\n\n :host([has-leading-icon]) {\n --_field-control-leading-padding: calc(var(--_icon-padding) + var(--_icon-size) + var(--_field-control-inline-padding)) ;\n }\n\n :host(:not([has-leading-icon])) .leading-icon {\n display: none;\n }\n\n :host(:not([has-trailing-icon])) .trailing-icon {\n display: none;\n }\n\n :host(:focus-within) {\n --u-field-border-width: var(--_focus-border-width);\n }\n :host(:focus-within) .container::after {\n border-color: var(--u-field-focused-border-color, var(--_color-primary));\n }\n :host(:focus-within) .label {\n color: var(--u-field-label-focused-color, var(--_color-primary));\n }\n\n :host([invalid]) .container::after {\n border-color: var(--u-field-error-border-color, var(--_color-error));\n }\n :host([invalid]) .label {\n color: var(--u-field-label-error-color, var(--_color-error));\n }\n :host([invalid]) .supporting-text {\n color: var(--u-field-supporting-text-error-color, var(--_color-error));\n }\n :host([invalid]) .trailing-icon {\n color: var(--u-field-trailing-icon-error-color, var(--_color-error));\n }\n :host([invalid]) .leading-icon {\n color: var(--u-field-leading-icon-error-color, var(--_icon-color));\n }\n\n :host([invalid]) .supporting-text:has(.error-text div:not(:empty)) .error-text,\n :host([invalid][has-error-text]) .error-text {\n display: contents;\n }\n :host([invalid]) .supporting-text:has(.error-text div:not(:empty)) slot[name=supporting-text],\n :host([invalid][has-error-text]) slot[name=supporting-text] {\n display: none;\n }\n\n .container.filled {\n border-radius: var(--u-field-filled-border-radius, 4px 4px 0 0);\n background-color: var(--u-color-surface-container-highest, rgb(230, 224, 233));\n }\n .container.filled::after {\n border-bottom-style: solid;\n }\n .container.filled:not(.no-label) .input-wrapper {\n padding-top: calc(var(--_vertical-padding) + var(--_label-line-height));\n padding-bottom: var(--_vertical-padding);\n }\n .container.filled .label {\n top: var(--_vertical-padding);\n }\n .container.filled .input ::slotted(:is(input, textarea, select, button)) {\n display: block;\n }\n .container.outlined::after {\n --_mid-point: calc(var(--u-field-label-half-width) + var(--_outlined-label-margin) + var(--_outlined-label-padding));\n border-radius: var(--u-outlined-field-shape-corder, var(--u-shape-corner-small, 8px));\n border-style: solid;\n clip-path: polygon(0 0, var(--_mid-point) 0, var(--_mid-point) var(--_focus-border-width), var(--_mid-point) var(--_focus-border-width), var(--_mid-point) 0, 100% 0, 100% 100%, 0 100%);\n transition: clip-path 100ms;\n }\n .container.outlined .label {\n top: calc(var(--_label-line-height) / -2);\n }\n\n .container.outlined:focus-within::after,\n :host(:not([empty])) .container.outlined::after {\n --_end-point: calc(var(--u-field-label-width) + var(--_outlined-label-margin) + (var(--_outlined-label-padding) * 2));\n clip-path: polygon(0 0, var(--_outlined-label-margin) 0, var(--_outlined-label-margin) var(--_focus-border-width), var(--_end-point) var(--_focus-border-width), var(--_end-point) 0, 100% 0, 100% 100%, 0 100%);\n }\n .container.outlined:focus-within .label,\n :host(:not([empty])) .container.outlined .label {\n inset-inline-start: calc(var(--_outlined-label-margin) + var(--_outlined-label-padding));\n }\n\n :host([empty]) ::slotted(select) {\n color: var(--_field-placeholder-color);\n }\n\n :host([empty]:not(:focus-within)) .label {\n font-size: var(--u-field-label-font-size, var(--u-body-l-font-size, 1rem));\n pointer-events: none;\n top: calc(var(--_field-min-height) / 2 - var(--_label-line-height) / 2);\n }\n :host([empty]:not(:focus-within)) .input-wrapper {\n opacity: 0;\n }\n :host([empty]:not(:focus-within)) .input,\n :host([empty]:not(:focus-within)) ::slotted(:is(input, textarea))::placeholder,\n :host([empty]:not(:focus-within)) ::slotted(select) {\n color: transparent;\n transition: color 150ms;\n }\n\n .container.no-label::after {\n clip-path: none !important;\n }\n\n :host([disabled]) .container .filled {\n background-color: var(--u-filled-field-disabled-background-color, rgba(var(--u-color-on-surface-rgb, 29, 27, 32), var(--u-filled-field-background-disabled-opacity, 0.04)));\n }\n :host([disabled]) .container::after {\n border-color: var(--u-field-disabled-border-color, var(--_disabled-color));\n }\n :host([disabled]) .supporting-text {\n color: var(--u-field-supporting-text-disabled-color, var(--_disabled-color));\n }\n :host([disabled]) .label {\n color: var(--u-field-label-disabled-color, var(--_disabled-color));\n }\n :host([disabled]) .input ::slotted(*) {\n color: var(--u-field-input-disabled-color, var(--_disabled-color));\n }\n :host([disabled]) .input ::slotted(:is(input, textarea))::placeholder {\n color: var(--u-field-input-disabled-color, var(--_disabled-color));\n }\n :host([disabled]) .trailing-icon {\n color: var(--u-field-trailing-icon-disabled-color, var(--_disabled-color));\n }\n :host([disabled]) .leading-icon {\n color: var(--u-field-leading-icon-disabled-color, var(--_disabled-color));\n }\n`"
|
|
5978
|
+
"default": "css `\n :host {\n --_control-line-height: var(--u-field-control-line-height, 1.5rem);\n --_label-line-height: var(--u-field-label-line-height, 1rem);\n --_field-icon-size: var(--u-field-icon-size, 1.5rem);\n --_field-control-padding: var(--u-field-control-padding, 16px);\n --_field-control-inline-padding: var(--u-field-control-inline-padding, var(--_field-control-padding));\n --_field-control-block-padding: var(--u-field-control-block-padding, var(--_field-control-padding));\n --_field-min-height: var(--u-field-min-height, 56px);\n --_field-placeholder-color: var(--u-field-placeholder-color, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n --_disabled-color: var(--u-field-disabled-color, rgba(var(--u-color-on-surface-rgb, 29, 27, 32), var(--u-field-disabled-opacity, .38)));\n --_disabled-background-color: var(--u-filled-field-disabled-background-color, rgba(var(--u-color-on-surface-rgb, ), var(--u-filled-field-background-disabled-opacity, .12)));\n --_color-primary: var(--u-color-primary, rgb(103, 80, 164));\n --_color-error: var(--u-field-error-color, var(--u-color-error, rgb(179, 38, 30)));\n --_active-indicator-opacity: 1;\n --_vertical-padding: var(--u-field-vertical-padding, 8px);\n --_icon-size: var(--u-field-icon-size, 1.5rem);\n --_icon-padding: var(--u-field-icon-padding, 12px);\n --_icon-color: var(--u-icon-color, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n --_focus-border-width: var(--u-text-field-focus-border-width, 2px);\n --_field-control-leading-padding: var(--_field-control-inline-padding);\n --_outlined-label-margin: var(--u-outlined-field-label-margin, 12px);\n --_outlined-label-padding: var(--u-outlined-field-label-padding, 4px);\n --u-label-input-start: auto;\n --u-label-input-span-leading-offset: 0;\n --u-label-input-span-trailing-offset: 0;\n --u-text-field-horizontal-padding: 12px;\n display: block;\n }\n\n .container {\n display: flex;\n align-items: center;\n position: relative;\n }\n .container::before, .container::after {\n content: \"\";\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n box-sizing: border-box;\n pointer-events: none;\n }\n .container::before {\n background: var(--u-color-on-surface, rgb(29, 27, 32));\n transition: opacity 150ms;\n opacity: 0;\n }\n .container::after {\n border-width: var(--u-field-border-width, 1px);\n border-color: var(--u-field-border-color, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n }\n\n @media (hover: hover) {\n :host(:not([disabled]):not([invalid]):hover) .container.filled::before {\n opacity: var(--u-state-hover-opacity, 0.08);\n }\n :host(:not([disabled]):not([invalid]):not(:focus-within):hover) .container::after {\n border-color: var(--u-field-hover-border-color, var(--u-color-on-surface, rgb(29, 27, 32)));\n }\n }\n .icon {\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n width: var(--_icon-size);\n color: var(--_icon-color);\n font-size: var(--_icon-size);\n line-height: var(--_icon-size);\n }\n .icon::slotted(*) {\n flex-shrink: 0;\n }\n\n .leading-icon {\n margin-inline-start: var(--_icon-padding);\n }\n\n .trailing-icon {\n margin-inline-end: var(--_icon-padding);\n }\n\n .label {\n font-family: var(--u-font-family, var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"));\n line-height: var(--u-field-label-line-height, var(--u-body-l-line-height, 1.5rem));\n font-size: var(--u-field-label-font-size, var(--u-body-l-font-size, 1rem));\n letter-spacing: var(--u-field-label-letter-spacing, var(--u-body-l-letter-spacing, 0.03125rem));\n font-weight: var(--u-field-label-font-weight, var(--u-body-l-font-weight, var(--u-font-weight-regular, 400)));\n font-size: var(--u-field-label-font-size, var(--u-body-s-font-size, 0.75rem));\n display: block;\n position: absolute;\n inset-inline-start: var(--_field-control-leading-padding);\n margin-bottom: 0;\n line-height: var(--_label-line-height);\n color: var(--u-field-label-color, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n transition: inset 200ms, font-size 200ms;\n }\n\n .input-wrapper {\n display: flex;\n align-items: center;\n flex: 1;\n padding-block: var(--_vertical-padding);\n padding-inline: var(--_field-control-inline-padding);\n min-height: var(--_field-min-height);\n transition: opacity 150ms;\n }\n\n .input {\n color: var(--u-field-input-text-color, var(--u-color-on-surface, rgb(29, 27, 32)));\n flex: 1;\n }\n .input:focus {\n outline: 0;\n }\n .input input,\n .input ::slotted(*) {\n font-family: var(--u-font-family, var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"));\n line-height: var(--u-field-control-line-height, var(--u-body-l-line-height, 1.5rem));\n font-size: var(--u-field-control-font-size, var(--u-body-l-font-size, 1rem));\n letter-spacing: var(--u-field-control-letter-spacing, var(--u-body-l-letter-spacing, 0.03125rem));\n font-weight: var(--u-field-control-font-weight, var(--u-body-l-font-weight, var(--u-font-weight-regular, 400)));\n display: block;\n width: 100%;\n color: var(--u-field-input-text-color, var(--u-color-on-surface, rgb(29, 27, 32)));\n min-height: var(--_control-line-height);\n line-height: var(--_control-line-height);\n padding: 0;\n margin: 0;\n appearance: none;\n background: transparent;\n border: none;\n outline: 0 !important;\n }\n .input,\n .input ::slotted(select),\n .input ::slotted(:is(input, textarea))::placeholder {\n transition: color 150ms 100ms;\n }\n .input ::slotted(:is(input, textarea))::placeholder {\n color: var(--_field-placeholder-color);\n }\n\n .supporting-text {\n font-family: var(--u-font-family, var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"));\n line-height: var(--u-field-supporting-text-line-height, var(--u-body-s-line-height, 1rem));\n font-size: var(--u-field-supporting-text-font-size, var(--u-body-s-font-size, 0.75rem));\n letter-spacing: var(--u-field-supporting-text-letter-spacing, var(--u-body-s-letter-spacing, 0.0333333333rem));\n font-weight: var(--u-field-supporting-text-font-weight, var(--u-body-s-font-weight, var(--u-font-weight-regular, 400)));\n display: flex;\n color: var(--u-field-supporting-text, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n padding-inline: 16px;\n gap: 16px;\n }\n .supporting-text div:empty {\n display: none;\n }\n .supporting-text div,\n .supporting-text ::slotted(*) {\n display: inline-block;\n margin-top: 4px;\n }\n\n .error-text {\n display: none;\n }\n\n .counter div, .counter::slotted(*) {\n margin-inline-start: auto;\n }\n\n :host([has-leading-icon]) {\n --_field-control-leading-padding: calc(var(--_icon-padding) + var(--_icon-size) + var(--_field-control-inline-padding)) ;\n }\n\n :host(:not([has-leading-icon])) .leading-icon {\n display: none;\n }\n\n :host(:not([has-trailing-icon])) .trailing-icon {\n display: none;\n }\n\n :host(:focus-within) {\n --u-field-border-width: var(--_focus-border-width);\n }\n :host(:focus-within) .container::after {\n border-color: var(--u-field-focused-border-color, var(--_color-primary));\n }\n :host(:focus-within) .label {\n color: var(--u-field-label-focused-color, var(--_color-primary));\n }\n\n :host([invalid]) .container::after {\n border-color: var(--u-field-error-border-color, var(--_color-error));\n }\n :host([invalid]) .label {\n color: var(--u-field-label-error-color, var(--_color-error));\n }\n :host([invalid]) .supporting-text {\n color: var(--u-field-supporting-text-error-color, var(--_color-error));\n }\n :host([invalid]) .trailing-icon {\n color: var(--u-field-trailing-icon-error-color, var(--_color-error));\n }\n :host([invalid]) .leading-icon {\n color: var(--u-field-leading-icon-error-color, var(--_icon-color));\n }\n\n :host([invalid]) .supporting-text:has(.error-text div:not(:empty)) .error-text,\n :host([invalid][has-error-text]) .error-text {\n display: contents;\n }\n :host([invalid]) .supporting-text:has(.error-text div:not(:empty)) slot[name=supporting-text],\n :host([invalid][has-error-text]) slot[name=supporting-text] {\n display: none;\n }\n\n .container.filled {\n border-radius: var(--u-field-filled-border-radius, 4px 4px 0 0);\n background-color: var(--u-color-surface-container-highest, rgb(230, 224, 233));\n }\n .container.filled::after {\n border-bottom-style: solid;\n }\n .container.filled:not(.no-label) .input-wrapper {\n padding-top: calc(var(--_vertical-padding) + var(--_label-line-height));\n padding-bottom: var(--_vertical-padding);\n }\n .container.filled .label {\n top: var(--_vertical-padding);\n }\n .container.filled .input ::slotted(:is(input, textarea, select, button)) {\n display: block;\n }\n .container.outlined::after {\n --_mid-point: calc(var(--u-field-label-half-width) + var(--_outlined-label-margin) + var(--_outlined-label-padding));\n border-radius: var(--u-outlined-field-shape-corder, var(--u-shape-corner-small, 8px));\n border-style: solid;\n clip-path: polygon(0 0, var(--_mid-point) 0, var(--_mid-point) var(--_focus-border-width), var(--_mid-point) var(--_focus-border-width), var(--_mid-point) 0, 100% 0, 100% 100%, 0 100%);\n transition: clip-path 100ms;\n }\n .container.outlined .label {\n top: calc(var(--_label-line-height) / -2);\n }\n\n .container.outlined:focus-within::after,\n :host(:not([empty])) .container.outlined::after {\n --_end-point: calc(var(--u-field-label-width) + var(--_outlined-label-margin) + (var(--_outlined-label-padding) * 2));\n clip-path: polygon(0 0, var(--_outlined-label-margin) 0, var(--_outlined-label-margin) var(--_focus-border-width), var(--_end-point) var(--_focus-border-width), var(--_end-point) 0, 100% 0, 100% 100%, 0 100%);\n }\n .container.outlined:focus-within .label,\n :host(:not([empty])) .container.outlined .label {\n inset-inline-start: calc(var(--_outlined-label-margin) + var(--_outlined-label-padding));\n }\n\n :host([empty]) ::slotted(select) {\n color: var(--_field-placeholder-color);\n }\n\n :host([empty]:not(:focus-within)) .label {\n font-size: var(--u-field-label-font-size, var(--u-body-l-font-size, 1rem));\n pointer-events: none;\n top: calc(var(--_field-min-height) / 2 - var(--_label-line-height) / 2);\n }\n :host([empty]:not(:focus-within)) .input-wrapper {\n opacity: 0;\n }\n :host([empty]:not(:focus-within)) .input,\n :host([empty]:not(:focus-within)) ::slotted(:is(input, textarea))::placeholder,\n :host([empty]:not(:focus-within)) ::slotted(select) {\n color: transparent;\n transition: color 150ms;\n }\n\n .container.no-label::after {\n clip-path: none !important;\n }\n\n :host([disabled]) .container .filled {\n background-color: var(--u-filled-field-disabled-background-color, rgba(var(--u-color-on-surface-rgb, 29, 27, 32), var(--u-filled-field-background-disabled-opacity, 0.04)));\n }\n :host([disabled]) .container::after {\n border-color: var(--u-field-disabled-border-color, var(--_disabled-color));\n }\n :host([disabled]) .supporting-text {\n color: var(--u-field-supporting-text-disabled-color, var(--_disabled-color));\n }\n :host([disabled]) .label {\n color: var(--u-field-label-disabled-color, var(--_disabled-color));\n }\n :host([disabled]) .input ::slotted(*) {\n color: var(--u-field-input-disabled-color, var(--_disabled-color));\n }\n :host([disabled]) .input ::slotted(:is(input, textarea))::placeholder {\n color: var(--u-field-input-disabled-color, var(--_disabled-color));\n }\n :host([disabled]) .trailing-icon {\n color: var(--u-field-trailing-icon-disabled-color, var(--_disabled-color));\n }\n :host([disabled]) .leading-icon {\n color: var(--u-field-leading-icon-disabled-color, var(--_disabled-color));\n }\n`"
|
|
5979
5979
|
}
|
|
5980
5980
|
],
|
|
5981
5981
|
"exports": [
|
|
@@ -7898,12 +7898,12 @@
|
|
|
7898
7898
|
},
|
|
7899
7899
|
{
|
|
7900
7900
|
"kind": "javascript-module",
|
|
7901
|
-
"path": "src/
|
|
7901
|
+
"path": "src/progress/circular-progress.styles.ts",
|
|
7902
7902
|
"declarations": [
|
|
7903
7903
|
{
|
|
7904
7904
|
"kind": "variable",
|
|
7905
7905
|
"name": "styles",
|
|
7906
|
-
"default": "css `\n :host
|
|
7906
|
+
"default": "css `\n :host {\n position: relative;\n display: inline-block;\n width: var(--_size);\n height: var(--_size);\n margin-inline: auto;\n --_size: var(--u-circular-progress-size, 3rem);\n }\n\n .circular {\n width: 100%;\n height: 100%;\n transform: rotate(-90deg);\n transform-origin: center;\n }\n .circular.indeterminate {\n position: relative;\n animation: rotate 2s linear infinite;\n }\n .circular:not(.indeterminate) .path {\n transition: stroke-dashoffset 200ms linear;\n }\n\n .path {\n stroke-linecap: round;\n stroke: var(--u-circular-progress-color, var(--u-color-primary, rgb(103, 80, 164)));\n }\n\n .track {\n position: absolute;\n inset: 0;\n }\n .track .path {\n stroke: var(--u-circular-progress-track-color, var(--u-color-secondary-container, rgb(232, 222, 248)));\n }\n\n .indeterminate .path {\n stroke-dasharray: 1, 200;\n stroke-dashoffset: 0;\n animation: dash 1.5s ease-in-out infinite;\n }\n\n .on-going {\n transform: rotate(-80deg);\n }\n .on-going.track {\n transform: rotate(-100deg);\n }\n\n @keyframes rotate {\n 0% {\n transform: rotate(0);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n @keyframes dash {\n 0% {\n stroke-dasharray: 1, 200;\n stroke-dashoffset: 0;\n }\n 50% {\n stroke-dasharray: 89, 200;\n stroke-dashoffset: -35;\n }\n 100% {\n stroke-dasharray: 89, 200;\n stroke-dashoffset: -124;\n }\n }\n`"
|
|
7907
7907
|
}
|
|
7908
7908
|
],
|
|
7909
7909
|
"exports": [
|
|
@@ -7912,622 +7912,487 @@
|
|
|
7912
7912
|
"name": "styles",
|
|
7913
7913
|
"declaration": {
|
|
7914
7914
|
"name": "styles",
|
|
7915
|
-
"module": "src/
|
|
7915
|
+
"module": "src/progress/circular-progress.styles.ts"
|
|
7916
7916
|
}
|
|
7917
7917
|
}
|
|
7918
7918
|
]
|
|
7919
7919
|
},
|
|
7920
7920
|
{
|
|
7921
7921
|
"kind": "javascript-module",
|
|
7922
|
-
"path": "src/
|
|
7922
|
+
"path": "src/progress/circular-progress.ts",
|
|
7923
7923
|
"declarations": [
|
|
7924
7924
|
{
|
|
7925
7925
|
"kind": "class",
|
|
7926
7926
|
"description": "",
|
|
7927
|
-
"name": "
|
|
7927
|
+
"name": "UmCircularProgress",
|
|
7928
7928
|
"members": [
|
|
7929
7929
|
{
|
|
7930
7930
|
"kind": "field",
|
|
7931
|
-
"name": "
|
|
7932
|
-
"type": {
|
|
7933
|
-
"text": "boolean"
|
|
7934
|
-
},
|
|
7935
|
-
"default": "false",
|
|
7936
|
-
"description": "Whether the drawer item has icon or not\n\n_Note:_ Readonly",
|
|
7937
|
-
"attribute": "has-icon",
|
|
7938
|
-
"reflects": true
|
|
7939
|
-
},
|
|
7940
|
-
{
|
|
7941
|
-
"kind": "field",
|
|
7942
|
-
"name": "hasBadge",
|
|
7943
|
-
"type": {
|
|
7944
|
-
"text": "boolean"
|
|
7945
|
-
},
|
|
7946
|
-
"default": "false",
|
|
7947
|
-
"description": "Whether the drawer item has badge or not\n\n_Note:_ Readonly",
|
|
7948
|
-
"attribute": "has-badge",
|
|
7949
|
-
"reflects": true
|
|
7950
|
-
},
|
|
7951
|
-
{
|
|
7952
|
-
"kind": "field",
|
|
7953
|
-
"name": "active",
|
|
7954
|
-
"type": {
|
|
7955
|
-
"text": "boolean"
|
|
7956
|
-
},
|
|
7957
|
-
"default": "false",
|
|
7958
|
-
"description": "Whether the drawer item is active or not\n\n_Note:_ Readonly",
|
|
7959
|
-
"attribute": "active",
|
|
7960
|
-
"reflects": true
|
|
7961
|
-
},
|
|
7962
|
-
{
|
|
7963
|
-
"kind": "field",
|
|
7964
|
-
"name": "keepDrawerOpen",
|
|
7965
|
-
"type": {
|
|
7966
|
-
"text": "boolean"
|
|
7967
|
-
},
|
|
7968
|
-
"default": "false",
|
|
7969
|
-
"description": "If true, it will not attempt to close de navigation drawer on click",
|
|
7970
|
-
"attribute": "keep-drawer-open",
|
|
7971
|
-
"reflects": true
|
|
7972
|
-
},
|
|
7973
|
-
{
|
|
7974
|
-
"kind": "field",
|
|
7975
|
-
"name": "assignedIcons",
|
|
7931
|
+
"name": "value",
|
|
7976
7932
|
"type": {
|
|
7977
|
-
"text": "
|
|
7933
|
+
"text": "number | undefined"
|
|
7978
7934
|
},
|
|
7979
|
-
"
|
|
7935
|
+
"attribute": "value"
|
|
7980
7936
|
},
|
|
7981
7937
|
{
|
|
7982
7938
|
"kind": "field",
|
|
7983
|
-
"name": "
|
|
7939
|
+
"name": "max",
|
|
7984
7940
|
"type": {
|
|
7985
|
-
"text": "
|
|
7941
|
+
"text": "number"
|
|
7986
7942
|
},
|
|
7987
|
-
"
|
|
7943
|
+
"default": "1",
|
|
7944
|
+
"attribute": "max"
|
|
7988
7945
|
},
|
|
7989
7946
|
{
|
|
7990
7947
|
"kind": "method",
|
|
7991
|
-
"name": "
|
|
7992
|
-
"privacy": "protected",
|
|
7948
|
+
"name": "#renderCircle",
|
|
7993
7949
|
"return": {
|
|
7994
7950
|
"type": {
|
|
7995
|
-
"text": "
|
|
7951
|
+
"text": "TemplateResult"
|
|
7996
7952
|
}
|
|
7997
7953
|
},
|
|
7998
|
-
"
|
|
7999
|
-
|
|
8000
|
-
|
|
8001
|
-
|
|
8002
|
-
|
|
8003
|
-
|
|
8004
|
-
|
|
8005
|
-
|
|
8006
|
-
"privacy": "private"
|
|
7954
|
+
"parameters": [
|
|
7955
|
+
{
|
|
7956
|
+
"name": "className",
|
|
7957
|
+
"type": {
|
|
7958
|
+
"text": "string"
|
|
7959
|
+
}
|
|
7960
|
+
}
|
|
7961
|
+
]
|
|
8007
7962
|
},
|
|
8008
7963
|
{
|
|
8009
7964
|
"kind": "method",
|
|
8010
|
-
"name": "
|
|
8011
|
-
"
|
|
7965
|
+
"name": "#renderIndeterminate",
|
|
7966
|
+
"return": {
|
|
7967
|
+
"type": {
|
|
7968
|
+
"text": "TemplateResult"
|
|
7969
|
+
}
|
|
7970
|
+
}
|
|
8012
7971
|
},
|
|
8013
7972
|
{
|
|
8014
7973
|
"kind": "method",
|
|
8015
|
-
"name": "
|
|
8016
|
-
"privacy": "protected",
|
|
7974
|
+
"name": "#renderDeterminate",
|
|
8017
7975
|
"return": {
|
|
8018
7976
|
"type": {
|
|
8019
|
-
"text": "
|
|
8020
|
-
}
|
|
8021
|
-
},
|
|
8022
|
-
"parameters": [
|
|
8023
|
-
{
|
|
8024
|
-
"name": "_",
|
|
8025
|
-
"type": {
|
|
8026
|
-
"text": "UIEvent"
|
|
8027
|
-
}
|
|
7977
|
+
"text": "TemplateResult"
|
|
8028
7978
|
}
|
|
8029
|
-
],
|
|
8030
|
-
"inheritedFrom": {
|
|
8031
|
-
"name": "UmButtonWrapper",
|
|
8032
|
-
"module": "src/shared/button-wrapper.ts"
|
|
8033
7979
|
}
|
|
8034
|
-
}
|
|
7980
|
+
}
|
|
7981
|
+
],
|
|
7982
|
+
"attributes": [
|
|
8035
7983
|
{
|
|
8036
|
-
"
|
|
8037
|
-
"name": "disabled",
|
|
7984
|
+
"name": "value",
|
|
8038
7985
|
"type": {
|
|
8039
|
-
"text": "
|
|
7986
|
+
"text": "number | undefined"
|
|
8040
7987
|
},
|
|
8041
|
-
"
|
|
8042
|
-
"description": "Whether the button is disabled or not.",
|
|
8043
|
-
"attribute": "disabled",
|
|
8044
|
-
"reflects": true,
|
|
8045
|
-
"inheritedFrom": {
|
|
8046
|
-
"name": "UmButtonWrapper",
|
|
8047
|
-
"module": "src/shared/button-wrapper.ts"
|
|
8048
|
-
}
|
|
7988
|
+
"fieldName": "value"
|
|
8049
7989
|
},
|
|
8050
7990
|
{
|
|
8051
|
-
"
|
|
8052
|
-
"name": "renderRipple",
|
|
7991
|
+
"name": "max",
|
|
8053
7992
|
"type": {
|
|
8054
|
-
"text": "
|
|
7993
|
+
"text": "number"
|
|
8055
7994
|
},
|
|
8056
|
-
"default": "
|
|
8057
|
-
"
|
|
8058
|
-
|
|
8059
|
-
|
|
8060
|
-
|
|
8061
|
-
|
|
7995
|
+
"default": "1",
|
|
7996
|
+
"fieldName": "max"
|
|
7997
|
+
}
|
|
7998
|
+
],
|
|
7999
|
+
"superclass": {
|
|
8000
|
+
"name": "LitElement",
|
|
8001
|
+
"package": "lit"
|
|
8002
|
+
},
|
|
8003
|
+
"tagName": "u-circular-progress",
|
|
8004
|
+
"customElement": true
|
|
8005
|
+
}
|
|
8006
|
+
],
|
|
8007
|
+
"exports": [
|
|
8008
|
+
{
|
|
8009
|
+
"kind": "js",
|
|
8010
|
+
"name": "UmCircularProgress",
|
|
8011
|
+
"declaration": {
|
|
8012
|
+
"name": "UmCircularProgress",
|
|
8013
|
+
"module": "src/progress/circular-progress.ts"
|
|
8014
|
+
}
|
|
8015
|
+
},
|
|
8016
|
+
{
|
|
8017
|
+
"kind": "custom-element-definition",
|
|
8018
|
+
"name": "u-circular-progress",
|
|
8019
|
+
"declaration": {
|
|
8020
|
+
"name": "UmCircularProgress",
|
|
8021
|
+
"module": "src/progress/circular-progress.ts"
|
|
8022
|
+
}
|
|
8023
|
+
}
|
|
8024
|
+
]
|
|
8025
|
+
},
|
|
8026
|
+
{
|
|
8027
|
+
"kind": "javascript-module",
|
|
8028
|
+
"path": "src/progress/progress-bar.styles.ts",
|
|
8029
|
+
"declarations": [
|
|
8030
|
+
{
|
|
8031
|
+
"kind": "variable",
|
|
8032
|
+
"name": "styles",
|
|
8033
|
+
"default": "css `\n :host {\n --_border-radius: var(--u-progress-bar-border-radius, var(--u-shape-corner-full, 9999px));\n --_height: var(--u-progress-bar-height, 4px);\n }\n\n :host,\n .determinate,\n .indeterminate {\n overflow: hidden;\n border-radius: var(--_border-radius);\n }\n\n .determinate,\n .indeterminate {\n display: flex;\n gap: 4px;\n }\n\n .indeterminate {\n flex: 1;\n margin-inline: -8px;\n border-radius: var(--_border-radius);\n }\n\n .determinate {\n margin-inline-end: -4px;\n }\n .determinate .bar {\n transition: flex-basis 200ms linear;\n }\n\n .last {\n flex-shrink: 1;\n flex-basis: 100%;\n animation: last 2.1s infinite linear;\n }\n\n .slow {\n animation: slow 2.1s infinite linear;\n }\n\n .middle {\n animation: middle 2.1s infinite linear;\n }\n\n .fast {\n animation: fast 2.1s infinite linear;\n }\n\n .first {\n animation: first 2.1s infinite linear;\n }\n\n .bar {\n height: var(--_height);\n border-radius: var(--_border-radius);\n background: var(--u-progress-bar-color, var(--u-color-primary, rgb(103, 80, 164)));\n }\n\n .track {\n background: var(--u-progress-bar-track-color, var(--u-color-secondary-container, rgb(232, 222, 248)));\n flex-shrink: 1;\n }\n\n @keyframes slow {\n 0% {\n flex-basis: 0;\n }\n 10% {\n flex-basis: 50%;\n }\n 20% {\n flex-basis: 100%;\n }\n 30% {\n flex-basis: 0;\n }\n }\n @keyframes last {\n 0% {\n flex-basis: 100%;\n }\n 10% {\n flex-basis: 50%;\n }\n 20% {\n flex-basis: 0;\n }\n 100% {\n flex-basis: 0;\n }\n }\n @keyframes middle {\n 10% {\n flex-basis: 0;\n }\n 20% {\n flex-basis: 100%;\n }\n 35% {\n flex-basis: 100%;\n }\n 45% {\n flex-basis: 0;\n }\n }\n @keyframes fast {\n 0% {\n flex-basis: 0;\n }\n 25% {\n flex-basis: 0;\n }\n 35% {\n flex-basis: 100%;\n }\n 45% {\n flex-basis: 100%;\n }\n 55% {\n flex-basis: 0;\n }\n }\n @keyframes first {\n 35% {\n flex-basis: 0;\n }\n 45% {\n flex-basis: 100%;\n }\n 100% {\n flex-basis: 100%;\n }\n }\n @keyframes fast-bar-pre {\n 0% {\n flex-basis: 0;\n }\n 60% {\n flex-basis: 0;\n }\n 90% {\n flex-basis: 100%;\n }\n 100% {\n flex-basis: 100%;\n }\n }\n`"
|
|
8034
|
+
}
|
|
8035
|
+
],
|
|
8036
|
+
"exports": [
|
|
8037
|
+
{
|
|
8038
|
+
"kind": "js",
|
|
8039
|
+
"name": "styles",
|
|
8040
|
+
"declaration": {
|
|
8041
|
+
"name": "styles",
|
|
8042
|
+
"module": "src/progress/progress-bar.styles.ts"
|
|
8043
|
+
}
|
|
8044
|
+
}
|
|
8045
|
+
]
|
|
8046
|
+
},
|
|
8047
|
+
{
|
|
8048
|
+
"kind": "javascript-module",
|
|
8049
|
+
"path": "src/progress/progress-bar.ts",
|
|
8050
|
+
"declarations": [
|
|
8051
|
+
{
|
|
8052
|
+
"kind": "class",
|
|
8053
|
+
"description": "",
|
|
8054
|
+
"name": "UmProgressBar",
|
|
8055
|
+
"members": [
|
|
8062
8056
|
{
|
|
8063
8057
|
"kind": "field",
|
|
8064
|
-
"name": "
|
|
8058
|
+
"name": "value",
|
|
8065
8059
|
"type": {
|
|
8066
|
-
"text": "
|
|
8060
|
+
"text": "number | undefined"
|
|
8067
8061
|
},
|
|
8068
|
-
"
|
|
8069
|
-
"attribute": "href",
|
|
8070
|
-
"inheritedFrom": {
|
|
8071
|
-
"name": "UmButtonWrapper",
|
|
8072
|
-
"module": "src/shared/button-wrapper.ts"
|
|
8073
|
-
}
|
|
8062
|
+
"attribute": "value"
|
|
8074
8063
|
},
|
|
8075
8064
|
{
|
|
8076
8065
|
"kind": "field",
|
|
8077
|
-
"name": "
|
|
8066
|
+
"name": "max",
|
|
8078
8067
|
"type": {
|
|
8079
|
-
"text": "
|
|
8068
|
+
"text": "number"
|
|
8080
8069
|
},
|
|
8081
|
-
"
|
|
8082
|
-
"attribute": "
|
|
8083
|
-
|
|
8084
|
-
|
|
8085
|
-
|
|
8070
|
+
"default": "1",
|
|
8071
|
+
"attribute": "max"
|
|
8072
|
+
},
|
|
8073
|
+
{
|
|
8074
|
+
"kind": "method",
|
|
8075
|
+
"name": "#renderIndeterminate",
|
|
8076
|
+
"return": {
|
|
8077
|
+
"type": {
|
|
8078
|
+
"text": "TemplateResult"
|
|
8079
|
+
}
|
|
8086
8080
|
}
|
|
8087
8081
|
},
|
|
8088
8082
|
{
|
|
8089
|
-
"kind": "
|
|
8090
|
-
"name": "
|
|
8083
|
+
"kind": "method",
|
|
8084
|
+
"name": "#renderDeterminate",
|
|
8085
|
+
"return": {
|
|
8086
|
+
"type": {
|
|
8087
|
+
"text": "TemplateResult"
|
|
8088
|
+
}
|
|
8089
|
+
}
|
|
8090
|
+
}
|
|
8091
|
+
],
|
|
8092
|
+
"attributes": [
|
|
8093
|
+
{
|
|
8094
|
+
"name": "value",
|
|
8091
8095
|
"type": {
|
|
8092
|
-
"text": "
|
|
8096
|
+
"text": "number | undefined"
|
|
8093
8097
|
},
|
|
8094
|
-
"
|
|
8095
|
-
"inheritedFrom": {
|
|
8096
|
-
"name": "UmButtonWrapper",
|
|
8097
|
-
"module": "src/shared/button-wrapper.ts"
|
|
8098
|
-
}
|
|
8098
|
+
"fieldName": "value"
|
|
8099
8099
|
},
|
|
8100
8100
|
{
|
|
8101
|
-
"
|
|
8102
|
-
"name": "buttonElement",
|
|
8101
|
+
"name": "max",
|
|
8103
8102
|
"type": {
|
|
8104
|
-
"text": "
|
|
8103
|
+
"text": "number"
|
|
8105
8104
|
},
|
|
8106
|
-
"
|
|
8107
|
-
|
|
8108
|
-
|
|
8109
|
-
|
|
8110
|
-
|
|
8105
|
+
"default": "1",
|
|
8106
|
+
"fieldName": "max"
|
|
8107
|
+
}
|
|
8108
|
+
],
|
|
8109
|
+
"superclass": {
|
|
8110
|
+
"name": "LitElement",
|
|
8111
|
+
"package": "lit"
|
|
8112
|
+
},
|
|
8113
|
+
"tagName": "u-progress-bar",
|
|
8114
|
+
"customElement": true
|
|
8115
|
+
}
|
|
8116
|
+
],
|
|
8117
|
+
"exports": [
|
|
8118
|
+
{
|
|
8119
|
+
"kind": "js",
|
|
8120
|
+
"name": "UmProgressBar",
|
|
8121
|
+
"declaration": {
|
|
8122
|
+
"name": "UmProgressBar",
|
|
8123
|
+
"module": "src/progress/progress-bar.ts"
|
|
8124
|
+
}
|
|
8125
|
+
},
|
|
8126
|
+
{
|
|
8127
|
+
"kind": "custom-element-definition",
|
|
8128
|
+
"name": "u-progress-bar",
|
|
8129
|
+
"declaration": {
|
|
8130
|
+
"name": "UmProgressBar",
|
|
8131
|
+
"module": "src/progress/progress-bar.ts"
|
|
8132
|
+
}
|
|
8133
|
+
}
|
|
8134
|
+
]
|
|
8135
|
+
},
|
|
8136
|
+
{
|
|
8137
|
+
"kind": "javascript-module",
|
|
8138
|
+
"path": "src/radio/radio-list-item.ts",
|
|
8139
|
+
"declarations": [
|
|
8140
|
+
{
|
|
8141
|
+
"kind": "class",
|
|
8142
|
+
"description": "",
|
|
8143
|
+
"name": "UmRadioListItem",
|
|
8144
|
+
"mixins": [
|
|
8145
|
+
{
|
|
8146
|
+
"name": "mixinSelectionControlListItem",
|
|
8147
|
+
"module": "/src/shared/selection-control/selection-control-list-item.js"
|
|
8148
|
+
}
|
|
8149
|
+
],
|
|
8150
|
+
"superclass": {
|
|
8151
|
+
"name": "UmRadio",
|
|
8152
|
+
"module": "/src/radio/radio.js"
|
|
8153
|
+
},
|
|
8154
|
+
"tagName": "u-radio-list-item",
|
|
8155
|
+
"customElement": true,
|
|
8156
|
+
"members": [
|
|
8111
8157
|
{
|
|
8112
8158
|
"kind": "field",
|
|
8113
|
-
"name": "
|
|
8159
|
+
"name": "styles",
|
|
8114
8160
|
"type": {
|
|
8115
|
-
"text": "
|
|
8161
|
+
"text": "array"
|
|
8116
8162
|
},
|
|
8117
|
-
"
|
|
8163
|
+
"static": true,
|
|
8164
|
+
"default": "[\n (base as unknown as typeof LitElement).styles ?? [],\n css`:host {\n --u-list-item-block-padding: 0;\n display: block;\n }`\n ]",
|
|
8118
8165
|
"inheritedFrom": {
|
|
8119
|
-
"name": "
|
|
8120
|
-
"module": "src/shared/
|
|
8166
|
+
"name": "mixinSelectionControlListItem",
|
|
8167
|
+
"module": "src/shared/selection-control/selection-control-list-item.ts"
|
|
8121
8168
|
}
|
|
8122
8169
|
},
|
|
8123
8170
|
{
|
|
8124
|
-
"kind": "
|
|
8125
|
-
"name": "
|
|
8126
|
-
"
|
|
8127
|
-
"
|
|
8171
|
+
"kind": "method",
|
|
8172
|
+
"name": "render",
|
|
8173
|
+
"return": {
|
|
8174
|
+
"type": {
|
|
8175
|
+
"text": "HTMLTemplateResult"
|
|
8176
|
+
}
|
|
8128
8177
|
},
|
|
8129
|
-
"privacy": "protected",
|
|
8130
|
-
"default": "null",
|
|
8131
8178
|
"inheritedFrom": {
|
|
8132
|
-
"name": "
|
|
8133
|
-
"module": "src/shared/
|
|
8179
|
+
"name": "mixinSelectionControlListItem",
|
|
8180
|
+
"module": "src/shared/selection-control/selection-control-list-item.ts"
|
|
8134
8181
|
}
|
|
8135
8182
|
},
|
|
8136
8183
|
{
|
|
8137
8184
|
"kind": "field",
|
|
8138
|
-
"name": "
|
|
8185
|
+
"name": "hideStateLayer",
|
|
8139
8186
|
"type": {
|
|
8140
|
-
"text": "
|
|
8187
|
+
"text": "boolean"
|
|
8141
8188
|
},
|
|
8189
|
+
"default": "false",
|
|
8190
|
+
"attribute": "hide-state-layer",
|
|
8191
|
+
"reflects": true,
|
|
8142
8192
|
"inheritedFrom": {
|
|
8143
|
-
"name": "
|
|
8144
|
-
"module": "src/
|
|
8193
|
+
"name": "UmRadio",
|
|
8194
|
+
"module": "src/radio/radio.ts"
|
|
8145
8195
|
}
|
|
8146
8196
|
},
|
|
8147
8197
|
{
|
|
8148
|
-
"kind": "
|
|
8149
|
-
"name": "
|
|
8150
|
-
"
|
|
8198
|
+
"kind": "field",
|
|
8199
|
+
"name": "inputType",
|
|
8200
|
+
"type": {
|
|
8201
|
+
"text": "'checkbox' | 'radio'"
|
|
8202
|
+
},
|
|
8203
|
+
"privacy": "protected",
|
|
8204
|
+
"default": "'radio'",
|
|
8151
8205
|
"inheritedFrom": {
|
|
8152
|
-
"name": "
|
|
8153
|
-
"module": "src/shared/
|
|
8206
|
+
"name": "UmSelectionControl",
|
|
8207
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8154
8208
|
}
|
|
8155
8209
|
},
|
|
8156
8210
|
{
|
|
8157
8211
|
"kind": "method",
|
|
8158
|
-
"name": "
|
|
8159
|
-
"privacy": "
|
|
8212
|
+
"name": "renderIndicator",
|
|
8213
|
+
"privacy": "protected",
|
|
8214
|
+
"return": {
|
|
8215
|
+
"type": {
|
|
8216
|
+
"text": "HTMLTemplateResult"
|
|
8217
|
+
}
|
|
8218
|
+
},
|
|
8160
8219
|
"inheritedFrom": {
|
|
8161
|
-
"name": "
|
|
8162
|
-
"module": "src/shared/
|
|
8220
|
+
"name": "UmSelectionControl",
|
|
8221
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8163
8222
|
}
|
|
8164
8223
|
},
|
|
8165
8224
|
{
|
|
8166
|
-
"kind": "
|
|
8167
|
-
"name": "
|
|
8225
|
+
"kind": "field",
|
|
8226
|
+
"name": "checked",
|
|
8227
|
+
"attribute": "checked",
|
|
8168
8228
|
"inheritedFrom": {
|
|
8169
|
-
"name": "
|
|
8170
|
-
"module": "src/shared/
|
|
8229
|
+
"name": "UmSelectionControl",
|
|
8230
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8171
8231
|
}
|
|
8172
8232
|
},
|
|
8173
8233
|
{
|
|
8174
|
-
"kind": "
|
|
8175
|
-
"name": "
|
|
8234
|
+
"kind": "field",
|
|
8235
|
+
"name": "#siblings",
|
|
8236
|
+
"privacy": "private",
|
|
8237
|
+
"type": {
|
|
8238
|
+
"text": "UmRadio[]"
|
|
8239
|
+
},
|
|
8176
8240
|
"inheritedFrom": {
|
|
8177
|
-
"name": "
|
|
8178
|
-
"module": "src/
|
|
8241
|
+
"name": "UmRadio",
|
|
8242
|
+
"module": "src/radio/radio.ts"
|
|
8179
8243
|
}
|
|
8180
8244
|
},
|
|
8181
8245
|
{
|
|
8182
8246
|
"kind": "method",
|
|
8183
|
-
"name": "
|
|
8184
|
-
"
|
|
8185
|
-
|
|
8186
|
-
|
|
8187
|
-
"
|
|
8247
|
+
"name": "#handleKeyDown",
|
|
8248
|
+
"parameters": [
|
|
8249
|
+
{
|
|
8250
|
+
"name": "event",
|
|
8251
|
+
"type": {
|
|
8252
|
+
"text": "KeyboardEvent"
|
|
8253
|
+
}
|
|
8188
8254
|
}
|
|
8189
|
-
|
|
8255
|
+
],
|
|
8190
8256
|
"inheritedFrom": {
|
|
8191
|
-
"name": "
|
|
8192
|
-
"module": "src/
|
|
8257
|
+
"name": "UmRadio",
|
|
8258
|
+
"module": "src/radio/radio.ts"
|
|
8193
8259
|
}
|
|
8194
8260
|
},
|
|
8195
8261
|
{
|
|
8196
8262
|
"kind": "method",
|
|
8197
|
-
"name": "
|
|
8263
|
+
"name": "ensureOnlyOneChecked",
|
|
8198
8264
|
"privacy": "private",
|
|
8199
|
-
"return": {
|
|
8200
|
-
"type": {
|
|
8201
|
-
"text": "void"
|
|
8202
|
-
}
|
|
8203
|
-
},
|
|
8204
8265
|
"inheritedFrom": {
|
|
8205
|
-
"name": "
|
|
8206
|
-
"module": "src/
|
|
8266
|
+
"name": "UmRadio",
|
|
8267
|
+
"module": "src/radio/radio.ts"
|
|
8207
8268
|
}
|
|
8208
8269
|
},
|
|
8209
8270
|
{
|
|
8210
8271
|
"kind": "method",
|
|
8211
|
-
"name": "
|
|
8212
|
-
"
|
|
8213
|
-
"type": {
|
|
8214
|
-
"text": "void"
|
|
8215
|
-
}
|
|
8216
|
-
},
|
|
8217
|
-
"parameters": [
|
|
8218
|
-
{
|
|
8219
|
-
"name": "event",
|
|
8220
|
-
"type": {
|
|
8221
|
-
"text": "MouseEvent"
|
|
8222
|
-
}
|
|
8223
|
-
}
|
|
8224
|
-
],
|
|
8272
|
+
"name": "uncheckSiblings",
|
|
8273
|
+
"privacy": "private",
|
|
8225
8274
|
"inheritedFrom": {
|
|
8226
|
-
"name": "
|
|
8227
|
-
"module": "src/
|
|
8275
|
+
"name": "UmRadio",
|
|
8276
|
+
"module": "src/radio/radio.ts"
|
|
8228
8277
|
}
|
|
8229
|
-
}
|
|
8230
|
-
],
|
|
8231
|
-
"attributes": [
|
|
8232
|
-
{
|
|
8233
|
-
"name": "has-icon",
|
|
8234
|
-
"type": {
|
|
8235
|
-
"text": "boolean"
|
|
8236
|
-
},
|
|
8237
|
-
"default": "false",
|
|
8238
|
-
"description": "Whether the drawer item has icon or not\n\n_Note:_ Readonly",
|
|
8239
|
-
"fieldName": "hasIcon"
|
|
8240
8278
|
},
|
|
8241
8279
|
{
|
|
8242
|
-
"
|
|
8280
|
+
"kind": "field",
|
|
8281
|
+
"name": "formAssociated",
|
|
8243
8282
|
"type": {
|
|
8244
8283
|
"text": "boolean"
|
|
8245
8284
|
},
|
|
8246
|
-
"
|
|
8247
|
-
"
|
|
8248
|
-
"
|
|
8285
|
+
"static": true,
|
|
8286
|
+
"default": "true",
|
|
8287
|
+
"inheritedFrom": {
|
|
8288
|
+
"name": "UmSelectionControl",
|
|
8289
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8290
|
+
}
|
|
8249
8291
|
},
|
|
8250
8292
|
{
|
|
8251
|
-
"
|
|
8293
|
+
"kind": "field",
|
|
8294
|
+
"name": "elementInternals",
|
|
8252
8295
|
"type": {
|
|
8253
|
-
"text": "
|
|
8296
|
+
"text": "ElementInternals"
|
|
8254
8297
|
},
|
|
8255
|
-
"
|
|
8256
|
-
"
|
|
8257
|
-
|
|
8298
|
+
"privacy": "protected",
|
|
8299
|
+
"inheritedFrom": {
|
|
8300
|
+
"name": "UmSelectionControl",
|
|
8301
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8302
|
+
}
|
|
8258
8303
|
},
|
|
8259
8304
|
{
|
|
8260
|
-
"
|
|
8305
|
+
"kind": "field",
|
|
8306
|
+
"name": "name",
|
|
8261
8307
|
"type": {
|
|
8262
|
-
"text": "
|
|
8308
|
+
"text": "string | undefined"
|
|
8263
8309
|
},
|
|
8264
|
-
"default": "
|
|
8265
|
-
"
|
|
8266
|
-
"
|
|
8310
|
+
"default": "''",
|
|
8311
|
+
"attribute": "name",
|
|
8312
|
+
"inheritedFrom": {
|
|
8313
|
+
"name": "UmSelectionControl",
|
|
8314
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8315
|
+
}
|
|
8267
8316
|
},
|
|
8268
8317
|
{
|
|
8318
|
+
"kind": "field",
|
|
8269
8319
|
"name": "disabled",
|
|
8270
8320
|
"type": {
|
|
8271
8321
|
"text": "boolean"
|
|
8272
8322
|
},
|
|
8273
8323
|
"default": "false",
|
|
8274
|
-
"
|
|
8275
|
-
"
|
|
8324
|
+
"attribute": "disabled",
|
|
8325
|
+
"reflects": true,
|
|
8276
8326
|
"inheritedFrom": {
|
|
8277
|
-
"name": "
|
|
8278
|
-
"module": "src/shared/
|
|
8327
|
+
"name": "UmSelectionControl",
|
|
8328
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8279
8329
|
}
|
|
8280
8330
|
},
|
|
8281
8331
|
{
|
|
8282
|
-
"
|
|
8332
|
+
"kind": "field",
|
|
8333
|
+
"name": "input",
|
|
8283
8334
|
"type": {
|
|
8284
|
-
"text": "
|
|
8335
|
+
"text": "HTMLInputElement"
|
|
8285
8336
|
},
|
|
8286
|
-
"description": "The URL that the link button points to.",
|
|
8287
|
-
"fieldName": "href",
|
|
8288
8337
|
"inheritedFrom": {
|
|
8289
|
-
"name": "
|
|
8290
|
-
"module": "src/shared/
|
|
8338
|
+
"name": "UmSelectionControl",
|
|
8339
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8291
8340
|
}
|
|
8292
8341
|
},
|
|
8293
8342
|
{
|
|
8294
|
-
"
|
|
8343
|
+
"kind": "field",
|
|
8344
|
+
"name": "form",
|
|
8295
8345
|
"type": {
|
|
8296
|
-
"text": "
|
|
8346
|
+
"text": "HTMLFormElement | null"
|
|
8297
8347
|
},
|
|
8298
|
-
"description": "Where to display the linked `href` URL for a link button. Common options\ninclude `_blank` to open in a new tab.",
|
|
8299
|
-
"fieldName": "target",
|
|
8300
8348
|
"inheritedFrom": {
|
|
8301
|
-
"name": "
|
|
8302
|
-
"module": "src/shared/
|
|
8349
|
+
"name": "UmSelectionControl",
|
|
8350
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8303
8351
|
}
|
|
8304
8352
|
},
|
|
8305
|
-
{
|
|
8306
|
-
"name": "name",
|
|
8307
|
-
"type": {
|
|
8308
|
-
"text": "string | undefined"
|
|
8309
|
-
},
|
|
8310
|
-
"fieldName": "name",
|
|
8311
|
-
"inheritedFrom": {
|
|
8312
|
-
"name": "UmButtonWrapper",
|
|
8313
|
-
"module": "src/shared/button-wrapper.ts"
|
|
8314
|
-
}
|
|
8315
|
-
}
|
|
8316
|
-
],
|
|
8317
|
-
"superclass": {
|
|
8318
|
-
"name": "UmButtonWrapper",
|
|
8319
|
-
"module": "/src/shared/button-wrapper.js"
|
|
8320
|
-
},
|
|
8321
|
-
"tagName": "u-drawer-item",
|
|
8322
|
-
"customElement": true
|
|
8323
|
-
}
|
|
8324
|
-
],
|
|
8325
|
-
"exports": [
|
|
8326
|
-
{
|
|
8327
|
-
"kind": "js",
|
|
8328
|
-
"name": "UmDrawerItem",
|
|
8329
|
-
"declaration": {
|
|
8330
|
-
"name": "UmDrawerItem",
|
|
8331
|
-
"module": "src/navigation/drawer-item.ts"
|
|
8332
|
-
}
|
|
8333
|
-
},
|
|
8334
|
-
{
|
|
8335
|
-
"kind": "custom-element-definition",
|
|
8336
|
-
"name": "u-drawer-item",
|
|
8337
|
-
"declaration": {
|
|
8338
|
-
"name": "UmDrawerItem",
|
|
8339
|
-
"module": "src/navigation/drawer-item.ts"
|
|
8340
|
-
}
|
|
8341
|
-
}
|
|
8342
|
-
]
|
|
8343
|
-
},
|
|
8344
|
-
{
|
|
8345
|
-
"kind": "javascript-module",
|
|
8346
|
-
"path": "src/navigation/drawer.styles.ts",
|
|
8347
|
-
"declarations": [
|
|
8348
|
-
{
|
|
8349
|
-
"kind": "variable",
|
|
8350
|
-
"name": "styles",
|
|
8351
|
-
"default": "css `\n :host {\n display: block;\n background-color: var(--u-modal-drawer-background-color, var(--u-color-surface-container-low, rgb(247, 242, 250)));\n color: var(--u-drawer-text-color, var(--u-color-on-secondary-container, rgb(29, 25, 43)));\n height: 100%;\n padding-inline: var(--u-drawer-padding, 28px);\n }\n\n @media (min-width: 1200px) {\n :host {\n background-color: var(--u-standard-drawer-background-color, var(--u-color-body, var(--u-color-surface, rgb(254, 247, 255))));\n }\n }\n`"
|
|
8352
|
-
}
|
|
8353
|
-
],
|
|
8354
|
-
"exports": [
|
|
8355
|
-
{
|
|
8356
|
-
"kind": "js",
|
|
8357
|
-
"name": "styles",
|
|
8358
|
-
"declaration": {
|
|
8359
|
-
"name": "styles",
|
|
8360
|
-
"module": "src/navigation/drawer.styles.ts"
|
|
8361
|
-
}
|
|
8362
|
-
}
|
|
8363
|
-
]
|
|
8364
|
-
},
|
|
8365
|
-
{
|
|
8366
|
-
"kind": "javascript-module",
|
|
8367
|
-
"path": "src/navigation/drawer.ts",
|
|
8368
|
-
"declarations": [
|
|
8369
|
-
{
|
|
8370
|
-
"kind": "class",
|
|
8371
|
-
"description": "",
|
|
8372
|
-
"name": "UmDrawer",
|
|
8373
|
-
"members": [],
|
|
8374
|
-
"superclass": {
|
|
8375
|
-
"name": "LitElement",
|
|
8376
|
-
"package": "lit"
|
|
8377
|
-
},
|
|
8378
|
-
"tagName": "u-drawer",
|
|
8379
|
-
"customElement": true
|
|
8380
|
-
}
|
|
8381
|
-
],
|
|
8382
|
-
"exports": [
|
|
8383
|
-
{
|
|
8384
|
-
"kind": "js",
|
|
8385
|
-
"name": "UmDrawer",
|
|
8386
|
-
"declaration": {
|
|
8387
|
-
"name": "UmDrawer",
|
|
8388
|
-
"module": "src/navigation/drawer.ts"
|
|
8389
|
-
}
|
|
8390
|
-
},
|
|
8391
|
-
{
|
|
8392
|
-
"kind": "custom-element-definition",
|
|
8393
|
-
"name": "u-drawer",
|
|
8394
|
-
"declaration": {
|
|
8395
|
-
"name": "UmDrawer",
|
|
8396
|
-
"module": "src/navigation/drawer.ts"
|
|
8397
|
-
}
|
|
8398
|
-
}
|
|
8399
|
-
]
|
|
8400
|
-
},
|
|
8401
|
-
{
|
|
8402
|
-
"kind": "javascript-module",
|
|
8403
|
-
"path": "src/navigation/side-navigation-swiper.styles.ts",
|
|
8404
|
-
"declarations": [
|
|
8405
|
-
{
|
|
8406
|
-
"kind": "variable",
|
|
8407
|
-
"name": "styles",
|
|
8408
|
-
"default": "css `\n :host {\n --_navigation-width: 0;\n --_navigation-drawer-width: min(var(--u-navigation-drawer-width, 360px), 85vw);\n --_navigation-drawer-width-negative: calc(var(--_navigation-drawer-width) * -1);\n --_navigation-drawer-corner-shape: var(--u-navigation-drawer-corner-shape, var(--u-shape-corner-large, 16px));\n --_scrim-opacity: var(--u-drawer-scrim-opacity, .4);\n display: block;\n width: 100%;\n height: 100%;\n --u-app-bar-offset: var(--_navigation-width);\n }\n\n :host(.disable-transition) * {\n transition: none !important;\n }\n :host(.disable-transition) * ::slotted(u-top-app-bar) {\n transition: none !important;\n }\n\n .drawer {\n transition: inset 375ms cubic-bezier(0.19, 1, 0.22, 1);\n }\n .drawer,\n .drawer u-elevation,\n .drawer .drawer-container {\n border-start-end-radius: var(--_navigation-drawer-corner-shape);\n border-end-end-radius: var(--_navigation-drawer-corner-shape);\n }\n .drawer.toggle u-elevation {\n --u-elevation-level: 1;\n }\n\n .drawer-container {\n height: 100%;\n overflow: hidden;\n }\n\n .scrim {\n --_modal-drawer-open-progress: 0;\n position: absolute;\n inset-inline-start: 0;\n inset-block-start: 0;\n width: 100vw;\n height: 100vh;\n background: var(--u-drawer-scrim-color, var(--u-color-scrim, rgb(0, 0, 0)));\n pointer-events: none;\n opacity: calc(var(--_scrim-opacity) * var(--_modal-drawer-open-progress));\n transition: opacity 375ms linear;\n }\n .scrim.moving {\n transition: none;\n }\n .scrim.toggle {\n --_modal-drawer-open-progress: 1;\n pointer-events: auto;\n }\n\n @media (min-width: 840px) {\n .content slot {\n display: flex;\n flex-direction: column;\n height: 100vh;\n }\n }\n @media (min-width: 1200px) {\n .container {\n --_navigation-width: var(--_navigation-drawer-width);\n }\n .container:has(.drawer.toggle) {\n --_navigation-width: 0;\n }\n .drawer {\n border-radius: 0;\n inset-inline-start: 0;\n }\n .drawer.toggle {\n inset-inline-start: var(--_navigation-drawer-width-negative);\n }\n u-elevation,\n .scrim {\n display: none;\n }\n }\n .content {\n position: fixed;\n inset: 0;\n z-index: 1;\n overflow: auto;\n }\n\n .drawer {\n position: relative;\n width: var(--_navigation-drawer-width);\n z-index: var(--u-side-navigation-z-index, 1030);\n pointer-events: auto;\n }\n\n .scrim {\n z-index: 1;\n }\n\n swiper-container {\n height: 100%;\n --u-app-bar-offset: var(--_navigation-width);\n }\n\n swiper-container::part(wrapper) {\n pointer-events: none;\n z-index: 2;\n }\n\n @media (min-width: 1200px) {\n :host {\n --_navigation-width: var(--_navigation-drawer-width);\n }\n .content {\n position: static;\n }\n swiper-container::part(container) {\n display: grid;\n grid-template-columns: var(--_navigation-width) minmax(0, 1fr);\n transition: 375ms cubic-bezier(0.19, 1, 0.22, 1);\n }\n .dummy-slide {\n display: none;\n }\n }\n`"
|
|
8409
|
-
}
|
|
8410
|
-
],
|
|
8411
|
-
"exports": [
|
|
8412
|
-
{
|
|
8413
|
-
"kind": "js",
|
|
8414
|
-
"name": "styles",
|
|
8415
|
-
"declaration": {
|
|
8416
|
-
"name": "styles",
|
|
8417
|
-
"module": "src/navigation/side-navigation-swiper.styles.ts"
|
|
8418
|
-
}
|
|
8419
|
-
}
|
|
8420
|
-
]
|
|
8421
|
-
},
|
|
8422
|
-
{
|
|
8423
|
-
"kind": "javascript-module",
|
|
8424
|
-
"path": "src/navigation/side-navigation.styles.ts",
|
|
8425
|
-
"declarations": [
|
|
8426
|
-
{
|
|
8427
|
-
"kind": "variable",
|
|
8428
|
-
"name": "styles",
|
|
8429
|
-
"default": "css `\n :host {\n --_navigation-width: 0;\n --_navigation-drawer-width: min(var(--u-navigation-drawer-width, 360px), 85vw);\n --_navigation-drawer-width-negative: calc(var(--_navigation-drawer-width) * -1);\n --_navigation-drawer-corner-shape: var(--u-navigation-drawer-corner-shape, var(--u-shape-corner-large, 16px));\n --_scrim-opacity: var(--u-drawer-scrim-opacity, .4);\n display: block;\n width: 100%;\n height: 100%;\n --u-app-bar-offset: var(--_navigation-width);\n }\n\n :host(.disable-transition) * {\n transition: none !important;\n }\n :host(.disable-transition) * ::slotted(u-top-app-bar) {\n transition: none !important;\n }\n\n .drawer {\n transition: inset 375ms cubic-bezier(0.19, 1, 0.22, 1);\n }\n .drawer,\n .drawer u-elevation,\n .drawer .drawer-container {\n border-start-end-radius: var(--_navigation-drawer-corner-shape);\n border-end-end-radius: var(--_navigation-drawer-corner-shape);\n }\n .drawer.toggle u-elevation {\n --u-elevation-level: 1;\n }\n\n .drawer-container {\n height: 100%;\n overflow: hidden;\n }\n\n .scrim {\n --_modal-drawer-open-progress: 0;\n position: absolute;\n inset-inline-start: 0;\n inset-block-start: 0;\n width: 100vw;\n height: 100vh;\n background: var(--u-drawer-scrim-color, var(--u-color-scrim, rgb(0, 0, 0)));\n pointer-events: none;\n opacity: calc(var(--_scrim-opacity) * var(--_modal-drawer-open-progress));\n transition: opacity 375ms linear;\n }\n .scrim.moving {\n transition: none;\n }\n .scrim.toggle {\n --_modal-drawer-open-progress: 1;\n pointer-events: auto;\n }\n\n @media (min-width: 840px) {\n .content slot {\n display: flex;\n flex-direction: column;\n height: 100vh;\n }\n }\n @media (min-width: 1200px) {\n .container {\n --_navigation-width: var(--_navigation-drawer-width);\n }\n .container:has(.drawer.toggle) {\n --_navigation-width: 0;\n }\n .drawer {\n border-radius: 0;\n inset-inline-start: 0;\n }\n .drawer.toggle {\n inset-inline-start: var(--_navigation-drawer-width-negative);\n }\n u-elevation,\n .scrim {\n display: none;\n }\n }\n .navigation {\n position: fixed;\n inset-inline-start: 0;\n inset-block-start: 0;\n height: 100%;\n z-index: var(--u-side-navigation-z-index, 1030);\n }\n\n .drawer {\n position: absolute;\n inset-inline-start: var(--_navigation-drawer-width-negative);\n inset-block-start: 0;\n width: var(--_navigation-drawer-width);\n height: 100%;\n border-start-end-radius: var(--_navigation-drawer-corner-shape);\n border-end-end-radius: var(--_navigation-drawer-corner-shape);\n overflow: hidden;\n }\n .drawer.toggle {\n inset-inline-start: 0;\n }\n\n .grid {\n display: grid;\n grid-template-columns: var(--_navigation-width) minmax(0, 1fr);\n transition: 375ms cubic-bezier(0.19, 1, 0.22, 1);\n --u-app-bar-offset: var(--_navigation-width);\n }\n\n @media (min-width: 1200px) {\n .drawer {\n inset-inline-start: 0;\n }\n .drawer.toggle {\n inset-inline-start: var(--_navigation-drawer-width-negative);\n }\n }\n`"
|
|
8430
|
-
}
|
|
8431
|
-
],
|
|
8432
|
-
"exports": [
|
|
8433
|
-
{
|
|
8434
|
-
"kind": "js",
|
|
8435
|
-
"name": "styles",
|
|
8436
|
-
"declaration": {
|
|
8437
|
-
"name": "styles",
|
|
8438
|
-
"module": "src/navigation/side-navigation.styles.ts"
|
|
8439
|
-
}
|
|
8440
|
-
}
|
|
8441
|
-
]
|
|
8442
|
-
},
|
|
8443
|
-
{
|
|
8444
|
-
"kind": "javascript-module",
|
|
8445
|
-
"path": "src/navigation/side-navigation.ts",
|
|
8446
|
-
"declarations": [
|
|
8447
|
-
{
|
|
8448
|
-
"kind": "class",
|
|
8449
|
-
"description": "",
|
|
8450
|
-
"name": "UmSideNavigation",
|
|
8451
|
-
"members": [
|
|
8452
8353
|
{
|
|
8453
8354
|
"kind": "field",
|
|
8454
|
-
"name": "#
|
|
8355
|
+
"name": "#checked",
|
|
8455
8356
|
"privacy": "private",
|
|
8456
8357
|
"type": {
|
|
8457
8358
|
"text": "boolean"
|
|
8458
8359
|
},
|
|
8459
|
-
"default": "false"
|
|
8360
|
+
"default": "false",
|
|
8361
|
+
"inheritedFrom": {
|
|
8362
|
+
"name": "UmSelectionControl",
|
|
8363
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8364
|
+
}
|
|
8460
8365
|
},
|
|
8461
8366
|
{
|
|
8462
8367
|
"kind": "field",
|
|
8463
|
-
"name": "
|
|
8368
|
+
"name": "renderRipple",
|
|
8464
8369
|
"type": {
|
|
8465
8370
|
"text": "boolean"
|
|
8466
8371
|
},
|
|
8467
|
-
"privacy": "
|
|
8468
|
-
"default": "
|
|
8469
|
-
|
|
8470
|
-
|
|
8471
|
-
|
|
8472
|
-
"name": "toggleDrawer",
|
|
8473
|
-
"description": "Toggle the navigation drawer visibility\n\n_Modal drawer_: Open if `true`, closed if `false`\n_Standard drawer_: Collapsed if `true`, visible if `false`",
|
|
8474
|
-
"attribute": "toggle-drawer"
|
|
8475
|
-
},
|
|
8476
|
-
{
|
|
8477
|
-
"kind": "field",
|
|
8478
|
-
"name": "swiperContainer",
|
|
8479
|
-
"type": {
|
|
8480
|
-
"text": "any"
|
|
8481
|
-
}
|
|
8482
|
-
},
|
|
8483
|
-
{
|
|
8484
|
-
"kind": "field",
|
|
8485
|
-
"name": "scrim",
|
|
8486
|
-
"type": {
|
|
8487
|
-
"text": "HTMLElement"
|
|
8372
|
+
"privacy": "protected",
|
|
8373
|
+
"default": "true",
|
|
8374
|
+
"inheritedFrom": {
|
|
8375
|
+
"name": "UmSelectionControl",
|
|
8376
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8488
8377
|
}
|
|
8489
8378
|
},
|
|
8490
8379
|
{
|
|
8491
8380
|
"kind": "field",
|
|
8492
|
-
"name": "
|
|
8381
|
+
"name": "value",
|
|
8493
8382
|
"type": {
|
|
8494
|
-
"text": "
|
|
8383
|
+
"text": "string"
|
|
8384
|
+
},
|
|
8385
|
+
"default": "'on'",
|
|
8386
|
+
"description": "The element value to use in form submission when checked.",
|
|
8387
|
+
"attribute": "value",
|
|
8388
|
+
"inheritedFrom": {
|
|
8389
|
+
"name": "UmSelectionControl",
|
|
8390
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8495
8391
|
}
|
|
8496
8392
|
},
|
|
8497
8393
|
{
|
|
8498
8394
|
"kind": "method",
|
|
8499
|
-
"name": "
|
|
8500
|
-
"privacy": "private"
|
|
8501
|
-
},
|
|
8502
|
-
{
|
|
8503
|
-
"kind": "method",
|
|
8504
|
-
"name": "renderWithSwipe",
|
|
8505
|
-
"privacy": "private"
|
|
8506
|
-
},
|
|
8507
|
-
{
|
|
8508
|
-
"kind": "method",
|
|
8509
|
-
"name": "swiperActiveIndexChange",
|
|
8510
|
-
"privacy": "private"
|
|
8511
|
-
},
|
|
8512
|
-
{
|
|
8513
|
-
"kind": "method",
|
|
8514
|
-
"name": "swiperTransitionStart",
|
|
8515
|
-
"privacy": "private"
|
|
8516
|
-
},
|
|
8517
|
-
{
|
|
8518
|
-
"kind": "method",
|
|
8519
|
-
"name": "slidesGridLengthChange",
|
|
8520
|
-
"privacy": "private"
|
|
8521
|
-
},
|
|
8522
|
-
{
|
|
8523
|
-
"kind": "method",
|
|
8524
|
-
"name": "swiperTransitionEnd",
|
|
8525
|
-
"privacy": "private"
|
|
8526
|
-
},
|
|
8527
|
-
{
|
|
8528
|
-
"kind": "method",
|
|
8529
|
-
"name": "swiperSliderMove",
|
|
8530
|
-
"privacy": "private",
|
|
8395
|
+
"name": "#handleClick",
|
|
8531
8396
|
"parameters": [
|
|
8532
8397
|
{
|
|
8533
8398
|
"name": "e",
|
|
@@ -8535,183 +8400,123 @@
|
|
|
8535
8400
|
"text": "Event"
|
|
8536
8401
|
}
|
|
8537
8402
|
}
|
|
8538
|
-
]
|
|
8539
|
-
|
|
8540
|
-
|
|
8541
|
-
|
|
8542
|
-
|
|
8543
|
-
"privacy": "private"
|
|
8403
|
+
],
|
|
8404
|
+
"inheritedFrom": {
|
|
8405
|
+
"name": "UmSelectionControl",
|
|
8406
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8407
|
+
}
|
|
8544
8408
|
}
|
|
8545
8409
|
],
|
|
8546
8410
|
"attributes": [
|
|
8547
8411
|
{
|
|
8548
|
-
"name": "
|
|
8549
|
-
"description": "Toggle the navigation drawer visibility\n\n_Modal drawer_: Open if `true`, closed if `false`\n_Standard drawer_: Collapsed if `true`, visible if `false`",
|
|
8550
|
-
"fieldName": "toggleDrawer"
|
|
8551
|
-
}
|
|
8552
|
-
],
|
|
8553
|
-
"superclass": {
|
|
8554
|
-
"name": "LitElement",
|
|
8555
|
-
"package": "lit"
|
|
8556
|
-
},
|
|
8557
|
-
"tagName": "u-side-navigation",
|
|
8558
|
-
"customElement": true
|
|
8559
|
-
}
|
|
8560
|
-
],
|
|
8561
|
-
"exports": [
|
|
8562
|
-
{
|
|
8563
|
-
"kind": "js",
|
|
8564
|
-
"name": "UmSideNavigation",
|
|
8565
|
-
"declaration": {
|
|
8566
|
-
"name": "UmSideNavigation",
|
|
8567
|
-
"module": "src/navigation/side-navigation.ts"
|
|
8568
|
-
}
|
|
8569
|
-
},
|
|
8570
|
-
{
|
|
8571
|
-
"kind": "custom-element-definition",
|
|
8572
|
-
"name": "u-side-navigation",
|
|
8573
|
-
"declaration": {
|
|
8574
|
-
"name": "UmSideNavigation",
|
|
8575
|
-
"module": "src/navigation/side-navigation.ts"
|
|
8576
|
-
}
|
|
8577
|
-
}
|
|
8578
|
-
]
|
|
8579
|
-
},
|
|
8580
|
-
{
|
|
8581
|
-
"kind": "javascript-module",
|
|
8582
|
-
"path": "src/progress/circular-progress.styles.ts",
|
|
8583
|
-
"declarations": [
|
|
8584
|
-
{
|
|
8585
|
-
"kind": "variable",
|
|
8586
|
-
"name": "styles",
|
|
8587
|
-
"default": "css `\n :host {\n position: relative;\n display: inline-block;\n width: var(--_size);\n height: var(--_size);\n margin-inline: auto;\n --_size: var(--u-circular-progress-size, 3rem);\n }\n\n .circular {\n width: 100%;\n height: 100%;\n transform: rotate(-90deg);\n transform-origin: center;\n }\n .circular.indeterminate {\n position: relative;\n animation: rotate 2s linear infinite;\n }\n .circular:not(.indeterminate) .path {\n transition: stroke-dashoffset 200ms linear;\n }\n\n .path {\n stroke-linecap: round;\n stroke: var(--u-circular-progress-color, var(--u-color-primary, rgb(103, 80, 164)));\n }\n\n .track {\n position: absolute;\n inset: 0;\n }\n .track .path {\n stroke: var(--u-circular-progress-track-color, var(--u-color-secondary-container, rgb(232, 222, 248)));\n }\n\n .indeterminate .path {\n stroke-dasharray: 1, 200;\n stroke-dashoffset: 0;\n animation: dash 1.5s ease-in-out infinite;\n }\n\n .on-going {\n transform: rotate(-80deg);\n }\n .on-going.track {\n transform: rotate(-100deg);\n }\n\n @keyframes rotate {\n 0% {\n transform: rotate(0);\n }\n 100% {\n transform: rotate(360deg);\n }\n }\n @keyframes dash {\n 0% {\n stroke-dasharray: 1, 200;\n stroke-dashoffset: 0;\n }\n 50% {\n stroke-dasharray: 89, 200;\n stroke-dashoffset: -35;\n }\n 100% {\n stroke-dasharray: 89, 200;\n stroke-dashoffset: -124;\n }\n }\n`"
|
|
8588
|
-
}
|
|
8589
|
-
],
|
|
8590
|
-
"exports": [
|
|
8591
|
-
{
|
|
8592
|
-
"kind": "js",
|
|
8593
|
-
"name": "styles",
|
|
8594
|
-
"declaration": {
|
|
8595
|
-
"name": "styles",
|
|
8596
|
-
"module": "src/progress/circular-progress.styles.ts"
|
|
8597
|
-
}
|
|
8598
|
-
}
|
|
8599
|
-
]
|
|
8600
|
-
},
|
|
8601
|
-
{
|
|
8602
|
-
"kind": "javascript-module",
|
|
8603
|
-
"path": "src/progress/circular-progress.ts",
|
|
8604
|
-
"declarations": [
|
|
8605
|
-
{
|
|
8606
|
-
"kind": "class",
|
|
8607
|
-
"description": "",
|
|
8608
|
-
"name": "UmCircularProgress",
|
|
8609
|
-
"members": [
|
|
8610
|
-
{
|
|
8611
|
-
"kind": "field",
|
|
8612
|
-
"name": "value",
|
|
8412
|
+
"name": "hide-state-layer",
|
|
8613
8413
|
"type": {
|
|
8614
|
-
"text": "
|
|
8414
|
+
"text": "boolean"
|
|
8615
8415
|
},
|
|
8616
|
-
"
|
|
8416
|
+
"default": "false",
|
|
8417
|
+
"fieldName": "hideStateLayer",
|
|
8418
|
+
"inheritedFrom": {
|
|
8419
|
+
"name": "UmRadio",
|
|
8420
|
+
"module": "src/radio/radio.ts"
|
|
8421
|
+
}
|
|
8617
8422
|
},
|
|
8618
8423
|
{
|
|
8619
|
-
"
|
|
8620
|
-
"name": "max",
|
|
8424
|
+
"name": "name",
|
|
8621
8425
|
"type": {
|
|
8622
|
-
"text": "
|
|
8426
|
+
"text": "string | undefined"
|
|
8623
8427
|
},
|
|
8624
|
-
"default": "
|
|
8625
|
-
"
|
|
8428
|
+
"default": "''",
|
|
8429
|
+
"fieldName": "name",
|
|
8430
|
+
"inheritedFrom": {
|
|
8431
|
+
"name": "UmSelectionControl",
|
|
8432
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8433
|
+
}
|
|
8626
8434
|
},
|
|
8627
8435
|
{
|
|
8628
|
-
"
|
|
8629
|
-
"
|
|
8630
|
-
|
|
8631
|
-
"type": {
|
|
8632
|
-
"text": "TemplateResult"
|
|
8633
|
-
}
|
|
8436
|
+
"name": "disabled",
|
|
8437
|
+
"type": {
|
|
8438
|
+
"text": "boolean"
|
|
8634
8439
|
},
|
|
8635
|
-
"
|
|
8636
|
-
|
|
8637
|
-
|
|
8638
|
-
|
|
8639
|
-
|
|
8640
|
-
|
|
8641
|
-
}
|
|
8642
|
-
]
|
|
8440
|
+
"default": "false",
|
|
8441
|
+
"fieldName": "disabled",
|
|
8442
|
+
"inheritedFrom": {
|
|
8443
|
+
"name": "UmSelectionControl",
|
|
8444
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8445
|
+
}
|
|
8643
8446
|
},
|
|
8644
8447
|
{
|
|
8645
|
-
"
|
|
8646
|
-
"
|
|
8647
|
-
|
|
8648
|
-
|
|
8649
|
-
|
|
8650
|
-
|
|
8448
|
+
"name": "value",
|
|
8449
|
+
"type": {
|
|
8450
|
+
"text": "string"
|
|
8451
|
+
},
|
|
8452
|
+
"default": "'on'",
|
|
8453
|
+
"description": "The element value to use in form submission when checked.",
|
|
8454
|
+
"fieldName": "value",
|
|
8455
|
+
"inheritedFrom": {
|
|
8456
|
+
"name": "UmSelectionControl",
|
|
8457
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8651
8458
|
}
|
|
8652
8459
|
},
|
|
8653
8460
|
{
|
|
8654
|
-
"
|
|
8655
|
-
"
|
|
8656
|
-
"
|
|
8657
|
-
"
|
|
8658
|
-
|
|
8659
|
-
}
|
|
8461
|
+
"name": "checked",
|
|
8462
|
+
"fieldName": "checked",
|
|
8463
|
+
"inheritedFrom": {
|
|
8464
|
+
"name": "UmSelectionControl",
|
|
8465
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8660
8466
|
}
|
|
8661
8467
|
}
|
|
8662
8468
|
],
|
|
8663
|
-
"
|
|
8469
|
+
"events": [
|
|
8664
8470
|
{
|
|
8665
|
-
"name": "
|
|
8471
|
+
"name": "input",
|
|
8666
8472
|
"type": {
|
|
8667
|
-
"text": "
|
|
8473
|
+
"text": "InputEvent"
|
|
8668
8474
|
},
|
|
8669
|
-
"
|
|
8475
|
+
"inheritedFrom": {
|
|
8476
|
+
"name": "UmSelectionControl",
|
|
8477
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8478
|
+
}
|
|
8670
8479
|
},
|
|
8671
8480
|
{
|
|
8672
|
-
"name": "
|
|
8481
|
+
"name": "change",
|
|
8673
8482
|
"type": {
|
|
8674
|
-
"text": "
|
|
8483
|
+
"text": "Event"
|
|
8675
8484
|
},
|
|
8676
|
-
"
|
|
8677
|
-
|
|
8485
|
+
"inheritedFrom": {
|
|
8486
|
+
"name": "UmSelectionControl",
|
|
8487
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8488
|
+
}
|
|
8678
8489
|
}
|
|
8679
|
-
]
|
|
8680
|
-
"superclass": {
|
|
8681
|
-
"name": "LitElement",
|
|
8682
|
-
"package": "lit"
|
|
8683
|
-
},
|
|
8684
|
-
"tagName": "u-circular-progress",
|
|
8685
|
-
"customElement": true
|
|
8490
|
+
]
|
|
8686
8491
|
}
|
|
8687
8492
|
],
|
|
8688
8493
|
"exports": [
|
|
8689
8494
|
{
|
|
8690
8495
|
"kind": "js",
|
|
8691
|
-
"name": "
|
|
8496
|
+
"name": "UmRadioListItem",
|
|
8692
8497
|
"declaration": {
|
|
8693
|
-
"name": "
|
|
8694
|
-
"module": "src/
|
|
8498
|
+
"name": "UmRadioListItem",
|
|
8499
|
+
"module": "src/radio/radio-list-item.ts"
|
|
8695
8500
|
}
|
|
8696
8501
|
},
|
|
8697
8502
|
{
|
|
8698
8503
|
"kind": "custom-element-definition",
|
|
8699
|
-
"name": "u-
|
|
8504
|
+
"name": "u-radio-list-item",
|
|
8700
8505
|
"declaration": {
|
|
8701
|
-
"name": "
|
|
8702
|
-
"module": "src/
|
|
8506
|
+
"name": "UmRadioListItem",
|
|
8507
|
+
"module": "src/radio/radio-list-item.ts"
|
|
8703
8508
|
}
|
|
8704
8509
|
}
|
|
8705
8510
|
]
|
|
8706
8511
|
},
|
|
8707
8512
|
{
|
|
8708
8513
|
"kind": "javascript-module",
|
|
8709
|
-
"path": "src/
|
|
8514
|
+
"path": "src/radio/radio.styles.ts",
|
|
8710
8515
|
"declarations": [
|
|
8711
8516
|
{
|
|
8712
8517
|
"kind": "variable",
|
|
8713
8518
|
"name": "styles",
|
|
8714
|
-
"default": "css `\n :host {\n --
|
|
8519
|
+
"default": "css `\n :host {\n --_state-layer-padding: var(--u-radio-state-layer-padding, 4px);\n --_input-size: calc(var(--_width) - var(--_state-layer-padding) * 2);\n --_indicator-color: var(--u-radio-indicator-unselected-color, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n display: inline-block;\n vertical-align: middle;\n }\n\n .container {\n cursor: pointer;\n position: relative;\n width: var(--_width);\n height: var(--_height);\n padding: var(--_state-layer-padding);\n border-radius: var(--u-shape-corner-full, 9999px);\n }\n\n :host([hide-state-layer]) .container {\n width: var(--_indicator-size);\n height: var(--_indicator-size);\n padding: 0;\n }\n :host([hide-state-layer]) u-ripple {\n display: none;\n }\n\n input {\n cursor: pointer;\n width: 100%;\n height: 100%;\n padding: 0;\n margin: 0;\n border-radius: inherit;\n appearance: none;\n }\n\n u-ripple {\n padding: var(--_state-layer-padding);\n }\n\n .indicator-container {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n inset: 0;\n pointer-events: none;\n }\n\n input:checked ~ .indicator-container {\n --_indicator-color: var(--u-radio-indicator-unselected-color, var(--u-color-primary, rgb(103, 80, 164)));\n }\n\n :host([disabled]) {\n opacity: var(--u-radio-disabled-state-opacity, 0.38);\n }\n :host([disabled]) input,\n :host([disabled]) .container {\n cursor: default;\n }\n :host([disabled]) .indicator-container {\n --_indicator-color: var(--u-radio-indicator-disabled-color, var(--u-color-on-surface, rgb(29, 27, 32)));\n }\n\n :host {\n --_indicator-size: var(--u-radio-indicator-size, 1.25rem);\n --_width: var(--u-radio-size, 3rem);\n --_height: var(--_width);\n }\n\n .indicator {\n position: relative;\n display: flex;\n align-items: center;\n justify-content: center;\n width: var(--_indicator-size);\n height: var(--_indicator-size);\n border: var(--u-radio-indicator-border-width, 0.125rem) solid var(--_indicator-color);\n border-radius: 50%;\n }\n .indicator::before {\n content: \"\";\n width: calc(var(--_indicator-size) / 2);\n height: calc(var(--_indicator-size) / 2);\n background: var(--_indicator-color);\n border-radius: 50%;\n transition: transform 250ms;\n transform: scale3d(0, 0, 1);\n }\n\n input:checked ~ .indicator-container .indicator::before {\n transform: scale3d(1, 1, 1);\n }\n`"
|
|
8715
8520
|
}
|
|
8716
8521
|
],
|
|
8717
8522
|
"exports": [
|
|
@@ -8720,147 +8525,20 @@
|
|
|
8720
8525
|
"name": "styles",
|
|
8721
8526
|
"declaration": {
|
|
8722
8527
|
"name": "styles",
|
|
8723
|
-
"module": "src/
|
|
8724
|
-
}
|
|
8725
|
-
}
|
|
8726
|
-
]
|
|
8727
|
-
},
|
|
8728
|
-
{
|
|
8729
|
-
"kind": "javascript-module",
|
|
8730
|
-
"path": "src/progress/progress-bar.ts",
|
|
8731
|
-
"declarations": [
|
|
8732
|
-
{
|
|
8733
|
-
"kind": "class",
|
|
8734
|
-
"description": "",
|
|
8735
|
-
"name": "UmProgressBar",
|
|
8736
|
-
"members": [
|
|
8737
|
-
{
|
|
8738
|
-
"kind": "field",
|
|
8739
|
-
"name": "value",
|
|
8740
|
-
"type": {
|
|
8741
|
-
"text": "number | undefined"
|
|
8742
|
-
},
|
|
8743
|
-
"attribute": "value"
|
|
8744
|
-
},
|
|
8745
|
-
{
|
|
8746
|
-
"kind": "field",
|
|
8747
|
-
"name": "max",
|
|
8748
|
-
"type": {
|
|
8749
|
-
"text": "number"
|
|
8750
|
-
},
|
|
8751
|
-
"default": "1",
|
|
8752
|
-
"attribute": "max"
|
|
8753
|
-
},
|
|
8754
|
-
{
|
|
8755
|
-
"kind": "method",
|
|
8756
|
-
"name": "#renderIndeterminate",
|
|
8757
|
-
"return": {
|
|
8758
|
-
"type": {
|
|
8759
|
-
"text": "TemplateResult"
|
|
8760
|
-
}
|
|
8761
|
-
}
|
|
8762
|
-
},
|
|
8763
|
-
{
|
|
8764
|
-
"kind": "method",
|
|
8765
|
-
"name": "#renderDeterminate",
|
|
8766
|
-
"return": {
|
|
8767
|
-
"type": {
|
|
8768
|
-
"text": "TemplateResult"
|
|
8769
|
-
}
|
|
8770
|
-
}
|
|
8771
|
-
}
|
|
8772
|
-
],
|
|
8773
|
-
"attributes": [
|
|
8774
|
-
{
|
|
8775
|
-
"name": "value",
|
|
8776
|
-
"type": {
|
|
8777
|
-
"text": "number | undefined"
|
|
8778
|
-
},
|
|
8779
|
-
"fieldName": "value"
|
|
8780
|
-
},
|
|
8781
|
-
{
|
|
8782
|
-
"name": "max",
|
|
8783
|
-
"type": {
|
|
8784
|
-
"text": "number"
|
|
8785
|
-
},
|
|
8786
|
-
"default": "1",
|
|
8787
|
-
"fieldName": "max"
|
|
8788
|
-
}
|
|
8789
|
-
],
|
|
8790
|
-
"superclass": {
|
|
8791
|
-
"name": "LitElement",
|
|
8792
|
-
"package": "lit"
|
|
8793
|
-
},
|
|
8794
|
-
"tagName": "u-progress-bar",
|
|
8795
|
-
"customElement": true
|
|
8796
|
-
}
|
|
8797
|
-
],
|
|
8798
|
-
"exports": [
|
|
8799
|
-
{
|
|
8800
|
-
"kind": "js",
|
|
8801
|
-
"name": "UmProgressBar",
|
|
8802
|
-
"declaration": {
|
|
8803
|
-
"name": "UmProgressBar",
|
|
8804
|
-
"module": "src/progress/progress-bar.ts"
|
|
8805
|
-
}
|
|
8806
|
-
},
|
|
8807
|
-
{
|
|
8808
|
-
"kind": "custom-element-definition",
|
|
8809
|
-
"name": "u-progress-bar",
|
|
8810
|
-
"declaration": {
|
|
8811
|
-
"name": "UmProgressBar",
|
|
8812
|
-
"module": "src/progress/progress-bar.ts"
|
|
8528
|
+
"module": "src/radio/radio.styles.ts"
|
|
8813
8529
|
}
|
|
8814
8530
|
}
|
|
8815
8531
|
]
|
|
8816
8532
|
},
|
|
8817
8533
|
{
|
|
8818
8534
|
"kind": "javascript-module",
|
|
8819
|
-
"path": "src/radio/radio
|
|
8535
|
+
"path": "src/radio/radio.ts",
|
|
8820
8536
|
"declarations": [
|
|
8821
8537
|
{
|
|
8822
8538
|
"kind": "class",
|
|
8823
8539
|
"description": "",
|
|
8824
|
-
"name": "
|
|
8825
|
-
"mixins": [
|
|
8826
|
-
{
|
|
8827
|
-
"name": "mixinSelectionControlListItem",
|
|
8828
|
-
"module": "/src/shared/selection-control/selection-control-list-item.js"
|
|
8829
|
-
}
|
|
8830
|
-
],
|
|
8831
|
-
"superclass": {
|
|
8832
|
-
"name": "UmRadio",
|
|
8833
|
-
"module": "/src/radio/radio.js"
|
|
8834
|
-
},
|
|
8835
|
-
"tagName": "u-radio-list-item",
|
|
8836
|
-
"customElement": true,
|
|
8540
|
+
"name": "UmRadio",
|
|
8837
8541
|
"members": [
|
|
8838
|
-
{
|
|
8839
|
-
"kind": "field",
|
|
8840
|
-
"name": "styles",
|
|
8841
|
-
"type": {
|
|
8842
|
-
"text": "array"
|
|
8843
|
-
},
|
|
8844
|
-
"static": true,
|
|
8845
|
-
"default": "[\n (base as unknown as typeof LitElement).styles ?? [],\n css`:host {\n --u-list-item-block-padding: 0;\n display: block;\n }`\n ]",
|
|
8846
|
-
"inheritedFrom": {
|
|
8847
|
-
"name": "mixinSelectionControlListItem",
|
|
8848
|
-
"module": "src/shared/selection-control/selection-control-list-item.ts"
|
|
8849
|
-
}
|
|
8850
|
-
},
|
|
8851
|
-
{
|
|
8852
|
-
"kind": "method",
|
|
8853
|
-
"name": "render",
|
|
8854
|
-
"return": {
|
|
8855
|
-
"type": {
|
|
8856
|
-
"text": "HTMLTemplateResult"
|
|
8857
|
-
}
|
|
8858
|
-
},
|
|
8859
|
-
"inheritedFrom": {
|
|
8860
|
-
"name": "mixinSelectionControlListItem",
|
|
8861
|
-
"module": "src/shared/selection-control/selection-control-list-item.ts"
|
|
8862
|
-
}
|
|
8863
|
-
},
|
|
8864
8542
|
{
|
|
8865
8543
|
"kind": "field",
|
|
8866
8544
|
"name": "hideStateLayer",
|
|
@@ -8869,11 +8547,7 @@
|
|
|
8869
8547
|
},
|
|
8870
8548
|
"default": "false",
|
|
8871
8549
|
"attribute": "hide-state-layer",
|
|
8872
|
-
"reflects": true
|
|
8873
|
-
"inheritedFrom": {
|
|
8874
|
-
"name": "UmRadio",
|
|
8875
|
-
"module": "src/radio/radio.ts"
|
|
8876
|
-
}
|
|
8550
|
+
"reflects": true
|
|
8877
8551
|
},
|
|
8878
8552
|
{
|
|
8879
8553
|
"kind": "field",
|
|
@@ -8917,10 +8591,6 @@
|
|
|
8917
8591
|
"privacy": "private",
|
|
8918
8592
|
"type": {
|
|
8919
8593
|
"text": "UmRadio[]"
|
|
8920
|
-
},
|
|
8921
|
-
"inheritedFrom": {
|
|
8922
|
-
"name": "UmRadio",
|
|
8923
|
-
"module": "src/radio/radio.ts"
|
|
8924
8594
|
}
|
|
8925
8595
|
},
|
|
8926
8596
|
{
|
|
@@ -8933,29 +8603,17 @@
|
|
|
8933
8603
|
"text": "KeyboardEvent"
|
|
8934
8604
|
}
|
|
8935
8605
|
}
|
|
8936
|
-
]
|
|
8937
|
-
"inheritedFrom": {
|
|
8938
|
-
"name": "UmRadio",
|
|
8939
|
-
"module": "src/radio/radio.ts"
|
|
8940
|
-
}
|
|
8606
|
+
]
|
|
8941
8607
|
},
|
|
8942
|
-
{
|
|
8943
|
-
"kind": "method",
|
|
8944
|
-
"name": "ensureOnlyOneChecked",
|
|
8945
|
-
"privacy": "private"
|
|
8946
|
-
"inheritedFrom": {
|
|
8947
|
-
"name": "UmRadio",
|
|
8948
|
-
"module": "src/radio/radio.ts"
|
|
8949
|
-
}
|
|
8608
|
+
{
|
|
8609
|
+
"kind": "method",
|
|
8610
|
+
"name": "ensureOnlyOneChecked",
|
|
8611
|
+
"privacy": "private"
|
|
8950
8612
|
},
|
|
8951
8613
|
{
|
|
8952
8614
|
"kind": "method",
|
|
8953
8615
|
"name": "uncheckSiblings",
|
|
8954
|
-
"privacy": "private"
|
|
8955
|
-
"inheritedFrom": {
|
|
8956
|
-
"name": "UmRadio",
|
|
8957
|
-
"module": "src/radio/radio.ts"
|
|
8958
|
-
}
|
|
8616
|
+
"privacy": "private"
|
|
8959
8617
|
},
|
|
8960
8618
|
{
|
|
8961
8619
|
"kind": "field",
|
|
@@ -9095,11 +8753,7 @@
|
|
|
9095
8753
|
"text": "boolean"
|
|
9096
8754
|
},
|
|
9097
8755
|
"default": "false",
|
|
9098
|
-
"fieldName": "hideStateLayer"
|
|
9099
|
-
"inheritedFrom": {
|
|
9100
|
-
"name": "UmRadio",
|
|
9101
|
-
"module": "src/radio/radio.ts"
|
|
9102
|
-
}
|
|
8756
|
+
"fieldName": "hideStateLayer"
|
|
9103
8757
|
},
|
|
9104
8758
|
{
|
|
9105
8759
|
"name": "name",
|
|
@@ -9147,6 +8801,12 @@
|
|
|
9147
8801
|
}
|
|
9148
8802
|
}
|
|
9149
8803
|
],
|
|
8804
|
+
"superclass": {
|
|
8805
|
+
"name": "UmSelectionControl",
|
|
8806
|
+
"module": "/src/shared/selection-control/selection-control.js"
|
|
8807
|
+
},
|
|
8808
|
+
"tagName": "u-radio",
|
|
8809
|
+
"customElement": true,
|
|
9150
8810
|
"events": [
|
|
9151
8811
|
{
|
|
9152
8812
|
"name": "input",
|
|
@@ -9163,41 +8823,280 @@
|
|
|
9163
8823
|
"type": {
|
|
9164
8824
|
"text": "Event"
|
|
9165
8825
|
},
|
|
9166
|
-
"inheritedFrom": {
|
|
9167
|
-
"name": "UmSelectionControl",
|
|
9168
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
9169
|
-
}
|
|
8826
|
+
"inheritedFrom": {
|
|
8827
|
+
"name": "UmSelectionControl",
|
|
8828
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
8829
|
+
}
|
|
8830
|
+
}
|
|
8831
|
+
]
|
|
8832
|
+
}
|
|
8833
|
+
],
|
|
8834
|
+
"exports": [
|
|
8835
|
+
{
|
|
8836
|
+
"kind": "js",
|
|
8837
|
+
"name": "UmRadio",
|
|
8838
|
+
"declaration": {
|
|
8839
|
+
"name": "UmRadio",
|
|
8840
|
+
"module": "src/radio/radio.ts"
|
|
8841
|
+
}
|
|
8842
|
+
},
|
|
8843
|
+
{
|
|
8844
|
+
"kind": "custom-element-definition",
|
|
8845
|
+
"name": "u-radio",
|
|
8846
|
+
"declaration": {
|
|
8847
|
+
"name": "UmRadio",
|
|
8848
|
+
"module": "src/radio/radio.ts"
|
|
8849
|
+
}
|
|
8850
|
+
}
|
|
8851
|
+
]
|
|
8852
|
+
},
|
|
8853
|
+
{
|
|
8854
|
+
"kind": "javascript-module",
|
|
8855
|
+
"path": "src/ripple/ripple.styles.ts",
|
|
8856
|
+
"declarations": [
|
|
8857
|
+
{
|
|
8858
|
+
"kind": "variable",
|
|
8859
|
+
"name": "styles",
|
|
8860
|
+
"default": "css `\n :host,\n .ripple-container::before {\n --_ripple-hover-color: var(--u-ripple-hover-color, var(--u-ripple-color, var(--u-state-layer-color, currentColor)));\n --_ripple-pressed-color: var(--u-ripple-pressed-color, var(--u-ripple-color, var(--u-state-layer-color, currentColor)));\n --_ripple-hover-opacity: var(--u-ripple-pressed-opacity, var(--u-state-hover-opacity, 0.08));\n --_ripple-pressed-opacity: var(--u-ripple-pressed-opacity, .2);\n display: block;\n inset: 0;\n isolation: isolate;\n }\n\n .ripple-container {\n position: relative;\n width: 100%;\n height: 100%;\n overflow: hidden;\n border-radius: inherit;\n }\n\n .ripple-container::before {\n content: \"\";\n background: var(--_ripple-hover-color);\n opacity: 0;\n transition: opacity 200ms;\n }\n\n @media (hover: hover) {\n :host(:not([disabled]):hover) .ripple-container::before {\n content: \"\";\n background: var(--_ripple-hover-color);\n opacity: var(--_ripple-hover-opacity);\n }\n }\n :host,\n .ripple-container::before,\n .ripple {\n position: absolute;\n border-radius: inherit;\n }\n\n .ripple {\n top: 50%;\n left: 50%;\n background: var(--_ripple-pressed-color);\n border-radius: 50%;\n box-shadow: 0 0 64px 64px var(--_ripple-pressed-color);\n opacity: var(--_ripple-pressed-opacity);\n transform: scale3d(0, 0, 1);\n pointer-events: none;\n will-change: transform;\n }\n .ripple.show {\n transition: transform calc(var(--_ripple-transition-duration) / var(--u-ripple-speed, 1)) cubic-bezier(0.19, 1, 0.22, 1), opacity calc(750ms / var(--u-ripple-speed, 1));\n transform: scale3d(1, 1, 1);\n }\n .ripple.show-forced {\n transition: transform calc(var(--_ripple-transition-duration) / var(--u-ripple-speed, 1)) cubic-bezier(0.19, 1, 0.22, 1), opacity calc(200ms / var(--u-ripple-speed, 1)) 300ms;\n transform: scale3d(2, 2, 1);\n opacity: 0;\n }\n .ripple.dismiss {\n opacity: 0;\n transform: scale3d(2, 2, 1);\n }\n\n ::slotted(*) {\n position: absolute !important;\n inset: 0;\n border-radius: inherit;\n }\n`"
|
|
8861
|
+
}
|
|
8862
|
+
],
|
|
8863
|
+
"exports": [
|
|
8864
|
+
{
|
|
8865
|
+
"kind": "js",
|
|
8866
|
+
"name": "styles",
|
|
8867
|
+
"declaration": {
|
|
8868
|
+
"name": "styles",
|
|
8869
|
+
"module": "src/ripple/ripple.styles.ts"
|
|
8870
|
+
}
|
|
8871
|
+
}
|
|
8872
|
+
]
|
|
8873
|
+
},
|
|
8874
|
+
{
|
|
8875
|
+
"kind": "javascript-module",
|
|
8876
|
+
"path": "src/ripple/ripple.ts",
|
|
8877
|
+
"declarations": [
|
|
8878
|
+
{
|
|
8879
|
+
"kind": "class",
|
|
8880
|
+
"description": "",
|
|
8881
|
+
"name": "UmRipple",
|
|
8882
|
+
"members": [
|
|
8883
|
+
{
|
|
8884
|
+
"kind": "field",
|
|
8885
|
+
"name": "isTouching",
|
|
8886
|
+
"type": {
|
|
8887
|
+
"text": "boolean"
|
|
8888
|
+
},
|
|
8889
|
+
"privacy": "private",
|
|
8890
|
+
"default": "false"
|
|
8891
|
+
},
|
|
8892
|
+
{
|
|
8893
|
+
"kind": "field",
|
|
8894
|
+
"name": "disabled",
|
|
8895
|
+
"type": {
|
|
8896
|
+
"text": "boolean"
|
|
8897
|
+
},
|
|
8898
|
+
"default": "false",
|
|
8899
|
+
"description": "Disables the ripple.",
|
|
8900
|
+
"attribute": "disabled",
|
|
8901
|
+
"reflects": true
|
|
8902
|
+
},
|
|
8903
|
+
{
|
|
8904
|
+
"kind": "field",
|
|
8905
|
+
"name": "rippleContainer",
|
|
8906
|
+
"type": {
|
|
8907
|
+
"text": "HTMLElement"
|
|
8908
|
+
},
|
|
8909
|
+
"privacy": "private"
|
|
8910
|
+
},
|
|
8911
|
+
{
|
|
8912
|
+
"kind": "method",
|
|
8913
|
+
"name": "attachEvents",
|
|
8914
|
+
"privacy": "private",
|
|
8915
|
+
"return": {
|
|
8916
|
+
"type": {
|
|
8917
|
+
"text": "void"
|
|
8918
|
+
}
|
|
8919
|
+
}
|
|
8920
|
+
},
|
|
8921
|
+
{
|
|
8922
|
+
"kind": "method",
|
|
8923
|
+
"name": "dettachEvents",
|
|
8924
|
+
"privacy": "private",
|
|
8925
|
+
"return": {
|
|
8926
|
+
"type": {
|
|
8927
|
+
"text": "void"
|
|
8928
|
+
}
|
|
8929
|
+
}
|
|
8930
|
+
},
|
|
8931
|
+
{
|
|
8932
|
+
"kind": "method",
|
|
8933
|
+
"name": "handleMouseDown",
|
|
8934
|
+
"privacy": "private",
|
|
8935
|
+
"return": {
|
|
8936
|
+
"type": {
|
|
8937
|
+
"text": "void"
|
|
8938
|
+
}
|
|
8939
|
+
},
|
|
8940
|
+
"parameters": [
|
|
8941
|
+
{
|
|
8942
|
+
"name": "e",
|
|
8943
|
+
"type": {
|
|
8944
|
+
"text": "MouseEvent"
|
|
8945
|
+
}
|
|
8946
|
+
}
|
|
8947
|
+
]
|
|
8948
|
+
},
|
|
8949
|
+
{
|
|
8950
|
+
"kind": "method",
|
|
8951
|
+
"name": "handleTouchStart",
|
|
8952
|
+
"privacy": "private",
|
|
8953
|
+
"return": {
|
|
8954
|
+
"type": {
|
|
8955
|
+
"text": "void"
|
|
8956
|
+
}
|
|
8957
|
+
},
|
|
8958
|
+
"parameters": [
|
|
8959
|
+
{
|
|
8960
|
+
"name": "e",
|
|
8961
|
+
"type": {
|
|
8962
|
+
"text": "TouchEvent"
|
|
8963
|
+
}
|
|
8964
|
+
}
|
|
8965
|
+
]
|
|
8966
|
+
},
|
|
8967
|
+
{
|
|
8968
|
+
"kind": "method",
|
|
8969
|
+
"name": "canCreateRipple",
|
|
8970
|
+
"privacy": "private",
|
|
8971
|
+
"return": {
|
|
8972
|
+
"type": {
|
|
8973
|
+
"text": "boolean"
|
|
8974
|
+
}
|
|
8975
|
+
}
|
|
8976
|
+
},
|
|
8977
|
+
{
|
|
8978
|
+
"kind": "method",
|
|
8979
|
+
"name": "createRipple",
|
|
8980
|
+
"return": {
|
|
8981
|
+
"type": {
|
|
8982
|
+
"text": "(() => void) | null"
|
|
8983
|
+
}
|
|
8984
|
+
},
|
|
8985
|
+
"parameters": [
|
|
8986
|
+
{
|
|
8987
|
+
"name": "targetX",
|
|
8988
|
+
"default": "null",
|
|
8989
|
+
"type": {
|
|
8990
|
+
"text": "number | null"
|
|
8991
|
+
}
|
|
8992
|
+
},
|
|
8993
|
+
{
|
|
8994
|
+
"name": "targetY",
|
|
8995
|
+
"default": "null",
|
|
8996
|
+
"type": {
|
|
8997
|
+
"text": "number | null"
|
|
8998
|
+
}
|
|
8999
|
+
},
|
|
9000
|
+
{
|
|
9001
|
+
"name": "releaseEventName",
|
|
9002
|
+
"default": "null",
|
|
9003
|
+
"type": {
|
|
9004
|
+
"text": "string | null"
|
|
9005
|
+
}
|
|
9006
|
+
}
|
|
9007
|
+
]
|
|
9008
|
+
},
|
|
9009
|
+
{
|
|
9010
|
+
"kind": "method",
|
|
9011
|
+
"name": "createDismissEvent",
|
|
9012
|
+
"privacy": "private",
|
|
9013
|
+
"return": {
|
|
9014
|
+
"type": {
|
|
9015
|
+
"text": "() => void"
|
|
9016
|
+
}
|
|
9017
|
+
},
|
|
9018
|
+
"parameters": [
|
|
9019
|
+
{
|
|
9020
|
+
"name": "ripple",
|
|
9021
|
+
"type": {
|
|
9022
|
+
"text": "HTMLElement"
|
|
9023
|
+
}
|
|
9024
|
+
},
|
|
9025
|
+
{
|
|
9026
|
+
"name": "releaseEventName",
|
|
9027
|
+
"type": {
|
|
9028
|
+
"text": "string"
|
|
9029
|
+
}
|
|
9030
|
+
}
|
|
9031
|
+
]
|
|
9032
|
+
},
|
|
9033
|
+
{
|
|
9034
|
+
"kind": "method",
|
|
9035
|
+
"name": "_setElementSquareSizeAndCenter",
|
|
9036
|
+
"privacy": "private",
|
|
9037
|
+
"static": true,
|
|
9038
|
+
"parameters": [
|
|
9039
|
+
{
|
|
9040
|
+
"name": "element",
|
|
9041
|
+
"type": {
|
|
9042
|
+
"text": "HTMLElement"
|
|
9043
|
+
}
|
|
9044
|
+
},
|
|
9045
|
+
{
|
|
9046
|
+
"name": "size",
|
|
9047
|
+
"type": {
|
|
9048
|
+
"text": "number"
|
|
9049
|
+
}
|
|
9050
|
+
}
|
|
9051
|
+
]
|
|
9052
|
+
}
|
|
9053
|
+
],
|
|
9054
|
+
"attributes": [
|
|
9055
|
+
{
|
|
9056
|
+
"name": "disabled",
|
|
9057
|
+
"type": {
|
|
9058
|
+
"text": "boolean"
|
|
9059
|
+
},
|
|
9060
|
+
"default": "false",
|
|
9061
|
+
"description": "Disables the ripple.",
|
|
9062
|
+
"fieldName": "disabled"
|
|
9170
9063
|
}
|
|
9171
|
-
]
|
|
9064
|
+
],
|
|
9065
|
+
"superclass": {
|
|
9066
|
+
"name": "LitElement",
|
|
9067
|
+
"package": "lit"
|
|
9068
|
+
},
|
|
9069
|
+
"tagName": "u-ripple",
|
|
9070
|
+
"customElement": true
|
|
9172
9071
|
}
|
|
9173
9072
|
],
|
|
9174
9073
|
"exports": [
|
|
9175
9074
|
{
|
|
9176
9075
|
"kind": "js",
|
|
9177
|
-
"name": "
|
|
9076
|
+
"name": "UmRipple",
|
|
9178
9077
|
"declaration": {
|
|
9179
|
-
"name": "
|
|
9180
|
-
"module": "src/
|
|
9078
|
+
"name": "UmRipple",
|
|
9079
|
+
"module": "src/ripple/ripple.ts"
|
|
9181
9080
|
}
|
|
9182
9081
|
},
|
|
9183
9082
|
{
|
|
9184
9083
|
"kind": "custom-element-definition",
|
|
9185
|
-
"name": "u-
|
|
9084
|
+
"name": "u-ripple",
|
|
9186
9085
|
"declaration": {
|
|
9187
|
-
"name": "
|
|
9188
|
-
"module": "src/
|
|
9086
|
+
"name": "UmRipple",
|
|
9087
|
+
"module": "src/ripple/ripple.ts"
|
|
9189
9088
|
}
|
|
9190
9089
|
}
|
|
9191
9090
|
]
|
|
9192
9091
|
},
|
|
9193
9092
|
{
|
|
9194
9093
|
"kind": "javascript-module",
|
|
9195
|
-
"path": "src/
|
|
9094
|
+
"path": "src/navigation/drawer-item.styles.ts",
|
|
9196
9095
|
"declarations": [
|
|
9197
9096
|
{
|
|
9198
9097
|
"kind": "variable",
|
|
9199
9098
|
"name": "styles",
|
|
9200
|
-
"default": "css `\n :host {\n --
|
|
9099
|
+
"default": "css `\n :host,\n * {\n --_focus-ring-outline-offset: var(--u-focus-ring-outline-offset, 2px);\n font-family: var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");\n box-sizing: border-box;\n outline: 0;\n }\n\n :host(.force-focus-ring) .focus-ring,\n .focus-ring:focus-visible {\n --_color-primary: var(--u-color-primary, rgb(103, 80, 164));\n animation: u-focus-pulse 500ms ease;\n animation-fill-mode: forwards;\n outline-offset: var(--_focus-ring-outline-offset);\n }\n\n @keyframes u-focus-pulse {\n 0% {\n outline: 0 solid var(--_color-primary);\n }\n 50% {\n outline: 6px solid var(--_color-primary);\n }\n 100% {\n outline: 4px solid var(--_color-primary);\n }\n }\n :host {\n --_color-primary: var(--u-color-primary, rgb(103, 80, 164));\n -webkit-tap-highlight-color: transparent;\n --u-elevation-level: 0;\n position: relative;\n display: inline-block;\n font-family: var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");\n appearance: none !important;\n }\n\n :host([disabled]) {\n --u-elevation-level: 0 !important;\n background-color: var(--u-button-disabled-background-color, rgba(var(--u-color-on-surface-rgb, 29, 27, 32), var(--u-button-disabled-background-opacity, 0.12))) !important;\n color: var(--u-button-disabled-text-color, rgba(var(--u-color-on-surface-rgb, 29, 27, 32), var(--u-button-disabled-color, 0.38))) !important;\n }\n\n :host([disabled]) .button {\n cursor: default;\n }\n\n * {\n color: inherit;\n }\n\n u-elevation {\n z-index: -1;\n }\n\n .button {\n cursor: pointer;\n position: absolute;\n inset-inline-start: 0;\n inset-block-start: 0;\n width: 100%;\n height: 100%;\n font-family: inherit;\n border-radius: inherit;\n color: inherit;\n border: none;\n margin: 0;\n padding: 0;\n text-align: center;\n white-space: nowrap;\n background: transparent;\n user-select: none;\n text-decoration: none;\n outline: 0;\n z-index: 0;\n }\n\n .content {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n white-space: nowrap;\n border-radius: inherit;\n width: 100%;\n height: 100%;\n }\n\n :host {\n display: block;\n --_drawer-item-icon-size: var(--u-drawer-item-icon-size, 1.125rem);\n --_drawer-item-padding: var(--u-drawer-item-padding, 16px);\n font-family: var(--u-font-family, var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\"));\n line-height: var(--u-drawer-item-line-height, var(--u-label-l-line-height, 1.25rem));\n font-size: var(--u-drawer-item-font-size, var(--u-label-l-font-size, 0.875rem));\n letter-spacing: var(--u-drawer-item-letter-spacing, var(--u-label-l-letter-spacing, 0.0071428571rem));\n font-weight: var(--u-drawer-item-font-weight, var(--u-label-l-font-weight, var(--u-font-weight-medium, 500)));\n height: var(--u-drawer-item-height, 56px);\n padding-inline: var(--_drawer-item-padding);\n margin-inline: calc(var(--_drawer-item-padding) * -1);\n border-radius: var(--u-drawer-item-shape-corner, var(--u-shape-corner-full, 9999px));\n color: var(--u-drawer-item-label-inactive-color, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n }\n\n :host([active]) {\n color: var(--u-drawer-item-label-active-color, var(--_color-primary));\n }\n\n :host(:not([has-icon])) .icon,\n :host(:not([has-badge])) .badge {\n display: none;\n }\n\n .icon {\n font-size: var(--_drawer-item-icon-size);\n line-height: var(--_drawer-item-icon-size);\n margin-inline-end: var(--u-drawer-item-icon-margin, 16px);\n }\n\n .badge {\n display: flex;\n justify-content: center;\n align-items: center;\n margin-inline-start: auto;\n padding-inline: var(--u-drawer-item-badge-padding, 12px 8px);\n }\n\n .content {\n justify-content: flex-start;\n }\n`"
|
|
9201
9100
|
}
|
|
9202
9101
|
],
|
|
9203
9102
|
"exports": [
|
|
@@ -9206,46 +9105,83 @@
|
|
|
9206
9105
|
"name": "styles",
|
|
9207
9106
|
"declaration": {
|
|
9208
9107
|
"name": "styles",
|
|
9209
|
-
"module": "src/
|
|
9108
|
+
"module": "src/navigation/drawer-item.styles.ts"
|
|
9210
9109
|
}
|
|
9211
9110
|
}
|
|
9212
9111
|
]
|
|
9213
9112
|
},
|
|
9214
9113
|
{
|
|
9215
9114
|
"kind": "javascript-module",
|
|
9216
|
-
"path": "src/
|
|
9115
|
+
"path": "src/navigation/drawer-item.ts",
|
|
9217
9116
|
"declarations": [
|
|
9218
9117
|
{
|
|
9219
9118
|
"kind": "class",
|
|
9220
9119
|
"description": "",
|
|
9221
|
-
"name": "
|
|
9120
|
+
"name": "UmDrawerItem",
|
|
9222
9121
|
"members": [
|
|
9223
9122
|
{
|
|
9224
9123
|
"kind": "field",
|
|
9225
|
-
"name": "
|
|
9124
|
+
"name": "hasIcon",
|
|
9226
9125
|
"type": {
|
|
9227
9126
|
"text": "boolean"
|
|
9228
9127
|
},
|
|
9229
9128
|
"default": "false",
|
|
9230
|
-
"
|
|
9129
|
+
"description": "Whether the drawer item has icon or not\n\n_Note:_ Readonly",
|
|
9130
|
+
"attribute": "has-icon",
|
|
9231
9131
|
"reflects": true
|
|
9232
9132
|
},
|
|
9233
9133
|
{
|
|
9234
9134
|
"kind": "field",
|
|
9235
|
-
"name": "
|
|
9135
|
+
"name": "hasBadge",
|
|
9236
9136
|
"type": {
|
|
9237
|
-
"text": "
|
|
9137
|
+
"text": "boolean"
|
|
9238
9138
|
},
|
|
9239
|
-
"
|
|
9240
|
-
"
|
|
9241
|
-
"
|
|
9242
|
-
|
|
9243
|
-
|
|
9244
|
-
|
|
9139
|
+
"default": "false",
|
|
9140
|
+
"description": "Whether the drawer item has badge or not\n\n_Note:_ Readonly",
|
|
9141
|
+
"attribute": "has-badge",
|
|
9142
|
+
"reflects": true
|
|
9143
|
+
},
|
|
9144
|
+
{
|
|
9145
|
+
"kind": "field",
|
|
9146
|
+
"name": "active",
|
|
9147
|
+
"type": {
|
|
9148
|
+
"text": "boolean"
|
|
9149
|
+
},
|
|
9150
|
+
"default": "false",
|
|
9151
|
+
"description": "Whether the drawer item is active or not\n\n_Note:_ Readonly",
|
|
9152
|
+
"attribute": "active",
|
|
9153
|
+
"reflects": true
|
|
9154
|
+
},
|
|
9155
|
+
{
|
|
9156
|
+
"kind": "field",
|
|
9157
|
+
"name": "keepDrawerOpen",
|
|
9158
|
+
"type": {
|
|
9159
|
+
"text": "boolean"
|
|
9160
|
+
},
|
|
9161
|
+
"default": "false",
|
|
9162
|
+
"description": "If true, it will not attempt to close de navigation drawer on click",
|
|
9163
|
+
"attribute": "keep-drawer-open",
|
|
9164
|
+
"reflects": true
|
|
9165
|
+
},
|
|
9166
|
+
{
|
|
9167
|
+
"kind": "field",
|
|
9168
|
+
"name": "assignedIcons",
|
|
9169
|
+
"type": {
|
|
9170
|
+
"text": "HTMLElement[]"
|
|
9171
|
+
},
|
|
9172
|
+
"privacy": "private"
|
|
9173
|
+
},
|
|
9174
|
+
{
|
|
9175
|
+
"kind": "field",
|
|
9176
|
+
"name": "assignedBadges",
|
|
9177
|
+
"type": {
|
|
9178
|
+
"text": "HTMLElement[]"
|
|
9179
|
+
},
|
|
9180
|
+
"privacy": "private"
|
|
9245
9181
|
},
|
|
9246
9182
|
{
|
|
9247
9183
|
"kind": "method",
|
|
9248
|
-
"name": "
|
|
9184
|
+
"name": "renderContent",
|
|
9249
9185
|
"privacy": "protected",
|
|
9250
9186
|
"return": {
|
|
9251
9187
|
"type": {
|
|
@@ -9253,72 +9189,93 @@
|
|
|
9253
9189
|
}
|
|
9254
9190
|
},
|
|
9255
9191
|
"inheritedFrom": {
|
|
9256
|
-
"name": "
|
|
9257
|
-
"module": "src/shared/
|
|
9192
|
+
"name": "UmButtonWrapper",
|
|
9193
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9258
9194
|
}
|
|
9259
9195
|
},
|
|
9260
9196
|
{
|
|
9261
|
-
"kind": "
|
|
9262
|
-
"name": "
|
|
9263
|
-
"
|
|
9264
|
-
"inheritedFrom": {
|
|
9265
|
-
"name": "UmSelectionControl",
|
|
9266
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
9267
|
-
}
|
|
9197
|
+
"kind": "method",
|
|
9198
|
+
"name": "handleIconSlotChange",
|
|
9199
|
+
"privacy": "private"
|
|
9268
9200
|
},
|
|
9269
9201
|
{
|
|
9270
|
-
"kind": "
|
|
9271
|
-
"name": "
|
|
9272
|
-
"privacy": "private"
|
|
9273
|
-
"type": {
|
|
9274
|
-
"text": "UmRadio[]"
|
|
9275
|
-
}
|
|
9202
|
+
"kind": "method",
|
|
9203
|
+
"name": "handleBadgeSlotChange",
|
|
9204
|
+
"privacy": "private"
|
|
9276
9205
|
},
|
|
9277
9206
|
{
|
|
9278
9207
|
"kind": "method",
|
|
9279
|
-
"name": "
|
|
9208
|
+
"name": "handleClick",
|
|
9209
|
+
"privacy": "protected",
|
|
9210
|
+
"return": {
|
|
9211
|
+
"type": {
|
|
9212
|
+
"text": "void"
|
|
9213
|
+
}
|
|
9214
|
+
},
|
|
9280
9215
|
"parameters": [
|
|
9281
9216
|
{
|
|
9282
|
-
"name": "
|
|
9217
|
+
"name": "_",
|
|
9283
9218
|
"type": {
|
|
9284
|
-
"text": "
|
|
9219
|
+
"text": "UIEvent"
|
|
9285
9220
|
}
|
|
9286
9221
|
}
|
|
9287
|
-
]
|
|
9288
|
-
|
|
9289
|
-
|
|
9290
|
-
|
|
9291
|
-
|
|
9292
|
-
"privacy": "private"
|
|
9222
|
+
],
|
|
9223
|
+
"inheritedFrom": {
|
|
9224
|
+
"name": "UmButtonWrapper",
|
|
9225
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9226
|
+
}
|
|
9293
9227
|
},
|
|
9294
9228
|
{
|
|
9295
|
-
"kind": "
|
|
9296
|
-
"name": "
|
|
9297
|
-
"
|
|
9229
|
+
"kind": "field",
|
|
9230
|
+
"name": "disabled",
|
|
9231
|
+
"type": {
|
|
9232
|
+
"text": "boolean"
|
|
9233
|
+
},
|
|
9234
|
+
"default": "false",
|
|
9235
|
+
"description": "Whether the button is disabled or not.",
|
|
9236
|
+
"attribute": "disabled",
|
|
9237
|
+
"reflects": true,
|
|
9238
|
+
"inheritedFrom": {
|
|
9239
|
+
"name": "UmButtonWrapper",
|
|
9240
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9241
|
+
}
|
|
9298
9242
|
},
|
|
9299
9243
|
{
|
|
9300
9244
|
"kind": "field",
|
|
9301
|
-
"name": "
|
|
9245
|
+
"name": "renderRipple",
|
|
9302
9246
|
"type": {
|
|
9303
9247
|
"text": "boolean"
|
|
9304
9248
|
},
|
|
9305
|
-
"static": true,
|
|
9306
9249
|
"default": "true",
|
|
9307
9250
|
"inheritedFrom": {
|
|
9308
|
-
"name": "
|
|
9309
|
-
"module": "src/shared/
|
|
9251
|
+
"name": "UmButtonWrapper",
|
|
9252
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9310
9253
|
}
|
|
9311
9254
|
},
|
|
9312
9255
|
{
|
|
9313
9256
|
"kind": "field",
|
|
9314
|
-
"name": "
|
|
9257
|
+
"name": "href",
|
|
9315
9258
|
"type": {
|
|
9316
|
-
"text": "
|
|
9259
|
+
"text": "string | undefined"
|
|
9317
9260
|
},
|
|
9318
|
-
"
|
|
9261
|
+
"description": "The URL that the link button points to.",
|
|
9262
|
+
"attribute": "href",
|
|
9319
9263
|
"inheritedFrom": {
|
|
9320
|
-
"name": "
|
|
9321
|
-
"module": "src/shared/
|
|
9264
|
+
"name": "UmButtonWrapper",
|
|
9265
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9266
|
+
}
|
|
9267
|
+
},
|
|
9268
|
+
{
|
|
9269
|
+
"kind": "field",
|
|
9270
|
+
"name": "target",
|
|
9271
|
+
"type": {
|
|
9272
|
+
"text": "string | undefined"
|
|
9273
|
+
},
|
|
9274
|
+
"description": "Where to display the linked `href` URL for a link button. Common options\ninclude `_blank` to open in a new tab.",
|
|
9275
|
+
"attribute": "target",
|
|
9276
|
+
"inheritedFrom": {
|
|
9277
|
+
"name": "UmButtonWrapper",
|
|
9278
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9322
9279
|
}
|
|
9323
9280
|
},
|
|
9324
9281
|
{
|
|
@@ -9327,126 +9284,179 @@
|
|
|
9327
9284
|
"type": {
|
|
9328
9285
|
"text": "string | undefined"
|
|
9329
9286
|
},
|
|
9330
|
-
"default": "''",
|
|
9331
9287
|
"attribute": "name",
|
|
9332
9288
|
"inheritedFrom": {
|
|
9333
|
-
"name": "
|
|
9334
|
-
"module": "src/shared/
|
|
9289
|
+
"name": "UmButtonWrapper",
|
|
9290
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9335
9291
|
}
|
|
9336
9292
|
},
|
|
9337
9293
|
{
|
|
9338
9294
|
"kind": "field",
|
|
9339
|
-
"name": "
|
|
9295
|
+
"name": "buttonElement",
|
|
9340
9296
|
"type": {
|
|
9341
|
-
"text": "
|
|
9297
|
+
"text": "HTMLElement"
|
|
9342
9298
|
},
|
|
9343
|
-
"default": "false",
|
|
9344
|
-
"attribute": "disabled",
|
|
9345
|
-
"reflects": true,
|
|
9346
9299
|
"inheritedFrom": {
|
|
9347
|
-
"name": "
|
|
9348
|
-
"module": "src/shared/
|
|
9300
|
+
"name": "UmButtonWrapper",
|
|
9301
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9349
9302
|
}
|
|
9350
9303
|
},
|
|
9351
9304
|
{
|
|
9352
9305
|
"kind": "field",
|
|
9353
|
-
"name": "
|
|
9306
|
+
"name": "ripple",
|
|
9354
9307
|
"type": {
|
|
9355
|
-
"text": "
|
|
9308
|
+
"text": "UmRipple"
|
|
9356
9309
|
},
|
|
9310
|
+
"privacy": "private",
|
|
9357
9311
|
"inheritedFrom": {
|
|
9358
|
-
"name": "
|
|
9359
|
-
"module": "src/shared/
|
|
9312
|
+
"name": "UmButtonWrapper",
|
|
9313
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9360
9314
|
}
|
|
9361
9315
|
},
|
|
9362
9316
|
{
|
|
9363
9317
|
"kind": "field",
|
|
9364
|
-
"name": "
|
|
9318
|
+
"name": "innerRole",
|
|
9365
9319
|
"type": {
|
|
9366
|
-
"text": "
|
|
9320
|
+
"text": "string | null"
|
|
9321
|
+
},
|
|
9322
|
+
"privacy": "protected",
|
|
9323
|
+
"default": "null",
|
|
9324
|
+
"inheritedFrom": {
|
|
9325
|
+
"name": "UmButtonWrapper",
|
|
9326
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9327
|
+
}
|
|
9328
|
+
},
|
|
9329
|
+
{
|
|
9330
|
+
"kind": "field",
|
|
9331
|
+
"name": "pathname",
|
|
9332
|
+
"type": {
|
|
9333
|
+
"text": "string"
|
|
9367
9334
|
},
|
|
9368
9335
|
"inheritedFrom": {
|
|
9369
|
-
"name": "
|
|
9370
|
-
"module": "src/shared/
|
|
9336
|
+
"name": "UmButtonWrapper",
|
|
9337
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9338
|
+
}
|
|
9339
|
+
},
|
|
9340
|
+
{
|
|
9341
|
+
"kind": "method",
|
|
9342
|
+
"name": "renderButton",
|
|
9343
|
+
"privacy": "private",
|
|
9344
|
+
"inheritedFrom": {
|
|
9345
|
+
"name": "UmButtonWrapper",
|
|
9346
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9347
|
+
}
|
|
9348
|
+
},
|
|
9349
|
+
{
|
|
9350
|
+
"kind": "method",
|
|
9351
|
+
"name": "renderLink",
|
|
9352
|
+
"privacy": "private",
|
|
9353
|
+
"inheritedFrom": {
|
|
9354
|
+
"name": "UmButtonWrapper",
|
|
9355
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9356
|
+
}
|
|
9357
|
+
},
|
|
9358
|
+
{
|
|
9359
|
+
"kind": "method",
|
|
9360
|
+
"name": "focus",
|
|
9361
|
+
"inheritedFrom": {
|
|
9362
|
+
"name": "UmButtonWrapper",
|
|
9363
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9371
9364
|
}
|
|
9372
9365
|
},
|
|
9373
9366
|
{
|
|
9374
|
-
"kind": "
|
|
9375
|
-
"name": "
|
|
9376
|
-
"privacy": "private",
|
|
9377
|
-
"type": {
|
|
9378
|
-
"text": "boolean"
|
|
9379
|
-
},
|
|
9380
|
-
"default": "false",
|
|
9367
|
+
"kind": "method",
|
|
9368
|
+
"name": "blur",
|
|
9381
9369
|
"inheritedFrom": {
|
|
9382
|
-
"name": "
|
|
9383
|
-
"module": "src/shared/
|
|
9370
|
+
"name": "UmButtonWrapper",
|
|
9371
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9384
9372
|
}
|
|
9385
9373
|
},
|
|
9386
9374
|
{
|
|
9387
|
-
"kind": "
|
|
9388
|
-
"name": "
|
|
9389
|
-
"type": {
|
|
9390
|
-
"text": "boolean"
|
|
9391
|
-
},
|
|
9375
|
+
"kind": "method",
|
|
9376
|
+
"name": "getAriaLabel",
|
|
9392
9377
|
"privacy": "protected",
|
|
9393
|
-
"
|
|
9378
|
+
"return": {
|
|
9379
|
+
"type": {
|
|
9380
|
+
"text": "string | null"
|
|
9381
|
+
}
|
|
9382
|
+
},
|
|
9394
9383
|
"inheritedFrom": {
|
|
9395
|
-
"name": "
|
|
9396
|
-
"module": "src/shared/
|
|
9384
|
+
"name": "UmButtonWrapper",
|
|
9385
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9397
9386
|
}
|
|
9398
9387
|
},
|
|
9399
9388
|
{
|
|
9400
|
-
"kind": "
|
|
9401
|
-
"name": "
|
|
9402
|
-
"
|
|
9403
|
-
|
|
9389
|
+
"kind": "method",
|
|
9390
|
+
"name": "innerFocusHandler",
|
|
9391
|
+
"privacy": "private",
|
|
9392
|
+
"return": {
|
|
9393
|
+
"type": {
|
|
9394
|
+
"text": "void"
|
|
9395
|
+
}
|
|
9404
9396
|
},
|
|
9405
|
-
"default": "'on'",
|
|
9406
|
-
"description": "The element value to use in form submission when checked.",
|
|
9407
|
-
"attribute": "value",
|
|
9408
9397
|
"inheritedFrom": {
|
|
9409
|
-
"name": "
|
|
9410
|
-
"module": "src/shared/
|
|
9398
|
+
"name": "UmButtonWrapper",
|
|
9399
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9411
9400
|
}
|
|
9412
9401
|
},
|
|
9413
9402
|
{
|
|
9414
9403
|
"kind": "method",
|
|
9415
|
-
"name": "#
|
|
9404
|
+
"name": "#innerClickHandler",
|
|
9405
|
+
"return": {
|
|
9406
|
+
"type": {
|
|
9407
|
+
"text": "void"
|
|
9408
|
+
}
|
|
9409
|
+
},
|
|
9416
9410
|
"parameters": [
|
|
9417
9411
|
{
|
|
9418
|
-
"name": "
|
|
9412
|
+
"name": "event",
|
|
9419
9413
|
"type": {
|
|
9420
|
-
"text": "
|
|
9414
|
+
"text": "MouseEvent"
|
|
9421
9415
|
}
|
|
9422
9416
|
}
|
|
9423
9417
|
],
|
|
9424
9418
|
"inheritedFrom": {
|
|
9425
|
-
"name": "
|
|
9426
|
-
"module": "src/shared/
|
|
9419
|
+
"name": "UmButtonWrapper",
|
|
9420
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9427
9421
|
}
|
|
9428
9422
|
}
|
|
9429
9423
|
],
|
|
9430
9424
|
"attributes": [
|
|
9431
9425
|
{
|
|
9432
|
-
"name": "
|
|
9426
|
+
"name": "has-icon",
|
|
9433
9427
|
"type": {
|
|
9434
9428
|
"text": "boolean"
|
|
9435
9429
|
},
|
|
9436
9430
|
"default": "false",
|
|
9437
|
-
"
|
|
9431
|
+
"description": "Whether the drawer item has icon or not\n\n_Note:_ Readonly",
|
|
9432
|
+
"fieldName": "hasIcon"
|
|
9438
9433
|
},
|
|
9439
9434
|
{
|
|
9440
|
-
"name": "
|
|
9435
|
+
"name": "has-badge",
|
|
9441
9436
|
"type": {
|
|
9442
|
-
"text": "
|
|
9437
|
+
"text": "boolean"
|
|
9443
9438
|
},
|
|
9444
|
-
"default": "
|
|
9445
|
-
"
|
|
9446
|
-
"
|
|
9447
|
-
|
|
9448
|
-
|
|
9449
|
-
|
|
9439
|
+
"default": "false",
|
|
9440
|
+
"description": "Whether the drawer item has badge or not\n\n_Note:_ Readonly",
|
|
9441
|
+
"fieldName": "hasBadge"
|
|
9442
|
+
},
|
|
9443
|
+
{
|
|
9444
|
+
"name": "active",
|
|
9445
|
+
"type": {
|
|
9446
|
+
"text": "boolean"
|
|
9447
|
+
},
|
|
9448
|
+
"default": "false",
|
|
9449
|
+
"description": "Whether the drawer item is active or not\n\n_Note:_ Readonly",
|
|
9450
|
+
"fieldName": "active"
|
|
9451
|
+
},
|
|
9452
|
+
{
|
|
9453
|
+
"name": "keep-drawer-open",
|
|
9454
|
+
"type": {
|
|
9455
|
+
"text": "boolean"
|
|
9456
|
+
},
|
|
9457
|
+
"default": "false",
|
|
9458
|
+
"description": "If true, it will not attempt to close de navigation drawer on click",
|
|
9459
|
+
"fieldName": "keepDrawerOpen"
|
|
9450
9460
|
},
|
|
9451
9461
|
{
|
|
9452
9462
|
"name": "disabled",
|
|
@@ -9454,91 +9464,162 @@
|
|
|
9454
9464
|
"text": "boolean"
|
|
9455
9465
|
},
|
|
9456
9466
|
"default": "false",
|
|
9467
|
+
"description": "Whether the button is disabled or not.",
|
|
9457
9468
|
"fieldName": "disabled",
|
|
9458
9469
|
"inheritedFrom": {
|
|
9459
|
-
"name": "
|
|
9460
|
-
"module": "src/shared/
|
|
9470
|
+
"name": "UmButtonWrapper",
|
|
9471
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9461
9472
|
}
|
|
9462
9473
|
},
|
|
9463
9474
|
{
|
|
9464
|
-
"name": "
|
|
9475
|
+
"name": "href",
|
|
9465
9476
|
"type": {
|
|
9466
|
-
"text": "string"
|
|
9477
|
+
"text": "string | undefined"
|
|
9467
9478
|
},
|
|
9468
|
-
"
|
|
9469
|
-
"
|
|
9470
|
-
"fieldName": "value",
|
|
9479
|
+
"description": "The URL that the link button points to.",
|
|
9480
|
+
"fieldName": "href",
|
|
9471
9481
|
"inheritedFrom": {
|
|
9472
|
-
"name": "
|
|
9473
|
-
"module": "src/shared/
|
|
9482
|
+
"name": "UmButtonWrapper",
|
|
9483
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9474
9484
|
}
|
|
9475
9485
|
},
|
|
9476
9486
|
{
|
|
9477
|
-
"name": "
|
|
9478
|
-
"fieldName": "checked",
|
|
9479
|
-
"inheritedFrom": {
|
|
9480
|
-
"name": "UmSelectionControl",
|
|
9481
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
9482
|
-
}
|
|
9483
|
-
}
|
|
9484
|
-
],
|
|
9485
|
-
"superclass": {
|
|
9486
|
-
"name": "UmSelectionControl",
|
|
9487
|
-
"module": "/src/shared/selection-control/selection-control.js"
|
|
9488
|
-
},
|
|
9489
|
-
"tagName": "u-radio",
|
|
9490
|
-
"customElement": true,
|
|
9491
|
-
"events": [
|
|
9492
|
-
{
|
|
9493
|
-
"name": "input",
|
|
9487
|
+
"name": "target",
|
|
9494
9488
|
"type": {
|
|
9495
|
-
"text": "
|
|
9489
|
+
"text": "string | undefined"
|
|
9496
9490
|
},
|
|
9491
|
+
"description": "Where to display the linked `href` URL for a link button. Common options\ninclude `_blank` to open in a new tab.",
|
|
9492
|
+
"fieldName": "target",
|
|
9497
9493
|
"inheritedFrom": {
|
|
9498
|
-
"name": "
|
|
9499
|
-
"module": "src/shared/
|
|
9494
|
+
"name": "UmButtonWrapper",
|
|
9495
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9500
9496
|
}
|
|
9501
9497
|
},
|
|
9502
9498
|
{
|
|
9503
|
-
"name": "
|
|
9499
|
+
"name": "name",
|
|
9504
9500
|
"type": {
|
|
9505
|
-
"text": "
|
|
9501
|
+
"text": "string | undefined"
|
|
9506
9502
|
},
|
|
9503
|
+
"fieldName": "name",
|
|
9507
9504
|
"inheritedFrom": {
|
|
9508
|
-
"name": "
|
|
9509
|
-
"module": "src/shared/
|
|
9505
|
+
"name": "UmButtonWrapper",
|
|
9506
|
+
"module": "src/shared/button-wrapper.ts"
|
|
9510
9507
|
}
|
|
9511
9508
|
}
|
|
9512
|
-
]
|
|
9509
|
+
],
|
|
9510
|
+
"superclass": {
|
|
9511
|
+
"name": "UmButtonWrapper",
|
|
9512
|
+
"module": "/src/shared/button-wrapper.js"
|
|
9513
|
+
},
|
|
9514
|
+
"tagName": "u-drawer-item",
|
|
9515
|
+
"customElement": true
|
|
9513
9516
|
}
|
|
9514
9517
|
],
|
|
9515
9518
|
"exports": [
|
|
9516
9519
|
{
|
|
9517
9520
|
"kind": "js",
|
|
9518
|
-
"name": "
|
|
9521
|
+
"name": "UmDrawerItem",
|
|
9519
9522
|
"declaration": {
|
|
9520
|
-
"name": "
|
|
9521
|
-
"module": "src/
|
|
9523
|
+
"name": "UmDrawerItem",
|
|
9524
|
+
"module": "src/navigation/drawer-item.ts"
|
|
9522
9525
|
}
|
|
9523
9526
|
},
|
|
9524
9527
|
{
|
|
9525
9528
|
"kind": "custom-element-definition",
|
|
9526
|
-
"name": "u-
|
|
9529
|
+
"name": "u-drawer-item",
|
|
9527
9530
|
"declaration": {
|
|
9528
|
-
"name": "
|
|
9529
|
-
"module": "src/
|
|
9531
|
+
"name": "UmDrawerItem",
|
|
9532
|
+
"module": "src/navigation/drawer-item.ts"
|
|
9530
9533
|
}
|
|
9531
9534
|
}
|
|
9532
9535
|
]
|
|
9533
9536
|
},
|
|
9534
9537
|
{
|
|
9535
9538
|
"kind": "javascript-module",
|
|
9536
|
-
"path": "src/
|
|
9539
|
+
"path": "src/navigation/drawer.styles.ts",
|
|
9540
|
+
"declarations": [
|
|
9541
|
+
{
|
|
9542
|
+
"kind": "variable",
|
|
9543
|
+
"name": "styles",
|
|
9544
|
+
"default": "css `\n :host {\n display: block;\n background-color: var(--u-modal-drawer-background-color, var(--u-color-surface-container-low, rgb(247, 242, 250)));\n color: var(--u-drawer-text-color, var(--u-color-on-secondary-container, rgb(29, 25, 43)));\n height: 100%;\n padding-inline: var(--u-drawer-padding, 28px);\n }\n\n @media (min-width: 1200px) {\n :host {\n background-color: var(--u-standard-drawer-background-color, var(--u-color-body, var(--u-color-surface, rgb(254, 247, 255))));\n }\n }\n`"
|
|
9545
|
+
}
|
|
9546
|
+
],
|
|
9547
|
+
"exports": [
|
|
9548
|
+
{
|
|
9549
|
+
"kind": "js",
|
|
9550
|
+
"name": "styles",
|
|
9551
|
+
"declaration": {
|
|
9552
|
+
"name": "styles",
|
|
9553
|
+
"module": "src/navigation/drawer.styles.ts"
|
|
9554
|
+
}
|
|
9555
|
+
}
|
|
9556
|
+
]
|
|
9557
|
+
},
|
|
9558
|
+
{
|
|
9559
|
+
"kind": "javascript-module",
|
|
9560
|
+
"path": "src/navigation/drawer.ts",
|
|
9561
|
+
"declarations": [
|
|
9562
|
+
{
|
|
9563
|
+
"kind": "class",
|
|
9564
|
+
"description": "",
|
|
9565
|
+
"name": "UmDrawer",
|
|
9566
|
+
"members": [],
|
|
9567
|
+
"superclass": {
|
|
9568
|
+
"name": "LitElement",
|
|
9569
|
+
"package": "lit"
|
|
9570
|
+
},
|
|
9571
|
+
"tagName": "u-drawer",
|
|
9572
|
+
"customElement": true
|
|
9573
|
+
}
|
|
9574
|
+
],
|
|
9575
|
+
"exports": [
|
|
9576
|
+
{
|
|
9577
|
+
"kind": "js",
|
|
9578
|
+
"name": "UmDrawer",
|
|
9579
|
+
"declaration": {
|
|
9580
|
+
"name": "UmDrawer",
|
|
9581
|
+
"module": "src/navigation/drawer.ts"
|
|
9582
|
+
}
|
|
9583
|
+
},
|
|
9584
|
+
{
|
|
9585
|
+
"kind": "custom-element-definition",
|
|
9586
|
+
"name": "u-drawer",
|
|
9587
|
+
"declaration": {
|
|
9588
|
+
"name": "UmDrawer",
|
|
9589
|
+
"module": "src/navigation/drawer.ts"
|
|
9590
|
+
}
|
|
9591
|
+
}
|
|
9592
|
+
]
|
|
9593
|
+
},
|
|
9594
|
+
{
|
|
9595
|
+
"kind": "javascript-module",
|
|
9596
|
+
"path": "src/navigation/side-navigation-swiper.styles.ts",
|
|
9597
|
+
"declarations": [
|
|
9598
|
+
{
|
|
9599
|
+
"kind": "variable",
|
|
9600
|
+
"name": "styles",
|
|
9601
|
+
"default": "css `\n :host {\n --_navigation-width: 0;\n --_navigation-drawer-width: min(var(--u-navigation-drawer-width, 360px), 85vw);\n --_navigation-drawer-width-negative: calc(var(--_navigation-drawer-width) * -1);\n --_navigation-drawer-corner-shape: var(--u-navigation-drawer-corner-shape, var(--u-shape-corner-large, 16px));\n --_scrim-opacity: var(--u-drawer-scrim-opacity, .4);\n display: block;\n width: 100%;\n height: 100%;\n --u-app-bar-offset: var(--_navigation-width);\n }\n\n :host(.disable-transition) * {\n transition: none !important;\n }\n :host(.disable-transition) * ::slotted(u-top-app-bar) {\n transition: none !important;\n }\n\n .drawer {\n transition: inset 375ms cubic-bezier(0.19, 1, 0.22, 1);\n }\n .drawer,\n .drawer u-elevation,\n .drawer .drawer-container {\n border-start-end-radius: var(--_navigation-drawer-corner-shape);\n border-end-end-radius: var(--_navigation-drawer-corner-shape);\n }\n .drawer.toggle u-elevation {\n --u-elevation-level: 1;\n }\n\n .drawer-container {\n height: 100%;\n overflow: hidden;\n }\n\n .scrim {\n --_modal-drawer-open-progress: 0;\n position: absolute;\n inset-inline-start: 0;\n inset-block-start: 0;\n width: 100vw;\n height: 100vh;\n background: var(--u-drawer-scrim-color, var(--u-color-scrim, rgb(0, 0, 0)));\n pointer-events: none;\n opacity: calc(var(--_scrim-opacity) * var(--_modal-drawer-open-progress));\n transition: opacity 375ms linear;\n }\n .scrim.moving {\n transition: none;\n }\n .scrim.toggle {\n --_modal-drawer-open-progress: 1;\n pointer-events: auto;\n }\n\n @media (min-width: 840px) {\n .content slot {\n display: flex;\n flex-direction: column;\n height: 100vh;\n }\n }\n @media (min-width: 1200px) {\n .container {\n --_navigation-width: var(--_navigation-drawer-width);\n }\n .container:has(.drawer.toggle) {\n --_navigation-width: 0;\n }\n .drawer {\n border-radius: 0;\n inset-inline-start: 0;\n }\n .drawer.toggle {\n inset-inline-start: var(--_navigation-drawer-width-negative);\n }\n u-elevation,\n .scrim {\n display: none;\n }\n }\n .content {\n position: fixed;\n inset: 0;\n z-index: 1;\n overflow: auto;\n }\n\n .drawer {\n position: relative;\n width: var(--_navigation-drawer-width);\n z-index: var(--u-side-navigation-z-index, 1030);\n pointer-events: auto;\n }\n\n .scrim {\n z-index: 1;\n }\n\n swiper-container {\n height: 100%;\n --u-app-bar-offset: var(--_navigation-width);\n }\n\n swiper-container::part(wrapper) {\n pointer-events: none;\n z-index: 2;\n }\n\n @media (min-width: 1200px) {\n :host {\n --_navigation-width: var(--_navigation-drawer-width);\n }\n .content {\n position: static;\n }\n swiper-container::part(container) {\n display: grid;\n grid-template-columns: var(--_navigation-width) minmax(0, 1fr);\n transition: 375ms cubic-bezier(0.19, 1, 0.22, 1);\n }\n .dummy-slide {\n display: none;\n }\n }\n`"
|
|
9602
|
+
}
|
|
9603
|
+
],
|
|
9604
|
+
"exports": [
|
|
9605
|
+
{
|
|
9606
|
+
"kind": "js",
|
|
9607
|
+
"name": "styles",
|
|
9608
|
+
"declaration": {
|
|
9609
|
+
"name": "styles",
|
|
9610
|
+
"module": "src/navigation/side-navigation-swiper.styles.ts"
|
|
9611
|
+
}
|
|
9612
|
+
}
|
|
9613
|
+
]
|
|
9614
|
+
},
|
|
9615
|
+
{
|
|
9616
|
+
"kind": "javascript-module",
|
|
9617
|
+
"path": "src/navigation/side-navigation.styles.ts",
|
|
9537
9618
|
"declarations": [
|
|
9538
9619
|
{
|
|
9539
9620
|
"kind": "variable",
|
|
9540
9621
|
"name": "styles",
|
|
9541
|
-
"default": "css `\n :host
|
|
9622
|
+
"default": "css `\n :host {\n --_navigation-width: 0;\n --_navigation-drawer-width: min(var(--u-navigation-drawer-width, 360px), 85vw);\n --_navigation-drawer-width-negative: calc(var(--_navigation-drawer-width) * -1);\n --_navigation-drawer-corner-shape: var(--u-navigation-drawer-corner-shape, var(--u-shape-corner-large, 16px));\n --_scrim-opacity: var(--u-drawer-scrim-opacity, .4);\n display: block;\n width: 100%;\n height: 100%;\n --u-app-bar-offset: var(--_navigation-width);\n }\n\n :host(.disable-transition) * {\n transition: none !important;\n }\n :host(.disable-transition) * ::slotted(u-top-app-bar) {\n transition: none !important;\n }\n\n .drawer {\n transition: inset 375ms cubic-bezier(0.19, 1, 0.22, 1);\n }\n .drawer,\n .drawer u-elevation,\n .drawer .drawer-container {\n border-start-end-radius: var(--_navigation-drawer-corner-shape);\n border-end-end-radius: var(--_navigation-drawer-corner-shape);\n }\n .drawer.toggle u-elevation {\n --u-elevation-level: 1;\n }\n\n .drawer-container {\n height: 100%;\n overflow: hidden;\n }\n\n .scrim {\n --_modal-drawer-open-progress: 0;\n position: absolute;\n inset-inline-start: 0;\n inset-block-start: 0;\n width: 100vw;\n height: 100vh;\n background: var(--u-drawer-scrim-color, var(--u-color-scrim, rgb(0, 0, 0)));\n pointer-events: none;\n opacity: calc(var(--_scrim-opacity) * var(--_modal-drawer-open-progress));\n transition: opacity 375ms linear;\n }\n .scrim.moving {\n transition: none;\n }\n .scrim.toggle {\n --_modal-drawer-open-progress: 1;\n pointer-events: auto;\n }\n\n @media (min-width: 840px) {\n .content slot {\n display: flex;\n flex-direction: column;\n height: 100vh;\n }\n }\n @media (min-width: 1200px) {\n .container {\n --_navigation-width: var(--_navigation-drawer-width);\n }\n .container:has(.drawer.toggle) {\n --_navigation-width: 0;\n }\n .drawer {\n border-radius: 0;\n inset-inline-start: 0;\n }\n .drawer.toggle {\n inset-inline-start: var(--_navigation-drawer-width-negative);\n }\n u-elevation,\n .scrim {\n display: none;\n }\n }\n .navigation {\n position: fixed;\n inset-inline-start: 0;\n inset-block-start: 0;\n height: 100%;\n z-index: var(--u-side-navigation-z-index, 1030);\n }\n\n .drawer {\n position: absolute;\n inset-inline-start: var(--_navigation-drawer-width-negative);\n inset-block-start: 0;\n width: var(--_navigation-drawer-width);\n height: 100%;\n border-start-end-radius: var(--_navigation-drawer-corner-shape);\n border-end-end-radius: var(--_navigation-drawer-corner-shape);\n overflow: hidden;\n }\n .drawer.toggle {\n inset-inline-start: 0;\n }\n\n .grid {\n display: grid;\n grid-template-columns: var(--_navigation-width) minmax(0, 1fr);\n transition: 375ms cubic-bezier(0.19, 1, 0.22, 1);\n --u-app-bar-offset: var(--_navigation-width);\n }\n\n @media (min-width: 1200px) {\n .drawer {\n inset-inline-start: 0;\n }\n .drawer.toggle {\n inset-inline-start: var(--_navigation-drawer-width-negative);\n }\n }\n`"
|
|
9542
9623
|
}
|
|
9543
9624
|
],
|
|
9544
9625
|
"exports": [
|
|
@@ -9547,237 +9628,156 @@
|
|
|
9547
9628
|
"name": "styles",
|
|
9548
9629
|
"declaration": {
|
|
9549
9630
|
"name": "styles",
|
|
9550
|
-
"module": "src/
|
|
9631
|
+
"module": "src/navigation/side-navigation.styles.ts"
|
|
9551
9632
|
}
|
|
9552
9633
|
}
|
|
9553
9634
|
]
|
|
9554
9635
|
},
|
|
9555
9636
|
{
|
|
9556
9637
|
"kind": "javascript-module",
|
|
9557
|
-
"path": "src/
|
|
9638
|
+
"path": "src/navigation/side-navigation.ts",
|
|
9558
9639
|
"declarations": [
|
|
9559
9640
|
{
|
|
9560
9641
|
"kind": "class",
|
|
9561
9642
|
"description": "",
|
|
9562
|
-
"name": "
|
|
9643
|
+
"name": "UmSideNavigation",
|
|
9563
9644
|
"members": [
|
|
9564
9645
|
{
|
|
9565
9646
|
"kind": "field",
|
|
9566
|
-
"name": "
|
|
9647
|
+
"name": "#toggleDrawer",
|
|
9648
|
+
"privacy": "private",
|
|
9567
9649
|
"type": {
|
|
9568
9650
|
"text": "boolean"
|
|
9569
9651
|
},
|
|
9570
|
-
"privacy": "private",
|
|
9571
9652
|
"default": "false"
|
|
9572
9653
|
},
|
|
9573
9654
|
{
|
|
9574
9655
|
"kind": "field",
|
|
9575
|
-
"name": "
|
|
9656
|
+
"name": "disableSlideAnimation",
|
|
9576
9657
|
"type": {
|
|
9577
9658
|
"text": "boolean"
|
|
9578
9659
|
},
|
|
9579
|
-
"
|
|
9580
|
-
"
|
|
9581
|
-
"attribute": "disabled",
|
|
9582
|
-
"reflects": true
|
|
9660
|
+
"privacy": "private",
|
|
9661
|
+
"default": "false"
|
|
9583
9662
|
},
|
|
9584
9663
|
{
|
|
9585
9664
|
"kind": "field",
|
|
9586
|
-
"name": "
|
|
9665
|
+
"name": "toggleDrawer",
|
|
9666
|
+
"description": "Toggle the navigation drawer visibility\n\n_Modal drawer_: Open if `true`, closed if `false`\n_Standard drawer_: Collapsed if `true`, visible if `false`",
|
|
9667
|
+
"attribute": "toggle-drawer"
|
|
9668
|
+
},
|
|
9669
|
+
{
|
|
9670
|
+
"kind": "field",
|
|
9671
|
+
"name": "swiperContainer",
|
|
9672
|
+
"type": {
|
|
9673
|
+
"text": "any"
|
|
9674
|
+
}
|
|
9675
|
+
},
|
|
9676
|
+
{
|
|
9677
|
+
"kind": "field",
|
|
9678
|
+
"name": "scrim",
|
|
9587
9679
|
"type": {
|
|
9588
9680
|
"text": "HTMLElement"
|
|
9589
|
-
}
|
|
9590
|
-
"privacy": "private"
|
|
9681
|
+
}
|
|
9591
9682
|
},
|
|
9592
9683
|
{
|
|
9593
|
-
"kind": "
|
|
9594
|
-
"name": "
|
|
9595
|
-
"
|
|
9596
|
-
|
|
9597
|
-
"type": {
|
|
9598
|
-
"text": "void"
|
|
9599
|
-
}
|
|
9684
|
+
"kind": "field",
|
|
9685
|
+
"name": "scrollContainer",
|
|
9686
|
+
"type": {
|
|
9687
|
+
"text": "HTMLElement | undefined"
|
|
9600
9688
|
}
|
|
9601
9689
|
},
|
|
9602
9690
|
{
|
|
9603
9691
|
"kind": "method",
|
|
9604
|
-
"name": "
|
|
9605
|
-
"privacy": "private"
|
|
9606
|
-
"return": {
|
|
9607
|
-
"type": {
|
|
9608
|
-
"text": "void"
|
|
9609
|
-
}
|
|
9610
|
-
}
|
|
9692
|
+
"name": "renderDefault",
|
|
9693
|
+
"privacy": "private"
|
|
9611
9694
|
},
|
|
9612
9695
|
{
|
|
9613
9696
|
"kind": "method",
|
|
9614
|
-
"name": "
|
|
9615
|
-
"privacy": "private"
|
|
9616
|
-
"return": {
|
|
9617
|
-
"type": {
|
|
9618
|
-
"text": "void"
|
|
9619
|
-
}
|
|
9620
|
-
},
|
|
9621
|
-
"parameters": [
|
|
9622
|
-
{
|
|
9623
|
-
"name": "e",
|
|
9624
|
-
"type": {
|
|
9625
|
-
"text": "MouseEvent"
|
|
9626
|
-
}
|
|
9627
|
-
}
|
|
9628
|
-
]
|
|
9697
|
+
"name": "renderWithSwipe",
|
|
9698
|
+
"privacy": "private"
|
|
9629
9699
|
},
|
|
9630
9700
|
{
|
|
9631
9701
|
"kind": "method",
|
|
9632
|
-
"name": "
|
|
9633
|
-
"privacy": "private"
|
|
9634
|
-
"return": {
|
|
9635
|
-
"type": {
|
|
9636
|
-
"text": "void"
|
|
9637
|
-
}
|
|
9638
|
-
},
|
|
9639
|
-
"parameters": [
|
|
9640
|
-
{
|
|
9641
|
-
"name": "e",
|
|
9642
|
-
"type": {
|
|
9643
|
-
"text": "TouchEvent"
|
|
9644
|
-
}
|
|
9645
|
-
}
|
|
9646
|
-
]
|
|
9702
|
+
"name": "swiperActiveIndexChange",
|
|
9703
|
+
"privacy": "private"
|
|
9647
9704
|
},
|
|
9648
9705
|
{
|
|
9649
9706
|
"kind": "method",
|
|
9650
|
-
"name": "
|
|
9651
|
-
"privacy": "private"
|
|
9652
|
-
"return": {
|
|
9653
|
-
"type": {
|
|
9654
|
-
"text": "boolean"
|
|
9655
|
-
}
|
|
9656
|
-
}
|
|
9707
|
+
"name": "swiperTransitionStart",
|
|
9708
|
+
"privacy": "private"
|
|
9657
9709
|
},
|
|
9658
9710
|
{
|
|
9659
9711
|
"kind": "method",
|
|
9660
|
-
"name": "
|
|
9661
|
-
"
|
|
9662
|
-
"type": {
|
|
9663
|
-
"text": "(() => void) | null"
|
|
9664
|
-
}
|
|
9665
|
-
},
|
|
9666
|
-
"parameters": [
|
|
9667
|
-
{
|
|
9668
|
-
"name": "targetX",
|
|
9669
|
-
"default": "null",
|
|
9670
|
-
"type": {
|
|
9671
|
-
"text": "number | null"
|
|
9672
|
-
}
|
|
9673
|
-
},
|
|
9674
|
-
{
|
|
9675
|
-
"name": "targetY",
|
|
9676
|
-
"default": "null",
|
|
9677
|
-
"type": {
|
|
9678
|
-
"text": "number | null"
|
|
9679
|
-
}
|
|
9680
|
-
},
|
|
9681
|
-
{
|
|
9682
|
-
"name": "releaseEventName",
|
|
9683
|
-
"default": "null",
|
|
9684
|
-
"type": {
|
|
9685
|
-
"text": "string | null"
|
|
9686
|
-
}
|
|
9687
|
-
}
|
|
9688
|
-
]
|
|
9712
|
+
"name": "slidesGridLengthChange",
|
|
9713
|
+
"privacy": "private"
|
|
9689
9714
|
},
|
|
9690
9715
|
{
|
|
9691
9716
|
"kind": "method",
|
|
9692
|
-
"name": "
|
|
9693
|
-
"privacy": "private"
|
|
9694
|
-
"return": {
|
|
9695
|
-
"type": {
|
|
9696
|
-
"text": "() => void"
|
|
9697
|
-
}
|
|
9698
|
-
},
|
|
9699
|
-
"parameters": [
|
|
9700
|
-
{
|
|
9701
|
-
"name": "ripple",
|
|
9702
|
-
"type": {
|
|
9703
|
-
"text": "HTMLElement"
|
|
9704
|
-
}
|
|
9705
|
-
},
|
|
9706
|
-
{
|
|
9707
|
-
"name": "releaseEventName",
|
|
9708
|
-
"type": {
|
|
9709
|
-
"text": "string"
|
|
9710
|
-
}
|
|
9711
|
-
}
|
|
9712
|
-
]
|
|
9717
|
+
"name": "swiperTransitionEnd",
|
|
9718
|
+
"privacy": "private"
|
|
9713
9719
|
},
|
|
9714
9720
|
{
|
|
9715
9721
|
"kind": "method",
|
|
9716
|
-
"name": "
|
|
9722
|
+
"name": "swiperSliderMove",
|
|
9717
9723
|
"privacy": "private",
|
|
9718
|
-
"static": true,
|
|
9719
9724
|
"parameters": [
|
|
9720
9725
|
{
|
|
9721
|
-
"name": "
|
|
9722
|
-
"type": {
|
|
9723
|
-
"text": "HTMLElement"
|
|
9724
|
-
}
|
|
9725
|
-
},
|
|
9726
|
-
{
|
|
9727
|
-
"name": "size",
|
|
9726
|
+
"name": "e",
|
|
9728
9727
|
"type": {
|
|
9729
|
-
"text": "
|
|
9728
|
+
"text": "Event"
|
|
9730
9729
|
}
|
|
9731
9730
|
}
|
|
9732
9731
|
]
|
|
9732
|
+
},
|
|
9733
|
+
{
|
|
9734
|
+
"kind": "method",
|
|
9735
|
+
"name": "scrimClick",
|
|
9736
|
+
"privacy": "private"
|
|
9733
9737
|
}
|
|
9734
9738
|
],
|
|
9735
9739
|
"attributes": [
|
|
9736
9740
|
{
|
|
9737
|
-
"name": "
|
|
9738
|
-
"
|
|
9739
|
-
|
|
9740
|
-
},
|
|
9741
|
-
"default": "false",
|
|
9742
|
-
"description": "Disables the ripple.",
|
|
9743
|
-
"fieldName": "disabled"
|
|
9741
|
+
"name": "toggle-drawer",
|
|
9742
|
+
"description": "Toggle the navigation drawer visibility\n\n_Modal drawer_: Open if `true`, closed if `false`\n_Standard drawer_: Collapsed if `true`, visible if `false`",
|
|
9743
|
+
"fieldName": "toggleDrawer"
|
|
9744
9744
|
}
|
|
9745
9745
|
],
|
|
9746
9746
|
"superclass": {
|
|
9747
9747
|
"name": "LitElement",
|
|
9748
9748
|
"package": "lit"
|
|
9749
9749
|
},
|
|
9750
|
-
"tagName": "u-
|
|
9750
|
+
"tagName": "u-side-navigation",
|
|
9751
9751
|
"customElement": true
|
|
9752
9752
|
}
|
|
9753
9753
|
],
|
|
9754
9754
|
"exports": [
|
|
9755
9755
|
{
|
|
9756
9756
|
"kind": "js",
|
|
9757
|
-
"name": "
|
|
9757
|
+
"name": "UmSideNavigation",
|
|
9758
9758
|
"declaration": {
|
|
9759
|
-
"name": "
|
|
9760
|
-
"module": "src/
|
|
9759
|
+
"name": "UmSideNavigation",
|
|
9760
|
+
"module": "src/navigation/side-navigation.ts"
|
|
9761
9761
|
}
|
|
9762
9762
|
},
|
|
9763
9763
|
{
|
|
9764
9764
|
"kind": "custom-element-definition",
|
|
9765
|
-
"name": "u-
|
|
9765
|
+
"name": "u-side-navigation",
|
|
9766
9766
|
"declaration": {
|
|
9767
|
-
"name": "
|
|
9768
|
-
"module": "src/
|
|
9767
|
+
"name": "UmSideNavigation",
|
|
9768
|
+
"module": "src/navigation/side-navigation.ts"
|
|
9769
9769
|
}
|
|
9770
9770
|
}
|
|
9771
9771
|
]
|
|
9772
9772
|
},
|
|
9773
9773
|
{
|
|
9774
9774
|
"kind": "javascript-module",
|
|
9775
|
-
"path": "src/
|
|
9775
|
+
"path": "src/snackbar/snackbar.styles.ts",
|
|
9776
9776
|
"declarations": [
|
|
9777
9777
|
{
|
|
9778
9778
|
"kind": "variable",
|
|
9779
9779
|
"name": "styles",
|
|
9780
|
-
"default": "css `\n :host
|
|
9780
|
+
"default": "css `\n :host {\n --u-elevation-level: var(--u-snackbar-elevation-level, 3);\n --_snackbar-margin: var(--u-snackbar-margin, var(--u-spacing-medium, 16px));\n position: fixed;\n inset-inline: 0;\n inset-block-end: 0;\n padding: var(--_snackbar-margin);\n z-index: var(--u-snackbar-z-index, 1070);\n display: flex;\n justify-content: center;\n }\n\n .snackbar {\n display: flex;\n align-items: center;\n min-height: var(--u-snackbar-height, 48px);\n color: var(--u-snackbar-text-color, var(--u-color-on-inverse-surface, rgb(245, 239, 247)));\n background-color: var(--u-snackbar-background-color, var(--u-color-inverse-surface, rgb(50, 47, 53)));\n border-radius: var(--u-snackbar-shape, var(--u-shape-corner-extra-small, 4px));\n animation-name: snackbar-fade-in;\n animation-duration: 450ms;\n animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);\n animation-fill-mode: forwards;\n min-width: var(--u-snackbar-min-width, 100%);\n max-width: var(--u-snackbar-max-width, 100%);\n }\n .snackbar.dismiss {\n animation-name: snackbar-fade-out;\n }\n\n u-button {\n color: var(--u-color-inverse-primary, );\n margin-inline: var(--u-snackbar-text-button-margin, var(--u-spacing-small, 8px));\n }\n\n u-icon-button {\n color: var(--u-color-on-inverse-surface, rgb(245, 239, 247));\n margin-inline: var(--u-snackbar-close-button-margin, var(--u-spacing-extra-small, 4px));\n }\n\n .label {\n flex: 1;\n overflow: hidden;\n color: var(--u-on-inverse-surface-color);\n padding: var(--u-snackbar-text-margin, var(--u-spacing-medium, 16px));\n line-height: 18px;\n }\n\n @media (min-width: 840px) {\n :host {\n --_snackbar-margin: var(--u-snackbar-margin, var(--u-spacing-large, 24px));\n }\n .snackbar {\n min-width: var(--u-snackbar-min-width, 288px);\n max-width: var(--u-snackbar-max-width, 568px);\n }\n }\n @keyframes snackbar-fade-in {\n 0% {\n opacity: 0;\n transform: scale3d(0.5, 0.5, 1);\n }\n 100% {\n opacity: 1;\n transform: scale3d(1, 1, 1);\n }\n }\n @keyframes snackbar-fade-out {\n 0% {\n opacity: 1;\n transform: scale3d(1, 1, 1);\n }\n 100% {\n opacity: 0;\n transform: scale3d(0.5, 0.5, 1);\n }\n }\n`"
|
|
9781
9781
|
}
|
|
9782
9782
|
],
|
|
9783
9783
|
"exports": [
|
|
@@ -9786,95 +9786,75 @@
|
|
|
9786
9786
|
"name": "styles",
|
|
9787
9787
|
"declaration": {
|
|
9788
9788
|
"name": "styles",
|
|
9789
|
-
"module": "src/
|
|
9789
|
+
"module": "src/snackbar/snackbar.styles.ts"
|
|
9790
9790
|
}
|
|
9791
9791
|
}
|
|
9792
9792
|
]
|
|
9793
9793
|
},
|
|
9794
9794
|
{
|
|
9795
9795
|
"kind": "javascript-module",
|
|
9796
|
-
"path": "src/
|
|
9796
|
+
"path": "src/snackbar/snackbar.ts",
|
|
9797
9797
|
"declarations": [
|
|
9798
9798
|
{
|
|
9799
9799
|
"kind": "class",
|
|
9800
9800
|
"description": "",
|
|
9801
|
-
"name": "
|
|
9801
|
+
"name": "UmSnackbar",
|
|
9802
9802
|
"members": [
|
|
9803
9803
|
{
|
|
9804
9804
|
"kind": "field",
|
|
9805
|
-
"name": "
|
|
9805
|
+
"name": "label",
|
|
9806
9806
|
"type": {
|
|
9807
|
-
"text": "
|
|
9807
|
+
"text": "string"
|
|
9808
9808
|
},
|
|
9809
|
-
"default": "
|
|
9810
|
-
"
|
|
9811
|
-
"attribute": "disabled",
|
|
9809
|
+
"default": "''",
|
|
9810
|
+
"attribute": "label",
|
|
9812
9811
|
"reflects": true
|
|
9813
9812
|
},
|
|
9814
9813
|
{
|
|
9815
9814
|
"kind": "field",
|
|
9816
|
-
"name": "
|
|
9817
|
-
"type": {
|
|
9818
|
-
"text": "boolean"
|
|
9819
|
-
},
|
|
9820
|
-
"default": "true"
|
|
9821
|
-
},
|
|
9822
|
-
{
|
|
9823
|
-
"kind": "field",
|
|
9824
|
-
"name": "href",
|
|
9825
|
-
"type": {
|
|
9826
|
-
"text": "string | undefined"
|
|
9827
|
-
},
|
|
9828
|
-
"description": "The URL that the link button points to.",
|
|
9829
|
-
"attribute": "href"
|
|
9830
|
-
},
|
|
9831
|
-
{
|
|
9832
|
-
"kind": "field",
|
|
9833
|
-
"name": "target",
|
|
9815
|
+
"name": "buttonLabel",
|
|
9834
9816
|
"type": {
|
|
9835
|
-
"text": "string
|
|
9817
|
+
"text": "string"
|
|
9836
9818
|
},
|
|
9837
|
-
"
|
|
9838
|
-
"attribute": "
|
|
9819
|
+
"default": "''",
|
|
9820
|
+
"attribute": "buttonLabel",
|
|
9821
|
+
"reflects": true
|
|
9839
9822
|
},
|
|
9840
9823
|
{
|
|
9841
9824
|
"kind": "field",
|
|
9842
|
-
"name": "
|
|
9825
|
+
"name": "showClose",
|
|
9843
9826
|
"type": {
|
|
9844
|
-
"text": "
|
|
9827
|
+
"text": "boolean"
|
|
9845
9828
|
},
|
|
9846
|
-
"
|
|
9847
|
-
|
|
9848
|
-
|
|
9849
|
-
"kind": "field",
|
|
9850
|
-
"name": "buttonElement",
|
|
9851
|
-
"type": {
|
|
9852
|
-
"text": "HTMLElement"
|
|
9853
|
-
}
|
|
9829
|
+
"default": "false",
|
|
9830
|
+
"attribute": "show-close",
|
|
9831
|
+
"reflects": true
|
|
9854
9832
|
},
|
|
9855
9833
|
{
|
|
9856
9834
|
"kind": "field",
|
|
9857
|
-
"name": "
|
|
9835
|
+
"name": "dismissed",
|
|
9858
9836
|
"type": {
|
|
9859
|
-
"text": "
|
|
9837
|
+
"text": "boolean"
|
|
9860
9838
|
},
|
|
9861
|
-
"
|
|
9839
|
+
"default": "false",
|
|
9840
|
+
"attribute": "dismissed",
|
|
9841
|
+
"reflects": true
|
|
9862
9842
|
},
|
|
9863
9843
|
{
|
|
9864
9844
|
"kind": "field",
|
|
9865
|
-
"name": "
|
|
9845
|
+
"name": "duration",
|
|
9866
9846
|
"type": {
|
|
9867
|
-
"text": "
|
|
9847
|
+
"text": "SnackbarDuration"
|
|
9868
9848
|
},
|
|
9869
|
-
"privacy": "
|
|
9870
|
-
"default": "null"
|
|
9849
|
+
"privacy": "private"
|
|
9871
9850
|
},
|
|
9872
9851
|
{
|
|
9873
9852
|
"kind": "field",
|
|
9874
|
-
"name": "
|
|
9853
|
+
"name": "snackbar",
|
|
9875
9854
|
"type": {
|
|
9876
|
-
"text": "
|
|
9877
|
-
}
|
|
9855
|
+
"text": "HTMLElement"
|
|
9856
|
+
},
|
|
9857
|
+
"privacy": "private"
|
|
9878
9858
|
},
|
|
9879
9859
|
{
|
|
9880
9860
|
"kind": "method",
|
|
@@ -9883,78 +9863,118 @@
|
|
|
9883
9863
|
},
|
|
9884
9864
|
{
|
|
9885
9865
|
"kind": "method",
|
|
9886
|
-
"name": "
|
|
9866
|
+
"name": "renderCloseButton",
|
|
9887
9867
|
"privacy": "private"
|
|
9888
9868
|
},
|
|
9889
9869
|
{
|
|
9890
9870
|
"kind": "method",
|
|
9891
|
-
"name": "
|
|
9892
|
-
"privacy": "protected",
|
|
9871
|
+
"name": "dismiss",
|
|
9893
9872
|
"return": {
|
|
9894
9873
|
"type": {
|
|
9895
|
-
"text": "
|
|
9874
|
+
"text": "void"
|
|
9896
9875
|
}
|
|
9897
9876
|
}
|
|
9898
9877
|
},
|
|
9899
9878
|
{
|
|
9900
|
-
"kind": "
|
|
9901
|
-
"name": "
|
|
9879
|
+
"kind": "field",
|
|
9880
|
+
"name": "_queue",
|
|
9881
|
+
"type": {
|
|
9882
|
+
"text": "UmSnackbar[]"
|
|
9883
|
+
},
|
|
9884
|
+
"privacy": "private",
|
|
9885
|
+
"static": true,
|
|
9886
|
+
"default": "[]"
|
|
9902
9887
|
},
|
|
9903
9888
|
{
|
|
9904
|
-
"kind": "
|
|
9905
|
-
"name": "
|
|
9889
|
+
"kind": "field",
|
|
9890
|
+
"name": "_consuming",
|
|
9891
|
+
"type": {
|
|
9892
|
+
"text": "boolean"
|
|
9893
|
+
},
|
|
9894
|
+
"privacy": "private",
|
|
9895
|
+
"static": true
|
|
9906
9896
|
},
|
|
9907
9897
|
{
|
|
9908
9898
|
"kind": "method",
|
|
9909
|
-
"name": "
|
|
9910
|
-
"
|
|
9899
|
+
"name": "show",
|
|
9900
|
+
"static": true,
|
|
9911
9901
|
"return": {
|
|
9912
9902
|
"type": {
|
|
9913
|
-
"text": "
|
|
9903
|
+
"text": "UmSnackbar"
|
|
9914
9904
|
}
|
|
9915
|
-
}
|
|
9905
|
+
},
|
|
9906
|
+
"parameters": [
|
|
9907
|
+
{
|
|
9908
|
+
"name": "label",
|
|
9909
|
+
"type": {
|
|
9910
|
+
"text": "string"
|
|
9911
|
+
}
|
|
9912
|
+
}
|
|
9913
|
+
]
|
|
9916
9914
|
},
|
|
9917
9915
|
{
|
|
9918
9916
|
"kind": "method",
|
|
9919
|
-
"name": "
|
|
9920
|
-
"
|
|
9917
|
+
"name": "show",
|
|
9918
|
+
"static": true,
|
|
9921
9919
|
"return": {
|
|
9922
9920
|
"type": {
|
|
9923
|
-
"text": "
|
|
9921
|
+
"text": "UmSnackbar"
|
|
9924
9922
|
}
|
|
9925
|
-
}
|
|
9923
|
+
},
|
|
9924
|
+
"parameters": [
|
|
9925
|
+
{
|
|
9926
|
+
"name": "config",
|
|
9927
|
+
"type": {
|
|
9928
|
+
"text": "SnackbarConfig"
|
|
9929
|
+
}
|
|
9930
|
+
}
|
|
9931
|
+
]
|
|
9926
9932
|
},
|
|
9927
9933
|
{
|
|
9928
9934
|
"kind": "method",
|
|
9929
|
-
"name": "
|
|
9935
|
+
"name": "show",
|
|
9936
|
+
"static": true,
|
|
9930
9937
|
"return": {
|
|
9931
9938
|
"type": {
|
|
9932
|
-
"text": "
|
|
9939
|
+
"text": "UmSnackbar"
|
|
9933
9940
|
}
|
|
9934
9941
|
},
|
|
9935
9942
|
"parameters": [
|
|
9936
9943
|
{
|
|
9937
|
-
"name": "
|
|
9944
|
+
"name": "configOrLabel",
|
|
9938
9945
|
"type": {
|
|
9939
|
-
"text": "
|
|
9946
|
+
"text": "SnackbarConfig | string"
|
|
9940
9947
|
}
|
|
9941
9948
|
}
|
|
9942
9949
|
]
|
|
9943
9950
|
},
|
|
9944
9951
|
{
|
|
9945
9952
|
"kind": "method",
|
|
9946
|
-
"name": "
|
|
9947
|
-
"privacy": "
|
|
9953
|
+
"name": "consumeQueue",
|
|
9954
|
+
"privacy": "private",
|
|
9955
|
+
"static": true
|
|
9956
|
+
},
|
|
9957
|
+
{
|
|
9958
|
+
"kind": "method",
|
|
9959
|
+
"name": "showNext",
|
|
9960
|
+
"privacy": "private",
|
|
9961
|
+
"static": true
|
|
9962
|
+
},
|
|
9963
|
+
{
|
|
9964
|
+
"kind": "method",
|
|
9965
|
+
"name": "createSnackbar",
|
|
9966
|
+
"privacy": "private",
|
|
9967
|
+
"static": true,
|
|
9948
9968
|
"return": {
|
|
9949
9969
|
"type": {
|
|
9950
|
-
"text": "
|
|
9970
|
+
"text": "UmSnackbar"
|
|
9951
9971
|
}
|
|
9952
9972
|
},
|
|
9953
9973
|
"parameters": [
|
|
9954
9974
|
{
|
|
9955
|
-
"name": "
|
|
9975
|
+
"name": "config",
|
|
9956
9976
|
"type": {
|
|
9957
|
-
"text": "
|
|
9977
|
+
"text": "SnackbarConfig"
|
|
9958
9978
|
}
|
|
9959
9979
|
}
|
|
9960
9980
|
]
|
|
@@ -9962,238 +9982,105 @@
|
|
|
9962
9982
|
],
|
|
9963
9983
|
"attributes": [
|
|
9964
9984
|
{
|
|
9965
|
-
"name": "
|
|
9985
|
+
"name": "label",
|
|
9966
9986
|
"type": {
|
|
9967
|
-
"text": "
|
|
9987
|
+
"text": "string"
|
|
9968
9988
|
},
|
|
9969
|
-
"default": "
|
|
9970
|
-
"
|
|
9971
|
-
"fieldName": "disabled"
|
|
9989
|
+
"default": "''",
|
|
9990
|
+
"fieldName": "label"
|
|
9972
9991
|
},
|
|
9973
9992
|
{
|
|
9974
|
-
"name": "
|
|
9993
|
+
"name": "buttonLabel",
|
|
9975
9994
|
"type": {
|
|
9976
|
-
"text": "string
|
|
9995
|
+
"text": "string"
|
|
9977
9996
|
},
|
|
9978
|
-
"
|
|
9979
|
-
"fieldName": "
|
|
9997
|
+
"default": "''",
|
|
9998
|
+
"fieldName": "buttonLabel"
|
|
9980
9999
|
},
|
|
9981
10000
|
{
|
|
9982
|
-
"name": "
|
|
10001
|
+
"name": "show-close",
|
|
9983
10002
|
"type": {
|
|
9984
|
-
"text": "
|
|
10003
|
+
"text": "boolean"
|
|
9985
10004
|
},
|
|
9986
|
-
"
|
|
9987
|
-
"fieldName": "
|
|
10005
|
+
"default": "false",
|
|
10006
|
+
"fieldName": "showClose"
|
|
9988
10007
|
},
|
|
9989
10008
|
{
|
|
9990
|
-
"name": "
|
|
10009
|
+
"name": "dismissed",
|
|
9991
10010
|
"type": {
|
|
9992
|
-
"text": "
|
|
10011
|
+
"text": "boolean"
|
|
9993
10012
|
},
|
|
9994
|
-
"
|
|
10013
|
+
"default": "false",
|
|
10014
|
+
"fieldName": "dismissed"
|
|
9995
10015
|
}
|
|
9996
10016
|
],
|
|
9997
10017
|
"superclass": {
|
|
9998
10018
|
"name": "LitElement",
|
|
9999
10019
|
"package": "lit"
|
|
10000
10020
|
},
|
|
10021
|
+
"tagName": "u-snackbar",
|
|
10001
10022
|
"customElement": true
|
|
10002
10023
|
}
|
|
10003
10024
|
],
|
|
10004
10025
|
"exports": [
|
|
10005
10026
|
{
|
|
10006
10027
|
"kind": "js",
|
|
10007
|
-
"name": "
|
|
10008
|
-
"declaration": {
|
|
10009
|
-
"name": "UmButtonWrapper",
|
|
10010
|
-
"module": "src/shared/button-wrapper.ts"
|
|
10011
|
-
}
|
|
10012
|
-
}
|
|
10013
|
-
]
|
|
10014
|
-
},
|
|
10015
|
-
{
|
|
10016
|
-
"kind": "javascript-module",
|
|
10017
|
-
"path": "src/shared/extract-template-html.ts",
|
|
10018
|
-
"declarations": [
|
|
10019
|
-
{
|
|
10020
|
-
"kind": "function",
|
|
10021
|
-
"name": "extractTemplateHtml",
|
|
10022
|
-
"parameters": [
|
|
10023
|
-
{
|
|
10024
|
-
"name": "template",
|
|
10025
|
-
"type": {
|
|
10026
|
-
"text": "HTMLTemplateElement"
|
|
10027
|
-
}
|
|
10028
|
-
}
|
|
10029
|
-
]
|
|
10030
|
-
}
|
|
10031
|
-
],
|
|
10032
|
-
"exports": [
|
|
10033
|
-
{
|
|
10034
|
-
"kind": "js",
|
|
10035
|
-
"name": "extractTemplateHtml",
|
|
10036
|
-
"declaration": {
|
|
10037
|
-
"name": "extractTemplateHtml",
|
|
10038
|
-
"module": "src/shared/extract-template-html.ts"
|
|
10039
|
-
}
|
|
10040
|
-
}
|
|
10041
|
-
]
|
|
10042
|
-
},
|
|
10043
|
-
{
|
|
10044
|
-
"kind": "javascript-module",
|
|
10045
|
-
"path": "src/shared/mixin-attribute-properties.ts",
|
|
10046
|
-
"declarations": [
|
|
10047
|
-
{
|
|
10048
|
-
"kind": "mixin",
|
|
10049
|
-
"description": "",
|
|
10050
|
-
"name": "mixinAttributeProperties",
|
|
10051
|
-
"parameters": [
|
|
10052
|
-
{
|
|
10053
|
-
"name": "base",
|
|
10054
|
-
"type": {
|
|
10055
|
-
"text": "T"
|
|
10056
|
-
}
|
|
10057
|
-
},
|
|
10058
|
-
{
|
|
10059
|
-
"name": "properties",
|
|
10060
|
-
"type": {
|
|
10061
|
-
"text": "string[]"
|
|
10062
|
-
}
|
|
10063
|
-
}
|
|
10064
|
-
]
|
|
10065
|
-
}
|
|
10066
|
-
],
|
|
10067
|
-
"exports": [
|
|
10068
|
-
{
|
|
10069
|
-
"kind": "js",
|
|
10070
|
-
"name": "mixinAttributeProperties",
|
|
10028
|
+
"name": "UmSnackbar",
|
|
10071
10029
|
"declaration": {
|
|
10072
|
-
"name": "
|
|
10073
|
-
"module": "src/
|
|
10030
|
+
"name": "UmSnackbar",
|
|
10031
|
+
"module": "src/snackbar/snackbar.ts"
|
|
10074
10032
|
}
|
|
10075
|
-
}
|
|
10076
|
-
]
|
|
10077
|
-
},
|
|
10078
|
-
{
|
|
10079
|
-
"kind": "javascript-module",
|
|
10080
|
-
"path": "src/shared/mixin.ts",
|
|
10081
|
-
"declarations": [],
|
|
10082
|
-
"exports": []
|
|
10083
|
-
},
|
|
10084
|
-
{
|
|
10085
|
-
"kind": "javascript-module",
|
|
10086
|
-
"path": "src/shared/normalize-text.ts",
|
|
10087
|
-
"declarations": [
|
|
10088
|
-
{
|
|
10089
|
-
"kind": "function",
|
|
10090
|
-
"name": "normalizeText",
|
|
10091
|
-
"return": {
|
|
10092
|
-
"type": {
|
|
10093
|
-
"text": "string"
|
|
10094
|
-
}
|
|
10095
|
-
},
|
|
10096
|
-
"parameters": [
|
|
10097
|
-
{
|
|
10098
|
-
"name": "text",
|
|
10099
|
-
"type": {
|
|
10100
|
-
"text": "string"
|
|
10101
|
-
}
|
|
10102
|
-
}
|
|
10103
|
-
]
|
|
10104
|
-
}
|
|
10105
|
-
],
|
|
10106
|
-
"exports": [
|
|
10033
|
+
},
|
|
10107
10034
|
{
|
|
10108
|
-
"kind": "
|
|
10109
|
-
"name": "
|
|
10035
|
+
"kind": "custom-element-definition",
|
|
10036
|
+
"name": "u-snackbar",
|
|
10110
10037
|
"declaration": {
|
|
10111
|
-
"name": "
|
|
10112
|
-
"module": "src/
|
|
10038
|
+
"name": "UmSnackbar",
|
|
10039
|
+
"module": "src/snackbar/snackbar.ts"
|
|
10113
10040
|
}
|
|
10114
10041
|
}
|
|
10115
10042
|
]
|
|
10116
10043
|
},
|
|
10117
10044
|
{
|
|
10118
10045
|
"kind": "javascript-module",
|
|
10119
|
-
"path": "src/shared/
|
|
10046
|
+
"path": "src/shared/base.styles.ts",
|
|
10120
10047
|
"declarations": [
|
|
10121
10048
|
{
|
|
10122
|
-
"kind": "
|
|
10123
|
-
"name": "
|
|
10124
|
-
"
|
|
10125
|
-
{
|
|
10126
|
-
"name": "element",
|
|
10127
|
-
"type": {
|
|
10128
|
-
"text": "Element"
|
|
10129
|
-
}
|
|
10130
|
-
},
|
|
10131
|
-
{
|
|
10132
|
-
"name": "event",
|
|
10133
|
-
"type": {
|
|
10134
|
-
"text": "Event"
|
|
10135
|
-
}
|
|
10136
|
-
}
|
|
10137
|
-
]
|
|
10049
|
+
"kind": "variable",
|
|
10050
|
+
"name": "styles",
|
|
10051
|
+
"default": "css `\n :host,\n * {\n --_focus-ring-outline-offset: var(--u-focus-ring-outline-offset, 2px);\n font-family: var(--u-font-family, system-ui, -apple-system, \"Segoe UI\", Roboto, \"Helvetica Neue\", \"Noto Sans\", \"Liberation Sans\", Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");\n box-sizing: border-box;\n outline: 0;\n }\n\n :host(.force-focus-ring) .focus-ring,\n .focus-ring:focus-visible {\n --_color-primary: var(--u-color-primary, rgb(103, 80, 164));\n animation: u-focus-pulse 500ms ease;\n animation-fill-mode: forwards;\n outline-offset: var(--_focus-ring-outline-offset);\n }\n\n @keyframes u-focus-pulse {\n 0% {\n outline: 0 solid var(--_color-primary);\n }\n 50% {\n outline: 6px solid var(--_color-primary);\n }\n 100% {\n outline: 4px solid var(--_color-primary);\n }\n }\n`"
|
|
10138
10052
|
}
|
|
10139
10053
|
],
|
|
10140
10054
|
"exports": [
|
|
10141
10055
|
{
|
|
10142
10056
|
"kind": "js",
|
|
10143
|
-
"name": "
|
|
10057
|
+
"name": "styles",
|
|
10144
10058
|
"declaration": {
|
|
10145
|
-
"name": "
|
|
10146
|
-
"module": "src/shared/
|
|
10059
|
+
"name": "styles",
|
|
10060
|
+
"module": "src/shared/base.styles.ts"
|
|
10147
10061
|
}
|
|
10148
10062
|
}
|
|
10149
10063
|
]
|
|
10150
10064
|
},
|
|
10151
10065
|
{
|
|
10152
10066
|
"kind": "javascript-module",
|
|
10153
|
-
"path": "src/
|
|
10067
|
+
"path": "src/shared/button-wrapper.ts",
|
|
10154
10068
|
"declarations": [
|
|
10155
10069
|
{
|
|
10156
10070
|
"kind": "class",
|
|
10157
10071
|
"description": "",
|
|
10158
|
-
"name": "
|
|
10159
|
-
"mixins": [
|
|
10160
|
-
{
|
|
10161
|
-
"name": "mixinSelectionControlListItem",
|
|
10162
|
-
"module": "/src/shared/selection-control/selection-control-list-item.js"
|
|
10163
|
-
}
|
|
10164
|
-
],
|
|
10165
|
-
"superclass": {
|
|
10166
|
-
"name": "UmSwitch",
|
|
10167
|
-
"module": "/src/switch/switch.js"
|
|
10168
|
-
},
|
|
10169
|
-
"tagName": "u-switch-list-item",
|
|
10170
|
-
"customElement": true,
|
|
10072
|
+
"name": "UmButtonWrapper",
|
|
10171
10073
|
"members": [
|
|
10172
10074
|
{
|
|
10173
10075
|
"kind": "field",
|
|
10174
|
-
"name": "
|
|
10076
|
+
"name": "disabled",
|
|
10175
10077
|
"type": {
|
|
10176
|
-
"text": "
|
|
10177
|
-
},
|
|
10178
|
-
"static": true,
|
|
10179
|
-
"default": "[\n (base as unknown as typeof LitElement).styles ?? [],\n css`:host {\n --u-list-item-block-padding: 0;\n display: block;\n }`\n ]",
|
|
10180
|
-
"inheritedFrom": {
|
|
10181
|
-
"name": "mixinSelectionControlListItem",
|
|
10182
|
-
"module": "src/shared/selection-control/selection-control-list-item.ts"
|
|
10183
|
-
}
|
|
10184
|
-
},
|
|
10185
|
-
{
|
|
10186
|
-
"kind": "method",
|
|
10187
|
-
"name": "render",
|
|
10188
|
-
"return": {
|
|
10189
|
-
"type": {
|
|
10190
|
-
"text": "HTMLTemplateResult"
|
|
10191
|
-
}
|
|
10078
|
+
"text": "boolean"
|
|
10192
10079
|
},
|
|
10193
|
-
"
|
|
10194
|
-
|
|
10195
|
-
|
|
10196
|
-
|
|
10080
|
+
"default": "false",
|
|
10081
|
+
"description": "Whether the button is disabled or not.",
|
|
10082
|
+
"attribute": "disabled",
|
|
10083
|
+
"reflects": true
|
|
10197
10084
|
},
|
|
10198
10085
|
{
|
|
10199
10086
|
"kind": "field",
|
|
@@ -10201,51 +10088,25 @@
|
|
|
10201
10088
|
"type": {
|
|
10202
10089
|
"text": "boolean"
|
|
10203
10090
|
},
|
|
10204
|
-
"
|
|
10205
|
-
"default": "false",
|
|
10206
|
-
"inheritedFrom": {
|
|
10207
|
-
"name": "UmSelectionControl",
|
|
10208
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
10209
|
-
}
|
|
10210
|
-
},
|
|
10211
|
-
{
|
|
10212
|
-
"kind": "method",
|
|
10213
|
-
"name": "renderIndicator",
|
|
10214
|
-
"privacy": "protected",
|
|
10215
|
-
"return": {
|
|
10216
|
-
"type": {
|
|
10217
|
-
"text": "HTMLTemplateResult"
|
|
10218
|
-
}
|
|
10219
|
-
},
|
|
10220
|
-
"inheritedFrom": {
|
|
10221
|
-
"name": "UmSelectionControl",
|
|
10222
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
10223
|
-
}
|
|
10091
|
+
"default": "true"
|
|
10224
10092
|
},
|
|
10225
10093
|
{
|
|
10226
10094
|
"kind": "field",
|
|
10227
|
-
"name": "
|
|
10095
|
+
"name": "href",
|
|
10228
10096
|
"type": {
|
|
10229
|
-
"text": "
|
|
10097
|
+
"text": "string | undefined"
|
|
10230
10098
|
},
|
|
10231
|
-
"
|
|
10232
|
-
"
|
|
10233
|
-
"inheritedFrom": {
|
|
10234
|
-
"name": "UmSelectionControl",
|
|
10235
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
10236
|
-
}
|
|
10099
|
+
"description": "The URL that the link button points to.",
|
|
10100
|
+
"attribute": "href"
|
|
10237
10101
|
},
|
|
10238
10102
|
{
|
|
10239
10103
|
"kind": "field",
|
|
10240
|
-
"name": "
|
|
10104
|
+
"name": "target",
|
|
10241
10105
|
"type": {
|
|
10242
|
-
"text": "
|
|
10106
|
+
"text": "string | undefined"
|
|
10243
10107
|
},
|
|
10244
|
-
"
|
|
10245
|
-
"
|
|
10246
|
-
"name": "UmSelectionControl",
|
|
10247
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
10248
|
-
}
|
|
10108
|
+
"description": "Where to display the linked `href` URL for a link button. Common options\ninclude `_blank` to open in a new tab.",
|
|
10109
|
+
"attribute": "target"
|
|
10249
10110
|
},
|
|
10250
10111
|
{
|
|
10251
10112
|
"kind": "field",
|
|
@@ -10253,181 +10114,222 @@
|
|
|
10253
10114
|
"type": {
|
|
10254
10115
|
"text": "string | undefined"
|
|
10255
10116
|
},
|
|
10256
|
-
"
|
|
10257
|
-
"attribute": "name",
|
|
10258
|
-
"inheritedFrom": {
|
|
10259
|
-
"name": "UmSelectionControl",
|
|
10260
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
10261
|
-
}
|
|
10117
|
+
"attribute": "name"
|
|
10262
10118
|
},
|
|
10263
10119
|
{
|
|
10264
10120
|
"kind": "field",
|
|
10265
|
-
"name": "
|
|
10121
|
+
"name": "buttonElement",
|
|
10266
10122
|
"type": {
|
|
10267
|
-
"text": "
|
|
10268
|
-
},
|
|
10269
|
-
"default": "false",
|
|
10270
|
-
"attribute": "disabled",
|
|
10271
|
-
"reflects": true,
|
|
10272
|
-
"inheritedFrom": {
|
|
10273
|
-
"name": "UmSelectionControl",
|
|
10274
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
10123
|
+
"text": "HTMLElement"
|
|
10275
10124
|
}
|
|
10276
10125
|
},
|
|
10277
10126
|
{
|
|
10278
10127
|
"kind": "field",
|
|
10279
|
-
"name": "
|
|
10128
|
+
"name": "ripple",
|
|
10280
10129
|
"type": {
|
|
10281
|
-
"text": "
|
|
10130
|
+
"text": "UmRipple"
|
|
10282
10131
|
},
|
|
10283
|
-
"
|
|
10284
|
-
"name": "UmSelectionControl",
|
|
10285
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
10286
|
-
}
|
|
10132
|
+
"privacy": "private"
|
|
10287
10133
|
},
|
|
10288
10134
|
{
|
|
10289
10135
|
"kind": "field",
|
|
10290
|
-
"name": "
|
|
10136
|
+
"name": "innerRole",
|
|
10291
10137
|
"type": {
|
|
10292
|
-
"text": "
|
|
10138
|
+
"text": "string | null"
|
|
10293
10139
|
},
|
|
10294
|
-
"
|
|
10295
|
-
|
|
10296
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
10297
|
-
}
|
|
10140
|
+
"privacy": "protected",
|
|
10141
|
+
"default": "null"
|
|
10298
10142
|
},
|
|
10299
10143
|
{
|
|
10300
10144
|
"kind": "field",
|
|
10301
|
-
"name": "
|
|
10302
|
-
"privacy": "private",
|
|
10145
|
+
"name": "pathname",
|
|
10303
10146
|
"type": {
|
|
10304
|
-
"text": "
|
|
10305
|
-
},
|
|
10306
|
-
"default": "false",
|
|
10307
|
-
"inheritedFrom": {
|
|
10308
|
-
"name": "UmSelectionControl",
|
|
10309
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
10147
|
+
"text": "string"
|
|
10310
10148
|
}
|
|
10311
10149
|
},
|
|
10312
10150
|
{
|
|
10313
|
-
"kind": "
|
|
10314
|
-
"name": "
|
|
10315
|
-
"
|
|
10316
|
-
|
|
10317
|
-
|
|
10151
|
+
"kind": "method",
|
|
10152
|
+
"name": "renderButton",
|
|
10153
|
+
"privacy": "private"
|
|
10154
|
+
},
|
|
10155
|
+
{
|
|
10156
|
+
"kind": "method",
|
|
10157
|
+
"name": "renderLink",
|
|
10158
|
+
"privacy": "private"
|
|
10159
|
+
},
|
|
10160
|
+
{
|
|
10161
|
+
"kind": "method",
|
|
10162
|
+
"name": "renderContent",
|
|
10318
10163
|
"privacy": "protected",
|
|
10319
|
-
"
|
|
10320
|
-
|
|
10321
|
-
|
|
10322
|
-
|
|
10164
|
+
"return": {
|
|
10165
|
+
"type": {
|
|
10166
|
+
"text": "HTMLTemplateResult"
|
|
10167
|
+
}
|
|
10323
10168
|
}
|
|
10324
10169
|
},
|
|
10325
10170
|
{
|
|
10326
|
-
"kind": "
|
|
10327
|
-
"name": "
|
|
10328
|
-
|
|
10329
|
-
|
|
10330
|
-
|
|
10331
|
-
"
|
|
10332
|
-
|
|
10333
|
-
|
|
10334
|
-
"
|
|
10335
|
-
|
|
10336
|
-
|
|
10171
|
+
"kind": "method",
|
|
10172
|
+
"name": "focus"
|
|
10173
|
+
},
|
|
10174
|
+
{
|
|
10175
|
+
"kind": "method",
|
|
10176
|
+
"name": "blur"
|
|
10177
|
+
},
|
|
10178
|
+
{
|
|
10179
|
+
"kind": "method",
|
|
10180
|
+
"name": "getAriaLabel",
|
|
10181
|
+
"privacy": "protected",
|
|
10182
|
+
"return": {
|
|
10183
|
+
"type": {
|
|
10184
|
+
"text": "string | null"
|
|
10185
|
+
}
|
|
10337
10186
|
}
|
|
10338
10187
|
},
|
|
10339
10188
|
{
|
|
10340
|
-
"kind": "
|
|
10341
|
-
"name": "
|
|
10342
|
-
"
|
|
10343
|
-
"
|
|
10344
|
-
"
|
|
10345
|
-
|
|
10189
|
+
"kind": "method",
|
|
10190
|
+
"name": "innerFocusHandler",
|
|
10191
|
+
"privacy": "private",
|
|
10192
|
+
"return": {
|
|
10193
|
+
"type": {
|
|
10194
|
+
"text": "void"
|
|
10195
|
+
}
|
|
10346
10196
|
}
|
|
10347
10197
|
},
|
|
10348
10198
|
{
|
|
10349
10199
|
"kind": "method",
|
|
10350
|
-
"name": "#
|
|
10200
|
+
"name": "#innerClickHandler",
|
|
10201
|
+
"return": {
|
|
10202
|
+
"type": {
|
|
10203
|
+
"text": "void"
|
|
10204
|
+
}
|
|
10205
|
+
},
|
|
10351
10206
|
"parameters": [
|
|
10352
10207
|
{
|
|
10353
|
-
"name": "
|
|
10208
|
+
"name": "event",
|
|
10354
10209
|
"type": {
|
|
10355
|
-
"text": "
|
|
10210
|
+
"text": "MouseEvent"
|
|
10356
10211
|
}
|
|
10357
10212
|
}
|
|
10358
|
-
]
|
|
10359
|
-
|
|
10360
|
-
|
|
10361
|
-
|
|
10362
|
-
|
|
10213
|
+
]
|
|
10214
|
+
},
|
|
10215
|
+
{
|
|
10216
|
+
"kind": "method",
|
|
10217
|
+
"name": "handleClick",
|
|
10218
|
+
"privacy": "protected",
|
|
10219
|
+
"return": {
|
|
10220
|
+
"type": {
|
|
10221
|
+
"text": "void"
|
|
10222
|
+
}
|
|
10223
|
+
},
|
|
10224
|
+
"parameters": [
|
|
10225
|
+
{
|
|
10226
|
+
"name": "_",
|
|
10227
|
+
"type": {
|
|
10228
|
+
"text": "UIEvent"
|
|
10229
|
+
}
|
|
10230
|
+
}
|
|
10231
|
+
]
|
|
10363
10232
|
}
|
|
10364
10233
|
],
|
|
10365
10234
|
"attributes": [
|
|
10366
10235
|
{
|
|
10367
|
-
"name": "
|
|
10236
|
+
"name": "disabled",
|
|
10368
10237
|
"type": {
|
|
10369
|
-
"text": "
|
|
10238
|
+
"text": "boolean"
|
|
10370
10239
|
},
|
|
10371
|
-
"default": "
|
|
10372
|
-
"
|
|
10373
|
-
"
|
|
10374
|
-
"name": "UmSelectionControl",
|
|
10375
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
10376
|
-
}
|
|
10240
|
+
"default": "false",
|
|
10241
|
+
"description": "Whether the button is disabled or not.",
|
|
10242
|
+
"fieldName": "disabled"
|
|
10377
10243
|
},
|
|
10378
10244
|
{
|
|
10379
|
-
"name": "
|
|
10245
|
+
"name": "href",
|
|
10380
10246
|
"type": {
|
|
10381
|
-
"text": "
|
|
10247
|
+
"text": "string | undefined"
|
|
10382
10248
|
},
|
|
10383
|
-
"
|
|
10384
|
-
"fieldName": "
|
|
10385
|
-
"inheritedFrom": {
|
|
10386
|
-
"name": "UmSelectionControl",
|
|
10387
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
10388
|
-
}
|
|
10249
|
+
"description": "The URL that the link button points to.",
|
|
10250
|
+
"fieldName": "href"
|
|
10389
10251
|
},
|
|
10390
10252
|
{
|
|
10391
|
-
"name": "
|
|
10253
|
+
"name": "target",
|
|
10392
10254
|
"type": {
|
|
10393
|
-
"text": "string"
|
|
10255
|
+
"text": "string | undefined"
|
|
10394
10256
|
},
|
|
10395
|
-
"
|
|
10396
|
-
"
|
|
10397
|
-
"fieldName": "value",
|
|
10398
|
-
"inheritedFrom": {
|
|
10399
|
-
"name": "UmSelectionControl",
|
|
10400
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
10401
|
-
}
|
|
10257
|
+
"description": "Where to display the linked `href` URL for a link button. Common options\ninclude `_blank` to open in a new tab.",
|
|
10258
|
+
"fieldName": "target"
|
|
10402
10259
|
},
|
|
10403
10260
|
{
|
|
10404
|
-
"name": "
|
|
10405
|
-
"
|
|
10406
|
-
|
|
10407
|
-
|
|
10408
|
-
|
|
10409
|
-
}
|
|
10261
|
+
"name": "name",
|
|
10262
|
+
"type": {
|
|
10263
|
+
"text": "string | undefined"
|
|
10264
|
+
},
|
|
10265
|
+
"fieldName": "name"
|
|
10410
10266
|
}
|
|
10411
10267
|
],
|
|
10412
|
-
"
|
|
10268
|
+
"superclass": {
|
|
10269
|
+
"name": "LitElement",
|
|
10270
|
+
"package": "lit"
|
|
10271
|
+
},
|
|
10272
|
+
"customElement": true
|
|
10273
|
+
}
|
|
10274
|
+
],
|
|
10275
|
+
"exports": [
|
|
10276
|
+
{
|
|
10277
|
+
"kind": "js",
|
|
10278
|
+
"name": "UmButtonWrapper",
|
|
10279
|
+
"declaration": {
|
|
10280
|
+
"name": "UmButtonWrapper",
|
|
10281
|
+
"module": "src/shared/button-wrapper.ts"
|
|
10282
|
+
}
|
|
10283
|
+
}
|
|
10284
|
+
]
|
|
10285
|
+
},
|
|
10286
|
+
{
|
|
10287
|
+
"kind": "javascript-module",
|
|
10288
|
+
"path": "src/shared/extract-template-html.ts",
|
|
10289
|
+
"declarations": [
|
|
10290
|
+
{
|
|
10291
|
+
"kind": "function",
|
|
10292
|
+
"name": "extractTemplateHtml",
|
|
10293
|
+
"parameters": [
|
|
10413
10294
|
{
|
|
10414
|
-
"name": "
|
|
10295
|
+
"name": "template",
|
|
10415
10296
|
"type": {
|
|
10416
|
-
"text": "
|
|
10417
|
-
}
|
|
10418
|
-
|
|
10419
|
-
|
|
10420
|
-
|
|
10297
|
+
"text": "HTMLTemplateElement"
|
|
10298
|
+
}
|
|
10299
|
+
}
|
|
10300
|
+
]
|
|
10301
|
+
}
|
|
10302
|
+
],
|
|
10303
|
+
"exports": [
|
|
10304
|
+
{
|
|
10305
|
+
"kind": "js",
|
|
10306
|
+
"name": "extractTemplateHtml",
|
|
10307
|
+
"declaration": {
|
|
10308
|
+
"name": "extractTemplateHtml",
|
|
10309
|
+
"module": "src/shared/extract-template-html.ts"
|
|
10310
|
+
}
|
|
10311
|
+
}
|
|
10312
|
+
]
|
|
10313
|
+
},
|
|
10314
|
+
{
|
|
10315
|
+
"kind": "javascript-module",
|
|
10316
|
+
"path": "src/shared/mixin-attribute-properties.ts",
|
|
10317
|
+
"declarations": [
|
|
10318
|
+
{
|
|
10319
|
+
"kind": "mixin",
|
|
10320
|
+
"description": "",
|
|
10321
|
+
"name": "mixinAttributeProperties",
|
|
10322
|
+
"parameters": [
|
|
10323
|
+
{
|
|
10324
|
+
"name": "base",
|
|
10325
|
+
"type": {
|
|
10326
|
+
"text": "T"
|
|
10421
10327
|
}
|
|
10422
10328
|
},
|
|
10423
10329
|
{
|
|
10424
|
-
"name": "
|
|
10330
|
+
"name": "properties",
|
|
10425
10331
|
"type": {
|
|
10426
|
-
"text": "
|
|
10427
|
-
},
|
|
10428
|
-
"inheritedFrom": {
|
|
10429
|
-
"name": "UmSelectionControl",
|
|
10430
|
-
"module": "src/shared/selection-control/selection-control.ts"
|
|
10332
|
+
"text": "string[]"
|
|
10431
10333
|
}
|
|
10432
10334
|
}
|
|
10433
10335
|
]
|
|
@@ -10436,52 +10338,134 @@
|
|
|
10436
10338
|
"exports": [
|
|
10437
10339
|
{
|
|
10438
10340
|
"kind": "js",
|
|
10439
|
-
"name": "
|
|
10341
|
+
"name": "mixinAttributeProperties",
|
|
10440
10342
|
"declaration": {
|
|
10441
|
-
"name": "
|
|
10442
|
-
"module": "src/
|
|
10343
|
+
"name": "mixinAttributeProperties",
|
|
10344
|
+
"module": "src/shared/mixin-attribute-properties.ts"
|
|
10443
10345
|
}
|
|
10444
|
-
}
|
|
10346
|
+
}
|
|
10347
|
+
]
|
|
10348
|
+
},
|
|
10349
|
+
{
|
|
10350
|
+
"kind": "javascript-module",
|
|
10351
|
+
"path": "src/shared/mixin.ts",
|
|
10352
|
+
"declarations": [],
|
|
10353
|
+
"exports": []
|
|
10354
|
+
},
|
|
10355
|
+
{
|
|
10356
|
+
"kind": "javascript-module",
|
|
10357
|
+
"path": "src/shared/normalize-text.ts",
|
|
10358
|
+
"declarations": [
|
|
10445
10359
|
{
|
|
10446
|
-
"kind": "
|
|
10447
|
-
"name": "
|
|
10360
|
+
"kind": "function",
|
|
10361
|
+
"name": "normalizeText",
|
|
10362
|
+
"return": {
|
|
10363
|
+
"type": {
|
|
10364
|
+
"text": "string"
|
|
10365
|
+
}
|
|
10366
|
+
},
|
|
10367
|
+
"parameters": [
|
|
10368
|
+
{
|
|
10369
|
+
"name": "text",
|
|
10370
|
+
"type": {
|
|
10371
|
+
"text": "string"
|
|
10372
|
+
}
|
|
10373
|
+
}
|
|
10374
|
+
]
|
|
10375
|
+
}
|
|
10376
|
+
],
|
|
10377
|
+
"exports": [
|
|
10378
|
+
{
|
|
10379
|
+
"kind": "js",
|
|
10380
|
+
"name": "normalizeText",
|
|
10448
10381
|
"declaration": {
|
|
10449
|
-
"name": "
|
|
10450
|
-
"module": "src/
|
|
10382
|
+
"name": "normalizeText",
|
|
10383
|
+
"module": "src/shared/normalize-text.ts"
|
|
10451
10384
|
}
|
|
10452
10385
|
}
|
|
10453
10386
|
]
|
|
10454
10387
|
},
|
|
10455
10388
|
{
|
|
10456
10389
|
"kind": "javascript-module",
|
|
10457
|
-
"path": "src/
|
|
10390
|
+
"path": "src/shared/redispatch-event.ts",
|
|
10458
10391
|
"declarations": [
|
|
10459
10392
|
{
|
|
10460
|
-
"kind": "
|
|
10461
|
-
"name": "
|
|
10462
|
-
"
|
|
10393
|
+
"kind": "function",
|
|
10394
|
+
"name": "redispatchEvent",
|
|
10395
|
+
"parameters": [
|
|
10396
|
+
{
|
|
10397
|
+
"name": "element",
|
|
10398
|
+
"type": {
|
|
10399
|
+
"text": "Element"
|
|
10400
|
+
}
|
|
10401
|
+
},
|
|
10402
|
+
{
|
|
10403
|
+
"name": "event",
|
|
10404
|
+
"type": {
|
|
10405
|
+
"text": "Event"
|
|
10406
|
+
}
|
|
10407
|
+
}
|
|
10408
|
+
]
|
|
10463
10409
|
}
|
|
10464
10410
|
],
|
|
10465
10411
|
"exports": [
|
|
10466
10412
|
{
|
|
10467
10413
|
"kind": "js",
|
|
10468
|
-
"name": "
|
|
10414
|
+
"name": "redispatchEvent",
|
|
10469
10415
|
"declaration": {
|
|
10470
|
-
"name": "
|
|
10471
|
-
"module": "src/
|
|
10416
|
+
"name": "redispatchEvent",
|
|
10417
|
+
"module": "src/shared/redispatch-event.ts"
|
|
10472
10418
|
}
|
|
10473
10419
|
}
|
|
10474
10420
|
]
|
|
10475
10421
|
},
|
|
10476
10422
|
{
|
|
10477
10423
|
"kind": "javascript-module",
|
|
10478
|
-
"path": "src/switch/switch.ts",
|
|
10424
|
+
"path": "src/switch/switch-list-item.ts",
|
|
10479
10425
|
"declarations": [
|
|
10480
10426
|
{
|
|
10481
10427
|
"kind": "class",
|
|
10482
10428
|
"description": "",
|
|
10483
|
-
"name": "
|
|
10429
|
+
"name": "UmSwitchListItem",
|
|
10430
|
+
"mixins": [
|
|
10431
|
+
{
|
|
10432
|
+
"name": "mixinSelectionControlListItem",
|
|
10433
|
+
"module": "/src/shared/selection-control/selection-control-list-item.js"
|
|
10434
|
+
}
|
|
10435
|
+
],
|
|
10436
|
+
"superclass": {
|
|
10437
|
+
"name": "UmSwitch",
|
|
10438
|
+
"module": "/src/switch/switch.js"
|
|
10439
|
+
},
|
|
10440
|
+
"tagName": "u-switch-list-item",
|
|
10441
|
+
"customElement": true,
|
|
10484
10442
|
"members": [
|
|
10443
|
+
{
|
|
10444
|
+
"kind": "field",
|
|
10445
|
+
"name": "styles",
|
|
10446
|
+
"type": {
|
|
10447
|
+
"text": "array"
|
|
10448
|
+
},
|
|
10449
|
+
"static": true,
|
|
10450
|
+
"default": "[\n (base as unknown as typeof LitElement).styles ?? [],\n css`:host {\n --u-list-item-block-padding: 0;\n display: block;\n }`\n ]",
|
|
10451
|
+
"inheritedFrom": {
|
|
10452
|
+
"name": "mixinSelectionControlListItem",
|
|
10453
|
+
"module": "src/shared/selection-control/selection-control-list-item.ts"
|
|
10454
|
+
}
|
|
10455
|
+
},
|
|
10456
|
+
{
|
|
10457
|
+
"kind": "method",
|
|
10458
|
+
"name": "render",
|
|
10459
|
+
"return": {
|
|
10460
|
+
"type": {
|
|
10461
|
+
"text": "HTMLTemplateResult"
|
|
10462
|
+
}
|
|
10463
|
+
},
|
|
10464
|
+
"inheritedFrom": {
|
|
10465
|
+
"name": "mixinSelectionControlListItem",
|
|
10466
|
+
"module": "src/shared/selection-control/selection-control-list-item.ts"
|
|
10467
|
+
}
|
|
10468
|
+
},
|
|
10485
10469
|
{
|
|
10486
10470
|
"kind": "field",
|
|
10487
10471
|
"name": "renderRipple",
|
|
@@ -10649,12 +10633,6 @@
|
|
|
10649
10633
|
}
|
|
10650
10634
|
}
|
|
10651
10635
|
],
|
|
10652
|
-
"superclass": {
|
|
10653
|
-
"name": "UmSelectionControl",
|
|
10654
|
-
"module": "/src/shared/selection-control/selection-control.js"
|
|
10655
|
-
},
|
|
10656
|
-
"tagName": "u-switch",
|
|
10657
|
-
"customElement": true,
|
|
10658
10636
|
"attributes": [
|
|
10659
10637
|
{
|
|
10660
10638
|
"name": "name",
|
|
@@ -10729,30 +10707,30 @@
|
|
|
10729
10707
|
"exports": [
|
|
10730
10708
|
{
|
|
10731
10709
|
"kind": "js",
|
|
10732
|
-
"name": "
|
|
10710
|
+
"name": "UmSwitchListItem",
|
|
10733
10711
|
"declaration": {
|
|
10734
|
-
"name": "
|
|
10735
|
-
"module": "src/switch/switch.ts"
|
|
10712
|
+
"name": "UmSwitchListItem",
|
|
10713
|
+
"module": "src/switch/switch-list-item.ts"
|
|
10736
10714
|
}
|
|
10737
10715
|
},
|
|
10738
10716
|
{
|
|
10739
10717
|
"kind": "custom-element-definition",
|
|
10740
|
-
"name": "u-switch",
|
|
10718
|
+
"name": "u-switch-list-item",
|
|
10741
10719
|
"declaration": {
|
|
10742
|
-
"name": "
|
|
10743
|
-
"module": "src/switch/switch.ts"
|
|
10720
|
+
"name": "UmSwitchListItem",
|
|
10721
|
+
"module": "src/switch/switch-list-item.ts"
|
|
10744
10722
|
}
|
|
10745
10723
|
}
|
|
10746
10724
|
]
|
|
10747
10725
|
},
|
|
10748
10726
|
{
|
|
10749
10727
|
"kind": "javascript-module",
|
|
10750
|
-
"path": "src/
|
|
10728
|
+
"path": "src/switch/switch.styles.ts",
|
|
10751
10729
|
"declarations": [
|
|
10752
10730
|
{
|
|
10753
10731
|
"kind": "variable",
|
|
10754
10732
|
"name": "styles",
|
|
10755
|
-
"default": "css `\n :host {\n --
|
|
10733
|
+
"default": "css `\n :host {\n --_state-layer-padding: var(--u-switch-state-layer-padding, 4px);\n --_input-size: calc(var(--_width) - var(--_state-layer-padding) * 2);\n --_indicator-color: var(--u-switch-indicator-unselected-color, var(--u-color-on-surface-variant, rgb(73, 69, 79)));\n display: inline-block;\n vertical-align: middle;\n }\n\n .container {\n cursor: pointer;\n position: relative;\n width: var(--_width);\n height: var(--_height);\n padding: var(--_state-layer-padding);\n border-radius: var(--u-shape-corner-full, 9999px);\n }\n\n :host([hide-state-layer]) .container {\n width: var(--_indicator-size);\n height: var(--_indicator-size);\n padding: 0;\n }\n :host([hide-state-layer]) u-ripple {\n display: none;\n }\n\n input {\n cursor: pointer;\n width: 100%;\n height: 100%;\n padding: 0;\n margin: 0;\n border-radius: inherit;\n appearance: none;\n }\n\n u-ripple {\n padding: var(--_state-layer-padding);\n }\n\n .indicator-container {\n position: absolute;\n display: flex;\n align-items: center;\n justify-content: center;\n inset: 0;\n pointer-events: none;\n }\n\n input:checked ~ .indicator-container {\n --_indicator-color: var(--u-switch-indicator-unselected-color, var(--u-color-primary, rgb(103, 80, 164)));\n }\n\n :host([disabled]) {\n opacity: var(--u-switch-disabled-state-opacity, 0.38);\n }\n :host([disabled]) input,\n :host([disabled]) .container {\n cursor: default;\n }\n :host([disabled]) .indicator-container {\n --_indicator-color: var(--u-switch-indicator-disabled-color, var(--u-color-on-surface, rgb(29, 27, 32)));\n }\n\n :host {\n --_width: 3.25rem;\n --_height: 2rem;\n --_state-layer-padding: 0;\n --_selected-track-background: var(--u-switch-track-background-color, var(--u-color-primary, rgb(103, 80, 164)));\n --_state-layer-size: var(--u-switch-state-layer-size, 2.5rem);\n --_unselected-color: var(--u-switch-track-outline-color, var(--u-color-outline, rgb(121, 116, 126)));\n --_unselected-handle-size: var(--u-swich-unselected-handle-size, 1rem);\n --_selected-handle-size: var(--u-swich-unselected-handle-size, 1.5rem);\n --_active-handle-size: var(--u-swich-unselected-handle-size, 1.75rem);\n }\n\n .indicator-container {\n display: flex;\n justify-content: flex-end;\n align-items: center;\n width: var(--_height);\n transition: width 200ms;\n }\n\n .state-layer,\n .indicator {\n display: flex;\n justify-content: center;\n align-items: center;\n }\n\n .indicator {\n width: var(--_height);\n height: var(--_height);\n }\n\n .state-layer {\n flex-shrink: 0;\n width: var(--_state-layer-size);\n height: var(--_state-layer-size);\n border-radius: var(--u-shape-corner-full, 9999px);\n }\n\n .handle {\n width: var(--_unselected-handle-size);\n height: var(--_unselected-handle-size);\n background-color: var(--u-switch-unselected-handle-color, var(--_unselected-color));\n border-radius: var(--u-switch-handle-shape-corner, var(--u-shape-corner-full, 9999px));\n transition: background 200ms, width 200ms, height 200ms;\n }\n\n input {\n border: var(--u-switch-track-width, 0.125rem) solid var(--u-switch-unselected-track-outline-color, var(--_unselected-color));\n background-color: var(--u-switch-unselected-track-background-color, var(--u-color-surface-container-highest, rgb(230, 224, 233)));\n transition: background 200ms, border-color 200ms;\n }\n input:checked {\n background-color: var(--_selected-track-background);\n border-color: var(--_selected-track-background);\n }\n input:checked ~ .indicator-container {\n width: 100%;\n }\n input:checked ~ .indicator-container .handle {\n width: var(--_selected-handle-size);\n height: var(--_selected-handle-size);\n background-color: var(--u-switch-selected-handle-color, var(--u-color-on-primary, rgb(255, 255, 255)));\n }\n\n @media (hover: hover) {\n :host(:not([disabled]):hover) .state-layer {\n background-color: rgba(var(--u-color-on-surface-rgb, ), var(--u-switch-state-layer-hover-opacity, var(--u-state-hover-opacity, 0.08)));\n }\n }\n :host(:not([disabled]):active) .indicator-container .handle {\n width: var(--_active-handle-size);\n height: var(--_active-handle-size);\n }\n`"
|
|
10756
10734
|
}
|
|
10757
10735
|
],
|
|
10758
10736
|
"exports": [
|
|
@@ -10761,257 +10739,279 @@
|
|
|
10761
10739
|
"name": "styles",
|
|
10762
10740
|
"declaration": {
|
|
10763
10741
|
"name": "styles",
|
|
10764
|
-
"module": "src/
|
|
10742
|
+
"module": "src/switch/switch.styles.ts"
|
|
10765
10743
|
}
|
|
10766
10744
|
}
|
|
10767
10745
|
]
|
|
10768
10746
|
},
|
|
10769
10747
|
{
|
|
10770
10748
|
"kind": "javascript-module",
|
|
10771
|
-
"path": "src/
|
|
10749
|
+
"path": "src/switch/switch.ts",
|
|
10772
10750
|
"declarations": [
|
|
10773
10751
|
{
|
|
10774
10752
|
"kind": "class",
|
|
10775
10753
|
"description": "",
|
|
10776
|
-
"name": "
|
|
10754
|
+
"name": "UmSwitch",
|
|
10777
10755
|
"members": [
|
|
10778
10756
|
{
|
|
10779
10757
|
"kind": "field",
|
|
10780
|
-
"name": "
|
|
10758
|
+
"name": "renderRipple",
|
|
10781
10759
|
"type": {
|
|
10782
|
-
"text": "
|
|
10760
|
+
"text": "boolean"
|
|
10783
10761
|
},
|
|
10784
|
-
"
|
|
10785
|
-
"
|
|
10786
|
-
"
|
|
10762
|
+
"privacy": "protected",
|
|
10763
|
+
"default": "false",
|
|
10764
|
+
"inheritedFrom": {
|
|
10765
|
+
"name": "UmSelectionControl",
|
|
10766
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10767
|
+
}
|
|
10787
10768
|
},
|
|
10788
10769
|
{
|
|
10789
|
-
"kind": "
|
|
10790
|
-
"name": "
|
|
10791
|
-
"
|
|
10792
|
-
|
|
10770
|
+
"kind": "method",
|
|
10771
|
+
"name": "renderIndicator",
|
|
10772
|
+
"privacy": "protected",
|
|
10773
|
+
"return": {
|
|
10774
|
+
"type": {
|
|
10775
|
+
"text": "HTMLTemplateResult"
|
|
10776
|
+
}
|
|
10793
10777
|
},
|
|
10794
|
-
"
|
|
10795
|
-
|
|
10796
|
-
|
|
10778
|
+
"inheritedFrom": {
|
|
10779
|
+
"name": "UmSelectionControl",
|
|
10780
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10781
|
+
}
|
|
10797
10782
|
},
|
|
10798
10783
|
{
|
|
10799
10784
|
"kind": "field",
|
|
10800
|
-
"name": "
|
|
10785
|
+
"name": "formAssociated",
|
|
10801
10786
|
"type": {
|
|
10802
10787
|
"text": "boolean"
|
|
10803
10788
|
},
|
|
10804
|
-
"
|
|
10805
|
-
"
|
|
10806
|
-
"
|
|
10789
|
+
"static": true,
|
|
10790
|
+
"default": "true",
|
|
10791
|
+
"inheritedFrom": {
|
|
10792
|
+
"name": "UmSelectionControl",
|
|
10793
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10794
|
+
}
|
|
10807
10795
|
},
|
|
10808
10796
|
{
|
|
10809
10797
|
"kind": "field",
|
|
10810
|
-
"name": "
|
|
10798
|
+
"name": "elementInternals",
|
|
10811
10799
|
"type": {
|
|
10812
|
-
"text": "
|
|
10800
|
+
"text": "ElementInternals"
|
|
10813
10801
|
},
|
|
10814
|
-
"
|
|
10815
|
-
"
|
|
10816
|
-
|
|
10802
|
+
"privacy": "protected",
|
|
10803
|
+
"inheritedFrom": {
|
|
10804
|
+
"name": "UmSelectionControl",
|
|
10805
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10806
|
+
}
|
|
10817
10807
|
},
|
|
10818
10808
|
{
|
|
10819
10809
|
"kind": "field",
|
|
10820
|
-
"name": "
|
|
10810
|
+
"name": "name",
|
|
10821
10811
|
"type": {
|
|
10822
|
-
"text": "
|
|
10812
|
+
"text": "string | undefined"
|
|
10823
10813
|
},
|
|
10824
|
-
"
|
|
10814
|
+
"default": "''",
|
|
10815
|
+
"attribute": "name",
|
|
10816
|
+
"inheritedFrom": {
|
|
10817
|
+
"name": "UmSelectionControl",
|
|
10818
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10819
|
+
}
|
|
10825
10820
|
},
|
|
10826
10821
|
{
|
|
10827
10822
|
"kind": "field",
|
|
10828
|
-
"name": "
|
|
10823
|
+
"name": "disabled",
|
|
10829
10824
|
"type": {
|
|
10830
|
-
"text": "
|
|
10825
|
+
"text": "boolean"
|
|
10831
10826
|
},
|
|
10832
|
-
"
|
|
10833
|
-
|
|
10834
|
-
|
|
10835
|
-
"
|
|
10836
|
-
|
|
10837
|
-
|
|
10838
|
-
},
|
|
10839
|
-
{
|
|
10840
|
-
"kind": "method",
|
|
10841
|
-
"name": "renderCloseButton",
|
|
10842
|
-
"privacy": "private"
|
|
10843
|
-
},
|
|
10844
|
-
{
|
|
10845
|
-
"kind": "method",
|
|
10846
|
-
"name": "dismiss",
|
|
10847
|
-
"return": {
|
|
10848
|
-
"type": {
|
|
10849
|
-
"text": "void"
|
|
10850
|
-
}
|
|
10827
|
+
"default": "false",
|
|
10828
|
+
"attribute": "disabled",
|
|
10829
|
+
"reflects": true,
|
|
10830
|
+
"inheritedFrom": {
|
|
10831
|
+
"name": "UmSelectionControl",
|
|
10832
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10851
10833
|
}
|
|
10852
10834
|
},
|
|
10853
10835
|
{
|
|
10854
10836
|
"kind": "field",
|
|
10855
|
-
"name": "
|
|
10837
|
+
"name": "input",
|
|
10856
10838
|
"type": {
|
|
10857
|
-
"text": "
|
|
10839
|
+
"text": "HTMLInputElement"
|
|
10858
10840
|
},
|
|
10859
|
-
"
|
|
10860
|
-
|
|
10861
|
-
|
|
10841
|
+
"inheritedFrom": {
|
|
10842
|
+
"name": "UmSelectionControl",
|
|
10843
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10844
|
+
}
|
|
10862
10845
|
},
|
|
10863
10846
|
{
|
|
10864
10847
|
"kind": "field",
|
|
10865
|
-
"name": "
|
|
10848
|
+
"name": "form",
|
|
10866
10849
|
"type": {
|
|
10867
|
-
"text": "
|
|
10850
|
+
"text": "HTMLFormElement | null"
|
|
10868
10851
|
},
|
|
10869
|
-
"
|
|
10870
|
-
|
|
10852
|
+
"inheritedFrom": {
|
|
10853
|
+
"name": "UmSelectionControl",
|
|
10854
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10855
|
+
}
|
|
10871
10856
|
},
|
|
10872
10857
|
{
|
|
10873
|
-
"kind": "
|
|
10874
|
-
"name": "
|
|
10875
|
-
"
|
|
10876
|
-
"
|
|
10877
|
-
"
|
|
10878
|
-
"text": "UmSnackbar"
|
|
10879
|
-
}
|
|
10858
|
+
"kind": "field",
|
|
10859
|
+
"name": "#checked",
|
|
10860
|
+
"privacy": "private",
|
|
10861
|
+
"type": {
|
|
10862
|
+
"text": "boolean"
|
|
10880
10863
|
},
|
|
10881
|
-
"
|
|
10882
|
-
|
|
10883
|
-
|
|
10884
|
-
|
|
10885
|
-
|
|
10886
|
-
}
|
|
10887
|
-
}
|
|
10888
|
-
]
|
|
10864
|
+
"default": "false",
|
|
10865
|
+
"inheritedFrom": {
|
|
10866
|
+
"name": "UmSelectionControl",
|
|
10867
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10868
|
+
}
|
|
10889
10869
|
},
|
|
10890
10870
|
{
|
|
10891
|
-
"kind": "
|
|
10892
|
-
"name": "
|
|
10893
|
-
"
|
|
10894
|
-
|
|
10895
|
-
"type": {
|
|
10896
|
-
"text": "UmSnackbar"
|
|
10897
|
-
}
|
|
10871
|
+
"kind": "field",
|
|
10872
|
+
"name": "inputType",
|
|
10873
|
+
"type": {
|
|
10874
|
+
"text": "'checkbox' | 'radio'"
|
|
10898
10875
|
},
|
|
10899
|
-
"
|
|
10900
|
-
|
|
10901
|
-
|
|
10902
|
-
|
|
10903
|
-
|
|
10904
|
-
|
|
10905
|
-
}
|
|
10906
|
-
]
|
|
10876
|
+
"privacy": "protected",
|
|
10877
|
+
"default": "'checkbox'",
|
|
10878
|
+
"inheritedFrom": {
|
|
10879
|
+
"name": "UmSelectionControl",
|
|
10880
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10881
|
+
}
|
|
10907
10882
|
},
|
|
10908
10883
|
{
|
|
10909
|
-
"kind": "
|
|
10910
|
-
"name": "
|
|
10911
|
-
"
|
|
10912
|
-
|
|
10913
|
-
"type": {
|
|
10914
|
-
"text": "UmSnackbar"
|
|
10915
|
-
}
|
|
10884
|
+
"kind": "field",
|
|
10885
|
+
"name": "value",
|
|
10886
|
+
"type": {
|
|
10887
|
+
"text": "string"
|
|
10916
10888
|
},
|
|
10917
|
-
"
|
|
10918
|
-
|
|
10919
|
-
|
|
10920
|
-
|
|
10921
|
-
|
|
10922
|
-
|
|
10923
|
-
|
|
10924
|
-
]
|
|
10925
|
-
},
|
|
10926
|
-
{
|
|
10927
|
-
"kind": "method",
|
|
10928
|
-
"name": "consumeQueue",
|
|
10929
|
-
"privacy": "private",
|
|
10930
|
-
"static": true
|
|
10889
|
+
"default": "'on'",
|
|
10890
|
+
"description": "The element value to use in form submission when checked.",
|
|
10891
|
+
"attribute": "value",
|
|
10892
|
+
"inheritedFrom": {
|
|
10893
|
+
"name": "UmSelectionControl",
|
|
10894
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10895
|
+
}
|
|
10931
10896
|
},
|
|
10932
10897
|
{
|
|
10933
|
-
"kind": "
|
|
10934
|
-
"name": "
|
|
10935
|
-
"
|
|
10936
|
-
"
|
|
10898
|
+
"kind": "field",
|
|
10899
|
+
"name": "checked",
|
|
10900
|
+
"attribute": "checked",
|
|
10901
|
+
"inheritedFrom": {
|
|
10902
|
+
"name": "UmSelectionControl",
|
|
10903
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10904
|
+
}
|
|
10937
10905
|
},
|
|
10938
10906
|
{
|
|
10939
10907
|
"kind": "method",
|
|
10940
|
-
"name": "
|
|
10941
|
-
"privacy": "private",
|
|
10942
|
-
"static": true,
|
|
10943
|
-
"return": {
|
|
10944
|
-
"type": {
|
|
10945
|
-
"text": "UmSnackbar"
|
|
10946
|
-
}
|
|
10947
|
-
},
|
|
10908
|
+
"name": "#handleClick",
|
|
10948
10909
|
"parameters": [
|
|
10949
10910
|
{
|
|
10950
|
-
"name": "
|
|
10911
|
+
"name": "e",
|
|
10951
10912
|
"type": {
|
|
10952
|
-
"text": "
|
|
10913
|
+
"text": "Event"
|
|
10953
10914
|
}
|
|
10954
10915
|
}
|
|
10955
|
-
]
|
|
10916
|
+
],
|
|
10917
|
+
"inheritedFrom": {
|
|
10918
|
+
"name": "UmSelectionControl",
|
|
10919
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10920
|
+
}
|
|
10956
10921
|
}
|
|
10957
10922
|
],
|
|
10923
|
+
"superclass": {
|
|
10924
|
+
"name": "UmSelectionControl",
|
|
10925
|
+
"module": "/src/shared/selection-control/selection-control.js"
|
|
10926
|
+
},
|
|
10927
|
+
"tagName": "u-switch",
|
|
10928
|
+
"customElement": true,
|
|
10958
10929
|
"attributes": [
|
|
10959
10930
|
{
|
|
10960
|
-
"name": "
|
|
10931
|
+
"name": "name",
|
|
10932
|
+
"type": {
|
|
10933
|
+
"text": "string | undefined"
|
|
10934
|
+
},
|
|
10935
|
+
"default": "''",
|
|
10936
|
+
"fieldName": "name",
|
|
10937
|
+
"inheritedFrom": {
|
|
10938
|
+
"name": "UmSelectionControl",
|
|
10939
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10940
|
+
}
|
|
10941
|
+
},
|
|
10942
|
+
{
|
|
10943
|
+
"name": "disabled",
|
|
10961
10944
|
"type": {
|
|
10962
|
-
"text": "
|
|
10945
|
+
"text": "boolean"
|
|
10963
10946
|
},
|
|
10964
|
-
"default": "
|
|
10965
|
-
"fieldName": "
|
|
10947
|
+
"default": "false",
|
|
10948
|
+
"fieldName": "disabled",
|
|
10949
|
+
"inheritedFrom": {
|
|
10950
|
+
"name": "UmSelectionControl",
|
|
10951
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10952
|
+
}
|
|
10966
10953
|
},
|
|
10967
10954
|
{
|
|
10968
|
-
"name": "
|
|
10955
|
+
"name": "value",
|
|
10969
10956
|
"type": {
|
|
10970
10957
|
"text": "string"
|
|
10971
10958
|
},
|
|
10972
|
-
"default": "''",
|
|
10973
|
-
"
|
|
10959
|
+
"default": "'on'",
|
|
10960
|
+
"description": "The element value to use in form submission when checked.",
|
|
10961
|
+
"fieldName": "value",
|
|
10962
|
+
"inheritedFrom": {
|
|
10963
|
+
"name": "UmSelectionControl",
|
|
10964
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10965
|
+
}
|
|
10974
10966
|
},
|
|
10975
10967
|
{
|
|
10976
|
-
"name": "
|
|
10968
|
+
"name": "checked",
|
|
10969
|
+
"fieldName": "checked",
|
|
10970
|
+
"inheritedFrom": {
|
|
10971
|
+
"name": "UmSelectionControl",
|
|
10972
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10973
|
+
}
|
|
10974
|
+
}
|
|
10975
|
+
],
|
|
10976
|
+
"events": [
|
|
10977
|
+
{
|
|
10978
|
+
"name": "input",
|
|
10977
10979
|
"type": {
|
|
10978
|
-
"text": "
|
|
10980
|
+
"text": "InputEvent"
|
|
10979
10981
|
},
|
|
10980
|
-
"
|
|
10981
|
-
|
|
10982
|
+
"inheritedFrom": {
|
|
10983
|
+
"name": "UmSelectionControl",
|
|
10984
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10985
|
+
}
|
|
10982
10986
|
},
|
|
10983
10987
|
{
|
|
10984
|
-
"name": "
|
|
10988
|
+
"name": "change",
|
|
10985
10989
|
"type": {
|
|
10986
|
-
"text": "
|
|
10990
|
+
"text": "Event"
|
|
10987
10991
|
},
|
|
10988
|
-
"
|
|
10989
|
-
|
|
10992
|
+
"inheritedFrom": {
|
|
10993
|
+
"name": "UmSelectionControl",
|
|
10994
|
+
"module": "src/shared/selection-control/selection-control.ts"
|
|
10995
|
+
}
|
|
10990
10996
|
}
|
|
10991
|
-
]
|
|
10992
|
-
"superclass": {
|
|
10993
|
-
"name": "LitElement",
|
|
10994
|
-
"package": "lit"
|
|
10995
|
-
},
|
|
10996
|
-
"tagName": "u-snackbar",
|
|
10997
|
-
"customElement": true
|
|
10997
|
+
]
|
|
10998
10998
|
}
|
|
10999
10999
|
],
|
|
11000
11000
|
"exports": [
|
|
11001
11001
|
{
|
|
11002
11002
|
"kind": "js",
|
|
11003
|
-
"name": "
|
|
11003
|
+
"name": "UmSwitch",
|
|
11004
11004
|
"declaration": {
|
|
11005
|
-
"name": "
|
|
11006
|
-
"module": "src/
|
|
11005
|
+
"name": "UmSwitch",
|
|
11006
|
+
"module": "src/switch/switch.ts"
|
|
11007
11007
|
}
|
|
11008
11008
|
},
|
|
11009
11009
|
{
|
|
11010
11010
|
"kind": "custom-element-definition",
|
|
11011
|
-
"name": "u-
|
|
11011
|
+
"name": "u-switch",
|
|
11012
11012
|
"declaration": {
|
|
11013
|
-
"name": "
|
|
11014
|
-
"module": "src/
|
|
11013
|
+
"name": "UmSwitch",
|
|
11014
|
+
"module": "src/switch/switch.ts"
|
|
11015
11015
|
}
|
|
11016
11016
|
}
|
|
11017
11017
|
]
|
|
@@ -12844,46 +12844,6 @@
|
|
|
12844
12844
|
}
|
|
12845
12845
|
]
|
|
12846
12846
|
},
|
|
12847
|
-
{
|
|
12848
|
-
"kind": "javascript-module",
|
|
12849
|
-
"path": "src/shared/events/dispatch-event.ts",
|
|
12850
|
-
"declarations": [],
|
|
12851
|
-
"exports": []
|
|
12852
|
-
},
|
|
12853
|
-
{
|
|
12854
|
-
"kind": "javascript-module",
|
|
12855
|
-
"path": "src/shared/events/redispatch-event.ts",
|
|
12856
|
-
"declarations": [
|
|
12857
|
-
{
|
|
12858
|
-
"kind": "function",
|
|
12859
|
-
"name": "redispatchEvent",
|
|
12860
|
-
"parameters": [
|
|
12861
|
-
{
|
|
12862
|
-
"name": "element",
|
|
12863
|
-
"type": {
|
|
12864
|
-
"text": "Element"
|
|
12865
|
-
}
|
|
12866
|
-
},
|
|
12867
|
-
{
|
|
12868
|
-
"name": "event",
|
|
12869
|
-
"type": {
|
|
12870
|
-
"text": "Event"
|
|
12871
|
-
}
|
|
12872
|
-
}
|
|
12873
|
-
]
|
|
12874
|
-
}
|
|
12875
|
-
],
|
|
12876
|
-
"exports": [
|
|
12877
|
-
{
|
|
12878
|
-
"kind": "js",
|
|
12879
|
-
"name": "redispatchEvent",
|
|
12880
|
-
"declaration": {
|
|
12881
|
-
"name": "redispatchEvent",
|
|
12882
|
-
"module": "src/shared/events/redispatch-event.ts"
|
|
12883
|
-
}
|
|
12884
|
-
}
|
|
12885
|
-
]
|
|
12886
|
-
},
|
|
12887
12847
|
{
|
|
12888
12848
|
"kind": "javascript-module",
|
|
12889
12849
|
"path": "src/shared/selection-control/selection-control-list-item.ts",
|
|
@@ -13141,6 +13101,96 @@
|
|
|
13141
13101
|
}
|
|
13142
13102
|
]
|
|
13143
13103
|
},
|
|
13104
|
+
{
|
|
13105
|
+
"kind": "javascript-module",
|
|
13106
|
+
"path": "src/shared/sets/set-base.ts",
|
|
13107
|
+
"declarations": [
|
|
13108
|
+
{
|
|
13109
|
+
"kind": "class",
|
|
13110
|
+
"description": "",
|
|
13111
|
+
"name": "UmSetBase",
|
|
13112
|
+
"members": [
|
|
13113
|
+
{
|
|
13114
|
+
"kind": "field",
|
|
13115
|
+
"name": "alignment",
|
|
13116
|
+
"type": {
|
|
13117
|
+
"text": "'start' | 'center' | 'end'"
|
|
13118
|
+
},
|
|
13119
|
+
"default": "'start'",
|
|
13120
|
+
"description": "Set the alignment of the set at the `start`, `center` or at the `end`.",
|
|
13121
|
+
"attribute": "alignment",
|
|
13122
|
+
"reflects": true
|
|
13123
|
+
}
|
|
13124
|
+
],
|
|
13125
|
+
"attributes": [
|
|
13126
|
+
{
|
|
13127
|
+
"name": "alignment",
|
|
13128
|
+
"type": {
|
|
13129
|
+
"text": "'start' | 'center' | 'end'"
|
|
13130
|
+
},
|
|
13131
|
+
"default": "'start'",
|
|
13132
|
+
"description": "Set the alignment of the set at the `start`, `center` or at the `end`.",
|
|
13133
|
+
"fieldName": "alignment"
|
|
13134
|
+
}
|
|
13135
|
+
],
|
|
13136
|
+
"superclass": {
|
|
13137
|
+
"name": "LitElement",
|
|
13138
|
+
"package": "lit"
|
|
13139
|
+
},
|
|
13140
|
+
"customElement": true
|
|
13141
|
+
}
|
|
13142
|
+
],
|
|
13143
|
+
"exports": [
|
|
13144
|
+
{
|
|
13145
|
+
"kind": "js",
|
|
13146
|
+
"name": "UmSetBase",
|
|
13147
|
+
"declaration": {
|
|
13148
|
+
"name": "UmSetBase",
|
|
13149
|
+
"module": "src/shared/sets/set-base.ts"
|
|
13150
|
+
}
|
|
13151
|
+
}
|
|
13152
|
+
]
|
|
13153
|
+
},
|
|
13154
|
+
{
|
|
13155
|
+
"kind": "javascript-module",
|
|
13156
|
+
"path": "src/shared/events/dispatch-event.ts",
|
|
13157
|
+
"declarations": [],
|
|
13158
|
+
"exports": []
|
|
13159
|
+
},
|
|
13160
|
+
{
|
|
13161
|
+
"kind": "javascript-module",
|
|
13162
|
+
"path": "src/shared/events/redispatch-event.ts",
|
|
13163
|
+
"declarations": [
|
|
13164
|
+
{
|
|
13165
|
+
"kind": "function",
|
|
13166
|
+
"name": "redispatchEvent",
|
|
13167
|
+
"parameters": [
|
|
13168
|
+
{
|
|
13169
|
+
"name": "element",
|
|
13170
|
+
"type": {
|
|
13171
|
+
"text": "Element"
|
|
13172
|
+
}
|
|
13173
|
+
},
|
|
13174
|
+
{
|
|
13175
|
+
"name": "event",
|
|
13176
|
+
"type": {
|
|
13177
|
+
"text": "Event"
|
|
13178
|
+
}
|
|
13179
|
+
}
|
|
13180
|
+
]
|
|
13181
|
+
}
|
|
13182
|
+
],
|
|
13183
|
+
"exports": [
|
|
13184
|
+
{
|
|
13185
|
+
"kind": "js",
|
|
13186
|
+
"name": "redispatchEvent",
|
|
13187
|
+
"declaration": {
|
|
13188
|
+
"name": "redispatchEvent",
|
|
13189
|
+
"module": "src/shared/events/redispatch-event.ts"
|
|
13190
|
+
}
|
|
13191
|
+
}
|
|
13192
|
+
]
|
|
13193
|
+
},
|
|
13144
13194
|
{
|
|
13145
13195
|
"kind": "javascript-module",
|
|
13146
13196
|
"path": "src/shared/text-field-base/text-field-base.styles.ts",
|
|
@@ -13682,56 +13732,6 @@
|
|
|
13682
13732
|
}
|
|
13683
13733
|
}
|
|
13684
13734
|
]
|
|
13685
|
-
},
|
|
13686
|
-
{
|
|
13687
|
-
"kind": "javascript-module",
|
|
13688
|
-
"path": "src/shared/sets/set-base.ts",
|
|
13689
|
-
"declarations": [
|
|
13690
|
-
{
|
|
13691
|
-
"kind": "class",
|
|
13692
|
-
"description": "",
|
|
13693
|
-
"name": "UmSetBase",
|
|
13694
|
-
"members": [
|
|
13695
|
-
{
|
|
13696
|
-
"kind": "field",
|
|
13697
|
-
"name": "alignment",
|
|
13698
|
-
"type": {
|
|
13699
|
-
"text": "'start' | 'center' | 'end'"
|
|
13700
|
-
},
|
|
13701
|
-
"default": "'start'",
|
|
13702
|
-
"description": "Set the alignment of the set at the `start`, `center` or at the `end`.",
|
|
13703
|
-
"attribute": "alignment",
|
|
13704
|
-
"reflects": true
|
|
13705
|
-
}
|
|
13706
|
-
],
|
|
13707
|
-
"attributes": [
|
|
13708
|
-
{
|
|
13709
|
-
"name": "alignment",
|
|
13710
|
-
"type": {
|
|
13711
|
-
"text": "'start' | 'center' | 'end'"
|
|
13712
|
-
},
|
|
13713
|
-
"default": "'start'",
|
|
13714
|
-
"description": "Set the alignment of the set at the `start`, `center` or at the `end`.",
|
|
13715
|
-
"fieldName": "alignment"
|
|
13716
|
-
}
|
|
13717
|
-
],
|
|
13718
|
-
"superclass": {
|
|
13719
|
-
"name": "LitElement",
|
|
13720
|
-
"package": "lit"
|
|
13721
|
-
},
|
|
13722
|
-
"customElement": true
|
|
13723
|
-
}
|
|
13724
|
-
],
|
|
13725
|
-
"exports": [
|
|
13726
|
-
{
|
|
13727
|
-
"kind": "js",
|
|
13728
|
-
"name": "UmSetBase",
|
|
13729
|
-
"declaration": {
|
|
13730
|
-
"name": "UmSetBase",
|
|
13731
|
-
"module": "src/shared/sets/set-base.ts"
|
|
13732
|
-
}
|
|
13733
|
-
}
|
|
13734
|
-
]
|
|
13735
13735
|
}
|
|
13736
13736
|
]
|
|
13737
13737
|
}
|