@tidbcloud/uikit 2.4.14 → 2.4.15

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @tidbcloud/uikit
2
2
 
3
+ ## 2.4.15
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix/promultiselect UI issule ([#572](https://github.com/tidbcloud/tidbcloud-uikit/pull/572))
8
+
3
9
  ## 2.4.14
4
10
 
5
11
  ### Patch Changes
@@ -382,7 +382,7 @@ const ProMultiSelect = (_props) => {
382
382
  type: "button",
383
383
  pointer: true,
384
384
  disabled: disabled || loading,
385
- rightSection: loading ? /* @__PURE__ */ jsxRuntime.jsx(Loader.Loader, { size: "sm" }) : _clearable ? clearButton : /* @__PURE__ */ jsxRuntime.jsx(Combobox.Combobox.Chevron, {}),
385
+ rightSection: loading ? /* @__PURE__ */ jsxRuntime.jsx(Loader.Loader, { size: "sm" }) : _clearable ? clearButton : /* @__PURE__ */ jsxRuntime.jsx(Combobox.Combobox.Chevron, { c: "carbon.7", size: "20" }),
386
386
  label,
387
387
  styles: {
388
388
  label: { color: theme.colors.carbon[8], marginBottom: 6, fontSize: 14, lineHeight: "20px" },
@@ -392,7 +392,7 @@ const ProMultiSelect = (_props) => {
392
392
  rightSectionPointerEvents: value === null ? "none" : "all",
393
393
  onClick: () => combobox.toggleDropdown(),
394
394
  children: [
395
- _value.length === 0 && !!placeholder && /* @__PURE__ */ jsxRuntime.jsx(Input.Input.Placeholder, { children: placeholder }),
395
+ _value.length === 0 && !!placeholder && /* @__PURE__ */ jsxRuntime.jsx(Input.Input.Placeholder, { c: "carbon.6", children: placeholder }),
396
396
  /* @__PURE__ */ jsxRuntime.jsx(
397
397
  Pill.Pill.Group,
398
398
  {
@@ -380,7 +380,7 @@ const ProMultiSelect = (_props) => {
380
380
  type: "button",
381
381
  pointer: true,
382
382
  disabled: disabled || loading,
383
- rightSection: loading ? /* @__PURE__ */ jsx(Loader, { size: "sm" }) : _clearable ? clearButton : /* @__PURE__ */ jsx(Combobox.Chevron, {}),
383
+ rightSection: loading ? /* @__PURE__ */ jsx(Loader, { size: "sm" }) : _clearable ? clearButton : /* @__PURE__ */ jsx(Combobox.Chevron, { c: "carbon.7", size: "20" }),
384
384
  label,
385
385
  styles: {
386
386
  label: { color: theme.colors.carbon[8], marginBottom: 6, fontSize: 14, lineHeight: "20px" },
@@ -390,7 +390,7 @@ const ProMultiSelect = (_props) => {
390
390
  rightSectionPointerEvents: value === null ? "none" : "all",
391
391
  onClick: () => combobox.toggleDropdown(),
392
392
  children: [
393
- _value.length === 0 && !!placeholder && /* @__PURE__ */ jsx(Input.Placeholder, { children: placeholder }),
393
+ _value.length === 0 && !!placeholder && /* @__PURE__ */ jsx(Input.Placeholder, { c: "carbon.6", children: placeholder }),
394
394
  /* @__PURE__ */ jsx(
395
395
  Pill.Group,
396
396
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tidbcloud/uikit",
3
- "version": "2.4.14",
3
+ "version": "2.4.15",
4
4
  "description": "tidbcloud uikit",
5
5
  "type": "module",
6
6
  "main": "dist/primitive/index.cjs",