preline icon indicating copy to clipboard operation
preline copied to clipboard

Preline UI is an open-source set of prebuilt UI components based on the utility-first Tailwind CSS framework.

Results 147 preline issues
Sort by recently updated
recently updated
newest added

Hi. I have decided to use Tailwind CSS in conjunction with Preline UI on my website. I decided to make a theme switcher. In the official documentation I liked 'Select'....

help wanted

following the qwik integration guide in preline website and adding this script tag to root.tsx `` results in a not found error when it tries looking for the provided location...

im trying to use sidebar preline overlay and try event. ``` import HSOverlay from "@preline/overlay"; const element = HSOverlay.getInstance('#docs-sidebar'); el.on('close', (instance) => { console.log('close'); }); ``` and got this error...

### Discussed in https://github.com/htmlstreamofficial/preline/discussions/208 Originally posted by **lethunder** December 9, 2023 Hello guys, all preline js components like tabs inside a page i hide and show with ajax and append...

I cannot use interact with components which uses plugins like `select`, `stepper` etc Here's my configurations (I followed official documentation) ------ PrelineScript.tsx ```jsx "use client"; import { usePathname } from...

It would be nice to have a form text input that could act as a tag editor. Where you can type e.g _example_, press Enter/Return, and have it shown as...

enhancement

I am dynamically adding and removing items to the select based on what is being typed into the search field, since I have so many options it lags otherwise if...

To fix the issue of the placeholder not clearing when default values are loaded, `(this.tagsInput as HTMLInputElement).placeholder = '';` is added within the if (this.value) block. This line sets the...

import React, { useEffect, useState } from 'react'; import { BsChevronExpand } from 'react-icons/bs'; import { HSSelect } from 'preline'; import { ValidationError } from '@components/form'; const SelectField = ({...

When I open the 2nd Modal, the 1st Modal is still on top of the 2nd Modal. I have to turn off the 1st Modal to see the 2nd Modal....