@shlinkio/shlink-frontend-kit 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -715,7 +715,8 @@ export declare type TagsSearchResult = {
|
|
|
715
715
|
* A Map with the list of tags that match the search result, with the tag used both as key and value.
|
|
716
716
|
* Returned as a Map for convenience to use with SearchCombobox.
|
|
717
717
|
*
|
|
718
|
-
* When
|
|
718
|
+
* When the search term is empty, `undefined` is returned, so that it is possible to differentiate a search producing
|
|
719
|
+
* no results from not currently performing a search at all.
|
|
719
720
|
*
|
|
720
721
|
* @see {SearchCombobox}
|
|
721
722
|
*/
|
package/dist/index.js
CHANGED
|
@@ -310,7 +310,7 @@ const H = K(void 0), M = K({ responsive: !0, size: "md" }), Xe = ({ children: e,
|
|
|
310
310
|
de,
|
|
311
311
|
{
|
|
312
312
|
ref: t,
|
|
313
|
-
className: d("rounded-sm w-4 h-4 checked:bg-(image:--tick) bg-center", e),
|
|
313
|
+
className: d("rounded-sm min-w-4 w-4 h-4 checked:bg-(image:--tick) bg-center", e),
|
|
314
314
|
...r
|
|
315
315
|
}
|
|
316
316
|
)), Y = k(({ onClick: e, className: r, label: t = "Close", size: n = "lg", solid: o }, s) => /* @__PURE__ */ a(
|
|
@@ -743,7 +743,7 @@ const at = k(ot), st = ({ name: e, color: r }) => /* @__PURE__ */ g("div", { cla
|
|
|
743
743
|
{
|
|
744
744
|
ref: t,
|
|
745
745
|
className: d(
|
|
746
|
-
"rounded-full w-8 h-4",
|
|
746
|
+
"rounded-full min-w-8 w-8 h-4",
|
|
747
747
|
"bg-(image:--circle-grey-dark) dark:bg-(image:--circle-grey-light) checked:bg-(image:--circle-white)",
|
|
748
748
|
"focus-visible:not-checked:bg-(image:--circle-blue-light)",
|
|
749
749
|
"checked:bg-right transition-[background-position]",
|
package/package.json
CHANGED