@umbraco-ui/uui-menu-item 1.14.0-rc.0 → 1.14.0-rc.4

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.
Files changed (2) hide show
  1. package/lib/index.js +30 -6
  2. package/package.json +5 -5
package/lib/index.js CHANGED
@@ -167,7 +167,11 @@ UUIMenuItemElement.styles = [
167
167
  #caret-button:hover {
168
168
  background-color: var(
169
169
  --uui-menu-item-background-color-hover,
170
- var(--uui-color-surface-emphasis,rgb(250, 250, 250))
170
+ var(--uui-color-surface-emphasis,rgb(
171
+ 250,
172
+ 250,
173
+ 250
174
+ ))
171
175
  );
172
176
  }
173
177
  :host(:not([active], [selected], [disabled]))
@@ -198,7 +202,11 @@ UUIMenuItemElement.styles = [
198
202
  :host([active]) #caret-button:hover {
199
203
  background-color: var(
200
204
  --uui-menu-item-background-color-active-hover,
201
- var(--uui-color-current-emphasis,rgb(248, 214, 211))
205
+ var(--uui-color-current-emphasis,rgb(
206
+ 248,
207
+ 214,
208
+ 211
209
+ ))
202
210
  );
203
211
  }
204
212
 
@@ -235,7 +243,11 @@ UUIMenuItemElement.styles = [
235
243
  #caret-button:hover {
236
244
  background-color: var(
237
245
  --uui-menu-item-background-color-selected-hover,
238
- var(--uui-color-selected-emphasis,rgb(70, 86, 200))
246
+ var(--uui-color-selected-emphasis,rgb(
247
+ 70,
248
+ 86,
249
+ 200
250
+ ))
239
251
  );
240
252
  }
241
253
 
@@ -247,7 +259,11 @@ UUIMenuItemElement.styles = [
247
259
  border-radius: var(--uui-border-radius,3px);
248
260
  background-color: var(
249
261
  --uui-menu-item-background-color-highlight,
250
- var(--uui-color-surface-emphasis,rgb(250, 250, 250))
262
+ var(--uui-color-surface-emphasis,rgb(
263
+ 250,
264
+ 250,
265
+ 250
266
+ ))
251
267
  );
252
268
  }
253
269
 
@@ -266,7 +282,11 @@ UUIMenuItemElement.styles = [
266
282
  border-radius: var(--uui-border-radius,3px);
267
283
  background-color: var(
268
284
  --uui-menu-item-background-color-highlight-active-selected,
269
- var(--uui-color-current-emphasis,rgb(248, 214, 211))
285
+ var(--uui-color-current-emphasis,rgb(
286
+ 248,
287
+ 214,
288
+ 211
289
+ ))
270
290
  );
271
291
  }
272
292
 
@@ -298,7 +318,11 @@ UUIMenuItemElement.styles = [
298
318
  border-radius: var(--uui-border-radius,3px);
299
319
  background-color: var(
300
320
  --uui-menu-item-background-color-highlight-selectable-selected,
301
- var(--uui-color-surface-emphasis,rgb(250, 250, 250))
321
+ var(--uui-color-surface-emphasis,rgb(
322
+ 250,
323
+ 250,
324
+ 250
325
+ ))
302
326
  );
303
327
  color: var(
304
328
  --uui-menu-item-color-highlight-selectable-selected,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-ui/uui-menu-item",
3
- "version": "1.14.0-rc.0",
3
+ "version": "1.14.0-rc.4",
4
4
  "license": "MIT",
5
5
  "keywords": [
6
6
  "Umbraco",
@@ -30,9 +30,9 @@
30
30
  "custom-elements.json"
31
31
  ],
32
32
  "dependencies": {
33
- "@umbraco-ui/uui-base": "1.14.0-rc.0",
34
- "@umbraco-ui/uui-loader-bar": "1.14.0-rc.0",
35
- "@umbraco-ui/uui-symbol-expand": "1.14.0-rc.0"
33
+ "@umbraco-ui/uui-base": "1.14.0-rc.4",
34
+ "@umbraco-ui/uui-loader-bar": "1.14.0-rc.4",
35
+ "@umbraco-ui/uui-symbol-expand": "1.14.0-rc.4"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "npm run analyze && tsc --build && rollup -c rollup.config.js",
@@ -43,5 +43,5 @@
43
43
  "access": "public"
44
44
  },
45
45
  "homepage": "https://uui.umbraco.com/?path=/story/uui-menu-item",
46
- "gitHead": "3dd62a7dd7fc7a38c6333c113cd942393bb437f0"
46
+ "gitHead": "8f89db559dfdb60e8afd8a0dc297e2f248f2fb9d"
47
47
  }