@transcodes/ui-components 0.3.6 → 0.4.1
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 +41 -0
- package/README.md +8 -22
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/primitives/tc-box.d.ts +2 -1
- package/dist/primitives/tc-box.d.ts.map +1 -1
- package/dist/primitives/tc-button.d.ts +2 -1
- package/dist/primitives/tc-button.d.ts.map +1 -1
- package/dist/primitives/tc-callout.d.ts +2 -0
- package/dist/primitives/tc-callout.d.ts.map +1 -1
- package/dist/primitives/tc-callout.js +21 -17
- package/dist/primitives/tc-card.d.ts +2 -1
- package/dist/primitives/tc-card.d.ts.map +1 -1
- 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 +26 -17
- package/dist/primitives/tc-container.d.ts +2 -1
- package/dist/primitives/tc-container.d.ts.map +1 -1
- package/dist/primitives/tc-divider.d.ts +2 -2
- package/dist/primitives/tc-divider.d.ts.map +1 -1
- package/dist/primitives/tc-divider.js +23 -22
- 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 +18 -15
- package/dist/primitives/tc-form-header.d.ts +2 -1
- package/dist/primitives/tc-form-header.d.ts.map +1 -1
- package/dist/primitives/tc-icon.d.ts +2 -2
- package/dist/primitives/tc-icon.d.ts.map +1 -1
- package/dist/primitives/tc-icon.js +61 -61
- package/dist/primitives/tc-input-with-chip.d.ts +2 -0
- package/dist/primitives/tc-input-with-chip.d.ts.map +1 -1
- package/dist/primitives/tc-input-with-chip.js +17 -13
- package/dist/primitives/tc-input.d.ts +2 -1
- package/dist/primitives/tc-input.d.ts.map +1 -1
- package/dist/primitives/tc-item-button.d.ts +2 -3
- package/dist/primitives/tc-item-button.d.ts.map +1 -1
- package/dist/primitives/tc-item-button.js +28 -34
- package/dist/primitives/tc-item.d.ts +2 -3
- package/dist/primitives/tc-item.d.ts.map +1 -1
- package/dist/primitives/tc-item.js +20 -26
- package/dist/primitives/tc-otp-input.d.ts +2 -0
- package/dist/primitives/tc-otp-input.d.ts.map +1 -1
- package/dist/primitives/tc-otp-input.js +11 -7
- package/dist/primitives/tc-page-decoration.d.ts +2 -0
- package/dist/primitives/tc-page-decoration.d.ts.map +1 -1
- package/dist/primitives/tc-page-decoration.js +24 -20
- package/dist/primitives/tc-section.d.ts +2 -2
- package/dist/primitives/tc-section.d.ts.map +1 -1
- package/dist/primitives/tc-section.js +20 -23
- package/dist/primitives/tc-spinner.d.ts +2 -1
- package/dist/primitives/tc-spinner.d.ts.map +1 -1
- package/dist/primitives/tc-spinner.js +25 -22
- package/dist/primitives/tc-symbol.d.ts +2 -3
- package/dist/primitives/tc-symbol.d.ts.map +1 -1
- package/dist/primitives/tc-symbol.js +24 -28
- package/dist/primitives/tc-text.d.ts +2 -1
- package/dist/primitives/tc-text.d.ts.map +1 -1
- package/dist/primitives/tc-toast.d.ts +2 -0
- package/dist/primitives/tc-toast.d.ts.map +1 -1
- package/dist/primitives/tc-toast.js +33 -23
- package/dist/screens/tc-error-screen.d.ts +2 -0
- package/dist/screens/tc-error-screen.d.ts.map +1 -1
- package/dist/screens/tc-error-screen.js +35 -31
- package/dist/screens/tc-loading-screen.d.ts +2 -0
- package/dist/screens/tc-loading-screen.d.ts.map +1 -1
- package/dist/screens/tc-loading-screen.js +19 -15
- package/dist/screens/tc-success-screen.d.ts +2 -0
- package/dist/screens/tc-success-screen.d.ts.map +1 -1
- package/dist/screens/tc-success-screen.js +27 -23
- package/dist/types.d.ts +34 -0
- package/dist/types.d.ts.map +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,47 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.4.1] - 2025-12-23
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **tc-chip**: 텍스트에 `text-transform: uppercase` 적용
|
|
13
|
+
- **tc-success-screen**: 아이콘 색상을 `--accent-primary` 기반으로 변경
|
|
14
|
+
- 외부에서 `--accent-primary` 커스텀 시 아이콘 배경/색상 변경 가능
|
|
15
|
+
- `--alpha-success10` → `--alpha-primary10`
|
|
16
|
+
- `--accent-success` → `--accent-primary`
|
|
17
|
+
|
|
18
|
+
### Removed
|
|
19
|
+
|
|
20
|
+
- **tc-success-screen**: `.icon-container` 배경색 제거 (tc-loading-screen과 일관성 유지)
|
|
21
|
+
|
|
22
|
+
## [0.4.0] - 2025-12-17
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
- **인터페이스 통합**: 모든 컴포넌트의 스타일 커스터마이징을 `sx` prop으로 일원화
|
|
27
|
+
- Raw CSS props 제거 (tc-box, tc-container, tc-icon 등)
|
|
28
|
+
- SxProps 타입의 일관된 적용
|
|
29
|
+
- 문서 간소화 및 API Reference 강화
|
|
30
|
+
|
|
31
|
+
### Removed
|
|
32
|
+
|
|
33
|
+
- **Raw CSS props 제거** (Breaking Change):
|
|
34
|
+
- tc-box: `width`, `height`, `padding`, `margin`, `background`, `border-radius`, `box-shadow`, `display`, `flex-direction`, `align-items`, `justify-content`, `gap`
|
|
35
|
+
- tc-container: `padding`
|
|
36
|
+
- tc-icon: `size`, `color`
|
|
37
|
+
- tc-section: `gap`
|
|
38
|
+
- tc-divider: `color`, `thickness`, `margin`
|
|
39
|
+
|
|
40
|
+
**Migration**: Raw CSS props를 사용하던 코드는 `.sx` prop으로 변경하세요.
|
|
41
|
+
```typescript
|
|
42
|
+
// Before
|
|
43
|
+
<tc-box padding="2rem" background="var(--paper-warm)">
|
|
44
|
+
|
|
45
|
+
// After
|
|
46
|
+
<tc-box .sx=${{ padding: '2rem', background: 'var(--paper-warm)' }}>
|
|
47
|
+
```
|
|
48
|
+
|
|
8
49
|
## [0.3.6] - 2025-12-17
|
|
9
50
|
|
|
10
51
|
### Changed
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @transcodes/ui-components
|
|
2
2
|
|
|
3
|
-
A modern web component library built with [Lit 3.x](https://lit.dev/). Features a comprehensive set of UI primitives,
|
|
3
|
+
A modern web component library built with [Lit 3.x](https://lit.dev/). Features a comprehensive set of UI primitives, full-screen components, and reusable Reactive Controllers.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@transcodes/ui-components)
|
|
6
6
|
[](https://github.com/transcodings/transcodes-ui/blob/main/packages/ui-components/LICENSE)
|
|
@@ -57,7 +57,7 @@ import '@transcodes/design-tokens';
|
|
|
57
57
|
|
|
58
58
|
// Import specific component categories
|
|
59
59
|
import { TcButton, TcInput } from '@transcodes/ui-components/primitives';
|
|
60
|
-
import {
|
|
60
|
+
import { TcLoadingScreen } from '@transcodes/ui-components/screens';
|
|
61
61
|
import { LoadingController } from '@transcodes/ui-components/controllers';
|
|
62
62
|
```
|
|
63
63
|
|
|
@@ -69,7 +69,7 @@ import { LoadingController } from '@transcodes/ui-components/controllers';
|
|
|
69
69
|
|
|
70
70
|
## Components
|
|
71
71
|
|
|
72
|
-
### Primitives (
|
|
72
|
+
### Primitives (22)
|
|
73
73
|
|
|
74
74
|
Core UI building blocks with consistent styling and behavior.
|
|
75
75
|
|
|
@@ -85,31 +85,18 @@ Core UI building blocks with consistent styling and behavior.
|
|
|
85
85
|
| `<tc-spinner>` | Loading indicator |
|
|
86
86
|
| `<tc-toast>` | Toast notification |
|
|
87
87
|
| `<tc-callout>` | Alert/info box with icon slot |
|
|
88
|
+
| `<tc-error-message>` | Error/warning/info message (callout wrapper) |
|
|
88
89
|
| `<tc-divider>` | Visual separator with optional text |
|
|
89
90
|
| `<tc-card>` | Card container |
|
|
90
91
|
| `<tc-box>` | Flexible box wrapper |
|
|
91
92
|
| `<tc-container>` | Layout container |
|
|
92
93
|
| `<tc-section>` | Page section |
|
|
94
|
+
| `<tc-layout>` | Flex/grid layout wrapper |
|
|
93
95
|
| `<tc-item>` | List item |
|
|
94
96
|
| `<tc-item-button>` | Clickable list item |
|
|
95
97
|
| `<tc-symbol>` | Symbol/logo display |
|
|
96
98
|
| `<tc-form-header>` | Form header with title and description |
|
|
97
|
-
| `<tc-
|
|
98
|
-
|
|
99
|
-
### Widgets (8)
|
|
100
|
-
|
|
101
|
-
Complex components composed of primitives.
|
|
102
|
-
|
|
103
|
-
| Component | Description |
|
|
104
|
-
|-----------|-------------|
|
|
105
|
-
| `<tc-notification-modal>` | Modal dialog for notifications |
|
|
106
|
-
| `<tc-offline-modal>` | Offline state indicator modal |
|
|
107
|
-
| `<tc-iframe-modal>` | Modal with embedded iframe |
|
|
108
|
-
| `<tc-floating-button>` | Floating action button |
|
|
109
|
-
| `<tc-installation-banner>` | PWA installation prompt |
|
|
110
|
-
| `<tc-ios-installation-guide>` | iOS PWA installation guide |
|
|
111
|
-
| `<tc-page-decoration>` | Page background decoration |
|
|
112
|
-
| `<tc-authenticator-card>` | Authenticator info card (passkey, TOTP, USB) |
|
|
99
|
+
| `<tc-page-decoration>` | Page background decoration (gradient, dots, grid) |
|
|
113
100
|
|
|
114
101
|
### Screens (3)
|
|
115
102
|
|
|
@@ -198,9 +185,8 @@ All components accept an `sx` prop for inline style overrides:
|
|
|
198
185
|
|
|
199
186
|
| Path | Description | Bundle Impact |
|
|
200
187
|
|------|-------------|---------------|
|
|
201
|
-
| `@transcodes/ui-components` | All components | ~
|
|
202
|
-
| `@transcodes/ui-components/primitives` | Primitive components only | ~
|
|
203
|
-
| `@transcodes/ui-components/widgets` | Widget components only | ~50 KB |
|
|
188
|
+
| `@transcodes/ui-components` | All components | ~80 KB |
|
|
189
|
+
| `@transcodes/ui-components/primitives` | Primitive components only | ~65 KB |
|
|
204
190
|
| `@transcodes/ui-components/screens` | Screen components only | ~10 KB |
|
|
205
191
|
| `@transcodes/ui-components/controllers` | Reactive Controllers | ~7 KB |
|
|
206
192
|
|
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA,cAAc,wBAAwB,CAAC;AAEvC,cAAc,uBAAuB,CAAC;AAEtC,cAAc,oBAAoB,CAAC;AACnC,cAAc,YAAY,CAAC"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
+
import { SxProps } from '../types.js';
|
|
2
3
|
/**
|
|
3
4
|
* A simple container component without default flex layout.
|
|
4
5
|
* Use for wrapping content with custom styles.
|
|
@@ -7,7 +8,7 @@ import { LitElement } from 'lit';
|
|
|
7
8
|
* @csspart box - The container element
|
|
8
9
|
*/
|
|
9
10
|
export declare class TcBox extends LitElement {
|
|
10
|
-
sx:
|
|
11
|
+
sx: SxProps;
|
|
11
12
|
static styles: import('lit').CSSResult;
|
|
12
13
|
render(): import('lit').TemplateResult<1>;
|
|
13
14
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-box.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-box.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"tc-box.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-box.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAG5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C;;;;;;GAMG;AACH,qBACa,KAAM,SAAQ,UAAU;IACP,EAAE,EAAE,OAAO,CAAM;IAE7C,OAAgB,MAAM,0BAQpB;IAEO,MAAM;CAOhB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,QAAQ,EAAE,KAAK,CAAC;KACjB;CACF"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
+
import { SxProps } from '../types.js';
|
|
2
3
|
/**
|
|
3
4
|
* Primary button component with loading states.
|
|
4
5
|
* Uses design-tokens component classes (.button, .button-primary, etc.)
|
|
@@ -12,7 +13,7 @@ export declare class TcButton extends LitElement {
|
|
|
12
13
|
disabled: boolean;
|
|
13
14
|
loading: boolean;
|
|
14
15
|
variant: 'primary' | 'secondary' | 'success';
|
|
15
|
-
sx:
|
|
16
|
+
sx: SxProps;
|
|
16
17
|
static styles: import('lit').CSSResult[];
|
|
17
18
|
render(): import('lit').TemplateResult<1>;
|
|
18
19
|
private handleClick;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-button.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-button.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"tc-button.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-button.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAK5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C;;;;;;;;GAQG;AACH,qBACa,QAAS,SAAQ,UAAU;IACT,QAAQ,UAAS;IACjB,OAAO,UAAS;IACjB,OAAO,EAAE,SAAS,GAAG,WAAW,GAAG,SAAS,CAC5D;IACgB,EAAE,EAAE,OAAO,CAAM;IAE7C,OAAgB,MAAM,4BAoGpB;IAEO,MAAM;IA4Bf,OAAO,CAAC,WAAW;CAWpB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,WAAW,EAAE,QAAQ,CAAC;KACvB;CACF"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
+
import { SxProps } from '../types.js';
|
|
2
3
|
/**
|
|
3
4
|
* A callout/alert component for messages and notices.
|
|
4
5
|
* Uses design-tokens notice classes (.notice, .notice-info, .notice-success, etc.)
|
|
@@ -11,6 +12,7 @@ import { LitElement } from 'lit';
|
|
|
11
12
|
*/
|
|
12
13
|
export declare class TcCallout extends LitElement {
|
|
13
14
|
variant: 'info' | 'success' | 'warning' | 'error';
|
|
15
|
+
sx: SxProps;
|
|
14
16
|
static styles: import('lit').CSSResult[];
|
|
15
17
|
render(): import('lit').TemplateResult<1>;
|
|
16
18
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-callout.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-callout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAK5C;;;;;;;;;GASG;AACH,qBACa,SAAU,SAAQ,UAAU;IACX,OAAO,EAC/B,MAAM,GACN,SAAS,GACT,SAAS,GACT,OAAO,CAAU;
|
|
1
|
+
{"version":3,"file":"tc-callout.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-callout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAK5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C;;;;;;;;;GASG;AACH,qBACa,SAAU,SAAQ,UAAU;IACX,OAAO,EAC/B,MAAM,GACN,SAAS,GACT,SAAS,GACT,OAAO,CAAU;IACO,EAAE,EAAE,OAAO,CAAM;IAE7C,OAAgB,MAAM,4BA0CpB;IAEO,MAAM;CAyBhB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,YAAY,EAAE,SAAS,CAAC;KACzB;CACF"}
|
|
@@ -1,26 +1,27 @@
|
|
|
1
|
-
import { css as
|
|
2
|
-
import { property as
|
|
3
|
-
import { classMap as
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
import { css as p, LitElement as m, html as v } from "lit";
|
|
2
|
+
import { property as c, customElement as d } from "lit/decorators.js";
|
|
3
|
+
import { classMap as f } from "lit/directives/class-map.js";
|
|
4
|
+
import { styleMap as u } from "lit/directives/style-map.js";
|
|
5
|
+
import { sharedStyles as y } from "../styles/shared.js";
|
|
6
|
+
var h = Object.defineProperty, g = Object.getOwnPropertyDescriptor, l = (s, e, i, r) => {
|
|
7
|
+
for (var t = r > 1 ? void 0 : r ? g(e, i) : e, n = s.length - 1, a; n >= 0; n--)
|
|
8
|
+
(a = s[n]) && (t = (r ? a(e, i, t) : a(t)) || t);
|
|
9
|
+
return r && t && h(e, i, t), t;
|
|
9
10
|
};
|
|
10
11
|
let o = class extends m {
|
|
11
12
|
constructor() {
|
|
12
|
-
super(...arguments), this.variant = "info";
|
|
13
|
+
super(...arguments), this.variant = "info", this.sx = {};
|
|
13
14
|
}
|
|
14
15
|
render() {
|
|
15
|
-
const
|
|
16
|
-
notice: !
|
|
16
|
+
const s = this.variant === "error", e = {
|
|
17
|
+
notice: !s,
|
|
17
18
|
"notice-info": this.variant === "info",
|
|
18
19
|
"notice-success": this.variant === "success",
|
|
19
20
|
"notice-warning": this.variant === "warning",
|
|
20
|
-
"error-message":
|
|
21
|
+
"error-message": s
|
|
21
22
|
};
|
|
22
|
-
return
|
|
23
|
-
<div part="callout" class=${
|
|
23
|
+
return v`
|
|
24
|
+
<div part="callout" class=${f(e)} style=${u(this.sx)} role="alert">
|
|
24
25
|
<div class="callout-inner">
|
|
25
26
|
<div part="icon" class="callout-icon">
|
|
26
27
|
<slot name="icon"></slot>
|
|
@@ -34,8 +35,8 @@ let o = class extends m {
|
|
|
34
35
|
}
|
|
35
36
|
};
|
|
36
37
|
o.styles = [
|
|
37
|
-
|
|
38
|
-
|
|
38
|
+
y,
|
|
39
|
+
p`
|
|
39
40
|
:host {
|
|
40
41
|
display: block;
|
|
41
42
|
width: 100%;
|
|
@@ -77,8 +78,11 @@ o.styles = [
|
|
|
77
78
|
`
|
|
78
79
|
];
|
|
79
80
|
l([
|
|
80
|
-
|
|
81
|
+
c({ type: String })
|
|
81
82
|
], o.prototype, "variant", 2);
|
|
83
|
+
l([
|
|
84
|
+
c({ type: Object })
|
|
85
|
+
], o.prototype, "sx", 2);
|
|
82
86
|
o = l([
|
|
83
87
|
d("tc-callout")
|
|
84
88
|
], o);
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
+
import { SxProps } from '../types.js';
|
|
2
3
|
/**
|
|
3
4
|
* Card component with layered shadows and optional inner border effect.
|
|
4
5
|
* Uses design-tokens .card class.
|
|
@@ -8,7 +9,7 @@ import { LitElement } from 'lit';
|
|
|
8
9
|
*/
|
|
9
10
|
export declare class TcCard extends LitElement {
|
|
10
11
|
noBorder: boolean;
|
|
11
|
-
sx:
|
|
12
|
+
sx: SxProps;
|
|
12
13
|
static styles: import('lit').CSSResult[];
|
|
13
14
|
render(): import('lit').TemplateResult<1>;
|
|
14
15
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-card.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-card.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"tc-card.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-card.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAK5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C;;;;;;GAMG;AACH,qBACa,MAAO,SAAQ,UAAU;IACiB,QAAQ,UAAS;IAC1C,EAAE,EAAE,OAAO,CAAM;IAE7C,OAAgB,MAAM,4BAoCpB;IAEO,MAAM;CAchB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,SAAS,EAAE,MAAM,CAAC;KACnB;CACF"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
+
import { SxProps } from '../types.js';
|
|
2
3
|
/**
|
|
3
4
|
* A chip/tag component for labels and badges.
|
|
4
5
|
*
|
|
@@ -8,6 +9,7 @@ import { LitElement } from 'lit';
|
|
|
8
9
|
export declare class TcChip extends LitElement {
|
|
9
10
|
variant: 'default' | 'success' | 'error' | 'info';
|
|
10
11
|
size: 'sm' | 'md';
|
|
12
|
+
sx: SxProps;
|
|
11
13
|
static styles: import('lit').CSSResult[];
|
|
12
14
|
render(): import('lit').TemplateResult<1>;
|
|
13
15
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-chip.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-chip.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAI5C;;;;;GAKG;AACH,qBACa,MAAO,SAAQ,UAAU;IACR,OAAO,EAC/B,SAAS,GACT,SAAS,GACT,OAAO,GACP,MAAM,CAAa;IACK,IAAI,EAAE,IAAI,GAAG,IAAI,CAAQ;
|
|
1
|
+
{"version":3,"file":"tc-chip.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-chip.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAI5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C;;;;;GAKG;AACH,qBACa,MAAO,SAAQ,UAAU;IACR,OAAO,EAC/B,SAAS,GACT,SAAS,GACT,OAAO,GACP,MAAM,CAAa;IACK,IAAI,EAAE,IAAI,GAAG,IAAI,CAAQ;IACzB,EAAE,EAAE,OAAO,CAAM;IAE7C,OAAgB,MAAM,4BAiDpB;IAEO,MAAM;CAWhB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,SAAS,EAAE,MAAM,CAAC;KACnB;CACF"}
|
|
@@ -1,25 +1,30 @@
|
|
|
1
|
-
import { css as l, LitElement as h, html as
|
|
2
|
-
import { property as
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { css as l, LitElement as h, html as f } from "lit";
|
|
2
|
+
import { property as c, customElement as m } from "lit/decorators.js";
|
|
3
|
+
import { styleMap as d } from "lit/directives/style-map.js";
|
|
4
|
+
import { sharedStyles as v } from "../styles/shared.js";
|
|
5
|
+
var u = Object.defineProperty, y = Object.getOwnPropertyDescriptor, i = (n, t, a, s) => {
|
|
6
|
+
for (var r = s > 1 ? void 0 : s ? y(t, a) : t, p = n.length - 1, o; p >= 0; p--)
|
|
7
|
+
(o = n[p]) && (r = (s ? o(t, a, r) : o(r)) || r);
|
|
8
|
+
return s && r && u(t, a, r), r;
|
|
8
9
|
};
|
|
9
10
|
let e = class extends h {
|
|
10
11
|
constructor() {
|
|
11
|
-
super(...arguments), this.variant = "default", this.size = "md";
|
|
12
|
+
super(...arguments), this.variant = "default", this.size = "md", this.sx = {};
|
|
12
13
|
}
|
|
13
14
|
render() {
|
|
14
|
-
return
|
|
15
|
-
<span
|
|
15
|
+
return f`
|
|
16
|
+
<span
|
|
17
|
+
part="chip"
|
|
18
|
+
class="chip chip--${this.variant} chip--${this.size}"
|
|
19
|
+
style=${d(this.sx)}
|
|
20
|
+
>
|
|
16
21
|
<slot></slot>
|
|
17
22
|
</span>
|
|
18
23
|
`;
|
|
19
24
|
}
|
|
20
25
|
};
|
|
21
26
|
e.styles = [
|
|
22
|
-
|
|
27
|
+
v,
|
|
23
28
|
l`
|
|
24
29
|
:host {
|
|
25
30
|
display: inline-flex;
|
|
@@ -34,6 +39,7 @@ e.styles = [
|
|
|
34
39
|
border-radius: var(--radius-full);
|
|
35
40
|
font-family: var(--font-body);
|
|
36
41
|
font-weight: 500;
|
|
42
|
+
text-transform: uppercase;
|
|
37
43
|
}
|
|
38
44
|
|
|
39
45
|
.chip--sm {
|
|
@@ -67,14 +73,17 @@ e.styles = [
|
|
|
67
73
|
}
|
|
68
74
|
`
|
|
69
75
|
];
|
|
70
|
-
|
|
71
|
-
|
|
76
|
+
i([
|
|
77
|
+
c({ type: String })
|
|
72
78
|
], e.prototype, "variant", 2);
|
|
73
|
-
|
|
74
|
-
|
|
79
|
+
i([
|
|
80
|
+
c({ type: String })
|
|
75
81
|
], e.prototype, "size", 2);
|
|
76
|
-
|
|
77
|
-
|
|
82
|
+
i([
|
|
83
|
+
c({ type: Object })
|
|
84
|
+
], e.prototype, "sx", 2);
|
|
85
|
+
e = i([
|
|
86
|
+
m("tc-chip")
|
|
78
87
|
], e);
|
|
79
88
|
export {
|
|
80
89
|
e as TcChip
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
+
import { SxProps } from '../types.js';
|
|
2
3
|
/**
|
|
3
4
|
* A flex container component with column layout by default.
|
|
4
5
|
*
|
|
@@ -7,7 +8,7 @@ import { LitElement } from 'lit';
|
|
|
7
8
|
*/
|
|
8
9
|
export declare class TcContainer extends LitElement {
|
|
9
10
|
wide: boolean;
|
|
10
|
-
sx:
|
|
11
|
+
sx: SxProps;
|
|
11
12
|
private defaultStyles;
|
|
12
13
|
static styles: import('lit').CSSResult;
|
|
13
14
|
render(): import('lit').TemplateResult<1>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-container.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-container.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"tc-container.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-container.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAG5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C;;;;;GAKG;AACH,qBACa,WAAY,SAAQ,UAAU;IACZ,IAAI,UAAS;IACd,EAAE,EAAE,OAAO,CAAM;IAE7C,OAAO,CAAC,aAAa,CAKnB;IAEF,OAAgB,MAAM,0BAkBpB;IAEO,MAAM;CAgBhB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,cAAc,EAAE,WAAW,CAAC;KAC7B;CACF"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
+
import { SxProps } from '../types.js';
|
|
2
3
|
/**
|
|
3
4
|
* A horizontal divider line with optional text.
|
|
4
5
|
*
|
|
@@ -8,9 +9,8 @@ import { LitElement } from 'lit';
|
|
|
8
9
|
* @csspart text - The text element (text mode)
|
|
9
10
|
*/
|
|
10
11
|
export declare class TcDivider extends LitElement {
|
|
11
|
-
color: string;
|
|
12
|
-
spacing: string;
|
|
13
12
|
text: string;
|
|
13
|
+
sx: SxProps;
|
|
14
14
|
static styles: import('lit').CSSResult;
|
|
15
15
|
render(): import('lit').TemplateResult<1>;
|
|
16
16
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-divider.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-divider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAG5C;;;;;;;GAOG;AACH,qBACa,SAAU,SAAQ,UAAU;IACX,
|
|
1
|
+
{"version":3,"file":"tc-divider.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-divider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAG5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C;;;;;;;GAOG;AACH,qBACa,SAAU,SAAQ,UAAU;IACX,IAAI,SAAM;IACV,EAAE,EAAE,OAAO,CAAM;IAE7C,OAAgB,MAAM,0BAqCpB;IAEO,MAAM;CAqBhB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,YAAY,EAAE,SAAS,CAAC;KACzB;CACF"}
|
|
@@ -1,24 +1,28 @@
|
|
|
1
|
-
import { css as c, LitElement as
|
|
2
|
-
import { property as
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { css as c, LitElement as m, html as l } from "lit";
|
|
2
|
+
import { property as p, customElement as h } from "lit/decorators.js";
|
|
3
|
+
import { styleMap as v } from "lit/directives/style-map.js";
|
|
4
|
+
var x = Object.defineProperty, f = Object.getOwnPropertyDescriptor, a = (s, e, d, t) => {
|
|
5
|
+
for (var r = t > 1 ? void 0 : t ? f(e, d) : e, n = s.length - 1, o; n >= 0; n--)
|
|
6
|
+
(o = s[n]) && (r = (t ? o(e, d, r) : o(r)) || r);
|
|
7
|
+
return t && r && x(e, d, r), r;
|
|
7
8
|
};
|
|
8
|
-
let i = class extends
|
|
9
|
+
let i = class extends m {
|
|
9
10
|
constructor() {
|
|
10
|
-
super(...arguments), this.
|
|
11
|
+
super(...arguments), this.text = "", this.sx = {};
|
|
11
12
|
}
|
|
12
13
|
render() {
|
|
13
|
-
const e =
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
const e = { ...{
|
|
15
|
+
"--divider-color": "var(--ink-faint)",
|
|
16
|
+
"--divider-spacing": "var(--space-md)"
|
|
17
|
+
}, ...this.sx };
|
|
18
|
+
return this.text ? l`
|
|
19
|
+
<div part="container" class="divider-container" style=${v(e)}>
|
|
16
20
|
<hr part="line" class="divider-line" />
|
|
17
21
|
<span part="text" class="divider-text">${this.text}</span>
|
|
18
22
|
<hr part="line" class="divider-line" />
|
|
19
23
|
</div>
|
|
20
|
-
` :
|
|
21
|
-
<hr part="divider" class="divider" style=${e} />
|
|
24
|
+
` : l`
|
|
25
|
+
<hr part="divider" class="divider" style=${v(e)} />
|
|
22
26
|
`;
|
|
23
27
|
}
|
|
24
28
|
};
|
|
@@ -60,16 +64,13 @@ i.styles = c`
|
|
|
60
64
|
font-family: var(--font-body);
|
|
61
65
|
}
|
|
62
66
|
`;
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
], i.prototype, "color", 2);
|
|
66
|
-
n([
|
|
67
|
-
l({ type: String })
|
|
68
|
-
], i.prototype, "spacing", 2);
|
|
69
|
-
n([
|
|
70
|
-
l({ type: String })
|
|
67
|
+
a([
|
|
68
|
+
p({ type: String })
|
|
71
69
|
], i.prototype, "text", 2);
|
|
72
|
-
|
|
70
|
+
a([
|
|
71
|
+
p({ type: Object })
|
|
72
|
+
], i.prototype, "sx", 2);
|
|
73
|
+
i = a([
|
|
73
74
|
h("tc-divider")
|
|
74
75
|
], i);
|
|
75
76
|
export {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
+
import { SxProps } from '../types.js';
|
|
2
3
|
/**
|
|
3
4
|
* A simplified error/warning/info message component.
|
|
4
5
|
* Wraps tc-callout with appropriate icon and text styling.
|
|
@@ -10,6 +11,7 @@ import { LitElement } from 'lit';
|
|
|
10
11
|
export declare class TcErrorMessage extends LitElement {
|
|
11
12
|
variant: 'warning' | 'info' | 'error';
|
|
12
13
|
message: string;
|
|
14
|
+
sx: SxProps;
|
|
13
15
|
static styles: import('lit').CSSResult;
|
|
14
16
|
private getIconName;
|
|
15
17
|
private getIconColor;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-error-message.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-error-message.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAE5C,OAAO,iBAAiB,CAAC;AACzB,OAAO,cAAc,CAAC;AACtB,OAAO,cAAc,CAAC;AAEtB;;;;;;;GAOG;AACH,qBACa,cAAe,SAAQ,UAAU;IAChB,OAAO,EAAE,SAAS,GAAG,MAAM,GAAG,OAAO,CAAW;IAChD,OAAO,SAAM;
|
|
1
|
+
{"version":3,"file":"tc-error-message.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-error-message.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAE5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,iBAAiB,CAAC;AACzB,OAAO,cAAc,CAAC;AACtB,OAAO,cAAc,CAAC;AAEtB;;;;;;;GAOG;AACH,qBACa,cAAe,SAAQ,UAAU;IAChB,OAAO,EAAE,SAAS,GAAG,MAAM,GAAG,OAAO,CAAW;IAChD,OAAO,SAAM;IACb,EAAE,EAAE,OAAO,CAAM;IAE7C,OAAgB,MAAM,0BAcpB;IAEF,OAAO,CAAC,WAAW;IAWnB,OAAO,CAAC,YAAY;IAWX,MAAM;CAoBhB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,kBAAkB,EAAE,cAAc,CAAC;KACpC;CACF"}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { css as
|
|
2
|
-
import { property as
|
|
1
|
+
import { css as p, LitElement as m, html as g } from "lit";
|
|
2
|
+
import { property as c, customElement as u } from "lit/decorators.js";
|
|
3
3
|
import "./tc-callout.js";
|
|
4
4
|
import "./tc-icon.js";
|
|
5
5
|
import "./tc-text.js";
|
|
6
|
-
var h = Object.defineProperty, v = Object.getOwnPropertyDescriptor,
|
|
7
|
-
for (var t =
|
|
8
|
-
(
|
|
9
|
-
return
|
|
6
|
+
var h = Object.defineProperty, v = Object.getOwnPropertyDescriptor, a = (l, r, i, s) => {
|
|
7
|
+
for (var t = s > 1 ? void 0 : s ? v(r, i) : r, n = l.length - 1, o; n >= 0; n--)
|
|
8
|
+
(o = l[n]) && (t = (s ? o(r, i, t) : o(t)) || t);
|
|
9
|
+
return s && t && h(r, i, t), t;
|
|
10
10
|
};
|
|
11
|
-
let e = class extends
|
|
11
|
+
let e = class extends m {
|
|
12
12
|
constructor() {
|
|
13
|
-
super(...arguments), this.variant = "error", this.message = "";
|
|
13
|
+
super(...arguments), this.variant = "error", this.message = "", this.sx = {};
|
|
14
14
|
}
|
|
15
15
|
getIconName() {
|
|
16
16
|
switch (this.variant) {
|
|
@@ -34,7 +34,7 @@ let e = class extends p {
|
|
|
34
34
|
}
|
|
35
35
|
render() {
|
|
36
36
|
return this.message ? g`
|
|
37
|
-
<tc-callout part="callout" variant=${this.variant}>
|
|
37
|
+
<tc-callout part="callout" variant=${this.variant} .sx=${this.sx}>
|
|
38
38
|
<tc-icon
|
|
39
39
|
slot="icon"
|
|
40
40
|
part="icon"
|
|
@@ -49,7 +49,7 @@ let e = class extends p {
|
|
|
49
49
|
` : null;
|
|
50
50
|
}
|
|
51
51
|
};
|
|
52
|
-
e.styles =
|
|
52
|
+
e.styles = p`
|
|
53
53
|
:host {
|
|
54
54
|
display: block;
|
|
55
55
|
width: 100%;
|
|
@@ -64,13 +64,16 @@ e.styles = m`
|
|
|
64
64
|
line-height: 1.4;
|
|
65
65
|
}
|
|
66
66
|
`;
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
a([
|
|
68
|
+
c({ type: String })
|
|
69
69
|
], e.prototype, "variant", 2);
|
|
70
|
-
|
|
71
|
-
|
|
70
|
+
a([
|
|
71
|
+
c({ type: String })
|
|
72
72
|
], e.prototype, "message", 2);
|
|
73
|
-
|
|
73
|
+
a([
|
|
74
|
+
c({ type: Object })
|
|
75
|
+
], e.prototype, "sx", 2);
|
|
76
|
+
e = a([
|
|
74
77
|
u("tc-error-message")
|
|
75
78
|
], e);
|
|
76
79
|
export {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LitElement } from 'lit';
|
|
2
|
+
import { SxProps } from '../types.js';
|
|
2
3
|
/**
|
|
3
4
|
* Form header component with animated title, subtitle, and optional notice.
|
|
4
5
|
* Uses design-tokens form classes (.form-title, .form-subtitle).
|
|
@@ -13,7 +14,7 @@ export declare class TcFormHeader extends LitElement {
|
|
|
13
14
|
subtitle: string;
|
|
14
15
|
notice: string;
|
|
15
16
|
noAnimation: boolean;
|
|
16
|
-
sx:
|
|
17
|
+
sx: SxProps;
|
|
17
18
|
static styles: import('lit').CSSResult[];
|
|
18
19
|
render(): import('lit').TemplateResult<1>;
|
|
19
20
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-form-header.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-form-header.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"tc-form-header.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-form-header.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,MAAM,KAAK,CAAC;AAI5C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C;;;;;;;;GAQG;AACH,qBACa,YAAa,SAAQ,UAAU;IACd,KAAK,SAAM;IACX,QAAQ,SAAM;IACd,MAAM,SAAM;IACgB,WAAW,UAAS;IAChD,EAAE,EAAE,OAAO,CAAM;IAE7C,OAAgB,MAAM,4BAsEpB;IAEO,MAAM;CA6BhB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,gBAAgB,EAAE,YAAY,CAAC;KAChC;CACF"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LitElement, TemplateResult } from 'lit';
|
|
2
|
+
import { SxProps } from '../types.js';
|
|
2
3
|
export type IconName = 'arrow-left' | 'arrow-right' | 'check' | 'x' | 'close' | 'chevron-right' | 'chevron-left' | 'error' | 'alert-circle' | 'info' | 'warning' | 'loading' | 'loader' | 'biometric' | 'email' | 'passkey' | 'bell' | 'download' | 'wifi-off' | 'apple' | 'google' | 'windows' | 'samsung' | 'phone' | 'success' | 'lock' | 'person' | 'device' | 'totp' | 'email-otp' | 'qrcode' | 'key';
|
|
3
4
|
/**
|
|
4
5
|
* An icon component with built-in icon set.
|
|
@@ -7,8 +8,7 @@ export type IconName = 'arrow-left' | 'arrow-right' | 'check' | 'x' | 'close' |
|
|
|
7
8
|
*/
|
|
8
9
|
export declare class TcIcon extends LitElement {
|
|
9
10
|
name: IconName;
|
|
10
|
-
|
|
11
|
-
color: string;
|
|
11
|
+
sx: SxProps;
|
|
12
12
|
static styles: import('lit').CSSResult;
|
|
13
13
|
render(): TemplateResult<1>;
|
|
14
14
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tc-icon.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-icon.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,KAAK,cAAc,EAAE,MAAM,KAAK,CAAC;AAGjE,MAAM,MAAM,QAAQ,GAChB,YAAY,GACZ,aAAa,GACb,OAAO,GACP,GAAG,GACH,OAAO,GACP,eAAe,GACf,cAAc,GACd,OAAO,GACP,cAAc,GACd,MAAM,GACN,SAAS,GACT,SAAS,GACT,QAAQ,GACR,WAAW,GACX,OAAO,GACP,SAAS,GACT,MAAM,GACN,UAAU,GACV,UAAU,GAEV,OAAO,GACP,QAAQ,GACR,SAAS,GACT,SAAS,GAET,OAAO,GACP,SAAS,GACT,MAAM,GACN,QAAQ,GACR,QAAQ,GAER,MAAM,GACN,WAAW,GACX,QAAQ,GACR,KAAK,CAAC;AAwCV;;;;GAIG;AACH,qBACa,MAAO,SAAQ,UAAU;IACR,IAAI,EAAE,QAAQ,CAAU;IACxB,
|
|
1
|
+
{"version":3,"file":"tc-icon.d.ts","sourceRoot":"","sources":["../../src/primitives/tc-icon.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,KAAK,cAAc,EAAE,MAAM,KAAK,CAAC;AAGjE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAE3C,MAAM,MAAM,QAAQ,GAChB,YAAY,GACZ,aAAa,GACb,OAAO,GACP,GAAG,GACH,OAAO,GACP,eAAe,GACf,cAAc,GACd,OAAO,GACP,cAAc,GACd,MAAM,GACN,SAAS,GACT,SAAS,GACT,QAAQ,GACR,WAAW,GACX,OAAO,GACP,SAAS,GACT,MAAM,GACN,UAAU,GACV,UAAU,GAEV,OAAO,GACP,QAAQ,GACR,SAAS,GACT,SAAS,GAET,OAAO,GACP,SAAS,GACT,MAAM,GACN,QAAQ,GACR,QAAQ,GAER,MAAM,GACN,WAAW,GACX,QAAQ,GACR,KAAK,CAAC;AAwCV;;;;GAIG;AACH,qBACa,MAAO,SAAQ,UAAU;IACR,IAAI,EAAE,QAAQ,CAAU;IACxB,EAAE,EAAE,OAAO,CAAM;IAE7C,OAAgB,MAAM,0BAkBpB;IAEO,MAAM;CAoBhB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,SAAS,EAAE,MAAM,CAAC;KACnB;CACF"}
|