@hitachivantara/uikit-react-core 5.96.1 → 5.96.2

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.
@@ -83,10 +83,13 @@ const { staticClasses, useClasses } = uikitReactUtils.createClasses("HvTagsInput
83
83
  border: "none",
84
84
  margin: 0,
85
85
  padding: 0,
86
- ...uikitStyles.theme.typography.caption1,
86
+ ...uikitStyles.theme.typography.body,
87
87
  backgroundColor: "transparent",
88
88
  outline: "none",
89
- boxShadow: "none"
89
+ boxShadow: "none",
90
+ "&::placeholder": {
91
+ color: uikitStyles.theme.colors.textSubtle
92
+ }
90
93
  },
91
94
  /** @deprecated unused. use `:focus` or `:focus-visible` instead */
92
95
  tagSelected: {},
@@ -194,10 +194,22 @@ const pentahoPlus = uikitStyles.mergeTheme(uikitStyles.pentahoPlus, {
194
194
  classes: {
195
195
  tagsList: {
196
196
  backgroundColor: inputColors.bg,
197
- padding: uikitStyles.theme.space.xxs
197
+ padding: uikitStyles.theme.space.xxs,
198
+ borderColor: uikitStyles.theme.colors.textDimmed
198
199
  },
199
200
  singleLine: {
200
201
  height: 32
202
+ },
203
+ disabled: {
204
+ "& .HvTagsInput-tagsList": {
205
+ backgroundColor: uikitStyles.theme.colors.bgDisabled,
206
+ "&,:hover": {
207
+ borderColor: uikitStyles.theme.colors.textDisabled
208
+ }
209
+ },
210
+ "& .HvTagsInput-chipRoot": {
211
+ outlineColor: uikitStyles.theme.colors.textDisabled
212
+ }
201
213
  }
202
214
  }
203
215
  },
@@ -81,10 +81,13 @@ const { staticClasses, useClasses } = createClasses("HvTagsInput", {
81
81
  border: "none",
82
82
  margin: 0,
83
83
  padding: 0,
84
- ...theme.typography.caption1,
84
+ ...theme.typography.body,
85
85
  backgroundColor: "transparent",
86
86
  outline: "none",
87
- boxShadow: "none"
87
+ boxShadow: "none",
88
+ "&::placeholder": {
89
+ color: theme.colors.textSubtle
90
+ }
88
91
  },
89
92
  /** @deprecated unused. use `:focus` or `:focus-visible` instead */
90
93
  tagSelected: {},
@@ -192,10 +192,22 @@ const pentahoPlus = mergeTheme(pentahoPlus$1, {
192
192
  classes: {
193
193
  tagsList: {
194
194
  backgroundColor: inputColors.bg,
195
- padding: theme.space.xxs
195
+ padding: theme.space.xxs,
196
+ borderColor: theme.colors.textDimmed
196
197
  },
197
198
  singleLine: {
198
199
  height: 32
200
+ },
201
+ disabled: {
202
+ "& .HvTagsInput-tagsList": {
203
+ backgroundColor: theme.colors.bgDisabled,
204
+ "&,:hover": {
205
+ borderColor: theme.colors.textDisabled
206
+ }
207
+ },
208
+ "& .HvTagsInput-chipRoot": {
209
+ outlineColor: theme.colors.textDisabled
210
+ }
199
211
  }
200
212
  }
201
213
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hitachivantara/uikit-react-core",
3
- "version": "5.96.1",
3
+ "version": "5.96.2",
4
4
  "private": false,
5
5
  "author": "Hitachi Vantara UI Kit Team",
6
6
  "description": "Core React components for the NEXT Design System.",
@@ -61,7 +61,7 @@
61
61
  "access": "public",
62
62
  "directory": "package"
63
63
  },
64
- "gitHead": "866c81403b508ea7748f7bbedeeca80144ceb8fa",
64
+ "gitHead": "7c14c1cfb05319faf3d647bb806d25655363cbc5",
65
65
  "exports": {
66
66
  ".": {
67
67
  "types": "./dist/types/index.d.ts",