Upload files to "/"

This commit is contained in:
Sven Minio 2026-05-17 12:39:25 +02:00
commit 1fa6d558c7
149 changed files with 27987 additions and 0 deletions

44
dist/modules/effects/vertical.d.ts vendored Normal file
View file

@ -0,0 +1,44 @@
/**
* @file src/modules/effects/vertical.ts
* @version 2.0.3
* @since 2.0.0
* @license GPL-3.0-or-later
* @copyright Sven Minio 2026
* @author Sven Minio <https://sven-minio.de>
* @category Effects
* @description
* * Methods for vertical sliding effects (slideDown, slideUp, slideToggle).
* @requires ../../core
* * Depends on the core jBase class for type definitions.
* @requires ../../utils
* * Utility function to check for browser environment.
* @requires ./types
* * Type definitions for effect options.
*/
import { jBase } from '../../core';
import { SlideVerticalOptions } from './types';
/**
* * Slides an element down (animates height from 0 to auto). Sets `display` property and animates height.
* @example slideDown() => Slides down all matched elements over 300ms with display: block.
* @example slideDown({ duration: 500, displayType: 'inline-block' }) => Slides down all matched elements over 500ms with display: inline-block.
* @param options Animation duration and display type.
* @returns The current jBase instance.
*/
export declare function slideDown(this: jBase, options?: SlideVerticalOptions): jBase;
/**
* * Slides an element up (animates height to 0). Sets `display: none` after animation.
* @example slideUp() => Slides up all matched elements over 300ms with display: none.
* @example slideUp({ duration: 500 }) => Slides up all matched elements over 500ms with display: none.
* @param options Animation duration.
* @returns The current jBase instance.
*/
export declare function slideUp(this: jBase, options?: SlideVerticalOptions): jBase;
/**
* * Toggles between slideDown and slideUp based on the display state.
* @example slideToggle() => Slides in hidden elements and slides out visible elements over 300ms.
* @example slideToggle({ duration: 500 }) => Slides in hidden elements and slides out visible elements over 500ms.
* @param options Animation duration.
* @returns The current jBase instance.
*/
export declare function slideToggleBox(this: jBase, options?: SlideVerticalOptions): jBase;
//# sourceMappingURL=vertical.d.ts.map