@ardium-ui/ui 5.0.0-alpha.91 → 5.0.0-alpha.93
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/fesm2022/ardium-ui-ui.mjs +1440 -1210
- package/fesm2022/ardium-ui-ui.mjs.map +1 -1
- package/lib/_internal/disablable-component.d.ts +3 -3
- package/lib/calendar/abstract-calendar.d.ts +9 -3
- package/lib/calendar/calendar.types.d.ts +6 -0
- package/lib/chip/deletable-chip/deletable-chip.component.d.ts +1 -0
- package/lib/file-inputs/file-input/file-input.component.d.ts +3 -3
- package/lib/file-inputs/file-input/file-input.directives.d.ts +3 -3
- package/lib/file-inputs/file-input/file-input.module.d.ts +1 -1
- package/lib/inputs/password-input/password-input.component.d.ts +2 -2
- package/lib/radio/radio-group.component.d.ts +1 -0
- package/package.json +1 -1
- package/prebuilt-themes/default/buttons/fab.css +6 -3
- package/prebuilt-themes/default/buttons/fab.css.map +1 -1
- package/prebuilt-themes/default/checkbox-list.css +9 -0
- package/prebuilt-themes/default/checkbox-list.css.map +1 -1
- package/prebuilt-themes/default/checkbox.css +9 -3
- package/prebuilt-themes/default/checkbox.css.map +1 -1
- package/prebuilt-themes/default/chips.css +16 -10
- package/prebuilt-themes/default/chips.css.map +1 -1
- package/prebuilt-themes/default/core.css +1 -2
- package/prebuilt-themes/default/core.css.map +1 -1
- package/prebuilt-themes/default/form-field-frame.css.map +1 -1
- package/prebuilt-themes/default/inputs/autocomplete-input.css +6 -0
- package/prebuilt-themes/default/inputs/autocomplete-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/color-input.css +3 -0
- package/prebuilt-themes/default/inputs/color-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/date-input.css +5 -0
- package/prebuilt-themes/default/inputs/date-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/digit-input.css +6 -0
- package/prebuilt-themes/default/inputs/digit-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/file-input.css +6 -0
- package/prebuilt-themes/default/inputs/file-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/hex-input.css +6 -0
- package/prebuilt-themes/default/inputs/hex-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/input.css +6 -0
- package/prebuilt-themes/default/inputs/input.css.map +1 -1
- package/prebuilt-themes/default/inputs/number-input.css +9 -2
- package/prebuilt-themes/default/inputs/number-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/password-input.css +3 -0
- package/prebuilt-themes/default/inputs/password-input.css.map +1 -1
- package/prebuilt-themes/default/radio.css +12 -0
- package/prebuilt-themes/default/radio.css.map +1 -1
- package/prebuilt-themes/default/segment.css +15 -9
- package/prebuilt-themes/default/segment.css.map +1 -1
- package/prebuilt-themes/default/select.css +3 -0
- package/prebuilt-themes/default/select.css.map +1 -1
- package/prebuilt-themes/default/slider.css +32 -6
- package/prebuilt-themes/default/slider.css.map +1 -1
- package/prebuilt-themes/default/stars.css +15 -5
- package/prebuilt-themes/default/stars.css.map +1 -1
- package/themes/default/_clear-button.scss +5 -0
- package/themes/default/_mixins.scss +5 -3
- package/themes/default/checkbox-list.scss +14 -0
- package/themes/default/checkbox.scss +10 -1
- package/themes/default/chips.scss +47 -38
- package/themes/default/core.scss +2 -3
- package/themes/default/inputs/_shared.scss +6 -1
- package/themes/default/inputs/autocomplete-input.scss +3 -1
- package/themes/default/inputs/date-input.scss +3 -1
- package/themes/default/inputs/digit-input.scss +10 -0
- package/themes/default/inputs/file-input.scss +3 -1
- package/themes/default/inputs/hex-input.scss +3 -1
- package/themes/default/inputs/input.scss +3 -1
- package/themes/default/inputs/number-input.scss +16 -6
- package/themes/default/inputs/password-input.scss +3 -1
- package/themes/default/radio.scss +19 -0
- package/themes/default/segment.scss +36 -23
- package/themes/default/slider.scss +22 -2
- package/themes/default/stars.scss +19 -2
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
// --ard-digit-input-error-background-color: ;
|
|
23
23
|
// --ard-digit-input-error-border-color: ;
|
|
24
24
|
--ard-digit-input-disabled-opacity: 50%;
|
|
25
|
+
// --ard-digit-input-readonly-cursor: ;
|
|
25
26
|
}
|
|
26
27
|
|
|
27
28
|
ard-digit-input {
|
|
@@ -125,4 +126,13 @@
|
|
|
125
126
|
pointer-events: none;
|
|
126
127
|
}
|
|
127
128
|
}
|
|
129
|
+
.ard-readonly {
|
|
130
|
+
> .ard-digit-input {
|
|
131
|
+
cursor: var(--ard-digit-input-readonly-cursor, var(--ard-readonly-cursor, default));
|
|
132
|
+
|
|
133
|
+
.ard-digit-input__input {
|
|
134
|
+
outline: none;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
128
138
|
}
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
// --ard-file-input-color: ;
|
|
28
28
|
// --ard-file-input-placeholder-color: ;
|
|
29
29
|
--ard-file-input-placeholder-opacity: 60%;
|
|
30
|
+
// --ard-file-input-readonly-cursor: ;
|
|
30
31
|
|
|
31
32
|
--ard-file-input-min-width: 10rem;
|
|
32
33
|
--ard-file-input-max-width: 100%;
|
|
@@ -78,7 +79,8 @@
|
|
|
78
79
|
var(--ard-file-input-padding-left-compact, var(--ard-form-field-padding-left-compact, 0.375rem)),
|
|
79
80
|
var(--ard-file-input-color, #{ARD.$text}),
|
|
80
81
|
var(--ard-file-input-placeholder-color, #{ARD.$text}),
|
|
81
|
-
var(--ard-file-input-placeholder-opacity, 60%)
|
|
82
|
+
var(--ard-file-input-placeholder-opacity, 60%),
|
|
83
|
+
var(--ard-file-input-readonly-cursor, var(--ard-readonly-cursor, default))
|
|
82
84
|
);
|
|
83
85
|
@include CM.typeColors();
|
|
84
86
|
min-width: var(--ard-file-input-min-width, 10rem);
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
// --ard-hex-input-color: ;
|
|
27
27
|
// --ard-hex-input-placeholder-color: ;
|
|
28
28
|
--ard-hex-input-placeholder-opacity: 60%;
|
|
29
|
+
// --ard-hex-input-readonly-cursor: ;
|
|
29
30
|
|
|
30
31
|
--ard-hex-input-min-width: 10rem;
|
|
31
32
|
--ard-hex-input-max-width: 100%;
|
|
@@ -53,7 +54,8 @@
|
|
|
53
54
|
var(--ard-hex-input-padding-left-compact, var(--ard-form-field-padding-left-compact, 0.375rem)),
|
|
54
55
|
var(--ard-hex-input-color, #{ARD.$text}),
|
|
55
56
|
var(--ard-hex-input-placeholder-color, #{ARD.$text}),
|
|
56
|
-
var(--ard-hex-input-placeholder-opacity, 60%)
|
|
57
|
+
var(--ard-hex-input-placeholder-opacity, 60%),
|
|
58
|
+
var(--ard-hex-input-readonly-cursor, var(--ard-readonly-cursor, default))
|
|
57
59
|
);
|
|
58
60
|
min-width: var(--ard-hex-input-min-width, 10rem);
|
|
59
61
|
max-width: var(--ard-hex-input-max-width, 100%);
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
// --ard-input-color: ;
|
|
27
27
|
// --ard-input-placeholder-color: ;
|
|
28
28
|
--ard-input-placeholder-opacity: 60%;
|
|
29
|
+
// --ard-input-readonly-cursor: ;
|
|
29
30
|
|
|
30
31
|
--ard-input-min-width: 10rem;
|
|
31
32
|
--ard-input-max-width: 100%;
|
|
@@ -51,7 +52,8 @@
|
|
|
51
52
|
var(--ard-input-padding-left-compact, var(--ard-form-field-padding-left-compact, 0.375rem)),
|
|
52
53
|
var(--ard-input-color, #{ARD.$text}),
|
|
53
54
|
var(--ard-input-placeholder-color, #{ARD.$text}),
|
|
54
|
-
var(--ard-input-placeholder-opacity, 60%)
|
|
55
|
+
var(--ard-input-placeholder-opacity, 60%),
|
|
56
|
+
var(--ard-input-readonly-cursor, var(--ard-readonly-cursor, default))
|
|
55
57
|
);
|
|
56
58
|
min-width: var(--ard-input-min-width, 10rem);
|
|
57
59
|
max-width: var(--ard-input-max-width, 100%);
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
--ard-number-input-disabled-opacity: 50%;
|
|
29
29
|
// --ard-number-input-width: ;
|
|
30
30
|
--ard-number-input-rounded-border-radius: 8px;
|
|
31
|
+
// --ard-number-input-readonly-cursor: ;
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
ard-number-input {
|
|
@@ -54,7 +55,8 @@
|
|
|
54
55
|
var(--ard-number-input-padding-left-compact, var(--ard-form-field-padding-left-compact, 0.375rem)),
|
|
55
56
|
var(--ard-number-input-color, #{ARD.$text}),
|
|
56
57
|
var(--ard-number-input-placeholder-color, #{ARD.$text}),
|
|
57
|
-
var(--ard-number-input-placeholder-opacity, 60%)
|
|
58
|
+
var(--ard-number-input-placeholder-opacity, 60%),
|
|
59
|
+
var(--ard-number-input-readonly-cursor, var(--ard-readonly-cursor, default))
|
|
58
60
|
);
|
|
59
61
|
@include defaultMixins.formAppearances();
|
|
60
62
|
gap: 0;
|
|
@@ -191,16 +193,24 @@
|
|
|
191
193
|
}
|
|
192
194
|
}
|
|
193
195
|
|
|
194
|
-
.ard-disabled
|
|
196
|
+
.ard-disabled,
|
|
197
|
+
.ard-readonly {
|
|
195
198
|
> .ard-number-input {
|
|
196
|
-
pointer-events: none;
|
|
197
|
-
opacity: var(--ard-number-input-disabled-opacity, 50%);
|
|
198
|
-
|
|
199
199
|
.ard-button .ard-focus-overlay {
|
|
200
200
|
opacity: 0;
|
|
201
201
|
}
|
|
202
|
-
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
.ard-disabled {
|
|
205
|
+
> .ard-number-input {
|
|
206
|
+
pointer-events: none;
|
|
207
|
+
opacity: var(--ard-number-input-disabled-opacity, 50%);
|
|
203
208
|
background: ARD.$bg-f;
|
|
204
209
|
}
|
|
205
210
|
}
|
|
211
|
+
.ard-readonly {
|
|
212
|
+
> .ard-number-input {
|
|
213
|
+
cursor: var(--ard-number-input-readonly-cursor, var(--ard-readonly-cursor, default));
|
|
214
|
+
}
|
|
215
|
+
}
|
|
206
216
|
}
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
// --ard-password-input-color: ;
|
|
27
27
|
// --ard-password-input-placeholder-color: ;
|
|
28
28
|
--ard-password-input-placeholder-opacity: 60%;
|
|
29
|
+
// --ard-password-input-readonly-cursor: ;
|
|
29
30
|
|
|
30
31
|
--ard-password-input-min-width: 10rem;
|
|
31
32
|
--ard-password-input-max-width: 100%;
|
|
@@ -65,7 +66,8 @@
|
|
|
65
66
|
var(--ard-password-input-padding-left-compact, var(--ard-form-field-padding-left-compact, 0.375rem)),
|
|
66
67
|
var(--ard-password-input-color, #{ARD.$text}),
|
|
67
68
|
var(--ard-password-input-placeholder-color, #{ARD.$text}),
|
|
68
|
-
var(--ard-password-input-placeholder-opacity, 60%)
|
|
69
|
+
var(--ard-password-input-placeholder-opacity, 60%),
|
|
70
|
+
var(--ard-password-input-readonly-cursor, var(--ard-readonly-cursor, default))
|
|
69
71
|
);
|
|
70
72
|
min-width: var(--ard-password-input-min-width, 10rem);
|
|
71
73
|
max-width: var(--ard-password-input-max-width, 100%);
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
--ard-radio-active-overlay-opacity: 25%;
|
|
21
21
|
--ard-radio-transition-duration: 0.2s;
|
|
22
22
|
--ard-radio-disabled-opacity: 50%;
|
|
23
|
+
// --ard-radio-readonly-cursor: ;
|
|
23
24
|
}
|
|
24
25
|
|
|
25
26
|
ard-radio-group {
|
|
@@ -132,4 +133,22 @@
|
|
|
132
133
|
user-select: none;
|
|
133
134
|
}
|
|
134
135
|
}
|
|
136
|
+
.ard-readonly {
|
|
137
|
+
.ard-radio {
|
|
138
|
+
cursor: var(--ard-radio-readonly-cursor, var(--ard-readonly-cursor, default));
|
|
139
|
+
|
|
140
|
+
> .ard-radio-circles {
|
|
141
|
+
pointer-events: none;
|
|
142
|
+
|
|
143
|
+
.ard-focus-overlay {
|
|
144
|
+
display: none;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
&:focus-visible {
|
|
148
|
+
> .ard-radio-circles > .ard-focus-overlay {
|
|
149
|
+
display: block;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
135
154
|
}
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
--ard-segment-option-active-keyboard-bg-opacity: 34%;
|
|
26
26
|
--ard-segment-option-selected-bg-opacity: 16%;
|
|
27
27
|
// --ard-segment-border-color: ;
|
|
28
|
+
// --ard-segment-readonly-cursor: ;
|
|
28
29
|
}
|
|
29
30
|
|
|
30
31
|
.ard-segment-container {
|
|
@@ -101,16 +102,18 @@
|
|
|
101
102
|
opacity: var(--ard-segment-option-highlighted-bg-opacity, 4%);
|
|
102
103
|
}
|
|
103
104
|
}
|
|
104
|
-
&:active {
|
|
105
|
-
.ard-focus-overlay {
|
|
106
|
-
opacity: var(--ard-segment-option-active-bg-opacity, 12%);
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
105
|
&.ard-option-selected {
|
|
110
106
|
.ard-focus-overlay {
|
|
111
107
|
opacity: var(--ard-segment-option-selected-bg-opacity, 16%);
|
|
112
108
|
}
|
|
113
109
|
}
|
|
110
|
+
ard-segment:not(.ard-disabled):not(.ard-readonly) & {
|
|
111
|
+
&:active {
|
|
112
|
+
.ard-focus-overlay {
|
|
113
|
+
opacity: var(--ard-segment-option-active-bg-opacity, 12%);
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
114
117
|
}
|
|
115
118
|
&.ard-using-keyboard {
|
|
116
119
|
.ard-segment-option {
|
|
@@ -119,9 +122,11 @@
|
|
|
119
122
|
opacity: var(--ard-segment-option-highlighted-keyboard-bg-opacity, 28%);
|
|
120
123
|
}
|
|
121
124
|
}
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
+
ard-segment:not(.ard-disabled):not(.ard-readonly) & {
|
|
126
|
+
&:active {
|
|
127
|
+
.ard-focus-overlay {
|
|
128
|
+
opacity: var(--ard-segment-option-active-keyboard-bg-opacity, 34%);
|
|
129
|
+
}
|
|
125
130
|
}
|
|
126
131
|
}
|
|
127
132
|
}
|
|
@@ -345,26 +350,34 @@
|
|
|
345
350
|
justify-content: center;
|
|
346
351
|
}
|
|
347
352
|
}
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
//! disabled styling
|
|
356
|
+
.ard-disabled > .ard-segment-container {
|
|
357
|
+
pointer-events: none;
|
|
358
|
+
opacity: var(--ard-segment-option-disabled-opacity, 50%);
|
|
348
359
|
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
opacity: var(--ard-segment-option-disabled-opacity, 50%);
|
|
360
|
+
.ard-focus-overlay {
|
|
361
|
+
opacity: 10%;
|
|
362
|
+
}
|
|
353
363
|
|
|
364
|
+
//edge case for no coloring
|
|
365
|
+
&.ard-color-none {
|
|
366
|
+
.ard-button-icon,
|
|
367
|
+
.ard-button-content {
|
|
368
|
+
opacity: calc(var(--ard-segment-option-disabled-opacity, 50%) * 1.2);
|
|
369
|
+
}
|
|
354
370
|
.ard-focus-overlay {
|
|
355
|
-
|
|
371
|
+
background: var(--ard-cmpcl--overlay);
|
|
356
372
|
}
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
//! readonly styling
|
|
376
|
+
.ard-readonly > .ard-segment-container {
|
|
377
|
+
cursor: var(--ard-segment-readonly-cursor, var(--ard-readonly-cursor, default));
|
|
357
378
|
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
.ard-button-icon,
|
|
361
|
-
.ard-button-content {
|
|
362
|
-
opacity: calc(var(--ard-segment-option-disabled-opacity, 50%) * 1.2);
|
|
363
|
-
}
|
|
364
|
-
.ard-focus-overlay {
|
|
365
|
-
background: var(--ard-cmpcl--overlay);
|
|
366
|
-
}
|
|
367
|
-
}
|
|
379
|
+
.ard-segment-row .ard-segment-option {
|
|
380
|
+
cursor: inherit;
|
|
368
381
|
}
|
|
369
382
|
}
|
|
370
383
|
}
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
--ard-slider-label-font-weight: 500;
|
|
42
42
|
--ard-slider-label-arrow-size: 0.375em;
|
|
43
43
|
--ard-slider-label-offset: 0.5em;
|
|
44
|
+
// --ard-slider-readonly-cursor: ;
|
|
44
45
|
}
|
|
45
46
|
|
|
46
47
|
.ard-slider-container-master,
|
|
@@ -216,7 +217,7 @@
|
|
|
216
217
|
|
|
217
218
|
&::before {
|
|
218
219
|
bottom: 0;
|
|
219
|
-
border-top-color: var(--ard-slider-label-
|
|
220
|
+
border-top-color: var(--ard-slider-label-b, var(--ard-text3));
|
|
220
221
|
transform: translate(-50%, 100%);
|
|
221
222
|
}
|
|
222
223
|
}
|
|
@@ -228,7 +229,7 @@
|
|
|
228
229
|
|
|
229
230
|
&::before {
|
|
230
231
|
top: 0;
|
|
231
|
-
border-bottom-color: var(--ard-slider-label-bg);
|
|
232
|
+
border-bottom-color: var(--ard-slider-label-bg, var(--ard-text3));
|
|
232
233
|
transform: translate(-50%, -100%);
|
|
233
234
|
}
|
|
234
235
|
}
|
|
@@ -264,4 +265,23 @@
|
|
|
264
265
|
pointer-events: none !important;
|
|
265
266
|
}
|
|
266
267
|
}
|
|
268
|
+
.ard-disabled,
|
|
269
|
+
.ard-readonly {
|
|
270
|
+
.ard-slider-container-master,
|
|
271
|
+
.ard-range-slider-container-master {
|
|
272
|
+
cursor: var(--ard-slider-readonly-cursor, var(--ard-readonly-cursor, default));
|
|
273
|
+
|
|
274
|
+
.ard-slider-container {
|
|
275
|
+
cursor: inherit;
|
|
276
|
+
|
|
277
|
+
.ard-slider-handle {
|
|
278
|
+
cursor: inherit;
|
|
279
|
+
|
|
280
|
+
.ard-focus-overlay {
|
|
281
|
+
display: none;
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
}
|
|
267
287
|
}
|
|
@@ -12,12 +12,15 @@
|
|
|
12
12
|
--ard-star-button-overlay-offset: -0.125em;
|
|
13
13
|
--ard-star-button-hover-overlay-opacity: 10%;
|
|
14
14
|
--ard-star-button-focus-overlay-opacity: 0;
|
|
15
|
-
--ard-star-button-focus-visible-overlay-opacity:
|
|
15
|
+
--ard-star-button-focus-visible-overlay-opacity: 30%;
|
|
16
16
|
--ard-star-button-active-overlay-opacity: 20%;
|
|
17
17
|
--ard-star-button-disabled-opacity: 50%;
|
|
18
18
|
|
|
19
19
|
--ard-rating-input-not-in-value-opacity: 50%;
|
|
20
20
|
--ard-rating-input-disabled-opacity: 50%;
|
|
21
|
+
|
|
22
|
+
// --ard-star-button-readonly-cursor: ;
|
|
23
|
+
// --ard-rating-input-readonly-cursor: ;
|
|
21
24
|
}
|
|
22
25
|
|
|
23
26
|
.ard-star,
|
|
@@ -81,6 +84,7 @@
|
|
|
81
84
|
background: currentColor;
|
|
82
85
|
}
|
|
83
86
|
@include defaultMixins.focus-overlay-scale-addon();
|
|
87
|
+
|
|
84
88
|
&:hover {
|
|
85
89
|
.ard-focus-overlay {
|
|
86
90
|
opacity: var(--ard-star-button-hover-overlay-opacity, 10%);
|
|
@@ -93,7 +97,7 @@
|
|
|
93
97
|
}
|
|
94
98
|
&:focus-visible {
|
|
95
99
|
.ard-focus-overlay {
|
|
96
|
-
opacity: var(--ard-star-button-focus-visible-overlay-opacity,
|
|
100
|
+
opacity: var(--ard-star-button-focus-visible-overlay-opacity, 30%);
|
|
97
101
|
}
|
|
98
102
|
}
|
|
99
103
|
&:active {
|
|
@@ -113,4 +117,17 @@
|
|
|
113
117
|
opacity: var(--ard-rating-input-disabled-opacity, 50%);
|
|
114
118
|
}
|
|
115
119
|
}
|
|
120
|
+
//! readonly state for star-button and rating-input
|
|
121
|
+
.ard-readonly {
|
|
122
|
+
> .ard-star-button {
|
|
123
|
+
cursor: var(--ard-star-button-readonly-cursor, var(--ard-readonly-cursor, default));
|
|
124
|
+
|
|
125
|
+
.ard-focus-overlay {
|
|
126
|
+
display: none;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
> .ard-rating-input {
|
|
130
|
+
cursor: var(--ard-rating-input-readonly-cursor, var(--ard-readonly-cursor, default));
|
|
131
|
+
}
|
|
132
|
+
}
|
|
116
133
|
}
|