diff --git a/package.json b/package.json
index 23d92e1..55c44bd 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,7 @@
{
"name": "@bd/ui",
- "version": "0.1.12",
+ "version": "0.1.13",
+ "type": "module",
"description": "",
"files": [
"dist/*"
diff --git a/src/option/index.js b/src/option/index.js
index eacb482..73f94cd 100644
--- a/src/option/index.js
+++ b/src/option/index.js
@@ -5,11 +5,40 @@
*/
import { nextTick, css, html, Component, bind } from 'wkit'
+import '../icon/index.js'
+
+const MACOS_KEYS = {
+ Cmd: '⌘',
+ Option: '⌥',
+ Shift: '⇧',
+ Ctrl: '⌃'
+}
+const WIN_KEYS = {
+ Win: 'Win'
+}
+const LINUX_KEYS = {
+ Super: 'Super'
+}
+const UA = navigator.userAgent.toLowerCase()
+const IS_MACOS = UA.includes('mac os x') || UA.includes('iphone')
+const IS_WIN = UA.includes('windows nt')
+
+MACOS_KEYS['Super'] = MACOS_KEYS.Cmd
+MACOS_KEYS['Command'] = MACOS_KEYS.Cmd
+MACOS_KEYS['Alt'] = MACOS_KEYS.Option
+MACOS_KEYS['Control'] = MACOS_KEYS.Ctrl
+WIN_KEYS['Super'] = WIN_KEYS.Win
+WIN_KEYS['Cmd'] = WIN_KEYS.Win
+WIN_KEYS['Command'] = WIN_KEYS.Win
+LINUX_KEYS['Win'] = LINUX_KEYS.Super
+LINUX_KEYS['Cmd'] = LINUX_KEYS.Super
+LINUX_KEYS['Command'] = LINUX_KEYS.Super
class OptionGroup extends Component {
//
static props = {
- label: ''
+ label: '',
+ fold: false
}
static styles = [
@@ -17,22 +46,53 @@ class OptionGroup extends Component {
:host {
display: block;
width: 100%;
+ }
+ .option-group {
+ position: relative;
+ width: 100%;
+ height: 100%;
line-height: 1.5;
}
label {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ height: 24px;
padding: 0 8px;
- line-height: 1;
font-size: 12px;
color: var(--color-grey-2);
+
+ .ico {
+ --size: 12px;
+ }
+ }
+
+ :host([fold]) {
+ label {
+ height: 32px;
+
+ &:hover {
+ background: var(--color-plain-1);
+ }
+ }
}
`
]
render() {
return html`
-
-