@vobs/ui 1.4.0 → 1.4.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.
@@ -653,8 +653,16 @@
653
653
  }
654
654
  .vui-menu__item .vui-menu__icon { color: var(--icon-secondary); }
655
655
  .vui-menu__item:hover { background: var(--bg-overlay-l2); }
656
+ .vui-menu__item:disabled,
657
+ .vui-menu__item[aria-disabled='true'] { color: var(--text-tertiary); cursor: not-allowed; }
658
+ .vui-menu__item:disabled .vui-menu__icon,
659
+ .vui-menu__item[aria-disabled='true'] .vui-menu__icon { color: var(--icon-secondary); opacity: .5; }
660
+ .vui-menu__item:disabled:hover,
661
+ .vui-menu__item[aria-disabled='true']:hover { background: transparent; }
656
662
  .vui-menu__item--danger { color: var(--status-error-default); }
657
663
  .vui-menu__item--danger .vui-menu__icon { color: var(--status-error-default); }
664
+ .vui-menu__item--danger:disabled,
665
+ .vui-menu__item--danger[aria-disabled='true'] { color: var(--text-tertiary); }
658
666
  .vui-menu__divider { height: 1px; background: var(--border-neutral-l1); margin: var(--spacer-4) 0; }
659
667
  .vui-menu__shortcut { margin-left: auto; color: var(--text-tertiary); font-size: var(--body-xs-font-size); font-family: var(--code-editor-font-family); }
660
668
 
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "type": "git",
12
12
  "url": "git+https://github.com/vobsjs/vobs.git"
13
13
  },
14
- "version": "1.4.0",
14
+ "version": "1.4.1",
15
15
  "publishConfig": {
16
16
  "access": "public"
17
17
  },
@@ -201,10 +201,10 @@
201
201
  "./src/styles/*.css"
202
202
  ],
203
203
  "dependencies": {
204
- "@vobs/icon-core": "1.4.0",
205
- "@vobs/notification": "1.4.0",
206
- "@vobs/reactivity": "1.4.0",
207
- "@vobs/vobs": "1.4.0"
204
+ "@vobs/notification": "1.4.1",
205
+ "@vobs/vobs": "1.4.1",
206
+ "@vobs/reactivity": "1.4.1",
207
+ "@vobs/icon-core": "1.4.1"
208
208
  },
209
209
  "scripts": {
210
210
  "test": "vitest --environment jsdom"
@@ -653,8 +653,16 @@
653
653
  }
654
654
  .vui-menu__item .vui-menu__icon { color: var(--icon-secondary); }
655
655
  .vui-menu__item:hover { background: var(--bg-overlay-l2); }
656
+ .vui-menu__item:disabled,
657
+ .vui-menu__item[aria-disabled='true'] { color: var(--text-tertiary); cursor: not-allowed; }
658
+ .vui-menu__item:disabled .vui-menu__icon,
659
+ .vui-menu__item[aria-disabled='true'] .vui-menu__icon { color: var(--icon-secondary); opacity: .5; }
660
+ .vui-menu__item:disabled:hover,
661
+ .vui-menu__item[aria-disabled='true']:hover { background: transparent; }
656
662
  .vui-menu__item--danger { color: var(--status-error-default); }
657
663
  .vui-menu__item--danger .vui-menu__icon { color: var(--status-error-default); }
664
+ .vui-menu__item--danger:disabled,
665
+ .vui-menu__item--danger[aria-disabled='true'] { color: var(--text-tertiary); }
658
666
  .vui-menu__divider { height: 1px; background: var(--border-neutral-l1); margin: var(--spacer-4) 0; }
659
667
  .vui-menu__shortcut { margin-left: auto; color: var(--text-tertiary); font-size: var(--body-xs-font-size); font-family: var(--code-editor-font-family); }
660
668