@transcodes/ui-components 0.4.7 → 0.4.9
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/CHANGELOG.md +21 -0
- package/dist/primitives/tc-button.d.ts +3 -0
- package/dist/primitives/tc-button.d.ts.map +1 -1
- package/dist/primitives/tc-button.js +9 -9
- package/dist/primitives/tc-callout.d.ts +1 -0
- package/dist/primitives/tc-callout.d.ts.map +1 -1
- package/dist/primitives/tc-callout.js +12 -12
- package/dist/primitives/tc-card.d.ts +1 -0
- package/dist/primitives/tc-card.d.ts.map +1 -1
- package/dist/primitives/tc-card.js +8 -8
- package/dist/primitives/tc-chip.d.ts +2 -0
- package/dist/primitives/tc-chip.d.ts.map +1 -1
- package/dist/primitives/tc-chip.js +13 -13
- package/dist/primitives/tc-container.d.ts +1 -0
- package/dist/primitives/tc-container.d.ts.map +1 -1
- package/dist/primitives/tc-container.js +5 -5
- package/dist/primitives/tc-divider.d.ts +1 -0
- package/dist/primitives/tc-divider.d.ts.map +1 -1
- package/dist/primitives/tc-divider.js +4 -4
- package/dist/primitives/tc-error-message.d.ts +2 -0
- package/dist/primitives/tc-error-message.d.ts.map +1 -1
- package/dist/primitives/tc-error-message.js +6 -6
- package/dist/primitives/tc-form-header.d.ts +4 -0
- package/dist/primitives/tc-form-header.d.ts.map +1 -1
- package/dist/primitives/tc-form-header.js +13 -13
- package/dist/primitives/tc-icon.d.ts +1 -0
- package/dist/primitives/tc-icon.d.ts.map +1 -1
- package/dist/primitives/tc-icon.js +1 -1
- package/dist/primitives/tc-input-with-chip.d.ts +9 -0
- package/dist/primitives/tc-input-with-chip.d.ts.map +1 -1
- package/dist/primitives/tc-input-with-chip.js +20 -20
- package/dist/primitives/tc-input.d.ts +11 -0
- package/dist/primitives/tc-input.d.ts.map +1 -1
- package/dist/primitives/tc-input.js +29 -29
- package/dist/primitives/tc-item-button.d.ts +2 -0
- package/dist/primitives/tc-item-button.d.ts.map +1 -1
- package/dist/primitives/tc-item-button.js +2 -2
- package/dist/primitives/tc-otp-input.d.ts +4 -0
- package/dist/primitives/tc-otp-input.d.ts.map +1 -1
- package/dist/primitives/tc-otp-input.js +16 -16
- package/dist/primitives/tc-page-decoration.d.ts +1 -0
- package/dist/primitives/tc-page-decoration.d.ts.map +1 -1
- package/dist/primitives/tc-page-decoration.js +5 -5
- package/dist/primitives/tc-spinner.d.ts +1 -0
- package/dist/primitives/tc-spinner.d.ts.map +1 -1
- package/dist/primitives/tc-spinner.js +3 -3
- package/dist/primitives/tc-text.d.ts +5 -0
- package/dist/primitives/tc-text.d.ts.map +1 -1
- package/dist/primitives/tc-text.js +11 -11
- package/dist/primitives/tc-toast.d.ts +4 -0
- package/dist/primitives/tc-toast.d.ts.map +1 -1
- package/dist/primitives/tc-toast.js +10 -10
- package/dist/screens/tc-error-screen.d.ts.map +1 -1
- package/dist/screens/tc-error-screen.js +15 -15
- package/dist/screens/tc-loading-screen.d.ts +1 -0
- package/dist/screens/tc-loading-screen.d.ts.map +1 -1
- package/dist/screens/tc-loading-screen.js +13 -10
- package/package.json +2 -2
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { css as
|
|
2
|
-
import { property as a, state as
|
|
1
|
+
import { css as h, LitElement as f, html as n } from "lit";
|
|
2
|
+
import { property as a, state as u, customElement as v } from "lit/decorators.js";
|
|
3
3
|
import { classMap as d } from "lit/directives/class-map.js";
|
|
4
|
-
import { styleMap as
|
|
5
|
-
import { sharedStyles as
|
|
4
|
+
import { styleMap as b } from "lit/directives/style-map.js";
|
|
5
|
+
import { sharedStyles as y } from "../styles/shared.js";
|
|
6
6
|
import "./tc-chip.js";
|
|
7
7
|
import "./tc-icon.js";
|
|
8
8
|
var m = Object.defineProperty, g = Object.getOwnPropertyDescriptor, r = (t, i, s, p) => {
|
|
@@ -10,7 +10,7 @@ var m = Object.defineProperty, g = Object.getOwnPropertyDescriptor, r = (t, i, s
|
|
|
10
10
|
(c = t[l]) && (o = (p ? c(i, s, o) : c(o)) || o);
|
|
11
11
|
return p && o && m(i, s, o), o;
|
|
12
12
|
};
|
|
13
|
-
let e = class extends
|
|
13
|
+
let e = class extends f {
|
|
14
14
|
constructor() {
|
|
15
15
|
super(...arguments), this.label = "", this.placeholder = "", this.value = "", this.error = "", this.disabled = !1, this.readonly = !1, this.chipLabel = "", this.chipIcon = "", this.chipVariant = "default", this.sx = {}, this.inputId = `tc-input-chip-${Math.random().toString(36).slice(2)}`, this.isFocused = !1;
|
|
16
16
|
}
|
|
@@ -24,7 +24,7 @@ let e = class extends v {
|
|
|
24
24
|
"has-error": t
|
|
25
25
|
};
|
|
26
26
|
return n`
|
|
27
|
-
<div class=${d(i)} style=${
|
|
27
|
+
<div class=${d(i)} style=${b(this.sx)}>
|
|
28
28
|
${this.label ? n`<label part="label" class="field-label" for=${this.inputId}>${this.label}</label>` : ""}
|
|
29
29
|
<div part="wrapper" class=${d(s)}>
|
|
30
30
|
<input
|
|
@@ -97,8 +97,8 @@ let e = class extends v {
|
|
|
97
97
|
}
|
|
98
98
|
};
|
|
99
99
|
e.styles = [
|
|
100
|
-
|
|
101
|
-
|
|
100
|
+
y,
|
|
101
|
+
h`
|
|
102
102
|
:host {
|
|
103
103
|
display: block;
|
|
104
104
|
width: 100%;
|
|
@@ -207,43 +207,43 @@ e.styles = [
|
|
|
207
207
|
`
|
|
208
208
|
];
|
|
209
209
|
r([
|
|
210
|
-
a({ type: String })
|
|
210
|
+
a({ type: String, reflect: !0 })
|
|
211
211
|
], e.prototype, "label", 2);
|
|
212
212
|
r([
|
|
213
|
-
a({ type: String })
|
|
213
|
+
a({ type: String, reflect: !0 })
|
|
214
214
|
], e.prototype, "placeholder", 2);
|
|
215
215
|
r([
|
|
216
|
-
a({ type: String })
|
|
216
|
+
a({ type: String, reflect: !0 })
|
|
217
217
|
], e.prototype, "value", 2);
|
|
218
218
|
r([
|
|
219
|
-
a({ type: String })
|
|
219
|
+
a({ type: String, reflect: !0 })
|
|
220
220
|
], e.prototype, "error", 2);
|
|
221
221
|
r([
|
|
222
|
-
a({ type: Boolean })
|
|
222
|
+
a({ type: Boolean, reflect: !0 })
|
|
223
223
|
], e.prototype, "disabled", 2);
|
|
224
224
|
r([
|
|
225
|
-
a({ type: Boolean })
|
|
225
|
+
a({ type: Boolean, reflect: !0 })
|
|
226
226
|
], e.prototype, "readonly", 2);
|
|
227
227
|
r([
|
|
228
|
-
a({ type: String, attribute: "chip-label" })
|
|
228
|
+
a({ type: String, reflect: !0, attribute: "chip-label" })
|
|
229
229
|
], e.prototype, "chipLabel", 2);
|
|
230
230
|
r([
|
|
231
|
-
a({ type: String, attribute: "chip-icon" })
|
|
231
|
+
a({ type: String, reflect: !0, attribute: "chip-icon" })
|
|
232
232
|
], e.prototype, "chipIcon", 2);
|
|
233
233
|
r([
|
|
234
|
-
a({ type: String, attribute: "chip-variant" })
|
|
234
|
+
a({ type: String, reflect: !0, attribute: "chip-variant" })
|
|
235
235
|
], e.prototype, "chipVariant", 2);
|
|
236
236
|
r([
|
|
237
237
|
a({ type: Object })
|
|
238
238
|
], e.prototype, "sx", 2);
|
|
239
239
|
r([
|
|
240
|
-
|
|
240
|
+
u()
|
|
241
241
|
], e.prototype, "inputId", 2);
|
|
242
242
|
r([
|
|
243
|
-
|
|
243
|
+
u()
|
|
244
244
|
], e.prototype, "isFocused", 2);
|
|
245
245
|
e = r([
|
|
246
|
-
|
|
246
|
+
v("tc-input-with-chip")
|
|
247
247
|
], e);
|
|
248
248
|
export {
|
|
249
249
|
e as TcInputWithChip
|
|
@@ -13,6 +13,17 @@ import { SxProps } from '../types.js';
|
|
|
13
13
|
* @csspart label - The label element
|
|
14
14
|
* @csspart ink-line - The animated ink line
|
|
15
15
|
* @csspart error - The error message element
|
|
16
|
+
* @attr {string} label - The input label
|
|
17
|
+
* @attr {string} type - The input type
|
|
18
|
+
* @attr {string} placeholder - The placeholder text
|
|
19
|
+
* @attr {string} value - The input value
|
|
20
|
+
* @attr {string} error - The error message
|
|
21
|
+
* @attr {boolean} disabled - Whether the input is disabled
|
|
22
|
+
* @attr {boolean} required - Whether the input is required
|
|
23
|
+
* @attr {string} name - The input name
|
|
24
|
+
* @attr {string} autocomplete - The autocomplete attribute
|
|
25
|
+
* @attr {string} inputmode - The inputmode attribute
|
|
26
|
+
* @attr {number} maxlength - The maximum length
|
|
16
27
|
*/
|
|
17
28
|
export declare class TcInput extends LitElement {
|
|
18
29
|
label: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-input.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-input.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAK5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C
|
|
1
|
+
{"version":3,"file":"tc-input.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-input.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAK5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,qBACa,OAAQ,SAAQ,UAAU;IACM,KAAK,SAAM;IACX,IAAI,SAAU;IACd,WAAW,SAAM;IACjB,KAAK,SAAM;IACX,KAAK,SAAM;IACV,QAAQ,UAAS;IACjB,QAAQ,UAAS;IAClB,IAAI,SAAM;IACV,YAAY,SAAM;IAClB,SAAS,SAAM;IACf,SAAS,SAAK;IAC7B,EAAE,EAAE,OAAO,CAAM;IAEpC,OAAO,CAAC,OAAO,CAAqD;IACpE,OAAO,CAAC,SAAS,CAAS;IAEnC,OAAgB,MAAM,4BA6GpB;IAEO,MAAM;IA+Df,OAAO,CAAC,WAAW;IAanB,OAAO,CAAC,WAAW;IAInB,OAAO,CAAC,UAAU;IAalB,OAAO,CAAC,aAAa;IAUrB,OAAO,CAAC,WAAW;IAUnB,KAAK;CAIN;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,UAAU,EAAE,OAAO,CAAC;KACrB;CACF"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { css as
|
|
2
|
-
import { property as i, state as
|
|
3
|
-
import { classMap as
|
|
4
|
-
import { styleMap as
|
|
5
|
-
import { sharedStyles as
|
|
6
|
-
var
|
|
1
|
+
import { css as h, LitElement as m, html as u } from "lit";
|
|
2
|
+
import { property as i, state as c, customElement as b } from "lit/decorators.js";
|
|
3
|
+
import { classMap as d } from "lit/directives/class-map.js";
|
|
4
|
+
import { styleMap as f } from "lit/directives/style-map.js";
|
|
5
|
+
import { sharedStyles as v } from "../styles/shared.js";
|
|
6
|
+
var y = Object.defineProperty, g = Object.getOwnPropertyDescriptor, r = (e, o, n, a) => {
|
|
7
7
|
for (var s = a > 1 ? void 0 : a ? g(o, n) : o, l = e.length - 1, p; l >= 0; l--)
|
|
8
8
|
(p = e[l]) && (s = (a ? p(o, n, s) : p(s)) || s);
|
|
9
|
-
return a && s &&
|
|
9
|
+
return a && s && y(o, n, s), s;
|
|
10
10
|
};
|
|
11
11
|
let t = class extends m {
|
|
12
12
|
constructor() {
|
|
@@ -25,14 +25,14 @@ let t = class extends m {
|
|
|
25
25
|
input: !0,
|
|
26
26
|
"has-error": e
|
|
27
27
|
};
|
|
28
|
-
return
|
|
29
|
-
<div class=${
|
|
30
|
-
${this.label ?
|
|
31
|
-
<div part="wrapper" class=${
|
|
28
|
+
return u`
|
|
29
|
+
<div class=${d(o)}>
|
|
30
|
+
${this.label ? u`<label part="label" class="field-label" for=${this.inputId}>${this.label}</label>` : ""}
|
|
31
|
+
<div part="wrapper" class=${d(n)}>
|
|
32
32
|
<input
|
|
33
33
|
part="input"
|
|
34
34
|
id=${this.inputId}
|
|
35
|
-
class=${
|
|
35
|
+
class=${d(a)}
|
|
36
36
|
type=${this.type}
|
|
37
37
|
name=${this.name}
|
|
38
38
|
placeholder=${this.placeholder}
|
|
@@ -44,7 +44,7 @@ let t = class extends m {
|
|
|
44
44
|
maxlength=${this.maxlength || ""}
|
|
45
45
|
aria-invalid=${e ? "true" : "false"}
|
|
46
46
|
aria-describedby=${e ? `${this.inputId}-error` : ""}
|
|
47
|
-
style=${
|
|
47
|
+
style=${f(this.sx)}
|
|
48
48
|
@input=${this.handleInput}
|
|
49
49
|
@focus=${this.handleFocus}
|
|
50
50
|
@blur=${this.handleBlur}
|
|
@@ -53,7 +53,7 @@ let t = class extends m {
|
|
|
53
53
|
/>
|
|
54
54
|
<div part="ink-line" class="ink-line"></div>
|
|
55
55
|
</div>
|
|
56
|
-
${e ?
|
|
56
|
+
${e ? u`<p part="error" id="${this.inputId}-error" class="input-error-text" role="alert">
|
|
57
57
|
${this.error}
|
|
58
58
|
</p>` : ""}
|
|
59
59
|
</div>
|
|
@@ -105,8 +105,8 @@ let t = class extends m {
|
|
|
105
105
|
}
|
|
106
106
|
};
|
|
107
107
|
t.styles = [
|
|
108
|
-
|
|
109
|
-
|
|
108
|
+
v,
|
|
109
|
+
h`
|
|
110
110
|
:host {
|
|
111
111
|
display: block;
|
|
112
112
|
width: 100%;
|
|
@@ -215,46 +215,46 @@ t.styles = [
|
|
|
215
215
|
`
|
|
216
216
|
];
|
|
217
217
|
r([
|
|
218
|
-
i({ type: String })
|
|
218
|
+
i({ type: String, reflect: !0 })
|
|
219
219
|
], t.prototype, "label", 2);
|
|
220
220
|
r([
|
|
221
|
-
i({ type: String })
|
|
221
|
+
i({ type: String, reflect: !0 })
|
|
222
222
|
], t.prototype, "type", 2);
|
|
223
223
|
r([
|
|
224
|
-
i({ type: String })
|
|
224
|
+
i({ type: String, reflect: !0 })
|
|
225
225
|
], t.prototype, "placeholder", 2);
|
|
226
226
|
r([
|
|
227
|
-
i({ type: String })
|
|
227
|
+
i({ type: String, reflect: !0 })
|
|
228
228
|
], t.prototype, "value", 2);
|
|
229
229
|
r([
|
|
230
|
-
i({ type: String })
|
|
230
|
+
i({ type: String, reflect: !0 })
|
|
231
231
|
], t.prototype, "error", 2);
|
|
232
232
|
r([
|
|
233
|
-
i({ type: Boolean })
|
|
233
|
+
i({ type: Boolean, reflect: !0 })
|
|
234
234
|
], t.prototype, "disabled", 2);
|
|
235
235
|
r([
|
|
236
|
-
i({ type: Boolean })
|
|
236
|
+
i({ type: Boolean, reflect: !0 })
|
|
237
237
|
], t.prototype, "required", 2);
|
|
238
238
|
r([
|
|
239
|
-
i({ type: String })
|
|
239
|
+
i({ type: String, reflect: !0 })
|
|
240
240
|
], t.prototype, "name", 2);
|
|
241
241
|
r([
|
|
242
|
-
i({ type: String })
|
|
242
|
+
i({ type: String, reflect: !0 })
|
|
243
243
|
], t.prototype, "autocomplete", 2);
|
|
244
244
|
r([
|
|
245
|
-
i({ type: String })
|
|
245
|
+
i({ type: String, reflect: !0 })
|
|
246
246
|
], t.prototype, "inputmode", 2);
|
|
247
247
|
r([
|
|
248
|
-
i({ type: Number })
|
|
248
|
+
i({ type: Number, reflect: !0 })
|
|
249
249
|
], t.prototype, "maxlength", 2);
|
|
250
250
|
r([
|
|
251
251
|
i({ type: Object })
|
|
252
252
|
], t.prototype, "sx", 2);
|
|
253
253
|
r([
|
|
254
|
-
|
|
254
|
+
c()
|
|
255
255
|
], t.prototype, "inputId", 2);
|
|
256
256
|
r([
|
|
257
|
-
|
|
257
|
+
c()
|
|
258
258
|
], t.prototype, "isFocused", 2);
|
|
259
259
|
t = r([
|
|
260
260
|
b("tc-input")
|
|
@@ -12,6 +12,8 @@ import { SxProps } from '../types.js';
|
|
|
12
12
|
* @csspart content - The main content container
|
|
13
13
|
* @csspart suffix - The suffix container
|
|
14
14
|
* @csspart arrow - The arrow indicator
|
|
15
|
+
* @attr {boolean} disabled - Whether the button is disabled
|
|
16
|
+
* @attr {boolean} show-arrow - Whether to show the arrow indicator
|
|
15
17
|
*/
|
|
16
18
|
export declare class TcItemButton extends LitElement {
|
|
17
19
|
disabled: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-item-button.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-item-button.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAG5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C
|
|
1
|
+
{"version":3,"file":"tc-item-button.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-item-button.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAG5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C;;;;;;;;;;;;;;GAcG;AACH,qBACa,YAAa,SAAQ,UAAU;IACE,QAAQ,UAAS;IAE7D,SAAS,UAAQ;IACW,EAAE,EAAE,OAAO,CAAM;IAE7C,OAAgB,MAAM,0BAsFpB;IAEF,OAAO,CAAC,WAAW;IAWV,MAAM;CA6ChB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,gBAAgB,EAAE,YAAY,CAAC;KAChC;CACF"}
|
|
@@ -147,10 +147,10 @@ e.styles = c`
|
|
|
147
147
|
}
|
|
148
148
|
`;
|
|
149
149
|
s([
|
|
150
|
-
d({ type: Boolean })
|
|
150
|
+
d({ type: Boolean, reflect: !0 })
|
|
151
151
|
], e.prototype, "disabled", 2);
|
|
152
152
|
s([
|
|
153
|
-
d({ type: Boolean, attribute: "show-arrow" })
|
|
153
|
+
d({ type: Boolean, reflect: !0, attribute: "show-arrow" })
|
|
154
154
|
], e.prototype, "showArrow", 2);
|
|
155
155
|
s([
|
|
156
156
|
d({ type: Object })
|
|
@@ -10,6 +10,10 @@ import { SxProps } from '../types.js';
|
|
|
10
10
|
* @csspart cell - Individual cell input
|
|
11
11
|
* @csspart progress - The progress bar container
|
|
12
12
|
* @csspart progress-bar - The progress bar fill
|
|
13
|
+
* @attr {number} length - The number of OTP cells
|
|
14
|
+
* @attr {boolean} error - Whether to show error state
|
|
15
|
+
* @attr {boolean} disabled - Whether the input is disabled
|
|
16
|
+
* @attr {boolean} show-progress - Whether to show the progress bar
|
|
13
17
|
*/
|
|
14
18
|
export declare class TcOtpInput extends LitElement {
|
|
15
19
|
length: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-otp-input.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-otp-input.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAI5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C
|
|
1
|
+
{"version":3,"file":"tc-otp-input.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-otp-input.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAI5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C;;;;;;;;;;;;;;GAcG;AACH,qBACa,UAAW,SAAQ,UAAU;IACG,MAAM,SAAK;IACV,KAAK,UAAS;IACd,QAAQ,UAAS;IAE7D,YAAY,UAAQ;IACQ,EAAE,EAAE,OAAO,CAAM;IAEpC,OAAO,CAAC,MAAM,CAAgB;IAEvC,OAAgB,MAAM,4BA2FpB;IAEO,iBAAiB;IAKjB,MAAM;IAoDf,OAAO,CAAC,WAAW;IAgCnB,OAAO,CAAC,aAAa;IAerB,OAAO,CAAC,WAAW;IAoCnB,OAAO,CAAC,SAAS;IASjB,kDAAkD;IAClD,KAAK;IAML,uBAAuB;IACvB,KAAK;IAKL,gCAAgC;IAChC,QAAQ,IAAI,MAAM;CAGnB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,cAAc,EAAE,UAAU,CAAC;KAC5B;CACF"}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { css as u, LitElement as p, html as h } from "lit";
|
|
2
2
|
import { property as c, state as d, customElement as v } from "lit/decorators.js";
|
|
3
3
|
import { styleMap as m } from "lit/directives/style-map.js";
|
|
4
|
-
import { sharedStyles as
|
|
5
|
-
var
|
|
6
|
-
for (var
|
|
7
|
-
(
|
|
8
|
-
return r &&
|
|
4
|
+
import { sharedStyles as f } from "../styles/shared.js";
|
|
5
|
+
var g = Object.defineProperty, b = Object.getOwnPropertyDescriptor, n = (t, e, s, r) => {
|
|
6
|
+
for (var l = r > 1 ? void 0 : r ? b(e, s) : e, o = t.length - 1, a; o >= 0; o--)
|
|
7
|
+
(a = t[o]) && (l = (r ? a(e, s, l) : a(l)) || l);
|
|
8
|
+
return r && l && g(e, s, l), l;
|
|
9
9
|
};
|
|
10
10
|
let i = class extends p {
|
|
11
11
|
constructor() {
|
|
@@ -36,9 +36,9 @@ let i = class extends p {
|
|
|
36
36
|
.value=${s}
|
|
37
37
|
?disabled=${this.disabled}
|
|
38
38
|
aria-label="Digit ${r + 1}"
|
|
39
|
-
@input=${(
|
|
40
|
-
@keydown=${(
|
|
41
|
-
@paste=${(
|
|
39
|
+
@input=${(a) => this.handleInput(a, r)}
|
|
40
|
+
@keydown=${(a) => this.handleKeydown(a, r)}
|
|
41
|
+
@paste=${(a) => this.handlePaste(a)}
|
|
42
42
|
/>
|
|
43
43
|
`;
|
|
44
44
|
})}
|
|
@@ -63,7 +63,7 @@ let i = class extends p {
|
|
|
63
63
|
composed: !0,
|
|
64
64
|
detail: { value: this.values.join(""), values: [...this.values] }
|
|
65
65
|
})
|
|
66
|
-
), r && e < this.length - 1 && this.focusCell(e + 1), this.values.every((
|
|
66
|
+
), r && e < this.length - 1 && this.focusCell(e + 1), this.values.every((l) => l.length > 0) && this.dispatchEvent(
|
|
67
67
|
new CustomEvent("tc-complete", {
|
|
68
68
|
bubbles: !0,
|
|
69
69
|
composed: !0,
|
|
@@ -78,8 +78,8 @@ let i = class extends p {
|
|
|
78
78
|
t.preventDefault();
|
|
79
79
|
const s = (t.clipboardData?.getData("text") || "").replace(/\D/g, "").slice(0, this.length);
|
|
80
80
|
if (s) {
|
|
81
|
-
this.values = new Array(this.length).fill(""), s.split("").forEach((
|
|
82
|
-
this.values[o] =
|
|
81
|
+
this.values = new Array(this.length).fill(""), s.split("").forEach((l, o) => {
|
|
82
|
+
this.values[o] = l;
|
|
83
83
|
}), this.values = [...this.values];
|
|
84
84
|
const r = Math.min(s.length, this.length - 1);
|
|
85
85
|
this.focusCell(r), this.dispatchEvent(
|
|
@@ -119,7 +119,7 @@ let i = class extends p {
|
|
|
119
119
|
}
|
|
120
120
|
};
|
|
121
121
|
i.styles = [
|
|
122
|
-
|
|
122
|
+
f,
|
|
123
123
|
u`
|
|
124
124
|
:host {
|
|
125
125
|
display: block;
|
|
@@ -211,16 +211,16 @@ i.styles = [
|
|
|
211
211
|
`
|
|
212
212
|
];
|
|
213
213
|
n([
|
|
214
|
-
c({ type: Number })
|
|
214
|
+
c({ type: Number, reflect: !0 })
|
|
215
215
|
], i.prototype, "length", 2);
|
|
216
216
|
n([
|
|
217
|
-
c({ type: Boolean })
|
|
217
|
+
c({ type: Boolean, reflect: !0 })
|
|
218
218
|
], i.prototype, "error", 2);
|
|
219
219
|
n([
|
|
220
|
-
c({ type: Boolean })
|
|
220
|
+
c({ type: Boolean, reflect: !0 })
|
|
221
221
|
], i.prototype, "disabled", 2);
|
|
222
222
|
n([
|
|
223
|
-
c({ type: Boolean, attribute: "show-progress" })
|
|
223
|
+
c({ type: Boolean, reflect: !0, attribute: "show-progress" })
|
|
224
224
|
], i.prototype, "showProgress", 2);
|
|
225
225
|
n([
|
|
226
226
|
c({ type: Object })
|
|
@@ -6,6 +6,7 @@ import { SxProps } from '../types.js';
|
|
|
6
6
|
*
|
|
7
7
|
* @csspart decoration - The decoration container
|
|
8
8
|
* @csspart blob - Individual blob element
|
|
9
|
+
* @attr {string} variant - The decoration color variant (primary | success | error)
|
|
9
10
|
*/
|
|
10
11
|
export declare class TcPageDecoration extends LitElement {
|
|
11
12
|
variant: 'primary' | 'success' | 'error';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-page-decoration.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-page-decoration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAI5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C
|
|
1
|
+
{"version":3,"file":"tc-page-decoration.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-page-decoration.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAI5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C;;;;;;;GAOG;AACH,qBACa,gBAAiB,SAAQ,UAAU;IACH,OAAO,EAC9C,SAAS,GACT,SAAS,GACT,OAAO,CAAa;IACI,EAAE,EAAE,OAAO,CAAM;IAE7C,OAAgB,MAAM,4BA8FpB;IAEO,MAAM;CAShB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,oBAAoB,EAAE,gBAAgB,CAAC;KACxC;CACF"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { css as
|
|
2
|
-
import { property as
|
|
1
|
+
import { css as b, LitElement as d, html as m } from "lit";
|
|
2
|
+
import { property as c, customElement as p } from "lit/decorators.js";
|
|
3
3
|
import { styleMap as v } from "lit/directives/style-map.js";
|
|
4
4
|
import { sharedStyles as u } from "../styles/shared.js";
|
|
5
5
|
var f = Object.defineProperty, h = Object.getOwnPropertyDescriptor, n = (l, t, o, a) => {
|
|
@@ -23,7 +23,7 @@ let e = class extends d {
|
|
|
23
23
|
};
|
|
24
24
|
e.styles = [
|
|
25
25
|
u,
|
|
26
|
-
|
|
26
|
+
b`
|
|
27
27
|
:host {
|
|
28
28
|
position: absolute;
|
|
29
29
|
inset: 0;
|
|
@@ -117,10 +117,10 @@ e.styles = [
|
|
|
117
117
|
`
|
|
118
118
|
];
|
|
119
119
|
n([
|
|
120
|
-
|
|
120
|
+
c({ type: String, reflect: !0 })
|
|
121
121
|
], e.prototype, "variant", 2);
|
|
122
122
|
n([
|
|
123
|
-
|
|
123
|
+
c({ type: Object })
|
|
124
124
|
], e.prototype, "sx", 2);
|
|
125
125
|
e = n([
|
|
126
126
|
p("tc-page-decoration")
|
|
@@ -5,6 +5,7 @@ import { SxProps } from '../types.js';
|
|
|
5
5
|
* Uses spin animation from design-tokens.
|
|
6
6
|
*
|
|
7
7
|
* @csspart spinner - The spinner element
|
|
8
|
+
* @attr {string} size - The spinner size (sm | md | lg | auto)
|
|
8
9
|
*/
|
|
9
10
|
export declare class TcSpinner extends LitElement {
|
|
10
11
|
private mobile;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-spinner.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-spinner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAK5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C
|
|
1
|
+
{"version":3,"file":"tc-spinner.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-spinner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAK5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C;;;;;;GAMG;AACH,qBACa,SAAU,SAAQ,UAAU;IACvC,OAAO,CAAC,MAAM,CAAwD;IAE3B,IAAI,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,MAAM,CACnE;IACmB,EAAE,EAAE,OAAO,CAAM;IAE7C,OAAgB,MAAM,4BAgDpB;IAEO,MAAM;CAwBhB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,YAAY,EAAE,SAAS,CAAC;KACzB;CACF"}
|
|
@@ -3,8 +3,8 @@ import { property as l, customElement as v } from "lit/decorators.js";
|
|
|
3
3
|
import { styleMap as b } from "lit/directives/style-map.js";
|
|
4
4
|
import { MatchMediaController as c } from "../controllers/match-media.controller.js";
|
|
5
5
|
import { sharedStyles as w } from "../styles/shared.js";
|
|
6
|
-
var z = Object.defineProperty,
|
|
7
|
-
for (var e = n > 1 ? void 0 : n ?
|
|
6
|
+
var z = Object.defineProperty, u = Object.getOwnPropertyDescriptor, p = (r, i, s, n) => {
|
|
7
|
+
for (var e = n > 1 ? void 0 : n ? u(i, s) : i, o = r.length - 1, a; o >= 0; o--)
|
|
8
8
|
(a = r[o]) && (e = (n ? a(i, s, e) : a(e)) || e);
|
|
9
9
|
return n && e && z(i, s, e), e;
|
|
10
10
|
};
|
|
@@ -77,7 +77,7 @@ t.styles = [
|
|
|
77
77
|
`
|
|
78
78
|
];
|
|
79
79
|
p([
|
|
80
|
-
l({ type: String })
|
|
80
|
+
l({ type: String, reflect: !0 })
|
|
81
81
|
], t.prototype, "size", 2);
|
|
82
82
|
p([
|
|
83
83
|
l({ type: Object })
|
|
@@ -11,6 +11,11 @@ type TextColor = 'primary' | 'secondary' | 'tertiary' | 'muted' | 'accent' | 'su
|
|
|
11
11
|
*
|
|
12
12
|
* @slot - Text content
|
|
13
13
|
* @csspart text - The text element
|
|
14
|
+
* @attr {string} tag - The HTML tag to render (p | span | div | h1-h6 | label)
|
|
15
|
+
* @attr {string} size - The text size (sm | base | lg | xl | 2xl)
|
|
16
|
+
* @attr {string} weight - The font weight (400 | 500 | 600 | 700)
|
|
17
|
+
* @attr {string} color - The text color (primary | secondary | tertiary | muted | accent | success | error | warning | info)
|
|
18
|
+
* @attr {string} for - The target input ID for label tags
|
|
14
19
|
*/
|
|
15
20
|
export declare class TcText extends LitElement {
|
|
16
21
|
tag: TextTag;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-text.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-text.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,UAAU,EAAE,MAAM,KAAK,CAAC;AAKtC,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C,KAAK,OAAO,GACR,GAAG,GACH,MAAM,GACN,KAAK,GACL,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,OAAO,CAAC;AAEZ,KAAK,QAAQ,GAAG,IAAI,GAAG,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,CAAC;AACpD,KAAK,UAAU,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC;AAChD,KAAK,SAAS,GACV,SAAS,GACT,WAAW,GACX,UAAU,GACV,OAAO,GACP,QAAQ,GACR,SAAS,GACT,OAAO,GACP,SAAS,GACT,MAAM,CAAC;AAEX
|
|
1
|
+
{"version":3,"file":"tc-text.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-text.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,UAAU,EAAE,MAAM,KAAK,CAAC;AAKtC,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C,KAAK,OAAO,GACR,GAAG,GACH,MAAM,GACN,KAAK,GACL,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,IAAI,GACJ,OAAO,CAAC;AAEZ,KAAK,QAAQ,GAAG,IAAI,GAAG,MAAM,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,CAAC;AACpD,KAAK,UAAU,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC;AAChD,KAAK,SAAS,GACV,SAAS,GACT,WAAW,GACX,UAAU,GACV,OAAO,GACP,QAAQ,GACR,SAAS,GACT,OAAO,GACP,SAAS,GACT,MAAM,CAAC;AAEX;;;;;;;;;;;;GAYG;AACH,qBACa,MAAO,SAAQ,UAAU;IACO,GAAG,EAAE,OAAO,CAAO;IACnB,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,MAAM,CAAC,EAAE,UAAU,CAAC;IACpB,KAAK,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC;IAC1C,EAAE,EAAE,OAAO,CAAM;IACF,GAAG,SAAM;IAEpD,OAAgB,MAAM,4BA2EpB;IAEF,OAAO,CAAC,aAAa;IAmBrB,OAAO,CAAC,aAAa;IAgBZ,YAAY;IAyBZ,MAAM;CA4BhB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,SAAS,EAAE,MAAM,CAAC;KACnB;CACF"}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { css as
|
|
1
|
+
import { css as f, LitElement as p } from "lit";
|
|
2
2
|
import { property as a, customElement as h } from "lit/decorators.js";
|
|
3
3
|
import { styleMap as x } from "lit/directives/style-map.js";
|
|
4
4
|
import { unsafeStatic as g, html as m } from "lit/static-html.js";
|
|
5
5
|
import { sharedStyles as y } from "../styles/shared.js";
|
|
6
|
-
var
|
|
7
|
-
for (var o = n > 1 ? void 0 : n ?
|
|
6
|
+
var u = Object.defineProperty, v = Object.getOwnPropertyDescriptor, s = (r, t, i, n) => {
|
|
7
|
+
for (var o = n > 1 ? void 0 : n ? v(t, i) : t, c = r.length - 1, l; c >= 0; c--)
|
|
8
8
|
(l = r[c]) && (o = (n ? l(t, i, o) : l(o)) || o);
|
|
9
|
-
return n && o &&
|
|
9
|
+
return n && o && u(t, i, o), o;
|
|
10
10
|
};
|
|
11
|
-
let e = class extends
|
|
11
|
+
let e = class extends p {
|
|
12
12
|
constructor() {
|
|
13
13
|
super(...arguments), this.tag = "p", this.sx = {}, this.for = "";
|
|
14
14
|
}
|
|
@@ -59,7 +59,7 @@ let e = class extends f {
|
|
|
59
59
|
};
|
|
60
60
|
e.styles = [
|
|
61
61
|
y,
|
|
62
|
-
|
|
62
|
+
f`
|
|
63
63
|
:host {
|
|
64
64
|
display: contents;
|
|
65
65
|
}
|
|
@@ -134,22 +134,22 @@ e.styles = [
|
|
|
134
134
|
`
|
|
135
135
|
];
|
|
136
136
|
s([
|
|
137
|
-
a({ type: String })
|
|
137
|
+
a({ type: String, reflect: !0 })
|
|
138
138
|
], e.prototype, "tag", 2);
|
|
139
139
|
s([
|
|
140
|
-
a({ type: String })
|
|
140
|
+
a({ type: String, reflect: !0 })
|
|
141
141
|
], e.prototype, "size", 2);
|
|
142
142
|
s([
|
|
143
|
-
a({ type: String })
|
|
143
|
+
a({ type: String, reflect: !0 })
|
|
144
144
|
], e.prototype, "weight", 2);
|
|
145
145
|
s([
|
|
146
|
-
a({ type: String })
|
|
146
|
+
a({ type: String, reflect: !0 })
|
|
147
147
|
], e.prototype, "color", 2);
|
|
148
148
|
s([
|
|
149
149
|
a({ type: Object })
|
|
150
150
|
], e.prototype, "sx", 2);
|
|
151
151
|
s([
|
|
152
|
-
a({ type: String })
|
|
152
|
+
a({ type: String, reflect: !0 })
|
|
153
153
|
], e.prototype, "for", 2);
|
|
154
154
|
e = s([
|
|
155
155
|
h("tc-text")
|
|
@@ -8,6 +8,10 @@ import { SxProps } from '../types.js';
|
|
|
8
8
|
* @csspart toast - The toast container
|
|
9
9
|
* @csspart content - The content container
|
|
10
10
|
* @csspart close - The close button
|
|
11
|
+
* @attr {string} variant - The toast variant (info | success | warning | error)
|
|
12
|
+
* @attr {number} duration - The auto-dismiss duration in milliseconds
|
|
13
|
+
* @attr {boolean} auto-dismiss - Whether to auto-dismiss after duration
|
|
14
|
+
* @attr {boolean} dismissible - Whether the toast can be dismissed manually
|
|
11
15
|
*/
|
|
12
16
|
export declare class TcToast extends LitElement {
|
|
13
17
|
variant: 'info' | 'success' | 'warning' | 'error';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-toast.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-toast.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAK5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C
|
|
1
|
+
{"version":3,"file":"tc-toast.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-toast.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAK5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C;;;;;;;;;;;;GAYG;AACH,qBACa,OAAQ,SAAQ,UAAU;IACM,OAAO,EAC9C,MAAM,GACN,SAAS,GACT,SAAS,GACT,OAAO,CAAU;IACsB,QAAQ,SAAQ;IAE3D,WAAW,UAAQ;IACyB,WAAW,UAAQ;IACnC,EAAE,EAAE,OAAO,CAAM;IAE7C,OAAO,CAAC,SAAS,CAGd;IAEH,OAAO,CAAC,YAAY,CAAC,CAAgC;IAErD,OAAgB,MAAM,4BA6FpB;IAEO,iBAAiB;IAKjB,oBAAoB;IAK7B,OAAO,CAAC,eAAe;IAIvB,OAAO,CAAC,iBAAiB;IAOzB,OAAO,CAAC,iBAAiB;IASnB,IAAI;IAOJ,IAAI;IAaV,OAAO,CAAC,WAAW;IAIV,MAAM;CAuChB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,UAAU,EAAE,OAAO,CAAC;KACrB;CACF"}
|
|
@@ -2,11 +2,11 @@ import { css as h, LitElement as m, html as d } from "lit";
|
|
|
2
2
|
import { property as e, customElement as p } from "lit/decorators.js";
|
|
3
3
|
import { styleMap as u } from "lit/directives/style-map.js";
|
|
4
4
|
import { AnimationController as v } from "../controllers/animation.controller.js";
|
|
5
|
-
import { sharedStyles as
|
|
6
|
-
var
|
|
7
|
-
for (var s =
|
|
8
|
-
(l = c[n]) && (s = (
|
|
9
|
-
return
|
|
5
|
+
import { sharedStyles as f } from "../styles/shared.js";
|
|
6
|
+
var y = Object.defineProperty, b = Object.getOwnPropertyDescriptor, i = (c, a, o, r) => {
|
|
7
|
+
for (var s = r > 1 ? void 0 : r ? b(a, o) : a, n = c.length - 1, l; n >= 0; n--)
|
|
8
|
+
(l = c[n]) && (s = (r ? l(a, o, s) : l(s)) || s);
|
|
9
|
+
return r && s && y(a, o, s), s;
|
|
10
10
|
};
|
|
11
11
|
let t = class extends m {
|
|
12
12
|
constructor() {
|
|
@@ -83,7 +83,7 @@ let t = class extends m {
|
|
|
83
83
|
}
|
|
84
84
|
};
|
|
85
85
|
t.styles = [
|
|
86
|
-
|
|
86
|
+
f,
|
|
87
87
|
h`
|
|
88
88
|
:host {
|
|
89
89
|
display: block;
|
|
@@ -177,16 +177,16 @@ t.styles = [
|
|
|
177
177
|
`
|
|
178
178
|
];
|
|
179
179
|
i([
|
|
180
|
-
e({ type: String })
|
|
180
|
+
e({ type: String, reflect: !0 })
|
|
181
181
|
], t.prototype, "variant", 2);
|
|
182
182
|
i([
|
|
183
|
-
e({ type: Number })
|
|
183
|
+
e({ type: Number, reflect: !0 })
|
|
184
184
|
], t.prototype, "duration", 2);
|
|
185
185
|
i([
|
|
186
|
-
e({ type: Boolean, attribute: "auto-dismiss" })
|
|
186
|
+
e({ type: Boolean, reflect: !0, attribute: "auto-dismiss" })
|
|
187
187
|
], t.prototype, "autoDismiss", 2);
|
|
188
188
|
i([
|
|
189
|
-
e({ type: Boolean })
|
|
189
|
+
e({ type: Boolean, reflect: !0 })
|
|
190
190
|
], t.prototype, "dismissible", 2);
|
|
191
191
|
i([
|
|
192
192
|
e({ type: Object })
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-error-screen.d.ts","sourceRoot":"","sources":["../../src/screens/tc-error-screen.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAI5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,0BAA0B,CAAC;AAClC,OAAO,0BAA0B,CAAC;AAClC,OAAO,4BAA4B,CAAC;AACpC,OAAO,+BAA+B,CAAC;AACvC,OAAO,6BAA6B,CAAC;AAErC;;;;;;;;;;GAUG;AACH,qBACa,aAAc,SAAQ,UAAU;
|
|
1
|
+
{"version":3,"file":"tc-error-screen.d.ts","sourceRoot":"","sources":["../../src/screens/tc-error-screen.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAI5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,0BAA0B,CAAC;AAClC,OAAO,0BAA0B,CAAC;AAClC,OAAO,4BAA4B,CAAC;AACpC,OAAO,+BAA+B,CAAC;AACvC,OAAO,6BAA6B,CAAC;AAErC;;;;;;;;;;GAUG;AACH,qBACa,aAAc,SAAQ,UAAU;IACA,KAAK,SAA0B;IAC/B,OAAO,SACE;IAEpD,UAAU,SAAe;IAEzB,SAAS,UAAQ;IAEjB,WAAW,UAAQ;IACS,EAAE,EAAE,OAAO,CAAM;IAEpC,OAAO,CAAC,UAAU,CAAS;IAEpC,OAAO,CAAC,SAAS,CAGd;IAEH,OAAgB,MAAM,0BAkFpB;IAEO,iBAAiB;IASpB,aAAa;IAKnB,OAAO,CAAC,WAAW;IASV,MAAM;CAkChB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,iBAAiB,EAAE,aAAa,CAAC;KAClC;CACF"}
|