@public-ui/themes 4.0.0-alpha.0 → 4.0.0-alpha.10
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 +17 -7
- package/assets/README.md +1 -0
- package/assets/codicons/codicon.css +54 -1
- package/assets/codicons/codicon.csv +41 -0
- package/assets/codicons/codicon.svg +1 -1
- package/assets/codicons/codicon.ttf +0 -0
- package/assets/kreon/OFL.txt +93 -93
- package/assets/material-icons/README.md +19 -14
- package/assets/material-icons/_data/versions.json +2123 -2123
- package/assets/material-icons/css/_mixins.scss +2 -2
- package/assets/material-icons/css/_variables.scss +3 -3
- package/assets/material-icons/css/material-icons.scss +16 -22
- package/assets/material-icons/iconfont/filled.scss +3 -3
- package/assets/material-icons/iconfont/material-icons.scss +5 -5
- package/assets/material-icons/iconfont/outlined.scss +3 -3
- package/assets/material-icons/iconfont/round.scss +3 -3
- package/assets/material-icons/iconfont/sharp.scss +3 -3
- package/assets/material-icons/iconfont/two-tone.scss +3 -3
- package/assets/material-icons/index.d.ts +2122 -2122
- package/assets/material-icons/package.json +50 -50
- package/assets/material-symbols/README.md +18 -11
- package/assets/material-symbols/index.d.ts +2803 -2803
- package/assets/material-symbols/index.scss +3 -3
- package/assets/material-symbols/outlined.scss +2 -2
- package/assets/material-symbols/package.json +39 -39
- package/assets/material-symbols/rounded.scss +2 -2
- package/assets/material-symbols/sharp.scss +2 -2
- package/assets/noto-sans/fonts/OFL.txt +93 -93
- package/assets/roboto/LICENSE.txt +202 -202
- package/dist/default/src/index.d.ts +5 -8
- package/dist/ecl/src/ecl-ec/index.d.ts +5 -8
- package/dist/ecl/src/ecl-eu/index.d.ts +5 -8
- package/dist/index.cjs +1412 -397
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1413 -397
- package/dist/index.mjs.map +1 -1
- package/dist/src/index.d.ts +0 -1
- package/package.json +20 -13
- package/assets/codicons/codicon.html +0 -3911
- package/dist/itzbund/src/index.d.ts +0 -61
package/README.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# KoliBri - Themes
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@public-ui/components)
|
|
4
|
+
[](https://github.com/public-ui/kolibri/blob/main/LICENSE)
|
|
5
|
+
[](https://www.npmjs.com/package/@public-ui/themes)
|
|
6
|
+
[](https://github.com/public-ui/kolibri/issues)
|
|
7
|
+
[](https://github.com/public-ui/kolibri/pulls)
|
|
8
|
+
[](https://bundlephobia.com/result?p=@public-ui/themes)
|
|
9
|
+

|
|
10
|
+
|
|
3
11
|
The **Themes** module contains numerous themes (style guides) for the component library. They can be loaded in combination with the Components module.
|
|
4
12
|
|
|
5
13
|
You can read more about **modularization** in the [architecture concept](https://public-ui.github.io/docs/concepts/architecture).
|
|
@@ -11,9 +19,9 @@ More about the **project** can be found in the [documentation](https://public-ui
|
|
|
11
19
|
You can install the KoliBri themes with `npm`, `pnpm` or `yarn`:
|
|
12
20
|
|
|
13
21
|
```bash
|
|
14
|
-
npm i
|
|
15
|
-
pnpm i
|
|
16
|
-
yarn add
|
|
22
|
+
npm i @public-ui/themes
|
|
23
|
+
pnpm i @public-ui/themes
|
|
24
|
+
yarn add @public-ui/themes
|
|
17
25
|
```
|
|
18
26
|
|
|
19
27
|
## Usage
|
|
@@ -22,13 +30,13 @@ Register the themes like this:
|
|
|
22
30
|
|
|
23
31
|
```tsx
|
|
24
32
|
import { register } from '@public-ui/components';
|
|
25
|
-
import { defineCustomElements } from '@public-ui/components/
|
|
26
|
-
import { DEFAULT, ECL_EC, ECL_EU
|
|
33
|
+
import { defineCustomElements } from '@public-ui/components/loader';
|
|
34
|
+
import { DEFAULT, ECL_EC, ECL_EU } from '@public-ui/themes';
|
|
27
35
|
|
|
28
36
|
register(
|
|
29
37
|
DEFAULT,
|
|
30
38
|
// or provide an array to register multiple themes:
|
|
31
|
-
// [DEFAULT, ECL_EC, ECL_EU
|
|
39
|
+
// [DEFAULT, ECL_EC, ECL_EU]
|
|
32
40
|
defineCustomElements,
|
|
33
41
|
)
|
|
34
42
|
.then(() => {
|
|
@@ -39,13 +47,15 @@ register(
|
|
|
39
47
|
});
|
|
40
48
|
```
|
|
41
49
|
|
|
50
|
+
Override theme tokens in your own stylesheet as needed. The [default theme README](./default/README.md) lists all available variables.
|
|
51
|
+
|
|
42
52
|
## Important settings
|
|
43
53
|
|
|
44
54
|
### Usage of pnpm
|
|
45
55
|
|
|
46
56
|
We use **pnpm** as package manager and there is a tiny typing issue with the default typescript setup.
|
|
47
57
|
|
|
48
|
-
**What
|
|
58
|
+
**What do we know?**
|
|
49
59
|
|
|
50
60
|
This seems to be a general issue:
|
|
51
61
|
|
package/assets/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
The assets folder typically contains all the static files that your project needs to function, that are not directly related to the codebase. These can include images, stylesheets (CSS files), scripts (JavaScript files), fonts, and other multimedia content. These files are often served directly to the user by the server, and are essential for the correct visual presentation and functionality of your application.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@font-face {
|
|
7
7
|
font-family: "codicon";
|
|
8
8
|
font-display: block;
|
|
9
|
-
src: url("./codicon.ttf?
|
|
9
|
+
src: url("./codicon.ttf?be64b7213e352cd7f91ef58198e71237") format("truetype");
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.codicon[class*='codicon-'] {
|
|
@@ -72,6 +72,7 @@
|
|
|
72
72
|
.codicon-record-keys:before { content: "\ea65" }
|
|
73
73
|
.codicon-keyboard:before { content: "\ea65" }
|
|
74
74
|
.codicon-tag:before { content: "\ea66" }
|
|
75
|
+
.codicon-git-pull-request-label:before { content: "\ea66" }
|
|
75
76
|
.codicon-tag-add:before { content: "\ea66" }
|
|
76
77
|
.codicon-tag-remove:before { content: "\ea66" }
|
|
77
78
|
.codicon-person:before { content: "\ea67" }
|
|
@@ -264,6 +265,7 @@
|
|
|
264
265
|
.codicon-diff-removed:before { content: "\eadf" }
|
|
265
266
|
.codicon-diff-renamed:before { content: "\eae0" }
|
|
266
267
|
.codicon-diff:before { content: "\eae1" }
|
|
268
|
+
.codicon-diff-sidebyside:before { content: "\eae1" }
|
|
267
269
|
.codicon-discard:before { content: "\eae2" }
|
|
268
270
|
.codicon-editor-layout:before { content: "\eae3" }
|
|
269
271
|
.codicon-empty-window:before { content: "\eae4" }
|
|
@@ -327,6 +329,7 @@
|
|
|
327
329
|
.codicon-megaphone:before { content: "\eb1e" }
|
|
328
330
|
.codicon-mention:before { content: "\eb1f" }
|
|
329
331
|
.codicon-milestone:before { content: "\eb20" }
|
|
332
|
+
.codicon-git-pull-request-milestone:before { content: "\eb20" }
|
|
330
333
|
.codicon-mortar-board:before { content: "\eb21" }
|
|
331
334
|
.codicon-move:before { content: "\eb22" }
|
|
332
335
|
.codicon-multiple-windows:before { content: "\eb23" }
|
|
@@ -452,9 +455,11 @@
|
|
|
452
455
|
.codicon-menu:before { content: "\eb94" }
|
|
453
456
|
.codicon-expand-all:before { content: "\eb95" }
|
|
454
457
|
.codicon-feedback:before { content: "\eb96" }
|
|
458
|
+
.codicon-git-pull-request-reviewer:before { content: "\eb96" }
|
|
455
459
|
.codicon-group-by-ref-type:before { content: "\eb97" }
|
|
456
460
|
.codicon-ungroup-by-ref-type:before { content: "\eb98" }
|
|
457
461
|
.codicon-account:before { content: "\eb99" }
|
|
462
|
+
.codicon-git-pull-request-assignee:before { content: "\eb99" }
|
|
458
463
|
.codicon-bell-dot:before { content: "\eb9a" }
|
|
459
464
|
.codicon-debug-console:before { content: "\eb9b" }
|
|
460
465
|
.codicon-library:before { content: "\eb9c" }
|
|
@@ -568,7 +573,11 @@
|
|
|
568
573
|
.codicon-blank:before { content: "\ec03" }
|
|
569
574
|
.codicon-heart-filled:before { content: "\ec04" }
|
|
570
575
|
.codicon-map:before { content: "\ec05" }
|
|
576
|
+
.codicon-map-horizontal:before { content: "\ec05" }
|
|
577
|
+
.codicon-fold-horizontal:before { content: "\ec05" }
|
|
571
578
|
.codicon-map-filled:before { content: "\ec06" }
|
|
579
|
+
.codicon-map-horizontal-filled:before { content: "\ec06" }
|
|
580
|
+
.codicon-fold-horizontal-filled:before { content: "\ec06" }
|
|
572
581
|
.codicon-circle-small:before { content: "\ec07" }
|
|
573
582
|
.codicon-bell-slash:before { content: "\ec08" }
|
|
574
583
|
.codicon-bell-slash-dot:before { content: "\ec09" }
|
|
@@ -580,3 +589,47 @@
|
|
|
580
589
|
.codicon-send:before { content: "\ec0f" }
|
|
581
590
|
.codicon-sparkle:before { content: "\ec10" }
|
|
582
591
|
.codicon-insert:before { content: "\ec11" }
|
|
592
|
+
.codicon-mic:before { content: "\ec12" }
|
|
593
|
+
.codicon-thumbsdown-filled:before { content: "\ec13" }
|
|
594
|
+
.codicon-thumbsup-filled:before { content: "\ec14" }
|
|
595
|
+
.codicon-coffee:before { content: "\ec15" }
|
|
596
|
+
.codicon-snake:before { content: "\ec16" }
|
|
597
|
+
.codicon-game:before { content: "\ec17" }
|
|
598
|
+
.codicon-vr:before { content: "\ec18" }
|
|
599
|
+
.codicon-chip:before { content: "\ec19" }
|
|
600
|
+
.codicon-piano:before { content: "\ec1a" }
|
|
601
|
+
.codicon-music:before { content: "\ec1b" }
|
|
602
|
+
.codicon-mic-filled:before { content: "\ec1c" }
|
|
603
|
+
.codicon-repo-fetch:before { content: "\ec1d" }
|
|
604
|
+
.codicon-copilot:before { content: "\ec1e" }
|
|
605
|
+
.codicon-lightbulb-sparkle:before { content: "\ec1f" }
|
|
606
|
+
.codicon-robot:before { content: "\ec20" }
|
|
607
|
+
.codicon-sparkle-filled:before { content: "\ec21" }
|
|
608
|
+
.codicon-diff-single:before { content: "\ec22" }
|
|
609
|
+
.codicon-diff-multiple:before { content: "\ec23" }
|
|
610
|
+
.codicon-surround-with:before { content: "\ec24" }
|
|
611
|
+
.codicon-share:before { content: "\ec25" }
|
|
612
|
+
.codicon-git-stash:before { content: "\ec26" }
|
|
613
|
+
.codicon-git-stash-apply:before { content: "\ec27" }
|
|
614
|
+
.codicon-git-stash-pop:before { content: "\ec28" }
|
|
615
|
+
.codicon-vscode:before { content: "\ec29" }
|
|
616
|
+
.codicon-vscode-insiders:before { content: "\ec2a" }
|
|
617
|
+
.codicon-code-oss:before { content: "\ec2b" }
|
|
618
|
+
.codicon-run-coverage:before { content: "\ec2c" }
|
|
619
|
+
.codicon-run-all-coverage:before { content: "\ec2d" }
|
|
620
|
+
.codicon-coverage:before { content: "\ec2e" }
|
|
621
|
+
.codicon-github-project:before { content: "\ec2f" }
|
|
622
|
+
.codicon-map-vertical:before { content: "\ec30" }
|
|
623
|
+
.codicon-fold-vertical:before { content: "\ec30" }
|
|
624
|
+
.codicon-map-vertical-filled:before { content: "\ec31" }
|
|
625
|
+
.codicon-fold-vertical-filled:before { content: "\ec31" }
|
|
626
|
+
.codicon-go-to-search:before { content: "\ec32" }
|
|
627
|
+
.codicon-percentage:before { content: "\ec33" }
|
|
628
|
+
.codicon-sort-percentage:before { content: "\ec33" }
|
|
629
|
+
.codicon-attach:before { content: "\ec34" }
|
|
630
|
+
.codicon-go-to-editing-session:before { content: "\ec35" }
|
|
631
|
+
.codicon-edit-session:before { content: "\ec36" }
|
|
632
|
+
.codicon-code-review:before { content: "\ec37" }
|
|
633
|
+
.codicon-copilot-warning:before { content: "\ec38" }
|
|
634
|
+
.codicon-python:before { content: "\ec39" }
|
|
635
|
+
.codicon-git-fetch:before { content: "\f101" }
|
|
@@ -17,6 +17,7 @@ arrow-small-right,,EA9F
|
|
|
17
17
|
arrow-small-up,,EAA0
|
|
18
18
|
arrow-swap,,EBCB
|
|
19
19
|
arrow-up,,EAA1
|
|
20
|
+
attach,,EC34
|
|
20
21
|
azure-devops,,EBE8
|
|
21
22
|
azure,,EBD8
|
|
22
23
|
beaker-stop,,EBE1
|
|
@@ -46,6 +47,7 @@ chevron-down,,EAB4
|
|
|
46
47
|
chevron-left,,EAB5
|
|
47
48
|
chevron-right,,EAB6
|
|
48
49
|
chevron-up,,EAB7
|
|
50
|
+
chip,,EC19
|
|
49
51
|
chrome-close,,EAB8
|
|
50
52
|
chrome-maximize,,EAB9
|
|
51
53
|
chrome-minimize,,EABA
|
|
@@ -65,7 +67,10 @@ close,,EA76
|
|
|
65
67
|
cloud-download,,EAC2
|
|
66
68
|
cloud-upload,,EAC3
|
|
67
69
|
cloud,,EBAA
|
|
70
|
+
code-oss,,EC2B
|
|
71
|
+
code-review,,EC37
|
|
68
72
|
code,,EAC4
|
|
73
|
+
coffee,,EC15
|
|
69
74
|
collapse-all,,EAC5
|
|
70
75
|
color-mode,,EAC6
|
|
71
76
|
combine,,EBB6
|
|
@@ -76,7 +81,10 @@ comment,,EA6B
|
|
|
76
81
|
compass-active,,EBD7
|
|
77
82
|
compass-dot,,EBD6
|
|
78
83
|
compass,,EBD5
|
|
84
|
+
copilot-warning,,EC38
|
|
85
|
+
copilot,,EC1E
|
|
79
86
|
copy,,EBCC
|
|
87
|
+
coverage,,EC2E
|
|
80
88
|
credit-card,,EAC9
|
|
81
89
|
dash,,EACC
|
|
82
90
|
dashboard,,EACD
|
|
@@ -120,10 +128,13 @@ device-mobile,,EADB
|
|
|
120
128
|
diff-added,,EADC
|
|
121
129
|
diff-ignored,,EADD
|
|
122
130
|
diff-modified,,EADE
|
|
131
|
+
diff-multiple,,EC23
|
|
123
132
|
diff-removed,,EADF
|
|
124
133
|
diff-renamed,,EAE0
|
|
134
|
+
diff-single,,EC22
|
|
125
135
|
diff,,EAE1
|
|
126
136
|
discard,,EAE2
|
|
137
|
+
edit-session,,EC36
|
|
127
138
|
edit,,EA73
|
|
128
139
|
editor-layout,,EAE3
|
|
129
140
|
ellipsis,,EA7C
|
|
@@ -157,11 +168,13 @@ folder-active,,EAF6
|
|
|
157
168
|
folder-library,,EBDF
|
|
158
169
|
folder-opened,,EAF7
|
|
159
170
|
folder,,EA83
|
|
171
|
+
game,,EC17
|
|
160
172
|
gear,,EAF8
|
|
161
173
|
gift,,EAF9
|
|
162
174
|
gist-secret,,EAFA
|
|
163
175
|
git-commit,,EAFC
|
|
164
176
|
git-compare,,EAFD
|
|
177
|
+
git-fetch,,F101
|
|
165
178
|
git-merge,,EAFE
|
|
166
179
|
git-pull-request-closed,,EBDA
|
|
167
180
|
git-pull-request-create,,EBBC
|
|
@@ -169,12 +182,18 @@ git-pull-request-draft,,EBDB
|
|
|
169
182
|
git-pull-request-go-to-changes,,EC0B
|
|
170
183
|
git-pull-request-new-changes,,EC0C
|
|
171
184
|
git-pull-request,,EA64
|
|
185
|
+
git-stash-apply,,EC27
|
|
186
|
+
git-stash-pop,,EC28
|
|
187
|
+
git-stash,,EC26
|
|
172
188
|
github-action,,EAFF
|
|
173
189
|
github-alt,,EB00
|
|
174
190
|
github-inverted,,EBA1
|
|
191
|
+
github-project,,EC2F
|
|
175
192
|
github,,EA84
|
|
176
193
|
globe,,EB01
|
|
194
|
+
go-to-editing-session,,EC35
|
|
177
195
|
go-to-file,,EA94
|
|
196
|
+
go-to-search,,EC32
|
|
178
197
|
grabber,,EB02
|
|
179
198
|
graph-left,,EBAD
|
|
180
199
|
graph-line,,EBE2
|
|
@@ -223,6 +242,7 @@ layout-statusbar,,EBF5
|
|
|
223
242
|
layout,,EBEB
|
|
224
243
|
library,,EB9C
|
|
225
244
|
lightbulb-autofix,,EB13
|
|
245
|
+
lightbulb-sparkle,,EC1F
|
|
226
246
|
lightbulb,,EA61
|
|
227
247
|
link-external,,EB14
|
|
228
248
|
link,,EB15
|
|
@@ -241,17 +261,22 @@ magnet,,EBAE
|
|
|
241
261
|
mail-read,,EB1B
|
|
242
262
|
mail,,EB1C
|
|
243
263
|
map-filled,,EC06
|
|
264
|
+
map-vertical-filled,,EC31
|
|
265
|
+
map-vertical,,EC30
|
|
244
266
|
map,,EC05
|
|
245
267
|
markdown,,EB1D
|
|
246
268
|
megaphone,,EB1E
|
|
247
269
|
mention,,EB1F
|
|
248
270
|
menu,,EB94
|
|
249
271
|
merge,,EBAB
|
|
272
|
+
mic-filled,,EC1C
|
|
273
|
+
mic,,EC12
|
|
250
274
|
milestone,,EB20
|
|
251
275
|
mirror,,EA69
|
|
252
276
|
mortar-board,,EB21
|
|
253
277
|
move,,EB22
|
|
254
278
|
multiple-windows,,EB23
|
|
279
|
+
music,,EC1B
|
|
255
280
|
mute,,EB24
|
|
256
281
|
new-file,,EA7F
|
|
257
282
|
new-folder,,EA80
|
|
@@ -268,8 +293,10 @@ package,,EB29
|
|
|
268
293
|
paintcan,,EB2A
|
|
269
294
|
pass-filled,,EBB3
|
|
270
295
|
pass,,EBA4
|
|
296
|
+
percentage,,EC33
|
|
271
297
|
person-add,,EBCD
|
|
272
298
|
person,,EA67
|
|
299
|
+
piano,,EC1A
|
|
273
300
|
pie-chart,,EBE4
|
|
274
301
|
pin,,EB2B
|
|
275
302
|
pinned-dirty,,EBB2
|
|
@@ -282,6 +309,7 @@ preview,,EB2F
|
|
|
282
309
|
primitive-square,,EA72
|
|
283
310
|
project,,EB30
|
|
284
311
|
pulse,,EB31
|
|
312
|
+
python,,EC39
|
|
285
313
|
question,,EB32
|
|
286
314
|
quote,,EB33
|
|
287
315
|
radio-tower,,EB34
|
|
@@ -300,6 +328,7 @@ replace-all,,EB3C
|
|
|
300
328
|
replace,,EB3D
|
|
301
329
|
reply,,EA7D
|
|
302
330
|
repo-clone,,EB3E
|
|
331
|
+
repo-fetch,,EC1D
|
|
303
332
|
repo-force-push,,EB3F
|
|
304
333
|
repo-forked,,EA63
|
|
305
334
|
repo-pull,,EB40
|
|
@@ -307,14 +336,17 @@ repo-push,,EB41
|
|
|
307
336
|
repo,,EA62
|
|
308
337
|
report,,EB42
|
|
309
338
|
request-changes,,EB43
|
|
339
|
+
robot,,EC20
|
|
310
340
|
rocket,,EB44
|
|
311
341
|
root-folder-opened,,EB45
|
|
312
342
|
root-folder,,EB46
|
|
313
343
|
rss,,EB47
|
|
314
344
|
ruby,,EB48
|
|
315
345
|
run-above,,EBBD
|
|
346
|
+
run-all-coverage,,EC2D
|
|
316
347
|
run-all,,EB9E
|
|
317
348
|
run-below,,EBBE
|
|
349
|
+
run-coverage,,EC2C
|
|
318
350
|
run-errors,,EBDE
|
|
319
351
|
save-all,,EB49
|
|
320
352
|
save-as,,EB4A
|
|
@@ -330,12 +362,15 @@ server-process,,EBA2
|
|
|
330
362
|
server,,EB50
|
|
331
363
|
settings-gear,,EB51
|
|
332
364
|
settings,,EB52
|
|
365
|
+
share,,EC25
|
|
333
366
|
shield,,EB53
|
|
334
367
|
sign-in,,EA6F
|
|
335
368
|
sign-out,,EA6E
|
|
336
369
|
smiley,,EB54
|
|
370
|
+
snake,,EC16
|
|
337
371
|
sort-precedence,,EB55
|
|
338
372
|
source-control,,EA68
|
|
373
|
+
sparkle-filled,,EC21
|
|
339
374
|
sparkle,,EC10
|
|
340
375
|
split-horizontal,,EB56
|
|
341
376
|
split-vertical,,EB57
|
|
@@ -344,6 +379,7 @@ star-empty,,EA6A
|
|
|
344
379
|
star-full,,EB59
|
|
345
380
|
star-half,,EB5A
|
|
346
381
|
stop-circle,,EBA5
|
|
382
|
+
surround-with,,EC24
|
|
347
383
|
symbol-array,,EA8A
|
|
348
384
|
symbol-boolean,,EA8F
|
|
349
385
|
symbol-class,,EB5B
|
|
@@ -386,7 +422,9 @@ terminal-ubuntu,,EBC9
|
|
|
386
422
|
terminal,,EA85
|
|
387
423
|
text-size,,EB69
|
|
388
424
|
three-bars,,EB6A
|
|
425
|
+
thumbsdown-filled,,EC13
|
|
389
426
|
thumbsdown,,EB6B
|
|
427
|
+
thumbsup-filled,,EC14
|
|
390
428
|
thumbsup,,EB6C
|
|
391
429
|
tools,,EB6D
|
|
392
430
|
trash,,EA81
|
|
@@ -412,6 +450,9 @@ vm-connect,,EBA9
|
|
|
412
450
|
vm-outline,,EB7A
|
|
413
451
|
vm-running,,EB7B
|
|
414
452
|
vm,,EA7A
|
|
453
|
+
vr,,EC18
|
|
454
|
+
vscode-insiders,,EC2A
|
|
455
|
+
vscode,,EC29
|
|
415
456
|
wand,,EBCF
|
|
416
457
|
warning,,EA6C
|
|
417
458
|
watch,,EB7C
|