@abgov/web-components 1.0.0-alpha.112 → 1.0.0-alpha.114
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/package.json +1 -1
- package/web-components.es.js +84 -59
- package/web-components.umd.js +38 -38
package/package.json
CHANGED
package/web-components.es.js
CHANGED
|
@@ -99,6 +99,7 @@ function append_empty_stylesheet(node) {
|
|
|
99
99
|
}
|
|
100
100
|
function append_stylesheet(node, style) {
|
|
101
101
|
append(node.head || node, style);
|
|
102
|
+
return style.sheet;
|
|
102
103
|
}
|
|
103
104
|
function insert(target, node, anchor) {
|
|
104
105
|
target.insertBefore(node, anchor || null);
|
|
@@ -233,11 +234,10 @@ function clear_rules() {
|
|
|
233
234
|
if (active)
|
|
234
235
|
return;
|
|
235
236
|
managed_styles.forEach(info => {
|
|
236
|
-
const {
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
info.rules = {};
|
|
237
|
+
const { ownerNode } = info.stylesheet;
|
|
238
|
+
// there is no ownerNode if it runs on jsdom.
|
|
239
|
+
if (ownerNode)
|
|
240
|
+
detach(ownerNode);
|
|
241
241
|
});
|
|
242
242
|
managed_styles.clear();
|
|
243
243
|
});
|
|
@@ -252,9 +252,26 @@ function get_current_component() {
|
|
|
252
252
|
throw new Error('Function called outside component initialization');
|
|
253
253
|
return current_component;
|
|
254
254
|
}
|
|
255
|
+
/**
|
|
256
|
+
* The `onMount` function schedules a callback to run as soon as the component has been mounted to the DOM.
|
|
257
|
+
* It must be called during the component's initialisation (but doesn't need to live *inside* the component;
|
|
258
|
+
* it can be called from an external module).
|
|
259
|
+
*
|
|
260
|
+
* `onMount` does not run inside a [server-side component](/docs#run-time-server-side-component-api).
|
|
261
|
+
*
|
|
262
|
+
* https://svelte.dev/docs#run-time-svelte-onmount
|
|
263
|
+
*/
|
|
255
264
|
function onMount(fn) {
|
|
256
265
|
get_current_component().$$.on_mount.push(fn);
|
|
257
266
|
}
|
|
267
|
+
/**
|
|
268
|
+
* Schedules a callback to run immediately before the component is unmounted.
|
|
269
|
+
*
|
|
270
|
+
* Out of `onMount`, `beforeUpdate`, `afterUpdate` and `onDestroy`, this is the
|
|
271
|
+
* only one that runs inside a server-side component.
|
|
272
|
+
*
|
|
273
|
+
* https://svelte.dev/docs#run-time-svelte-ondestroy
|
|
274
|
+
*/
|
|
258
275
|
function onDestroy(fn) {
|
|
259
276
|
get_current_component().$$.on_destroy.push(fn);
|
|
260
277
|
}
|
|
@@ -707,14 +724,17 @@ function create_component(block) {
|
|
|
707
724
|
block && block.c();
|
|
708
725
|
}
|
|
709
726
|
function mount_component(component, target, anchor, customElement) {
|
|
710
|
-
const { fragment,
|
|
727
|
+
const { fragment, after_update } = component.$$;
|
|
711
728
|
fragment && fragment.m(target, anchor);
|
|
712
729
|
if (!customElement) {
|
|
713
730
|
// onMount happens before the initial afterUpdate
|
|
714
731
|
add_render_callback(() => {
|
|
715
|
-
const new_on_destroy = on_mount.map(run).filter(is_function);
|
|
716
|
-
if
|
|
717
|
-
|
|
732
|
+
const new_on_destroy = component.$$.on_mount.map(run).filter(is_function);
|
|
733
|
+
// if the component was destroyed immediately
|
|
734
|
+
// it will update the `$$.on_destroy` reference to `null`.
|
|
735
|
+
// the destructured on_destroy may still reference to the old array
|
|
736
|
+
if (component.$$.on_destroy) {
|
|
737
|
+
component.$$.on_destroy.push(...new_on_destroy);
|
|
718
738
|
}
|
|
719
739
|
else {
|
|
720
740
|
// Edge case - component was destroyed immediately,
|
|
@@ -750,7 +770,7 @@ function init(component, options, instance, create_fragment, not_equal, props, a
|
|
|
750
770
|
set_current_component(component);
|
|
751
771
|
const $$ = component.$$ = {
|
|
752
772
|
fragment: null,
|
|
753
|
-
ctx:
|
|
773
|
+
ctx: [],
|
|
754
774
|
// state
|
|
755
775
|
props,
|
|
756
776
|
update: noop,
|
|
@@ -834,6 +854,9 @@ if (typeof HTMLElement === 'function') {
|
|
|
834
854
|
}
|
|
835
855
|
$on(type, callback) {
|
|
836
856
|
// TODO should this delegate to addEventListener?
|
|
857
|
+
if (!is_function(callback)) {
|
|
858
|
+
return noop;
|
|
859
|
+
}
|
|
837
860
|
const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));
|
|
838
861
|
callbacks.push(callback);
|
|
839
862
|
return () => {
|
|
@@ -852,7 +875,7 @@ if (typeof HTMLElement === 'function') {
|
|
|
852
875
|
};
|
|
853
876
|
}
|
|
854
877
|
|
|
855
|
-
/* libs/web-components/src/components/app-header/AppHeader.svelte generated by Svelte v3.
|
|
878
|
+
/* libs/web-components/src/components/app-header/AppHeader.svelte generated by Svelte v3.51.0 */
|
|
856
879
|
|
|
857
880
|
function create_else_block$4(ctx) {
|
|
858
881
|
let div;
|
|
@@ -1128,7 +1151,7 @@ function fromBoolean(value) {
|
|
|
1128
1151
|
return value ? "true" : "false";
|
|
1129
1152
|
}
|
|
1130
1153
|
|
|
1131
|
-
/* libs/web-components/src/components/badge/Badge.svelte generated by Svelte v3.
|
|
1154
|
+
/* libs/web-components/src/components/badge/Badge.svelte generated by Svelte v3.51.0 */
|
|
1132
1155
|
|
|
1133
1156
|
function create_else_block$3(ctx) {
|
|
1134
1157
|
let div;
|
|
@@ -1394,7 +1417,7 @@ class Badge extends SvelteElement {
|
|
|
1394
1417
|
|
|
1395
1418
|
customElements.define("goa-badge", Badge);
|
|
1396
1419
|
|
|
1397
|
-
/* libs/web-components/src/components/button-group/ButtonGroup.svelte generated by Svelte v3.
|
|
1420
|
+
/* libs/web-components/src/components/button-group/ButtonGroup.svelte generated by Svelte v3.51.0 */
|
|
1398
1421
|
|
|
1399
1422
|
function create_fragment$D(ctx) {
|
|
1400
1423
|
let div;
|
|
@@ -1444,7 +1467,7 @@ function instance$y($$self, $$props, $$invalidate) {
|
|
|
1444
1467
|
class ButtonGroup extends SvelteElement {
|
|
1445
1468
|
constructor(options) {
|
|
1446
1469
|
super();
|
|
1447
|
-
this.shadowRoot.innerHTML = `<style>:host{box-sizing:border-box;font-family:var(--font-family)}div{display:flex;flex-direction:row;justify-content:var(--alignment);flex-wrap:wrap;gap:var(--gap-size)}</style>`;
|
|
1470
|
+
this.shadowRoot.innerHTML = `<style>:host{box-sizing:border-box;font-family:var(--font-family)}div{display:flex;flex-direction:row;justify-content:var(--alignment);flex-wrap:wrap;gap:var(--gap-size);padding:3px 0}</style>`;
|
|
1448
1471
|
|
|
1449
1472
|
init(
|
|
1450
1473
|
this,
|
|
@@ -1497,7 +1520,7 @@ class ButtonGroup extends SvelteElement {
|
|
|
1497
1520
|
|
|
1498
1521
|
customElements.define("goa-button-group", ButtonGroup);
|
|
1499
1522
|
|
|
1500
|
-
/* libs/web-components/src/components/button/Button.svelte generated by Svelte v3.
|
|
1523
|
+
/* libs/web-components/src/components/button/Button.svelte generated by Svelte v3.51.0 */
|
|
1501
1524
|
|
|
1502
1525
|
function create_else_block$2(ctx) {
|
|
1503
1526
|
let t0;
|
|
@@ -1928,7 +1951,7 @@ class Button extends SvelteElement {
|
|
|
1928
1951
|
|
|
1929
1952
|
customElements.define("goa-button", Button);
|
|
1930
1953
|
|
|
1931
|
-
/* libs/web-components/src/components/callout/Callout.svelte generated by Svelte v3.
|
|
1954
|
+
/* libs/web-components/src/components/callout/Callout.svelte generated by Svelte v3.51.0 */
|
|
1932
1955
|
|
|
1933
1956
|
function create_if_block$g(ctx) {
|
|
1934
1957
|
let h3;
|
|
@@ -2125,7 +2148,7 @@ class Callout extends SvelteElement {
|
|
|
2125
2148
|
|
|
2126
2149
|
customElements.define("goa-callout", Callout);
|
|
2127
2150
|
|
|
2128
|
-
/* libs/web-components/src/components/card-actions/CardActions.svelte generated by Svelte v3.
|
|
2151
|
+
/* libs/web-components/src/components/card-actions/CardActions.svelte generated by Svelte v3.51.0 */
|
|
2129
2152
|
|
|
2130
2153
|
function create_fragment$A(ctx) {
|
|
2131
2154
|
let goa_card_content;
|
|
@@ -2176,7 +2199,7 @@ class CardActions extends SvelteElement {
|
|
|
2176
2199
|
|
|
2177
2200
|
customElements.define("goa-card-actions", CardActions);
|
|
2178
2201
|
|
|
2179
|
-
/* libs/web-components/src/components/card-content/CardContent.svelte generated by Svelte v3.
|
|
2202
|
+
/* libs/web-components/src/components/card-content/CardContent.svelte generated by Svelte v3.51.0 */
|
|
2180
2203
|
|
|
2181
2204
|
function create_fragment$z(ctx) {
|
|
2182
2205
|
let div;
|
|
@@ -2229,7 +2252,7 @@ class CardContent extends SvelteElement {
|
|
|
2229
2252
|
|
|
2230
2253
|
customElements.define("goa-card-content", CardContent);
|
|
2231
2254
|
|
|
2232
|
-
/* libs/web-components/src/components/card-group/CardGroup.svelte generated by Svelte v3.
|
|
2255
|
+
/* libs/web-components/src/components/card-group/CardGroup.svelte generated by Svelte v3.51.0 */
|
|
2233
2256
|
|
|
2234
2257
|
function create_fragment$y(ctx) {
|
|
2235
2258
|
let div;
|
|
@@ -2282,7 +2305,7 @@ class CardGroup extends SvelteElement {
|
|
|
2282
2305
|
|
|
2283
2306
|
customElements.define("goa-card-group", CardGroup);
|
|
2284
2307
|
|
|
2285
|
-
/* libs/web-components/src/components/card-image/CardImage.svelte generated by Svelte v3.
|
|
2308
|
+
/* libs/web-components/src/components/card-image/CardImage.svelte generated by Svelte v3.51.0 */
|
|
2286
2309
|
|
|
2287
2310
|
function create_fragment$x(ctx) {
|
|
2288
2311
|
let div;
|
|
@@ -2385,7 +2408,7 @@ class CardImage extends SvelteElement {
|
|
|
2385
2408
|
|
|
2386
2409
|
customElements.define("goa-card-image", CardImage);
|
|
2387
2410
|
|
|
2388
|
-
/* libs/web-components/src/components/card/Card.svelte generated by Svelte v3.
|
|
2411
|
+
/* libs/web-components/src/components/card/Card.svelte generated by Svelte v3.51.0 */
|
|
2389
2412
|
|
|
2390
2413
|
function create_fragment$w(ctx) {
|
|
2391
2414
|
let div;
|
|
@@ -2508,7 +2531,7 @@ class Card extends SvelteElement {
|
|
|
2508
2531
|
|
|
2509
2532
|
customElements.define("goa-card", Card);
|
|
2510
2533
|
|
|
2511
|
-
/* libs/web-components/src/components/checkbox/Checkbox.svelte generated by Svelte v3.
|
|
2534
|
+
/* libs/web-components/src/components/checkbox/Checkbox.svelte generated by Svelte v3.51.0 */
|
|
2512
2535
|
|
|
2513
2536
|
function create_if_block_1$9(ctx) {
|
|
2514
2537
|
let svg;
|
|
@@ -2878,7 +2901,7 @@ class Checkbox extends SvelteElement {
|
|
|
2878
2901
|
|
|
2879
2902
|
customElements.define("goa-checkbox", Checkbox);
|
|
2880
2903
|
|
|
2881
|
-
/* libs/web-components/src/components/chip/Chip.svelte generated by Svelte v3.
|
|
2904
|
+
/* libs/web-components/src/components/chip/Chip.svelte generated by Svelte v3.51.0 */
|
|
2882
2905
|
|
|
2883
2906
|
function create_if_block_1$8(ctx) {
|
|
2884
2907
|
let goa_icon;
|
|
@@ -3299,7 +3322,7 @@ function noscroll(_node, opts) {
|
|
|
3299
3322
|
};
|
|
3300
3323
|
}
|
|
3301
3324
|
|
|
3302
|
-
/* libs/web-components/src/components/circular-progress/CircularProgress.svelte generated by Svelte v3.
|
|
3325
|
+
/* libs/web-components/src/components/circular-progress/CircularProgress.svelte generated by Svelte v3.51.0 */
|
|
3303
3326
|
|
|
3304
3327
|
function create_if_block$d(ctx) {
|
|
3305
3328
|
let current_block_type_index;
|
|
@@ -3506,7 +3529,7 @@ function create_if_block_1$7(ctx) {
|
|
|
3506
3529
|
if_block = null;
|
|
3507
3530
|
}
|
|
3508
3531
|
|
|
3509
|
-
if (dirty & /*fullscreen*/ 8) {
|
|
3532
|
+
if (!current || dirty & /*fullscreen*/ 8) {
|
|
3510
3533
|
toggle_class(div, "fullscreen", /*fullscreen*/ ctx[3]);
|
|
3511
3534
|
}
|
|
3512
3535
|
},
|
|
@@ -3772,7 +3795,7 @@ class CircularProgress extends SvelteElement {
|
|
|
3772
3795
|
|
|
3773
3796
|
customElements.define("goa-circular-progress", CircularProgress);
|
|
3774
3797
|
|
|
3775
|
-
/* libs/web-components/src/components/container/Container.svelte generated by Svelte v3.
|
|
3798
|
+
/* libs/web-components/src/components/container/Container.svelte generated by Svelte v3.51.0 */
|
|
3776
3799
|
|
|
3777
3800
|
function create_fragment$s(ctx) {
|
|
3778
3801
|
let div3;
|
|
@@ -3999,7 +4022,7 @@ function deleteContext(name) {
|
|
|
3999
4022
|
|
|
4000
4023
|
const BIND$1 = "bind";
|
|
4001
4024
|
|
|
4002
|
-
/* libs/web-components/src/components/dropdown/Dropdown.svelte generated by Svelte v3.
|
|
4025
|
+
/* libs/web-components/src/components/dropdown/Dropdown.svelte generated by Svelte v3.51.0 */
|
|
4003
4026
|
|
|
4004
4027
|
function get_each_context$4(ctx, list, i) {
|
|
4005
4028
|
const child_ctx = ctx.slice();
|
|
@@ -4780,7 +4803,7 @@ class Dropdown extends SvelteElement {
|
|
|
4780
4803
|
|
|
4781
4804
|
customElements.define("goa-dropdown", Dropdown);
|
|
4782
4805
|
|
|
4783
|
-
/* libs/web-components/src/components/dropdown/DropdownItem.svelte generated by Svelte v3.
|
|
4806
|
+
/* libs/web-components/src/components/dropdown/DropdownItem.svelte generated by Svelte v3.51.0 */
|
|
4784
4807
|
|
|
4785
4808
|
function create_fragment$q(ctx) {
|
|
4786
4809
|
return {
|
|
@@ -4895,7 +4918,7 @@ class DropdownItem extends SvelteElement {
|
|
|
4895
4918
|
|
|
4896
4919
|
customElements.define("goa-dropdown-item", DropdownItem);
|
|
4897
4920
|
|
|
4898
|
-
/* libs/web-components/src/components/flex-column/FlexColumn.svelte generated by Svelte v3.
|
|
4921
|
+
/* libs/web-components/src/components/flex-column/FlexColumn.svelte generated by Svelte v3.51.0 */
|
|
4899
4922
|
|
|
4900
4923
|
function create_fragment$p(ctx) {
|
|
4901
4924
|
let div;
|
|
@@ -4994,7 +5017,7 @@ class FlexColumn extends SvelteElement {
|
|
|
4994
5017
|
|
|
4995
5018
|
customElements.define("goa-flex-col", FlexColumn);
|
|
4996
5019
|
|
|
4997
|
-
/* libs/web-components/src/components/flex-row/FlexRow.svelte generated by Svelte v3.
|
|
5020
|
+
/* libs/web-components/src/components/flex-row/FlexRow.svelte generated by Svelte v3.51.0 */
|
|
4998
5021
|
|
|
4999
5022
|
function create_fragment$o(ctx) {
|
|
5000
5023
|
let div;
|
|
@@ -5093,7 +5116,7 @@ class FlexRow extends SvelteElement {
|
|
|
5093
5116
|
|
|
5094
5117
|
customElements.define("goa-flex-row", FlexRow);
|
|
5095
5118
|
|
|
5096
|
-
/* libs/web-components/src/components/focus-trap/FocusTrap.svelte generated by Svelte v3.
|
|
5119
|
+
/* libs/web-components/src/components/focus-trap/FocusTrap.svelte generated by Svelte v3.51.0 */
|
|
5097
5120
|
|
|
5098
5121
|
function create_fragment$n(ctx) {
|
|
5099
5122
|
let div;
|
|
@@ -5107,6 +5130,7 @@ function create_fragment$n(ctx) {
|
|
|
5107
5130
|
<span tabindex="0"></span>`;
|
|
5108
5131
|
|
|
5109
5132
|
this.c = noop;
|
|
5133
|
+
attr(div, "id", "root");
|
|
5110
5134
|
},
|
|
5111
5135
|
m(target, anchor) {
|
|
5112
5136
|
insert(target, div, anchor);
|
|
@@ -5309,6 +5333,7 @@ function instance$l($$self, $$props, $$invalidate) {
|
|
|
5309
5333
|
class FocusTrap extends SvelteElement {
|
|
5310
5334
|
constructor(options) {
|
|
5311
5335
|
super();
|
|
5336
|
+
this.shadowRoot.innerHTML = `<style>#root{display:inline}</style>`;
|
|
5312
5337
|
|
|
5313
5338
|
init(
|
|
5314
5339
|
this,
|
|
@@ -5352,7 +5377,7 @@ class FocusTrap extends SvelteElement {
|
|
|
5352
5377
|
|
|
5353
5378
|
customElements.define("goa-focus-trap", FocusTrap);
|
|
5354
5379
|
|
|
5355
|
-
/* libs/web-components/src/components/footer-meta-section/FooterMetaSection.svelte generated by Svelte v3.
|
|
5380
|
+
/* libs/web-components/src/components/footer-meta-section/FooterMetaSection.svelte generated by Svelte v3.51.0 */
|
|
5356
5381
|
|
|
5357
5382
|
function get_each_context$3(ctx, list, i) {
|
|
5358
5383
|
const child_ctx = ctx.slice();
|
|
@@ -5527,7 +5552,7 @@ class FooterMetaSection extends SvelteElement {
|
|
|
5527
5552
|
|
|
5528
5553
|
customElements.define("goa-app-footer-meta-section", FooterMetaSection);
|
|
5529
5554
|
|
|
5530
|
-
/* libs/web-components/src/components/footer-nav-section/FooterNavSection.svelte generated by Svelte v3.
|
|
5555
|
+
/* libs/web-components/src/components/footer-nav-section/FooterNavSection.svelte generated by Svelte v3.51.0 */
|
|
5531
5556
|
|
|
5532
5557
|
function get_each_context$2(ctx, list, i) {
|
|
5533
5558
|
const child_ctx = ctx.slice();
|
|
@@ -5825,7 +5850,7 @@ class FooterNavSection extends SvelteElement {
|
|
|
5825
5850
|
|
|
5826
5851
|
customElements.define("goa-app-footer-nav-section", FooterNavSection);
|
|
5827
5852
|
|
|
5828
|
-
/* libs/web-components/src/components/footer/Footer.svelte generated by Svelte v3.
|
|
5853
|
+
/* libs/web-components/src/components/footer/Footer.svelte generated by Svelte v3.51.0 */
|
|
5829
5854
|
|
|
5830
5855
|
function create_if_block$a(ctx) {
|
|
5831
5856
|
let goa_divider;
|
|
@@ -6019,7 +6044,7 @@ class Footer extends SvelteElement {
|
|
|
6019
6044
|
|
|
6020
6045
|
customElements.define("goa-app-footer", Footer);
|
|
6021
6046
|
|
|
6022
|
-
/* libs/web-components/src/components/form-item/FormItem.svelte generated by Svelte v3.
|
|
6047
|
+
/* libs/web-components/src/components/form-item/FormItem.svelte generated by Svelte v3.51.0 */
|
|
6023
6048
|
|
|
6024
6049
|
function create_if_block_2$5(ctx) {
|
|
6025
6050
|
let div;
|
|
@@ -6240,7 +6265,7 @@ function instance$h($$self, $$props, $$invalidate) {
|
|
|
6240
6265
|
class FormItem extends SvelteElement {
|
|
6241
6266
|
constructor(options) {
|
|
6242
6267
|
super();
|
|
6243
|
-
this.shadowRoot.innerHTML = `<style>:host{box-sizing:border-box;font-family:var(--font-family)}*{box-sizing:border-box}.label{display:block;font-weight:var(--fw-bold);color:var(--goa-color-text);font-size:var(--fs-base);padding:0.5rem 0
|
|
6268
|
+
this.shadowRoot.innerHTML = `<style>:host{box-sizing:border-box;font-family:var(--font-family)}*{box-sizing:border-box}.label{display:block;font-weight:var(--fw-bold);color:var(--goa-color-text);font-size:var(--fs-base);padding:0.5rem 0}.label em{color:var(--color-gray-600);font-weight:var(--fw-regular);font-size:var(--fs-sm);line-height:var(--lh-sm);font-style:normal}.form-item-input{margin-bottom:0.25rem}.help-msg{font-size:var(--fs-sm);color:var(--goa-color-text);margin-right:56px}.error-msg{font-size:var(--fs-sm);color:var(--goa-color-interactive--error);margin-bottom:0.25rem}</style>`;
|
|
6244
6269
|
|
|
6245
6270
|
init(
|
|
6246
6271
|
this,
|
|
@@ -6316,7 +6341,7 @@ class FormItem extends SvelteElement {
|
|
|
6316
6341
|
|
|
6317
6342
|
customElements.define("goa-form-item", FormItem);
|
|
6318
6343
|
|
|
6319
|
-
/* libs/web-components/src/components/hero-banner/HeroBanner.svelte generated by Svelte v3.
|
|
6344
|
+
/* libs/web-components/src/components/hero-banner/HeroBanner.svelte generated by Svelte v3.51.0 */
|
|
6320
6345
|
|
|
6321
6346
|
function create_fragment$i(ctx) {
|
|
6322
6347
|
let div1;
|
|
@@ -6444,7 +6469,7 @@ class HeroBanner extends SvelteElement {
|
|
|
6444
6469
|
|
|
6445
6470
|
customElements.define("goa-hero-banner", HeroBanner);
|
|
6446
6471
|
|
|
6447
|
-
/* libs/web-components/src/components/icon-button/IconButton.svelte generated by Svelte v3.
|
|
6472
|
+
/* libs/web-components/src/components/icon-button/IconButton.svelte generated by Svelte v3.51.0 */
|
|
6448
6473
|
|
|
6449
6474
|
function create_fragment$h(ctx) {
|
|
6450
6475
|
let button;
|
|
@@ -6724,7 +6749,7 @@ class IconButton extends SvelteElement {
|
|
|
6724
6749
|
|
|
6725
6750
|
customElements.define("goa-icon-button", IconButton);
|
|
6726
6751
|
|
|
6727
|
-
/* libs/web-components/src/components/icon/Icon.svelte generated by Svelte v3.
|
|
6752
|
+
/* libs/web-components/src/components/icon/Icon.svelte generated by Svelte v3.51.0 */
|
|
6728
6753
|
|
|
6729
6754
|
function create_if_block$8(ctx) {
|
|
6730
6755
|
let ion_icon;
|
|
@@ -7005,7 +7030,7 @@ class Icon extends SvelteElement {
|
|
|
7005
7030
|
|
|
7006
7031
|
customElements.define("goa-icon", Icon);
|
|
7007
7032
|
|
|
7008
|
-
/* libs/web-components/src/components/input/Input.svelte generated by Svelte v3.
|
|
7033
|
+
/* libs/web-components/src/components/input/Input.svelte generated by Svelte v3.51.0 */
|
|
7009
7034
|
|
|
7010
7035
|
function create_if_block_7(ctx) {
|
|
7011
7036
|
let div;
|
|
@@ -7972,7 +7997,7 @@ class Input extends SvelteElement {
|
|
|
7972
7997
|
|
|
7973
7998
|
customElements.define("goa-input", Input);
|
|
7974
7999
|
|
|
7975
|
-
/* libs/web-components/src/components/microsite-header/MicrositeHeader.svelte generated by Svelte v3.
|
|
8000
|
+
/* libs/web-components/src/components/microsite-header/MicrositeHeader.svelte generated by Svelte v3.51.0 */
|
|
7976
8001
|
|
|
7977
8002
|
function create_if_block_3$1(ctx) {
|
|
7978
8003
|
let div0;
|
|
@@ -8300,7 +8325,7 @@ class MicrositeHeader extends SvelteElement {
|
|
|
8300
8325
|
|
|
8301
8326
|
customElements.define("goa-microsite-header", MicrositeHeader);
|
|
8302
8327
|
|
|
8303
|
-
/* libs/web-components/src/components/modal/Modal.svelte generated by Svelte v3.
|
|
8328
|
+
/* libs/web-components/src/components/modal/Modal.svelte generated by Svelte v3.51.0 */
|
|
8304
8329
|
|
|
8305
8330
|
function create_if_block$5(ctx) {
|
|
8306
8331
|
let goa_focus_trap;
|
|
@@ -8494,7 +8519,7 @@ function create_if_block$5(ctx) {
|
|
|
8494
8519
|
};
|
|
8495
8520
|
}
|
|
8496
8521
|
|
|
8497
|
-
// (
|
|
8522
|
+
// (54:8) {#if heading}
|
|
8498
8523
|
function create_if_block_3(ctx) {
|
|
8499
8524
|
let div;
|
|
8500
8525
|
let t;
|
|
@@ -8519,7 +8544,7 @@ function create_if_block_3(ctx) {
|
|
|
8519
8544
|
};
|
|
8520
8545
|
}
|
|
8521
8546
|
|
|
8522
|
-
// (
|
|
8547
|
+
// (57:8) {#if isClosable}
|
|
8523
8548
|
function create_if_block_2$2(ctx) {
|
|
8524
8549
|
let div;
|
|
8525
8550
|
let goa_icon_button;
|
|
@@ -8552,7 +8577,7 @@ function create_if_block_2$2(ctx) {
|
|
|
8552
8577
|
};
|
|
8553
8578
|
}
|
|
8554
8579
|
|
|
8555
|
-
// (
|
|
8580
|
+
// (71:10) {:else}
|
|
8556
8581
|
function create_else_block$1(ctx) {
|
|
8557
8582
|
let div;
|
|
8558
8583
|
|
|
@@ -8571,7 +8596,7 @@ function create_else_block$1(ctx) {
|
|
|
8571
8596
|
};
|
|
8572
8597
|
}
|
|
8573
8598
|
|
|
8574
|
-
// (
|
|
8599
|
+
// (67:10) {#if isScrollable}
|
|
8575
8600
|
function create_if_block_1$3(ctx) {
|
|
8576
8601
|
let goa_scrollable;
|
|
8577
8602
|
|
|
@@ -8812,7 +8837,7 @@ class Modal extends SvelteElement {
|
|
|
8812
8837
|
|
|
8813
8838
|
customElements.define("goa-modal", Modal);
|
|
8814
8839
|
|
|
8815
|
-
/* libs/web-components/src/components/notification/Notification.svelte generated by Svelte v3.
|
|
8840
|
+
/* libs/web-components/src/components/notification/Notification.svelte generated by Svelte v3.51.0 */
|
|
8816
8841
|
|
|
8817
8842
|
function create_if_block$4(ctx) {
|
|
8818
8843
|
let div3;
|
|
@@ -9034,7 +9059,7 @@ function isValidDimension(value) {
|
|
|
9034
9059
|
return dimensionRegex.test(value);
|
|
9035
9060
|
}
|
|
9036
9061
|
|
|
9037
|
-
/* libs/web-components/src/components/page-block/PageBlock.svelte generated by Svelte v3.
|
|
9062
|
+
/* libs/web-components/src/components/page-block/PageBlock.svelte generated by Svelte v3.51.0 */
|
|
9038
9063
|
|
|
9039
9064
|
function create_fragment$b(ctx) {
|
|
9040
9065
|
let div;
|
|
@@ -9151,7 +9176,7 @@ customElements.define("goa-page-block", PageBlock);
|
|
|
9151
9176
|
|
|
9152
9177
|
const BIND = "bind";
|
|
9153
9178
|
|
|
9154
|
-
/* libs/web-components/src/components/radio-group/RadioGroup.svelte generated by Svelte v3.
|
|
9179
|
+
/* libs/web-components/src/components/radio-group/RadioGroup.svelte generated by Svelte v3.51.0 */
|
|
9155
9180
|
|
|
9156
9181
|
function get_each_context$1(ctx, list, i) {
|
|
9157
9182
|
const child_ctx = ctx.slice();
|
|
@@ -9532,7 +9557,7 @@ class RadioGroup extends SvelteElement {
|
|
|
9532
9557
|
|
|
9533
9558
|
customElements.define("goa-radio-group", RadioGroup);
|
|
9534
9559
|
|
|
9535
|
-
/* libs/web-components/src/components/radio-group/RadioItem.svelte generated by Svelte v3.
|
|
9560
|
+
/* libs/web-components/src/components/radio-group/RadioItem.svelte generated by Svelte v3.51.0 */
|
|
9536
9561
|
|
|
9537
9562
|
function create_fragment$9(ctx) {
|
|
9538
9563
|
return {
|
|
@@ -9654,7 +9679,7 @@ class RadioItem extends SvelteElement {
|
|
|
9654
9679
|
|
|
9655
9680
|
customElements.define("goa-radio-item", RadioItem);
|
|
9656
9681
|
|
|
9657
|
-
/* libs/web-components/src/components/scrollable/Scrollable.svelte generated by Svelte v3.
|
|
9682
|
+
/* libs/web-components/src/components/scrollable/Scrollable.svelte generated by Svelte v3.51.0 */
|
|
9658
9683
|
|
|
9659
9684
|
function create_fragment$8(ctx) {
|
|
9660
9685
|
let div;
|
|
@@ -9798,7 +9823,7 @@ class Scrollable extends SvelteElement {
|
|
|
9798
9823
|
|
|
9799
9824
|
customElements.define("goa-scrollable", Scrollable);
|
|
9800
9825
|
|
|
9801
|
-
/* libs/web-components/src/components/skeleton/Skeleton.svelte generated by Svelte v3.
|
|
9826
|
+
/* libs/web-components/src/components/skeleton/Skeleton.svelte generated by Svelte v3.51.0 */
|
|
9802
9827
|
|
|
9803
9828
|
function get_each_context(ctx, list, i) {
|
|
9804
9829
|
const child_ctx = ctx.slice();
|
|
@@ -10406,7 +10431,7 @@ function tweened(value, defaults = {}) {
|
|
|
10406
10431
|
};
|
|
10407
10432
|
}
|
|
10408
10433
|
|
|
10409
|
-
/* libs/web-components/src/components/spinner/Spinner.svelte generated by Svelte v3.
|
|
10434
|
+
/* libs/web-components/src/components/spinner/Spinner.svelte generated by Svelte v3.51.0 */
|
|
10410
10435
|
|
|
10411
10436
|
function create_if_block$2(ctx) {
|
|
10412
10437
|
let svg;
|
|
@@ -10740,7 +10765,7 @@ class Spinner extends SvelteElement {
|
|
|
10740
10765
|
|
|
10741
10766
|
customElements.define("goa-spinner", Spinner);
|
|
10742
10767
|
|
|
10743
|
-
/* libs/web-components/src/components/text-area/TextArea.svelte generated by Svelte v3.
|
|
10768
|
+
/* libs/web-components/src/components/text-area/TextArea.svelte generated by Svelte v3.51.0 */
|
|
10744
10769
|
|
|
10745
10770
|
function create_if_block$1(ctx) {
|
|
10746
10771
|
let if_block_anchor;
|
|
@@ -11218,7 +11243,7 @@ class TextArea extends SvelteElement {
|
|
|
11218
11243
|
|
|
11219
11244
|
customElements.define("goa-textarea", TextArea);
|
|
11220
11245
|
|
|
11221
|
-
/* libs/web-components/src/layouts/one-column-layout/OneColumnLayout.svelte generated by Svelte v3.
|
|
11246
|
+
/* libs/web-components/src/layouts/one-column-layout/OneColumnLayout.svelte generated by Svelte v3.51.0 */
|
|
11222
11247
|
|
|
11223
11248
|
function create_fragment$4(ctx) {
|
|
11224
11249
|
let div;
|
|
@@ -11277,7 +11302,7 @@ class OneColumnLayout extends SvelteElement {
|
|
|
11277
11302
|
|
|
11278
11303
|
customElements.define("goa-one-column-layout", OneColumnLayout);
|
|
11279
11304
|
|
|
11280
|
-
/* libs/web-components/src/layouts/two-column-layout/TwoColumnLayout.svelte generated by Svelte v3.
|
|
11305
|
+
/* libs/web-components/src/layouts/two-column-layout/TwoColumnLayout.svelte generated by Svelte v3.51.0 */
|
|
11281
11306
|
|
|
11282
11307
|
function create_fragment$3(ctx) {
|
|
11283
11308
|
let div;
|
|
@@ -11406,7 +11431,7 @@ class TwoColumnLayout extends SvelteElement {
|
|
|
11406
11431
|
|
|
11407
11432
|
customElements.define("goa-two-column-layout", TwoColumnLayout);
|
|
11408
11433
|
|
|
11409
|
-
/* libs/web-components/src/layouts/FullScreenNavbarLayout.svelte generated by Svelte v3.
|
|
11434
|
+
/* libs/web-components/src/layouts/FullScreenNavbarLayout.svelte generated by Svelte v3.51.0 */
|
|
11410
11435
|
|
|
11411
11436
|
function create_fragment$2(ctx) {
|
|
11412
11437
|
let div;
|
|
@@ -11473,7 +11498,7 @@ class FullScreenNavbarLayout extends SvelteElement {
|
|
|
11473
11498
|
|
|
11474
11499
|
customElements.define("goa-layout-full-nav", FullScreenNavbarLayout);
|
|
11475
11500
|
|
|
11476
|
-
/* libs/web-components/src/components/container/ContainerWrapper.test.svelte generated by Svelte v3.
|
|
11501
|
+
/* libs/web-components/src/components/container/ContainerWrapper.test.svelte generated by Svelte v3.51.0 */
|
|
11477
11502
|
|
|
11478
11503
|
function create_if_block_1(ctx) {
|
|
11479
11504
|
let div;
|
|
@@ -11704,7 +11729,7 @@ class ContainerWrapper_test extends SvelteElement {
|
|
|
11704
11729
|
|
|
11705
11730
|
customElements.define("test-container", ContainerWrapper_test);
|
|
11706
11731
|
|
|
11707
|
-
/* libs/web-components/src/components/divider/Divider.svelte generated by Svelte v3.
|
|
11732
|
+
/* libs/web-components/src/components/divider/Divider.svelte generated by Svelte v3.51.0 */
|
|
11708
11733
|
|
|
11709
11734
|
function create_fragment(ctx) {
|
|
11710
11735
|
let hr;
|