mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-07 04:08:41 +00:00
12 lines
503 B
Text
12 lines
503 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
|
|
|
|
export component Slider inherits NativeSlider {
|
|
value: root.minimum;
|
|
accessible-role: slider;
|
|
accessible-enabled: root.enabled;
|
|
accessible-value: root.value;
|
|
accessible-value-minimum: root.minimum;
|
|
accessible-value-maximum: root.maximum;
|
|
accessible-value-step: min(root.step, (root.maximum - root.minimum) / 100);
|
|
}
|