@seed-design/rootage-artifacts 0.0.0-alpha-20260414104312
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.
- package/README.md +10 -0
- package/collections.yaml +24 -0
- package/color.yaml +855 -0
- package/components/action-button.yaml +460 -0
- package/components/action-chip.yaml +150 -0
- package/components/action-sheet-close-button.yaml +45 -0
- package/components/action-sheet-item.yaml +52 -0
- package/components/action-sheet.yaml +115 -0
- package/components/avatar-stack.yaml +86 -0
- package/components/avatar.yaml +161 -0
- package/components/badge.yaml +210 -0
- package/components/bottom-sheet-close-button.yaml +38 -0
- package/components/bottom-sheet-handle.yaml +48 -0
- package/components/bottom-sheet.yaml +156 -0
- package/components/callout.yaml +213 -0
- package/components/checkbox-group.yaml +17 -0
- package/components/checkbox.yaml +59 -0
- package/components/checkmark.yaml +152 -0
- package/components/chip-tablist.yaml +28 -0
- package/components/chip.yaml +267 -0
- package/components/content-placeholder.yaml +45 -0
- package/components/contextual-floating-button.yaml +161 -0
- package/components/control-chip.yaml +169 -0
- package/components/dialog.yaml +131 -0
- package/components/divider.yaml +17 -0
- package/components/extended-action-sheet-close-button.yaml +48 -0
- package/components/extended-action-sheet-item.yaml +67 -0
- package/components/extended-action-sheet.yaml +134 -0
- package/components/extended-fab.yaml +109 -0
- package/components/fab.yaml +46 -0
- package/components/field-label.yaml +33 -0
- package/components/field.yaml +159 -0
- package/components/floating-action-button.yaml +99 -0
- package/components/help-bubble.yaml +127 -0
- package/components/identity-placeholder.yaml +23 -0
- package/components/image-frame-floater.yaml +18 -0
- package/components/image-frame-indicator.yaml +42 -0
- package/components/image-frame-reaction-button.yaml +60 -0
- package/components/image-frame.yaml +37 -0
- package/components/inline-banner.yaml +197 -0
- package/components/input-button.yaml +171 -0
- package/components/link-content.yaml +61 -0
- package/components/list-header.yaml +43 -0
- package/components/list-item.yaml +149 -0
- package/components/manner-temp-badge.yaml +102 -0
- package/components/manner-temp.yaml +80 -0
- package/components/menu-item.yaml +156 -0
- package/components/menu-sheet-close-button.yaml +48 -0
- package/components/menu-sheet-item.yaml +104 -0
- package/components/menu-sheet.yaml +136 -0
- package/components/menu.yaml +117 -0
- package/components/notification-badge.yaml +74 -0
- package/components/page-banner.yaml +302 -0
- package/components/progress-circle.yaml +105 -0
- package/components/radio-group.yaml +17 -0
- package/components/radio.yaml +59 -0
- package/components/radiomark.yaml +113 -0
- package/components/reaction-button.yaml +161 -0
- package/components/scroll-fog.yaml +23 -0
- package/components/segmented-control-indicator.yaml +38 -0
- package/components/segmented-control-item.yaml +76 -0
- package/components/segmented-control.yaml +23 -0
- package/components/select-box-checkmark.yaml +52 -0
- package/components/select-box-group.yaml +20 -0
- package/components/select-box.yaml +176 -0
- package/components/skeleton.yaml +73 -0
- package/components/slider-thumb.yaml +45 -0
- package/components/slider-tick.yaml +27 -0
- package/components/slider.yaml +169 -0
- package/components/snackbar.yaml +137 -0
- package/components/switch.yaml +66 -0
- package/components/switchmark.yaml +147 -0
- package/components/tab.yaml +57 -0
- package/components/tablist.yaml +64 -0
- package/components/tag-group-item.yaml +119 -0
- package/components/tag-group.yaml +40 -0
- package/components/text-button.yaml +46 -0
- package/components/text-input.yaml +234 -0
- package/components/toggle-button.yaml +201 -0
- package/components/top-navigation.yaml +106 -0
- package/components/typography.yaml +380 -0
- package/dimension.yaml +88 -0
- package/duration.yaml +29 -0
- package/font-size.yaml +77 -0
- package/font-weight.yaml +16 -0
- package/gradient.yaml +134 -0
- package/line-height.yaml +77 -0
- package/package.json +20 -0
- package/radius.yaml +40 -0
- package/shadow.yaml +63 -0
- package/timing-function.yaml +37 -0
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
# yaml-language-server: $schema=./schema.json
|
|
2
|
+
kind: ComponentSpec
|
|
3
|
+
metadata:
|
|
4
|
+
id: dialog
|
|
5
|
+
name: Dialog
|
|
6
|
+
data:
|
|
7
|
+
schema:
|
|
8
|
+
slots:
|
|
9
|
+
backdrop:
|
|
10
|
+
properties:
|
|
11
|
+
color:
|
|
12
|
+
type: color
|
|
13
|
+
enterDuration:
|
|
14
|
+
type: duration
|
|
15
|
+
enterTimingFunction:
|
|
16
|
+
type: cubicBezier
|
|
17
|
+
enterOpacity:
|
|
18
|
+
type: number
|
|
19
|
+
exitDuration:
|
|
20
|
+
type: duration
|
|
21
|
+
exitTimingFunction:
|
|
22
|
+
type: cubicBezier
|
|
23
|
+
exitOpacity:
|
|
24
|
+
type: number
|
|
25
|
+
content:
|
|
26
|
+
properties:
|
|
27
|
+
color:
|
|
28
|
+
type: color
|
|
29
|
+
cornerRadius:
|
|
30
|
+
type: dimension
|
|
31
|
+
marginX:
|
|
32
|
+
type: dimension
|
|
33
|
+
marginY:
|
|
34
|
+
type: dimension
|
|
35
|
+
maxWidth:
|
|
36
|
+
type: dimension
|
|
37
|
+
enterDuration:
|
|
38
|
+
type: duration
|
|
39
|
+
enterTimingFunction:
|
|
40
|
+
type: cubicBezier
|
|
41
|
+
enterOpacity:
|
|
42
|
+
type: number
|
|
43
|
+
enterScale:
|
|
44
|
+
type: number
|
|
45
|
+
exitDuration:
|
|
46
|
+
type: duration
|
|
47
|
+
exitTimingFunction:
|
|
48
|
+
type: cubicBezier
|
|
49
|
+
exitOpacity:
|
|
50
|
+
type: number
|
|
51
|
+
header:
|
|
52
|
+
properties:
|
|
53
|
+
gap:
|
|
54
|
+
type: dimension
|
|
55
|
+
paddingX:
|
|
56
|
+
type: dimension
|
|
57
|
+
paddingTop:
|
|
58
|
+
type: dimension
|
|
59
|
+
footer:
|
|
60
|
+
properties:
|
|
61
|
+
gap:
|
|
62
|
+
type: dimension
|
|
63
|
+
paddingX:
|
|
64
|
+
type: dimension
|
|
65
|
+
paddingTop:
|
|
66
|
+
type: dimension
|
|
67
|
+
paddingBottom:
|
|
68
|
+
type: dimension
|
|
69
|
+
title:
|
|
70
|
+
properties:
|
|
71
|
+
color:
|
|
72
|
+
type: color
|
|
73
|
+
fontSize:
|
|
74
|
+
type: dimension
|
|
75
|
+
lineHeight:
|
|
76
|
+
type: dimension
|
|
77
|
+
fontWeight:
|
|
78
|
+
type: number
|
|
79
|
+
description:
|
|
80
|
+
properties:
|
|
81
|
+
color:
|
|
82
|
+
type: color
|
|
83
|
+
fontSize:
|
|
84
|
+
type: dimension
|
|
85
|
+
lineHeight:
|
|
86
|
+
type: dimension
|
|
87
|
+
fontWeight:
|
|
88
|
+
type: number
|
|
89
|
+
definitions:
|
|
90
|
+
base:
|
|
91
|
+
enabled:
|
|
92
|
+
backdrop:
|
|
93
|
+
color: $color.bg.overlay
|
|
94
|
+
enterDuration: $duration.d2
|
|
95
|
+
enterTimingFunction: $timing-function.enter
|
|
96
|
+
enterOpacity: 0
|
|
97
|
+
exitDuration: $duration.d2
|
|
98
|
+
exitTimingFunction: $timing-function.exit
|
|
99
|
+
exitOpacity: 0
|
|
100
|
+
content:
|
|
101
|
+
color: $color.bg.layer-floating
|
|
102
|
+
cornerRadius: $radius.r5
|
|
103
|
+
marginX: $dimension.x8
|
|
104
|
+
marginY: $dimension.x16
|
|
105
|
+
maxWidth: 272px
|
|
106
|
+
enterDuration: $duration.d4
|
|
107
|
+
enterTimingFunction: $timing-function.enter-expressive
|
|
108
|
+
enterOpacity: 0
|
|
109
|
+
enterScale: 1.3
|
|
110
|
+
exitDuration: $duration.d2
|
|
111
|
+
exitTimingFunction: $timing-function.exit
|
|
112
|
+
exitOpacity: 0
|
|
113
|
+
header:
|
|
114
|
+
gap: $dimension.x1_5
|
|
115
|
+
paddingX: $dimension.x5
|
|
116
|
+
paddingTop: $dimension.x5
|
|
117
|
+
footer:
|
|
118
|
+
gap: $dimension.x2
|
|
119
|
+
paddingX: $dimension.x5
|
|
120
|
+
paddingTop: $dimension.x4
|
|
121
|
+
paddingBottom: $dimension.x5
|
|
122
|
+
title:
|
|
123
|
+
color: $color.fg.neutral
|
|
124
|
+
fontSize: $font-size.t7
|
|
125
|
+
lineHeight: $line-height.t7
|
|
126
|
+
fontWeight: $font-weight.bold
|
|
127
|
+
description:
|
|
128
|
+
color: $color.fg.neutral
|
|
129
|
+
fontSize: $font-size.t5
|
|
130
|
+
lineHeight: $line-height.t5
|
|
131
|
+
fontWeight: $font-weight.regular
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# yaml-language-server: $schema=./schema.json
|
|
2
|
+
kind: ComponentSpec
|
|
3
|
+
metadata:
|
|
4
|
+
id: divider
|
|
5
|
+
name: Divider
|
|
6
|
+
data:
|
|
7
|
+
schema:
|
|
8
|
+
slots:
|
|
9
|
+
root:
|
|
10
|
+
properties:
|
|
11
|
+
thickness:
|
|
12
|
+
type: dimension
|
|
13
|
+
definitions:
|
|
14
|
+
base:
|
|
15
|
+
enabled:
|
|
16
|
+
root:
|
|
17
|
+
thickness: 1px
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# yaml-language-server: $schema=./schema.json
|
|
2
|
+
kind: ComponentSpec
|
|
3
|
+
metadata:
|
|
4
|
+
id: extended-action-sheet-close-button
|
|
5
|
+
name: Extended Action Sheet Close Button
|
|
6
|
+
deprecated: No longer used.
|
|
7
|
+
data:
|
|
8
|
+
schema:
|
|
9
|
+
slots:
|
|
10
|
+
root:
|
|
11
|
+
properties:
|
|
12
|
+
color:
|
|
13
|
+
type: color
|
|
14
|
+
minHeight:
|
|
15
|
+
type: dimension
|
|
16
|
+
cornerRadius:
|
|
17
|
+
type: dimension
|
|
18
|
+
paddingX:
|
|
19
|
+
type: dimension
|
|
20
|
+
paddingY:
|
|
21
|
+
type: dimension
|
|
22
|
+
label:
|
|
23
|
+
properties:
|
|
24
|
+
color:
|
|
25
|
+
type: color
|
|
26
|
+
fontSize:
|
|
27
|
+
type: dimension
|
|
28
|
+
lineHeight:
|
|
29
|
+
type: dimension
|
|
30
|
+
fontWeight:
|
|
31
|
+
type: number
|
|
32
|
+
definitions:
|
|
33
|
+
base:
|
|
34
|
+
enabled:
|
|
35
|
+
root:
|
|
36
|
+
color: $color.bg.neutral-weak
|
|
37
|
+
minHeight: 52px
|
|
38
|
+
cornerRadius: $radius.r3
|
|
39
|
+
paddingX: $dimension.x5
|
|
40
|
+
paddingY: $dimension.x3_5
|
|
41
|
+
label:
|
|
42
|
+
color: $color.fg.neutral
|
|
43
|
+
fontSize: $font-size.t5
|
|
44
|
+
lineHeight: $line-height.t5
|
|
45
|
+
fontWeight: $font-weight.medium
|
|
46
|
+
pressed:
|
|
47
|
+
root:
|
|
48
|
+
color: $color.bg.neutral-weak-pressed
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# yaml-language-server: $schema=./schema.json
|
|
2
|
+
kind: ComponentSpec
|
|
3
|
+
metadata:
|
|
4
|
+
id: extended-action-sheet-item
|
|
5
|
+
name: Extended Action Sheet Item
|
|
6
|
+
deprecated: Use menu-sheet-item instead.
|
|
7
|
+
data:
|
|
8
|
+
schema:
|
|
9
|
+
slots:
|
|
10
|
+
root:
|
|
11
|
+
properties:
|
|
12
|
+
color:
|
|
13
|
+
type: color
|
|
14
|
+
minHeight:
|
|
15
|
+
type: dimension
|
|
16
|
+
paddingX:
|
|
17
|
+
type: dimension
|
|
18
|
+
paddingY:
|
|
19
|
+
type: dimension
|
|
20
|
+
gap:
|
|
21
|
+
type: dimension
|
|
22
|
+
prefixIcon:
|
|
23
|
+
properties:
|
|
24
|
+
size:
|
|
25
|
+
type: dimension
|
|
26
|
+
color:
|
|
27
|
+
type: color
|
|
28
|
+
label:
|
|
29
|
+
properties:
|
|
30
|
+
color:
|
|
31
|
+
type: color
|
|
32
|
+
fontSize:
|
|
33
|
+
type: dimension
|
|
34
|
+
lineHeight:
|
|
35
|
+
type: dimension
|
|
36
|
+
fontWeight:
|
|
37
|
+
type: number
|
|
38
|
+
definitions:
|
|
39
|
+
base:
|
|
40
|
+
enabled:
|
|
41
|
+
root:
|
|
42
|
+
color: $color.bg.neutral-weak
|
|
43
|
+
minHeight: 52px
|
|
44
|
+
paddingX: $dimension.x4
|
|
45
|
+
paddingY: $dimension.x3_5
|
|
46
|
+
gap: $dimension.x3_5
|
|
47
|
+
prefixIcon:
|
|
48
|
+
size: 22px
|
|
49
|
+
label:
|
|
50
|
+
fontSize: $font-size.t5
|
|
51
|
+
lineHeight: $line-height.t5
|
|
52
|
+
fontWeight: $font-weight.regular
|
|
53
|
+
pressed:
|
|
54
|
+
root:
|
|
55
|
+
color: $color.bg.neutral-weak-pressed
|
|
56
|
+
tone=neutral:
|
|
57
|
+
enabled:
|
|
58
|
+
prefixIcon:
|
|
59
|
+
color: $color.fg.neutral
|
|
60
|
+
label:
|
|
61
|
+
color: $color.fg.neutral
|
|
62
|
+
tone=critical:
|
|
63
|
+
enabled:
|
|
64
|
+
prefixIcon:
|
|
65
|
+
color: $color.fg.critical
|
|
66
|
+
label:
|
|
67
|
+
color: $color.fg.critical
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
# yaml-language-server: $schema=./schema.json
|
|
2
|
+
kind: ComponentSpec
|
|
3
|
+
metadata:
|
|
4
|
+
id: extended-action-sheet
|
|
5
|
+
name: Extended Action Sheet
|
|
6
|
+
deprecated: Use menu-sheet instead.
|
|
7
|
+
data:
|
|
8
|
+
schema:
|
|
9
|
+
slots:
|
|
10
|
+
backdrop:
|
|
11
|
+
properties:
|
|
12
|
+
color:
|
|
13
|
+
type: color
|
|
14
|
+
enterDuration:
|
|
15
|
+
type: duration
|
|
16
|
+
enterTimingFunction:
|
|
17
|
+
type: cubicBezier
|
|
18
|
+
enterOpacity:
|
|
19
|
+
type: number
|
|
20
|
+
exitDuration:
|
|
21
|
+
type: duration
|
|
22
|
+
exitTimingFunction:
|
|
23
|
+
type: cubicBezier
|
|
24
|
+
exitOpacity:
|
|
25
|
+
type: number
|
|
26
|
+
content:
|
|
27
|
+
properties:
|
|
28
|
+
color:
|
|
29
|
+
type: color
|
|
30
|
+
maxWidth:
|
|
31
|
+
type: dimension
|
|
32
|
+
paddingX:
|
|
33
|
+
type: dimension
|
|
34
|
+
paddingY:
|
|
35
|
+
type: dimension
|
|
36
|
+
topCornerRadius:
|
|
37
|
+
type: dimension
|
|
38
|
+
enterDuration:
|
|
39
|
+
type: duration
|
|
40
|
+
enterTimingFunction:
|
|
41
|
+
type: cubicBezier
|
|
42
|
+
exitDuration:
|
|
43
|
+
type: duration
|
|
44
|
+
exitTimingFunction:
|
|
45
|
+
type: cubicBezier
|
|
46
|
+
header:
|
|
47
|
+
properties:
|
|
48
|
+
gap:
|
|
49
|
+
type: dimension
|
|
50
|
+
paddingBottom:
|
|
51
|
+
type: dimension
|
|
52
|
+
title:
|
|
53
|
+
properties:
|
|
54
|
+
fontSize:
|
|
55
|
+
type: dimension
|
|
56
|
+
lineHeight:
|
|
57
|
+
type: dimension
|
|
58
|
+
fontWeight:
|
|
59
|
+
type: number
|
|
60
|
+
color:
|
|
61
|
+
type: color
|
|
62
|
+
description:
|
|
63
|
+
properties:
|
|
64
|
+
fontSize:
|
|
65
|
+
type: dimension
|
|
66
|
+
lineHeight:
|
|
67
|
+
type: dimension
|
|
68
|
+
fontWeight:
|
|
69
|
+
type: number
|
|
70
|
+
color:
|
|
71
|
+
type: color
|
|
72
|
+
list:
|
|
73
|
+
properties:
|
|
74
|
+
gap:
|
|
75
|
+
type: dimension
|
|
76
|
+
group:
|
|
77
|
+
properties:
|
|
78
|
+
cornerRadius:
|
|
79
|
+
type: dimension
|
|
80
|
+
divider:
|
|
81
|
+
properties:
|
|
82
|
+
strokeBottomWidth:
|
|
83
|
+
type: dimension
|
|
84
|
+
strokeColor:
|
|
85
|
+
type: color
|
|
86
|
+
footer:
|
|
87
|
+
properties:
|
|
88
|
+
paddingTop:
|
|
89
|
+
type: dimension
|
|
90
|
+
definitions:
|
|
91
|
+
base:
|
|
92
|
+
enabled:
|
|
93
|
+
backdrop:
|
|
94
|
+
color: $color.bg.overlay
|
|
95
|
+
enterDuration: $duration.d2
|
|
96
|
+
enterTimingFunction: $timing-function.enter
|
|
97
|
+
enterOpacity: 0
|
|
98
|
+
exitDuration: $duration.d2
|
|
99
|
+
exitTimingFunction: $timing-function.exit
|
|
100
|
+
exitOpacity: 0
|
|
101
|
+
content:
|
|
102
|
+
color: $color.bg.layer-floating
|
|
103
|
+
maxWidth: 480px
|
|
104
|
+
paddingX: $dimension.spacing-x.global-gutter
|
|
105
|
+
paddingY: $dimension.x4
|
|
106
|
+
topCornerRadius: $radius.r5
|
|
107
|
+
enterDuration: $duration.d6
|
|
108
|
+
enterTimingFunction: $timing-function.enter-expressive
|
|
109
|
+
# Do we need translateY definition here?
|
|
110
|
+
exitDuration: $duration.d4
|
|
111
|
+
exitTimingFunction: $timing-function.exit
|
|
112
|
+
header:
|
|
113
|
+
gap: $dimension.x1
|
|
114
|
+
paddingBottom: $dimension.x4
|
|
115
|
+
title:
|
|
116
|
+
fontSize: $font-size.t6
|
|
117
|
+
lineHeight: $line-height.t6
|
|
118
|
+
fontWeight: $font-weight.bold
|
|
119
|
+
color: $color.fg.neutral
|
|
120
|
+
description:
|
|
121
|
+
fontSize: $font-size.t4
|
|
122
|
+
lineHeight: $line-height.t4
|
|
123
|
+
fontWeight: $font-weight.regular
|
|
124
|
+
color: $color.fg.neutral-muted
|
|
125
|
+
# We might need description in near future
|
|
126
|
+
list:
|
|
127
|
+
gap: $dimension.x2_5
|
|
128
|
+
group:
|
|
129
|
+
cornerRadius: $radius.r4
|
|
130
|
+
divider:
|
|
131
|
+
strokeBottomWidth: 1px
|
|
132
|
+
strokeColor: $color.stroke.neutral-muted
|
|
133
|
+
footer:
|
|
134
|
+
paddingTop: $dimension.x2_5
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
# yaml-language-server: $schema=./schema.json
|
|
2
|
+
kind: ComponentSpec
|
|
3
|
+
metadata:
|
|
4
|
+
id: extended-fab
|
|
5
|
+
name: Extended Fab
|
|
6
|
+
deprecated: Use contextual-floating-button instead.
|
|
7
|
+
data:
|
|
8
|
+
schema:
|
|
9
|
+
slots:
|
|
10
|
+
root:
|
|
11
|
+
properties:
|
|
12
|
+
cornerRadius:
|
|
13
|
+
type: dimension
|
|
14
|
+
shadow:
|
|
15
|
+
type: shadow
|
|
16
|
+
color:
|
|
17
|
+
type: color
|
|
18
|
+
minHeight:
|
|
19
|
+
type: dimension
|
|
20
|
+
gap:
|
|
21
|
+
type: dimension
|
|
22
|
+
paddingX:
|
|
23
|
+
type: dimension
|
|
24
|
+
paddingY:
|
|
25
|
+
type: dimension
|
|
26
|
+
label:
|
|
27
|
+
properties:
|
|
28
|
+
color:
|
|
29
|
+
type: color
|
|
30
|
+
fontSize:
|
|
31
|
+
type: dimension
|
|
32
|
+
lineHeight:
|
|
33
|
+
type: dimension
|
|
34
|
+
fontWeight:
|
|
35
|
+
type: number
|
|
36
|
+
prefixIcon:
|
|
37
|
+
properties:
|
|
38
|
+
color:
|
|
39
|
+
type: color
|
|
40
|
+
size:
|
|
41
|
+
type: dimension
|
|
42
|
+
variants:
|
|
43
|
+
variant:
|
|
44
|
+
values:
|
|
45
|
+
neutralSolid:
|
|
46
|
+
description: 기본 FAB 스타일입니다.
|
|
47
|
+
layerFloating:
|
|
48
|
+
description: 플로팅 레이어 위에 사용하는 스타일입니다.
|
|
49
|
+
definitions:
|
|
50
|
+
base:
|
|
51
|
+
enabled:
|
|
52
|
+
root:
|
|
53
|
+
cornerRadius: $radius.full
|
|
54
|
+
shadow:
|
|
55
|
+
type: shadow
|
|
56
|
+
value:
|
|
57
|
+
- offsetX: 0px
|
|
58
|
+
offsetY: 2px
|
|
59
|
+
blur: 6px
|
|
60
|
+
spread: 0px
|
|
61
|
+
color: "#00000026"
|
|
62
|
+
variant=neutralSolid:
|
|
63
|
+
enabled:
|
|
64
|
+
root:
|
|
65
|
+
color: $color.bg.neutral-inverted
|
|
66
|
+
label:
|
|
67
|
+
color: $color.fg.neutral-inverted
|
|
68
|
+
prefixIcon:
|
|
69
|
+
color: $color.fg.neutral-inverted
|
|
70
|
+
pressed:
|
|
71
|
+
root:
|
|
72
|
+
color: $color.bg.neutral-inverted-pressed
|
|
73
|
+
variant=layerFloating:
|
|
74
|
+
enabled:
|
|
75
|
+
root:
|
|
76
|
+
color: $color.bg.layer-floating
|
|
77
|
+
label:
|
|
78
|
+
color: $color.fg.neutral
|
|
79
|
+
prefixIcon:
|
|
80
|
+
color: $color.fg.neutral
|
|
81
|
+
pressed:
|
|
82
|
+
root:
|
|
83
|
+
color: $color.bg.layer-floating-pressed
|
|
84
|
+
size=small:
|
|
85
|
+
enabled:
|
|
86
|
+
root:
|
|
87
|
+
minHeight: 40px
|
|
88
|
+
gap: $dimension.x1
|
|
89
|
+
paddingX: $dimension.x3_5
|
|
90
|
+
paddingY: $dimension.x2_5
|
|
91
|
+
prefixIcon:
|
|
92
|
+
size: 16px
|
|
93
|
+
label:
|
|
94
|
+
fontSize: $font-size.t4
|
|
95
|
+
lineHeight: $line-height.t4
|
|
96
|
+
fontWeight: $font-weight.medium
|
|
97
|
+
size=medium:
|
|
98
|
+
enabled:
|
|
99
|
+
root:
|
|
100
|
+
minHeight: 48px
|
|
101
|
+
gap: $dimension.x1
|
|
102
|
+
paddingX: $dimension.x4
|
|
103
|
+
paddingY: $dimension.x3
|
|
104
|
+
prefixIcon:
|
|
105
|
+
size: 16px
|
|
106
|
+
label:
|
|
107
|
+
fontSize: $font-size.t5
|
|
108
|
+
lineHeight: $line-height.t5
|
|
109
|
+
fontWeight: $font-weight.bold
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# yaml-language-server: $schema=./schema.json
|
|
2
|
+
kind: ComponentSpec
|
|
3
|
+
metadata:
|
|
4
|
+
id: fab
|
|
5
|
+
name: Fab
|
|
6
|
+
deprecated: Use contextual-floating-button instead.
|
|
7
|
+
data:
|
|
8
|
+
schema:
|
|
9
|
+
slots:
|
|
10
|
+
root:
|
|
11
|
+
properties:
|
|
12
|
+
color:
|
|
13
|
+
type: color
|
|
14
|
+
cornerRadius:
|
|
15
|
+
type: dimension
|
|
16
|
+
size:
|
|
17
|
+
type: dimension
|
|
18
|
+
shadow:
|
|
19
|
+
type: shadow
|
|
20
|
+
icon:
|
|
21
|
+
properties:
|
|
22
|
+
color:
|
|
23
|
+
type: color
|
|
24
|
+
size:
|
|
25
|
+
type: dimension
|
|
26
|
+
definitions:
|
|
27
|
+
base:
|
|
28
|
+
enabled:
|
|
29
|
+
root:
|
|
30
|
+
color: $color.bg.layer-floating
|
|
31
|
+
cornerRadius: $radius.full
|
|
32
|
+
size: 44px
|
|
33
|
+
shadow:
|
|
34
|
+
type: shadow
|
|
35
|
+
value:
|
|
36
|
+
- offsetX: 0px
|
|
37
|
+
offsetY: 2px
|
|
38
|
+
blur: 6px
|
|
39
|
+
spread: 0px
|
|
40
|
+
color: "#00000026"
|
|
41
|
+
icon:
|
|
42
|
+
color: $color.fg.neutral
|
|
43
|
+
size: 22px
|
|
44
|
+
pressed:
|
|
45
|
+
root:
|
|
46
|
+
color: $color.bg.layer-floating-pressed
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# yaml-language-server: $schema=./schema.json
|
|
2
|
+
kind: ComponentSpec
|
|
3
|
+
metadata:
|
|
4
|
+
id: field-label
|
|
5
|
+
name: Field Label
|
|
6
|
+
data:
|
|
7
|
+
schema:
|
|
8
|
+
slots:
|
|
9
|
+
root:
|
|
10
|
+
properties:
|
|
11
|
+
color:
|
|
12
|
+
type: color
|
|
13
|
+
fontSize:
|
|
14
|
+
type: dimension
|
|
15
|
+
lineHeight:
|
|
16
|
+
type: dimension
|
|
17
|
+
fontWeight:
|
|
18
|
+
type: number
|
|
19
|
+
definitions:
|
|
20
|
+
base:
|
|
21
|
+
enabled:
|
|
22
|
+
root:
|
|
23
|
+
color: $color.fg.neutral
|
|
24
|
+
fontSize: $font-size.t5
|
|
25
|
+
lineHeight: $line-height.t5
|
|
26
|
+
weight=medium:
|
|
27
|
+
enabled:
|
|
28
|
+
root:
|
|
29
|
+
fontWeight: $font-weight.medium
|
|
30
|
+
weight=bold:
|
|
31
|
+
enabled:
|
|
32
|
+
root:
|
|
33
|
+
fontWeight: $font-weight.bold
|