loon-bulma-react 2026.0.59 → 2026.0.60
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/dist/forms/Checkbox/Checkbox.d.ts +3 -1
- package/dist/index.js +74 -70
- package/package.json +16 -16
|
@@ -11,6 +11,8 @@ type CheckBoxInputProps = StrictOmit<InputPropsType<string>, 'value' | 'onValueC
|
|
|
11
11
|
/** foutmelding bij de input */ errorMessage?: string | ((s: InputErrorProps<boolean>) => string);
|
|
12
12
|
/** info-melding bij de input */ infoMessage?: string | ((v: boolean) => string);
|
|
13
13
|
onValueChanged?: (v: boolean) => void | Promise<void>;
|
|
14
|
+
/** double-click handler for the checkbox */
|
|
15
|
+
onDblClick?: (e: React.MouseEvent<HTMLInputElement>) => void | Promise<void>;
|
|
14
16
|
};
|
|
15
17
|
/**
|
|
16
18
|
* Een checkbox input met een container eromheen. Om een checkbox in te voegen zonder container, gebruik dan de `<CB ... />`-component. DEze component 'wrapt' deze `CB`-component.
|
|
@@ -40,7 +42,7 @@ declare function CheckBox({ id, label, name, size: sizeProp, direction: directio
|
|
|
40
42
|
* const [x, setX] = React.useState(false);
|
|
41
43
|
* <CB name="test" label="test" value={x} onValueChanged={setX}/>
|
|
42
44
|
*/
|
|
43
|
-
declare function CB({ helpTag, errorMessage, infoMessage, label, disabled, keyboardType, title, name, value, required, spellCheck, id, autoComplete, readonly, autofocus, form, inputRef: ref, onBlur, onChange, onFocus, onKeyDown, onKeyUp, onValueChanged, size: sizeProp, alignment: alignmentProp, color, infoDataEl, }: // inverted = false,
|
|
45
|
+
declare function CB({ helpTag, errorMessage, infoMessage, label, disabled, keyboardType, title, name, value, required, spellCheck, id, autoComplete, readonly, autofocus, form, inputRef: ref, onBlur, onChange, onFocus, onKeyDown, onKeyUp, onValueChanged, onDblClick, size: sizeProp, alignment: alignmentProp, color, infoDataEl, }: // inverted = false,
|
|
44
46
|
StrictOmit<CheckBoxInputProps, 'direction' | 'labelHidden' | 'infoData'> & {
|
|
45
47
|
infoDataEl?: React.ReactNode;
|
|
46
48
|
}): React.JSX.Element;
|
package/dist/index.js
CHANGED
|
@@ -1501,7 +1501,7 @@ function dr(e) {
|
|
|
1501
1501
|
if (t) return t.getAttribute(e);
|
|
1502
1502
|
}
|
|
1503
1503
|
function fr(e) {
|
|
1504
|
-
return e === "" ? !0 : e === "false" ? !1 : e === "true"
|
|
1504
|
+
return e === "" ? !0 : e === "false" ? !1 : e === "true" || e;
|
|
1505
1505
|
}
|
|
1506
1506
|
ot && typeof ot.querySelector == "function" && [
|
|
1507
1507
|
["data-family-prefix", "familyPrefix"],
|
|
@@ -1630,7 +1630,7 @@ function Or(e) {
|
|
|
1630
1630
|
};
|
|
1631
1631
|
}
|
|
1632
1632
|
function kr(e) {
|
|
1633
|
-
var t = e.transform, n = e.width, r = n === void 0 ? Ln : n, i = e.height, a = i === void 0 ? Ln : i, o = e.startCentered, s = o
|
|
1633
|
+
var t = e.transform, n = e.width, r = n === void 0 ? Ln : n, i = e.height, a = i === void 0 ? Ln : i, o = e.startCentered, s = o !== void 0 && o, c = "";
|
|
1634
1634
|
return s && ut ? c += `translate(${t.x / _r - r / 2}em, ${t.y / _r - a / 2}em) ` : s ? c += `translate(calc(-50% + ${t.x / _r}em), calc(-50% + ${t.y / _r}em)) ` : c += `translate(${t.x / _r}em, ${t.y / _r}em) `, c += `scale(${t.size / _r * (t.flipX ? -1 : 1)}, ${t.size / _r * (t.flipY ? -1 : 1)}) `, c += `rotate(${t.rotate}deg) `, c;
|
|
1635
1635
|
}
|
|
1636
1636
|
var Ar = ":root, :host {\n --fa-font-solid: normal 900 1em/1 'Font Awesome 7 Free';\n --fa-font-regular: normal 400 1em/1 'Font Awesome 7 Free';\n --fa-font-light: normal 300 1em/1 'Font Awesome 7 Pro';\n --fa-font-thin: normal 100 1em/1 'Font Awesome 7 Pro';\n --fa-font-duotone: normal 900 1em/1 'Font Awesome 7 Duotone';\n --fa-font-duotone-regular: normal 400 1em/1 'Font Awesome 7 Duotone';\n --fa-font-duotone-light: normal 300 1em/1 'Font Awesome 7 Duotone';\n --fa-font-duotone-thin: normal 100 1em/1 'Font Awesome 7 Duotone';\n --fa-font-brands: normal 400 1em/1 'Font Awesome 7 Brands';\n --fa-font-sharp-solid: normal 900 1em/1 'Font Awesome 7 Sharp';\n --fa-font-sharp-regular: normal 400 1em/1 'Font Awesome 7 Sharp';\n --fa-font-sharp-light: normal 300 1em/1 'Font Awesome 7 Sharp';\n --fa-font-sharp-thin: normal 100 1em/1 'Font Awesome 7 Sharp';\n --fa-font-sharp-duotone-solid: normal 900 1em/1 'Font Awesome 7 Sharp Duotone';\n --fa-font-sharp-duotone-regular: normal 400 1em/1 'Font Awesome 7 Sharp Duotone';\n --fa-font-sharp-duotone-light: normal 300 1em/1 'Font Awesome 7 Sharp Duotone';\n --fa-font-sharp-duotone-thin: normal 100 1em/1 'Font Awesome 7 Sharp Duotone';\n --fa-font-slab-regular: normal 400 1em/1 'Font Awesome 7 Slab';\n --fa-font-slab-press-regular: normal 400 1em/1 'Font Awesome 7 Slab Press';\n --fa-font-slab-duo-regular: normal 400 1em/1 'Font Awesome 7 Slab Duo';\n --fa-font-slab-press-duo-regular: normal 400 1em/1 'Font Awesome 7 Slab Press Duo';\n --fa-font-pixel-regular: normal 400 1em/1 'Font Awesome 7 Pixel';\n --fa-font-mosaic-solid: normal 900 1em/1 'Font Awesome 7 Mosaic';\n --fa-font-vellum-solid: normal 900 1em/1 'Font Awesome 7 Vellum';\n --fa-font-whiteboard-semibold: normal 600 1em/1 'Font Awesome 7 Whiteboard';\n --fa-font-thumbprint-light: normal 300 1em/1 'Font Awesome 7 Thumbprint';\n --fa-font-notdog-solid: normal 900 1em/1 'Font Awesome 7 Notdog';\n --fa-font-notdog-duo-solid: normal 900 1em/1 'Font Awesome 7 Notdog Duo';\n --fa-font-etch-solid: normal 900 1em/1 'Font Awesome 7 Etch';\n --fa-font-graphite-thin: normal 100 1em/1 'Font Awesome 7 Graphite';\n --fa-font-jelly-regular: normal 400 1em/1 'Font Awesome 7 Jelly';\n --fa-font-jelly-fill-regular: normal 400 1em/1 'Font Awesome 7 Jelly Fill';\n --fa-font-jelly-duo-regular: normal 400 1em/1 'Font Awesome 7 Jelly Duo';\n --fa-font-chisel-regular: normal 400 1em/1 'Font Awesome 7 Chisel';\n --fa-font-utility-semibold: normal 600 1em/1 'Font Awesome 7 Utility';\n --fa-font-utility-duo-semibold: normal 600 1em/1 'Font Awesome 7 Utility Duo';\n --fa-font-utility-fill-semibold: normal 600 1em/1 'Font Awesome 7 Utility Fill';\n}\n\n.svg-inline--fa {\n box-sizing: content-box;\n display: var(--fa-display, inline-block);\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n width: var(--fa-width, 1.25em);\n}\n.svg-inline--fa.fa-2xs {\n vertical-align: 0.1em;\n}\n.svg-inline--fa.fa-xs {\n vertical-align: 0em;\n}\n.svg-inline--fa.fa-sm {\n vertical-align: -0.0714285714em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.2em;\n}\n.svg-inline--fa.fa-xl {\n vertical-align: -0.25em;\n}\n.svg-inline--fa.fa-2xl {\n vertical-align: -0.3125em;\n}\n.svg-inline--fa.fa-pull-left,\n.svg-inline--fa .fa-pull-start {\n float: inline-start;\n margin-inline-end: var(--fa-pull-margin, 0.3em);\n}\n.svg-inline--fa.fa-pull-right,\n.svg-inline--fa .fa-pull-end {\n float: inline-end;\n margin-inline-start: var(--fa-pull-margin, 0.3em);\n}\n.svg-inline--fa.fa-li {\n width: var(--fa-li-width, 2em);\n inset-inline-start: calc(-1 * var(--fa-li-width, 2em));\n inset-block-start: 0.25em; /* syncing vertical alignment with Web Font rendering */\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: var(--fa-width, 1.25em);\n}\n.fa-layers .svg-inline--fa {\n inset: 0;\n margin: auto;\n position: absolute;\n transform-origin: center center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n transform: translate(-50%, -50%);\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: var(--fa-counter-background-color, #ff253a);\n border-radius: var(--fa-counter-border-radius, 1em);\n box-sizing: border-box;\n color: var(--fa-inverse, #fff);\n line-height: var(--fa-counter-line-height, 1);\n max-width: var(--fa-counter-max-width, 5em);\n min-width: var(--fa-counter-min-width, 1.5em);\n overflow: hidden;\n padding: var(--fa-counter-padding, 0.25em 0.5em);\n right: var(--fa-right, 0);\n text-overflow: ellipsis;\n top: var(--fa-top, 0);\n transform: scale(var(--fa-counter-scale, 0.25));\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: var(--fa-bottom, 0);\n right: var(--fa-right, 0);\n top: auto;\n transform: scale(var(--fa-layers-scale, 0.25));\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: var(--fa-bottom, 0);\n left: var(--fa-left, 0);\n right: auto;\n top: auto;\n transform: scale(var(--fa-layers-scale, 0.25));\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n top: var(--fa-top, 0);\n right: var(--fa-right, 0);\n transform: scale(var(--fa-layers-scale, 0.25));\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: var(--fa-left, 0);\n right: auto;\n top: var(--fa-top, 0);\n transform: scale(var(--fa-layers-scale, 0.25));\n transform-origin: top left;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-2xs {\n font-size: calc(10 / 16 * 1em); /* converts a 10px size into an em-based value that's relative to the scale's 16px base */\n line-height: calc(1 / 10 * 1em); /* sets the line-height of the icon back to that of it's parent */\n vertical-align: calc((6 / 10 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */\n}\n\n.fa-xs {\n font-size: calc(12 / 16 * 1em); /* converts a 12px size into an em-based value that's relative to the scale's 16px base */\n line-height: calc(1 / 12 * 1em); /* sets the line-height of the icon back to that of it's parent */\n vertical-align: calc((6 / 12 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */\n}\n\n.fa-sm {\n font-size: calc(14 / 16 * 1em); /* converts a 14px size into an em-based value that's relative to the scale's 16px base */\n line-height: calc(1 / 14 * 1em); /* sets the line-height of the icon back to that of it's parent */\n vertical-align: calc((6 / 14 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */\n}\n\n.fa-lg {\n font-size: calc(20 / 16 * 1em); /* converts a 20px size into an em-based value that's relative to the scale's 16px base */\n line-height: calc(1 / 20 * 1em); /* sets the line-height of the icon back to that of it's parent */\n vertical-align: calc((6 / 20 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */\n}\n\n.fa-xl {\n font-size: calc(24 / 16 * 1em); /* converts a 24px size into an em-based value that's relative to the scale's 16px base */\n line-height: calc(1 / 24 * 1em); /* sets the line-height of the icon back to that of it's parent */\n vertical-align: calc((6 / 24 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */\n}\n\n.fa-2xl {\n font-size: calc(32 / 16 * 1em); /* converts a 32px size into an em-based value that's relative to the scale's 16px base */\n line-height: calc(1 / 32 * 1em); /* sets the line-height of the icon back to that of it's parent */\n vertical-align: calc((6 / 32 - 0.375) * 1em); /* vertically centers the icon taking into account the surrounding text's descender */\n}\n\n.fa-width-auto {\n --fa-width: auto;\n}\n\n.fa-fw,\n.fa-width-fixed {\n --fa-width: 1.25em;\n}\n\n.fa-canvas-square {\n padding-block: 0.125em;\n margin-block-end: -0.125em;\n}\n\n.fa-canvas-roomy {\n padding-block: 0.25em;\n padding-inline: 0.125em;\n margin-block-end: -0.25em;\n box-sizing: content-box;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-inline-start: var(--fa-li-margin, 2.5em);\n padding-inline-start: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n inset-inline-start: calc(-1 * var(--fa-li-width, 2em));\n position: absolute;\n text-align: center;\n width: var(--fa-li-width, 2em);\n line-height: inherit;\n}\n\n/* Heads Up: Bordered Icons will not be supported in the future!\n - This feature will be deprecated in the next major release of Font Awesome (v8)!\n - You may continue to use it in this version *v7), but it will not be supported in Font Awesome v8.\n*/\n/* Notes:\n* --@{v.$css-prefix}-border-width = 1/16 by default (to render as ~1px based on a 16px default font-size)\n* --@{v.$css-prefix}-border-padding =\n ** 3/16 for vertical padding (to give ~2px of vertical whitespace around an icon considering it's vertical alignment)\n ** 4/16 for horizontal padding (to give ~4px of horizontal whitespace around an icon)\n*/\n.fa-border {\n border-color: var(--fa-border-color, #eee);\n border-radius: var(--fa-border-radius, 0.1em);\n border-style: var(--fa-border-style, solid);\n border-width: var(--fa-border-width, 0.0625em);\n box-sizing: var(--fa-border-box-sizing, content-box);\n padding: var(--fa-border-padding, 0.1875em 0.25em);\n}\n\n.fa-pull-left,\n.fa-pull-start {\n float: inline-start;\n margin-inline-end: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-pull-right,\n.fa-pull-end {\n float: inline-end;\n margin-inline-start: var(--fa-pull-margin, 0.3em);\n}\n\n.fa-beat {\n animation-name: fa-beat;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-bounce {\n animation-name: fa-bounce;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n}\n\n.fa-fade {\n animation-name: fa-fade;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-beat-fade {\n animation-name: fa-beat-fade;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-flip {\n animation-name: fa-flip;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1.5s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-flip-360 {\n animation-name: fa-flip-360;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-shake {\n animation-name: fa-shake;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 0.75s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n}\n\n.fa-spin {\n animation-name: fa-spin;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 2s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-reverse {\n --fa-animation-direction: reverse;\n}\n\n.fa-pulse,\n.fa-spin-pulse {\n animation-name: fa-spin;\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, steps(8));\n}\n\n.fa-spin-snap {\n animation-name: fa-spin-snap;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 3s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-snap-4 {\n animation-name: fa-spin-snap-4;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 2.4s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-spin-snap-8 {\n animation-name: fa-spin-snap-8;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 4s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-buzz {\n animation-name: fa-buzz;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 0.6s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, linear);\n}\n\n.fa-wag {\n animation-name: fa-wag;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 0.9s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, ease-out);\n transform-origin: bottom center;\n}\n\n.fa-float {\n animation-name: fa-float;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 3s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, ease-in-out);\n will-change: transform;\n}\n\n.fa-swing {\n animation-name: fa-swing;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 1.2s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, ease-out);\n transform-origin: top center;\n}\n\n.fa-jello {\n animation-name: fa-jello;\n animation-delay: var(--fa-animation-delay, 0s);\n animation-direction: var(--fa-animation-direction, normal);\n animation-duration: var(--fa-animation-duration, 0.9s);\n animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n animation-timing-function: var(--fa-animation-timing, ease-out);\n}\n\n@media (prefers-reduced-motion: reduce) {\n .fa-beat,\n .fa-bounce,\n .fa-fade,\n .fa-beat-fade,\n .fa-flip,\n .fa-flip-360,\n .fa-pulse,\n .fa-shake,\n .fa-spin,\n .fa-spin-pulse,\n .fa-buzz,\n .fa-float,\n .fa-jello,\n .fa-spin-snap,\n .fa-spin-snap-4,\n .fa-spin-snap-8,\n .fa-swing,\n .fa-wag {\n animation: none !important;\n transition: none !important;\n }\n}\n@keyframes fa-beat {\n 0% {\n transform: scale(1);\n }\n 25% {\n transform: scale(calc(1.25 * var(--fa-beat-scale, 1.25)));\n }\n 45% {\n transform: scale(calc(1.22 * var(--fa-beat-scale, 1.22)));\n }\n 65% {\n transform: scale(calc(1.25 * var(--fa-beat-scale, 1.25)));\n }\n 90% {\n transform: scale(1);\n }\n}\n@keyframes fa-bounce {\n 0% {\n transform: scale(1, 1) translateY(0);\n animation-timing-function: var(--fa-animation-timing);\n }\n 14% {\n transform: scale(var(--fa-bounce-start-scale-x, 1.06), var(--fa-bounce-start-scale-y, 0.94)) translateY(var(--fa-bounce-anticipation, 3px));\n animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);\n }\n 32% {\n transform: scale(var(--fa-bounce-jump-scale-x, 0.94), var(--fa-bounce-jump-scale-y, 1.12)) translateY(calc(-1 * var(--fa-bounce-height, 0.5em)));\n animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);\n }\n 52% {\n transform: scale(1, 1) translateY(calc(-1 * var(--fa-bounce-height, 0.5em) * 1.1));\n animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);\n }\n 70% {\n transform: scale(var(--fa-bounce-land-scale-x, 1.06), var(--fa-bounce-land-scale-y, 0.92)) translateY(0);\n animation-timing-function: cubic-bezier(0.33, 0.33, 0.66, 1);\n }\n 85% {\n transform: scale(0.98, 1.04) translateY(calc(-2px * var(--fa-bounce-rebound, 1)));\n animation-timing-function: cubic-bezier(0.33, 0, 0.66, 1);\n }\n 100% {\n transform: scale(1, 1) translateY(0);\n }\n}\n@keyframes fa-fade {\n 0% {\n opacity: 1;\n transform: scale(1);\n animation-timing-function: cubic-bezier(0.2, 0, 0.4, 1);\n }\n 40% {\n opacity: var(--fa-fade-opacity, 0.4);\n transform: scale(0.98);\n animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n }\n 100% {\n opacity: 1;\n transform: scale(1);\n }\n}\n@keyframes fa-beat-fade {\n 0% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n transform: scale(1);\n animation-timing-function: cubic-bezier(0.2, 0, 0.4, 1);\n }\n 25% {\n opacity: calc(var(--fa-beat-fade-opacity, 0.4) + 0.4);\n transform: scale(var(--fa-beat-fade-scale, 1.28));\n animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n }\n 45% {\n opacity: 1;\n transform: scale(var(--fa-beat-fade-scale, 1.25));\n animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n }\n 65% {\n opacity: calc(var(--fa-beat-fade-opacity, 0.4) + 0.4);\n transform: scale(var(--fa-beat-fade-scale, 1.28));\n animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n }\n 100% {\n opacity: var(--fa-beat-fade-opacity, 0.4);\n transform: scale(1);\n }\n}\n@keyframes fa-flip {\n 0% {\n transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), 0deg);\n animation-timing-function: cubic-bezier(0.2, 0, 0.4, 1);\n }\n 8% {\n transform: perspective(2em) scale(var(--fa-flip-anticipation-scale, 0.95)) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), 0deg);\n animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);\n }\n 35% {\n transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * 0.6));\n animation-timing-function: linear;\n }\n 65% {\n transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * 0.5));\n animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);\n }\n 92% {\n transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * var(--fa-flip-overshoot, 1.04)));\n animation-timing-function: cubic-bezier(0.33, 0, 0.66, 1);\n }\n 100% {\n transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -360deg));\n }\n}\n@keyframes fa-flip-360 {\n 0% {\n transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), 0deg);\n animation-timing-function: cubic-bezier(0.2, 0, 0.4, 1);\n }\n 8% {\n transform: perspective(2em) scale(var(--fa-flip-anticipation-scale, 0.95)) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), 0deg);\n animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);\n }\n 50% {\n transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * 0.6));\n animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);\n }\n 80% {\n transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), calc(var(--fa-flip-angle, -360deg) * var(--fa-flip-overshoot, 1.04)));\n animation-timing-function: cubic-bezier(0.33, 0, 0.66, 1);\n }\n 100% {\n transform: perspective(2em) scale(1) rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -360deg));\n }\n}\n@keyframes fa-shake {\n 0% {\n transform: rotate(0deg);\n animation-timing-function: cubic-bezier(0.2, 0, 0.8, 1);\n }\n 8% {\n transform: rotate(35deg) translateX(1px);\n animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);\n }\n 20% {\n transform: rotate(-22deg) translateX(-1px);\n animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);\n }\n 35% {\n transform: rotate(15deg) translateX(1px);\n animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);\n }\n 50% {\n transform: rotate(-9deg);\n animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n }\n 65% {\n transform: rotate(5deg);\n animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n }\n 78% {\n transform: rotate(-3deg);\n animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n }\n 90% {\n transform: rotate(1deg);\n animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n }\n 100% {\n transform: rotate(0deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin-snap {\n 0% {\n transform: rotate(0deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 12% {\n transform: rotate(60deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 16.67% {\n transform: rotate(60deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 28.67% {\n transform: rotate(120deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 33.33% {\n transform: rotate(120deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 45.33% {\n transform: rotate(180deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 50% {\n transform: rotate(180deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 62% {\n transform: rotate(240deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 66.67% {\n transform: rotate(240deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 78.67% {\n transform: rotate(300deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 83.33% {\n transform: rotate(300deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 95.33% {\n transform: rotate(360deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin-snap-4 {\n 0% {\n transform: rotate(0deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 15% {\n transform: rotate(90deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 25% {\n transform: rotate(90deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 40% {\n transform: rotate(180deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 50% {\n transform: rotate(180deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 65% {\n transform: rotate(270deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 75% {\n transform: rotate(270deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 90% {\n transform: rotate(360deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n@keyframes fa-spin-snap-8 {\n 0% {\n transform: rotate(0deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 9% {\n transform: rotate(45deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 12.5% {\n transform: rotate(45deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 21.5% {\n transform: rotate(90deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 25% {\n transform: rotate(90deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 34% {\n transform: rotate(135deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 37.5% {\n transform: rotate(135deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 46.5% {\n transform: rotate(180deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 50% {\n transform: rotate(180deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 59% {\n transform: rotate(225deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 62.5% {\n transform: rotate(225deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 71.5% {\n transform: rotate(270deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 75% {\n transform: rotate(270deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 84% {\n transform: rotate(315deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 87.5% {\n transform: rotate(315deg);\n animation-timing-function: cubic-bezier(0, 0, 0.2, 1);\n }\n 96.5% {\n transform: rotate(360deg);\n animation-timing-function: cubic-bezier(0.8, 0, 1, 1);\n }\n 100% {\n transform: rotate(360deg);\n }\n}\n@keyframes fa-buzz {\n 0% {\n transform: translateX(0) rotate(0deg);\n animation-timing-function: cubic-bezier(0.1, 0, 0.9, 1);\n }\n 5% {\n transform: translateX(var(--fa-buzz-distance, 4px)) rotate(0.5deg);\n }\n 10% {\n transform: translateX(calc(-1 * var(--fa-buzz-distance, 4px))) rotate(-0.5deg);\n }\n 15% {\n transform: translateX(var(--fa-buzz-distance, 4px)) rotate(0.3deg);\n }\n 20% {\n transform: translateX(calc(-1 * var(--fa-buzz-distance, 4px))) rotate(-0.3deg);\n }\n 25% {\n transform: translateX(calc(var(--fa-buzz-distance, 4px) * 0.7)) rotate(0.2deg);\n }\n 30% {\n transform: translateX(calc(-1 * var(--fa-buzz-distance, 4px) * 0.7)) rotate(-0.2deg);\n }\n 35% {\n transform: translateX(calc(var(--fa-buzz-distance, 4px) * 0.4)) rotate(0.1deg);\n }\n 40% {\n transform: translateX(0) rotate(0deg);\n }\n 100% {\n transform: translateX(0) rotate(0deg);\n }\n}\n@keyframes fa-wag {\n 0% {\n transform: rotate(0deg);\n animation-timing-function: cubic-bezier(0.2, 0, 0.6, 1);\n }\n 12% {\n transform: rotate(var(--fa-wag-angle, 12deg));\n animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n }\n 24% {\n transform: rotate(2deg);\n animation-timing-function: cubic-bezier(0.2, 0, 0.6, 1);\n }\n 36% {\n transform: rotate(calc(var(--fa-wag-angle, 12deg) * 0.85));\n animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n }\n 48% {\n transform: rotate(1deg);\n animation-timing-function: cubic-bezier(0.2, 0, 0.6, 1);\n }\n 58% {\n transform: rotate(calc(var(--fa-wag-angle, 12deg) * 0.6));\n animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n }\n 68% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(0deg);\n }\n}\n@keyframes fa-float {\n 0% {\n transform: translateY(0) translateX(0) rotate(0deg) scale(var(--fa-float-squash-x, 1.02), var(--fa-float-squash-y, 0.98));\n animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);\n }\n 15% {\n transform: translateY(calc(-0.4 * var(--fa-float-height, 6px))) translateX(var(--fa-float-drift, 1px)) rotate(var(--fa-float-tilt, 1deg)) scale(1, 1);\n animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);\n }\n 35% {\n transform: translateY(calc(-1 * var(--fa-float-height, 6px))) translateX(0) rotate(0deg) scale(var(--fa-float-stretch-x, 0.98), var(--fa-float-stretch-y, 1.03));\n animation-timing-function: cubic-bezier(0.5, 0, 0.5, 0);\n }\n 50% {\n transform: translateY(calc(-0.92 * var(--fa-float-height, 6px))) translateX(calc(-0.5 * var(--fa-float-drift, 1px))) rotate(calc(-0.5 * var(--fa-float-tilt, 1deg))) scale(0.995, 1.01);\n animation-timing-function: cubic-bezier(0.33, 0, 0.66, 0.33);\n }\n 70% {\n transform: translateY(calc(-0.3 * var(--fa-float-height, 6px))) translateX(calc(-1 * var(--fa-float-drift, 1px))) rotate(calc(-1 * var(--fa-float-tilt, 1deg))) scale(1, 1);\n animation-timing-function: cubic-bezier(0.33, 0.66, 0.66, 1);\n }\n 90% {\n transform: translateY(calc(0.05 * var(--fa-float-height, 6px))) translateX(0) rotate(0deg) scale(var(--fa-float-squash-x, 1.02), var(--fa-float-squash-y, 0.98));\n animation-timing-function: cubic-bezier(0.33, 0, 0.66, 1);\n }\n 100% {\n transform: translateY(0) translateX(0) rotate(0deg) scale(var(--fa-float-squash-x, 1.02), var(--fa-float-squash-y, 0.98));\n }\n}\n@keyframes fa-swing {\n 0% {\n transform: rotate(0deg);\n animation-timing-function: cubic-bezier(0.2, 0, 0.8, 1);\n }\n 8% {\n transform: rotate(var(--fa-swing-angle, 22deg));\n animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);\n }\n 18% {\n transform: rotate(calc(-1 * var(--fa-swing-angle, 22deg) * 0.85));\n animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);\n }\n 28% {\n transform: rotate(calc(var(--fa-swing-angle, 22deg) * 0.65));\n animation-timing-function: cubic-bezier(0.35, 0, 0.65, 1);\n }\n 38% {\n transform: rotate(calc(-1 * var(--fa-swing-angle, 22deg) * 0.45));\n animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n }\n 48% {\n transform: rotate(calc(var(--fa-swing-angle, 22deg) * 0.25));\n animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n }\n 56% {\n transform: rotate(calc(-1 * var(--fa-swing-angle, 22deg) * 0.1));\n animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n }\n 64% {\n transform: rotate(0deg);\n }\n 100% {\n transform: rotate(0deg);\n }\n}\n@keyframes fa-jello {\n 0% {\n transform: scale(1, 1);\n animation-timing-function: cubic-bezier(0.2, 0, 0.8, 1);\n }\n 12% {\n transform: scale(var(--fa-jello-scale-x, 1.15), calc(2 - var(--fa-jello-scale-x, 1.15)));\n animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);\n }\n 24% {\n transform: scale(calc(2 - var(--fa-jello-scale-y, 1.12)), var(--fa-jello-scale-y, 1.12));\n animation-timing-function: cubic-bezier(0.3, 0, 0.7, 1);\n }\n 36% {\n transform: scale(calc(1 + (var(--fa-jello-scale-x, 1.15) - 1) * 0.5), calc(2 - (1 + (var(--fa-jello-scale-x, 1.15) - 1) * 0.5)));\n animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n }\n 48% {\n transform: scale(calc(2 - (1 + (var(--fa-jello-scale-y, 1.12) - 1) * 0.3)), calc(1 + (var(--fa-jello-scale-y, 1.12) - 1) * 0.3));\n animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);\n }\n 58% {\n transform: scale(1.02, 0.98);\n animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);\n }\n 68% {\n transform: scale(1, 1);\n }\n 100% {\n transform: scale(1, 1);\n }\n}\n.fa-rotate-90 {\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n transform: scale(1, -1);\n}\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n transform: scale(-1, -1);\n}\n\n.fa-rotate-by {\n transform: rotate(var(--fa-rotate-angle, 0));\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.svg-inline--fa.fa-inverse {\n fill: var(--fa-inverse, #fff);\n}\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n line-height: 2em;\n position: relative;\n vertical-align: middle;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: var(--fa-inverse, #fff);\n}\n\n.svg-inline--fa.fa-stack-1x {\n --fa-width: 1.25em;\n height: 1em;\n width: var(--fa-width);\n}\n.svg-inline--fa.fa-stack-2x {\n --fa-width: 2.5em;\n height: 2em;\n width: var(--fa-width);\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n inset: 0;\n margin: auto;\n position: absolute;\n z-index: var(--fa-stack-z-index, auto);\n}";
|
|
@@ -1704,7 +1704,7 @@ function Kr(e) {
|
|
|
1704
1704
|
}, {});
|
|
1705
1705
|
}
|
|
1706
1706
|
function qr(e, t) {
|
|
1707
|
-
var n = (arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}).skipHooks, r = n
|
|
1707
|
+
var n = (arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}).skipHooks, r = n !== void 0 && n, i = Kr(t);
|
|
1708
1708
|
typeof Ir.hooks.addPack == "function" && !r ? Ir.hooks.addPack(e, Kr(t)) : Ir.styles[e] = G(G({}, Ir.styles[e] || {}), i), e === "fas" && qr("fa", t);
|
|
1709
1709
|
}
|
|
1710
1710
|
var Jr = Ir.styles, Yr = Ir.shims, Xr = Object.keys(nr), Zr = Xr.reduce(function(e, t) {
|
|
@@ -1827,7 +1827,7 @@ function _i(e) {
|
|
|
1827
1827
|
}
|
|
1828
1828
|
var vi = An.concat(_n);
|
|
1829
1829
|
function yi(e) {
|
|
1830
|
-
var t = (arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}).skipLookups, n = t
|
|
1830
|
+
var t = (arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}).skipLookups, n = t !== void 0 && t, r = null, i = _i(e.filter(function(e) {
|
|
1831
1831
|
return vi.includes(e);
|
|
1832
1832
|
})), a = _i(e.filter(function(e) {
|
|
1833
1833
|
return !vi.includes(e);
|
|
@@ -2046,7 +2046,7 @@ function Bi(e) {
|
|
|
2046
2046
|
});
|
|
2047
2047
|
}
|
|
2048
2048
|
function Vi(e) {
|
|
2049
|
-
var t = e.icons, n = t.main, r = t.mask, i = e.prefix, a = e.iconName, o = e.transform, s = e.symbol, c = e.maskId, l = e.extra, u = e.watchable, d = u
|
|
2049
|
+
var t = e.icons, n = t.main, r = t.mask, i = e.prefix, a = e.iconName, o = e.transform, s = e.symbol, c = e.maskId, l = e.extra, u = e.watchable, d = u !== void 0 && u, f = r.found ? r : n, p = f.width, m = f.height, h = [K.replacementClass, a ? `${K.cssPrefix}-${a}` : ""].filter(function(e) {
|
|
2050
2050
|
return l.classes.indexOf(e) === -1;
|
|
2051
2051
|
}).filter(function(e) {
|
|
2052
2052
|
return e !== "" || !!e;
|
|
@@ -2080,7 +2080,7 @@ function Vi(e) {
|
|
|
2080
2080
|
return _.children = y, _.attributes = b, s ? zi(_) : Ri(_);
|
|
2081
2081
|
}
|
|
2082
2082
|
function Hi(e) {
|
|
2083
|
-
var t = e.content, n = e.width, r = e.height, i = e.transform, a = e.extra, o = e.watchable, s = o
|
|
2083
|
+
var t = e.content, n = e.width, r = e.height, i = e.transform, a = e.extra, o = e.watchable, s = o !== void 0 && o, c = G(G({}, a.attributes), {}, { class: a.classes.join(" ") });
|
|
2084
2084
|
s && (c[Bn] = "");
|
|
2085
2085
|
var l = G({}, a.styles);
|
|
2086
2086
|
Dr(i) && (l.transform = kr({
|
|
@@ -2167,7 +2167,7 @@ function Ji(e, t) {
|
|
|
2167
2167
|
var Yi = function() {}, Xi = K.measurePerformance && ct && ct.mark && ct.measure ? ct : {
|
|
2168
2168
|
mark: Yi,
|
|
2169
2169
|
measure: Yi
|
|
2170
|
-
}, Zi = "FA \"7.3.
|
|
2170
|
+
}, Zi = "FA \"7.3.1\"", Qi = function(e) {
|
|
2171
2171
|
return Xi.mark(`${Zi} ${e} begins`), function() {
|
|
2172
2172
|
return $i(e);
|
|
2173
2173
|
};
|
|
@@ -2399,7 +2399,7 @@ function ka(e) {
|
|
|
2399
2399
|
};
|
|
2400
2400
|
}
|
|
2401
2401
|
var Aa = function(e) {
|
|
2402
|
-
var t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, n = t.transform, r = n === void 0 ? vr : n, i = t.symbol, a = i
|
|
2402
|
+
var t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, n = t.transform, r = n === void 0 ? vr : n, i = t.symbol, a = i !== void 0 && i, o = t.mask, s = o === void 0 ? null : o, c = t.maskId, l = c === void 0 ? null : c, u = t.classes, d = u === void 0 ? [] : u, f = t.attributes, p = f === void 0 ? {} : f, m = t.styles, h = m === void 0 ? {} : m;
|
|
2403
2403
|
if (e) {
|
|
2404
2404
|
var g = e.prefix, _ = e.iconName, v = e.icon;
|
|
2405
2405
|
return Li(G({ type: "icon" }, e), function() {
|
|
@@ -2576,7 +2576,7 @@ function Ba(e) {
|
|
|
2576
2576
|
return Gr(qe(e.replace(Fa, ""))[0] || "");
|
|
2577
2577
|
}
|
|
2578
2578
|
function Va(e) {
|
|
2579
|
-
var t = e.getPropertyValue("font-feature-settings").includes("ss01"), n = e.getPropertyValue("content").replace(Fa, ""), r = n.codePointAt(0), i = r >= Ia[0] && r <= Ia[1], a = n.length === 2
|
|
2579
|
+
var t = e.getPropertyValue("font-feature-settings").includes("ss01"), n = e.getPropertyValue("content").replace(Fa, ""), r = n.codePointAt(0), i = r >= Ia[0] && r <= Ia[1], a = n.length === 2 && n[0] === n[1];
|
|
2580
2580
|
return i || a || t;
|
|
2581
2581
|
}
|
|
2582
2582
|
function Ha(e, t) {
|
|
@@ -2658,7 +2658,7 @@ var Ka = function(e) {
|
|
|
2658
2658
|
return t;
|
|
2659
2659
|
};
|
|
2660
2660
|
function Ja(e) {
|
|
2661
|
-
var t = arguments.length > 1 && arguments[1] !== void 0
|
|
2661
|
+
var t = arguments.length > 1 && arguments[1] !== void 0 && arguments[1];
|
|
2662
2662
|
if (lt) {
|
|
2663
2663
|
var n;
|
|
2664
2664
|
if (t) n = e;
|
|
@@ -2960,7 +2960,7 @@ ki([
|
|
|
2960
2960
|
{ hooks: function() {
|
|
2961
2961
|
return { parseNodeAttributes: function(e, t) {
|
|
2962
2962
|
var n = t.getAttribute("data-fa-symbol");
|
|
2963
|
-
return e.symbol = n === null ? !1 : n === ""
|
|
2963
|
+
return e.symbol = n === null ? !1 : n === "" || n, e;
|
|
2964
2964
|
} };
|
|
2965
2965
|
} }
|
|
2966
2966
|
], { mixoutsTo: Fi }), Fi.noAuto;
|
|
@@ -4448,7 +4448,7 @@ function sl(e) {
|
|
|
4448
4448
|
var cl = function(e) {
|
|
4449
4449
|
return e === !1 ? !1 : !oc() || !e ? null : typeof e == "string" ? document.querySelector(e) : typeof e == "function" ? e() : e;
|
|
4450
4450
|
}, ll = /*#__PURE__*/ e.forwardRef(function(t, n) {
|
|
4451
|
-
var r = t.open, i = t.autoLock, a = t.getContainer, o = t.debug, s = t.autoDestroy, c = s === void 0
|
|
4451
|
+
var r = t.open, i = t.autoLock, a = t.getContainer, o = t.debug, s = t.autoDestroy, c = s === void 0 || s, l = t.children, u = ac(e.useState(r), 2), d = u[0], f = u[1], p = d || r;
|
|
4452
4452
|
process.env.NODE_ENV !== "production" && mc(oc() || !r, "Portal only work in client side. Please call 'useEffect' to show Portal instead default render in SSR."), e.useEffect(function() {
|
|
4453
4453
|
(c || r) && f(r);
|
|
4454
4454
|
}, [r, c]);
|
|
@@ -5166,7 +5166,7 @@ var ad = (function(t, n, r) {
|
|
|
5166
5166
|
//#endregion
|
|
5167
5167
|
//#region node_modules/rc-motion/es/hooks/useStatus.js
|
|
5168
5168
|
function od(t, n, r, i) {
|
|
5169
|
-
var a = i.motionEnter, o = a === void 0
|
|
5169
|
+
var a = i.motionEnter, o = a === void 0 || a, s = i.motionAppear, c = s === void 0 || s, u = i.motionLeave, d = u === void 0 || u, f = i.motionDeadline, p = i.motionLeaveImmediately, h = i.onAppearPrepare, g = i.onEnterPrepare, _ = i.onLeavePrepare, v = i.onAppearStart, y = i.onEnterStart, b = i.onLeaveStart, x = i.onAppearActive, S = i.onEnterActive, C = i.onLeaveActive, w = i.onAppearEnd, T = i.onEnterEnd, E = i.onLeaveEnd, D = i.onVisibleChanged, O = ac(wu(), 2), k = O[0], A = O[1], j = ac(Tu(Eu), 2), M = j[0], N = j[1], P = ac(wu(null), 2), F = P[0], I = P[1], L = M(), R = m(!1), ee = m(null);
|
|
5170
5170
|
function z() {
|
|
5171
5171
|
return r();
|
|
5172
5172
|
}
|
|
@@ -5245,7 +5245,7 @@ function sd(t) {
|
|
|
5245
5245
|
return !!(e.motionName && n && t !== !1);
|
|
5246
5246
|
}
|
|
5247
5247
|
var i = /*#__PURE__*/ e.forwardRef(function(t, n) {
|
|
5248
|
-
var i = t.visible, a = i === void 0
|
|
5248
|
+
var i = t.visible, a = i === void 0 || i, o = t.removeOnLeave, s = o === void 0 || o, c = t.forceRender, l = t.children, u = t.motionName, d = t.leavedClassName, f = t.eventProps, p = e.useContext(Su).motion, h = r(t, p), g = m(), _ = m();
|
|
5249
5249
|
function v() {
|
|
5250
5250
|
try {
|
|
5251
5251
|
return g.current instanceof HTMLElement ? g.current : ml(_.current);
|
|
@@ -5869,7 +5869,7 @@ function Wd(t, n, r, i, a, o, s, c) {
|
|
|
5869
5869
|
var Gd = /* @__PURE__ */ "prefixCls.children.action.showAction.hideAction.popupVisible.defaultPopupVisible.onPopupVisibleChange.afterPopupVisibleChange.mouseEnterDelay.mouseLeaveDelay.focusDelay.blurDelay.mask.maskClosable.getPopupContainer.forceRender.autoDestroy.destroyPopupOnHide.popup.popupClassName.popupStyle.popupPlacement.builtinPlacements.popupAlign.zIndex.stretch.getPopupClassNameFromAlign.fresh.alignPoint.onPopupClick.onPopupAlign.arrow.popupMotion.maskMotion.popupTransitionName.popupAnimation.maskTransitionName.maskAnimation.className.getTriggerDOMNode".split(".");
|
|
5870
5870
|
function Kd() {
|
|
5871
5871
|
var t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : ul, n = /*#__PURE__*/ e.forwardRef(function(n, r) {
|
|
5872
|
-
var i = n.prefixCls, a = i === void 0 ? "rc-trigger-popup" : i, o = n.children, s = n.action, c = s === void 0 ? "hover" : s, l = n.showAction, u = n.hideAction, d = n.popupVisible, f = n.defaultPopupVisible, p = n.onPopupVisibleChange, m = n.afterPopupVisibleChange, h = n.mouseEnterDelay, g = n.mouseLeaveDelay, _ = g === void 0 ? .1 : g, v = n.focusDelay, y = n.blurDelay, b = n.mask, x = n.maskClosable, S = x === void 0
|
|
5872
|
+
var i = n.prefixCls, a = i === void 0 ? "rc-trigger-popup" : i, o = n.children, s = n.action, c = s === void 0 ? "hover" : s, l = n.showAction, u = n.hideAction, d = n.popupVisible, f = n.defaultPopupVisible, p = n.onPopupVisibleChange, m = n.afterPopupVisibleChange, h = n.mouseEnterDelay, g = n.mouseLeaveDelay, _ = g === void 0 ? .1 : g, v = n.focusDelay, y = n.blurDelay, b = n.mask, x = n.maskClosable, S = x === void 0 || x, C = n.getPopupContainer, w = n.forceRender, T = n.autoDestroy, E = n.destroyPopupOnHide, D = n.popup, O = n.popupClassName, k = n.popupStyle, A = n.popupPlacement, j = n.builtinPlacements, M = j === void 0 ? {} : j, N = n.popupAlign, P = n.zIndex, F = n.stretch, I = n.getPopupClassNameFromAlign, L = n.fresh, R = n.alignPoint, ee = n.onPopupClick, z = n.onPopupAlign, B = n.arrow, V = n.popupMotion, te = n.maskMotion, ne = n.popupTransitionName, H = n.popupAnimation, re = n.maskTransitionName, U = n.maskAnimation, ie = n.className, ae = n.getTriggerDOMNode, oe = $s(n, Gd), se = T || E || !1, ce = ac(e.useState(!1), 2), le = ce[0], ue = ce[1];
|
|
5873
5873
|
Lc(function() {
|
|
5874
5874
|
ue(xu());
|
|
5875
5875
|
}, []);
|
|
@@ -6164,9 +6164,9 @@ var qd = Kd(ul), Jd = {
|
|
|
6164
6164
|
"classNames",
|
|
6165
6165
|
"styles"
|
|
6166
6166
|
], $d = /* @__PURE__ */ a(function(t, n) {
|
|
6167
|
-
var r = t.overlayClassName, i = t.trigger, a = i === void 0 ? ["hover"] : i, o = t.mouseEnterDelay, s = o === void 0 ? 0 : o, c = t.mouseLeaveDelay, l = c === void 0 ? .1 : c, u = t.overlayStyle, f = t.prefixCls, p = f === void 0 ? "rc-tooltip" : f, h = t.children, g = t.onVisibleChange, _ = t.afterVisibleChange, v = t.transitionName, y = t.animation, b = t.motion, x = t.placement, S = x === void 0 ? "right" : x, C = t.align, w = C === void 0 ? {} : C, T = t.destroyTooltipOnHide, E = T
|
|
6167
|
+
var r = t.overlayClassName, i = t.trigger, a = i === void 0 ? ["hover"] : i, o = t.mouseEnterDelay, s = o === void 0 ? 0 : o, c = t.mouseLeaveDelay, l = c === void 0 ? .1 : c, u = t.overlayStyle, f = t.prefixCls, p = f === void 0 ? "rc-tooltip" : f, h = t.children, g = t.onVisibleChange, _ = t.afterVisibleChange, v = t.transitionName, y = t.animation, b = t.motion, x = t.placement, S = x === void 0 ? "right" : x, C = t.align, w = C === void 0 ? {} : C, T = t.destroyTooltipOnHide, E = T !== void 0 && T, D = t.defaultVisible, O = t.getTooltipContainer, k = t.overlayInnerStyle;
|
|
6168
6168
|
t.arrowContent;
|
|
6169
|
-
var A = t.overlay, j = t.id, M = t.showArrow, N = M === void 0
|
|
6169
|
+
var A = t.overlay, j = t.id, M = t.showArrow, N = M === void 0 || M, P = t.classNames, F = t.styles, I = $s(t, Qd), L = bu(j), R = m(null);
|
|
6170
6170
|
d(n, function() {
|
|
6171
6171
|
return R.current;
|
|
6172
6172
|
});
|
|
@@ -7273,7 +7273,7 @@ function lp(e, n) {
|
|
|
7273
7273
|
var i = r.language, a = r.children, o = r.style, s = o === void 0 ? n : o, c = r.customStyle, l = c === void 0 ? {} : c, u = r.codeTagProps, d = u === void 0 ? {
|
|
7274
7274
|
className: i ? `language-${i}` : void 0,
|
|
7275
7275
|
style: Yf(Yf({}, s["code[class*=\"language-\"]"]), s[`code[class*="language-${i}"]`])
|
|
7276
|
-
} : u, f = r.useInlineStyles, p = f === void 0
|
|
7276
|
+
} : u, f = r.useInlineStyles, p = f === void 0 || f, m = r.showLineNumbers, h = m !== void 0 && m, g = r.showInlineLineNumbers, _ = g === void 0 || g, v = r.startingLineNumber, y = v === void 0 ? 1 : v, b = r.lineNumberContainerStyle, x = r.lineNumberStyle, S = x === void 0 ? {} : x, C = r.wrapLines, w = r.wrapLongLines, T = w !== void 0 && w, E = r.lineProps, D = E === void 0 ? {} : E, O = r.renderer, k = r.PreTag, A = k === void 0 ? "pre" : k, j = r.CodeTag, M = j === void 0 ? "code" : j, N = r.code, P = N === void 0 ? (Array.isArray(a) ? a[0] : a) || "" : N, F = r.astGenerator, I = $s(r, qf);
|
|
7277
7277
|
F ||= e;
|
|
7278
7278
|
var L = h ? /*#__PURE__*/ t.createElement($f, {
|
|
7279
7279
|
containerStyle: b,
|
|
@@ -8560,7 +8560,7 @@ function lm(e) {
|
|
|
8560
8560
|
let t = "&" + e + ";";
|
|
8561
8561
|
cm.innerHTML = t;
|
|
8562
8562
|
let n = cm.textContent;
|
|
8563
|
-
return n.charCodeAt(n.length - 1) === 59 && e !== "semi"
|
|
8563
|
+
return n.charCodeAt(n.length - 1) === 59 && e !== "semi" ? !1 : n !== t && n;
|
|
8564
8564
|
}
|
|
8565
8565
|
//#endregion
|
|
8566
8566
|
//#region node_modules/parse-entities/lib/index.js
|
|
@@ -8599,7 +8599,7 @@ function dm(e, t) {
|
|
|
8599
8599
|
let x = e.charCodeAt(l) === 59;
|
|
8600
8600
|
if (x) {
|
|
8601
8601
|
l++;
|
|
8602
|
-
let e = u === "named"
|
|
8602
|
+
let e = u === "named" && lm(y);
|
|
8603
8603
|
e && (_ = y, v = e);
|
|
8604
8604
|
}
|
|
8605
8605
|
let S = 1 + l - o, C = "";
|
|
@@ -15269,7 +15269,7 @@ var Pv = ({ size: e = "m", id: n, itemRef: r, className: i, activeStepIndex: a,
|
|
|
15269
15269
|
children: t.Children.map(s, (e, t) => {
|
|
15270
15270
|
if (e.type && e.type === Pv.Item) {
|
|
15271
15271
|
let n = !0;
|
|
15272
|
-
return n = p === "allowed" || p === "down" && t < l || p === "up" && t > l ? !1 : p
|
|
15272
|
+
return n = p === "allowed" || p === "down" && t < l || p === "up" && t > l ? !1 : p !== "neighbours" || t !== l + 1 && t !== l - 1, /* @__PURE__ */ b(Fv, {
|
|
15273
15273
|
...e.props,
|
|
15274
15274
|
activeStep: l,
|
|
15275
15275
|
stepKey: t,
|
|
@@ -16788,31 +16788,34 @@ function Gy({ id: e, label: n, name: r, size: i, direction: a, required: o = !1,
|
|
|
16788
16788
|
})
|
|
16789
16789
|
});
|
|
16790
16790
|
}
|
|
16791
|
-
function Ky({ helpTag: e, errorMessage: n = "", infoMessage: r = "", label: i, disabled: a = !1, keyboardType: o = "text", title: s, name: c, value: l = !1, required: u = !1, spellCheck: d = !1, id: f, autoComplete: p = "off", readonly: m = !1, autofocus: h = !1, form: g = void 0, inputRef: _, onBlur: v, onChange: y, onFocus: S, onKeyDown: C, onKeyUp: w, onValueChanged: T,
|
|
16792
|
-
let [
|
|
16793
|
-
|
|
16794
|
-
let
|
|
16791
|
+
function Ky({ helpTag: e, errorMessage: n = "", infoMessage: r = "", label: i, disabled: a = !1, keyboardType: o = "text", title: s, name: c, value: l = !1, required: u = !1, spellCheck: d = !1, id: f, autoComplete: p = "off", readonly: m = !1, autofocus: h = !1, form: g = void 0, inputRef: _, onBlur: v, onChange: y, onFocus: S, onKeyDown: C, onKeyUp: w, onValueChanged: T, onDblClick: E, size: D, alignment: O, color: k = void 0, infoDataEl: A }) {
|
|
16792
|
+
let [j, M] = t.useState(!1), [N, P] = t.useState(!1), [F, I] = t.useState(!1), { defaults: L } = t.useContext(yh), { scheme: R } = Ne();
|
|
16793
|
+
k === void 0 && R === "dark" && (k = "light"), k === void 0 && R === "light" && (k = "dark");
|
|
16794
|
+
let ee = D ?? L.input.size, z = O ?? L.input.alignment, B = typeof n == "string" ? n : n({
|
|
16795
16795
|
value: l,
|
|
16796
|
-
touched:
|
|
16797
|
-
focused:
|
|
16796
|
+
touched: j,
|
|
16797
|
+
focused: F,
|
|
16798
16798
|
required: u,
|
|
16799
16799
|
disabled: a,
|
|
16800
16800
|
readonly: m
|
|
16801
|
-
}),
|
|
16802
|
-
|
|
16803
|
-
function te(e) {
|
|
16804
|
-
A || j(!0), v && v(e), F(!1);
|
|
16805
|
-
}
|
|
16801
|
+
}), V = typeof r == "string" ? r : r(l), te = "is-checkradio";
|
|
16802
|
+
te += uf(ee), te += cf(z), te += nf(k), m && (te += " is-static");
|
|
16806
16803
|
function ne(e) {
|
|
16807
|
-
|
|
16804
|
+
j || M(!0), v && v(e), I(!1);
|
|
16805
|
+
}
|
|
16806
|
+
function H(e) {
|
|
16807
|
+
j || M(!0), T && T(e.target.checked), y && y(e);
|
|
16808
16808
|
}
|
|
16809
|
-
function
|
|
16810
|
-
S && S(t, e),
|
|
16809
|
+
function re(t) {
|
|
16810
|
+
S && S(t, e), I(!0);
|
|
16811
|
+
}
|
|
16812
|
+
function U(e) {
|
|
16813
|
+
j || M(!0), E && E(e);
|
|
16811
16814
|
}
|
|
16812
16815
|
return /* @__PURE__ */ x(t.Fragment, { children: [
|
|
16813
16816
|
/* @__PURE__ */ b("input", {
|
|
16814
16817
|
type: "checkbox",
|
|
16815
|
-
className:
|
|
16818
|
+
className: te,
|
|
16816
16819
|
id: f ?? c,
|
|
16817
16820
|
ref: _,
|
|
16818
16821
|
name: c,
|
|
@@ -16828,29 +16831,30 @@ function Ky({ helpTag: e, errorMessage: n = "", infoMessage: r = "", label: i, d
|
|
|
16828
16831
|
disabled: a,
|
|
16829
16832
|
onKeyDown: C,
|
|
16830
16833
|
onKeyUp: w,
|
|
16831
|
-
onBlur:
|
|
16832
|
-
onChange:
|
|
16833
|
-
onFocus:
|
|
16834
|
-
|
|
16835
|
-
|
|
16834
|
+
onBlur: ne,
|
|
16835
|
+
onChange: H,
|
|
16836
|
+
onFocus: re,
|
|
16837
|
+
onDoubleClick: U,
|
|
16838
|
+
onMouseEnter: () => P(!0),
|
|
16839
|
+
onMouseLeave: () => P(!1)
|
|
16836
16840
|
}),
|
|
16837
16841
|
/* @__PURE__ */ x("label", {
|
|
16838
16842
|
htmlFor: f ?? c,
|
|
16839
|
-
onMouseEnter: () =>
|
|
16840
|
-
onMouseLeave: () =>
|
|
16843
|
+
onMouseEnter: () => P(!0),
|
|
16844
|
+
onMouseLeave: () => P(!1),
|
|
16841
16845
|
children: [
|
|
16842
16846
|
i ?? c,
|
|
16843
16847
|
" ",
|
|
16844
|
-
|
|
16848
|
+
A
|
|
16845
16849
|
]
|
|
16846
16850
|
}),
|
|
16847
|
-
|
|
16851
|
+
B.length > 0 && /* @__PURE__ */ b("p", {
|
|
16848
16852
|
className: "help is-danger",
|
|
16849
|
-
children:
|
|
16853
|
+
children: B
|
|
16850
16854
|
}),
|
|
16851
|
-
|
|
16855
|
+
V.length > 0 && /* @__PURE__ */ b("p", {
|
|
16852
16856
|
className: "help is-info",
|
|
16853
|
-
children:
|
|
16857
|
+
children: V
|
|
16854
16858
|
})
|
|
16855
16859
|
] });
|
|
16856
16860
|
}
|
|
@@ -24398,7 +24402,7 @@ function mO(e, t, n) {
|
|
|
24398
24402
|
topOpen: !0,
|
|
24399
24403
|
from: i,
|
|
24400
24404
|
to: a,
|
|
24401
|
-
preserveWhitespace: p.parent.type.whitespace
|
|
24405
|
+
preserveWhitespace: p.parent.type.whitespace != "pre" || "full",
|
|
24402
24406
|
findPositions: l,
|
|
24403
24407
|
ruleFromNode: hO,
|
|
24404
24408
|
context: p
|
|
@@ -25143,7 +25147,7 @@ function uk(e) {
|
|
|
25143
25147
|
}
|
|
25144
25148
|
function dk(e, t, n = { strict: !0 }) {
|
|
25145
25149
|
let r = Object.keys(t);
|
|
25146
|
-
return r.length
|
|
25150
|
+
return !r.length || r.every((r) => n.strict ? t[r] === e[r] : uk(t[r]) ? t[r].test(e[r]) : t[r] === e[r]);
|
|
25147
25151
|
}
|
|
25148
25152
|
function fk(e, t, n = {}) {
|
|
25149
25153
|
return e.find((e) => e.type === t && dk(Object.fromEntries(Object.keys(n).map((t) => [t, e.attrs[t]])), n));
|
|
@@ -25218,7 +25222,7 @@ function Sk() {
|
|
|
25218
25222
|
].includes(navigator.platform) || navigator.userAgent.includes("Mac") && "ontouchend" in document;
|
|
25219
25223
|
}
|
|
25220
25224
|
function Ck() {
|
|
25221
|
-
return typeof navigator < "u"
|
|
25225
|
+
return typeof navigator < "u" && /^((?!chrome|android).)*safari/i.test(navigator.userAgent);
|
|
25222
25226
|
}
|
|
25223
25227
|
var wk = (e = null, t = {}) => ({ editor: n, view: r, tr: i, dispatch: a }) => {
|
|
25224
25228
|
t = {
|
|
@@ -25394,7 +25398,7 @@ var jk = (e) => !("type" in e), Mk = (e, t, n) => ({ tr: r, dispatch: i, editor:
|
|
|
25394
25398
|
}
|
|
25395
25399
|
}, zk = () => ({ state: e, dispatch: t }) => SC(e, t), Bk = () => ({ state: e, dispatch: t }) => CC(e, t);
|
|
25396
25400
|
function Vk() {
|
|
25397
|
-
return typeof navigator < "u"
|
|
25401
|
+
return typeof navigator < "u" && /Mac/.test(navigator.platform);
|
|
25398
25402
|
}
|
|
25399
25403
|
function Hk(e) {
|
|
25400
25404
|
let t = e.split(/-(?!$)/), n = t[t.length - 1];
|
|
@@ -25444,7 +25448,7 @@ function Wk(e, t, n = {}) {
|
|
|
25444
25448
|
to: a
|
|
25445
25449
|
});
|
|
25446
25450
|
});
|
|
25447
|
-
let c = i - r, l = s.filter((e) => o
|
|
25451
|
+
let c = i - r, l = s.filter((e) => !o || o.name === e.node.type.name).filter((e) => dk(e.node.attrs, n, { strict: !1 }));
|
|
25448
25452
|
return a ? !!l.length : l.reduce((e, t) => e + t.to - t.from, 0) >= c;
|
|
25449
25453
|
}
|
|
25450
25454
|
var Gk = (e, t = {}) => ({ state: n, dispatch: r }) => Wk(n, ik(e, n.schema), t) ? PC(n, r) : !1, Kk = () => ({ state: e, dispatch: t }) => zC(e, t), qk = (e) => ({ state: t, dispatch: n }) => aw(ik(e, t.schema))(t, n), Jk = () => ({ state: e, dispatch: t }) => FC(e, t);
|
|
@@ -25692,7 +25696,7 @@ function CA(e, t) {
|
|
|
25692
25696
|
return t.filter((t) => t.type === e.type.name).filter((e) => e.attribute.rendered).map((t) => t.attribute.renderHTML ? t.attribute.renderHTML(e.attrs) || {} : { [t.name]: e.attrs[t.name] }).reduce((e, t) => SA(e, t), {});
|
|
25693
25697
|
}
|
|
25694
25698
|
function wA(e) {
|
|
25695
|
-
return typeof e == "string" ? e.match(/^[+-]?(?:\d*\.)?\d+$/) ? Number(e) : e === "true"
|
|
25699
|
+
return typeof e == "string" ? e.match(/^[+-]?(?:\d*\.)?\d+$/) ? Number(e) : e === "true" || e !== "false" && e : e;
|
|
25696
25700
|
}
|
|
25697
25701
|
function TA(e, t) {
|
|
25698
25702
|
return "style" in e ? e : {
|
|
@@ -25934,7 +25938,7 @@ var WA = (e, t = 500) => {
|
|
|
25934
25938
|
};
|
|
25935
25939
|
function GA(e, t, n = {}) {
|
|
25936
25940
|
let { empty: r, ranges: i } = e.selection, a = t ? hk(t, e.schema) : null;
|
|
25937
|
-
if (r) return !!(e.storedMarks || e.selection.$from.marks()).filter((e) => a
|
|
25941
|
+
if (r) return !!(e.storedMarks || e.selection.$from.marks()).filter((e) => !a || a.name === e.type.name).find((e) => dk(e.attrs, n, { strict: !1 }));
|
|
25938
25942
|
let o = 0, s = [];
|
|
25939
25943
|
if (i.forEach(({ $from: t, $to: n }) => {
|
|
25940
25944
|
let r = t.pos, i = n.pos;
|
|
@@ -25949,13 +25953,13 @@ function GA(e, t, n = {}) {
|
|
|
25949
25953
|
})));
|
|
25950
25954
|
});
|
|
25951
25955
|
}), o === 0) return !1;
|
|
25952
|
-
let c = s.filter((e) => a
|
|
25956
|
+
let c = s.filter((e) => !a || a.name === e.mark.type.name).filter((e) => dk(e.mark.attrs, n, { strict: !1 })).reduce((e, t) => e + t.to - t.from, 0), l = s.filter((e) => !a || e.mark.type !== a && e.mark.type.excludes(a)).reduce((e, t) => e + t.to - t.from, 0);
|
|
25953
25957
|
return (c > 0 ? c + l : c) >= o;
|
|
25954
25958
|
}
|
|
25955
25959
|
function KA(e, t, n = {}) {
|
|
25956
25960
|
if (!t) return Wk(e, null, n) || GA(e, null, n);
|
|
25957
25961
|
let r = Yk(t, e.schema);
|
|
25958
|
-
return r === "node" ? Wk(e, t, n) : r === "mark"
|
|
25962
|
+
return r === "node" ? Wk(e, t, n) : r === "mark" && GA(e, t, n);
|
|
25959
25963
|
}
|
|
25960
25964
|
var qA = (e, t) => {
|
|
25961
25965
|
let { $from: n, $to: r, $anchor: i } = e.selection;
|
|
@@ -25981,7 +25985,7 @@ function XA(e, t) {
|
|
|
25981
25985
|
options: r.options,
|
|
25982
25986
|
storage: r.storage
|
|
25983
25987
|
}));
|
|
25984
|
-
return typeof i == "string"
|
|
25988
|
+
return typeof i == "string" && i.split(" ").includes("list");
|
|
25985
25989
|
}
|
|
25986
25990
|
function ZA(e, { checkChildren: t = !0, ignoreWhitespace: n = !1 } = {}) {
|
|
25987
25991
|
if (n) {
|
|
@@ -26034,7 +26038,7 @@ function nj(e, t, n) {
|
|
|
26034
26038
|
}
|
|
26035
26039
|
let { ranges: a } = r;
|
|
26036
26040
|
return a.some(({ $from: t, $to: r }) => {
|
|
26037
|
-
let i = t.depth === 0
|
|
26041
|
+
let i = t.depth === 0 && e.doc.inlineContent && e.doc.type.allowsMarkType(n);
|
|
26038
26042
|
return e.doc.nodesBetween(t.pos, r.pos, (e, t, r) => {
|
|
26039
26043
|
if (i) return !1;
|
|
26040
26044
|
if (e.isInline) {
|
|
@@ -26438,7 +26442,7 @@ function Mj(e) {
|
|
|
26438
26442
|
return Object.prototype.toString.call(e).slice(8, -1);
|
|
26439
26443
|
}
|
|
26440
26444
|
function Nj(e) {
|
|
26441
|
-
return Mj(e) === "Object"
|
|
26445
|
+
return Mj(e) === "Object" && e.constructor === Object && Object.getPrototypeOf(e) === Object.prototype;
|
|
26442
26446
|
}
|
|
26443
26447
|
function Pj(e, t) {
|
|
26444
26448
|
let n = { ...e };
|
|
@@ -26893,7 +26897,7 @@ var Gj = class e extends Fj {
|
|
|
26893
26897
|
let i = r.mapping;
|
|
26894
26898
|
r.steps.forEach((t, n) => {
|
|
26895
26899
|
if (t instanceof Xx) {
|
|
26896
|
-
let a = i.slice(n).map(t.from, -1), o = i.slice(n).map(t.to), s = i.invert().map(a, -1), c = i.invert().map(o), l = a > 0
|
|
26900
|
+
let a = i.slice(n).map(t.from, -1), o = i.slice(n).map(t.to), s = i.invert().map(a, -1), c = i.invert().map(o), l = a > 0 && r.doc.nodeAt(a - 1)?.marks.some((e) => e.eq(t.mark)), u = r.doc.nodeAt(o)?.marks.some((e) => e.eq(t.mark));
|
|
26897
26901
|
this.editor.emit("delete", {
|
|
26898
26902
|
type: "mark",
|
|
26899
26903
|
mark: t.mark,
|
|
@@ -27347,7 +27351,7 @@ var oM = class extends Dj {
|
|
|
27347
27351
|
eM,
|
|
27348
27352
|
Jj,
|
|
27349
27353
|
nM.configure({ direction: this.options.textDirection })
|
|
27350
|
-
].filter((e) => typeof this.options.enableCoreExtensions
|
|
27354
|
+
].filter((e) => typeof this.options.enableCoreExtensions != "object" || this.options.enableCoreExtensions[e.name] !== !1) : [], ...this.options.extensions].filter((e) => [
|
|
27351
27355
|
"extension",
|
|
27352
27356
|
"node",
|
|
27353
27357
|
"mark"
|
|
@@ -27618,7 +27622,7 @@ var dM = (e) => "touches" in e, fM = class {
|
|
|
27618
27622
|
e !== this.lastEditableState && (this.lastEditableState = e, e ? e && this.handleMap.size === 0 && this.attachHandles() : this.removeHandles());
|
|
27619
27623
|
}
|
|
27620
27624
|
update(e, t, n) {
|
|
27621
|
-
return e.type === this.node.type ? (this.node = e, this.onUpdate
|
|
27625
|
+
return e.type === this.node.type ? (this.node = e, !this.onUpdate || this.onUpdate(e, t, n)) : !1;
|
|
27622
27626
|
}
|
|
27623
27627
|
destroy() {
|
|
27624
27628
|
this.isResizing && (this.container.dataset.resizeState = "false", this.classNames.resizing && this.container.classList.remove(this.classNames.resizing), document.removeEventListener("mousemove", this.handleMouseMove), document.removeEventListener("mouseup", this.handleMouseUp), document.removeEventListener("keydown", this.handleKeyDown), document.removeEventListener("keyup", this.handleKeyUp), this.isResizing = !1, this.activeHandle = null), this.editor.off("update", this.handleEditorUpdate.bind(this)), this.container.remove();
|
|
@@ -28176,7 +28180,7 @@ function _N({ areArrayBuffersEqual: e, areArraysEqual: t, areDataViewsEqual: n,
|
|
|
28176
28180
|
if (h == null || g == null) return !1;
|
|
28177
28181
|
let v = typeof h;
|
|
28178
28182
|
if (v !== typeof g) return !1;
|
|
28179
|
-
if (v !== "object") return v === "number" ? s(h, g, _) : v === "function"
|
|
28183
|
+
if (v !== "object") return v === "number" ? s(h, g, _) : v === "function" && a(h, g, _);
|
|
28180
28184
|
let y = h.constructor;
|
|
28181
28185
|
if (y !== g.constructor) return !1;
|
|
28182
28186
|
if (y === Object) return c(h, g, _);
|
|
@@ -28543,7 +28547,7 @@ var PN = process.env.NODE_ENV !== "production", FN = typeof window > "u", IN = F
|
|
|
28543
28547
|
"onContentError",
|
|
28544
28548
|
"onDrop",
|
|
28545
28549
|
"onPaste"
|
|
28546
|
-
].includes(n) ? !0 : n === "extensions" && e.extensions && t.extensions ? e.extensions.length === t.extensions.length
|
|
28550
|
+
].includes(n) ? !0 : n === "extensions" && e.extensions && t.extensions ? e.extensions.length === t.extensions.length && e.extensions.every((e, n) => e === t.extensions?.[n]) : e[n] === t[n]);
|
|
28547
28551
|
}
|
|
28548
28552
|
onRender(t) {
|
|
28549
28553
|
return () => (this.isComponentMounted = !0, clearTimeout(this.scheduledDestructionTimeout), this.editor && !this.editor.isDestroyed && t.length === 0 ? e.compareOptions(this.options.current, this.editor.options) || this.editor.setOptions({
|
|
@@ -28831,7 +28835,7 @@ var tP = wM.create({
|
|
|
28831
28835
|
return [{ tag: "sub" }, {
|
|
28832
28836
|
style: "vertical-align",
|
|
28833
28837
|
getAttrs(e) {
|
|
28834
|
-
return e === "sub"
|
|
28838
|
+
return e === "sub" && null;
|
|
28835
28839
|
}
|
|
28836
28840
|
}];
|
|
28837
28841
|
},
|
|
@@ -28861,7 +28865,7 @@ var tP = wM.create({
|
|
|
28861
28865
|
return [{ tag: "sup" }, {
|
|
28862
28866
|
style: "vertical-align",
|
|
28863
28867
|
getAttrs(e) {
|
|
28864
|
-
return e === "super"
|
|
28868
|
+
return e === "super" && null;
|
|
28865
28869
|
}
|
|
28866
28870
|
}];
|
|
28867
28871
|
},
|
|
@@ -31370,7 +31374,7 @@ function aR(e) {
|
|
|
31370
31374
|
...e,
|
|
31371
31375
|
from: s + e.start + 1,
|
|
31372
31376
|
to: s + e.end + 1
|
|
31373
|
-
})).filter((e) => r.schema.marks.code
|
|
31377
|
+
})).filter((e) => !r.schema.marks.code || !r.doc.rangeHasMark(e.from, e.to, r.schema.marks.code)).filter((t) => e.validate(t.value)).filter((t) => e.shouldAutoLink(t.value)).forEach((t) => {
|
|
31374
31378
|
BA(t.from, t.to, r.doc).some((t) => t.mark.type === e.type) || o.addMark(t.from, t.to, e.type.create({ href: t.href }));
|
|
31375
31379
|
});
|
|
31376
31380
|
}
|
|
@@ -31590,7 +31594,7 @@ var lR = Ij.create({
|
|
|
31590
31594
|
})), e.push(oR({
|
|
31591
31595
|
type: this.type,
|
|
31592
31596
|
editor: this.editor,
|
|
31593
|
-
openOnClick: this.options.openOnClick === "whenNotEditable"
|
|
31597
|
+
openOnClick: this.options.openOnClick === "whenNotEditable" || this.options.openOnClick,
|
|
31594
31598
|
enableClickSelection: this.options.enableClickSelection
|
|
31595
31599
|
})), this.options.linkOnPaste && e.push(sR({
|
|
31596
31600
|
editor: this.editor,
|
|
@@ -35150,7 +35154,7 @@ function ZV(e) {
|
|
|
35150
35154
|
return BV(NV(e)) === 1;
|
|
35151
35155
|
}
|
|
35152
35156
|
function QV(e, t) {
|
|
35153
|
-
return SV.has(e) ? HV(t) : CV.has(e) ? UV(t) : wV.has(e) ? WV(t) : TV.has(e) ? GV(t) : EV.has(e) ? KV(t) : DV.has(e) ? qV(t) : OV.has(e) ? JV(t) : kV.has(e) ? YV(t) : AV.has(e) ? XV(t) : jV.has(e)
|
|
35157
|
+
return SV.has(e) ? HV(t) : CV.has(e) ? UV(t) : wV.has(e) ? WV(t) : TV.has(e) ? GV(t) : EV.has(e) ? KV(t) : DV.has(e) ? qV(t) : OV.has(e) ? JV(t) : kV.has(e) ? YV(t) : AV.has(e) ? XV(t) : !jV.has(e) || ZV(t);
|
|
35154
35158
|
}
|
|
35155
35159
|
function $V(e, t) {
|
|
35156
35160
|
try {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "loon-bulma-react",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2026.0.
|
|
4
|
+
"version": "2026.0.60",
|
|
5
5
|
"description": "Bulma & React componenten voor Loon Salarissoftware",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "MIT",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"prepublishOnly": "npm run lib:build"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@fortawesome/fontawesome-svg-core": "^7.3.
|
|
30
|
-
"@fortawesome/free-solid-svg-icons": "^7.3.
|
|
29
|
+
"@fortawesome/fontawesome-svg-core": "^7.3.1",
|
|
30
|
+
"@fortawesome/free-solid-svg-icons": "^7.3.1",
|
|
31
31
|
"@fortawesome/react-fontawesome": "^3.4.0",
|
|
32
32
|
"@tiptap/extension-bold": "^3.22.4",
|
|
33
33
|
"@tiptap/extension-bullet-list": "^3.22.4",
|
|
@@ -56,19 +56,19 @@
|
|
|
56
56
|
"@tiptap/extension-text-style": "^3.22.4",
|
|
57
57
|
"@tiptap/extension-underline": "^3.22.4",
|
|
58
58
|
"@tiptap/react": "^3.22.4",
|
|
59
|
-
"@vitejs/plugin-react": "^6.0.
|
|
59
|
+
"@vitejs/plugin-react": "^6.0.4",
|
|
60
60
|
"bulma": "^1.0.4",
|
|
61
61
|
"date-fns": "^4.4.0",
|
|
62
|
-
"npm": "^12.0.
|
|
62
|
+
"npm": "^12.0.1",
|
|
63
63
|
"rc-tooltip": "^6.4.0",
|
|
64
|
-
"react-is": "^19.2.
|
|
64
|
+
"react-is": "^19.2.8",
|
|
65
65
|
"react-syntax-highlighter": "^16.1.1"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@eslint/compat": "^2.1.0",
|
|
69
|
-
"@eslint/eslintrc": "^3.3.
|
|
69
|
+
"@eslint/eslintrc": "^3.3.6",
|
|
70
70
|
"@eslint/js": "^9.39.2",
|
|
71
|
-
"@testing-library/jest-dom": "^
|
|
71
|
+
"@testing-library/jest-dom": "^7.0.0",
|
|
72
72
|
"@testing-library/react": "^16.3.2",
|
|
73
73
|
"@testing-library/user-event": "^14.6.1",
|
|
74
74
|
"@types/node": "^26.1.1",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"@types/react-is": "^19.2.0",
|
|
78
78
|
"@types/react-syntax-highlighter": "^15.5.13",
|
|
79
79
|
"@typescript-eslint/parser": "^8.62.0",
|
|
80
|
-
"@vitejs/plugin-react-swc": "^4.3.
|
|
80
|
+
"@vitejs/plugin-react-swc": "^4.3.2",
|
|
81
81
|
"@vitest/ui": "^4.1.10",
|
|
82
82
|
"esbuild": "^0.28.1",
|
|
83
83
|
"eslint": "^9.39.2",
|
|
@@ -92,15 +92,15 @@
|
|
|
92
92
|
"eslint-plugin-standard": "^5.0.0",
|
|
93
93
|
"eslint-plugin-testing-library": "^7.16.0",
|
|
94
94
|
"globals": "^17.7.0",
|
|
95
|
-
"happy-dom": "^20.
|
|
96
|
-
"prettier": "^3.9.
|
|
97
|
-
"react": "^19.2.
|
|
98
|
-
"react-dom": "^19.2.
|
|
95
|
+
"happy-dom": "^20.11.0",
|
|
96
|
+
"prettier": "^3.9.6",
|
|
97
|
+
"react": "^19.2.8",
|
|
98
|
+
"react-dom": "^19.2.8",
|
|
99
99
|
"rollup-plugin-copy": "^3.5.0",
|
|
100
|
-
"sass": "^1.101.
|
|
100
|
+
"sass": "^1.101.3",
|
|
101
101
|
"typescript": "^6.0.3",
|
|
102
|
-
"typescript-eslint": "^8.
|
|
103
|
-
"vite": "^8.1.
|
|
102
|
+
"typescript-eslint": "^8.65.0",
|
|
103
|
+
"vite": "^8.1.5",
|
|
104
104
|
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
105
105
|
"vite-tsconfig-paths": "^6.1.1",
|
|
106
106
|
"vitest": "^4.1.10"
|