File tree 9 files changed +61
-89
lines changed
9 files changed +61
-89
lines changed Original file line number Diff line number Diff line change 24
24
},
25
25
"dependencies" : {
26
26
"@bundled-es-modules/glob" : " ^10.3.13" ,
27
- "@lion/ui" : " ^0.5.6 " ,
27
+ "@lion/ui" : " ^0.7.2 " ,
28
28
"@open-wc/dedupe-mixin" : " ^1.4.0" ,
29
- "@rollup/browser" : " ^4.13.0 " ,
30
- "@tokens-studio/sd-transforms" : " ^0.14.4 " ,
31
- "@tokens-studio/tokens" : " ^0.0.24 " ,
29
+ "@rollup/browser" : " ^4.17.2 " ,
30
+ "@tokens-studio/sd-transforms" : " ^0.16.1 " ,
31
+ "@tokens-studio/tokens" : " ^0.1.1 " ,
32
32
"@zip.js/zip.js" : " ^2.7.40" ,
33
33
"acorn" : " ^8.11.3" ,
34
34
"estree-walker" : " ^3.0.3" ,
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class SdCombobox extends LionCombobox {
33
33
color: var(--fgDefault);
34
34
line-height: 1;
35
35
background-color: var(--inputBg);
36
- border: 1px solid var(--inputBorderRest );
36
+ border: 1px solid var(--borderSubtle );
37
37
}
38
38
39
39
::slotted([slot="label"]) {
@@ -63,7 +63,7 @@ class SdCombobox extends LionCombobox {
63
63
margin-top: var(--space2);
64
64
background-color: var(--bgDefault);
65
65
box-shadow: var(--shadowsSmall);
66
- border: 1px solid var(--borderMuted );
66
+ border: 1px solid var(--borderSubtle );
67
67
border-radius: var(--radiiMedium);
68
68
padding: var(--space3);
69
69
}
Original file line number Diff line number Diff line change @@ -241,9 +241,8 @@ export class SdSelectionDisplay extends LitElement {
241
241
if ( ev . key === "Backspace" ) {
242
242
if ( ! this . _inputNode . value ) {
243
243
if ( this . _removeChipOnNextBackspace && this . _selectedElements . length ) {
244
- this . _selectedElements [
245
- this . _selectedElements . length - 1
246
- ] . checked = false ;
244
+ this . _selectedElements [ this . _selectedElements . length - 1 ] . checked =
245
+ false ;
247
246
}
248
247
this . _removeChipOnNextBackspace = true ;
249
248
}
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ class SdDialogFrame extends LitElement {
12
12
position: relative;
13
13
box-shadow: var(--shadowDefault);
14
14
background-color: var(--bgDefault);
15
- border: 1px solid var(--borderMuted );
15
+ border: 1px solid var(--borderSubtle );
16
16
border-radius: var(--radiiMedium);
17
17
}
18
18
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export default css`
26
26
color : var (--fgDefault );
27
27
line-height : 1 ;
28
28
background-color : var (--inputBg );
29
- border : 1px solid var (--inputBorderRest );
29
+ border : 1px solid var (--borderSubtle );
30
30
}
31
31
32
32
::slotted ([slot = "input" ]: focus-visible ) {
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ export default css`
46
46
}
47
47
48
48
.platform {
49
- border : 1px solid var (--borderMuted );
49
+ border : 1px solid var (--borderSubtle );
50
50
border-radius : var (--radiiMedium );
51
51
background : var (--bgCanvas );
52
52
}
@@ -55,7 +55,7 @@ export default css`
55
55
display : flex;
56
56
justify-content : space-between;
57
57
align-items : center;
58
- border-bottom : 1px solid var (--borderMuted );
58
+ border-bottom : 1px solid var (--borderSubtle );
59
59
padding : var (--space1 ) var (--space5 );
60
60
padding-right : var (--space1 );
61
61
}
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export class ConfiguratorElement extends LitElement {
56
56
display: flex;
57
57
height: 50%;
58
58
border-radius: var(--border-radius-editor);
59
- border-left: 1px solid var(--borderMuted );
59
+ border-left: 1px solid var(--borderSubtle );
60
60
margin: 0 auto;
61
61
position: relative;
62
62
}
Original file line number Diff line number Diff line change 46
46
47
47
header {
48
48
padding : var (--space7 );
49
- border-bottom : 1px solid var (--borderMuted );
49
+ border-bottom : 1px solid var (--borderSubtle );
50
50
}
51
51
52
52
h1 {
You can’t perform that action at this time.
0 commit comments