@llamaindex/ui
Version:
A comprehensive UI component library built with React, TypeScript, and Tailwind CSS for LlamaIndex applications
94 lines (88 loc) • 3.17 kB
JavaScript
var chunkHK7TFVDA_js = require('./chunk-HK7TFVDA.js');
var chunkORMEWXMH_js = require('./chunk-ORMEWXMH.js');
var React = require('react');
var SliderPrimitive = require('@radix-ui/react-slider');
var jsxRuntime = require('react/jsx-runtime');
function _interopNamespace(e) {
if (e && e.__esModule) return e;
var n = Object.create(null);
if (e) {
Object.keys(e).forEach(function (k) {
if (k !== 'default') {
var d = Object.getOwnPropertyDescriptor(e, k);
Object.defineProperty(n, k, d.get ? d : {
enumerable: true,
get: function () { return e[k]; }
});
}
});
}
n.default = e;
return Object.freeze(n);
}
var React__namespace = /*#__PURE__*/_interopNamespace(React);
var SliderPrimitive__namespace = /*#__PURE__*/_interopNamespace(SliderPrimitive);
function Slider(_a) {
var _b = _a, {
className,
defaultValue,
value,
min = 0,
max = 100
} = _b, props = chunkORMEWXMH_js.__objRest(_b, [
"className",
"defaultValue",
"value",
"min",
"max"
]);
const _values = React__namespace.useMemo(
() => Array.isArray(value) ? value : Array.isArray(defaultValue) ? defaultValue : [min, max],
[value, defaultValue, min, max]
);
return /* @__PURE__ */ jsxRuntime.jsxs(
SliderPrimitive__namespace.Root,
chunkORMEWXMH_js.__spreadProps(chunkORMEWXMH_js.__spreadValues({
"data-slot": "slider",
defaultValue,
value,
min,
max,
className: chunkHK7TFVDA_js.cn(
"relative flex w-full touch-none items-center select-none data-[disabled]:opacity-50 data-[orientation=vertical]:h-full data-[orientation=vertical]:min-h-44 data-[orientation=vertical]:w-auto data-[orientation=vertical]:flex-col",
className
)
}, props), {
children: [
/* @__PURE__ */ jsxRuntime.jsx(
SliderPrimitive__namespace.Track,
{
"data-slot": "slider-track",
className: chunkHK7TFVDA_js.cn(
"bg-muted relative grow overflow-hidden rounded-full data-[orientation=horizontal]:h-1.5 data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-1.5"
),
children: /* @__PURE__ */ jsxRuntime.jsx(
SliderPrimitive__namespace.Range,
{
"data-slot": "slider-range",
className: chunkHK7TFVDA_js.cn(
"bg-primary absolute data-[orientation=horizontal]:h-full data-[orientation=vertical]:w-full"
)
}
)
}
),
Array.from({ length: _values.length }, (_, index) => /* @__PURE__ */ jsxRuntime.jsx(
SliderPrimitive__namespace.Thumb,
{
"data-slot": "slider-thumb",
className: "border-primary bg-background ring-ring/50 block size-4 shrink-0 rounded-full border shadow-sm transition-[color,box-shadow] hover:ring-4 focus-visible:ring-4 focus-visible:outline-hidden disabled:pointer-events-none disabled:opacity-50"
},
index
))
]
})
);
}
exports.Slider = Slider;
;