@vuetify/nightly 3.7.2-master.2024-09-22 → 3.7.2-master.2024-09-26
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/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +150 -150
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +3242 -3242
- package/dist/vuetify-labs.d.ts +194 -194
- package/dist/vuetify-labs.esm.js +7 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +7 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +5620 -5620
- package/dist/vuetify.d.ts +210 -210
- package/dist/vuetify.esm.js +7 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +7 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +8 -8
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +22 -22
- package/lib/components/VBottomSheet/index.d.mts +4 -4
- package/lib/components/VCarousel/index.d.mts +2 -2
- package/lib/components/VCheckbox/index.d.mts +2 -2
- package/lib/components/VChip/VChip.mjs +2 -1
- package/lib/components/VChip/VChip.mjs.map +1 -1
- package/lib/components/VColorPicker/VColorPicker.mjs +2 -2
- package/lib/components/VColorPicker/VColorPicker.mjs.map +1 -1
- package/lib/components/VCombobox/index.d.mts +22 -22
- package/lib/components/VConfirmEdit/__test__/VConfirmEdit.spec.browser.mjs +87 -0
- package/lib/components/VConfirmEdit/__test__/VConfirmEdit.spec.browser.mjs.map +1 -0
- package/lib/components/VDataTable/index.d.mts +6 -6
- package/lib/components/VDatePicker/index.d.mts +2 -2
- package/lib/components/VDialog/index.d.mts +22 -22
- package/lib/components/VFileInput/__tests__/text.txt +1 -0
- package/lib/components/VFileInput/index.d.mts +3 -3
- package/lib/components/VInput/index.d.mts +2 -2
- package/lib/components/VList/VListItem.mjs +1 -0
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VMenu/index.d.mts +20 -20
- package/lib/components/VMessages/index.d.mts +8 -8
- package/lib/components/VNavigationDrawer/index.d.mts +7 -7
- package/lib/components/VOverlay/index.d.mts +4 -4
- package/lib/components/VRadioGroup/index.d.mts +2 -2
- package/lib/components/VSelect/index.d.mts +22 -22
- package/lib/components/VSnackbar/index.d.mts +31 -31
- package/lib/components/VSpeedDial/index.d.mts +2 -2
- package/lib/components/VSwitch/index.d.mts +2 -2
- package/lib/components/VTextField/index.d.mts +3 -3
- package/lib/components/VTextarea/index.d.mts +3 -3
- package/lib/components/VTooltip/index.d.mts +24 -24
- package/lib/components/VWindow/index.d.mts +2 -2
- package/lib/components/index.d.mts +157 -157
- package/lib/directives/ripple/index.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +53 -53
- package/lib/labs/VNumberInput/index.d.mts +9 -9
- package/lib/labs/VSnackbarQueue/index.d.mts +52 -52
- package/lib/labs/VTreeview/index.d.mts +7 -7
- package/lib/labs/components.d.mts +68 -68
- package/package.json +22 -15
- package/lib/components/VConfirmEdit/__test__/VConfirmEdit.spec.cy.mjs +0 -74
- package/lib/components/VConfirmEdit/__test__/VConfirmEdit.spec.cy.mjs.map +0 -1
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.mjs","names":["isObject","keyCodes","stopSymbol","Symbol","DELAY_RIPPLE","transform","el","value","style","webkitTransform","isTouchEvent","e","constructor","name","isKeyboardEvent","calculate","arguments","length","undefined","localX","localY","offset","getBoundingClientRect","target","touches","clientX","left","clientY","top","radius","scale","_ripple","circle","clientWidth","center","Math","sqrt","clientHeight","centerX","centerY","x","y","ripples","show","enabled","container","document","createElement","animation","appendChild","className","class","size","width","height","computed","window","getComputedStyle","position","dataset","previousPosition","classList","add","activated","String","performance","now","setTimeout","remove","hide","getElementsByClassName","isHiding","diff","Number","delay","max","parentNode","removeChild","isRippleEnabled","rippleShow","element","currentTarget","touched","isTouch","centered","showTimerCommit","showTimer","rippleStop","rippleHide","clearTimeout","type","rippleCancelShow","keyboardRipple","keyboardRippleShow","keyCode","enter","space","keyboardRippleHide","focusRippleHide","updateRipple","binding","wasEnabled","modifiers","stop","addEventListener","passive","removeListeners","removeEventListener","mounted","unmounted","updated","oldValue","Ripple"],"sources":["../../../src/directives/ripple/index.ts"],"sourcesContent":["// Styles\nimport './VRipple.sass'\n\n// Utilities\nimport { isObject, keyCodes } from '@/util'\n\n// Types\nimport type {\n DirectiveBinding,\n} from 'vue'\n\nconst stopSymbol = Symbol('rippleStop')\n\ntype VuetifyRippleEvent = (MouseEvent | TouchEvent | KeyboardEvent) & { [stopSymbol]?: boolean }\n\nconst DELAY_RIPPLE = 80\n\nfunction transform (el: HTMLElement, value: string) {\n el.style.transform = value\n el.style.webkitTransform = value\n}\n\ninterface RippleOptions {\n class?: string\n center?: boolean\n circle?: boolean\n}\n\nexport interface RippleDirectiveBinding extends Omit<DirectiveBinding, 'modifiers' | 'value'> {\n value?: boolean | { class: string }\n modifiers: {\n center?: boolean\n circle?: boolean\n stop?: boolean\n }\n}\n\nfunction isTouchEvent (e: VuetifyRippleEvent): e is TouchEvent {\n return e.constructor.name === 'TouchEvent'\n}\n\nfunction isKeyboardEvent (e: VuetifyRippleEvent): e is KeyboardEvent {\n return e.constructor.name === 'KeyboardEvent'\n}\n\nconst calculate = (\n e: VuetifyRippleEvent,\n el: HTMLElement,\n value: RippleOptions = {}\n) => {\n let localX = 0\n let localY = 0\n\n if (!isKeyboardEvent(e)) {\n const offset = el.getBoundingClientRect()\n const target = isTouchEvent(e) ? e.touches[e.touches.length - 1] : e\n\n localX = target.clientX - offset.left\n localY = target.clientY - offset.top\n }\n\n let radius = 0\n let scale = 0.3\n if (el._ripple?.circle) {\n scale = 0.15\n radius = el.clientWidth / 2\n radius = value.center ? radius : radius + Math.sqrt((localX - radius) ** 2 + (localY - radius) ** 2) / 4\n } else {\n radius = Math.sqrt(el.clientWidth ** 2 + el.clientHeight ** 2) / 2\n }\n\n const centerX = `${(el.clientWidth - (radius * 2)) / 2}px`\n const centerY = `${(el.clientHeight - (radius * 2)) / 2}px`\n\n const x = value.center ? centerX : `${localX - radius}px`\n const y = value.center ? centerY : `${localY - radius}px`\n\n return { radius, scale, x, y, centerX, centerY }\n}\n\nconst ripples = {\n /* eslint-disable max-statements */\n show (\n e: VuetifyRippleEvent,\n el: HTMLElement,\n value: RippleOptions = {}\n ) {\n if (!el?._ripple?.enabled) {\n return\n }\n\n const container = document.createElement('span')\n const animation = document.createElement('span')\n\n container.appendChild(animation)\n container.className = 'v-ripple__container'\n\n if (value.class) {\n container.className += ` ${value.class}`\n }\n\n const { radius, scale, x, y, centerX, centerY } = calculate(e, el, value)\n\n const size = `${radius * 2}px`\n animation.className = 'v-ripple__animation'\n animation.style.width = size\n animation.style.height = size\n\n el.appendChild(container)\n\n const computed = window.getComputedStyle(el)\n if (computed && computed.position === 'static') {\n el.style.position = 'relative'\n el.dataset.previousPosition = 'static'\n }\n\n animation.classList.add('v-ripple__animation--enter')\n animation.classList.add('v-ripple__animation--visible')\n transform(animation, `translate(${x}, ${y}) scale3d(${scale},${scale},${scale})`)\n animation.dataset.activated = String(performance.now())\n\n setTimeout(() => {\n animation.classList.remove('v-ripple__animation--enter')\n animation.classList.add('v-ripple__animation--in')\n transform(animation, `translate(${centerX}, ${centerY}) scale3d(1,1,1)`)\n }, 0)\n },\n\n hide (el: HTMLElement | null) {\n if (!el?._ripple?.enabled) return\n\n const ripples = el.getElementsByClassName('v-ripple__animation')\n\n if (ripples.length === 0) return\n const animation = ripples[ripples.length - 1]\n\n if (animation.dataset.isHiding) return\n else animation.dataset.isHiding = 'true'\n\n const diff = performance.now() - Number(animation.dataset.activated)\n const delay = Math.max(250 - diff, 0)\n\n setTimeout(() => {\n animation.classList.remove('v-ripple__animation--in')\n animation.classList.add('v-ripple__animation--out')\n\n setTimeout(() => {\n const ripples = el.getElementsByClassName('v-ripple__animation')\n if (ripples.length === 1 && el.dataset.previousPosition) {\n el.style.position = el.dataset.previousPosition\n delete el.dataset.previousPosition\n }\n\n if (animation.parentNode?.parentNode === el) el.removeChild(animation.parentNode)\n }, 300)\n }, delay)\n },\n}\n\nfunction isRippleEnabled (value: any): value is true {\n return typeof value === 'undefined' || !!value\n}\n\nfunction rippleShow (e: VuetifyRippleEvent) {\n const value: RippleOptions = {}\n const element = e.currentTarget as HTMLElement | undefined\n\n if (!element?._ripple || element._ripple.touched || e[stopSymbol]) return\n\n // Don't allow the event to trigger ripples on any other elements\n e[stopSymbol] = true\n\n if (isTouchEvent(e)) {\n element._ripple.touched = true\n element._ripple.isTouch = true\n } else {\n // It's possible for touch events to fire\n // as mouse events on Android/iOS, this\n // will skip the event call if it has\n // already been registered as touch\n if (element._ripple.isTouch) return\n }\n\n value.center = element._ripple.centered || isKeyboardEvent(e)\n if (element._ripple.class) {\n value.class = element._ripple.class\n }\n\n if (isTouchEvent(e)) {\n // already queued that shows or hides the ripple\n if (element._ripple.showTimerCommit) return\n\n element._ripple.showTimerCommit = () => {\n ripples.show(e, element, value)\n }\n element._ripple.showTimer = window.setTimeout(() => {\n if (element?._ripple?.showTimerCommit) {\n element._ripple.showTimerCommit()\n element._ripple.showTimerCommit = null\n }\n }, DELAY_RIPPLE)\n } else {\n ripples.show(e, element, value)\n }\n}\n\nfunction rippleStop (e: VuetifyRippleEvent) {\n e[stopSymbol] = true\n}\n\nfunction rippleHide (e: Event) {\n const element = e.currentTarget as HTMLElement | null\n if (!element?._ripple) return\n\n window.clearTimeout(element._ripple.showTimer)\n\n // The touch interaction occurs before the show timer is triggered.\n // We still want to show ripple effect.\n if (e.type === 'touchend' && element._ripple.showTimerCommit) {\n element._ripple.showTimerCommit()\n element._ripple.showTimerCommit = null\n\n // re-queue ripple hiding\n element._ripple.showTimer = window.setTimeout(() => {\n rippleHide(e)\n })\n return\n }\n\n window.setTimeout(() => {\n if (element._ripple) {\n element._ripple.touched = false\n }\n })\n ripples.hide(element)\n}\n\nfunction rippleCancelShow (e: MouseEvent | TouchEvent) {\n const element = e.currentTarget as HTMLElement | undefined\n\n if (!element?._ripple) return\n\n if (element._ripple.showTimerCommit) {\n element._ripple.showTimerCommit = null\n }\n\n window.clearTimeout(element._ripple.showTimer)\n}\n\nlet keyboardRipple = false\n\nfunction keyboardRippleShow (e: KeyboardEvent) {\n if (!keyboardRipple && (e.keyCode === keyCodes.enter || e.keyCode === keyCodes.space)) {\n keyboardRipple = true\n rippleShow(e)\n }\n}\n\nfunction keyboardRippleHide (e: KeyboardEvent) {\n keyboardRipple = false\n rippleHide(e)\n}\n\nfunction focusRippleHide (e: FocusEvent) {\n if (keyboardRipple) {\n keyboardRipple = false\n rippleHide(e)\n }\n}\n\nfunction updateRipple (el: HTMLElement, binding: RippleDirectiveBinding, wasEnabled: boolean) {\n const { value, modifiers } = binding\n const enabled = isRippleEnabled(value)\n if (!enabled) {\n ripples.hide(el)\n }\n\n el._ripple = el._ripple ?? {}\n el._ripple.enabled = enabled\n el._ripple.centered = modifiers.center\n el._ripple.circle = modifiers.circle\n if (isObject(value) && value.class) {\n el._ripple.class = value.class\n }\n\n if (enabled && !wasEnabled) {\n if (modifiers.stop) {\n el.addEventListener('touchstart', rippleStop, { passive: true })\n el.addEventListener('mousedown', rippleStop)\n return\n }\n\n el.addEventListener('touchstart', rippleShow, { passive: true })\n el.addEventListener('touchend', rippleHide, { passive: true })\n el.addEventListener('touchmove', rippleCancelShow, { passive: true })\n el.addEventListener('touchcancel', rippleHide)\n\n el.addEventListener('mousedown', rippleShow)\n el.addEventListener('mouseup', rippleHide)\n el.addEventListener('mouseleave', rippleHide)\n\n el.addEventListener('keydown', keyboardRippleShow)\n el.addEventListener('keyup', keyboardRippleHide)\n\n el.addEventListener('blur', focusRippleHide)\n\n // Anchor tags can be dragged, causes other hides to fail - #1537\n el.addEventListener('dragstart', rippleHide, { passive: true })\n } else if (!enabled && wasEnabled) {\n removeListeners(el)\n }\n}\n\nfunction removeListeners (el: HTMLElement) {\n el.removeEventListener('mousedown', rippleShow)\n el.removeEventListener('touchstart', rippleShow)\n el.removeEventListener('touchend', rippleHide)\n el.removeEventListener('touchmove', rippleCancelShow)\n el.removeEventListener('touchcancel', rippleHide)\n el.removeEventListener('mouseup', rippleHide)\n el.removeEventListener('mouseleave', rippleHide)\n el.removeEventListener('keydown', keyboardRippleShow)\n el.removeEventListener('keyup', keyboardRippleHide)\n el.removeEventListener('dragstart', rippleHide)\n el.removeEventListener('blur', focusRippleHide)\n}\n\nfunction mounted (el: HTMLElement, binding: RippleDirectiveBinding) {\n updateRipple(el, binding, false)\n}\n\nfunction unmounted (el: HTMLElement) {\n delete el._ripple\n removeListeners(el)\n}\n\nfunction updated (el: HTMLElement, binding: RippleDirectiveBinding) {\n if (binding.value === binding.oldValue) {\n return\n }\n\n const wasEnabled = isRippleEnabled(binding.oldValue)\n updateRipple(el, binding, wasEnabled)\n}\n\nexport const Ripple = {\n mounted,\n unmounted,\n updated,\n}\n\nexport default Ripple\n"],"mappings":"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","ignoreList":[]}
|
1
|
+
{"version":3,"file":"index.mjs","names":["isObject","keyCodes","stopSymbol","Symbol","DELAY_RIPPLE","transform","el","value","style","webkitTransform","isTouchEvent","e","constructor","name","isKeyboardEvent","calculate","arguments","length","undefined","localX","localY","offset","getBoundingClientRect","target","touches","clientX","left","clientY","top","radius","scale","_ripple","circle","clientWidth","center","Math","sqrt","clientHeight","centerX","centerY","x","y","ripples","show","enabled","container","document","createElement","animation","appendChild","className","class","size","width","height","computed","window","getComputedStyle","position","dataset","previousPosition","classList","add","activated","String","performance","now","setTimeout","remove","hide","getElementsByClassName","isHiding","diff","Number","delay","max","parentNode","removeChild","isRippleEnabled","rippleShow","element","currentTarget","touched","isTouch","centered","showTimerCommit","showTimer","rippleStop","rippleHide","clearTimeout","type","rippleCancelShow","keyboardRipple","keyboardRippleShow","keyCode","enter","space","keyboardRippleHide","focusRippleHide","updateRipple","binding","wasEnabled","modifiers","stop","addEventListener","passive","removeListeners","removeEventListener","mounted","unmounted","updated","oldValue","Ripple"],"sources":["../../../src/directives/ripple/index.ts"],"sourcesContent":["// Styles\nimport './VRipple.sass'\n\n// Utilities\nimport { isObject, keyCodes } from '@/util'\n\n// Types\nimport type { DirectiveBinding } from 'vue'\n\nconst stopSymbol = Symbol('rippleStop')\n\ntype VuetifyRippleEvent = (MouseEvent | TouchEvent | KeyboardEvent) & { [stopSymbol]?: boolean }\n\nconst DELAY_RIPPLE = 80\n\nfunction transform (el: HTMLElement, value: string) {\n el.style.transform = value\n el.style.webkitTransform = value\n}\n\ninterface RippleOptions {\n class?: string\n center?: boolean\n circle?: boolean\n}\n\nexport interface RippleDirectiveBinding extends Omit<DirectiveBinding, 'modifiers' | 'value'> {\n value?: boolean | { class: string }\n modifiers: {\n center?: boolean\n circle?: boolean\n stop?: boolean\n }\n}\n\nfunction isTouchEvent (e: VuetifyRippleEvent): e is TouchEvent {\n return e.constructor.name === 'TouchEvent'\n}\n\nfunction isKeyboardEvent (e: VuetifyRippleEvent): e is KeyboardEvent {\n return e.constructor.name === 'KeyboardEvent'\n}\n\nconst calculate = (\n e: VuetifyRippleEvent,\n el: HTMLElement,\n value: RippleOptions = {}\n) => {\n let localX = 0\n let localY = 0\n\n if (!isKeyboardEvent(e)) {\n const offset = el.getBoundingClientRect()\n const target = isTouchEvent(e) ? e.touches[e.touches.length - 1] : e\n\n localX = target.clientX - offset.left\n localY = target.clientY - offset.top\n }\n\n let radius = 0\n let scale = 0.3\n if (el._ripple?.circle) {\n scale = 0.15\n radius = el.clientWidth / 2\n radius = value.center ? radius : radius + Math.sqrt((localX - radius) ** 2 + (localY - radius) ** 2) / 4\n } else {\n radius = Math.sqrt(el.clientWidth ** 2 + el.clientHeight ** 2) / 2\n }\n\n const centerX = `${(el.clientWidth - (radius * 2)) / 2}px`\n const centerY = `${(el.clientHeight - (radius * 2)) / 2}px`\n\n const x = value.center ? centerX : `${localX - radius}px`\n const y = value.center ? centerY : `${localY - radius}px`\n\n return { radius, scale, x, y, centerX, centerY }\n}\n\nconst ripples = {\n /* eslint-disable max-statements */\n show (\n e: VuetifyRippleEvent,\n el: HTMLElement,\n value: RippleOptions = {}\n ) {\n if (!el?._ripple?.enabled) {\n return\n }\n\n const container = document.createElement('span')\n const animation = document.createElement('span')\n\n container.appendChild(animation)\n container.className = 'v-ripple__container'\n\n if (value.class) {\n container.className += ` ${value.class}`\n }\n\n const { radius, scale, x, y, centerX, centerY } = calculate(e, el, value)\n\n const size = `${radius * 2}px`\n animation.className = 'v-ripple__animation'\n animation.style.width = size\n animation.style.height = size\n\n el.appendChild(container)\n\n const computed = window.getComputedStyle(el)\n if (computed && computed.position === 'static') {\n el.style.position = 'relative'\n el.dataset.previousPosition = 'static'\n }\n\n animation.classList.add('v-ripple__animation--enter')\n animation.classList.add('v-ripple__animation--visible')\n transform(animation, `translate(${x}, ${y}) scale3d(${scale},${scale},${scale})`)\n animation.dataset.activated = String(performance.now())\n\n setTimeout(() => {\n animation.classList.remove('v-ripple__animation--enter')\n animation.classList.add('v-ripple__animation--in')\n transform(animation, `translate(${centerX}, ${centerY}) scale3d(1,1,1)`)\n }, 0)\n },\n\n hide (el: HTMLElement | null) {\n if (!el?._ripple?.enabled) return\n\n const ripples = el.getElementsByClassName('v-ripple__animation')\n\n if (ripples.length === 0) return\n const animation = ripples[ripples.length - 1]\n\n if (animation.dataset.isHiding) return\n else animation.dataset.isHiding = 'true'\n\n const diff = performance.now() - Number(animation.dataset.activated)\n const delay = Math.max(250 - diff, 0)\n\n setTimeout(() => {\n animation.classList.remove('v-ripple__animation--in')\n animation.classList.add('v-ripple__animation--out')\n\n setTimeout(() => {\n const ripples = el.getElementsByClassName('v-ripple__animation')\n if (ripples.length === 1 && el.dataset.previousPosition) {\n el.style.position = el.dataset.previousPosition\n delete el.dataset.previousPosition\n }\n\n if (animation.parentNode?.parentNode === el) el.removeChild(animation.parentNode)\n }, 300)\n }, delay)\n },\n}\n\nfunction isRippleEnabled (value: any): value is true {\n return typeof value === 'undefined' || !!value\n}\n\nfunction rippleShow (e: VuetifyRippleEvent) {\n const value: RippleOptions = {}\n const element = e.currentTarget as HTMLElement | undefined\n\n if (!element?._ripple || element._ripple.touched || e[stopSymbol]) return\n\n // Don't allow the event to trigger ripples on any other elements\n e[stopSymbol] = true\n\n if (isTouchEvent(e)) {\n element._ripple.touched = true\n element._ripple.isTouch = true\n } else {\n // It's possible for touch events to fire\n // as mouse events on Android/iOS, this\n // will skip the event call if it has\n // already been registered as touch\n if (element._ripple.isTouch) return\n }\n\n value.center = element._ripple.centered || isKeyboardEvent(e)\n if (element._ripple.class) {\n value.class = element._ripple.class\n }\n\n if (isTouchEvent(e)) {\n // already queued that shows or hides the ripple\n if (element._ripple.showTimerCommit) return\n\n element._ripple.showTimerCommit = () => {\n ripples.show(e, element, value)\n }\n element._ripple.showTimer = window.setTimeout(() => {\n if (element?._ripple?.showTimerCommit) {\n element._ripple.showTimerCommit()\n element._ripple.showTimerCommit = null\n }\n }, DELAY_RIPPLE)\n } else {\n ripples.show(e, element, value)\n }\n}\n\nfunction rippleStop (e: VuetifyRippleEvent) {\n e[stopSymbol] = true\n}\n\nfunction rippleHide (e: Event) {\n const element = e.currentTarget as HTMLElement | null\n if (!element?._ripple) return\n\n window.clearTimeout(element._ripple.showTimer)\n\n // The touch interaction occurs before the show timer is triggered.\n // We still want to show ripple effect.\n if (e.type === 'touchend' && element._ripple.showTimerCommit) {\n element._ripple.showTimerCommit()\n element._ripple.showTimerCommit = null\n\n // re-queue ripple hiding\n element._ripple.showTimer = window.setTimeout(() => {\n rippleHide(e)\n })\n return\n }\n\n window.setTimeout(() => {\n if (element._ripple) {\n element._ripple.touched = false\n }\n })\n ripples.hide(element)\n}\n\nfunction rippleCancelShow (e: MouseEvent | TouchEvent) {\n const element = e.currentTarget as HTMLElement | undefined\n\n if (!element?._ripple) return\n\n if (element._ripple.showTimerCommit) {\n element._ripple.showTimerCommit = null\n }\n\n window.clearTimeout(element._ripple.showTimer)\n}\n\nlet keyboardRipple = false\n\nfunction keyboardRippleShow (e: KeyboardEvent) {\n if (!keyboardRipple && (e.keyCode === keyCodes.enter || e.keyCode === keyCodes.space)) {\n keyboardRipple = true\n rippleShow(e)\n }\n}\n\nfunction keyboardRippleHide (e: KeyboardEvent) {\n keyboardRipple = false\n rippleHide(e)\n}\n\nfunction focusRippleHide (e: FocusEvent) {\n if (keyboardRipple) {\n keyboardRipple = false\n rippleHide(e)\n }\n}\n\nfunction updateRipple (el: HTMLElement, binding: RippleDirectiveBinding, wasEnabled: boolean) {\n const { value, modifiers } = binding\n const enabled = isRippleEnabled(value)\n if (!enabled) {\n ripples.hide(el)\n }\n\n el._ripple = el._ripple ?? {}\n el._ripple.enabled = enabled\n el._ripple.centered = modifiers.center\n el._ripple.circle = modifiers.circle\n if (isObject(value) && value.class) {\n el._ripple.class = value.class\n }\n\n if (enabled && !wasEnabled) {\n if (modifiers.stop) {\n el.addEventListener('touchstart', rippleStop, { passive: true })\n el.addEventListener('mousedown', rippleStop)\n return\n }\n\n el.addEventListener('touchstart', rippleShow, { passive: true })\n el.addEventListener('touchend', rippleHide, { passive: true })\n el.addEventListener('touchmove', rippleCancelShow, { passive: true })\n el.addEventListener('touchcancel', rippleHide)\n\n el.addEventListener('mousedown', rippleShow)\n el.addEventListener('mouseup', rippleHide)\n el.addEventListener('mouseleave', rippleHide)\n\n el.addEventListener('keydown', keyboardRippleShow)\n el.addEventListener('keyup', keyboardRippleHide)\n\n el.addEventListener('blur', focusRippleHide)\n\n // Anchor tags can be dragged, causes other hides to fail - #1537\n el.addEventListener('dragstart', rippleHide, { passive: true })\n } else if (!enabled && wasEnabled) {\n removeListeners(el)\n }\n}\n\nfunction removeListeners (el: HTMLElement) {\n el.removeEventListener('mousedown', rippleShow)\n el.removeEventListener('touchstart', rippleShow)\n el.removeEventListener('touchend', rippleHide)\n el.removeEventListener('touchmove', rippleCancelShow)\n el.removeEventListener('touchcancel', rippleHide)\n el.removeEventListener('mouseup', rippleHide)\n el.removeEventListener('mouseleave', rippleHide)\n el.removeEventListener('keydown', keyboardRippleShow)\n el.removeEventListener('keyup', keyboardRippleHide)\n el.removeEventListener('dragstart', rippleHide)\n el.removeEventListener('blur', focusRippleHide)\n}\n\nfunction mounted (el: HTMLElement, binding: RippleDirectiveBinding) {\n updateRipple(el, binding, false)\n}\n\nfunction unmounted (el: HTMLElement) {\n delete el._ripple\n removeListeners(el)\n}\n\nfunction updated (el: HTMLElement, binding: RippleDirectiveBinding) {\n if (binding.value === binding.oldValue) {\n return\n }\n\n const wasEnabled = isRippleEnabled(binding.oldValue)\n updateRipple(el, binding, wasEnabled)\n}\n\nexport const Ripple = {\n mounted,\n unmounted,\n updated,\n}\n\nexport default Ripple\n"],"mappings":"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","ignoreList":[]}
|
package/lib/entry-bundler.mjs
CHANGED
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
16
16
|
...options
|
17
17
|
});
|
18
18
|
};
|
19
|
-
export const version = "3.7.2-master.2024-09-
|
19
|
+
export const version = "3.7.2-master.2024-09-26";
|
20
20
|
createVuetify.version = version;
|
21
21
|
export { blueprints, components, directives };
|
22
22
|
export * from "./composables/index.mjs";
|
package/lib/framework.mjs
CHANGED
package/lib/index.d.mts
CHANGED
@@ -486,39 +486,41 @@ declare module 'vue' {
|
|
486
486
|
$children?: VNodeChild
|
487
487
|
}
|
488
488
|
export interface GlobalComponents {
|
489
|
-
VApp: typeof import('vuetify/components')['VApp']
|
490
489
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
491
490
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
492
491
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
493
|
-
|
494
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
492
|
+
VApp: typeof import('vuetify/components')['VApp']
|
495
493
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
496
494
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
497
|
-
|
495
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
496
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
498
497
|
VBanner: typeof import('vuetify/components')['VBanner']
|
499
498
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
500
499
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
500
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
501
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
502
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
503
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
501
504
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
502
505
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
503
506
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
504
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
505
507
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
506
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
507
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
508
508
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
509
|
-
VChip: typeof import('vuetify/components')['VChip']
|
510
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
511
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
512
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
513
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
514
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
515
509
|
VCard: typeof import('vuetify/components')['VCard']
|
516
510
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
517
511
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
518
512
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
519
513
|
VCardText: typeof import('vuetify/components')['VCardText']
|
520
514
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
521
|
-
|
515
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
516
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
517
|
+
VChip: typeof import('vuetify/components')['VChip']
|
518
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
519
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
520
|
+
VCode: typeof import('vuetify/components')['VCode']
|
521
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
522
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
523
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
522
524
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
523
525
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
524
526
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -526,38 +528,36 @@ declare module 'vue' {
|
|
526
528
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
527
529
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
528
530
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
529
|
-
|
531
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
532
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
530
533
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
531
534
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
532
535
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
533
536
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
534
537
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
535
538
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
536
|
-
VCode: typeof import('vuetify/components')['VCode']
|
537
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
538
539
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
539
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
540
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
541
540
|
VField: typeof import('vuetify/components')['VField']
|
542
541
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
542
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
543
|
+
VFab: typeof import('vuetify/components')['VFab']
|
544
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
543
545
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
544
546
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
545
547
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
546
548
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
547
|
-
|
548
|
-
|
549
|
+
VImg: typeof import('vuetify/components')['VImg']
|
550
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
549
551
|
VIcon: typeof import('vuetify/components')['VIcon']
|
550
552
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
551
553
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
552
554
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
553
555
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
554
|
-
|
555
|
-
VImg: typeof import('vuetify/components')['VImg']
|
556
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
556
557
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
557
558
|
VItem: typeof import('vuetify/components')['VItem']
|
558
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
559
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
560
559
|
VInput: typeof import('vuetify/components')['VInput']
|
560
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
561
561
|
VLabel: typeof import('vuetify/components')['VLabel']
|
562
562
|
VList: typeof import('vuetify/components')['VList']
|
563
563
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
@@ -568,52 +568,53 @@ declare module 'vue' {
|
|
568
568
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
569
569
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
570
570
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
571
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
572
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
573
571
|
VMain: typeof import('vuetify/components')['VMain']
|
574
572
|
VMessages: typeof import('vuetify/components')['VMessages']
|
575
|
-
|
573
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
576
574
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
577
|
-
|
575
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
576
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
578
577
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
578
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
579
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
579
580
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
580
|
-
VRating: typeof import('vuetify/components')['VRating']
|
581
581
|
VSelect: typeof import('vuetify/components')['VSelect']
|
582
|
-
|
583
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
584
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
582
|
+
VRating: typeof import('vuetify/components')['VRating']
|
585
583
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
584
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
585
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
586
586
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
587
587
|
VSlider: typeof import('vuetify/components')['VSlider']
|
588
|
-
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
589
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
590
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
591
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
592
588
|
VStepper: typeof import('vuetify/components')['VStepper']
|
593
589
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
594
590
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
595
591
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
596
592
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
597
593
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
598
|
-
|
594
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
595
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
596
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
599
597
|
VTab: typeof import('vuetify/components')['VTab']
|
600
598
|
VTabs: typeof import('vuetify/components')['VTabs']
|
601
599
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
602
600
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
603
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
604
601
|
VTable: typeof import('vuetify/components')['VTable']
|
602
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
603
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
604
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
605
605
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
606
606
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
607
607
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
608
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
609
608
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
610
|
-
|
611
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
609
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
612
610
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
613
611
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
612
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
613
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
614
614
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
615
615
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
616
616
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
617
|
+
VHover: typeof import('vuetify/components')['VHover']
|
617
618
|
VContainer: typeof import('vuetify/components')['VContainer']
|
618
619
|
VCol: typeof import('vuetify/components')['VCol']
|
619
620
|
VRow: typeof import('vuetify/components')['VRow']
|
@@ -621,19 +622,16 @@ declare module 'vue' {
|
|
621
622
|
VForm: typeof import('vuetify/components')['VForm']
|
622
623
|
VLayout: typeof import('vuetify/components')['VLayout']
|
623
624
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
624
|
-
VHover: typeof import('vuetify/components')['VHover']
|
625
|
-
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
626
625
|
VLazy: typeof import('vuetify/components')['VLazy']
|
626
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
627
627
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
628
628
|
VParallax: typeof import('vuetify/components')['VParallax']
|
629
629
|
VRadio: typeof import('vuetify/components')['VRadio']
|
630
|
-
VResponsive: typeof import('vuetify/components')['VResponsive']
|
631
630
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
631
|
+
VResponsive: typeof import('vuetify/components')['VResponsive']
|
632
632
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
633
633
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
634
634
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
635
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
636
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
637
635
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
638
636
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
639
637
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -650,24 +648,26 @@ declare module 'vue' {
|
|
650
648
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
651
649
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
652
650
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
651
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
652
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
653
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
654
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
655
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
653
656
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
654
657
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
655
658
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
656
659
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
657
660
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
658
661
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
659
|
-
|
660
|
-
|
662
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
663
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
664
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
661
665
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
662
666
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
663
667
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
664
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
665
668
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
666
669
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
667
670
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
668
|
-
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
669
|
-
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
670
|
-
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
671
671
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
672
672
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
673
673
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
@@ -827,7 +827,7 @@ declare const VNumberInput: {
|
|
827
827
|
errorMessages: vue.ComputedRef<string[]>;
|
828
828
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
829
829
|
'update:modelValue': (value: any) => true;
|
830
|
-
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "
|
830
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:prepend" | "v-slot:append" | "update:modelValue" | "v-slot:message" | "v-slot:details">, string, {
|
831
831
|
error: boolean;
|
832
832
|
direction: "horizontal" | "vertical";
|
833
833
|
style: vue.StyleValue;
|
@@ -1494,7 +1494,7 @@ declare const VNumberInput: {
|
|
1494
1494
|
errorMessages: vue.ComputedRef<string[]>;
|
1495
1495
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
1496
1496
|
'update:modelValue': (value: any) => true;
|
1497
|
-
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "
|
1497
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:prepend" | "v-slot:append" | "update:modelValue" | "v-slot:message" | "v-slot:details">, string, {
|
1498
1498
|
error: boolean;
|
1499
1499
|
direction: "horizontal" | "vertical";
|
1500
1500
|
style: vue.StyleValue;
|
@@ -1966,7 +1966,7 @@ declare const VNumberInput: {
|
|
1966
1966
|
errorMessages: vue.ComputedRef<string[]>;
|
1967
1967
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
1968
1968
|
'update:modelValue': (value: any) => true;
|
1969
|
-
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "
|
1969
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:prepend" | "v-slot:append" | "update:modelValue" | "v-slot:message" | "v-slot:details">, string, {
|
1970
1970
|
error: boolean;
|
1971
1971
|
direction: "horizontal" | "vertical";
|
1972
1972
|
style: vue.StyleValue;
|
@@ -3187,7 +3187,7 @@ declare const VNumberInput: {
|
|
3187
3187
|
errorMessages: vue.ComputedRef<string[]>;
|
3188
3188
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
3189
3189
|
'update:modelValue': (value: any) => true;
|
3190
|
-
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "
|
3190
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:prepend" | "v-slot:append" | "update:modelValue" | "v-slot:message" | "v-slot:details">, string, {
|
3191
3191
|
error: boolean;
|
3192
3192
|
direction: "horizontal" | "vertical";
|
3193
3193
|
style: vue.StyleValue;
|
@@ -3854,7 +3854,7 @@ declare const VNumberInput: {
|
|
3854
3854
|
errorMessages: vue.ComputedRef<string[]>;
|
3855
3855
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
3856
3856
|
'update:modelValue': (value: any) => true;
|
3857
|
-
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "
|
3857
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:prepend" | "v-slot:append" | "update:modelValue" | "v-slot:message" | "v-slot:details">, string, {
|
3858
3858
|
error: boolean;
|
3859
3859
|
direction: "horizontal" | "vertical";
|
3860
3860
|
style: vue.StyleValue;
|
@@ -4326,7 +4326,7 @@ declare const VNumberInput: {
|
|
4326
4326
|
errorMessages: vue.ComputedRef<string[]>;
|
4327
4327
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
4328
4328
|
'update:modelValue': (value: any) => true;
|
4329
|
-
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "
|
4329
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:prepend" | "v-slot:append" | "update:modelValue" | "v-slot:message" | "v-slot:details">, string, {
|
4330
4330
|
error: boolean;
|
4331
4331
|
direction: "horizontal" | "vertical";
|
4332
4332
|
style: vue.StyleValue;
|
@@ -5396,7 +5396,7 @@ declare const VNumberInput: {
|
|
5396
5396
|
errorMessages: vue.ComputedRef<string[]>;
|
5397
5397
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
5398
5398
|
'update:modelValue': (value: any) => true;
|
5399
|
-
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "
|
5399
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:prepend" | "v-slot:append" | "update:modelValue" | "v-slot:message" | "v-slot:details">, string, {
|
5400
5400
|
error: boolean;
|
5401
5401
|
direction: "horizontal" | "vertical";
|
5402
5402
|
style: vue.StyleValue;
|
@@ -6063,7 +6063,7 @@ declare const VNumberInput: {
|
|
6063
6063
|
errorMessages: vue.ComputedRef<string[]>;
|
6064
6064
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
6065
6065
|
'update:modelValue': (value: any) => true;
|
6066
|
-
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "
|
6066
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:prepend" | "v-slot:append" | "update:modelValue" | "v-slot:message" | "v-slot:details">, string, {
|
6067
6067
|
error: boolean;
|
6068
6068
|
direction: "horizontal" | "vertical";
|
6069
6069
|
style: vue.StyleValue;
|
@@ -6535,7 +6535,7 @@ declare const VNumberInput: {
|
|
6535
6535
|
errorMessages: vue.ComputedRef<string[]>;
|
6536
6536
|
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
6537
6537
|
'update:modelValue': (value: any) => true;
|
6538
|
-
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "
|
6538
|
+
}, "$children" | "v-slots" | "v-slot:default" | "modelValue" | "v-slot:prepend" | "v-slot:append" | "update:modelValue" | "v-slot:message" | "v-slot:details">, string, {
|
6539
6539
|
error: boolean;
|
6540
6540
|
direction: "horizontal" | "vertical";
|
6541
6541
|
style: vue.StyleValue;
|