@abgov/react-components 4.0.0-alpha.146 → 4.0.0-alpha.148
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/lib/callout/callout.d.ts +4 -1
- package/package.json +1 -1
- package/react-components.esm.js +93 -10
- package/react-components.umd.js +94 -10
package/lib/callout/callout.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import { Margins } from "../../common/styling";
|
|
3
3
|
declare type CalloutType = "important" | "information" | "event" | "success" | "emergency";
|
|
4
|
+
declare type CalloutSize = "medium" | "large";
|
|
4
5
|
interface WCProps extends Margins {
|
|
5
6
|
heading?: string;
|
|
6
7
|
type?: CalloutType;
|
|
8
|
+
size?: CalloutSize;
|
|
7
9
|
}
|
|
8
10
|
declare global {
|
|
9
11
|
namespace JSX {
|
|
@@ -15,8 +17,9 @@ declare global {
|
|
|
15
17
|
export interface CalloutProps extends Margins {
|
|
16
18
|
heading?: string;
|
|
17
19
|
type?: CalloutType;
|
|
20
|
+
size?: CalloutSize;
|
|
18
21
|
testId?: string;
|
|
19
22
|
children?: React.ReactNode;
|
|
20
23
|
}
|
|
21
|
-
export declare const GoACallout: ({ heading, type, testId, children, mt, mr, mb, ml, }: CalloutProps) => JSX.Element;
|
|
24
|
+
export declare const GoACallout: ({ heading, type, size, testId, children, mt, mr, mb, ml, }: CalloutProps) => JSX.Element;
|
|
22
25
|
export default GoACallout;
|
package/package.json
CHANGED
package/react-components.esm.js
CHANGED
|
@@ -2944,7 +2944,7 @@ class Button extends SvelteElement {
|
|
|
2944
2944
|
constructor(options) {
|
|
2945
2945
|
super();
|
|
2946
2946
|
this.shadowRoot.innerHTML = `<style>:host{--button-height:2.625rem;--button-height-compact:2rem;--button-height-tall:3.25rem;box-sizing:border-box;font-family:var(--goa-font-family-sans)}@media(max-width: 480px){:host{width:100%}button{width:100%}}button{display:inline-flex;box-sizing:border-box;border-radius:0.25rem;border:2px solid var(--goa-color-interactive-default);box-sizing:border-box;cursor:pointer;font-family:var(--goa-font-family-sans);font-size:var(--goa-font-size-5);font-weight:400;height:var(--button-height);letter-spacing:var(--goa-letter-spacing-button);line-height:100%;padding:0 0.75rem;gap:0.5rem;align-items:center;justify-content:center;transition:transform 0.1s ease-in-out, background-color 0.2s ease-in-out,
|
|
2947
|
-
border-color 0.2s ease-in-out}.text{padding-bottom:var(--font-valign-fix, 0)}button:disabled{pointer-events:none;opacity:0.5}button.compact{height:var(--button-height-compact);font-size:var(--goa-font-size-4)}button.start{height:var(--button-height-tall);font-weight:var(--goa-font-weight-bold)}button.start,button.submit,button.primary{border:2px solid var(--goa-color-interactive-default);background-color:var(--goa-color-interactive-default);color:var(--goa-color-text-light)}button.start:hover,button.submit:hover,button.primary:hover{border-color:var(--goa-color-interactive-hover);background-color:var(--goa-color-interactive-hover)}button.start:focus,button.start:active,button.submit:focus,button.submit:active,button.primary:focus,button.primary:active{box-shadow:0 0 0 3px var(--goa-color-interactive-focus);border-color:var(--goa-color-interactive-hover);background-color:var(--goa-color-interactive-hover);outline:none}button.secondary{border:2px solid var(--goa-color-interactive-default);background-color:var(--goa-color-greyscale-white);color:var(--goa-color-interactive-default)}button.secondary:hover{border-color:var(--goa-color-interactive-hover);color:var(--goa-color-interactive-hover);background-color:var(--goa-color-greyscale-100)}button.secondary:focus,button.secondary:active{border-color:var(--goa-color-interactive-hover);box-shadow:0 0 0 3px var(--goa-color-interactive-focus);background-color:var(--goa-color-greyscale-100);outline:none}button.tertiary{border:1px solid transparent;background-color:transparent;color:var(--goa-color-interactive-default);text-decoration:underline}button.tertiary:hover{border-color:var(--goa-color-greyscale-100);color:var(--goa-color-interactive-hover);background-color:var(--goa-color-greyscale-100)}button.tertiary:focus,button.tertiary:active{border-color:var(--goa-color-greyscale-100);background-color:var(--goa-color-greyscale-100);color:var(--goa-color-interactive-hover);box-shadow:0 0 0 3px var(--goa-color-interactive-focus);outline:none}.submit.destructive,.primary.destructive{color:var(--goa-color-greyscale-white);background-color:var(--goa-color-emergency-default);border-color:var(--goa-color-emergency-default)}.submit.destructive:hover,.primary.destructive:hover{background-color:var(--goa-color-emergency-dark);border-color:var(--goa-color-emergency-dark)}.submit.destructive:focus,.primary.destructive:focus,.primary.destructive:active{background-color:var(--goa-color-emergency-dark);border-color:var(--goa-color-emergency-dark)}.secondary.destructive{color:var(--goa-color-emergency-default);border-color:var(--goa-color-emergency-default);background-color:var(--goa-color-greyscale-white)}.secondary.destructive:hover{border-color:var(--goa-color-emergency-dark);color:var(--goa-color-emergency-dark);background-color:var(--goa-color-greyscale-white)}.secondary.destructive:focus,.secondary.destructive:active{color:var(--goa-color-emergency-dark);border-color:var(--goa-color-emergency-dark);background-color:var(--goa-color-greyscale-white)}.tertiary.destructive{color:var(--goa-color-emergency-default);border-color:transparent}.tertiary.destructive:hover{color:var(--goa-color-emergency-dark)}.tertiary.destructive:focus,.tertiary.destructive:active{color:var(--goa-color-emergency-dark)}</style>`;
|
|
2947
|
+
border-color 0.2s ease-in-out}.text{padding-bottom:var(--font-valign-fix, 0)}button:disabled{pointer-events:none;opacity:0.5}button.compact{height:var(--button-height-compact);font-size:var(--goa-font-size-4);padding-left:var(--goa-space-xs);padding-right:var(--goa-space-xs)}button.start{height:var(--button-height-tall);font-weight:var(--goa-font-weight-bold)}button.start,button.submit,button.primary{border:2px solid var(--goa-color-interactive-default);background-color:var(--goa-color-interactive-default);color:var(--goa-color-text-light)}button.start:hover,button.submit:hover,button.primary:hover{border-color:var(--goa-color-interactive-hover);background-color:var(--goa-color-interactive-hover)}button.start:focus,button.start:active,button.submit:focus,button.submit:active,button.primary:focus,button.primary:active{box-shadow:0 0 0 3px var(--goa-color-interactive-focus);border-color:var(--goa-color-interactive-hover);background-color:var(--goa-color-interactive-hover);outline:none}button.secondary{border:2px solid var(--goa-color-interactive-default);background-color:var(--goa-color-greyscale-white);color:var(--goa-color-interactive-default)}button.secondary:hover{border-color:var(--goa-color-interactive-hover);color:var(--goa-color-interactive-hover);background-color:var(--goa-color-greyscale-100)}button.secondary:focus,button.secondary:active{border-color:var(--goa-color-interactive-hover);box-shadow:0 0 0 3px var(--goa-color-interactive-focus);background-color:var(--goa-color-greyscale-100);outline:none}button.tertiary{border:1px solid transparent;background-color:transparent;color:var(--goa-color-interactive-default);text-decoration:underline}button.tertiary:hover{border-color:var(--goa-color-greyscale-100);color:var(--goa-color-interactive-hover);background-color:var(--goa-color-greyscale-100)}button.tertiary:focus,button.tertiary:active{border-color:var(--goa-color-greyscale-100);background-color:var(--goa-color-greyscale-100);color:var(--goa-color-interactive-hover);box-shadow:0 0 0 3px var(--goa-color-interactive-focus);outline:none}.submit.destructive,.primary.destructive{color:var(--goa-color-greyscale-white);background-color:var(--goa-color-emergency-default);border-color:var(--goa-color-emergency-default)}.submit.destructive:hover,.primary.destructive:hover{background-color:var(--goa-color-emergency-dark);border-color:var(--goa-color-emergency-dark)}.submit.destructive:focus,.primary.destructive:focus,.primary.destructive:active{background-color:var(--goa-color-emergency-dark);border-color:var(--goa-color-emergency-dark)}.secondary.destructive{color:var(--goa-color-emergency-default);border-color:var(--goa-color-emergency-default);background-color:var(--goa-color-greyscale-white)}.secondary.destructive:hover{border-color:var(--goa-color-emergency-dark);color:var(--goa-color-emergency-dark);background-color:var(--goa-color-greyscale-white)}.secondary.destructive:focus,.secondary.destructive:active{color:var(--goa-color-emergency-dark);border-color:var(--goa-color-emergency-dark);background-color:var(--goa-color-greyscale-white)}.tertiary.destructive{color:var(--goa-color-emergency-default);border-color:transparent}.tertiary.destructive:hover{color:var(--goa-color-emergency-dark)}.tertiary.destructive:focus,.tertiary.destructive:active{color:var(--goa-color-emergency-dark)}</style>`;
|
|
2948
2948
|
init(this, {
|
|
2949
2949
|
target: this.shadowRoot,
|
|
2950
2950
|
props: attribute_to_object(this.attributes),
|
|
@@ -3356,6 +3356,9 @@ function create_if_block$l(ctx) {
|
|
|
3356
3356
|
t = text(
|
|
3357
3357
|
/*heading*/
|
|
3358
3358
|
ctx[5]);
|
|
3359
|
+
toggle_class(h3, "medium",
|
|
3360
|
+
/*isMediumCallout*/
|
|
3361
|
+
ctx[9]);
|
|
3359
3362
|
},
|
|
3360
3363
|
|
|
3361
3364
|
m(target, anchor) {
|
|
@@ -3369,6 +3372,14 @@ function create_if_block$l(ctx) {
|
|
|
3369
3372
|
32) set_data(t,
|
|
3370
3373
|
/*heading*/
|
|
3371
3374
|
ctx[5]);
|
|
3375
|
+
|
|
3376
|
+
if (dirty &
|
|
3377
|
+
/*isMediumCallout*/
|
|
3378
|
+
512) {
|
|
3379
|
+
toggle_class(h3, "medium",
|
|
3380
|
+
/*isMediumCallout*/
|
|
3381
|
+
ctx[9]);
|
|
3382
|
+
}
|
|
3372
3383
|
},
|
|
3373
3384
|
|
|
3374
3385
|
d(detaching) {
|
|
@@ -3389,6 +3400,11 @@ function create_fragment$K(ctx) {
|
|
|
3389
3400
|
let t1;
|
|
3390
3401
|
let slot;
|
|
3391
3402
|
let div_style_value;
|
|
3403
|
+
let mounted;
|
|
3404
|
+
let dispose;
|
|
3405
|
+
add_render_callback(
|
|
3406
|
+
/*onwindowresize*/
|
|
3407
|
+
ctx[12]);
|
|
3392
3408
|
let if_block =
|
|
3393
3409
|
/*heading*/
|
|
3394
3410
|
ctx[5] && create_if_block$l(ctx);
|
|
@@ -3405,7 +3421,10 @@ function create_fragment$K(ctx) {
|
|
|
3405
3421
|
this.c = noop;
|
|
3406
3422
|
set_custom_element_data(goa_icon, "type",
|
|
3407
3423
|
/*iconType*/
|
|
3408
|
-
ctx[
|
|
3424
|
+
ctx[10]);
|
|
3425
|
+
set_custom_element_data(goa_icon, "size",
|
|
3426
|
+
/*iconSize*/
|
|
3427
|
+
ctx[8]);
|
|
3409
3428
|
set_custom_element_data(goa_icon, "inverted", goa_icon_inverted_value =
|
|
3410
3429
|
/*type*/
|
|
3411
3430
|
ctx[4] === "important" ? "false" : "true");
|
|
@@ -3426,6 +3445,9 @@ function create_fragment$K(ctx) {
|
|
|
3426
3445
|
attr(div, "data-testid",
|
|
3427
3446
|
/*testid*/
|
|
3428
3447
|
ctx[6]);
|
|
3448
|
+
toggle_class(div, "medium",
|
|
3449
|
+
/*isMediumCallout*/
|
|
3450
|
+
ctx[9]);
|
|
3429
3451
|
},
|
|
3430
3452
|
|
|
3431
3453
|
m(target, anchor) {
|
|
@@ -3437,15 +3459,30 @@ function create_fragment$K(ctx) {
|
|
|
3437
3459
|
if (if_block) if_block.m(span1, null);
|
|
3438
3460
|
append(span1, t1);
|
|
3439
3461
|
append(span1, slot);
|
|
3462
|
+
|
|
3463
|
+
if (!mounted) {
|
|
3464
|
+
dispose = listen(window, "resize",
|
|
3465
|
+
/*onwindowresize*/
|
|
3466
|
+
ctx[12]);
|
|
3467
|
+
mounted = true;
|
|
3468
|
+
}
|
|
3440
3469
|
},
|
|
3441
3470
|
|
|
3442
3471
|
p(ctx, [dirty]) {
|
|
3443
3472
|
if (dirty &
|
|
3444
3473
|
/*iconType*/
|
|
3445
|
-
|
|
3474
|
+
1024) {
|
|
3446
3475
|
set_custom_element_data(goa_icon, "type",
|
|
3447
3476
|
/*iconType*/
|
|
3448
|
-
ctx[
|
|
3477
|
+
ctx[10]);
|
|
3478
|
+
}
|
|
3479
|
+
|
|
3480
|
+
if (dirty &
|
|
3481
|
+
/*iconSize*/
|
|
3482
|
+
256) {
|
|
3483
|
+
set_custom_element_data(goa_icon, "size",
|
|
3484
|
+
/*iconSize*/
|
|
3485
|
+
ctx[8]);
|
|
3449
3486
|
}
|
|
3450
3487
|
|
|
3451
3488
|
if (dirty &
|
|
@@ -3500,6 +3537,14 @@ function create_fragment$K(ctx) {
|
|
|
3500
3537
|
/*testid*/
|
|
3501
3538
|
ctx[6]);
|
|
3502
3539
|
}
|
|
3540
|
+
|
|
3541
|
+
if (dirty &
|
|
3542
|
+
/*isMediumCallout*/
|
|
3543
|
+
512) {
|
|
3544
|
+
toggle_class(div, "medium",
|
|
3545
|
+
/*isMediumCallout*/
|
|
3546
|
+
ctx[9]);
|
|
3547
|
+
}
|
|
3503
3548
|
},
|
|
3504
3549
|
|
|
3505
3550
|
i: noop,
|
|
@@ -3508,14 +3553,18 @@ function create_fragment$K(ctx) {
|
|
|
3508
3553
|
d(detaching) {
|
|
3509
3554
|
if (detaching) detach(div);
|
|
3510
3555
|
if (if_block) if_block.d();
|
|
3556
|
+
mounted = false;
|
|
3557
|
+
dispose();
|
|
3511
3558
|
}
|
|
3512
3559
|
|
|
3513
3560
|
};
|
|
3514
3561
|
}
|
|
3515
3562
|
|
|
3516
3563
|
function instance$E($$self, $$props, $$invalidate) {
|
|
3564
|
+
let isMediumCallout;
|
|
3517
3565
|
let iconType;
|
|
3518
3566
|
const [Types, validateType] = typeValidator("Callout type", ["emergency", "important", "information", "event", "success"], true);
|
|
3567
|
+
const [CalloutSizes, validateCalloutSize] = typeValidator("Callout size", ["medium", "large"]);
|
|
3519
3568
|
let {
|
|
3520
3569
|
mt = null
|
|
3521
3570
|
} = $$props;
|
|
@@ -3528,6 +3577,9 @@ function instance$E($$self, $$props, $$invalidate) {
|
|
|
3528
3577
|
let {
|
|
3529
3578
|
ml = null
|
|
3530
3579
|
} = $$props;
|
|
3580
|
+
let {
|
|
3581
|
+
size = "large"
|
|
3582
|
+
} = $$props;
|
|
3531
3583
|
let {
|
|
3532
3584
|
type
|
|
3533
3585
|
} = $$props;
|
|
@@ -3537,35 +3589,52 @@ function instance$E($$self, $$props, $$invalidate) {
|
|
|
3537
3589
|
let {
|
|
3538
3590
|
testid = ""
|
|
3539
3591
|
} = $$props;
|
|
3592
|
+
let screenSize = 0;
|
|
3593
|
+
let iconSize = "medium";
|
|
3540
3594
|
onMount(() => {
|
|
3541
|
-
|
|
3595
|
+
validateCalloutSize(size);
|
|
3596
|
+
setTimeout(() => {
|
|
3597
|
+
validateType(type);
|
|
3598
|
+
$$invalidate(8, iconSize = isMediumCallout ? "small" : "medium");
|
|
3599
|
+
});
|
|
3542
3600
|
});
|
|
3543
3601
|
|
|
3602
|
+
function onwindowresize() {
|
|
3603
|
+
$$invalidate(7, screenSize = window.innerWidth);
|
|
3604
|
+
}
|
|
3605
|
+
|
|
3544
3606
|
$$self.$$set = $$props => {
|
|
3545
3607
|
if ('mt' in $$props) $$invalidate(0, mt = $$props.mt);
|
|
3546
3608
|
if ('mr' in $$props) $$invalidate(1, mr = $$props.mr);
|
|
3547
3609
|
if ('mb' in $$props) $$invalidate(2, mb = $$props.mb);
|
|
3548
3610
|
if ('ml' in $$props) $$invalidate(3, ml = $$props.ml);
|
|
3611
|
+
if ('size' in $$props) $$invalidate(11, size = $$props.size);
|
|
3549
3612
|
if ('type' in $$props) $$invalidate(4, type = $$props.type);
|
|
3550
3613
|
if ('heading' in $$props) $$invalidate(5, heading = $$props.heading);
|
|
3551
3614
|
if ('testid' in $$props) $$invalidate(6, testid = $$props.testid);
|
|
3552
3615
|
};
|
|
3553
3616
|
|
|
3554
3617
|
$$self.$$.update = () => {
|
|
3618
|
+
if ($$self.$$.dirty &
|
|
3619
|
+
/*screenSize, size*/
|
|
3620
|
+
2176) {
|
|
3621
|
+
$$invalidate(9, isMediumCallout = screenSize < 640 || size === "medium");
|
|
3622
|
+
}
|
|
3623
|
+
|
|
3555
3624
|
if ($$self.$$.dirty &
|
|
3556
3625
|
/*type*/
|
|
3557
3626
|
16) {
|
|
3558
|
-
$$invalidate(
|
|
3627
|
+
$$invalidate(10, iconType = type === "emergency" ? "warning" : type === "important" ? "alert-circle" : type === "information" ? "information-circle" : type === "success" ? "checkmark-circle" : type === "event" ? "calendar" : "");
|
|
3559
3628
|
}
|
|
3560
3629
|
};
|
|
3561
3630
|
|
|
3562
|
-
return [mt, mr, mb, ml, type, heading, testid, iconType];
|
|
3631
|
+
return [mt, mr, mb, ml, type, heading, testid, screenSize, iconSize, isMediumCallout, iconType, size, onwindowresize];
|
|
3563
3632
|
}
|
|
3564
3633
|
|
|
3565
3634
|
class Callout extends SvelteElement {
|
|
3566
3635
|
constructor(options) {
|
|
3567
3636
|
super();
|
|
3568
|
-
this.shadowRoot.innerHTML = `<style>:host{box-sizing:border-box;font-family:var(--goa-font-family-sans)}.notification{display:flex;align-items:stretch;
|
|
3637
|
+
this.shadowRoot.innerHTML = `<style>:host{box-sizing:border-box;font-family:var(--goa-font-family-sans)}.notification{display:flex;align-items:stretch;overflow:hidden;font:var(--goa-typography-body-m)}h3{font-size:var(--goa-font-size-7);line-height:var(--goa-line-height-2);font-weight:var(--goa-font-weight-regular);margin-top:var(--goa-space-none);margin-bottom:var(--goa-space-m)}.emergency{background-color:var(--goa-color-emergency-default)}.important{background-color:var(--goa-color-warning-default)}.information{background-color:var(--goa-color-info-default)}.event{background-color:var(--goa-color-info-default)}.success{background-color:var(--goa-color-success-default)}.icon{text-align:center;padding-top:var(--goa-space-l);padding-left:var(--goa-space-s);padding-right:var(--goa-space-s)}.content{flex:1 1 auto;background-color:var(--goa-color-greyscale-100);padding:var(--goa-space-l)}.notification.medium{font:var(--goa-typography-body-s);max-width:22rem}h3.medium{font:var(--goa-typography-heading-xs);margin-bottom:var(--goa-space-2xs)}.notification.medium .content{padding:var(--goa-space-s);margin-top:calc(-1 * var(--goa-space-3xs))}.notification.medium .icon{padding-top:var(--goa-space-s);padding-left:var(--goa-space-2xs);padding-right:var(--goa-space-2xs)}</style>`;
|
|
3569
3638
|
init(this, {
|
|
3570
3639
|
target: this.shadowRoot,
|
|
3571
3640
|
props: attribute_to_object(this.attributes),
|
|
@@ -3575,6 +3644,7 @@ class Callout extends SvelteElement {
|
|
|
3575
3644
|
mr: 1,
|
|
3576
3645
|
mb: 2,
|
|
3577
3646
|
ml: 3,
|
|
3647
|
+
size: 11,
|
|
3578
3648
|
type: 4,
|
|
3579
3649
|
heading: 5,
|
|
3580
3650
|
testid: 6
|
|
@@ -3593,7 +3663,7 @@ class Callout extends SvelteElement {
|
|
|
3593
3663
|
}
|
|
3594
3664
|
|
|
3595
3665
|
static get observedAttributes() {
|
|
3596
|
-
return ["mt", "mr", "mb", "ml", "type", "heading", "testid"];
|
|
3666
|
+
return ["mt", "mr", "mb", "ml", "size", "type", "heading", "testid"];
|
|
3597
3667
|
}
|
|
3598
3668
|
|
|
3599
3669
|
get mt() {
|
|
@@ -3640,6 +3710,17 @@ class Callout extends SvelteElement {
|
|
|
3640
3710
|
flush();
|
|
3641
3711
|
}
|
|
3642
3712
|
|
|
3713
|
+
get size() {
|
|
3714
|
+
return this.$$.ctx[11];
|
|
3715
|
+
}
|
|
3716
|
+
|
|
3717
|
+
set size(size) {
|
|
3718
|
+
this.$$set({
|
|
3719
|
+
size
|
|
3720
|
+
});
|
|
3721
|
+
flush();
|
|
3722
|
+
}
|
|
3723
|
+
|
|
3643
3724
|
get type() {
|
|
3644
3725
|
return this.$$.ctx[4];
|
|
3645
3726
|
}
|
|
@@ -17681,7 +17762,7 @@ function instance$9($$self, $$props, $$invalidate) {
|
|
|
17681
17762
|
class Table extends SvelteElement {
|
|
17682
17763
|
constructor(options) {
|
|
17683
17764
|
super();
|
|
17684
|
-
this.shadowRoot.innerHTML = `<style>:host{overflow-x:auto}table{border-collapse:collapse}table.sticky{position:relative}table.sticky thead{position:sticky;top:0}td{font:var(--goa-typography-body-m);padding:0.75rem 1rem;border-bottom:1px solid var(--goa-color-greyscale-200)}table .goa-table-number-column{font:var(--goa-typography-number-m);text-align:right}table.relaxed td{padding:1rem}th{background-color:var(--goa-color-greyscale-white);color:var(--goa-color-text-secondary);padding:1rem;text-align:left;border-bottom:2px solid var(--goa-color-greyscale-
|
|
17765
|
+
this.shadowRoot.innerHTML = `<style>:host{overflow-x:auto}table{border-collapse:collapse}table.sticky{position:relative}table.sticky thead{position:sticky;top:0}td{font:var(--goa-typography-body-m);padding:0.75rem 1rem;border-bottom:1px solid var(--goa-color-greyscale-200)}table .goa-table-number-column{font:var(--goa-typography-number-m);text-align:right}table.relaxed td{padding:1rem}th{background-color:var(--goa-color-greyscale-white);color:var(--goa-color-text-secondary);padding:1rem;text-align:left;border-bottom:2px solid var(--goa-color-greyscale-600);vertical-align:bottom}th:has(goa-table-sort-header){padding:0}tfoot td{background-color:var(--goa-color-greyscale-100)}tfoot tr:first-child td{border-top:2px solid var(--goa-color-greyscale-200)}tfoot tr:last-child td{border-bottom:none}</style>`;
|
|
17685
17766
|
init(this, {
|
|
17686
17767
|
target: this.shadowRoot,
|
|
17687
17768
|
props: attribute_to_object(this.attributes),
|
|
@@ -22019,6 +22100,7 @@ const GoAButton = ({
|
|
|
22019
22100
|
const GoACallout = ({
|
|
22020
22101
|
heading,
|
|
22021
22102
|
type: _type = "information",
|
|
22103
|
+
size: _size = "large",
|
|
22022
22104
|
testId,
|
|
22023
22105
|
children,
|
|
22024
22106
|
mt,
|
|
@@ -22029,6 +22111,7 @@ const GoACallout = ({
|
|
|
22029
22111
|
return jsx("goa-callout", Object.assign({
|
|
22030
22112
|
heading: heading,
|
|
22031
22113
|
type: _type,
|
|
22114
|
+
size: _size,
|
|
22032
22115
|
mt: mt,
|
|
22033
22116
|
mr: mr,
|
|
22034
22117
|
mb: mb,
|
package/react-components.umd.js
CHANGED
|
@@ -2985,7 +2985,7 @@
|
|
|
2985
2985
|
constructor(options) {
|
|
2986
2986
|
super();
|
|
2987
2987
|
this.shadowRoot.innerHTML = `<style>:host{--button-height:2.625rem;--button-height-compact:2rem;--button-height-tall:3.25rem;box-sizing:border-box;font-family:var(--goa-font-family-sans)}@media(max-width: 480px){:host{width:100%}button{width:100%}}button{display:inline-flex;box-sizing:border-box;border-radius:0.25rem;border:2px solid var(--goa-color-interactive-default);box-sizing:border-box;cursor:pointer;font-family:var(--goa-font-family-sans);font-size:var(--goa-font-size-5);font-weight:400;height:var(--button-height);letter-spacing:var(--goa-letter-spacing-button);line-height:100%;padding:0 0.75rem;gap:0.5rem;align-items:center;justify-content:center;transition:transform 0.1s ease-in-out, background-color 0.2s ease-in-out,
|
|
2988
|
-
border-color 0.2s ease-in-out}.text{padding-bottom:var(--font-valign-fix, 0)}button:disabled{pointer-events:none;opacity:0.5}button.compact{height:var(--button-height-compact);font-size:var(--goa-font-size-4)}button.start{height:var(--button-height-tall);font-weight:var(--goa-font-weight-bold)}button.start,button.submit,button.primary{border:2px solid var(--goa-color-interactive-default);background-color:var(--goa-color-interactive-default);color:var(--goa-color-text-light)}button.start:hover,button.submit:hover,button.primary:hover{border-color:var(--goa-color-interactive-hover);background-color:var(--goa-color-interactive-hover)}button.start:focus,button.start:active,button.submit:focus,button.submit:active,button.primary:focus,button.primary:active{box-shadow:0 0 0 3px var(--goa-color-interactive-focus);border-color:var(--goa-color-interactive-hover);background-color:var(--goa-color-interactive-hover);outline:none}button.secondary{border:2px solid var(--goa-color-interactive-default);background-color:var(--goa-color-greyscale-white);color:var(--goa-color-interactive-default)}button.secondary:hover{border-color:var(--goa-color-interactive-hover);color:var(--goa-color-interactive-hover);background-color:var(--goa-color-greyscale-100)}button.secondary:focus,button.secondary:active{border-color:var(--goa-color-interactive-hover);box-shadow:0 0 0 3px var(--goa-color-interactive-focus);background-color:var(--goa-color-greyscale-100);outline:none}button.tertiary{border:1px solid transparent;background-color:transparent;color:var(--goa-color-interactive-default);text-decoration:underline}button.tertiary:hover{border-color:var(--goa-color-greyscale-100);color:var(--goa-color-interactive-hover);background-color:var(--goa-color-greyscale-100)}button.tertiary:focus,button.tertiary:active{border-color:var(--goa-color-greyscale-100);background-color:var(--goa-color-greyscale-100);color:var(--goa-color-interactive-hover);box-shadow:0 0 0 3px var(--goa-color-interactive-focus);outline:none}.submit.destructive,.primary.destructive{color:var(--goa-color-greyscale-white);background-color:var(--goa-color-emergency-default);border-color:var(--goa-color-emergency-default)}.submit.destructive:hover,.primary.destructive:hover{background-color:var(--goa-color-emergency-dark);border-color:var(--goa-color-emergency-dark)}.submit.destructive:focus,.primary.destructive:focus,.primary.destructive:active{background-color:var(--goa-color-emergency-dark);border-color:var(--goa-color-emergency-dark)}.secondary.destructive{color:var(--goa-color-emergency-default);border-color:var(--goa-color-emergency-default);background-color:var(--goa-color-greyscale-white)}.secondary.destructive:hover{border-color:var(--goa-color-emergency-dark);color:var(--goa-color-emergency-dark);background-color:var(--goa-color-greyscale-white)}.secondary.destructive:focus,.secondary.destructive:active{color:var(--goa-color-emergency-dark);border-color:var(--goa-color-emergency-dark);background-color:var(--goa-color-greyscale-white)}.tertiary.destructive{color:var(--goa-color-emergency-default);border-color:transparent}.tertiary.destructive:hover{color:var(--goa-color-emergency-dark)}.tertiary.destructive:focus,.tertiary.destructive:active{color:var(--goa-color-emergency-dark)}</style>`;
|
|
2988
|
+
border-color 0.2s ease-in-out}.text{padding-bottom:var(--font-valign-fix, 0)}button:disabled{pointer-events:none;opacity:0.5}button.compact{height:var(--button-height-compact);font-size:var(--goa-font-size-4);padding-left:var(--goa-space-xs);padding-right:var(--goa-space-xs)}button.start{height:var(--button-height-tall);font-weight:var(--goa-font-weight-bold)}button.start,button.submit,button.primary{border:2px solid var(--goa-color-interactive-default);background-color:var(--goa-color-interactive-default);color:var(--goa-color-text-light)}button.start:hover,button.submit:hover,button.primary:hover{border-color:var(--goa-color-interactive-hover);background-color:var(--goa-color-interactive-hover)}button.start:focus,button.start:active,button.submit:focus,button.submit:active,button.primary:focus,button.primary:active{box-shadow:0 0 0 3px var(--goa-color-interactive-focus);border-color:var(--goa-color-interactive-hover);background-color:var(--goa-color-interactive-hover);outline:none}button.secondary{border:2px solid var(--goa-color-interactive-default);background-color:var(--goa-color-greyscale-white);color:var(--goa-color-interactive-default)}button.secondary:hover{border-color:var(--goa-color-interactive-hover);color:var(--goa-color-interactive-hover);background-color:var(--goa-color-greyscale-100)}button.secondary:focus,button.secondary:active{border-color:var(--goa-color-interactive-hover);box-shadow:0 0 0 3px var(--goa-color-interactive-focus);background-color:var(--goa-color-greyscale-100);outline:none}button.tertiary{border:1px solid transparent;background-color:transparent;color:var(--goa-color-interactive-default);text-decoration:underline}button.tertiary:hover{border-color:var(--goa-color-greyscale-100);color:var(--goa-color-interactive-hover);background-color:var(--goa-color-greyscale-100)}button.tertiary:focus,button.tertiary:active{border-color:var(--goa-color-greyscale-100);background-color:var(--goa-color-greyscale-100);color:var(--goa-color-interactive-hover);box-shadow:0 0 0 3px var(--goa-color-interactive-focus);outline:none}.submit.destructive,.primary.destructive{color:var(--goa-color-greyscale-white);background-color:var(--goa-color-emergency-default);border-color:var(--goa-color-emergency-default)}.submit.destructive:hover,.primary.destructive:hover{background-color:var(--goa-color-emergency-dark);border-color:var(--goa-color-emergency-dark)}.submit.destructive:focus,.primary.destructive:focus,.primary.destructive:active{background-color:var(--goa-color-emergency-dark);border-color:var(--goa-color-emergency-dark)}.secondary.destructive{color:var(--goa-color-emergency-default);border-color:var(--goa-color-emergency-default);background-color:var(--goa-color-greyscale-white)}.secondary.destructive:hover{border-color:var(--goa-color-emergency-dark);color:var(--goa-color-emergency-dark);background-color:var(--goa-color-greyscale-white)}.secondary.destructive:focus,.secondary.destructive:active{color:var(--goa-color-emergency-dark);border-color:var(--goa-color-emergency-dark);background-color:var(--goa-color-greyscale-white)}.tertiary.destructive{color:var(--goa-color-emergency-default);border-color:transparent}.tertiary.destructive:hover{color:var(--goa-color-emergency-dark)}.tertiary.destructive:focus,.tertiary.destructive:active{color:var(--goa-color-emergency-dark)}</style>`;
|
|
2989
2989
|
init(this, {
|
|
2990
2990
|
target: this.shadowRoot,
|
|
2991
2991
|
props: attribute_to_object(this.attributes),
|
|
@@ -3397,6 +3397,9 @@
|
|
|
3397
3397
|
t = text(
|
|
3398
3398
|
/*heading*/
|
|
3399
3399
|
ctx[5]);
|
|
3400
|
+
toggle_class(h3, "medium",
|
|
3401
|
+
/*isMediumCallout*/
|
|
3402
|
+
ctx[9]);
|
|
3400
3403
|
},
|
|
3401
3404
|
|
|
3402
3405
|
m(target, anchor) {
|
|
@@ -3410,6 +3413,14 @@
|
|
|
3410
3413
|
32) set_data(t,
|
|
3411
3414
|
/*heading*/
|
|
3412
3415
|
ctx[5]);
|
|
3416
|
+
|
|
3417
|
+
if (dirty &
|
|
3418
|
+
/*isMediumCallout*/
|
|
3419
|
+
512) {
|
|
3420
|
+
toggle_class(h3, "medium",
|
|
3421
|
+
/*isMediumCallout*/
|
|
3422
|
+
ctx[9]);
|
|
3423
|
+
}
|
|
3413
3424
|
},
|
|
3414
3425
|
|
|
3415
3426
|
d(detaching) {
|
|
@@ -3430,6 +3441,11 @@
|
|
|
3430
3441
|
let t1;
|
|
3431
3442
|
let slot;
|
|
3432
3443
|
let div_style_value;
|
|
3444
|
+
let mounted;
|
|
3445
|
+
let dispose;
|
|
3446
|
+
add_render_callback(
|
|
3447
|
+
/*onwindowresize*/
|
|
3448
|
+
ctx[12]);
|
|
3433
3449
|
let if_block =
|
|
3434
3450
|
/*heading*/
|
|
3435
3451
|
ctx[5] && create_if_block$l(ctx);
|
|
@@ -3446,7 +3462,10 @@
|
|
|
3446
3462
|
this.c = noop;
|
|
3447
3463
|
set_custom_element_data(goa_icon, "type",
|
|
3448
3464
|
/*iconType*/
|
|
3449
|
-
ctx[
|
|
3465
|
+
ctx[10]);
|
|
3466
|
+
set_custom_element_data(goa_icon, "size",
|
|
3467
|
+
/*iconSize*/
|
|
3468
|
+
ctx[8]);
|
|
3450
3469
|
set_custom_element_data(goa_icon, "inverted", goa_icon_inverted_value =
|
|
3451
3470
|
/*type*/
|
|
3452
3471
|
ctx[4] === "important" ? "false" : "true");
|
|
@@ -3467,6 +3486,9 @@
|
|
|
3467
3486
|
attr(div, "data-testid",
|
|
3468
3487
|
/*testid*/
|
|
3469
3488
|
ctx[6]);
|
|
3489
|
+
toggle_class(div, "medium",
|
|
3490
|
+
/*isMediumCallout*/
|
|
3491
|
+
ctx[9]);
|
|
3470
3492
|
},
|
|
3471
3493
|
|
|
3472
3494
|
m(target, anchor) {
|
|
@@ -3478,15 +3500,30 @@
|
|
|
3478
3500
|
if (if_block) if_block.m(span1, null);
|
|
3479
3501
|
append(span1, t1);
|
|
3480
3502
|
append(span1, slot);
|
|
3503
|
+
|
|
3504
|
+
if (!mounted) {
|
|
3505
|
+
dispose = listen(window, "resize",
|
|
3506
|
+
/*onwindowresize*/
|
|
3507
|
+
ctx[12]);
|
|
3508
|
+
mounted = true;
|
|
3509
|
+
}
|
|
3481
3510
|
},
|
|
3482
3511
|
|
|
3483
3512
|
p(ctx, [dirty]) {
|
|
3484
3513
|
if (dirty &
|
|
3485
3514
|
/*iconType*/
|
|
3486
|
-
|
|
3515
|
+
1024) {
|
|
3487
3516
|
set_custom_element_data(goa_icon, "type",
|
|
3488
3517
|
/*iconType*/
|
|
3489
|
-
ctx[
|
|
3518
|
+
ctx[10]);
|
|
3519
|
+
}
|
|
3520
|
+
|
|
3521
|
+
if (dirty &
|
|
3522
|
+
/*iconSize*/
|
|
3523
|
+
256) {
|
|
3524
|
+
set_custom_element_data(goa_icon, "size",
|
|
3525
|
+
/*iconSize*/
|
|
3526
|
+
ctx[8]);
|
|
3490
3527
|
}
|
|
3491
3528
|
|
|
3492
3529
|
if (dirty &
|
|
@@ -3541,6 +3578,14 @@
|
|
|
3541
3578
|
/*testid*/
|
|
3542
3579
|
ctx[6]);
|
|
3543
3580
|
}
|
|
3581
|
+
|
|
3582
|
+
if (dirty &
|
|
3583
|
+
/*isMediumCallout*/
|
|
3584
|
+
512) {
|
|
3585
|
+
toggle_class(div, "medium",
|
|
3586
|
+
/*isMediumCallout*/
|
|
3587
|
+
ctx[9]);
|
|
3588
|
+
}
|
|
3544
3589
|
},
|
|
3545
3590
|
|
|
3546
3591
|
i: noop,
|
|
@@ -3549,14 +3594,18 @@
|
|
|
3549
3594
|
d(detaching) {
|
|
3550
3595
|
if (detaching) detach(div);
|
|
3551
3596
|
if (if_block) if_block.d();
|
|
3597
|
+
mounted = false;
|
|
3598
|
+
dispose();
|
|
3552
3599
|
}
|
|
3553
3600
|
|
|
3554
3601
|
};
|
|
3555
3602
|
}
|
|
3556
3603
|
|
|
3557
3604
|
function instance$E($$self, $$props, $$invalidate) {
|
|
3605
|
+
let isMediumCallout;
|
|
3558
3606
|
let iconType;
|
|
3559
3607
|
const [Types, validateType] = typeValidator("Callout type", ["emergency", "important", "information", "event", "success"], true);
|
|
3608
|
+
const [CalloutSizes, validateCalloutSize] = typeValidator("Callout size", ["medium", "large"]);
|
|
3560
3609
|
let {
|
|
3561
3610
|
mt = null
|
|
3562
3611
|
} = $$props;
|
|
@@ -3569,6 +3618,9 @@
|
|
|
3569
3618
|
let {
|
|
3570
3619
|
ml = null
|
|
3571
3620
|
} = $$props;
|
|
3621
|
+
let {
|
|
3622
|
+
size = "large"
|
|
3623
|
+
} = $$props;
|
|
3572
3624
|
let {
|
|
3573
3625
|
type
|
|
3574
3626
|
} = $$props;
|
|
@@ -3578,35 +3630,52 @@
|
|
|
3578
3630
|
let {
|
|
3579
3631
|
testid = ""
|
|
3580
3632
|
} = $$props;
|
|
3633
|
+
let screenSize = 0;
|
|
3634
|
+
let iconSize = "medium";
|
|
3581
3635
|
onMount(() => {
|
|
3582
|
-
|
|
3636
|
+
validateCalloutSize(size);
|
|
3637
|
+
setTimeout(() => {
|
|
3638
|
+
validateType(type);
|
|
3639
|
+
$$invalidate(8, iconSize = isMediumCallout ? "small" : "medium");
|
|
3640
|
+
});
|
|
3583
3641
|
});
|
|
3584
3642
|
|
|
3643
|
+
function onwindowresize() {
|
|
3644
|
+
$$invalidate(7, screenSize = window.innerWidth);
|
|
3645
|
+
}
|
|
3646
|
+
|
|
3585
3647
|
$$self.$$set = $$props => {
|
|
3586
3648
|
if ('mt' in $$props) $$invalidate(0, mt = $$props.mt);
|
|
3587
3649
|
if ('mr' in $$props) $$invalidate(1, mr = $$props.mr);
|
|
3588
3650
|
if ('mb' in $$props) $$invalidate(2, mb = $$props.mb);
|
|
3589
3651
|
if ('ml' in $$props) $$invalidate(3, ml = $$props.ml);
|
|
3652
|
+
if ('size' in $$props) $$invalidate(11, size = $$props.size);
|
|
3590
3653
|
if ('type' in $$props) $$invalidate(4, type = $$props.type);
|
|
3591
3654
|
if ('heading' in $$props) $$invalidate(5, heading = $$props.heading);
|
|
3592
3655
|
if ('testid' in $$props) $$invalidate(6, testid = $$props.testid);
|
|
3593
3656
|
};
|
|
3594
3657
|
|
|
3595
3658
|
$$self.$$.update = () => {
|
|
3659
|
+
if ($$self.$$.dirty &
|
|
3660
|
+
/*screenSize, size*/
|
|
3661
|
+
2176) {
|
|
3662
|
+
$$invalidate(9, isMediumCallout = screenSize < 640 || size === "medium");
|
|
3663
|
+
}
|
|
3664
|
+
|
|
3596
3665
|
if ($$self.$$.dirty &
|
|
3597
3666
|
/*type*/
|
|
3598
3667
|
16) {
|
|
3599
|
-
$$invalidate(
|
|
3668
|
+
$$invalidate(10, iconType = type === "emergency" ? "warning" : type === "important" ? "alert-circle" : type === "information" ? "information-circle" : type === "success" ? "checkmark-circle" : type === "event" ? "calendar" : "");
|
|
3600
3669
|
}
|
|
3601
3670
|
};
|
|
3602
3671
|
|
|
3603
|
-
return [mt, mr, mb, ml, type, heading, testid, iconType];
|
|
3672
|
+
return [mt, mr, mb, ml, type, heading, testid, screenSize, iconSize, isMediumCallout, iconType, size, onwindowresize];
|
|
3604
3673
|
}
|
|
3605
3674
|
|
|
3606
3675
|
class Callout extends SvelteElement {
|
|
3607
3676
|
constructor(options) {
|
|
3608
3677
|
super();
|
|
3609
|
-
this.shadowRoot.innerHTML = `<style>:host{box-sizing:border-box;font-family:var(--goa-font-family-sans)}.notification{display:flex;align-items:stretch;
|
|
3678
|
+
this.shadowRoot.innerHTML = `<style>:host{box-sizing:border-box;font-family:var(--goa-font-family-sans)}.notification{display:flex;align-items:stretch;overflow:hidden;font:var(--goa-typography-body-m)}h3{font-size:var(--goa-font-size-7);line-height:var(--goa-line-height-2);font-weight:var(--goa-font-weight-regular);margin-top:var(--goa-space-none);margin-bottom:var(--goa-space-m)}.emergency{background-color:var(--goa-color-emergency-default)}.important{background-color:var(--goa-color-warning-default)}.information{background-color:var(--goa-color-info-default)}.event{background-color:var(--goa-color-info-default)}.success{background-color:var(--goa-color-success-default)}.icon{text-align:center;padding-top:var(--goa-space-l);padding-left:var(--goa-space-s);padding-right:var(--goa-space-s)}.content{flex:1 1 auto;background-color:var(--goa-color-greyscale-100);padding:var(--goa-space-l)}.notification.medium{font:var(--goa-typography-body-s);max-width:22rem}h3.medium{font:var(--goa-typography-heading-xs);margin-bottom:var(--goa-space-2xs)}.notification.medium .content{padding:var(--goa-space-s);margin-top:calc(-1 * var(--goa-space-3xs))}.notification.medium .icon{padding-top:var(--goa-space-s);padding-left:var(--goa-space-2xs);padding-right:var(--goa-space-2xs)}</style>`;
|
|
3610
3679
|
init(this, {
|
|
3611
3680
|
target: this.shadowRoot,
|
|
3612
3681
|
props: attribute_to_object(this.attributes),
|
|
@@ -3616,6 +3685,7 @@
|
|
|
3616
3685
|
mr: 1,
|
|
3617
3686
|
mb: 2,
|
|
3618
3687
|
ml: 3,
|
|
3688
|
+
size: 11,
|
|
3619
3689
|
type: 4,
|
|
3620
3690
|
heading: 5,
|
|
3621
3691
|
testid: 6
|
|
@@ -3634,7 +3704,7 @@
|
|
|
3634
3704
|
}
|
|
3635
3705
|
|
|
3636
3706
|
static get observedAttributes() {
|
|
3637
|
-
return ["mt", "mr", "mb", "ml", "type", "heading", "testid"];
|
|
3707
|
+
return ["mt", "mr", "mb", "ml", "size", "type", "heading", "testid"];
|
|
3638
3708
|
}
|
|
3639
3709
|
|
|
3640
3710
|
get mt() {
|
|
@@ -3681,6 +3751,17 @@
|
|
|
3681
3751
|
flush();
|
|
3682
3752
|
}
|
|
3683
3753
|
|
|
3754
|
+
get size() {
|
|
3755
|
+
return this.$$.ctx[11];
|
|
3756
|
+
}
|
|
3757
|
+
|
|
3758
|
+
set size(size) {
|
|
3759
|
+
this.$$set({
|
|
3760
|
+
size
|
|
3761
|
+
});
|
|
3762
|
+
flush();
|
|
3763
|
+
}
|
|
3764
|
+
|
|
3684
3765
|
get type() {
|
|
3685
3766
|
return this.$$.ctx[4];
|
|
3686
3767
|
}
|
|
@@ -17732,7 +17813,7 @@
|
|
|
17732
17813
|
class Table extends SvelteElement {
|
|
17733
17814
|
constructor(options) {
|
|
17734
17815
|
super();
|
|
17735
|
-
this.shadowRoot.innerHTML = `<style>:host{overflow-x:auto}table{border-collapse:collapse}table.sticky{position:relative}table.sticky thead{position:sticky;top:0}td{font:var(--goa-typography-body-m);padding:0.75rem 1rem;border-bottom:1px solid var(--goa-color-greyscale-200)}table .goa-table-number-column{font:var(--goa-typography-number-m);text-align:right}table.relaxed td{padding:1rem}th{background-color:var(--goa-color-greyscale-white);color:var(--goa-color-text-secondary);padding:1rem;text-align:left;border-bottom:2px solid var(--goa-color-greyscale-
|
|
17816
|
+
this.shadowRoot.innerHTML = `<style>:host{overflow-x:auto}table{border-collapse:collapse}table.sticky{position:relative}table.sticky thead{position:sticky;top:0}td{font:var(--goa-typography-body-m);padding:0.75rem 1rem;border-bottom:1px solid var(--goa-color-greyscale-200)}table .goa-table-number-column{font:var(--goa-typography-number-m);text-align:right}table.relaxed td{padding:1rem}th{background-color:var(--goa-color-greyscale-white);color:var(--goa-color-text-secondary);padding:1rem;text-align:left;border-bottom:2px solid var(--goa-color-greyscale-600);vertical-align:bottom}th:has(goa-table-sort-header){padding:0}tfoot td{background-color:var(--goa-color-greyscale-100)}tfoot tr:first-child td{border-top:2px solid var(--goa-color-greyscale-200)}tfoot tr:last-child td{border-bottom:none}</style>`;
|
|
17736
17817
|
init(this, {
|
|
17737
17818
|
target: this.shadowRoot,
|
|
17738
17819
|
props: attribute_to_object(this.attributes),
|
|
@@ -22103,6 +22184,8 @@
|
|
|
22103
22184
|
var heading = _a.heading,
|
|
22104
22185
|
_b = _a.type,
|
|
22105
22186
|
type = _b === void 0 ? "information" : _b,
|
|
22187
|
+
_c = _a.size,
|
|
22188
|
+
size = _c === void 0 ? "large" : _c,
|
|
22106
22189
|
testId = _a.testId,
|
|
22107
22190
|
children = _a.children,
|
|
22108
22191
|
mt = _a.mt,
|
|
@@ -22112,6 +22195,7 @@
|
|
|
22112
22195
|
return jsxRuntime.jsx("goa-callout", __assign({
|
|
22113
22196
|
heading: heading,
|
|
22114
22197
|
type: type,
|
|
22198
|
+
size: size,
|
|
22115
22199
|
mt: mt,
|
|
22116
22200
|
mr: mr,
|
|
22117
22201
|
mb: mb,
|