@sandlada/vue-mdc
Version:

30 lines (29 loc) • 723 B
JavaScript
/**
* @license
* Copyright 2022 Google LLC
* SPDX-License-Identifier: Apache-2.0
*
* @link
* https://github.com/material-components/material-web/blob/main/ripple/internal/ripple.ts
*
* [Modified by Sandlada & Kai Orion]
*
* @license
* Copyright 2025 Sandlada & Kai Orion
* SPDX-License-Identifier: MIT
*/
class RippleConfiguration {
static pressGrowMs = 550;
static minimumPressMs = 250;
static initialOriginScale = 0.2;
static padding = 10;
static softEdgeMinimumSize = 75;
static softEdgeContainerRadio = 0.35;
static pressPseudo = "::after";
static animationFill = "forwards";
static touchDelayMs = 150;
}
export {
RippleConfiguration
};
//# sourceMappingURL=ripple-configuration.js.map