一大波组件尺寸调整

master
yutent 2023-11-29 12:21:49 +08:00
parent d111e67efc
commit 08a6bb043d
5 changed files with 38 additions and 130 deletions

View File

@ -123,46 +123,18 @@ class Button extends Component {
`, `,
// 尺寸 // 尺寸
css` css`
@use 'sass:map'; :host([size='small']) {
$sizes: ( min-width: 72px;
s: ( height: 24px;
w: 52px, font-size: 12px;
h: 20px,
f: 12px
),
m: (
w: 72px,
h: 24px,
f: 12px
),
// l 为默认
xl:
(
w: 132px,
h: 36px,
f: 14px
),
xxl: (
w: 160px,
h: 44px,
f: 14px
)
);
@loop $s, $v in $sizes {
:host([size='#{$s}']) {
min-width: map.get($v, 'w');
height: map.get($v, 'h');
font-size: map.get($v, 'f');
.icon { .icon {
--wc-icon-size: var(--wc-button-icon-size, #{map.get($v, 'f')}); --wc-icon-size: 12px;
} }
} }
:host([size='#{$s}'][circle]) { :host([size='small'][circle]) {
width: map.get($v, 'h'); width: 24px;
height: map.get($v, 'h'); height: 24px;
}
} }
:host([dashed]) button { :host([dashed]) button {

View File

@ -48,28 +48,19 @@ class Icon extends Component {
color: inherit; color: inherit;
fill: currentColor; fill: currentColor;
&.loading {
animation: load 1.5s linear infinite;
}
circle { circle {
stroke: currentColor; stroke: currentColor;
animation: circle 1.5s ease-in-out infinite; animation: circle 1.5s ease-in-out infinite;
} }
} }
$gaps: (
's': 20px,
'm': 24px,
'l': 32px,
'xl': 36px,
'xxl': 44px
);
@loop $k, $v in $gaps { :host([name='loading']) svg {
:host([size='#{$k}']) { animation: load 1.5s linear infinite;
width: $v;
height: $v;
} }
:host([size='small']) {
width: 24px;
height: 24px;
} }
@keyframes circle { @keyframes circle {
@ -96,10 +87,7 @@ class Icon extends Component {
render() { render() {
return html` return html`
<svg <svg class=${classMap({ svg: true })} viewBox="0 0 1024 1024">
class=${classMap({ svg: true, loading: this.name === 'loading' })}
viewBox="0 0 1024 1024"
>
${this.name === 'loading' ${this.name === 'loading'
? svg`<circle cx="512" cy="512" r="384" fill="none" stroke-width="80" />` ? svg`<circle cx="512" cy="512" r="384" fill="none" stroke-width="80" />`
: svg`<path d="${dict[this.name]}" />`} : svg`<path d="${dict[this.name]}" />`}

View File

@ -74,7 +74,7 @@ class CheckboxItem extends Component {
css` css`
:host { :host {
display: inline-flex; display: inline-flex;
align-items: center; height: 32px;
cursor: pointer; cursor: pointer;
label { label {
@ -126,30 +126,12 @@ class CheckboxItem extends Component {
`, `,
// 尺寸 // 尺寸
css` css`
@use 'sass:map'; :host([size='small']) {
$sizes: ( height: 24px;
s: (
h: 20px,
f: 12px
),
m: (
h: 24px,
f: 12px
),
xl: (
h: 36px,
f: 16px
)
);
@loop $s, $v in $sizes {
:host([size='#{$s}']) {
height: map.get($v, 'h');
.dot { .dot {
width: map.get($v, 'f'); width: 12px;
height: map.get($v, 'f'); height: 12px;
}
} }
} }
`, `,
@ -225,7 +207,7 @@ class CheckboxItem extends Component {
} }
render() { render() {
return html` <label return html`<label
tabindex=${this.disabled || this.readOnly ? 'none' : 0} tabindex=${this.disabled || this.readOnly ? 'none' : 0}
@click=${this.#click} @click=${this.#click}
@keydown=${this.#click} @keydown=${this.#click}

View File

@ -72,6 +72,7 @@ class RadioItem extends Component {
css` css`
:host { :host {
display: inline-flex; display: inline-flex;
height: 32px;
cursor: pointer; cursor: pointer;
label { label {
@ -127,35 +128,16 @@ class RadioItem extends Component {
`, `,
// 尺寸 // 尺寸
css` css`
@use 'sass:math'; :host([size='small']) {
@use 'sass:map'; height: 24px;
$sizes: (
s: (
h: 20px,
f: 12px
),
m: (
h: 24px,
f: 12px
),
xl: (
h: 36px,
f: 16px
)
);
@loop $s, $v in $sizes {
:host([size='#{$s}']) {
height: map.get($v, 'h');
.dot { .dot {
width: map.get($v, 'f'); width: 12px;
height: map.get($v, 'f'); height: 12px;
&::after { &::after {
width: math.div(map.get($v, 'f'), 2); width: 6px;
height: math.div(map.get($v, 'f'), 2); height: 6px;
}
} }
} }
} }
@ -232,7 +214,7 @@ class RadioItem extends Component {
} }
render() { render() {
return html` <label return html`<label
tabindex=${this.disabled || this.readOnly ? 'none' : 0} tabindex=${this.disabled || this.readOnly ? 'none' : 0}
@click=${this.#click} @click=${this.#click}
@keydown=${this.#click} @keydown=${this.#click}

View File

@ -63,25 +63,9 @@ class Star extends Component {
`, `,
// 尺寸 // 尺寸
css` css`
@use 'sass:map'; :host([size='small']) {
$sizes: ( --wc-star-size: 24px;
s: ( font-size: 12px;
w: 52px,
h: 20px,
f: 12px
),
m: (
w: 72px,
h: 24px,
f: 12px
)
);
@loop $s, $v in $sizes {
:host([size='#{$s}']) {
--wc-icon-size: #{map.get($v, 'h')};
font-size: map.get($v, 'f');
}
} }
`, `,
// 状态 // 状态