@moni-labs/moni-ui 0.4.1 → 0.4.2

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.
Files changed (64) hide show
  1. package/README.md +28 -3
  2. package/custom-elements.json +6 -6
  3. package/dist/cdn/chunks/base-BIpe3L86.js +1 -0
  4. package/dist/cdn/chunks/class-map-DBljv-_e.js +1 -0
  5. package/dist/cdn/chunks/decorate-DxX3e27g.js +738 -0
  6. package/dist/cdn/chunks/directive-BSZPiF1A.js +1 -0
  7. package/dist/cdn/chunks/event-emitter-CGhsijUg.js +1 -0
  8. package/dist/cdn/chunks/gsap-DWxn8li7.js +1 -0
  9. package/dist/cdn/chunks/if-defined-CuEAJKpp.js +1 -0
  10. package/dist/cdn/chunks/live-B7Rjg1kt.js +1 -0
  11. package/dist/cdn/chunks/query-SWT-tzvq.js +1 -0
  12. package/dist/cdn/chunks/query-assigned-elements-BBHe1xEY.js +1 -0
  13. package/dist/cdn/components/moni-app-bar.js +118 -0
  14. package/dist/cdn/components/moni-badge.js +69 -0
  15. package/dist/cdn/components/moni-bottom-sheet.js +143 -0
  16. package/dist/cdn/components/moni-button-group.js +56 -0
  17. package/dist/cdn/components/moni-button-segment.js +272 -0
  18. package/dist/cdn/components/moni-button.js +602 -0
  19. package/dist/cdn/components/moni-card.js +143 -0
  20. package/dist/cdn/components/moni-carousel.js +311 -0
  21. package/dist/cdn/components/moni-checkbox.js +137 -0
  22. package/dist/cdn/components/moni-chip.js +218 -0
  23. package/dist/cdn/components/moni-color-field.js +54 -0
  24. package/dist/cdn/components/moni-context-menu.js +24 -0
  25. package/dist/cdn/components/moni-dialog.js +191 -0
  26. package/dist/cdn/components/moni-divider.js +32 -0
  27. package/dist/cdn/components/moni-expansion.js +50 -0
  28. package/dist/cdn/components/moni-fab-menu.js +57 -0
  29. package/dist/cdn/components/moni-fab.js +103 -0
  30. package/dist/cdn/components/moni-file-field.js +45 -0
  31. package/dist/cdn/components/moni-icon.js +55 -0
  32. package/dist/cdn/components/moni-list-item.js +144 -0
  33. package/dist/cdn/components/moni-list.js +16 -0
  34. package/dist/cdn/components/moni-loading-indicator.js +134 -0
  35. package/dist/cdn/components/moni-menu-item.js +45 -0
  36. package/dist/cdn/components/moni-menu.js +165 -0
  37. package/dist/cdn/components/moni-morph-modal.js +157 -0
  38. package/dist/cdn/components/moni-nav-item.js +153 -0
  39. package/dist/cdn/components/moni-nav.js +161 -0
  40. package/dist/cdn/components/moni-progress.js +420 -0
  41. package/dist/cdn/components/moni-radio.js +154 -0
  42. package/dist/cdn/components/moni-ripple.js +55 -0
  43. package/dist/cdn/components/moni-segmented-button.js +32 -0
  44. package/dist/cdn/components/moni-select-option.js +47 -0
  45. package/dist/cdn/components/moni-select.js +503 -0
  46. package/dist/cdn/components/moni-shape.js +99 -0
  47. package/dist/cdn/components/moni-side-sheet.js +234 -0
  48. package/dist/cdn/components/moni-slider.js +252 -0
  49. package/dist/cdn/components/moni-snackbar.js +91 -0
  50. package/dist/cdn/components/moni-split-button.js +110 -0
  51. package/dist/cdn/components/moni-step.js +111 -0
  52. package/dist/cdn/components/moni-stepper.js +25 -0
  53. package/dist/cdn/components/moni-switch.js +169 -0
  54. package/dist/cdn/components/moni-tab.js +93 -0
  55. package/dist/cdn/components/moni-tabs.js +38 -0
  56. package/dist/cdn/components/moni-text-field.js +83 -0
  57. package/dist/cdn/components/moni-textarea.js +46 -0
  58. package/dist/cdn/components/moni-time-picker.js +496 -0
  59. package/dist/cdn/components/moni-toolbar.js +71 -0
  60. package/dist/cdn/components/moni-tooltip.js +161 -0
  61. package/dist/cdn/components/moni-typography.js +117 -0
  62. package/dist/cdn/importmap.json +102 -0
  63. package/dist/cdn/moni-ui.min.css +1 -0
  64. package/package.json +3 -1
@@ -0,0 +1,103 @@
1
+ import{c as e,d as t,i as n,m as r,o as i,r as a,s as o,t as s}from"../chunks/decorate-DxX3e27g.js";import{t as c}from"../chunks/query-SWT-tzvq.js";import"./moni-icon.js";import{t as l}from"../chunks/if-defined-CuEAJKpp.js";var u=class extends n{constructor(...e){super(...e),this.size=`medium`,this.color=`primary`,this.shape=`rounded`,this.extended=!1,this.expanded=!1,this.disabled=!1,this.icon=`add`,this.label=``,this.accessibleLabel=``,this.type=`button`,this.name=``,this.value=``,this.position=``}focus(e){this._button?.focus(e)}static{this.styles=[a,r`
2
+ :host {
3
+ --_size: 3.5rem;
4
+ --_radius: 1rem;
5
+ --_pressed-radius: 1.75rem;
6
+ --_icon-size: 1.5rem;
7
+ --_padding: 1rem;
8
+ --_container: var(--primary-container);
9
+ --_content: var(--on-primary-container);
10
+ display: inline-flex;
11
+ position: relative;
12
+ vertical-align: middle;
13
+ }
14
+ :host([size='small']) {
15
+ --_size: 2.5rem;
16
+ --_radius: .75rem;
17
+ --_pressed-radius: 1.25rem;
18
+ --_icon-size: 1.25rem;
19
+ --_padding: .75rem;
20
+ }
21
+ :host([size='large']) {
22
+ --_size: 6rem;
23
+ --_radius: 1.75rem;
24
+ --_pressed-radius: 3rem;
25
+ --_icon-size: 2.25rem;
26
+ --_padding: 1.875rem;
27
+ }
28
+ :host([color='secondary']) { --_container: var(--secondary-container); --_content: var(--on-secondary-container); }
29
+ :host([color='tertiary']) { --_container: var(--tertiary-container); --_content: var(--on-tertiary-container); }
30
+ :host([color='surface']) { --_container: var(--surface-container-high); --_content: var(--primary); }
31
+
32
+ :host([position='bottom-trailing']), :host([position='bottom-leading']),
33
+ :host([position='top-trailing']), :host([position='top-leading']) {
34
+ position: fixed;
35
+ z-index: 13;
36
+ }
37
+ :host([position='bottom-trailing']) { inset: auto max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) auto; }
38
+ :host([position='bottom-leading']) { inset: auto auto max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left)); }
39
+ :host([position='top-trailing']) { inset: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) auto auto; }
40
+ :host([position='top-leading']) { inset: max(1rem, env(safe-area-inset-top)) auto auto max(1rem, env(safe-area-inset-left)); }
41
+
42
+ button {
43
+ all: unset;
44
+ box-sizing: border-box;
45
+ isolation: isolate;
46
+ position: relative;
47
+ display: inline-flex;
48
+ align-items: center;
49
+ justify-content: center;
50
+ gap: .75rem;
51
+ block-size: var(--_size);
52
+ min-inline-size: var(--_size);
53
+ padding-inline: var(--_padding);
54
+ border-radius: var(--_radius);
55
+ background: var(--_container);
56
+ color: var(--_content);
57
+ box-shadow: var(--elevate2);
58
+ cursor: pointer;
59
+ font: 500 .875rem/1.25rem var(--font);
60
+ letter-spacing: .00625rem;
61
+ transition: border-radius 300ms cubic-bezier(.2,0,0,1), box-shadow 200ms ease, transform 200ms cubic-bezier(.2,0,0,1);
62
+ overflow: hidden;
63
+ }
64
+ button::before {
65
+ content: '';
66
+ position: absolute;
67
+ inset: 0;
68
+ z-index: -1;
69
+ background: currentColor;
70
+ opacity: 0;
71
+ transition: opacity 150ms ease;
72
+ }
73
+ button:hover::before { opacity: .08; }
74
+ button:focus-visible::before { opacity: .1; }
75
+ button:active::before { opacity: .12; }
76
+ button:hover { box-shadow: var(--elevate3); }
77
+ button:active { border-radius: var(--_pressed-radius); transform: scale(.96); box-shadow: var(--elevate1); }
78
+ button:focus-visible { outline: .1875rem solid var(--_content); outline-offset: .1875rem; }
79
+ button:disabled { opacity: .38; cursor: default; box-shadow: none; }
80
+ button:disabled::before { display: none; }
81
+
82
+ button.icon-only { inline-size: var(--_size); padding: 0; }
83
+ :host([shape='circle']) button { border-radius: 50%; }
84
+ :host([shape='circle']) button:active { border-radius: 35%; }
85
+ .icon { inline-size: var(--_icon-size); block-size: var(--_icon-size); flex: none; display: grid; place-items: center; }
86
+ moni-icon { --moni-icon-size: var(--_icon-size); font-size: var(--_icon-size); }
87
+ .label { white-space: nowrap; overflow: hidden; }
88
+ ::slotted(*) { color: inherit; }
89
+
90
+ @media (prefers-reduced-motion: reduce) { button { transition-duration: .01ms; } }
91
+ `]}render(){let n=!!this.label&&this.shape!==`circle`,r=this.accessibleLabel||this.label||this.icon||`Acción`;return t`<button
92
+ part="button fab"
93
+ class=${n?`extended`:`icon-only`}
94
+ type=${this.type}
95
+ name=${l(this.name||void 0)}
96
+ value=${l(this.value||void 0)}
97
+ aria-label=${r}
98
+ ?disabled=${this.disabled}
99
+ >
100
+ ${this.icon?t`<span class="icon" part="icon"><moni-icon name=${this.icon}></moni-icon></span>`:e}
101
+ ${n?t`<span class="label" part="label">${this.label}</span>`:e}
102
+ <slot></slot>
103
+ </button>`}};s([i({reflect:!0})],u.prototype,`size`,void 0),s([i({reflect:!0})],u.prototype,`color`,void 0),s([i({reflect:!0})],u.prototype,`shape`,void 0),s([i({type:Boolean,reflect:!0})],u.prototype,`extended`,void 0),s([i({type:Boolean,reflect:!0})],u.prototype,`expanded`,void 0),s([i({type:Boolean,reflect:!0})],u.prototype,`disabled`,void 0),s([i({reflect:!0})],u.prototype,`icon`,void 0),s([i({reflect:!0})],u.prototype,`label`,void 0),s([i({reflect:!0,attribute:`aria-label`})],u.prototype,`accessibleLabel`,void 0),s([i({reflect:!0})],u.prototype,`type`,void 0),s([i({reflect:!0})],u.prototype,`name`,void 0),s([i({reflect:!0})],u.prototype,`value`,void 0),s([i({reflect:!0})],u.prototype,`position`,void 0),s([c(`button`)],u.prototype,`_button`,void 0),u=s([o(`moni-fab`)],u);
@@ -0,0 +1,45 @@
1
+ import{c as e,d as t,i as n,m as r,n as i,o as a,r as o,s,t as c}from"../chunks/decorate-DxX3e27g.js";import{t as l}from"../chunks/query-SWT-tzvq.js";import"./moni-icon.js";import{t as u}from"../chunks/if-defined-CuEAJKpp.js";import{t as d}from"../chunks/class-map-DBljv-_e.js";var f=class extends n{constructor(...e){super(...e),this.name=``,this.label=``,this.variant=`outlined`,this.size=`medium`,this.shape=`no-round`,this.accept=``,this.multiple=!1,this.buttonLabel=`Choose file`,this.disabled=!1,this.helper=``,this.errorText=``,this.error=!1,this.value=``,this.icon=``,this.trailingIcon=`folder_open`}updated(e){this._fileInput&&e.has(`disabled`)&&(this._fileInput.disabled=this.disabled)}static{this.styles=[o,i,r`
2
+ input[type='file'] {
3
+ position: absolute;
4
+ inset: 0;
5
+ opacity: 0;
6
+ z-index: 2;
7
+ cursor: pointer;
8
+ }
9
+ input[type='text'] {
10
+ cursor: pointer;
11
+ }
12
+ `]}render(){let n=!!this.value,r=!!this.icon,i=!!this.trailingIcon,a={field:!0,label:!!this.label,fill:this.variant===`filled`,border:this.variant===`outlined`,small:this.size===`small`,large:this.size===`large`,extra:this.size===`extra`,prefix:r,suffix:i,invalid:this.error,round:this.shape===`round`,square:this.shape===`no-round`},o=this.icon?t`<i class="leading-icon" part="leading-icon"
13
+ ><moni-icon name="${this.icon}"></moni-icon
14
+ ></i>`:e,s=this.trailingIcon?t`<i class="trailing-icon" part="trailing-icon"
15
+ ><moni-icon name="${this.trailingIcon}"></moni-icon
16
+ ></i>`:e;return t`<div class=${d(a)} part="field">
17
+ ${o}
18
+ <input
19
+ type="text"
20
+ part="display"
21
+ readonly
22
+ placeholder=${this.buttonLabel}
23
+ .value=${this.value}
24
+ ?disabled=${this.disabled}
25
+ name=${u(this.name?`${this.name}-display`:void 0)}
26
+ class=${n?`active`:``}
27
+ />
28
+ ${this.label?t`<label
29
+ part="label"
30
+ class=${d({active:n})}
31
+ >${this.label}</label
32
+ >`:e}
33
+ <input
34
+ type="file"
35
+ part="file"
36
+ ?disabled=${this.disabled}
37
+ accept=${u(this.accept||void 0)}
38
+ ?multiple=${this.multiple}
39
+ name=${u(this.name||void 0)}
40
+ />
41
+ ${s}
42
+ ${this.error?t`<output part="helper" class="invalid"
43
+ >${this.errorText||this.helper}</output
44
+ >`:this.helper?t`<output part="helper">${this.helper}</output>`:e}
45
+ </div>`}};c([a({reflect:!0})],f.prototype,`name`,void 0),c([a({reflect:!0})],f.prototype,`label`,void 0),c([a({reflect:!0})],f.prototype,`variant`,void 0),c([a({reflect:!0})],f.prototype,`size`,void 0),c([a({reflect:!0})],f.prototype,`shape`,void 0),c([a({reflect:!0})],f.prototype,`accept`,void 0),c([a({type:Boolean,reflect:!0})],f.prototype,`multiple`,void 0),c([a({reflect:!0,attribute:`button-label`})],f.prototype,`buttonLabel`,void 0),c([a({type:Boolean,reflect:!0})],f.prototype,`disabled`,void 0),c([a({reflect:!0})],f.prototype,`helper`,void 0),c([a({reflect:!0,attribute:`error-text`})],f.prototype,`errorText`,void 0),c([a({type:Boolean,reflect:!0})],f.prototype,`error`,void 0),c([a({reflect:!0})],f.prototype,`value`,void 0),c([a({reflect:!0})],f.prototype,`icon`,void 0),c([a({reflect:!0,attribute:`trailing-icon`})],f.prototype,`trailingIcon`,void 0),c([l(`input[type="file"]`)],f.prototype,`_fileInput`,void 0),f=c([s(`moni-file-field`)],f);
@@ -0,0 +1,55 @@
1
+ import{d as e,i as t,m as n,o as r,r as i,s as a,t as o}from"../chunks/decorate-DxX3e27g.js";var s=class extends t{constructor(...e){super(...e),this.name=``,this.size=`medium`,this.filled=!1}static{this.styles=[i,n`
2
+ :host {
3
+ --_size: var(--moni-icon-size, 1.5rem);
4
+ display: inline-flex;
5
+ align-items: center;
6
+ justify-content: center;
7
+ vertical-align: middle;
8
+ font-family: var(--font-icon);
9
+ font-weight: normal;
10
+ font-style: normal;
11
+ font-size: var(--_size);
12
+ letter-spacing: normal;
13
+ text-transform: none;
14
+ white-space: nowrap;
15
+ word-wrap: normal;
16
+ direction: ltr;
17
+ font-feature-settings: 'liga';
18
+ font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
19
+ -webkit-font-smoothing: antialiased;
20
+ line-height: 1;
21
+ inline-size: var(--_size);
22
+ block-size: var(--_size);
23
+ /* Herencia explícita para que el glifo del icono tome el color de
24
+ cualquier consumidor que lo envuelva (variantes de botones, estado
25
+ seleccionado de chip, activo de list-item, etc.). */
26
+ color: inherit;
27
+ }
28
+
29
+ :host([size='tiny']) {
30
+ --_size: var(--moni-icon-size, 1rem);
31
+ }
32
+ :host([size='small']) {
33
+ --_size: var(--moni-icon-size, 1.25rem);
34
+ }
35
+ :host([size='medium']) {
36
+ --_size: var(--moni-icon-size, 1.5rem);
37
+ }
38
+ :host([size='large']) {
39
+ --_size: var(--moni-icon-size, 1.75rem);
40
+ }
41
+ :host([size='extra']) {
42
+ --_size: var(--moni-icon-size, 2rem);
43
+ }
44
+
45
+ :host([filled]) {
46
+ font-variation-settings: 'FILL' 1;
47
+ }
48
+
49
+ ::slotted(svg),
50
+ ::slotted(img) {
51
+ inline-size: 100%;
52
+ block-size: 100%;
53
+ object-fit: contain;
54
+ }
55
+ `]}render(){return e`<slot>${this.name}</slot>`}};o([r({reflect:!0})],s.prototype,`name`,void 0),o([r({reflect:!0})],s.prototype,`size`,void 0),o([r({type:Boolean,reflect:!0})],s.prototype,`filled`,void 0),s=o([a(`moni-icon`)],s);
@@ -0,0 +1,144 @@
1
+ import{c as e,d as t,i as n,m as r,o as i,r as a,s as o,t as s}from"../chunks/decorate-DxX3e27g.js";import"./moni-icon.js";var c=class extends n{constructor(...e){super(...e),this.lines=1,this.icon=``,this.avatar=``,this.trailingIcon=``,this.active=!1,this.disabled=!1,this.href=``}static{this.styles=[a,r`
2
+ :host {
3
+ display: block;
4
+ color: var(--on-surface);
5
+ background-color: transparent;
6
+ position: relative;
7
+ font-family: var(--font);
8
+ transition: background-color var(--speed2);
9
+ }
10
+
11
+ .row {
12
+ display: flex;
13
+ align-items: center;
14
+ gap: 1rem;
15
+ padding: 0.5rem 1rem;
16
+ min-block-size: 3.5rem;
17
+ box-sizing: border-box;
18
+ color: inherit;
19
+ text-decoration: none;
20
+ cursor: pointer;
21
+ width: 100%;
22
+ }
23
+
24
+ :host([active]) {
25
+ background-color: var(--secondary-container);
26
+ color: var(--on-secondary-container);
27
+ }
28
+
29
+ :host([disabled]) {
30
+ opacity: 0.38;
31
+ pointer-events: none;
32
+ cursor: not-allowed;
33
+ }
34
+
35
+ :host(:not(:last-child)) {
36
+ border-block-end: 0.0625rem solid var(--outline-variant);
37
+ }
38
+
39
+ :host([lines='2']) .row {
40
+ min-block-size: 4.5rem;
41
+ }
42
+ :host([lines='3']) .row {
43
+ min-block-size: 5.5rem;
44
+ }
45
+
46
+ .leading,
47
+ .trailing {
48
+ display: inline-flex;
49
+ align-items: center;
50
+ justify-content: center;
51
+ flex: none;
52
+ }
53
+
54
+ .leading-icon {
55
+ font-size: 1.5rem;
56
+ color: var(--on-surface-variant);
57
+ }
58
+ :host([active]) .leading-icon {
59
+ color: var(--on-secondary-container);
60
+ }
61
+
62
+ .avatar {
63
+ inline-size: 2.5rem;
64
+ block-size: 2.5rem;
65
+ border-radius: 50%;
66
+ background-color: var(--surface-container);
67
+ background-size: cover;
68
+ background-position: center;
69
+ }
70
+
71
+ .text {
72
+ flex: auto;
73
+ min-inline-size: 0;
74
+ display: flex;
75
+ flex-direction: column;
76
+ gap: 0.125rem;
77
+ }
78
+
79
+ .headline {
80
+ font-size: 1rem;
81
+ line-height: 1.5rem;
82
+ font-weight: 500;
83
+ color: inherit;
84
+ margin: 0;
85
+ padding: 0;
86
+ overflow: hidden;
87
+ text-overflow: ellipsis;
88
+ white-space: nowrap;
89
+ }
90
+
91
+ .supporting,
92
+ .meta {
93
+ font-size: 0.875rem;
94
+ line-height: 1.25rem;
95
+ font-weight: 400;
96
+ color: var(--on-surface-variant);
97
+ margin: 0;
98
+ padding: 0;
99
+ overflow: hidden;
100
+ text-overflow: ellipsis;
101
+ white-space: nowrap;
102
+ }
103
+ :host([active]) .supporting,
104
+ :host([active]) .meta {
105
+ color: var(--on-secondary-container);
106
+ }
107
+
108
+ .trailing-meta {
109
+ font-size: 0.75rem;
110
+ color: var(--on-surface-variant);
111
+ white-space: nowrap;
112
+ }
113
+
114
+ .trailing-icon {
115
+ font-size: 1.5rem;
116
+ color: var(--on-surface-variant);
117
+ }
118
+ :host([active]) .trailing-icon {
119
+ color: var(--on-secondary-container);
120
+ }
121
+ `]}render(){let n=this.avatar?t`<span
122
+ class="avatar"
123
+ part="avatar"
124
+ style="background-image: url('${this.avatar}');"
125
+ ></span>`:this.icon?t`<span class="leading leading-icon" part="leading">
126
+ <moni-icon name="${this.icon}"></moni-icon>
127
+ </span>`:t`<slot name="leading"></slot>`,r=this.trailingIcon?t`<span class="trailing trailing-icon" part="trailing">
128
+ <moni-icon name="${this.trailingIcon}"></moni-icon>
129
+ </span>`:t`<slot name="trailing"></slot>`,i=this.lines>=2?t`<span class="supporting" part="supporting"
130
+ ><slot name="supporting"></slot
131
+ ></span>`:e,a=this.lines>=3?t`<span class="meta" part="meta"><slot name="meta"></slot></span>`:e,o=t`
132
+ ${n}
133
+ <div class="text" part="text">
134
+ <span class="headline" part="headline"><slot></slot></span>
135
+ ${i} ${a}
136
+ </div>
137
+ ${r}
138
+ <slot name="trailing-meta"></slot>
139
+ `;return this.href?t`<a
140
+ class="row"
141
+ part="row"
142
+ href=${this.href}
143
+ >${o}</a
144
+ >`:t`<div class="row" part="row">${o}</div>`}};s([i({reflect:!0})],c.prototype,`lines`,void 0),s([i({reflect:!0})],c.prototype,`icon`,void 0),s([i({reflect:!0})],c.prototype,`avatar`,void 0),s([i({reflect:!0,attribute:`trailing-icon`})],c.prototype,`trailingIcon`,void 0),s([i({type:Boolean,reflect:!0})],c.prototype,`active`,void 0),s([i({type:Boolean,reflect:!0})],c.prototype,`disabled`,void 0),s([i({reflect:!0})],c.prototype,`href`,void 0),c=s([o(`moni-list-item`)],c);
@@ -0,0 +1,16 @@
1
+ import{d as e,i as t,m as n,o as r,r as i,s as a,t as o}from"../chunks/decorate-DxX3e27g.js";import{t as s}from"../chunks/event-emitter-CGhsijUg.js";var c=class extends t{constructor(...e){super(...e),this.variant=``,this.rounded=!1}static{this.styles=[i,n`
2
+ :host {
3
+ display: block;
4
+ font-family: var(--font);
5
+ color: var(--on-surface);
6
+ padding: 0;
7
+ margin: 0;
8
+ }
9
+ :host([variant='border']) {
10
+ border-block-end: 0.0625rem solid var(--outline-variant);
11
+ }
12
+
13
+ ::slotted(moni-list-item) {
14
+ display: block;
15
+ }
16
+ `]}_handleSlotChange(e){let t=e.target.assignedNodes({flatten:!0}).filter(e=>e.nodeType===Node.ELEMENT_NODE);s(this,`moni-slot-items-changed`,{detail:{nodes:t}})}render(){return e`<slot @slotchange=${this._handleSlotChange}></slot>`}};o([r({reflect:!0})],c.prototype,`variant`,void 0),o([r({type:Boolean,reflect:!0})],c.prototype,`rounded`,void 0),c=o([a(`moni-list`)],c);
@@ -0,0 +1,134 @@
1
+ import{d as e,h as t,i as n,m as r,o as i,r as a,s as o,t as s}from"../chunks/decorate-DxX3e27g.js";import{t as c}from"../chunks/query-SWT-tzvq.js";var l={"4-sided-cookie":`63.83% 2.22%, 65.10% 1.70%, 66.36% 1.26%, 67.62% 0.89%, 68.88% 0.58%, 70.14% 0.34%, 71.39% 0.16%, 72.63% 0.05%, 73.86% 0.00%, 75.08% 0.01%, 76.28% 0.08%, 77.48% 0.21%, 78.66% 0.40%, 79.82% 0.63%, 80.97% 0.93%, 82.09% 1.27%, 83.20% 1.67%, 84.28% 2.11%, 85.34% 2.60%, 86.37% 3.14%, 87.38% 3.72%, 88.36% 4.35%, 89.31% 5.02%, 90.23% 5.73%, 91.12% 6.48%, 91.98% 7.26%, 92.80% 8.09%, 93.58% 8.94%, 94.32% 9.83%, 95.03% 10.76%, 95.70% 11.71%, 96.32% 12.69%, 96.90% 13.70%, 97.43% 14.74%, 97.92% 15.80%, 98.36% 16.88%, 98.76% 17.99%, 99.10% 19.12%, 99.38% 20.26%, 99.62% 21.43%, 99.80% 22.61%, 99.92% 23.80%, 99.99% 25.01%, 100.00% 26.23%, 99.94% 27.47%, 99.83% 28.71%, 99.65% 29.95%, 99.40% 31.21%, 99.09% 32.47%, 98.71% 33.73%, 98.26% 35.00%, 97.75% 36.25%, 97.26% 37.36%, 96.78% 38.47%, 96.30% 39.59%, 95.83% 40.72%, 95.42% 41.87%, 95.06% 43.03%, 94.76% 44.21%, 94.52% 45.40%, 94.33% 46.59%, 94.20% 47.79%, 94.12% 48.99%, 94.11% 50.19%, 94.14% 51.40%, 94.24% 52.60%, 94.39% 53.80%, 94.59% 54.99%, 94.85% 56.17%, 95.17% 57.34%, 95.55% 58.50%, 95.98% 59.65%, 96.45% 60.77%, 96.94% 61.89%, 97.42% 63.00%, 97.92% 64.15%, 98.41% 65.41%, 98.84% 66.68%, 99.20% 67.94%, 99.49% 69.20%, 99.71% 70.45%, 99.87% 71.70%, 99.97% 72.93%, 100.00% 74.16%, 99.97% 75.38%, 99.89% 76.58%, 99.75% 77.78%, 99.55% 78.95%, 99.30% 80.11%, 98.99% 81.25%, 98.63% 82.37%, 98.23% 83.47%, 97.77% 84.55%, 97.27% 85.60%, 96.72% 86.63%, 96.12% 87.63%, 95.49% 88.60%, 94.81% 89.55%, 94.09% 90.46%, 93.33% 91.34%, 92.54% 92.19%, 91.70% 93.00%, 90.84% 93.77%, 89.94% 94.51%, 89.01% 95.20%, 88.05% 95.86%, 87.06% 96.47%, 86.04% 97.04%, 85.00% 97.56%, 83.93% 98.04%, 82.84% 98.47%, 81.73% 98.85%, 80.60% 99.17%, 79.45% 99.45%, 78.28% 99.67%, 77.09% 99.84%, 75.89% 99.95%, 74.68% 100.00%, 73.46% 99.99%, 72.23% 99.92%, 70.98% 99.79%, 69.73% 99.59%, 68.48% 99.33%, 67.22% 99.00%, 65.95% 98.60%, 64.69% 98.14%, 63.47% 97.63%, 62.36% 97.14%, 61.25% 96.66%, 60.13% 96.18%, 58.99% 95.72%, 57.84% 95.32%, 56.67% 94.98%, 55.49% 94.70%, 54.31% 94.47%, 53.11% 94.29%, 51.91% 94.18%, 50.71% 94.11%, 49.50% 94.11%, 48.30% 94.16%, 47.10% 94.27%, 45.90% 94.43%, 44.71% 94.65%, 43.53% 94.93%, 42.36% 95.26%, 41.21% 95.65%, 40.07% 96.09%, 38.95% 96.58%, 37.84% 97.06%, 36.72% 97.54%, 35.54% 98.05%, 34.27% 98.53%, 33.01% 98.94%, 31.74% 99.28%, 30.49% 99.55%, 29.24% 99.76%, 27.99% 99.90%, 26.76% 99.98%, 25.53% 100.00%, 24.32% 99.96%, 23.12% 99.86%, 21.93% 99.70%, 20.76% 99.49%, 19.60% 99.23%, 18.47% 98.91%, 17.35% 98.54%, 16.26% 98.12%, 15.19% 97.65%, 14.14% 97.13%, 13.12% 96.57%, 12.12% 95.97%, 11.16% 95.32%, 10.22% 94.63%, 9.32% 93.90%, 8.45% 93.14%, 7.61% 92.33%, 6.81% 91.49%, 6.04% 90.62%, 5.32% 89.71%, 4.63% 88.77%, 3.99% 87.80%, 3.38% 86.81%, 2.83% 85.78%, 2.31% 84.74%, 1.85% 83.66%, 1.43% 82.57%, 1.07% 81.45%, 0.75% 80.31%, 0.49% 79.16%, 0.28% 77.98%, 0.13% 76.80%, 0.04% 75.59%, 0.00% 74.38%, 0.02% 73.15%, 0.11% 71.92%, 0.26% 70.67%, 0.47% 69.42%, 0.75% 68.16%, 1.09% 66.90%, 1.51% 65.64%, 1.99% 64.37%, 2.49% 63.19%, 2.98% 62.08%, 3.46% 60.97%, 3.94% 59.85%, 4.38% 58.71%, 4.77% 57.55%, 5.09% 56.38%, 5.37% 55.20%, 5.58% 54.01%, 5.74% 52.81%, 5.84% 51.61%, 5.89% 50.41%, 5.88% 49.20%, 5.82% 48.00%, 5.70% 46.80%, 5.52% 45.61%, 5.28% 44.42%, 4.99% 43.24%, 4.65% 42.07%, 4.25% 40.92%, 3.79% 39.78%, 3.30% 38.67%, 2.82% 37.56%, 2.34% 36.45%, 1.82% 35.22%, 1.36% 33.95%, 0.97% 32.69%, 0.65% 31.43%, 0.39% 30.18%, 0.20% 28.93%, 0.07% 27.68%, 0.01% 26.45%, 0.01% 25.23%, 0.06% 24.02%, 0.17% 22.82%, 0.34% 21.64%, 0.57% 20.47%, 0.85% 19.32%, 1.18% 18.19%, 1.56% 17.08%, 2.00% 15.99%, 2.48% 14.92%, 3.00% 13.88%, 3.57% 12.87%, 4.19% 11.88%, 4.85% 10.92%, 5.55% 9.99%, 6.29% 9.10%, 7.06% 8.23%, 7.88% 7.41%, 8.72% 6.61%, 9.61% 5.86%, 10.52% 5.14%, 11.47% 4.47%, 12.44% 3.83%, 13.45% 3.24%, 14.48% 2.69%, 15.53% 2.19%, 16.61% 1.74%, 17.71% 1.34%, 18.83% 0.98%, 19.98% 0.68%, 21.14% 0.43%, 22.31% 0.24%, 23.50% 0.10%, 24.71% 0.02%, 25.93% 0.00%, 27.16% 0.04%, 28.39% 0.14%, 29.64% 0.30%, 30.89% 0.53%, 32.15% 0.83%, 33.41% 1.19%, 34.68% 1.62%, 35.94% 2.12%, 37.08% 2.61%, 38.20% 3.10%, 39.31% 3.58%, 40.43% 4.06%, 41.58% 4.48%, 42.74% 4.85%, 43.91% 5.17%, 45.10% 5.43%, 46.29% 5.63%, 47.49% 5.77%, 48.69% 5.86%, 49.89% 5.90%, 51.10% 5.87%, 52.30% 5.79%, 53.50% 5.66%, 54.69% 5.47%, 55.88% 5.22%, 57.05% 4.91%, 58.21% 4.55%, 59.36% 4.14%, 60.49% 3.67%, 61.61% 3.18%, 62.72% 2.70%, 63.83% 2.22%`,"9-sided-cookie":`61.39% 5.18%, 62.25% 5.81%, 63.15% 6.37%, 64.08% 6.88%, 65.04% 7.33%, 66.03% 7.71%, 67.04% 8.02%, 68.07% 8.27%, 69.11% 8.45%, 70.17% 8.57%, 71.18% 8.61%, 72.43% 8.63%, 73.38% 8.68%, 74.46% 8.80%, 75.52% 9.00%, 76.56% 9.26%, 77.57% 9.59%, 78.55% 9.98%, 79.50% 10.44%, 80.42% 10.95%, 81.30% 11.52%, 82.14% 12.14%, 82.93% 12.81%, 83.69% 13.54%, 84.39% 14.31%, 85.05% 15.13%, 85.65% 15.99%, 86.20% 16.89%, 86.69% 17.84%, 87.12% 18.81%, 87.49% 19.83%, 87.79% 20.87%, 87.99% 21.78%, 88.22% 23.01%, 88.46% 24.01%, 88.76% 25.02%, 89.14% 26.02%, 89.57% 26.98%, 90.07% 27.91%, 90.63% 28.81%, 91.24% 29.67%, 91.91% 30.49%, 92.64% 31.27%, 93.40% 31.98%, 94.34% 32.79%, 95.02% 33.41%, 95.78% 34.19%, 96.48% 35.02%, 97.12% 35.88%, 97.70% 36.77%, 98.21% 37.69%, 98.66% 38.65%, 99.05% 39.62%, 99.37% 40.62%, 99.63% 41.63%, 99.82% 42.66%, 99.94% 43.70%, 100.00% 44.74%, 99.99% 45.79%, 99.91% 46.84%, 99.76% 47.88%, 99.54% 48.92%, 99.26% 49.95%, 98.90% 50.97%, 98.47% 51.97%, 98.04% 52.81%, 97.43% 53.91%, 96.96% 54.80%, 96.53% 55.77%, 96.16% 56.77%, 95.86% 57.78%, 95.63% 58.81%, 95.46% 59.86%, 95.36% 60.91%, 95.34% 61.97%, 95.38% 63.03%, 95.49% 64.09%, 95.68% 65.27%, 95.82% 66.19%, 95.91% 67.28%, 95.93% 68.36%, 95.88% 69.43%, 95.76% 70.49%, 95.57% 71.53%, 95.32% 72.55%, 95.00% 73.55%, 94.61% 74.53%, 94.17% 75.47%, 93.66% 76.39%, 93.10% 77.27%, 92.48% 78.11%, 91.81% 78.92%, 91.09% 79.68%, 90.31% 80.39%, 89.48% 81.06%, 88.61% 81.68%, 87.69% 82.23%, 86.73% 82.74%, 85.81% 83.14%, 84.74% 83.55%, 83.75% 83.94%, 82.78% 84.40%, 81.85% 84.91%, 80.96% 85.49%, 80.11% 86.11%, 79.30% 86.80%, 78.54% 87.53%, 77.83% 88.31%, 77.17% 89.14%, 76.56% 90.02%, 75.97% 90.98%, 75.43% 91.87%, 74.84% 92.73%, 74.17% 93.59%, 73.45% 94.38%, 72.69% 95.13%, 71.89% 95.82%, 71.04% 96.45%, 70.16% 97.02%, 69.25% 97.53%, 68.30% 97.99%, 67.34% 98.38%, 66.34% 98.71%, 65.33% 98.97%, 64.30% 99.17%, 63.26% 99.30%, 62.21% 99.37%, 61.15% 99.37%, 60.08% 99.29%, 59.02% 99.15%, 57.96% 98.93%, 56.92% 98.65%, 55.99% 98.34%, 54.89% 97.96%, 53.86% 97.67%, 52.82% 97.46%, 51.77% 97.31%, 50.72% 97.23%, 49.66% 97.21%, 48.61% 97.27%, 47.55% 97.39%, 46.51% 97.59%, 45.48% 97.85%, 44.51% 98.16%, 43.35% 98.56%, 42.42% 98.84%, 41.36% 99.08%, 40.30% 99.25%, 39.24% 99.35%, 38.18% 99.38%, 37.12% 99.34%, 36.07% 99.23%, 35.04% 99.05%, 34.02% 98.81%, 33.02% 98.50%, 32.04% 98.13%, 31.09% 97.70%, 30.17% 97.21%, 29.27% 96.66%, 28.42% 96.05%, 27.60% 95.38%, 26.82% 94.66%, 26.08% 93.88%, 25.40% 93.04%, 24.76% 92.16%, 24.27% 91.38%, 23.64% 90.33%, 23.06% 89.45%, 22.42% 88.60%, 21.72% 87.80%, 20.98% 87.05%, 20.19% 86.35%, 19.35% 85.70%, 18.47% 85.11%, 17.56% 84.58%, 16.60% 84.10%, 15.67% 83.70%, 14.49% 83.26%, 13.63% 82.90%, 12.65% 82.42%, 11.72% 81.88%, 10.83% 81.29%, 9.98% 80.64%, 9.19% 79.94%, 8.45% 79.20%, 7.75% 78.41%, 7.12% 77.58%, 6.53% 76.71%, 6.01% 75.81%, 5.54% 74.87%, 5.14% 73.91%, 4.80% 72.92%, 4.52% 71.90%, 4.30% 70.87%, 4.16% 69.82%, 4.08% 68.75%, 4.08% 67.67%, 4.15% 66.59%, 4.26% 65.66%, 4.47% 64.41%, 4.59% 63.41%, 4.66% 62.35%, 4.66% 61.29%, 4.59% 60.23%, 4.44% 59.18%, 4.24% 58.15%, 3.96% 57.13%, 3.62% 56.12%, 3.21% 55.14%, 2.73% 54.19%, 2.14% 53.14%, 1.71% 52.32%, 1.25% 51.33%, 0.87% 50.32%, 0.55% 49.29%, 0.31% 48.25%, 0.14% 47.21%, 0.04% 46.16%, 0.00% 45.11%, 0.03% 44.07%, 0.13% 43.03%, 0.30% 42.00%, 0.53% 40.98%, 0.83% 39.98%, 1.19% 38.99%, 1.62% 38.03%, 2.11% 37.10%, 2.67% 36.19%, 3.28% 35.32%, 3.96% 34.48%, 4.70% 33.69%, 5.41% 33.02%, 6.33% 32.22%, 7.09% 31.54%, 7.84% 30.78%, 8.53% 29.97%, 9.16% 29.12%, 9.74% 28.24%, 10.26% 27.32%, 10.72% 26.37%, 11.11% 25.38%, 11.45% 24.37%, 11.71% 23.34%, 11.94% 22.20%, 12.13% 21.24%, 12.40% 20.20%, 12.75% 19.17%, 13.15% 18.18%, 13.62% 17.23%, 14.15% 16.31%, 14.73% 15.43%, 15.37% 14.60%, 16.06% 13.81%, 16.80% 13.07%, 17.58% 12.37%, 18.40% 11.73%, 19.27% 11.14%, 20.17% 10.61%, 21.11% 10.14%, 22.08% 9.72%, 23.08% 9.37%, 24.11% 9.09%, 25.16% 8.87%, 26.24% 8.72%, 27.27% 8.64%, 28.33% 8.62%, 29.45% 8.59%, 30.51% 8.50%, 31.56% 8.34%, 32.60% 8.12%, 33.62% 7.83%, 34.61% 7.47%, 35.58% 7.05%, 36.52% 6.56%, 37.43% 6.02%, 38.31% 5.41%, 39.15% 4.75%, 39.15% 4.75%, 40.04% 4.03%, 40.85% 3.44%, 41.76% 2.86%, 42.71% 2.35%, 43.68% 1.90%, 44.67% 1.52%, 45.68% 1.21%, 46.70% 0.96%, 47.73% 0.78%, 48.77% 0.67%, 49.81% 0.62%, 50.86% 0.65%, 51.90% 0.73%, 52.94% 0.89%, 53.96% 1.11%, 54.98% 1.40%, 55.97% 1.76%, 56.95% 2.18%, 57.90% 2.67%, 58.83% 3.23%, 59.73% 3.85%, 60.46% 4.43%`,oval:`72.29% 0.03%, 73.21% 0.08%, 74.12% 0.15%, 75.02% 0.24%, 75.92% 0.35%, 76.80% 0.49%, 77.67% 0.64%, 78.54% 0.82%, 79.39% 1.02%, 80.23% 1.24%, 81.06% 1.49%, 81.87% 1.75%, 82.68% 2.04%, 83.47% 2.35%, 84.25% 2.68%, 85.01% 3.04%, 85.76% 3.42%, 86.50% 3.82%, 87.23% 4.24%, 87.93% 4.69%, 88.63% 5.15%, 89.31% 5.65%, 89.97% 6.16%, 90.62% 6.70%, 91.25% 7.26%, 91.86% 7.84%, 92.45% 8.45%, 93.03% 9.07%, 93.57% 9.71%, 94.10% 10.36%, 94.60% 11.03%, 95.08% 11.72%, 95.54% 12.42%, 95.97% 13.13%, 96.39% 13.86%, 96.77% 14.61%, 97.14% 15.37%, 97.48% 16.14%, 97.81% 16.93%, 98.11% 17.72%, 98.38% 18.53%, 98.64% 19.36%, 98.87% 20.19%, 99.08% 21.04%, 99.27% 21.89%, 99.44% 22.76%, 99.58% 23.64%, 99.71% 24.53%, 99.81% 25.43%, 99.89% 26.33%, 99.95% 27.25%, 99.98% 28.18%, 100.00% 29.11%, 99.99% 30.05%, 99.97% 31.00%, 99.92% 31.96%, 99.85% 32.92%, 99.76% 33.89%, 99.65% 34.87%, 99.52% 35.85%, 99.37% 36.84%, 99.20% 37.83%, 99.00% 38.83%, 98.79% 39.84%, 98.55% 40.84%, 98.30% 41.86%, 98.02% 42.87%, 97.73% 43.89%, 97.41% 44.91%, 97.08% 45.93%, 96.72% 46.96%, 96.35% 47.99%, 95.95% 49.02%, 95.53% 50.05%, 95.10% 51.08%, 94.65% 52.11%, 94.17% 53.15%, 93.68% 54.18%, 93.16% 55.21%, 92.63% 56.24%, 92.08% 57.27%, 91.51% 58.30%, 90.92% 59.33%, 90.31% 60.35%, 89.68% 61.37%, 89.03% 62.39%, 88.37% 63.41%, 87.68% 64.42%, 86.98% 65.43%, 86.26% 66.43%, 85.52% 67.43%, 84.76% 68.43%, 83.98% 69.42%, 83.18% 70.40%, 82.37% 71.38%, 81.54% 72.35%, 80.69% 73.32%, 79.82% 74.27%, 78.93% 75.22%, 78.03% 76.17%, 77.10% 77.10%, 77.10% 77.10%, 76.17% 78.03%, 75.22% 78.93%, 74.27% 79.82%, 73.32% 80.69%, 72.35% 81.54%, 71.38% 82.37%, 70.40% 83.18%, 69.42% 83.98%, 68.43% 84.76%, 67.43% 85.52%, 66.43% 86.26%, 65.43% 86.98%, 64.42% 87.68%, 63.41% 88.37%, 62.39% 89.03%, 61.37% 89.68%, 60.35% 90.31%, 59.33% 90.92%, 58.30% 91.51%, 57.27% 92.08%, 56.24% 92.63%, 55.21% 93.16%, 54.18% 93.68%, 53.15% 94.17%, 52.11% 94.65%, 51.08% 95.10%, 50.05% 95.53%, 49.02% 95.95%, 47.99% 96.35%, 46.96% 96.72%, 45.93% 97.08%, 44.91% 97.41%, 43.89% 97.73%, 42.87% 98.02%, 41.86% 98.30%, 40.84% 98.55%, 39.84% 98.79%, 38.83% 99.00%, 37.83% 99.20%, 36.84% 99.37%, 35.85% 99.52%, 34.87% 99.65%, 33.89% 99.76%, 32.92% 99.85%, 31.96% 99.92%, 31.00% 99.97%, 30.05% 99.99%, 29.11% 100.00%, 28.18% 99.98%, 27.25% 99.95%, 26.33% 99.89%, 25.43% 99.81%, 24.53% 99.71%, 23.64% 99.58%, 22.76% 99.44%, 21.89% 99.27%, 21.04% 99.08%, 20.19% 98.87%, 19.36% 98.64%, 18.53% 98.38%, 17.72% 98.11%, 16.93% 97.81%, 16.14% 97.48%, 15.37% 97.14%, 14.61% 96.77%, 13.86% 96.39%, 13.13% 95.97%, 12.42% 95.54%, 11.72% 95.08%, 11.03% 94.60%, 10.36% 94.10%, 9.71% 93.57%, 9.07% 93.03%, 8.45% 92.45%, 7.84% 91.86%, 7.26% 91.25%, 6.70% 90.62%, 6.16% 89.97%, 5.65% 89.31%, 5.15% 88.63%, 4.69% 87.93%, 4.24% 87.23%, 3.82% 86.50%, 3.42% 85.76%, 3.04% 85.01%, 2.68% 84.25%, 2.35% 83.47%, 2.04% 82.68%, 1.75% 81.87%, 1.49% 81.06%, 1.24% 80.23%, 1.02% 79.39%, 0.82% 78.54%, 0.64% 77.67%, 0.49% 76.80%, 0.35% 75.92%, 0.24% 75.02%, 0.15% 74.12%, 0.08% 73.21%, 0.03% 72.29%, 0.01% 71.36%, 0.00% 70.42%, 0.02% 69.47%, 0.05% 68.52%, 0.11% 67.56%, 0.19% 66.59%, 0.29% 65.62%, 0.41% 64.64%, 0.55% 63.65%, 0.72% 62.66%, 0.90% 61.67%, 1.10% 60.67%, 1.33% 59.66%, 1.57% 58.65%, 1.84% 57.64%, 2.12% 56.62%, 2.43% 55.60%, 2.75% 54.58%, 3.10% 53.55%, 3.46% 52.53%, 3.85% 51.50%, 4.25% 50.47%, 4.68% 49.43%, 5.12% 48.40%, 5.59% 47.37%, 6.07% 46.34%, 6.58% 45.31%, 7.10% 44.27%, 7.64% 43.24%, 8.20% 42.21%, 8.78% 41.19%, 9.38% 40.16%, 10.00% 39.14%, 10.64% 38.12%, 11.30% 37.10%, 11.97% 36.09%, 12.67% 35.07%, 13.38% 34.07%, 14.11% 33.07%, 14.86% 32.07%, 15.63% 31.08%, 16.42% 30.09%, 17.22% 29.11%, 18.05% 28.13%, 18.89% 27.17%, 19.75% 26.20%, 20.62% 25.25%, 21.52% 24.30%, 22.43% 23.36%, 23.36% 22.43%, 24.30% 21.52%, 25.25% 20.62%, 26.20% 19.75%, 27.17% 18.89%, 28.13% 18.05%, 29.11% 17.22%, 30.09% 16.42%, 31.08% 15.63%, 32.07% 14.86%, 33.07% 14.11%, 34.07% 13.38%, 35.07% 12.67%, 36.09% 11.97%, 37.10% 11.30%, 38.12% 10.64%, 39.14% 10.00%, 40.16% 9.38%, 41.19% 8.78%, 42.21% 8.20%, 43.24% 7.64%, 44.27% 7.10%, 45.31% 6.58%, 46.34% 6.07%, 47.37% 5.59%, 48.40% 5.12%, 49.43% 4.68%, 50.47% 4.25%, 51.50% 3.85%, 52.53% 3.46%, 53.55% 3.10%, 54.58% 2.75%, 55.60% 2.43%, 56.62% 2.12%, 57.64% 1.84%, 58.65% 1.57%, 59.66% 1.33%, 60.67% 1.10%, 61.67% 0.90%, 62.66% 0.72%, 63.65% 0.55%, 64.64% 0.41%, 65.62% 0.29%, 66.59% 0.19%, 67.56% 0.11%, 68.52% 0.05%, 69.47% 0.02%, 70.42% 0.00%, 71.36% 0.01%`,pentagon:`61.18% 5.13%, 62.02% 5.74%, 62.86% 6.35%, 63.70% 6.96%, 64.54% 7.58%, 65.38% 8.19%, 66.22% 8.80%, 67.07% 9.41%, 67.91% 10.02%, 68.75% 10.63%, 69.59% 11.24%, 70.43% 11.85%, 71.27% 12.47%, 72.11% 13.08%, 72.96% 13.69%, 73.80% 14.30%, 74.64% 14.91%, 75.48% 15.52%, 76.32% 16.13%, 77.16% 16.74%, 78.00% 17.36%, 78.85% 17.97%, 79.69% 18.58%, 80.53% 19.19%, 81.37% 19.80%, 82.21% 20.41%, 83.05% 21.02%, 83.89% 21.64%, 84.74% 22.25%, 85.58% 22.86%, 86.42% 23.47%, 87.26% 24.08%, 88.10% 24.69%, 88.94% 25.30%, 89.78% 25.91%, 90.62% 26.53%, 91.47% 27.14%, 92.31% 27.75%, 93.15% 28.41%, 93.95% 29.12%, 94.70% 29.85%, 95.40% 30.63%, 96.05% 31.44%, 96.66% 32.27%, 97.22% 33.14%, 97.73% 34.03%, 98.19% 34.95%, 98.60% 35.89%, 98.96% 36.85%, 99.27% 37.83%, 99.52% 38.82%, 99.72% 39.83%, 99.87% 40.84%, 99.96% 41.87%, 100.00% 42.90%, 99.98% 43.94%, 99.90% 44.98%, 99.77% 46.02%, 99.58% 47.05%, 99.32% 48.09%, 99.01% 49.11%, 98.69% 50.09%, 98.37% 51.08%, 98.05% 52.07%, 97.73% 53.06%, 97.41% 54.05%, 97.09% 55.04%, 96.76% 56.03%, 96.44% 57.02%, 96.12% 58.01%, 95.80% 59.00%, 95.48% 59.99%, 95.16% 60.97%, 94.84% 61.96%, 94.51% 62.95%, 94.19% 63.94%, 93.87% 64.93%, 93.55% 65.92%, 93.23% 66.91%, 92.91% 67.90%, 92.59% 68.89%, 92.26% 69.88%, 91.94% 70.87%, 91.62% 71.85%, 91.30% 72.84%, 90.98% 73.83%, 90.66% 74.82%, 90.34% 75.81%, 90.02% 76.80%, 89.69% 77.79%, 89.37% 78.78%, 89.05% 79.77%, 88.73% 80.76%, 88.41% 81.75%, 88.09% 82.73%, 87.77% 83.72%, 87.44% 84.71%, 87.11% 85.71%, 86.73% 86.71%, 86.30% 87.68%, 85.82% 88.61%, 85.29% 89.51%, 84.72% 90.38%, 84.10% 91.21%, 83.44% 92.00%, 82.74% 92.75%, 82.01% 93.47%, 81.23% 94.14%, 80.42% 94.77%, 79.58% 95.35%, 78.71% 95.89%, 77.81% 96.39%, 76.88% 96.83%, 75.93% 97.22%, 74.96% 97.57%, 73.96% 97.86%, 72.94% 98.10%, 71.91% 98.28%, 70.86% 98.40%, 69.80% 98.47%, 68.74% 98.48%, 67.70% 98.48%, 66.66% 98.48%, 65.62% 98.48%, 64.58% 98.48%, 63.54% 98.48%, 62.50% 98.48%, 61.46% 98.48%, 60.42% 98.48%, 59.38% 98.48%, 58.34% 98.48%, 57.30% 98.48%, 56.26% 98.48%, 55.22% 98.48%, 54.18% 98.48%, 53.14% 98.48%, 52.10% 98.48%, 51.06% 98.48%, 50.02% 98.48%, 48.98% 98.48%, 47.94% 98.48%, 46.90% 98.48%, 45.86% 98.48%, 44.82% 98.48%, 43.78% 98.48%, 42.74% 98.48%, 41.70% 98.48%, 40.66% 98.48%, 39.62% 98.48%, 38.58% 98.48%, 37.54% 98.48%, 36.50% 98.48%, 35.46% 98.48%, 34.42% 98.48%, 33.38% 98.48%, 32.34% 98.48%, 31.30% 98.48%, 30.24% 98.47%, 29.18% 98.41%, 28.13% 98.28%, 27.09% 98.10%, 26.08% 97.87%, 25.08% 97.58%, 24.11% 97.24%, 23.15% 96.85%, 22.22% 96.40%, 21.32% 95.91%, 20.45% 95.37%, 19.61% 94.79%, 18.80% 94.16%, 18.02% 93.49%, 17.28% 92.78%, 16.58% 92.03%, 15.92% 91.24%, 15.30% 90.41%, 14.73% 89.54%, 14.20% 88.64%, 13.71% 87.71%, 13.28% 86.75%, 12.90% 85.75%, 12.57% 84.75%, 12.25% 83.76%, 11.93% 82.77%, 11.60% 81.78%, 11.28% 80.79%, 10.96% 79.80%, 10.64% 78.82%, 10.32% 77.83%, 10.00% 76.84%, 9.68% 75.85%, 9.35% 74.86%, 9.03% 73.87%, 8.71% 72.88%, 8.39% 71.89%, 8.07% 70.90%, 7.75% 69.91%, 7.43% 68.92%, 7.10% 67.94%, 6.78% 66.95%, 6.46% 65.96%, 6.14% 64.97%, 5.82% 63.98%, 5.50% 62.99%, 5.18% 62.00%, 4.86% 61.01%, 4.53% 60.02%, 4.21% 59.03%, 3.89% 58.04%, 3.57% 57.06%, 3.25% 56.07%, 2.93% 55.08%, 2.61% 54.09%, 2.28% 53.10%, 1.96% 52.11%, 1.64% 51.12%, 1.32% 50.13%, 1.00% 49.14%, 0.69% 48.12%, 0.43% 47.09%, 0.24% 46.06%, 0.10% 45.02%, 0.02% 43.98%, 0.00% 42.94%, 0.03% 41.91%, 0.12% 40.88%, 0.27% 39.86%, 0.47% 38.86%, 0.72% 37.86%, 1.03% 36.89%, 1.38% 35.93%, 1.79% 34.99%, 2.25% 34.07%, 2.76% 33.17%, 3.32% 32.31%, 3.92% 31.47%, 4.58% 30.66%, 5.28% 29.88%, 6.03% 29.14%, 6.82% 28.44%, 7.66% 27.78%, 8.50% 27.16%, 9.34% 26.55%, 10.19% 25.94%, 11.03% 25.33%, 11.87% 24.71%, 12.71% 24.10%, 13.55% 23.49%, 14.39% 22.88%, 15.23% 22.27%, 16.08% 21.66%, 16.92% 21.05%, 17.76% 20.44%, 18.60% 19.82%, 19.44% 19.21%, 20.28% 18.60%, 21.12% 17.99%, 21.96% 17.38%, 22.81% 16.77%, 23.65% 16.16%, 24.49% 15.55%, 25.33% 14.93%, 26.17% 14.32%, 27.01% 13.71%, 27.85% 13.10%, 28.70% 12.49%, 29.54% 11.88%, 30.38% 11.27%, 31.22% 10.65%, 32.06% 10.04%, 32.90% 9.43%, 33.74% 8.82%, 34.59% 8.21%, 35.43% 7.60%, 36.27% 6.99%, 37.11% 6.38%, 37.95% 5.76%, 38.79% 5.15%, 38.79% 5.15%, 39.68% 4.55%, 40.58% 4.00%, 41.51% 3.50%, 42.46% 3.06%, 43.43% 2.68%, 44.41% 2.35%, 45.41% 2.07%, 46.41% 1.85%, 47.43% 1.69%, 48.45% 1.57%, 49.47% 1.52%, 50.49% 1.52%, 51.52% 1.57%, 52.54% 1.68%, 53.55% 1.84%, 54.56% 2.06%, 55.55% 2.34%, 56.53% 2.66%, 57.50% 3.05%, 58.45% 3.49%, 59.38% 3.98%, 60.29% 4.53%`,pill:`64.49% 0.65%, 65.49% 0.84%, 66.48% 1.05%, 67.48% 1.28%, 68.46% 1.54%, 69.44% 1.83%, 70.42% 2.13%, 71.39% 2.46%, 72.35% 2.81%, 73.30% 3.19%, 74.25% 3.59%, 75.19% 4.02%, 76.12% 4.47%, 77.05% 4.94%, 77.96% 5.43%, 78.87% 5.95%, 79.76% 6.50%, 80.64% 7.06%, 81.52% 7.66%, 82.38% 8.27%, 83.23% 8.91%, 84.06% 9.57%, 84.89% 10.26%, 85.70% 10.96%, 86.49% 11.70%, 87.28% 12.45%, 88.04% 13.23%, 88.78% 14.02%, 89.50% 14.83%, 90.19% 15.65%, 90.86% 16.48%, 91.51% 17.33%, 92.13% 18.18%, 92.73% 19.05%, 93.31% 19.93%, 93.86% 20.82%, 94.39% 21.72%, 94.89% 22.63%, 95.37% 23.55%, 95.83% 24.48%, 96.26% 25.42%, 96.67% 26.36%, 97.06% 27.32%, 97.42% 28.28%, 97.76% 29.24%, 98.07% 30.22%, 98.36% 31.20%, 98.63% 32.18%, 98.87% 33.17%, 99.09% 34.16%, 99.29% 35.16%, 99.46% 36.16%, 99.61% 37.16%, 99.73% 38.17%, 99.83% 39.18%, 99.91% 40.19%, 99.96% 41.20%, 99.99% 42.21%, 100.00% 43.23%, 99.98% 44.24%, 99.94% 45.25%, 99.88% 46.26%, 99.79% 47.27%, 99.68% 48.28%, 99.54% 49.29%, 99.38% 50.29%, 99.20% 51.29%, 98.99% 52.28%, 98.76% 53.27%, 98.50% 54.26%, 98.22% 55.24%, 97.92% 56.22%, 97.60% 57.19%, 97.25% 58.15%, 96.87% 59.11%, 96.48% 60.06%, 96.06% 61.00%, 95.61% 61.93%, 95.14% 62.86%, 94.65% 63.77%, 94.14% 64.68%, 93.60% 65.57%, 93.03% 66.46%, 92.45% 67.33%, 91.84% 68.20%, 91.20% 69.05%, 90.55% 69.89%, 89.86% 70.71%, 89.16% 71.53%, 88.43% 72.33%, 87.68% 73.11%, 86.93% 73.86%, 86.20% 74.59%, 85.47% 75.32%, 84.74% 76.06%, 84.00% 76.79%, 83.27% 77.52%, 82.54% 78.25%, 81.81% 78.99%, 81.07% 79.72%, 80.34% 80.45%, 79.61% 81.18%, 78.88% 81.92%, 78.14% 82.65%, 77.41% 83.38%, 76.68% 84.11%, 75.95% 84.85%, 75.21% 85.58%, 74.48% 86.31%, 73.75% 87.04%, 72.99% 87.79%, 72.21% 88.54%, 71.40% 89.27%, 70.59% 89.97%, 69.76% 90.65%, 68.92% 91.30%, 68.07% 91.93%, 67.20% 92.54%, 66.33% 93.12%, 65.44% 93.68%, 64.54% 94.22%, 63.64% 94.73%, 62.72% 95.22%, 61.79% 95.68%, 60.86% 96.12%, 59.91% 96.54%, 58.96% 96.93%, 58.01% 97.30%, 57.04% 97.65%, 56.07% 97.97%, 55.09% 98.27%, 54.11% 98.54%, 53.12% 98.79%, 52.13% 99.02%, 51.14% 99.22%, 50.14% 99.40%, 49.13% 99.56%, 48.13% 99.69%, 47.12% 99.80%, 46.11% 99.89%, 45.10% 99.95%, 44.09% 99.99%, 43.07% 100.00%, 42.06% 99.99%, 41.05% 99.96%, 40.04% 99.90%, 39.03% 99.82%, 38.02% 99.71%, 37.01% 99.59%, 36.01% 99.43%, 35.01% 99.26%, 34.01% 99.06%, 33.02% 98.83%, 32.03% 98.59%, 31.05% 98.32%, 30.07% 98.02%, 29.10% 97.70%, 28.13% 97.36%, 27.17% 97.00%, 26.22% 96.61%, 25.28% 96.20%, 24.34% 95.76%, 23.41% 95.30%, 22.49% 94.81%, 21.59% 94.31%, 20.69% 93.78%, 19.80% 93.22%, 18.92% 92.64%, 18.05% 92.04%, 17.20% 91.41%, 16.35% 90.76%, 15.52% 90.09%, 14.71% 89.39%, 13.90% 88.67%, 13.11% 87.92%, 12.34% 87.16%, 11.59% 86.37%, 10.86% 85.57%, 10.15% 84.76%, 9.47% 83.93%, 8.81% 83.10%, 8.18% 82.25%, 7.56% 81.38%, 6.98% 80.51%, 6.41% 79.62%, 5.87% 78.73%, 5.36% 77.82%, 4.87% 76.91%, 4.40% 75.98%, 3.95% 75.05%, 3.53% 74.11%, 3.13% 73.16%, 2.76% 72.20%, 2.41% 71.24%, 2.08% 70.27%, 1.78% 69.29%, 1.50% 68.31%, 1.25% 67.32%, 1.02% 66.33%, 0.81% 65.34%, 0.62% 64.34%, 0.46% 63.34%, 0.33% 62.33%, 0.21% 61.32%, 0.13% 60.31%, 0.06% 59.30%, 0.02% 58.29%, 0.00% 57.28%, 0.01% 56.26%, 0.04% 55.25%, 0.09% 54.24%, 0.16% 53.23%, 0.27% 52.22%, 0.39% 51.22%, 0.54% 50.21%, 0.71% 49.21%, 0.90% 48.21%, 1.12% 47.22%, 1.37% 46.23%, 1.63% 45.25%, 1.92% 44.27%, 2.24% 43.29%, 2.57% 42.33%, 2.94% 41.37%, 3.32% 40.41%, 3.73% 39.47%, 4.16% 38.53%, 4.62% 37.60%, 5.10% 36.68%, 5.60% 35.77%, 6.13% 34.87%, 6.68% 33.98%, 7.26% 33.10%, 7.85% 32.23%, 8.48% 31.37%, 9.12% 30.53%, 9.79% 29.70%, 10.49% 28.88%, 11.20% 28.07%, 11.94% 27.28%, 12.70% 26.51%, 13.43% 25.77%, 14.17% 25.04%, 14.90% 24.31%, 15.63% 23.58%, 16.36% 22.84%, 17.10% 22.11%, 17.83% 21.38%, 18.56% 20.65%, 19.29% 19.91%, 20.03% 19.18%, 20.76% 18.45%, 21.49% 17.72%, 22.22% 16.98%, 22.96% 16.25%, 23.69% 15.52%, 24.42% 14.79%, 25.15% 14.05%, 25.89% 13.32%, 26.62% 12.59%, 26.62% 12.59%, 27.40% 11.83%, 28.19% 11.09%, 29.00% 10.38%, 29.82% 9.69%, 30.66% 9.02%, 31.50% 8.38%, 32.36% 7.76%, 33.23% 7.17%, 34.11% 6.59%, 35.01% 6.05%, 35.91% 5.52%, 36.82% 5.02%, 37.74% 4.55%, 38.67% 4.09%, 39.61% 3.67%, 40.56% 3.26%, 41.51% 2.88%, 42.47% 2.52%, 43.44% 2.19%, 44.42% 1.88%, 45.40% 1.59%, 46.38% 1.33%, 47.37% 1.09%, 48.37% 0.87%, 49.36% 0.68%, 50.36% 0.51%, 51.37% 0.37%, 52.38% 0.25%, 53.38% 0.15%, 54.40% 0.08%, 55.41% 0.03%, 56.42% 0.00%, 57.43% 0.00%, 58.45% 0.02%, 59.46% 0.07%, 60.47% 0.14%, 61.48% 0.23%, 62.48% 0.35%, 63.49% 0.49%`,"soft-burst":`59.28% 10.04%, 60.01% 11.05%, 60.92% 11.86%, 61.99% 12.44%, 63.15% 12.76%, 64.37% 12.81%, 65.59% 12.57%, 66.75% 12.12%, 67.90% 11.66%, 69.04% 11.20%, 70.18% 10.74%, 71.32% 10.28%, 72.46% 9.83%, 73.60% 9.37%, 74.75% 8.91%, 76.01% 8.58%, 77.25% 8.56%, 78.43% 8.82%, 79.51% 9.33%, 80.44% 10.06%, 81.19% 10.98%, 81.72% 12.06%, 81.98% 13.28%, 81.96% 14.56%, 81.87% 15.78%, 81.77% 17.01%, 81.68% 18.24%, 81.59% 19.46%, 81.50% 20.69%, 81.41% 21.92%, 81.32% 23.14%, 81.32% 24.39%, 81.60% 25.58%, 82.15% 26.65%, 82.93% 27.57%, 83.91% 28.30%, 85.06% 28.79%, 86.27% 29.09%, 87.46% 29.38%, 88.66% 29.67%, 89.85% 29.96%, 91.05% 30.25%, 92.24% 30.54%, 93.44% 30.83%, 94.65% 31.13%, 95.85% 31.62%, 96.85% 32.35%, 97.62% 33.27%, 98.16% 34.32%, 98.46% 35.47%, 98.48% 36.66%, 98.22% 37.84%, 97.67% 38.97%, 96.87% 39.97%, 96.07% 40.90%, 96.27% 41.84%, 94.47% 42.77%, 93.67% 43.70%, 92.87% 44.64%, 92.07% 45.57%, 91.27% 46.51%, 90.54% 47.53%, 90.09% 48.67%, 89.92% 49.86%, 90.03% 51.06%, 90.42% 52.22%, 91.09% 53.27%, 91.89% 54.21%, 92.70% 55.15%, 93.50% 56.08%, 94.30% 57.01%, 95.10% 57.95%, 95.90% 58.88%, 96.70% 59.82%, 97.51% 60.79%, 98.13% 61.90%, 98.45% 63.07%, 98.48% 64.26%, 98.25% 65.42%, 97.76% 66.50%, 97.03% 67.45%, 96.08% 68.22%, 94.93% 68.77%, 93.70% 69.09%, 92.50% 69.38%, 91.31% 69.67%, 90.11% 69.96%, 88.92% 70.25%, 87.72% 70.54%, 86.53% 70.83%, 85.33% 71.12%, 84.14% 71.56%, 83.12% 72.24%, 82.30% 73.12%, 81.70% 74.17%, 81.36% 75.33%, 81.30% 76.58%, 81.39% 77.80%, 81.48% 79.03%, 81.57% 80.26%, 81.66% 81.48%, 81.75% 82.71%, 81.85% 83.94%, 81.94% 85.16%, 82.00% 86.43%, 81.80% 87.67%, 81.33% 88.78%, 80.62% 89.74%, 79.72% 90.52%, 78.67% 91.08%, 77.51% 91.39%, 76.28% 91.44%, 75.02% 91.18%, 73.85% 90.72%, 72.71% 90.26%, 71.57% 89.80%, 70.42% 89.34%, 69.28% 88.88%, 68.14% 88.42%, 67.00% 87.96%, 65.85% 87.50%, 64.64% 87.21%, 63.41% 87.20%, 62.23% 87.46%, 61.14% 87.98%, 60.19% 88.74%, 59.42% 89.72%, 58.77% 90.76%, 58.11% 91.81%, 57.46% 92.85%, 56.80% 93.89%, 56.15% 94.93%, 55.49% 95.97%, 54.84% 97.01%, 54.13% 98.07%, 53.22% 98.94%, 52.17% 99.55%, 51.03% 99.91%, 49.84% 100.00%, 48.66% 99.83%, 47.54% 99.41%, 46.52% 98.72%, 45.67% 97.77%, 44.99% 96.72%, 44.34% 95.67%, 43.68% 94.63%, 43.03% 93.59%, 42.37% 92.55%, 41.72% 91.51%, 41.06% 90.47%, 40.40% 89.42%, 39.57% 88.50%, 38.58% 87.80%, 37.46% 87.36%, 36.26% 87.17%, 35.03% 87.26%, 33.83% 87.64%, 32.69% 88.09%, 31.55% 88.55%, 30.41% 89.01%, 29.27% 89.47%, 28.13% 89.93%, 26.99% 90.39%, 25.85% 90.85%, 24.64% 91.28%, 23.39% 91.46%, 22.17% 91.33%, 21.04% 90.94%, 20.02% 90.32%, 19.17% 89.49%, 18.53% 88.48%, 18.13% 87.33%, 18.02% 86.06%, 18.11% 84.82%, 18.20% 83.59%, 18.29% 82.36%, 18.38% 81.14%, 18.47% 79.91%, 18.56% 78.68%, 18.65% 77.46%, 18.73% 76.22%, 18.59% 74.99%, 18.17% 73.85%, 17.51% 72.85%, 16.62% 72.02%, 15.55% 71.41%, 14.35% 71.04%, 13.15% 70.75%, 11.96% 70.46%, 10.76% 70.17%, 9.57% 69.88%, 8.37% 69.59%, 7.18% 69.30%, 5.98% 69.01%, 4.74% 68.64%, 3.64% 68.02%, 2.76% 67.20%, 2.09% 66.20%, 1.68% 65.10%, 1.52% 63.92%, 1.63% 62.73%, 2.04% 61.57%, 2.75% 60.49%, 3.55% 59.55%, 4.35% 58.62%, 5.15% 57.68%, 5.95% 56.75%, 6.75% 55.81%, 7.55% 54.88%, 8.35% 53.95%, 9.15% 52.99%, 9.74% 51.90%, 10.05% 50.72%, 10.08% 49.52%, 9.83% 48.34%, 9.30% 47.23%, 8.52% 46.24%, 7.72% 45.31%, 6.92% 44.37%, 6.12% 43.44%, 5.32% 42.50%, 4.52% 41.57%, 3.72% 40.64%, 2.92% 39.70%, 2.16% 38.66%, 1.69% 37.51%, 1.52% 36.32%, 1.62% 35.14%, 1.98% 34.01%, 2.59% 32.99%, 3.43% 32.12%, 4.49% 31.46%, 5.72% 31.04%, 6.92% 30.75%, 8.11% 30.46%, 9.31% 30.17%, 10.50% 29.88%, 11.70% 29.59%, 12.90% 29.30%, 14.09% 29.01%, 15.30% 28.68%, 16.41% 28.12%, 17.33% 27.33%, 18.05% 26.36%, 18.52% 25.25%, 18.73% 24.04%, 18.67% 22.80%, 18.58% 21.57%, 18.49% 20.34%, 18.40% 19.11%, 18.31% 17.89%, 18.22% 16.66%, 18.13% 15.43%, 18.04% 14.21%, 18.08% 12.92%, 18.42% 11.74%, 19.02% 10.70%, 19.82% 9.83%, 20.81% 9.16%, 21.92% 8.72%, 23.12% 8.53%, 24.37% 8.64%, 25.60% 9.04%, 26.74% 9.50%, 27.88% 9.96%, 29.02% 10.42%, 30.16% 10.87%, 31.31% 11.33%, 32.45% 11.79%, 33.59% 12.25%, 34.77% 12.67%, 35.99% 12.82%, 37.20% 12.69%, 38.34% 12.30%, 39.37% 11.66%, 40.24% 10.78%, 40.92% 9.74%, 41.58% 8.70%, 42.23% 7.66%, 42.89% 6.62%, 43.54% 5.58%, 44.20% 4.54%, 44.85% 3.50%, 45.51% 2.45%, 45.51% 2.45%, 46.32% 1.45%, 47.31% 0.71%, 48.41% 0.22%, 49.58% 0.00%, 50.77% 0.04%, 51.93% 0.33%, 53.01% 0.89%, 53.95% 1.71%, 54.70% 2.75%, 55.35% 3.79%, 56.01% 4.83%, 56.66% 5.87%, 57.32% 6.91%, 57.97% 7.96%, 58.63% 9.00%`,sunny:`61.43% 7.32%, 62.14% 8.02%, 62.94% 8.72%, 63.93% 9.57%, 64.67% 10.16%, 65.47% 10.66%, 66.44% 11.09%, 67.45% 11.39%, 68.29% 11.52%, 69.44% 11.62%, 70.64% 11.70%, 71.70% 11.77%, 72.77% 11.84%, 73.83% 11.92%, 74.89% 11.99%, 75.96% 12.06%, 77.02% 12.13%, 77.02% 12.13%, 78.53% 12.24%, 79.79% 12.34%, 80.85% 12.46%, 81.73% 12.62%, 82.50% 12.83%, 83.29% 13.16%, 84.21% 13.70%, 85.04% 14.35%, 85.78% 15.11%, 86.42% 15.96%, 86.93% 16.90%, 87.22% 17.64%, 87.42% 18.43%, 87.57% 19.34%, 87.68% 20.43%, 87.79% 21.74%, 87.89% 23.19%, 87.96% 24.25%, 88.03% 25.31%, 88.10% 26.38%, 88.18% 27.44%, 88.25% 28.50%, 88.32% 29.56%, 88.41% 30.82%, 88.50% 31.89%, 88.66% 32.74%, 88.99% 33.75%, 89.45% 34.71%, 89.94% 35.46%, 90.57% 36.24%, 91.42% 37.22%, 92.12% 38.02%, 92.82% 38.82%, 93.52% 39.62%, 94.22% 40.43%, 94.92% 41.23%, 95.62% 42.03%, 96.53% 43.07%, 97.41% 44.10%, 98.13% 44.98%, 98.70% 45.74%, 99.14% 46.44%, 99.46% 47.12%, 99.78% 48.13%, 99.96% 49.18%, 100.00% 50.24%, 99.90% 51.29%, 99.65% 52.33%, 99.33% 53.19%, 98.96% 53.87%, 98.47% 54.60%, 97.84% 55.41%, 97.05% 56.34%, 96.09% 57.45%, 95.32% 58.34%, 94.62% 59.14%, 93.92% 59.94%, 93.22% 60.74%, 92.52% 61.55%, 91.82% 62.35%, 91.07% 63.20%, 90.26% 64.14%, 89.73% 64.85%, 89.23% 65.72%, 88.83% 66.70%, 88.58% 67.66%, 88.46% 68.54%, 88.36% 69.82%, 88.29% 70.92%, 88.22% 71.98%, 88.14% 73.04%, 88.07% 74.10%, 88.00% 75.17%, 87.93% 76.23%, 87.85% 77.43%, 87.74% 78.88%, 87.64% 80.08%, 87.51% 81.09%, 87.34% 81.94%, 87.12% 82.68%, 86.72% 83.53%, 86.15% 84.44%, 85.47% 85.25%, 84.69% 85.96%, 83.82% 86.57%, 82.89% 87.04%, 82.18% 87.29%, 81.37% 87.47%, 80.41% 87.61%, 79.27% 87.72%, 77.90% 87.82%, 76.55% 87.91%, 75.49% 87.99%, 74.43% 88.06%, 73.37% 88.13%, 72.30% 88.20%, 71.24% 88.28%, 70.18% 88.35%, 68.88% 88.44%, 67.90% 88.54%, 67.01% 88.74%, 66.01% 89.10%, 65.07% 89.59%, 64.37% 90.08%, 63.53% 90.79%, 62.59% 91.60%, 61.79% 92.30%, 60.99% 93.01%, 60.99% 93.01%, 60.18% 93.71%, 59.38% 94.41%, 58.58% 95.11%, 57.78% 95.81%, 56.66% 96.78%, 55.68% 97.62%, 54.83% 98.30%, 54.08% 98.83%, 53.39% 99.23%, 52.64% 99.56%, 51.61% 99.85%, 50.56% 99.99%, 49.50% 100.00%, 48.45% 99.86%, 47.42% 99.58%, 46.65% 99.26%, 45.96% 98.86%, 45.22% 98.33%, 44.38% 97.66%, 43.40% 96.83%, 42.27% 95.85%, 41.47% 95.15%, 40.67% 94.45%, 39.87% 93.75%, 39.06% 93.05%, 38.26% 92.35%, 37.46% 91.65%, 36.53% 90.84%, 35.67% 90.12%, 34.99% 89.63%, 34.05% 89.13%, 33.05% 88.76%, 32.15% 88.55%, 31.19% 88.44%, 29.89% 88.35%, 28.83% 88.28%, 27.76% 88.21%, 26.70% 88.14%, 25.64% 88.06%, 24.57% 87.99%, 23.51% 87.92%, 22.19% 87.83%, 20.81% 87.73%, 19.65% 87.62%, 18.69% 87.48%, 17.87% 87.30%, 17.15% 87.06%, 16.24% 86.60%, 15.36% 86.00%, 14.57% 85.30%, 13.88% 84.49%, 13.31% 83.59%, 12.90% 82.73%, 12.67% 81.99%, 12.50% 81.15%, 12.37% 80.15%, 12.26% 78.96%, 12.16% 77.53%, 12.07% 76.30%, 12.00% 75.23%, 11.93% 74.17%, 11.86% 73.11%, 11.79% 72.05%, 11.71% 70.98%, 11.64% 69.92%, 11.54% 68.61%, 11.43% 67.71%, 11.19% 66.77%, 10.80% 65.78%, 10.30% 64.89%, 9.78% 64.19%, 8.99% 63.27%, 8.23% 62.40%, 7.53% 61.60%, 6.83% 60.79%, 6.13% 59.99%, 5.43% 59.19%, 4.72% 58.39%, 3.98% 57.53%, 3.00% 56.41%, 2.21% 55.46%, 1.56% 54.65%, 1.06% 53.92%, 0.69% 53.23%, 0.36% 52.40%, 0.11% 51.36%, 0.00% 50.31%, 0.03% 49.25%, 0.20% 48.20%, 0.52% 47.18%, 0.84% 46.49%, 1.27% 45.79%, 1.83% 45.03%, 2.53% 44.16%, 3.41% 43.14%, 4.33% 42.08%, 5.03% 41.28%, 5.73% 40.48%, 6.43% 39.67%, 7.13% 38.87%, 7.83% 38.07%, 8.53% 37.27%, 9.38% 36.30%, 10.03% 35.50%, 10.52% 34.77%, 10.99% 33.81%, 11.32% 32.80%, 11.49% 31.95%, 11.59% 30.90%, 11.67% 29.63%, 11.74% 28.57%, 11.82% 27.51%, 11.89% 26.44%, 11.96% 25.38%, 12.03% 24.32%, 12.11% 23.25%, 12.20% 21.83%, 12.31% 20.51%, 12.42% 19.40%, 12.57% 18.48%, 12.76% 17.69%, 13.04% 16.96%, 13.55% 16.02%, 14.17% 15.16%, 14.90% 14.40%, 15.73% 13.74%, 16.65% 13.19%, 17.46% 12.84%, 18.21% 12.63%, 19.09% 12.47%, 20.13% 12.35%, 21.38% 12.24%, 22.88% 12.14%, 23.97% 12.07%, 25.04% 11.99%, 26.10% 11.92%, 27.16% 11.85%, 28.23% 11.78%, 29.29% 11.70%, 30.47% 11.62%, 31.65% 11.53%, 32.49% 11.40%, 33.49% 11.11%, 34.47% 10.69%, 35.28% 10.19%, 36.01% 9.62%, 37.01% 8.76%, 37.81% 8.06%, 38.61% 7.36%, 39.41% 6.66%, 40.22% 5.96%, 41.02% 5.26%, 41.82% 4.56%, 42.78% 3.73%, 43.85% 2.80%, 44.76% 2.04%, 45.55% 1.44%, 46.26% 0.97%, 46.94% 0.62%, 47.87% 0.30%, 48.91% 0.08%, 49.97% 0.00%, 51.02% 0.07%, 52.07% 0.28%, 53.01% 0.60%, 53.69% 0.94%, 54.40% 1.40%, 55.19% 2.00%, 56.09% 2.74%, 57.15% 3.66%, 58.13% 4.51%, 58.93% 5.21%, 59.73% 5.91%, 60.53% 6.62%`},u=class extends n{constructor(...e){super(...e),this.variant=`uncontained`}connectedCallback(){super.connectedCallback(),this.ariaValueMin=this.ariaValueMin||`0`,this.ariaValueMax=this.ariaValueMax||`100`,this.role=this.role||`progressbar`,this._toggleAnimation(!0)}disconnectedCallback(){super.disconnectedCallback(),this._toggleAnimation(!1)}firstUpdated(){this._toggleAnimation(!0)}_toggleAnimation(e){this._container&&this._container.classList.toggle(`animate`,e)}static{this.styles=[a,r`
2
+ :host {
3
+ display: inline-block;
4
+ aspect-ratio: 1 / 1;
5
+ contain: strict;
6
+ vertical-align: middle;
7
+ }
8
+
9
+ :host([variant='uncontained']) {
10
+ width: var(--moni-loading-indicator-size, 2.375rem);
11
+ }
12
+
13
+ :host([variant='contained']) {
14
+ width: var(--moni-loading-indicator-container-size, 3rem);
15
+ }
16
+
17
+ :host([variant='uncontained']) .active-indicator {
18
+ background-color: var(--moni-loading-indicator-active-color, var(--primary));
19
+ }
20
+
21
+ :host([variant='contained']) .active-indicator {
22
+ background-color: var(--moni-loading-indicator-contained-active-color, var(--on-primary-container));
23
+ }
24
+
25
+ :host([variant='contained']) .container {
26
+ background-color: var(--moni-loading-indicator-contained-container-color, var(--secondary-container));
27
+ }
28
+
29
+ .container {
30
+ width: 100%;
31
+ height: 100%;
32
+ display: flex;
33
+ align-items: center;
34
+ justify-content: center;
35
+ border-radius: var(--moni-loading-indicator-container-shape, 9999px);
36
+ box-sizing: border-box;
37
+ }
38
+
39
+ .active-indicator {
40
+ margin: auto;
41
+ aspect-ratio: 1 / 1;
42
+ width: calc(var(--moni-loading-indicator-size, 2.375rem) * 0.842);
43
+ transform-origin: center;
44
+ transition: clip-path 500ms cubic-bezier(0.2, 0, 0, 1);
45
+ will-change: transform, clip-path;
46
+ --_polygon-soft-burst: polygon(${t(l[`soft-burst`])});
47
+ --_polygon-9-sided-cookie: polygon(${t(l[`9-sided-cookie`])});
48
+ --_polygon-pentagon: polygon(${t(l.pentagon)});
49
+ --_polygon-pill: polygon(${t(l.pill)});
50
+ --_polygon-sunny: polygon(${t(l.sunny)});
51
+ --_polygon-4-sided-cookie: polygon(${t(l[`4-sided-cookie`])});
52
+ --_polygon-oval: polygon(${t(l.oval)});
53
+ }
54
+
55
+ .container.animate .active-indicator-wrapper {
56
+ animation: rotate-outer 4666ms linear infinite;
57
+ transform-origin: center;
58
+ display: flex;
59
+ align-items: center;
60
+ justify-content: center;
61
+ will-change: transform;
62
+ }
63
+
64
+ @keyframes rotate-outer {
65
+ 0% {
66
+ transform: rotate(0deg);
67
+ }
68
+ 100% {
69
+ transform: rotate(360deg);
70
+ }
71
+ }
72
+
73
+ .container.animate .active-indicator {
74
+ animation: rotate-inner 4666ms cubic-bezier(0.34, 0.88, 0.34, 1) infinite;
75
+ }
76
+
77
+ @keyframes rotate-inner {
78
+ 0% {
79
+ clip-path: var(--_polygon-soft-burst);
80
+ transform: rotate(0deg);
81
+ }
82
+ 14% {
83
+ clip-path: var(--_polygon-9-sided-cookie);
84
+ transform: rotate(154deg) scale(1);
85
+ }
86
+ 29% {
87
+ clip-path: var(--_polygon-pentagon);
88
+ transform: rotate(309deg) scale(1);
89
+ }
90
+ 43% {
91
+ clip-path: var(--_polygon-pill);
92
+ transform: rotate(463deg) scale(1);
93
+ }
94
+ 57% {
95
+ clip-path: var(--_polygon-sunny);
96
+ transform: rotate(617deg) scale(1);
97
+ }
98
+ 71% {
99
+ clip-path: var(--_polygon-4-sided-cookie);
100
+ transform: rotate(771deg) scale(1);
101
+ }
102
+ 83% {
103
+ clip-path: var(--_polygon-oval);
104
+ transform: rotate(926deg) scale(1);
105
+ }
106
+ 100% {
107
+ clip-path: var(--_polygon-soft-burst);
108
+ transform: rotate(1080deg) scale(1);
109
+ }
110
+ }
111
+
112
+ @media (forced-colors: active) {
113
+ .active-indicator {
114
+ background-color: CanvasText !important;
115
+ }
116
+ }
117
+
118
+ @media (prefers-reduced-motion: reduce) {
119
+ .container.animate .active-indicator-wrapper,
120
+ .container.animate .active-indicator {
121
+ animation: none;
122
+ }
123
+
124
+ .active-indicator {
125
+ clip-path: var(--_polygon-soft-burst);
126
+ }
127
+ }
128
+ `]}render(){return e`
129
+ <div class="container animate" aria-hidden="true">
130
+ <div class="active-indicator-wrapper">
131
+ <div class="active-indicator"></div>
132
+ </div>
133
+ </div>
134
+ `}};s([i({reflect:!0})],u.prototype,`variant`,void 0),s([c(`.container`)],u.prototype,`_container`,void 0),u=s([o(`moni-loading-indicator`)],u);
@@ -0,0 +1,45 @@
1
+ import{d as e,i as t,m as n,o as r,r as i,s as a,t as o}from"../chunks/decorate-DxX3e27g.js";import"./moni-icon.js";var s=class extends t{constructor(...e){super(...e),this.active=!1,this.disabled=!1,this.icon=``,this.label=``}static{this.styles=[i,n`
2
+ :host {
3
+ display: block;
4
+ font-family: var(--font);
5
+ }
6
+
7
+ li {
8
+ all: unset;
9
+ box-sizing: border-box;
10
+ position: relative;
11
+ display: flex;
12
+ align-items: center;
13
+ text-align: start;
14
+ justify-content: flex-start;
15
+ white-space: nowrap;
16
+ gap: 1rem;
17
+ padding: 0.5rem 1rem;
18
+ min-block-size: 2.75rem;
19
+ flex: 1;
20
+ margin: 0 !important;
21
+ cursor: pointer;
22
+ border-radius: 0.25rem;
23
+ color: var(--on-surface);
24
+ font-size: 0.875rem;
25
+ transition: border-radius var(--speed2);
26
+ }
27
+
28
+ li:hover {
29
+ background-color: var(--active);
30
+ }
31
+ li.active {
32
+ background-color: var(--tertiary-container);
33
+ color: var(--on-tertiary-container);
34
+ }
35
+ li:is(.active, :active) {
36
+ border-radius: 0.75rem;
37
+ }
38
+ :host([disabled]) li {
39
+ opacity: 0.5;
40
+ pointer-events: none;
41
+ }
42
+ `]}render(){return e`<li part="item">
43
+ ${this.icon?e`<moni-icon name="${this.icon}" part="icon"></moni-icon>`:e`<slot name="icon"></slot>`}
44
+ <span part="label"><slot>${this.label}</slot></span>
45
+ </li>`}};o([r({type:Boolean,reflect:!0})],s.prototype,`active`,void 0),o([r({type:Boolean,reflect:!0})],s.prototype,`disabled`,void 0),o([r({reflect:!0})],s.prototype,`icon`,void 0),o([r({reflect:!0})],s.prototype,`label`,void 0),s=o([a(`moni-menu-item`)],s);