@povio/ui 3.4.0-rc.10 → 3.4.0-rc.12

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.
@@ -8,7 +8,7 @@ import { SelectInputTags } from "./SelectInputTags.js";
8
8
  import { SelectContext } from "./select.context.js";
9
9
  import { selectInputTagsContentWrapperDefinition } from "./selectInput.cva.js";
10
10
  import { useKeyInteractions } from "../../../../hooks/useKeyInteractions.js";
11
- import { ChevronDown } from "lucide-react";
11
+ import { Triangle } from "lucide-react";
12
12
  import { clsx } from "clsx";
13
13
  import { use, useRef, useState } from "react";
14
14
  import { Button, ComboBoxStateContext, Input } from "react-aria-components";
@@ -391,9 +391,10 @@ var SelectInput = (t0) => {
391
391
  onPress: () => {
392
392
  if (!isSearchable) setIsOpen(!isOpen);
393
393
  },
394
- children: /* @__PURE__ */ jsx(ChevronDown, {
395
- className: clsx("size-6 shrink-0", isOpen && "rotate-180", isDisabled ? "text-interactive-text-secondary-disabled" : "text-interactive-text-secondary-idle"),
396
- "aria-hidden": "true"
394
+ children: /* @__PURE__ */ jsx("span", {
395
+ className: clsx("flex size-6 shrink-0 items-center justify-center", isOpen && "rotate-180", isDisabled ? "text-interactive-text-secondary-disabled" : "text-interactive-text-secondary-idle"),
396
+ "aria-hidden": "true",
397
+ children: /* @__PURE__ */ jsx(Triangle, { className: "h-2 w-3 rotate-180 fill-current stroke-0" })
397
398
  })
398
399
  });
399
400
  $0[103] = hideDropdownIcon;
@@ -1,6 +1,6 @@
1
1
  import { UIOverrides } from "../../../../config/uiOverrides.context.js";
2
2
  import { inputSizeDefinition } from "../../shared/input.cva.js";
3
- import { ChevronDown } from "lucide-react";
3
+ import { Triangle } from "lucide-react";
4
4
  import { clsx } from "clsx";
5
5
  import { c } from "react/compiler-runtime";
6
6
  import { Fragment, jsx, jsxs } from "react/jsx-runtime";
@@ -26,7 +26,10 @@ var StaticSelectTrailingContent = (t0) => {
26
26
  tabIndex: -1,
27
27
  className: clsx("self-stretch border-0! pl-1-5 outline-none", inputSizeCva({ size })),
28
28
  "aria-hidden": "true",
29
- children: /* @__PURE__ */ jsx(ChevronDown, { className: clsx("size-6 shrink-0", isDisabled ? "text-interactive-text-secondary-disabled" : "text-interactive-text-secondary-idle") })
29
+ children: /* @__PURE__ */ jsx("span", {
30
+ className: clsx("flex size-6 shrink-0 items-center justify-center", isDisabled ? "text-interactive-text-secondary-disabled" : "text-interactive-text-secondary-idle"),
31
+ children: /* @__PURE__ */ jsx(Triangle, { className: "h-2 w-3 rotate-180 fill-current stroke-0" })
32
+ })
30
33
  }) : void 0;
31
34
  $[2] = hideDropdownIcon;
32
35
  $[3] = inputSizeCva;
@@ -68,9 +68,9 @@ var UIConfig;
68
68
  shouldForceLeadingZeros: false,
69
69
  disableManualEntry: false,
70
70
  autoFixYear: false,
71
- calendarIcon: /* @__PURE__ */ jsx(Calendar, { className: "size-4" }),
72
- dateTimeIcon: /* @__PURE__ */ jsx(CalendarClock, { className: "size-4" }),
73
- timeIcon: /* @__PURE__ */ jsx(Clock, { className: "size-4 text-interactive-text-secondary-idle" }),
71
+ calendarIcon: /* @__PURE__ */ jsx(Calendar, { className: "size-5" }),
72
+ dateTimeIcon: /* @__PURE__ */ jsx(CalendarClock, { className: "size-5" }),
73
+ timeIcon: /* @__PURE__ */ jsx(Clock, { className: "size-6 text-interactive-text-secondary-idle" }),
74
74
  setDateValueOnDateSelection: false,
75
75
  timeZone: "clientLocal",
76
76
  granularity: "day",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@povio/ui",
3
- "version": "3.4.0-rc.10",
3
+ "version": "3.4.0-rc.12",
4
4
  "type": "module",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",