@toife/vue 1.1.43 → 1.1.45
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/dist/components/t-present.vue.d.ts +2 -0
- package/dist/components/t-sheet.vue.d.ts +13 -3
- package/dist/index.css +1 -1
- package/dist/index.es.js +96 -94
- package/dist/index.umd.js +1 -1
- package/package.json +1 -1
|
@@ -3,6 +3,7 @@ type __VLS_Props = {
|
|
|
3
3
|
visible?: boolean;
|
|
4
4
|
backdrop?: boolean;
|
|
5
5
|
placement?: string;
|
|
6
|
+
fullscreen?: boolean;
|
|
6
7
|
};
|
|
7
8
|
declare function __VLS_template(): {
|
|
8
9
|
attrs: Partial<{}>;
|
|
@@ -29,6 +30,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {
|
|
|
29
30
|
visible: boolean;
|
|
30
31
|
backdrop: boolean;
|
|
31
32
|
placement: string;
|
|
33
|
+
fullscreen: boolean;
|
|
32
34
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
33
35
|
present: HTMLDivElement;
|
|
34
36
|
backdrop: HTMLDivElement;
|
|
@@ -25,6 +25,7 @@ declare function __VLS_template(): {
|
|
|
25
25
|
readonly visible?: boolean | undefined;
|
|
26
26
|
readonly backdrop?: boolean | undefined;
|
|
27
27
|
readonly placement?: string | undefined;
|
|
28
|
+
readonly fullscreen?: boolean | undefined;
|
|
28
29
|
readonly onDismiss?: ((...args: any[]) => any) | undefined;
|
|
29
30
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
30
31
|
$attrs: {
|
|
@@ -49,6 +50,7 @@ declare function __VLS_template(): {
|
|
|
49
50
|
visible?: boolean;
|
|
50
51
|
backdrop?: boolean;
|
|
51
52
|
placement?: string;
|
|
53
|
+
fullscreen?: boolean;
|
|
52
54
|
}> & Readonly<{
|
|
53
55
|
onDismiss?: ((...args: any[]) => any) | undefined;
|
|
54
56
|
}>, {
|
|
@@ -62,6 +64,7 @@ declare function __VLS_template(): {
|
|
|
62
64
|
visible: boolean;
|
|
63
65
|
backdrop: boolean;
|
|
64
66
|
placement: string;
|
|
67
|
+
fullscreen: boolean;
|
|
65
68
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
66
69
|
beforeCreate?: (() => void) | (() => void)[];
|
|
67
70
|
created?: (() => void) | (() => void)[];
|
|
@@ -87,14 +90,16 @@ declare function __VLS_template(): {
|
|
|
87
90
|
visible: boolean;
|
|
88
91
|
backdrop: boolean;
|
|
89
92
|
placement: string;
|
|
93
|
+
fullscreen: boolean;
|
|
90
94
|
}> & Omit<Readonly<{
|
|
91
95
|
keepalive?: boolean;
|
|
92
96
|
visible?: boolean;
|
|
93
97
|
backdrop?: boolean;
|
|
94
98
|
placement?: string;
|
|
99
|
+
fullscreen?: boolean;
|
|
95
100
|
}> & Readonly<{
|
|
96
101
|
onDismiss?: ((...args: any[]) => any) | undefined;
|
|
97
|
-
}>, "close" | "render" | "open" | ("keepalive" | "visible" | "backdrop" | "placement")> & import('vue').ShallowUnwrapRef<{
|
|
102
|
+
}>, "close" | "render" | "open" | ("keepalive" | "visible" | "backdrop" | "placement" | "fullscreen")> & import('vue').ShallowUnwrapRef<{
|
|
98
103
|
render: (value: any) => void;
|
|
99
104
|
open: () => void;
|
|
100
105
|
close: () => void;
|
|
@@ -117,10 +122,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
117
122
|
visible: boolean;
|
|
118
123
|
backdrop: boolean;
|
|
119
124
|
placement: string;
|
|
125
|
+
fullscreen: boolean;
|
|
120
126
|
rounded: boolean;
|
|
121
127
|
background: string;
|
|
122
128
|
gesture: boolean;
|
|
123
|
-
fullscreen: boolean;
|
|
124
129
|
radius: boolean;
|
|
125
130
|
closeButton: boolean;
|
|
126
131
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
@@ -132,6 +137,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
132
137
|
readonly visible?: boolean | undefined;
|
|
133
138
|
readonly backdrop?: boolean | undefined;
|
|
134
139
|
readonly placement?: string | undefined;
|
|
140
|
+
readonly fullscreen?: boolean | undefined;
|
|
135
141
|
readonly onDismiss?: ((...args: any[]) => any) | undefined;
|
|
136
142
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
137
143
|
$attrs: {
|
|
@@ -156,6 +162,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
156
162
|
visible?: boolean;
|
|
157
163
|
backdrop?: boolean;
|
|
158
164
|
placement?: string;
|
|
165
|
+
fullscreen?: boolean;
|
|
159
166
|
}> & Readonly<{
|
|
160
167
|
onDismiss?: ((...args: any[]) => any) | undefined;
|
|
161
168
|
}>, {
|
|
@@ -169,6 +176,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
169
176
|
visible: boolean;
|
|
170
177
|
backdrop: boolean;
|
|
171
178
|
placement: string;
|
|
179
|
+
fullscreen: boolean;
|
|
172
180
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
173
181
|
beforeCreate?: (() => void) | (() => void)[];
|
|
174
182
|
created?: (() => void) | (() => void)[];
|
|
@@ -194,14 +202,16 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
194
202
|
visible: boolean;
|
|
195
203
|
backdrop: boolean;
|
|
196
204
|
placement: string;
|
|
205
|
+
fullscreen: boolean;
|
|
197
206
|
}> & Omit<Readonly<{
|
|
198
207
|
keepalive?: boolean;
|
|
199
208
|
visible?: boolean;
|
|
200
209
|
backdrop?: boolean;
|
|
201
210
|
placement?: string;
|
|
211
|
+
fullscreen?: boolean;
|
|
202
212
|
}> & Readonly<{
|
|
203
213
|
onDismiss?: ((...args: any[]) => any) | undefined;
|
|
204
|
-
}>, "close" | "render" | "open" | ("keepalive" | "visible" | "backdrop" | "placement")> & import('vue').ShallowUnwrapRef<{
|
|
214
|
+
}>, "close" | "render" | "open" | ("keepalive" | "visible" | "backdrop" | "placement" | "fullscreen")> & import('vue').ShallowUnwrapRef<{
|
|
205
215
|
render: (value: any) => void;
|
|
206
216
|
open: () => void;
|
|
207
217
|
close: () => void;
|
package/dist/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";*{padding:0;margin:0}body,html{font-family:SFUFutura,Inter,sans-serif;background-color:var(--t-color-background, #ffffff);color:var(--t-color-text, #000000);font-size:16px;height:100vh;width:100vw;max-height:100vh;max-width:100vw;overflow:hidden}html,body,*{border:unset;box-sizing:border-box;touch-action:pan-x pan-y;overscroll-behavior:none;-webkit-tap-highlight-color:transparent!important;-webkit-touch-callout:none!important;user-select:none!important;-webkit-user-select:none!important;-ms-user-select:none!important;scrollbar-width:none;-ms-overflow-style:none}html::-webkit-scrollbar,body::-webkit-scrollbar,*::-webkit-scrollbar{display:none}html:active,html:focus,body:active,body:focus,*:active,*:focus{outline:0;border:unset}a{color:var(--t-color-status-primary)}.--theme-light{--t-color-background: #ededed;--t-color-background-rgb: 237, 237, 237;--t-color-surface: #ffffff;--t-color-surface-rgb: 255, 255, 255;--t-color-separate: #eaeaea;--t-color-separate-rgb: 234, 234, 234;--t-color-backdrop: #212529;--t-color-backdrop-rgb: 33, 37, 41;--t-color-backdrop-surface: #ffffff;--t-color-backdrop-surface-rgb: 255, 255, 255;--t-color-text: #212529;--t-color-text-rgb: 33, 37, 41;--t-color-text-dark: #838383;--t-color-text-dark-rgb: 131, 131, 131;--t-color-text-light: #0d0d0d;--t-color-text-light-rgb: 13, 13, 13}.--theme-dark{--t-color-background: #141919;--t-color-background-rgb: 20, 25, 25;--t-color-surface: #212828;--t-color-surface-rgb: 33, 40, 40;--t-color-separate: #2d3737;--t-color-separate-rgb: 45, 55, 55;--t-color-backdrop: #121212;--t-color-backdrop-rgb: 18, 18, 18;--t-color-backdrop-surface: #5e5e5e;--t-color-backdrop-surface-rgb: 94, 94, 94;--t-color-text: #e9ecef;--t-color-text-rgb: 233, 236, 239;--t-color-text-dark: #b6b6b6;--t-color-text-dark-rgb: 182, 182, 182;--t-color-text-light: #ffffff;--t-color-text-light-rgb: 255, 255, 255}:root{--t-color-status-danger-text: #ffffff;--t-color-status-danger-text-rgb: 255,255,255;--t-color-status-danger-light: #ef5350;--t-color-status-danger-light-rgb: 239, 83, 80;--t-color-status-danger: #e53935;--t-color-status-danger-rgb: 229, 57, 53;--t-color-status-danger-dark: #c62828;--t-color-status-danger-dark-rgb: 198, 40, 40}:root{--t-color-status-primary-text: #ffffff;--t-color-status-primary-text-rgb: 255,255,255;--t-color-status-primary-light: #42a5f5;--t-color-status-primary-light-rgb: 66, 165, 245;--t-color-status-primary: #1e88e5;--t-color-status-primary-rgb: 30, 136, 229;--t-color-status-primary-dark: #1565c0;--t-color-status-primary-dark-rgb: 21, 101, 192}:root{--t-color-status-secondary-text: #ffffff;--t-color-status-secondary-text-rgb: 255,255,255;--t-color-status-secondary-light: #adb5bd;--t-color-status-secondary-light-rgb: 173, 181, 189;--t-color-status-secondary: #5a6268;--t-color-status-secondary-rgb: 90, 98, 104;--t-color-status-secondary-dark: #343a40;--t-color-status-secondary-dark-rgb: 52, 58, 64}:root{--t-color-status-success-text: #ffffff;--t-color-status-success-text-rgb: 255,255,255;--t-color-status-success-light: #66bb6a;--t-color-status-success-light-rgb: 102, 187, 106;--t-color-status-success: #43a047;--t-color-status-success-rgb: 67, 160, 71;--t-color-status-success-dark: #2e7d32;--t-color-status-success-dark-rgb: 46, 125, 50}:root{--t-color-status-warning-text: #141919;--t-color-status-warning-text-rgb: 43, 43, 43;--t-color-status-warning-light: #ffca28;--t-color-status-warning-light-rgb: 255, 202, 40;--t-color-status-warning: #ffb300;--t-color-status-warning-rgb: 255, 179, 0;--t-color-status-warning-dark: #ff8f00;--t-color-status-warning-dark-rgb: 255, 143, 0}:root{--t-color-status-info-text: #ffffff;--t-color-status-info-text-rgb: 255,255,255;--t-color-status-info-light: #29b6f6;--t-color-status-info-light-rgb: 41, 182, 246;--t-color-status-info: #039be5;--t-color-status-info-rgb: 3, 155, 229;--t-color-status-info-dark: #0277bd;--t-color-status-info-dark-rgb: 2, 119, 189}:root{--t-size-0: 0rem;--t-size-1: .5rem;--t-size-2: 1rem;--t-size-3: 1.5rem;--t-size-4: 2rem;--t-size-5: 2.5rem;--t-size-6: 3rem;--t-size-7: 3.5rem;--t-size-8: 4rem;--t-size-9: 4.5rem;--t-size-10: 5rem;--t-fs-05: .5rem;--t-fs-06: .6rem;--t-fs-07: .7rem;--t-fs-08: .8rem;--t-fs-09: .9rem;--t-fs-10: 1rem;--t-fs-11: 1.1rem;--t-fs-12: 1.2rem;--t-fs-13: 1.3rem;--t-fs-14: 1.4rem;--t-fs-15: 1.5rem;--t-fs-16: 1.6rem;--t-fs-17: 1.7rem;--t-fs-18: 1.8rem;--t-fs-19: 1.9rem;--t-fs-20: 2rem;--t-safe-area-top: env(safe-area-inset-top, 0px);--t-safe-area-bottom: env(safe-area-inset-bottom, 0px);--t-safe-area-left: env(safe-area-inset-left, 0px);--t-safe-area-right: env(safe-area-inset-right, 0px)}.ma-0{margin:var(--t-size-0)!important}.mt-0{margin-top:var(--t-size-0)!important}.mb-0{margin-bottom:var(--t-size-0)!important}.ml-0{margin-left:var(--t-size-0)!important}.mr-0{margin-right:var(--t-size-0)!important}.mx-0{margin-left:var(--t-size-0)!important;margin-right:var(--t-size-0)!important}.my-0{margin-top:var(--t-size-0)!important;margin-bottom:var(--t-size-0)!important}.ma-1{margin:var(--t-size-1)!important}.mt-1{margin-top:var(--t-size-1)!important}.mb-1{margin-bottom:var(--t-size-1)!important}.ml-1{margin-left:var(--t-size-1)!important}.mr-1{margin-right:var(--t-size-1)!important}.mx-1{margin-left:var(--t-size-1)!important;margin-right:var(--t-size-1)!important}.my-1{margin-top:var(--t-size-1)!important;margin-bottom:var(--t-size-1)!important}.ma-2{margin:var(--t-size-2)!important}.mt-2{margin-top:var(--t-size-2)!important}.mb-2{margin-bottom:var(--t-size-2)!important}.ml-2{margin-left:var(--t-size-2)!important}.mr-2{margin-right:var(--t-size-2)!important}.mx-2{margin-left:var(--t-size-2)!important;margin-right:var(--t-size-2)!important}.my-2{margin-top:var(--t-size-2)!important;margin-bottom:var(--t-size-2)!important}.ma-3{margin:var(--t-size-3)!important}.mt-3{margin-top:var(--t-size-3)!important}.mb-3{margin-bottom:var(--t-size-3)!important}.ml-3{margin-left:var(--t-size-3)!important}.mr-3{margin-right:var(--t-size-3)!important}.mx-3{margin-left:var(--t-size-3)!important;margin-right:var(--t-size-3)!important}.my-3{margin-top:var(--t-size-3)!important;margin-bottom:var(--t-size-3)!important}.ma-4{margin:var(--t-size-4)!important}.mt-4{margin-top:var(--t-size-4)!important}.mb-4{margin-bottom:var(--t-size-4)!important}.ml-4{margin-left:var(--t-size-4)!important}.mr-4{margin-right:var(--t-size-4)!important}.mx-4{margin-left:var(--t-size-4)!important;margin-right:var(--t-size-4)!important}.my-4{margin-top:var(--t-size-4)!important;margin-bottom:var(--t-size-4)!important}.ma-5{margin:var(--t-size-5)!important}.mt-5{margin-top:var(--t-size-5)!important}.mb-5{margin-bottom:var(--t-size-5)!important}.ml-5{margin-left:var(--t-size-5)!important}.mr-5{margin-right:var(--t-size-5)!important}.mx-5{margin-left:var(--t-size-5)!important;margin-right:var(--t-size-5)!important}.my-5{margin-top:var(--t-size-5)!important;margin-bottom:var(--t-size-5)!important}.ma-6{margin:var(--t-size-6)!important}.mt-6{margin-top:var(--t-size-6)!important}.mb-6{margin-bottom:var(--t-size-6)!important}.ml-6{margin-left:var(--t-size-6)!important}.mr-6{margin-right:var(--t-size-6)!important}.mx-6{margin-left:var(--t-size-6)!important;margin-right:var(--t-size-6)!important}.my-6{margin-top:var(--t-size-6)!important;margin-bottom:var(--t-size-6)!important}.ma-7{margin:var(--t-size-7)!important}.mt-7{margin-top:var(--t-size-7)!important}.mb-7{margin-bottom:var(--t-size-7)!important}.ml-7{margin-left:var(--t-size-7)!important}.mr-7{margin-right:var(--t-size-7)!important}.mx-7{margin-left:var(--t-size-7)!important;margin-right:var(--t-size-7)!important}.my-7{margin-top:var(--t-size-7)!important;margin-bottom:var(--t-size-7)!important}.ma-8{margin:var(--t-size-8)!important}.mt-8{margin-top:var(--t-size-8)!important}.mb-8{margin-bottom:var(--t-size-8)!important}.ml-8{margin-left:var(--t-size-8)!important}.mr-8{margin-right:var(--t-size-8)!important}.mx-8{margin-left:var(--t-size-8)!important;margin-right:var(--t-size-8)!important}.my-8{margin-top:var(--t-size-8)!important;margin-bottom:var(--t-size-8)!important}.ma-9{margin:var(--t-size-9)!important}.mt-9{margin-top:var(--t-size-9)!important}.mb-9{margin-bottom:var(--t-size-9)!important}.ml-9{margin-left:var(--t-size-9)!important}.mr-9{margin-right:var(--t-size-9)!important}.mx-9{margin-left:var(--t-size-9)!important;margin-right:var(--t-size-9)!important}.my-9{margin-top:var(--t-size-9)!important;margin-bottom:var(--t-size-9)!important}.ma-10{margin:var(--t-size-10)!important}.mt-10{margin-top:var(--t-size-10)!important}.mb-10{margin-bottom:var(--t-size-10)!important}.ml-10{margin-left:var(--t-size-10)!important}.mr-10{margin-right:var(--t-size-10)!important}.mx-10{margin-left:var(--t-size-10)!important;margin-right:var(--t-size-10)!important}.my-10{margin-top:var(--t-size-10)!important;margin-bottom:var(--t-size-10)!important}.pa-0{padding:var(--t-size-0)!important}.pt-0{padding-top:var(--t-size-0)!important}.pb-0{padding-bottom:var(--t-size-0)!important}.pl-0{padding-left:var(--t-size-0)!important}.pr-0{padding-right:var(--t-size-0)!important}.px-0{padding-left:var(--t-size-0)!important;padding-right:var(--t-size-0)!important}.py-0{padding-top:var(--t-size-0)!important;padding-bottom:var(--t-size-0)!important}.pa-1{padding:var(--t-size-1)!important}.pt-1{padding-top:var(--t-size-1)!important}.pb-1{padding-bottom:var(--t-size-1)!important}.pl-1{padding-left:var(--t-size-1)!important}.pr-1{padding-right:var(--t-size-1)!important}.px-1{padding-left:var(--t-size-1)!important;padding-right:var(--t-size-1)!important}.py-1{padding-top:var(--t-size-1)!important;padding-bottom:var(--t-size-1)!important}.pa-2{padding:var(--t-size-2)!important}.pt-2{padding-top:var(--t-size-2)!important}.pb-2{padding-bottom:var(--t-size-2)!important}.pl-2{padding-left:var(--t-size-2)!important}.pr-2{padding-right:var(--t-size-2)!important}.px-2{padding-left:var(--t-size-2)!important;padding-right:var(--t-size-2)!important}.py-2{padding-top:var(--t-size-2)!important;padding-bottom:var(--t-size-2)!important}.pa-3{padding:var(--t-size-3)!important}.pt-3{padding-top:var(--t-size-3)!important}.pb-3{padding-bottom:var(--t-size-3)!important}.pl-3{padding-left:var(--t-size-3)!important}.pr-3{padding-right:var(--t-size-3)!important}.px-3{padding-left:var(--t-size-3)!important;padding-right:var(--t-size-3)!important}.py-3{padding-top:var(--t-size-3)!important;padding-bottom:var(--t-size-3)!important}.pa-4{padding:var(--t-size-4)!important}.pt-4{padding-top:var(--t-size-4)!important}.pb-4{padding-bottom:var(--t-size-4)!important}.pl-4{padding-left:var(--t-size-4)!important}.pr-4{padding-right:var(--t-size-4)!important}.px-4{padding-left:var(--t-size-4)!important;padding-right:var(--t-size-4)!important}.py-4{padding-top:var(--t-size-4)!important;padding-bottom:var(--t-size-4)!important}.pa-5{padding:var(--t-size-5)!important}.pt-5{padding-top:var(--t-size-5)!important}.pb-5{padding-bottom:var(--t-size-5)!important}.pl-5{padding-left:var(--t-size-5)!important}.pr-5{padding-right:var(--t-size-5)!important}.px-5{padding-left:var(--t-size-5)!important;padding-right:var(--t-size-5)!important}.py-5{padding-top:var(--t-size-5)!important;padding-bottom:var(--t-size-5)!important}.pa-6{padding:var(--t-size-6)!important}.pt-6{padding-top:var(--t-size-6)!important}.pb-6{padding-bottom:var(--t-size-6)!important}.pl-6{padding-left:var(--t-size-6)!important}.pr-6{padding-right:var(--t-size-6)!important}.px-6{padding-left:var(--t-size-6)!important;padding-right:var(--t-size-6)!important}.py-6{padding-top:var(--t-size-6)!important;padding-bottom:var(--t-size-6)!important}.pa-7{padding:var(--t-size-7)!important}.pt-7{padding-top:var(--t-size-7)!important}.pb-7{padding-bottom:var(--t-size-7)!important}.pl-7{padding-left:var(--t-size-7)!important}.pr-7{padding-right:var(--t-size-7)!important}.px-7{padding-left:var(--t-size-7)!important;padding-right:var(--t-size-7)!important}.py-7{padding-top:var(--t-size-7)!important;padding-bottom:var(--t-size-7)!important}.pa-8{padding:var(--t-size-8)!important}.pt-8{padding-top:var(--t-size-8)!important}.pb-8{padding-bottom:var(--t-size-8)!important}.pl-8{padding-left:var(--t-size-8)!important}.pr-8{padding-right:var(--t-size-8)!important}.px-8{padding-left:var(--t-size-8)!important;padding-right:var(--t-size-8)!important}.py-8{padding-top:var(--t-size-8)!important;padding-bottom:var(--t-size-8)!important}.pa-9{padding:var(--t-size-9)!important}.pt-9{padding-top:var(--t-size-9)!important}.pb-9{padding-bottom:var(--t-size-9)!important}.pl-9{padding-left:var(--t-size-9)!important}.pr-9{padding-right:var(--t-size-9)!important}.px-9{padding-left:var(--t-size-9)!important;padding-right:var(--t-size-9)!important}.py-9{padding-top:var(--t-size-9)!important;padding-bottom:var(--t-size-9)!important}.pa-10{padding:var(--t-size-10)!important}.pt-10{padding-top:var(--t-size-10)!important}.pb-10{padding-bottom:var(--t-size-10)!important}.pl-10{padding-left:var(--t-size-10)!important}.pr-10{padding-right:var(--t-size-10)!important}.px-10{padding-left:var(--t-size-10)!important;padding-right:var(--t-size-10)!important}.py-10{padding-top:var(--t-size-10)!important;padding-bottom:var(--t-size-10)!important}.ma-safe{margin-top:var(--t-safe-area-top);margin-bottom:var(--t-safe-area-bottom);margin-left:var(--t-safe-area-left);margin-right:var(--t-safe-area-right)}.mt-safe{margin-top:var(--t-safe-area-top)!important}.mb-safe{margin-bottom:var(--t-safe-area-bottom)!important}.ml-safe{margin-left:var(--t-safe-area-left)!important}.mr-safe{margin-right:var(--t-safe-area-right)!important}.pa-safe{padding-top:var(--t-safe-area-top);padding-bottom:var(--t-safe-area-bottom);padding-left:var(--t-safe-area-left);padding-right:var(--t-safe-area-right)}.pt-safe{padding-top:var(--t-safe-area-top)!important}.pb-safe{padding-bottom:var(--t-safe-area-bottom)!important}.pl-safe{padding-left:var(--t-safe-area-left)!important}.pr-safe{padding-right:var(--t-safe-area-right)!important}.fs-05,.lh-05{font-size:var(--t-fs-05)!important}.fs-06,.lh-06{font-size:var(--t-fs-06)!important}.fs-07,.lh-07{font-size:var(--t-fs-07)!important}.fs-08,.lh-08{font-size:var(--t-fs-08)!important}.fs-09,.lh-09{font-size:var(--t-fs-09)!important}.fs-10,.lh-10{font-size:var(--t-fs-10)!important}.fs-11,.lh-11{font-size:var(--t-fs-11)!important}.fs-12,.lh-12{font-size:var(--t-fs-12)!important}.fs-13,.lh-13{font-size:var(--t-fs-13)!important}.fs-14,.lh-14{font-size:var(--t-fs-14)!important}.fs-15,.lh-15{font-size:var(--t-fs-15)!important}.fs-16,.lh-16{font-size:var(--t-fs-16)!important}.fs-17,.lh-17{font-size:var(--t-fs-17)!important}.fs-18,.lh-18{font-size:var(--t-fs-18)!important}.fs-19,.lh-19{font-size:var(--t-fs-19)!important}.fs-20,.lh-20{font-size:var(--t-fs-20)!important}.d-block{display:block}.d-inline{display:inline}.d-inline-block{display:inline-block}.d-flex{display:flex}.d-inline-flex{display:inline-flex}.d-grid{display:grid}.d-inline-grid{display:inline-grid}.d-table{display:table}.d-table-row{display:table-row}.d-table-cell{display:table-cell}.d-none{display:none}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-nowrap{flex-wrap:nowrap}.flex-wrap{flex-wrap:wrap}.flex-wrap-reverse{flex-wrap:wrap-reverse}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-around{justify-content:space-around}.justify-evenly{justify-content:space-evenly}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-baseline{align-items:baseline}.items-stretch{align-items:stretch}.content-start{align-content:flex-start}.content-end{align-content:flex-end}.content-center{align-content:center}.content-between{align-content:space-between}.content-around{align-content:space-around}.content-stretch{align-content:stretch}.self-auto{align-self:auto}.self-start{align-self:flex-start}.self-end{align-self:flex-end}.self-center{align-self:center}.self-stretch{align-self:stretch}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-initial{flex:0 1 auto}.flex-none{flex:none}.order-first{order:-9999}.order-last{order:9999}.order-0{order:0}.order-1{order:1}.order-2{order:2}.row{display:flex;flex-wrap:wrap;margin-left:-8px;margin-right:-8px}[class*=col-]{padding-left:8px;padding-right:8px;box-sizing:border-box}.col-1{flex:0 0 calc(100% / 24 * 1);max-width:calc(100% / 24 * 1)}.col-2{flex:0 0 calc(100% / 24 * 2);max-width:calc(100% / 24 * 2)}.col-3{flex:0 0 12.5%;max-width:12.5%}.col-4{flex:0 0 calc(100% / 24 * 4);max-width:calc(100% / 24 * 4)}.col-5{flex:0 0 calc(100% / 24 * 5);max-width:calc(100% / 24 * 5)}.col-6{flex:0 0 25%;max-width:25%}.col-7{flex:0 0 calc(100% / 24 * 7);max-width:calc(100% / 24 * 7)}.col-8{flex:0 0 calc(100% / 24 * 8);max-width:calc(100% / 24 * 8)}.col-9{flex:0 0 37.5%;max-width:37.5%}.col-10{flex:0 0 calc(100% / 24 * 10);max-width:calc(100% / 24 * 10)}.col-11{flex:0 0 calc(100% / 24 * 11);max-width:calc(100% / 24 * 11)}.col-12{flex:0 0 50%;max-width:50%}.col-13{flex:0 0 calc(100% / 24 * 13);max-width:calc(100% / 24 * 13)}.col-14{flex:0 0 calc(100% / 24 * 14);max-width:calc(100% / 24 * 14)}.col-15{flex:0 0 62.5%;max-width:62.5%}.col-16{flex:0 0 calc(100% / 24 * 16);max-width:calc(100% / 24 * 16)}.col-17{flex:0 0 calc(100% / 24 * 17);max-width:calc(100% / 24 * 17)}.col-18{flex:0 0 75%;max-width:75%}.col-19{flex:0 0 calc(100% / 24 * 19);max-width:calc(100% / 24 * 19)}.col-20{flex:0 0 calc(100% / 24 * 20);max-width:calc(100% / 24 * 20)}.col-21{flex:0 0 87.5%;max-width:87.5%}.col-22{flex:0 0 calc(100% / 24 * 22);max-width:calc(100% / 24 * 22)}.col-23{flex:0 0 calc(100% / 24 * 23);max-width:calc(100% / 24 * 23)}.col-24{flex:0 0 100%;max-width:100%}@media (min-width: 576px){.col-sm-1{flex:0 0 calc(100% / 24 * 1);max-width:calc(100% / 24 * 1)}.col-sm-2{flex:0 0 calc(100% / 24 * 2);max-width:calc(100% / 24 * 2)}.col-sm-3{flex:0 0 12.5%;max-width:12.5%}.col-sm-4{flex:0 0 calc(100% / 24 * 4);max-width:calc(100% / 24 * 4)}.col-sm-5{flex:0 0 calc(100% / 24 * 5);max-width:calc(100% / 24 * 5)}.col-sm-6{flex:0 0 25%;max-width:25%}.col-sm-7{flex:0 0 calc(100% / 24 * 7);max-width:calc(100% / 24 * 7)}.col-sm-8{flex:0 0 calc(100% / 24 * 8);max-width:calc(100% / 24 * 8)}.col-sm-9{flex:0 0 37.5%;max-width:37.5%}.col-sm-10{flex:0 0 calc(100% / 24 * 10);max-width:calc(100% / 24 * 10)}.col-sm-11{flex:0 0 calc(100% / 24 * 11);max-width:calc(100% / 24 * 11)}.col-sm-12{flex:0 0 50%;max-width:50%}.col-sm-13{flex:0 0 calc(100% / 24 * 13);max-width:calc(100% / 24 * 13)}.col-sm-14{flex:0 0 calc(100% / 24 * 14);max-width:calc(100% / 24 * 14)}.col-sm-15{flex:0 0 62.5%;max-width:62.5%}.col-sm-16{flex:0 0 calc(100% / 24 * 16);max-width:calc(100% / 24 * 16)}.col-sm-17{flex:0 0 calc(100% / 24 * 17);max-width:calc(100% / 24 * 17)}.col-sm-18{flex:0 0 75%;max-width:75%}.col-sm-19{flex:0 0 calc(100% / 24 * 19);max-width:calc(100% / 24 * 19)}.col-sm-20{flex:0 0 calc(100% / 24 * 20);max-width:calc(100% / 24 * 20)}.col-sm-21{flex:0 0 87.5%;max-width:87.5%}.col-sm-22{flex:0 0 calc(100% / 24 * 22);max-width:calc(100% / 24 * 22)}.col-sm-23{flex:0 0 calc(100% / 24 * 23);max-width:calc(100% / 24 * 23)}.col-sm-24{flex:0 0 100%;max-width:100%}}@media (min-width: 768px){.col-md-1{flex:0 0 calc(100% / 24 * 1);max-width:calc(100% / 24 * 1)}.col-md-2{flex:0 0 calc(100% / 24 * 2);max-width:calc(100% / 24 * 2)}.col-md-3{flex:0 0 12.5%;max-width:12.5%}.col-md-4{flex:0 0 calc(100% / 24 * 4);max-width:calc(100% / 24 * 4)}.col-md-5{flex:0 0 calc(100% / 24 * 5);max-width:calc(100% / 24 * 5)}.col-md-6{flex:0 0 25%;max-width:25%}.col-md-7{flex:0 0 calc(100% / 24 * 7);max-width:calc(100% / 24 * 7)}.col-md-8{flex:0 0 calc(100% / 24 * 8);max-width:calc(100% / 24 * 8)}.col-md-9{flex:0 0 37.5%;max-width:37.5%}.col-md-10{flex:0 0 calc(100% / 24 * 10);max-width:calc(100% / 24 * 10)}.col-md-11{flex:0 0 calc(100% / 24 * 11);max-width:calc(100% / 24 * 11)}.col-md-12{flex:0 0 50%;max-width:50%}.col-md-13{flex:0 0 calc(100% / 24 * 13);max-width:calc(100% / 24 * 13)}.col-md-14{flex:0 0 calc(100% / 24 * 14);max-width:calc(100% / 24 * 14)}.col-md-15{flex:0 0 62.5%;max-width:62.5%}.col-md-16{flex:0 0 calc(100% / 24 * 16);max-width:calc(100% / 24 * 16)}.col-md-17{flex:0 0 calc(100% / 24 * 17);max-width:calc(100% / 24 * 17)}.col-md-18{flex:0 0 75%;max-width:75%}.col-md-19{flex:0 0 calc(100% / 24 * 19);max-width:calc(100% / 24 * 19)}.col-md-20{flex:0 0 calc(100% / 24 * 20);max-width:calc(100% / 24 * 20)}.col-md-21{flex:0 0 87.5%;max-width:87.5%}.col-md-22{flex:0 0 calc(100% / 24 * 22);max-width:calc(100% / 24 * 22)}.col-md-23{flex:0 0 calc(100% / 24 * 23);max-width:calc(100% / 24 * 23)}.col-md-24{flex:0 0 100%;max-width:100%}}@media (min-width: 992px){.col-lg-1{flex:0 0 calc(100% / 24 * 1);max-width:calc(100% / 24 * 1)}.col-lg-2{flex:0 0 calc(100% / 24 * 2);max-width:calc(100% / 24 * 2)}.col-lg-3{flex:0 0 12.5%;max-width:12.5%}.col-lg-4{flex:0 0 calc(100% / 24 * 4);max-width:calc(100% / 24 * 4)}.col-lg-5{flex:0 0 calc(100% / 24 * 5);max-width:calc(100% / 24 * 5)}.col-lg-6{flex:0 0 25%;max-width:25%}.col-lg-7{flex:0 0 calc(100% / 24 * 7);max-width:calc(100% / 24 * 7)}.col-lg-8{flex:0 0 calc(100% / 24 * 8);max-width:calc(100% / 24 * 8)}.col-lg-9{flex:0 0 37.5%;max-width:37.5%}.col-lg-10{flex:0 0 calc(100% / 24 * 10);max-width:calc(100% / 24 * 10)}.col-lg-11{flex:0 0 calc(100% / 24 * 11);max-width:calc(100% / 24 * 11)}.col-lg-12{flex:0 0 50%;max-width:50%}.col-lg-13{flex:0 0 calc(100% / 24 * 13);max-width:calc(100% / 24 * 13)}.col-lg-14{flex:0 0 calc(100% / 24 * 14);max-width:calc(100% / 24 * 14)}.col-lg-15{flex:0 0 62.5%;max-width:62.5%}.col-lg-16{flex:0 0 calc(100% / 24 * 16);max-width:calc(100% / 24 * 16)}.col-lg-17{flex:0 0 calc(100% / 24 * 17);max-width:calc(100% / 24 * 17)}.col-lg-18{flex:0 0 75%;max-width:75%}.col-lg-19{flex:0 0 calc(100% / 24 * 19);max-width:calc(100% / 24 * 19)}.col-lg-20{flex:0 0 calc(100% / 24 * 20);max-width:calc(100% / 24 * 20)}.col-lg-21{flex:0 0 87.5%;max-width:87.5%}.col-lg-22{flex:0 0 calc(100% / 24 * 22);max-width:calc(100% / 24 * 22)}.col-lg-23{flex:0 0 calc(100% / 24 * 23);max-width:calc(100% / 24 * 23)}.col-lg-24{flex:0 0 100%;max-width:100%}}@media (min-width: 1200px){.col-xl-1{flex:0 0 calc(100% / 24 * 1);max-width:calc(100% / 24 * 1)}.col-xl-2{flex:0 0 calc(100% / 24 * 2);max-width:calc(100% / 24 * 2)}.col-xl-3{flex:0 0 12.5%;max-width:12.5%}.col-xl-4{flex:0 0 calc(100% / 24 * 4);max-width:calc(100% / 24 * 4)}.col-xl-5{flex:0 0 calc(100% / 24 * 5);max-width:calc(100% / 24 * 5)}.col-xl-6{flex:0 0 25%;max-width:25%}.col-xl-7{flex:0 0 calc(100% / 24 * 7);max-width:calc(100% / 24 * 7)}.col-xl-8{flex:0 0 calc(100% / 24 * 8);max-width:calc(100% / 24 * 8)}.col-xl-9{flex:0 0 37.5%;max-width:37.5%}.col-xl-10{flex:0 0 calc(100% / 24 * 10);max-width:calc(100% / 24 * 10)}.col-xl-11{flex:0 0 calc(100% / 24 * 11);max-width:calc(100% / 24 * 11)}.col-xl-12{flex:0 0 50%;max-width:50%}.col-xl-13{flex:0 0 calc(100% / 24 * 13);max-width:calc(100% / 24 * 13)}.col-xl-14{flex:0 0 calc(100% / 24 * 14);max-width:calc(100% / 24 * 14)}.col-xl-15{flex:0 0 62.5%;max-width:62.5%}.col-xl-16{flex:0 0 calc(100% / 24 * 16);max-width:calc(100% / 24 * 16)}.col-xl-17{flex:0 0 calc(100% / 24 * 17);max-width:calc(100% / 24 * 17)}.col-xl-18{flex:0 0 75%;max-width:75%}.col-xl-19{flex:0 0 calc(100% / 24 * 19);max-width:calc(100% / 24 * 19)}.col-xl-20{flex:0 0 calc(100% / 24 * 20);max-width:calc(100% / 24 * 20)}.col-xl-21{flex:0 0 87.5%;max-width:87.5%}.col-xl-22{flex:0 0 calc(100% / 24 * 22);max-width:calc(100% / 24 * 22)}.col-xl-23{flex:0 0 calc(100% / 24 * 23);max-width:calc(100% / 24 * 23)}.col-xl-24{flex:0 0 100%;max-width:100%}}@media (min-width: 1400px){.col-xxl-1{flex:0 0 calc(100% / 24 * 1);max-width:calc(100% / 24 * 1)}.col-xxl-2{flex:0 0 calc(100% / 24 * 2);max-width:calc(100% / 24 * 2)}.col-xxl-3{flex:0 0 12.5%;max-width:12.5%}.col-xxl-4{flex:0 0 calc(100% / 24 * 4);max-width:calc(100% / 24 * 4)}.col-xxl-5{flex:0 0 calc(100% / 24 * 5);max-width:calc(100% / 24 * 5)}.col-xxl-6{flex:0 0 25%;max-width:25%}.col-xxl-7{flex:0 0 calc(100% / 24 * 7);max-width:calc(100% / 24 * 7)}.col-xxl-8{flex:0 0 calc(100% / 24 * 8);max-width:calc(100% / 24 * 8)}.col-xxl-9{flex:0 0 37.5%;max-width:37.5%}.col-xxl-10{flex:0 0 calc(100% / 24 * 10);max-width:calc(100% / 24 * 10)}.col-xxl-11{flex:0 0 calc(100% / 24 * 11);max-width:calc(100% / 24 * 11)}.col-xxl-12{flex:0 0 50%;max-width:50%}.col-xxl-13{flex:0 0 calc(100% / 24 * 13);max-width:calc(100% / 24 * 13)}.col-xxl-14{flex:0 0 calc(100% / 24 * 14);max-width:calc(100% / 24 * 14)}.col-xxl-15{flex:0 0 62.5%;max-width:62.5%}.col-xxl-16{flex:0 0 calc(100% / 24 * 16);max-width:calc(100% / 24 * 16)}.col-xxl-17{flex:0 0 calc(100% / 24 * 17);max-width:calc(100% / 24 * 17)}.col-xxl-18{flex:0 0 75%;max-width:75%}.col-xxl-19{flex:0 0 calc(100% / 24 * 19);max-width:calc(100% / 24 * 19)}.col-xxl-20{flex:0 0 calc(100% / 24 * 20);max-width:calc(100% / 24 * 20)}.col-xxl-21{flex:0 0 87.5%;max-width:87.5%}.col-xxl-22{flex:0 0 calc(100% / 24 * 22);max-width:calc(100% / 24 * 22)}.col-xxl-23{flex:0 0 calc(100% / 24 * 23);max-width:calc(100% / 24 * 23)}.col-xxl-24{flex:0 0 100%;max-width:100%}}.hs-100{height:100vh!important}.hs-75{height:75vh!important}.hs-50{height:50vh!important}.hs-25{height:25vh!important}.hp-100{height:100%!important}.hp-75{height:75%!important}.hp-50{height:50%!important}.hp-25{height:25%!important}.ws-100{width:100vw!important}.ws-75{width:75vw!important}.ws-50{width:50vw!important}.ws-25{width:25vw!important}.wp-100{width:100%!important}.wp-75{width:75%!important}.wp-50{width:50%!important}.wp-25{width:25%!important}.bg-none{background-color:transparent!important}.bg-background{background-color:var(--t-color-background)!important}.bg-surface{background-color:var(--t-color-surface)!important}.border-none{border:none!important}.border-separate{border-color:var(--t-color-separate)!important}.bg-primary{background-color:var(--t-color-primary)!important}.bg-primary-light{background-color:var(--t-color-primary-light)!important}.bg-primary-dark{background-color:var(--t-color-primary-dark)!important}.border-primary{border-color:var(--t-color-primary)!important}.border-primary-light{border-color:var(--t-color-primary-light)!important}.border-primary-dark{border-color:var(--t-color-primary-dark)!important}.color-primary{color:var(--t-color-primary)!important}.color-primary-light{color:var(--t-color-primary-light)!important}.color-primary-dark{color:var(--t-color-primary-dark)!important}.bg-secondary{background-color:var(--t-color-secondary)!important}.bg-secondary-light{background-color:var(--t-color-secondary-light)!important}.bg-secondary-dark{background-color:var(--t-color-secondary-dark)!important}.border-secondary{border-color:var(--t-color-secondary)!important}.border-secondary-light{border-color:var(--t-color-secondary-light)!important}.border-secondary-dark{border-color:var(--t-color-secondary-dark)!important}.color-secondary{color:var(--t-color-secondary)!important}.color-secondary-light{color:var(--t-color-secondary-light)!important}.color-secondary-dark{color:var(--t-color-secondary-dark)!important}.bg-success{background-color:var(--t-color-success)!important}.bg-success-light{background-color:var(--t-color-success-light)!important}.bg-success-dark{background-color:var(--t-color-success-dark)!important}.border-success{border-color:var(--t-color-success)!important}.border-success-light{border-color:var(--t-color-success-light)!important}.border-success-dark{border-color:var(--t-color-success-dark)!important}.color-success{color:var(--t-color-success)!important}.color-success-light{color:var(--t-color-success-light)!important}.color-success-dark{color:var(--t-color-success-dark)!important}.bg-warning{background-color:var(--t-color-warning)!important}.bg-warning-light{background-color:var(--t-color-warning-light)!important}.bg-warning-dark{background-color:var(--t-color-warning-dark)!important}.border-warning{border-color:var(--t-color-warning)!important}.border-warning-light{border-color:var(--t-color-warning-light)!important}.border-warning-dark{border-color:var(--t-color-warning-dark)!important}.color-warning{color:var(--t-color-warning)!important}.color-warning-light{color:var(--t-color-warning-light)!important}.color-warning-dark{color:var(--t-color-warning-dark)!important}.bg-danger{background-color:var(--t-color-danger)!important}.bg-danger-light{background-color:var(--t-color-danger-light)!important}.bg-danger-dark{background-color:var(--t-color-danger-dark)!important}.border-danger{border-color:var(--t-color-danger)!important}.border-danger-light{border-color:var(--t-color-danger-light)!important}.border-danger-dark{border-color:var(--t-color-danger-dark)!important}.color-danger{color:var(--t-color-danger)!important}.color-danger-light{color:var(--t-color-danger-light)!important}.color-danger-dark{color:var(--t-color-danger-dark)!important}.bg-info{background-color:var(--t-color-info)!important}.bg-info-light{background-color:var(--t-color-info-light)!important}.bg-info-dark{background-color:var(--t-color-info-dark)!important}.border-info{border-color:var(--t-color-info)!important}.border-info-light{border-color:var(--t-color-info-light)!important}.border-info-dark{border-color:var(--t-color-info-dark)!important}.color-info{color:var(--t-color-info)!important}.color-info-light{color:var(--t-color-info-light)!important}.color-info-dark{color:var(--t-color-info-dark)!important}.text-start{text-align:start}.text-end{text-align:end}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.pos-static{position:static}.pos-relative{position:relative}.pos-absolute{position:absolute}.pos-fixed{position:fixed}.pos-sticky{position:sticky}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.top-auto{top:auto}.right-auto{right:auto}.bottom-auto{bottom:auto}.left-auto{left:auto}.pos-center-absolute{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.pos-center-fixed{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%)}.scroll-auto{overflow:auto!important}.scroll-hidden{overflow:hidden!important}.scroll-show{overflow:scroll!important}.scroll-x-auto{overflow-x:auto!important}.scroll-x-hidden{overflow-x:hidden!important}.scroll-x-show{overflow-x:scroll!important}.scroll-y-auto{overflow-y:auto!important}.scroll-y-hidden{overflow-y:hidden!important}.scroll-y-show{overflow-y:scroll!important}.t-app{height:100vh;width:100vw;max-height:100vh;max-width:100vw;position:absolute;top:0;left:0;overflow:hidden}.t-present-backdrop[data-v-3e2364a7]{position:fixed;width:100%;height:100%;top:0;left:0;transition:background-color var(--t-present-transition, .2s) ease;background-color:rgba(var(--t-color-backdrop-rgb),var(--t-present-backdrop-opacity, 0))}.t-present[data-v-3e2364a7]{display:flex;justify-content:center;align-items:center;position:absolute;width:fit-content;height:fit-content;transition:transform var(--t-present-transition, .2s) ease}.t-present.bottom[data-v-3e2364a7]{bottom:0;left:0;width:100%;transform:translateY(var(--t-present-content-transform, 100%))}.t-present.top[data-v-3e2364a7]{top:0;left:0;width:100%;transform:translateY(var(--t-present-content-transform, -100%))}.t-present.right[data-v-3e2364a7]{top:0;right:0;height:100%;transform:translate(var(--t-present-content-transform, 100%))}.t-present.left[data-v-3e2364a7]{top:0;left:0;height:100%;transform:translate(var(--t-present-content-transform, -100%))}.t-present.center[data-v-3e2364a7]{width:fit-content;height:fit-content;transform:translate(-50%,-50%);top:50%;left:50%;opacity:var(--t-present-content-opacity, 1);transition:opacity var(--t-present-transition, .2s) ease}.t-loading-icon[data-v-7c463303]{display:inline-block;border:2px solid transparent;border-radius:50%;border-top-color:var(var(--t-color-text));animation:spin-7c463303 .6s linear infinite}@keyframes spin-7c463303{to{transform:rotate(360deg)}}.t-button[data-v-74d8380d]{display:flex;justify-content:center;align-items:center;position:relative;overflow:hidden;color:var(--color);background:var(--background);border:var(--border);white-space:nowrap}.t-button[data-v-74d8380d]>*{z-index:2}.t-button:not(:disabled).active-background[data-v-74d8380d]:active:after,.t-button:not(:disabled).active-background[data-v-74d8380d]:focus:after{content:"";display:block;position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;background-color:rgba(var(--t-color-backdrop-rgb),.1)}.t-button[data-v-74d8380d]:disabled{opacity:.5}.t-button.rounded[data-v-74d8380d]{border-radius:8px}.t-button.block[data-v-74d8380d]{width:100%}.t-button.size-small[data-v-74d8380d]{padding:.5rem .75rem;font-size:.8rem;height:31px}.t-button.size-standard[data-v-74d8380d]{padding:.75rem 1rem;font-size:1rem;height:42px}.t-button.size-large[data-v-74d8380d]{padding:1rem 1.1rem;font-size:1.2rem;height:50px}.t-button .loader[data-v-74d8380d]{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center}.t-alert[data-v-5cf415ec]{border-radius:8px;background-color:var(--t-color-surface);position:relative;width:270px;overflow:hidden}.t-alert .t-alert-footer[data-v-5cf415ec]{display:flex;flex-direction:row;border-top:.55px solid var(--t-color-separate)}.t-alert .t-alert-footer[data-v-5cf415ec]>*{flex:1}.t-alert .t-alert-content[data-v-5cf415ec]{padding:var(--t-size-2)}.t-alert .t-alert-header[data-v-5cf415ec]{padding:var(--t-size-2);border-bottom:.55px solid var(--t-color-separate);display:flex;justify-content:center;align-items:center;font-weight:600}.t-alert .t-alert-footer .t-button[data-v-5cf415ec]{font-weight:600}.t-alert.pop[data-v-5cf415ec]{animation:pop-5cf415ec .3s ease-in-out}@keyframes pop-5cf415ec{0%{transform:scale(1)}50%{transform:scale(1.1)}70%{transform:scale(1)}80%{transform:scale(1.1)}to{transform:scale(1)}}.t-action[data-v-73339adc]{width:100vw;max-width:400px;padding:0 1rem;margin-bottom:var(--t-safe-area-bottom)}.t-action>div[data-v-73339adc]{position:relative;overflow:hidden;width:100%;border-radius:8px;margin-bottom:.5rem;background-color:var(--t-color-surface)}.t-action>div[data-v-73339adc]:last-child{margin-bottom:1rem!important}.t-action.pop[data-v-73339adc]{animation:pop-73339adc .3s ease-in-out}@keyframes pop-73339adc{0%{transform:scale(1)}50%{transform:scale(1.1)}70%{transform:scale(1)}80%{transform:scale(1.1)}to{transform:scale(1)}}.t-loading[data-v-d048a41d]{padding:1rem;line-height:1rem;background-color:var(--t-color-surface);border-radius:8px}.t-toast[data-v-61960e03]{width:calc(100% - 2rem);height:fit-content;max-width:400px;padding:.75rem 1rem;position:absolute;z-index:9999;border-radius:8px;left:50%;transition:all .2s ease;opacity:1;color:var(--color);background:var(--background);border:var(--border)}.t-toast.bottom[data-v-61960e03]{bottom:0;transform:translate(-50%,100%)}.t-toast.bottom.open[data-v-61960e03]{transform:translate(-50%,calc((var(--t-safe-area-bottom) + 1rem + var(--space)) * -1))}.t-toast.top[data-v-61960e03]{top:0;transform:translate(-50%,-100%)}.t-toast.top.open[data-v-61960e03]{transform:translate(-50%,calc(var(--t-safe-area-top) + 1rem + var(--space)))}.t-toast.closing[data-v-61960e03]{opacity:0}.t-cable[data-v-ecb72421]{position:absolute;z-index:10}.t-cable.bottom[data-v-ecb72421]{bottom:0;left:0;height:auto;width:100%;will-change:transform;transition:transform var(--t-keyboard-transition) ease-out}.t-cable.bottom.keyboard[data-v-ecb72421]{transform:translateY(calc((var(--t-keyboard-height) - var(--t-safe-area-bottom)) * -1))}.t-cable.top[data-v-ecb72421]{left:0;top:0;height:auto;width:100%}.t-cable.left[data-v-ecb72421]{left:0;top:0;height:100%;width:auto}.t-cable.right[data-v-ecb72421]{right:0;top:0;height:100%;width:auto}.t-card{border-radius:8px;background:var(--background);padding:var(--t-size-2);position:relative}.t-content[data-v-9a833657]{width:100%;height:100%;overflow:auto;background-color:var(--t-color-background)}.t-refresher[data-v-ac2b2370]{display:flex;justify-content:center;align-items:center;overflow:hidden}img.spiner[data-v-ac2b2370]{animation:spinrefresh-ac2b2370 .7s linear infinite}@keyframes spinrefresh-ac2b2370{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.t-screen[data-v-c2a3436c]{position:absolute;top:0;left:0;height:100%;width:100%;max-height:100%;max-width:100%;background-color:var(--t-color-background);will-change:transform;overflow:hidden}.t-swipe-backdrop[data-v-e385a37a]{display:block;position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(var(--t-color-backdrop-rgb),var(--t-swipe-backdrop-opacity, 0));transition:all var(--t-screen-backdrop-duration, 0) ease!important}.t-toolbar[data-v-3b3a7896]{background-color:var(--t-color-surface)}.t-toolbar>div[data-v-3b3a7896]{align-items:center;display:flex;position:relative}.t-toolbar>div[data-v-3b3a7896]>*{flex:1}.t-toolbar.bottom[data-v-3b3a7896]{padding-bottom:var(--t-safe-area-bottom)}.t-toolbar.bottom>div[data-v-3b3a7896]{flex-direction:row;height:var(--t-size-toolbar);max-height:var(--t-size-toolbar);width:100%}.t-toolbar.bottom>div[data-v-3b3a7896]>*{height:100%}.t-toolbar.top[data-v-3b3a7896]{padding-top:var(--t-safe-area-top)}.t-toolbar.top>div[data-v-3b3a7896]{flex-direction:row;height:var(--t-size-toolbar);max-height:var(--t-size-toolbar);width:100%}.t-toolbar.top>div[data-v-3b3a7896]>*{height:100%}.t-toolbar.left[data-v-3b3a7896]{padding-left:var(--t-safe-area-left)}.t-toolbar.left>div[data-v-3b3a7896]{flex-direction:column;width:var(--t-size-toolbar);max-width:var(--t-size-toolbar);height:100%}.t-toolbar.left>div[data-v-3b3a7896]>*{width:100%}.t-toolbar.right[data-v-3b3a7896]{padding-right:var(--t-safe-area-right)}.t-toolbar.right>div[data-v-3b3a7896]{flex-direction:column;width:var(--t-size-toolbar);max-width:var(--t-size-toolbar);height:100%}.t-toolbar.right>div[data-v-3b3a7896]>*{width:100%}.t-back-button[data-v-ed626a3d]{font-size:2rem;background-color:transparent;width:44px;height:100%;flex:none;display:flex;justify-content:center;align-items:center;color:var(--t-color-text)}.t-text[data-v-f0f94f05]{color:var(--color);font-size:var(--font-size)}.t-pull-bar[data-v-daa38c85]{background-color:var(--t-color-separate);position:absolute;border-radius:3px;z-index:99}.t-pull-bar.bottom[data-v-daa38c85]{width:40px;height:4px;top:5px}.t-pull-bar.top[data-v-daa38c85]{width:40px;height:4px;bottom:5px}.t-pull-bar.left[data-v-daa38c85]{height:40px;width:4px;right:5px}.t-pull-bar.right[data-v-daa38c85]{height:40px;width:4px;left:5px}.t-sheet[data-v-5e880505]{background:var(--background);position:relative}.t-sheet.fullscreen[data-v-5e880505]{height:100%;width:100%}.t-sheet.rounded:not(.fullscreen).bottom.radius[data-v-5e880505]{border-top-left-radius:15px;border-top-right-radius:15px}.t-sheet.rounded:not(.fullscreen).top.radius[data-v-5e880505]{border-bottom-left-radius:15px;border-bottom-right-radius:15px}.t-sheet.rounded:not(.fullscreen).left.radius[data-v-5e880505]{border-top-right-radius:15px;border-bottom-right-radius:15px}.t-sheet.rounded:not(.fullscreen).right.radius[data-v-5e880505]{border-top-left-radius:15px;border-bottom-left-radius:15px}.t-sheet.rounded:not(.fullscreen).center.radius[data-v-5e880505]{border-radius:15px}.t-sheet.rounded:not(.fullscreen).radius[data-v-5e880505]{overflow:hidden}.t-sheet-close[data-v-5e880505]{position:absolute;color:var(--t-color-surface);background-color:transparent;border-radius:50%;height:30px;width:30px;font-size:1rem;border:1px solid var(--t-color-surface);bottom:-40px;left:50%;transform:translate(-50%)}.t-input[data-v-1a9425cf]{position:relative}.t-input .t-input-content[data-v-1a9425cf]{display:flex;align-items:center}.t-input input[data-v-1a9425cf]{background-color:transparent;color:var(--t-color-text);padding:0;flex:1}.t-input.size-small .t-input-label[data-v-1a9425cf]{display:none}.t-input.size-small .t-text[data-v-1a9425cf]{font-size:.7rem}.t-input.size-small input[data-v-1a9425cf]{font-size:1rem;height:31px}.t-input.size-standard .t-input-label[data-v-1a9425cf]{font-size:.8rem}.t-input.size-standard .t-text[data-v-1a9425cf]{font-size:.7rem}.t-input.size-standard input[data-v-1a9425cf]{font-size:1rem;height:42px}.t-input.size-large .t-input-label[data-v-1a9425cf]{font-size:1rem}.t-input.size-large .t-text[data-v-1a9425cf]{font-size:.8rem}.t-input.size-large input[data-v-1a9425cf]{font-size:1.2rem;height:50px}.t-input.variant-default label[data-v-1a9425cf]{display:block;width:100%}.t-divider.horizontal[data-v-47ee8991]{width:100%;border-bottom:.55px solid var(--t-color-separate)}.t-divider.vertical[data-v-47ee8991]{height:100%;border-right:.55px solid var(--t-color-separate)}.t-toggle-password[data-v-3268e9e3]{background-color:transparent;width:fit-content;flex:none;display:flex;justify-content:center;align-items:center;color:var(--color);font-size:1.2rem}.t-avatar[data-v-24384c2f]{position:relative;border-radius:50%;height:var(--size);width:var(--size);overflow:hidden}.t-avatar[data-v-24384c2f]>*{width:100%;height:100%}.t-avatar.square[data-v-24384c2f]{border-radius:8px}.t-collapse-header{display:flex;width:100%;align-items:center;padding:.5rem 0}.t-collapse-header>*{display:flex;align-items:center}.t-collapse-header i{font-size:1.2rem!important}.t-collapse-header .icon{justify-content:flex-end}.t-collapse-header .icon i{font-size:1.5rem!important}.t-collapse-header .t-collapse-title{flex:1}.t-collapse-header>*:first-child:not(.t-collapse-title){margin-right:.25rem}.t-collapse .t-collapse-content{height:var(--height);transition:height .2s ease;overflow:auto}.t-collapse:not(.open) .t-collapse-content{height:0px!important}.t-switch[data-v-3616970e]{height:31px;width:50px;border-radius:25px;position:relative;overflow:hidden;transition:all .2s ease}.t-switch .t-switch-icon[data-v-3616970e]{height:25px;width:25px;border-radius:50%;transition:all .2s ease;position:absolute;top:3px}.t-switch[data-v-3616970e]:not(.on){background-color:var(--t-color-separate)}.t-switch:not(.on) .t-switch-icon[data-v-3616970e]{left:3px;background:var(--t-color-text-dark)}.t-switch.on[data-v-3616970e]{background:var(--background)}.t-switch.on .t-switch-icon[data-v-3616970e]{right:3px;background:var(--color)}.t-tab[data-v-36c12a50]{display:flex;justify-content:center;align-items:center}.t-tab .t-button[data-v-36c12a50]{padding:.75rem .5rem!important}.t-tabs[data-v-65a2c74c]{height:fit-content;display:flex;width:100%;align-items:center;position:relative;padding:0;margin:0;list-style:none;overflow:auto}.t-tabs.top-start[data-v-65a2c74c],.t-tabs.bottom-start[data-v-65a2c74c],.t-tabs.left-start[data-v-65a2c74c],.t-tabs.right-start[data-v-65a2c74c]{justify-content:flex-start}.t-tabs.top-end[data-v-65a2c74c],.t-tabs.bottom-end[data-v-65a2c74c],.t-tabs.left-end[data-v-65a2c74c],.t-tabs.right-end[data-v-65a2c74c]{justify-content:flex-end}.t-tabs.top-center[data-v-65a2c74c],.t-tabs.bottom-center[data-v-65a2c74c],.t-tabs.left-center[data-v-65a2c74c],.t-tabs.right-center[data-v-65a2c74c]{justify-content:center}.t-tabs.top-start[data-v-65a2c74c],.t-tabs.top-center[data-v-65a2c74c],.t-tabs.top-end[data-v-65a2c74c],.t-tabs.bottom-start[data-v-65a2c74c],.t-tabs.bottom-center[data-v-65a2c74c],.t-tabs.bottom-end[data-v-65a2c74c]{flex-direction:row}.t-tabs.left-start[data-v-65a2c74c],.t-tabs.left-center[data-v-65a2c74c],.t-tabs.left-end[data-v-65a2c74c],.t-tabs.right-start[data-v-65a2c74c],.t-tabs.right-center[data-v-65a2c74c],.t-tabs.right-end[data-v-65a2c74c]{flex-direction:column}.t-tabs.border-under[data-v-65a2c74c]:after{content:"";display:block}.t-tabs.border-under.top-start[data-v-65a2c74c]:after,.t-tabs.border-under.top-center[data-v-65a2c74c]:after,.t-tabs.border-under.top-end[data-v-65a2c74c]:after,.t-tabs.border-under.bottom-start[data-v-65a2c74c]:after,.t-tabs.border-under.bottom-center[data-v-65a2c74c]:after,.t-tabs.border-under.bottom-end[data-v-65a2c74c]:after{width:var(--border);height:2.5px;background-color:var(--color);position:absolute;transform:translate(var(--transform));transition:transform .2s ease}.t-tabs.border-under.top-start[data-v-65a2c74c]:after,.t-tabs.border-under.top-center[data-v-65a2c74c]:after,.t-tabs.border-under.top-end[data-v-65a2c74c]:after{bottom:0;left:0}.t-tabs.border-under.bottom-start[data-v-65a2c74c]:after,.t-tabs.border-under.bottom-center[data-v-65a2c74c]:after,.t-tabs.border-under.bottom-end[data-v-65a2c74c]:after{top:0;left:0}.t-tabs.border-under.left-start[data-v-65a2c74c]:after,.t-tabs.border-under.left-center[data-v-65a2c74c]:after,.t-tabs.border-under.left-end[data-v-65a2c74c]:after,.t-tabs.border-under.right-start[data-v-65a2c74c]:after,.t-tabs.border-under.right-center[data-v-65a2c74c]:after,.t-tabs.border-under.right-end[data-v-65a2c74c]:after{height:var(--border);width:2.5px;background-color:var(--color);position:absolute;transform:translateY(var(--transform));transition:transform .2s ease}.t-tabs.border-under.left-start[data-v-65a2c74c]:after,.t-tabs.border-under.left-center[data-v-65a2c74c]:after,.t-tabs.border-under.left-end[data-v-65a2c74c]:after{top:0;right:0}.t-tabs.border-under.right-start[data-v-65a2c74c]:after,.t-tabs.border-under.right-center[data-v-65a2c74c]:after,.t-tabs.border-under.right-end[data-v-65a2c74c]:after{top:0;left:0}.t-content[data-v-1436aa9f]{display:flex;justify-content:center;align-items:center;height:100%;width:100%;position:absolute;top:0;left:0}
|
|
1
|
+
@charset "UTF-8";*{padding:0;margin:0}body,html{font-family:SFUFutura,Inter,sans-serif;background-color:var(--t-color-background, #ffffff);color:var(--t-color-text, #000000);font-size:16px;height:100vh;width:100vw;max-height:100vh;max-width:100vw;overflow:hidden}html,body,*{border:unset;box-sizing:border-box;touch-action:pan-x pan-y;overscroll-behavior:none;-webkit-tap-highlight-color:transparent!important;-webkit-touch-callout:none!important;user-select:none!important;-webkit-user-select:none!important;-ms-user-select:none!important;scrollbar-width:none;-ms-overflow-style:none}html::-webkit-scrollbar,body::-webkit-scrollbar,*::-webkit-scrollbar{display:none}html:active,html:focus,body:active,body:focus,*:active,*:focus{outline:0;border:unset}a{color:var(--t-color-status-primary)}.--theme-light{--t-color-background: #ededed;--t-color-background-rgb: 237, 237, 237;--t-color-surface: #ffffff;--t-color-surface-rgb: 255, 255, 255;--t-color-separate: #eaeaea;--t-color-separate-rgb: 234, 234, 234;--t-color-backdrop: #212529;--t-color-backdrop-rgb: 33, 37, 41;--t-color-backdrop-surface: #ffffff;--t-color-backdrop-surface-rgb: 255, 255, 255;--t-color-text: #212529;--t-color-text-rgb: 33, 37, 41;--t-color-text-dark: #838383;--t-color-text-dark-rgb: 131, 131, 131;--t-color-text-light: #0d0d0d;--t-color-text-light-rgb: 13, 13, 13}.--theme-dark{--t-color-background: #141919;--t-color-background-rgb: 20, 25, 25;--t-color-surface: #212828;--t-color-surface-rgb: 33, 40, 40;--t-color-separate: #2d3737;--t-color-separate-rgb: 45, 55, 55;--t-color-backdrop: #121212;--t-color-backdrop-rgb: 18, 18, 18;--t-color-backdrop-surface: #5e5e5e;--t-color-backdrop-surface-rgb: 94, 94, 94;--t-color-text: #e9ecef;--t-color-text-rgb: 233, 236, 239;--t-color-text-dark: #b6b6b6;--t-color-text-dark-rgb: 182, 182, 182;--t-color-text-light: #ffffff;--t-color-text-light-rgb: 255, 255, 255}:root{--t-color-status-danger-text: #ffffff;--t-color-status-danger-text-rgb: 255,255,255;--t-color-status-danger-light: #ef5350;--t-color-status-danger-light-rgb: 239, 83, 80;--t-color-status-danger: #e53935;--t-color-status-danger-rgb: 229, 57, 53;--t-color-status-danger-dark: #c62828;--t-color-status-danger-dark-rgb: 198, 40, 40}:root{--t-color-status-primary-text: #ffffff;--t-color-status-primary-text-rgb: 255,255,255;--t-color-status-primary-light: #42a5f5;--t-color-status-primary-light-rgb: 66, 165, 245;--t-color-status-primary: #1e88e5;--t-color-status-primary-rgb: 30, 136, 229;--t-color-status-primary-dark: #1565c0;--t-color-status-primary-dark-rgb: 21, 101, 192}:root{--t-color-status-secondary-text: #ffffff;--t-color-status-secondary-text-rgb: 255,255,255;--t-color-status-secondary-light: #adb5bd;--t-color-status-secondary-light-rgb: 173, 181, 189;--t-color-status-secondary: #5a6268;--t-color-status-secondary-rgb: 90, 98, 104;--t-color-status-secondary-dark: #343a40;--t-color-status-secondary-dark-rgb: 52, 58, 64}:root{--t-color-status-success-text: #ffffff;--t-color-status-success-text-rgb: 255,255,255;--t-color-status-success-light: #66bb6a;--t-color-status-success-light-rgb: 102, 187, 106;--t-color-status-success: #43a047;--t-color-status-success-rgb: 67, 160, 71;--t-color-status-success-dark: #2e7d32;--t-color-status-success-dark-rgb: 46, 125, 50}:root{--t-color-status-warning-text: #141919;--t-color-status-warning-text-rgb: 43, 43, 43;--t-color-status-warning-light: #ffca28;--t-color-status-warning-light-rgb: 255, 202, 40;--t-color-status-warning: #ffb300;--t-color-status-warning-rgb: 255, 179, 0;--t-color-status-warning-dark: #ff8f00;--t-color-status-warning-dark-rgb: 255, 143, 0}:root{--t-color-status-info-text: #ffffff;--t-color-status-info-text-rgb: 255,255,255;--t-color-status-info-light: #29b6f6;--t-color-status-info-light-rgb: 41, 182, 246;--t-color-status-info: #039be5;--t-color-status-info-rgb: 3, 155, 229;--t-color-status-info-dark: #0277bd;--t-color-status-info-dark-rgb: 2, 119, 189}:root{--t-size-0: 0rem;--t-size-1: .5rem;--t-size-2: 1rem;--t-size-3: 1.5rem;--t-size-4: 2rem;--t-size-5: 2.5rem;--t-size-6: 3rem;--t-size-7: 3.5rem;--t-size-8: 4rem;--t-size-9: 4.5rem;--t-size-10: 5rem;--t-fs-05: .5rem;--t-fs-06: .6rem;--t-fs-07: .7rem;--t-fs-08: .8rem;--t-fs-09: .9rem;--t-fs-10: 1rem;--t-fs-11: 1.1rem;--t-fs-12: 1.2rem;--t-fs-13: 1.3rem;--t-fs-14: 1.4rem;--t-fs-15: 1.5rem;--t-fs-16: 1.6rem;--t-fs-17: 1.7rem;--t-fs-18: 1.8rem;--t-fs-19: 1.9rem;--t-fs-20: 2rem;--t-safe-area-top: env(safe-area-inset-top, 0px);--t-safe-area-bottom: env(safe-area-inset-bottom, 0px);--t-safe-area-left: env(safe-area-inset-left, 0px);--t-safe-area-right: env(safe-area-inset-right, 0px)}.ma-0{margin:var(--t-size-0)!important}.mt-0{margin-top:var(--t-size-0)!important}.mb-0{margin-bottom:var(--t-size-0)!important}.ml-0{margin-left:var(--t-size-0)!important}.mr-0{margin-right:var(--t-size-0)!important}.mx-0{margin-left:var(--t-size-0)!important;margin-right:var(--t-size-0)!important}.my-0{margin-top:var(--t-size-0)!important;margin-bottom:var(--t-size-0)!important}.ma-1{margin:var(--t-size-1)!important}.mt-1{margin-top:var(--t-size-1)!important}.mb-1{margin-bottom:var(--t-size-1)!important}.ml-1{margin-left:var(--t-size-1)!important}.mr-1{margin-right:var(--t-size-1)!important}.mx-1{margin-left:var(--t-size-1)!important;margin-right:var(--t-size-1)!important}.my-1{margin-top:var(--t-size-1)!important;margin-bottom:var(--t-size-1)!important}.ma-2{margin:var(--t-size-2)!important}.mt-2{margin-top:var(--t-size-2)!important}.mb-2{margin-bottom:var(--t-size-2)!important}.ml-2{margin-left:var(--t-size-2)!important}.mr-2{margin-right:var(--t-size-2)!important}.mx-2{margin-left:var(--t-size-2)!important;margin-right:var(--t-size-2)!important}.my-2{margin-top:var(--t-size-2)!important;margin-bottom:var(--t-size-2)!important}.ma-3{margin:var(--t-size-3)!important}.mt-3{margin-top:var(--t-size-3)!important}.mb-3{margin-bottom:var(--t-size-3)!important}.ml-3{margin-left:var(--t-size-3)!important}.mr-3{margin-right:var(--t-size-3)!important}.mx-3{margin-left:var(--t-size-3)!important;margin-right:var(--t-size-3)!important}.my-3{margin-top:var(--t-size-3)!important;margin-bottom:var(--t-size-3)!important}.ma-4{margin:var(--t-size-4)!important}.mt-4{margin-top:var(--t-size-4)!important}.mb-4{margin-bottom:var(--t-size-4)!important}.ml-4{margin-left:var(--t-size-4)!important}.mr-4{margin-right:var(--t-size-4)!important}.mx-4{margin-left:var(--t-size-4)!important;margin-right:var(--t-size-4)!important}.my-4{margin-top:var(--t-size-4)!important;margin-bottom:var(--t-size-4)!important}.ma-5{margin:var(--t-size-5)!important}.mt-5{margin-top:var(--t-size-5)!important}.mb-5{margin-bottom:var(--t-size-5)!important}.ml-5{margin-left:var(--t-size-5)!important}.mr-5{margin-right:var(--t-size-5)!important}.mx-5{margin-left:var(--t-size-5)!important;margin-right:var(--t-size-5)!important}.my-5{margin-top:var(--t-size-5)!important;margin-bottom:var(--t-size-5)!important}.ma-6{margin:var(--t-size-6)!important}.mt-6{margin-top:var(--t-size-6)!important}.mb-6{margin-bottom:var(--t-size-6)!important}.ml-6{margin-left:var(--t-size-6)!important}.mr-6{margin-right:var(--t-size-6)!important}.mx-6{margin-left:var(--t-size-6)!important;margin-right:var(--t-size-6)!important}.my-6{margin-top:var(--t-size-6)!important;margin-bottom:var(--t-size-6)!important}.ma-7{margin:var(--t-size-7)!important}.mt-7{margin-top:var(--t-size-7)!important}.mb-7{margin-bottom:var(--t-size-7)!important}.ml-7{margin-left:var(--t-size-7)!important}.mr-7{margin-right:var(--t-size-7)!important}.mx-7{margin-left:var(--t-size-7)!important;margin-right:var(--t-size-7)!important}.my-7{margin-top:var(--t-size-7)!important;margin-bottom:var(--t-size-7)!important}.ma-8{margin:var(--t-size-8)!important}.mt-8{margin-top:var(--t-size-8)!important}.mb-8{margin-bottom:var(--t-size-8)!important}.ml-8{margin-left:var(--t-size-8)!important}.mr-8{margin-right:var(--t-size-8)!important}.mx-8{margin-left:var(--t-size-8)!important;margin-right:var(--t-size-8)!important}.my-8{margin-top:var(--t-size-8)!important;margin-bottom:var(--t-size-8)!important}.ma-9{margin:var(--t-size-9)!important}.mt-9{margin-top:var(--t-size-9)!important}.mb-9{margin-bottom:var(--t-size-9)!important}.ml-9{margin-left:var(--t-size-9)!important}.mr-9{margin-right:var(--t-size-9)!important}.mx-9{margin-left:var(--t-size-9)!important;margin-right:var(--t-size-9)!important}.my-9{margin-top:var(--t-size-9)!important;margin-bottom:var(--t-size-9)!important}.ma-10{margin:var(--t-size-10)!important}.mt-10{margin-top:var(--t-size-10)!important}.mb-10{margin-bottom:var(--t-size-10)!important}.ml-10{margin-left:var(--t-size-10)!important}.mr-10{margin-right:var(--t-size-10)!important}.mx-10{margin-left:var(--t-size-10)!important;margin-right:var(--t-size-10)!important}.my-10{margin-top:var(--t-size-10)!important;margin-bottom:var(--t-size-10)!important}.pa-0{padding:var(--t-size-0)!important}.pt-0{padding-top:var(--t-size-0)!important}.pb-0{padding-bottom:var(--t-size-0)!important}.pl-0{padding-left:var(--t-size-0)!important}.pr-0{padding-right:var(--t-size-0)!important}.px-0{padding-left:var(--t-size-0)!important;padding-right:var(--t-size-0)!important}.py-0{padding-top:var(--t-size-0)!important;padding-bottom:var(--t-size-0)!important}.pa-1{padding:var(--t-size-1)!important}.pt-1{padding-top:var(--t-size-1)!important}.pb-1{padding-bottom:var(--t-size-1)!important}.pl-1{padding-left:var(--t-size-1)!important}.pr-1{padding-right:var(--t-size-1)!important}.px-1{padding-left:var(--t-size-1)!important;padding-right:var(--t-size-1)!important}.py-1{padding-top:var(--t-size-1)!important;padding-bottom:var(--t-size-1)!important}.pa-2{padding:var(--t-size-2)!important}.pt-2{padding-top:var(--t-size-2)!important}.pb-2{padding-bottom:var(--t-size-2)!important}.pl-2{padding-left:var(--t-size-2)!important}.pr-2{padding-right:var(--t-size-2)!important}.px-2{padding-left:var(--t-size-2)!important;padding-right:var(--t-size-2)!important}.py-2{padding-top:var(--t-size-2)!important;padding-bottom:var(--t-size-2)!important}.pa-3{padding:var(--t-size-3)!important}.pt-3{padding-top:var(--t-size-3)!important}.pb-3{padding-bottom:var(--t-size-3)!important}.pl-3{padding-left:var(--t-size-3)!important}.pr-3{padding-right:var(--t-size-3)!important}.px-3{padding-left:var(--t-size-3)!important;padding-right:var(--t-size-3)!important}.py-3{padding-top:var(--t-size-3)!important;padding-bottom:var(--t-size-3)!important}.pa-4{padding:var(--t-size-4)!important}.pt-4{padding-top:var(--t-size-4)!important}.pb-4{padding-bottom:var(--t-size-4)!important}.pl-4{padding-left:var(--t-size-4)!important}.pr-4{padding-right:var(--t-size-4)!important}.px-4{padding-left:var(--t-size-4)!important;padding-right:var(--t-size-4)!important}.py-4{padding-top:var(--t-size-4)!important;padding-bottom:var(--t-size-4)!important}.pa-5{padding:var(--t-size-5)!important}.pt-5{padding-top:var(--t-size-5)!important}.pb-5{padding-bottom:var(--t-size-5)!important}.pl-5{padding-left:var(--t-size-5)!important}.pr-5{padding-right:var(--t-size-5)!important}.px-5{padding-left:var(--t-size-5)!important;padding-right:var(--t-size-5)!important}.py-5{padding-top:var(--t-size-5)!important;padding-bottom:var(--t-size-5)!important}.pa-6{padding:var(--t-size-6)!important}.pt-6{padding-top:var(--t-size-6)!important}.pb-6{padding-bottom:var(--t-size-6)!important}.pl-6{padding-left:var(--t-size-6)!important}.pr-6{padding-right:var(--t-size-6)!important}.px-6{padding-left:var(--t-size-6)!important;padding-right:var(--t-size-6)!important}.py-6{padding-top:var(--t-size-6)!important;padding-bottom:var(--t-size-6)!important}.pa-7{padding:var(--t-size-7)!important}.pt-7{padding-top:var(--t-size-7)!important}.pb-7{padding-bottom:var(--t-size-7)!important}.pl-7{padding-left:var(--t-size-7)!important}.pr-7{padding-right:var(--t-size-7)!important}.px-7{padding-left:var(--t-size-7)!important;padding-right:var(--t-size-7)!important}.py-7{padding-top:var(--t-size-7)!important;padding-bottom:var(--t-size-7)!important}.pa-8{padding:var(--t-size-8)!important}.pt-8{padding-top:var(--t-size-8)!important}.pb-8{padding-bottom:var(--t-size-8)!important}.pl-8{padding-left:var(--t-size-8)!important}.pr-8{padding-right:var(--t-size-8)!important}.px-8{padding-left:var(--t-size-8)!important;padding-right:var(--t-size-8)!important}.py-8{padding-top:var(--t-size-8)!important;padding-bottom:var(--t-size-8)!important}.pa-9{padding:var(--t-size-9)!important}.pt-9{padding-top:var(--t-size-9)!important}.pb-9{padding-bottom:var(--t-size-9)!important}.pl-9{padding-left:var(--t-size-9)!important}.pr-9{padding-right:var(--t-size-9)!important}.px-9{padding-left:var(--t-size-9)!important;padding-right:var(--t-size-9)!important}.py-9{padding-top:var(--t-size-9)!important;padding-bottom:var(--t-size-9)!important}.pa-10{padding:var(--t-size-10)!important}.pt-10{padding-top:var(--t-size-10)!important}.pb-10{padding-bottom:var(--t-size-10)!important}.pl-10{padding-left:var(--t-size-10)!important}.pr-10{padding-right:var(--t-size-10)!important}.px-10{padding-left:var(--t-size-10)!important;padding-right:var(--t-size-10)!important}.py-10{padding-top:var(--t-size-10)!important;padding-bottom:var(--t-size-10)!important}.ma-safe{margin-top:var(--t-safe-area-top);margin-bottom:var(--t-safe-area-bottom);margin-left:var(--t-safe-area-left);margin-right:var(--t-safe-area-right)}.mt-safe{margin-top:var(--t-safe-area-top)!important}.mb-safe{margin-bottom:var(--t-safe-area-bottom)!important}.ml-safe{margin-left:var(--t-safe-area-left)!important}.mr-safe{margin-right:var(--t-safe-area-right)!important}.pa-safe{padding-top:var(--t-safe-area-top);padding-bottom:var(--t-safe-area-bottom);padding-left:var(--t-safe-area-left);padding-right:var(--t-safe-area-right)}.pt-safe{padding-top:var(--t-safe-area-top)!important}.pb-safe{padding-bottom:var(--t-safe-area-bottom)!important}.pl-safe{padding-left:var(--t-safe-area-left)!important}.pr-safe{padding-right:var(--t-safe-area-right)!important}.fs-05,.lh-05{font-size:var(--t-fs-05)!important}.fs-06,.lh-06{font-size:var(--t-fs-06)!important}.fs-07,.lh-07{font-size:var(--t-fs-07)!important}.fs-08,.lh-08{font-size:var(--t-fs-08)!important}.fs-09,.lh-09{font-size:var(--t-fs-09)!important}.fs-10,.lh-10{font-size:var(--t-fs-10)!important}.fs-11,.lh-11{font-size:var(--t-fs-11)!important}.fs-12,.lh-12{font-size:var(--t-fs-12)!important}.fs-13,.lh-13{font-size:var(--t-fs-13)!important}.fs-14,.lh-14{font-size:var(--t-fs-14)!important}.fs-15,.lh-15{font-size:var(--t-fs-15)!important}.fs-16,.lh-16{font-size:var(--t-fs-16)!important}.fs-17,.lh-17{font-size:var(--t-fs-17)!important}.fs-18,.lh-18{font-size:var(--t-fs-18)!important}.fs-19,.lh-19{font-size:var(--t-fs-19)!important}.fs-20,.lh-20{font-size:var(--t-fs-20)!important}.d-block{display:block}.d-inline{display:inline}.d-inline-block{display:inline-block}.d-flex{display:flex}.d-inline-flex{display:inline-flex}.d-grid{display:grid}.d-inline-grid{display:inline-grid}.d-table{display:table}.d-table-row{display:table-row}.d-table-cell{display:table-cell}.d-none{display:none}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-nowrap{flex-wrap:nowrap}.flex-wrap{flex-wrap:wrap}.flex-wrap-reverse{flex-wrap:wrap-reverse}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-around{justify-content:space-around}.justify-evenly{justify-content:space-evenly}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.items-center{align-items:center}.items-baseline{align-items:baseline}.items-stretch{align-items:stretch}.content-start{align-content:flex-start}.content-end{align-content:flex-end}.content-center{align-content:center}.content-between{align-content:space-between}.content-around{align-content:space-around}.content-stretch{align-content:stretch}.self-auto{align-self:auto}.self-start{align-self:flex-start}.self-end{align-self:flex-end}.self-center{align-self:center}.self-stretch{align-self:stretch}.flex-1{flex:1 1 0%}.flex-auto{flex:1 1 auto}.flex-initial{flex:0 1 auto}.flex-none{flex:none}.order-first{order:-9999}.order-last{order:9999}.order-0{order:0}.order-1{order:1}.order-2{order:2}.row{display:flex;flex-wrap:wrap;margin-left:-8px;margin-right:-8px}[class*=col-]{padding-left:8px;padding-right:8px;box-sizing:border-box}.col-1{flex:0 0 calc(100% / 24 * 1);max-width:calc(100% / 24 * 1)}.col-2{flex:0 0 calc(100% / 24 * 2);max-width:calc(100% / 24 * 2)}.col-3{flex:0 0 12.5%;max-width:12.5%}.col-4{flex:0 0 calc(100% / 24 * 4);max-width:calc(100% / 24 * 4)}.col-5{flex:0 0 calc(100% / 24 * 5);max-width:calc(100% / 24 * 5)}.col-6{flex:0 0 25%;max-width:25%}.col-7{flex:0 0 calc(100% / 24 * 7);max-width:calc(100% / 24 * 7)}.col-8{flex:0 0 calc(100% / 24 * 8);max-width:calc(100% / 24 * 8)}.col-9{flex:0 0 37.5%;max-width:37.5%}.col-10{flex:0 0 calc(100% / 24 * 10);max-width:calc(100% / 24 * 10)}.col-11{flex:0 0 calc(100% / 24 * 11);max-width:calc(100% / 24 * 11)}.col-12{flex:0 0 50%;max-width:50%}.col-13{flex:0 0 calc(100% / 24 * 13);max-width:calc(100% / 24 * 13)}.col-14{flex:0 0 calc(100% / 24 * 14);max-width:calc(100% / 24 * 14)}.col-15{flex:0 0 62.5%;max-width:62.5%}.col-16{flex:0 0 calc(100% / 24 * 16);max-width:calc(100% / 24 * 16)}.col-17{flex:0 0 calc(100% / 24 * 17);max-width:calc(100% / 24 * 17)}.col-18{flex:0 0 75%;max-width:75%}.col-19{flex:0 0 calc(100% / 24 * 19);max-width:calc(100% / 24 * 19)}.col-20{flex:0 0 calc(100% / 24 * 20);max-width:calc(100% / 24 * 20)}.col-21{flex:0 0 87.5%;max-width:87.5%}.col-22{flex:0 0 calc(100% / 24 * 22);max-width:calc(100% / 24 * 22)}.col-23{flex:0 0 calc(100% / 24 * 23);max-width:calc(100% / 24 * 23)}.col-24{flex:0 0 100%;max-width:100%}@media (min-width: 576px){.col-sm-1{flex:0 0 calc(100% / 24 * 1);max-width:calc(100% / 24 * 1)}.col-sm-2{flex:0 0 calc(100% / 24 * 2);max-width:calc(100% / 24 * 2)}.col-sm-3{flex:0 0 12.5%;max-width:12.5%}.col-sm-4{flex:0 0 calc(100% / 24 * 4);max-width:calc(100% / 24 * 4)}.col-sm-5{flex:0 0 calc(100% / 24 * 5);max-width:calc(100% / 24 * 5)}.col-sm-6{flex:0 0 25%;max-width:25%}.col-sm-7{flex:0 0 calc(100% / 24 * 7);max-width:calc(100% / 24 * 7)}.col-sm-8{flex:0 0 calc(100% / 24 * 8);max-width:calc(100% / 24 * 8)}.col-sm-9{flex:0 0 37.5%;max-width:37.5%}.col-sm-10{flex:0 0 calc(100% / 24 * 10);max-width:calc(100% / 24 * 10)}.col-sm-11{flex:0 0 calc(100% / 24 * 11);max-width:calc(100% / 24 * 11)}.col-sm-12{flex:0 0 50%;max-width:50%}.col-sm-13{flex:0 0 calc(100% / 24 * 13);max-width:calc(100% / 24 * 13)}.col-sm-14{flex:0 0 calc(100% / 24 * 14);max-width:calc(100% / 24 * 14)}.col-sm-15{flex:0 0 62.5%;max-width:62.5%}.col-sm-16{flex:0 0 calc(100% / 24 * 16);max-width:calc(100% / 24 * 16)}.col-sm-17{flex:0 0 calc(100% / 24 * 17);max-width:calc(100% / 24 * 17)}.col-sm-18{flex:0 0 75%;max-width:75%}.col-sm-19{flex:0 0 calc(100% / 24 * 19);max-width:calc(100% / 24 * 19)}.col-sm-20{flex:0 0 calc(100% / 24 * 20);max-width:calc(100% / 24 * 20)}.col-sm-21{flex:0 0 87.5%;max-width:87.5%}.col-sm-22{flex:0 0 calc(100% / 24 * 22);max-width:calc(100% / 24 * 22)}.col-sm-23{flex:0 0 calc(100% / 24 * 23);max-width:calc(100% / 24 * 23)}.col-sm-24{flex:0 0 100%;max-width:100%}}@media (min-width: 768px){.col-md-1{flex:0 0 calc(100% / 24 * 1);max-width:calc(100% / 24 * 1)}.col-md-2{flex:0 0 calc(100% / 24 * 2);max-width:calc(100% / 24 * 2)}.col-md-3{flex:0 0 12.5%;max-width:12.5%}.col-md-4{flex:0 0 calc(100% / 24 * 4);max-width:calc(100% / 24 * 4)}.col-md-5{flex:0 0 calc(100% / 24 * 5);max-width:calc(100% / 24 * 5)}.col-md-6{flex:0 0 25%;max-width:25%}.col-md-7{flex:0 0 calc(100% / 24 * 7);max-width:calc(100% / 24 * 7)}.col-md-8{flex:0 0 calc(100% / 24 * 8);max-width:calc(100% / 24 * 8)}.col-md-9{flex:0 0 37.5%;max-width:37.5%}.col-md-10{flex:0 0 calc(100% / 24 * 10);max-width:calc(100% / 24 * 10)}.col-md-11{flex:0 0 calc(100% / 24 * 11);max-width:calc(100% / 24 * 11)}.col-md-12{flex:0 0 50%;max-width:50%}.col-md-13{flex:0 0 calc(100% / 24 * 13);max-width:calc(100% / 24 * 13)}.col-md-14{flex:0 0 calc(100% / 24 * 14);max-width:calc(100% / 24 * 14)}.col-md-15{flex:0 0 62.5%;max-width:62.5%}.col-md-16{flex:0 0 calc(100% / 24 * 16);max-width:calc(100% / 24 * 16)}.col-md-17{flex:0 0 calc(100% / 24 * 17);max-width:calc(100% / 24 * 17)}.col-md-18{flex:0 0 75%;max-width:75%}.col-md-19{flex:0 0 calc(100% / 24 * 19);max-width:calc(100% / 24 * 19)}.col-md-20{flex:0 0 calc(100% / 24 * 20);max-width:calc(100% / 24 * 20)}.col-md-21{flex:0 0 87.5%;max-width:87.5%}.col-md-22{flex:0 0 calc(100% / 24 * 22);max-width:calc(100% / 24 * 22)}.col-md-23{flex:0 0 calc(100% / 24 * 23);max-width:calc(100% / 24 * 23)}.col-md-24{flex:0 0 100%;max-width:100%}}@media (min-width: 992px){.col-lg-1{flex:0 0 calc(100% / 24 * 1);max-width:calc(100% / 24 * 1)}.col-lg-2{flex:0 0 calc(100% / 24 * 2);max-width:calc(100% / 24 * 2)}.col-lg-3{flex:0 0 12.5%;max-width:12.5%}.col-lg-4{flex:0 0 calc(100% / 24 * 4);max-width:calc(100% / 24 * 4)}.col-lg-5{flex:0 0 calc(100% / 24 * 5);max-width:calc(100% / 24 * 5)}.col-lg-6{flex:0 0 25%;max-width:25%}.col-lg-7{flex:0 0 calc(100% / 24 * 7);max-width:calc(100% / 24 * 7)}.col-lg-8{flex:0 0 calc(100% / 24 * 8);max-width:calc(100% / 24 * 8)}.col-lg-9{flex:0 0 37.5%;max-width:37.5%}.col-lg-10{flex:0 0 calc(100% / 24 * 10);max-width:calc(100% / 24 * 10)}.col-lg-11{flex:0 0 calc(100% / 24 * 11);max-width:calc(100% / 24 * 11)}.col-lg-12{flex:0 0 50%;max-width:50%}.col-lg-13{flex:0 0 calc(100% / 24 * 13);max-width:calc(100% / 24 * 13)}.col-lg-14{flex:0 0 calc(100% / 24 * 14);max-width:calc(100% / 24 * 14)}.col-lg-15{flex:0 0 62.5%;max-width:62.5%}.col-lg-16{flex:0 0 calc(100% / 24 * 16);max-width:calc(100% / 24 * 16)}.col-lg-17{flex:0 0 calc(100% / 24 * 17);max-width:calc(100% / 24 * 17)}.col-lg-18{flex:0 0 75%;max-width:75%}.col-lg-19{flex:0 0 calc(100% / 24 * 19);max-width:calc(100% / 24 * 19)}.col-lg-20{flex:0 0 calc(100% / 24 * 20);max-width:calc(100% / 24 * 20)}.col-lg-21{flex:0 0 87.5%;max-width:87.5%}.col-lg-22{flex:0 0 calc(100% / 24 * 22);max-width:calc(100% / 24 * 22)}.col-lg-23{flex:0 0 calc(100% / 24 * 23);max-width:calc(100% / 24 * 23)}.col-lg-24{flex:0 0 100%;max-width:100%}}@media (min-width: 1200px){.col-xl-1{flex:0 0 calc(100% / 24 * 1);max-width:calc(100% / 24 * 1)}.col-xl-2{flex:0 0 calc(100% / 24 * 2);max-width:calc(100% / 24 * 2)}.col-xl-3{flex:0 0 12.5%;max-width:12.5%}.col-xl-4{flex:0 0 calc(100% / 24 * 4);max-width:calc(100% / 24 * 4)}.col-xl-5{flex:0 0 calc(100% / 24 * 5);max-width:calc(100% / 24 * 5)}.col-xl-6{flex:0 0 25%;max-width:25%}.col-xl-7{flex:0 0 calc(100% / 24 * 7);max-width:calc(100% / 24 * 7)}.col-xl-8{flex:0 0 calc(100% / 24 * 8);max-width:calc(100% / 24 * 8)}.col-xl-9{flex:0 0 37.5%;max-width:37.5%}.col-xl-10{flex:0 0 calc(100% / 24 * 10);max-width:calc(100% / 24 * 10)}.col-xl-11{flex:0 0 calc(100% / 24 * 11);max-width:calc(100% / 24 * 11)}.col-xl-12{flex:0 0 50%;max-width:50%}.col-xl-13{flex:0 0 calc(100% / 24 * 13);max-width:calc(100% / 24 * 13)}.col-xl-14{flex:0 0 calc(100% / 24 * 14);max-width:calc(100% / 24 * 14)}.col-xl-15{flex:0 0 62.5%;max-width:62.5%}.col-xl-16{flex:0 0 calc(100% / 24 * 16);max-width:calc(100% / 24 * 16)}.col-xl-17{flex:0 0 calc(100% / 24 * 17);max-width:calc(100% / 24 * 17)}.col-xl-18{flex:0 0 75%;max-width:75%}.col-xl-19{flex:0 0 calc(100% / 24 * 19);max-width:calc(100% / 24 * 19)}.col-xl-20{flex:0 0 calc(100% / 24 * 20);max-width:calc(100% / 24 * 20)}.col-xl-21{flex:0 0 87.5%;max-width:87.5%}.col-xl-22{flex:0 0 calc(100% / 24 * 22);max-width:calc(100% / 24 * 22)}.col-xl-23{flex:0 0 calc(100% / 24 * 23);max-width:calc(100% / 24 * 23)}.col-xl-24{flex:0 0 100%;max-width:100%}}@media (min-width: 1400px){.col-xxl-1{flex:0 0 calc(100% / 24 * 1);max-width:calc(100% / 24 * 1)}.col-xxl-2{flex:0 0 calc(100% / 24 * 2);max-width:calc(100% / 24 * 2)}.col-xxl-3{flex:0 0 12.5%;max-width:12.5%}.col-xxl-4{flex:0 0 calc(100% / 24 * 4);max-width:calc(100% / 24 * 4)}.col-xxl-5{flex:0 0 calc(100% / 24 * 5);max-width:calc(100% / 24 * 5)}.col-xxl-6{flex:0 0 25%;max-width:25%}.col-xxl-7{flex:0 0 calc(100% / 24 * 7);max-width:calc(100% / 24 * 7)}.col-xxl-8{flex:0 0 calc(100% / 24 * 8);max-width:calc(100% / 24 * 8)}.col-xxl-9{flex:0 0 37.5%;max-width:37.5%}.col-xxl-10{flex:0 0 calc(100% / 24 * 10);max-width:calc(100% / 24 * 10)}.col-xxl-11{flex:0 0 calc(100% / 24 * 11);max-width:calc(100% / 24 * 11)}.col-xxl-12{flex:0 0 50%;max-width:50%}.col-xxl-13{flex:0 0 calc(100% / 24 * 13);max-width:calc(100% / 24 * 13)}.col-xxl-14{flex:0 0 calc(100% / 24 * 14);max-width:calc(100% / 24 * 14)}.col-xxl-15{flex:0 0 62.5%;max-width:62.5%}.col-xxl-16{flex:0 0 calc(100% / 24 * 16);max-width:calc(100% / 24 * 16)}.col-xxl-17{flex:0 0 calc(100% / 24 * 17);max-width:calc(100% / 24 * 17)}.col-xxl-18{flex:0 0 75%;max-width:75%}.col-xxl-19{flex:0 0 calc(100% / 24 * 19);max-width:calc(100% / 24 * 19)}.col-xxl-20{flex:0 0 calc(100% / 24 * 20);max-width:calc(100% / 24 * 20)}.col-xxl-21{flex:0 0 87.5%;max-width:87.5%}.col-xxl-22{flex:0 0 calc(100% / 24 * 22);max-width:calc(100% / 24 * 22)}.col-xxl-23{flex:0 0 calc(100% / 24 * 23);max-width:calc(100% / 24 * 23)}.col-xxl-24{flex:0 0 100%;max-width:100%}}.hs-100{height:100vh!important}.hs-75{height:75vh!important}.hs-50{height:50vh!important}.hs-25{height:25vh!important}.hp-100{height:100%!important}.hp-75{height:75%!important}.hp-50{height:50%!important}.hp-25{height:25%!important}.ws-100{width:100vw!important}.ws-75{width:75vw!important}.ws-50{width:50vw!important}.ws-25{width:25vw!important}.wp-100{width:100%!important}.wp-75{width:75%!important}.wp-50{width:50%!important}.wp-25{width:25%!important}.bg-none{background-color:transparent!important}.bg-background{background-color:var(--t-color-background)!important}.bg-surface{background-color:var(--t-color-surface)!important}.border-none{border:none!important}.border-separate{border-color:var(--t-color-separate)!important}.bg-primary{background-color:var(--t-color-primary)!important}.bg-primary-light{background-color:var(--t-color-primary-light)!important}.bg-primary-dark{background-color:var(--t-color-primary-dark)!important}.border-primary{border-color:var(--t-color-primary)!important}.border-primary-light{border-color:var(--t-color-primary-light)!important}.border-primary-dark{border-color:var(--t-color-primary-dark)!important}.color-primary{color:var(--t-color-primary)!important}.color-primary-light{color:var(--t-color-primary-light)!important}.color-primary-dark{color:var(--t-color-primary-dark)!important}.bg-secondary{background-color:var(--t-color-secondary)!important}.bg-secondary-light{background-color:var(--t-color-secondary-light)!important}.bg-secondary-dark{background-color:var(--t-color-secondary-dark)!important}.border-secondary{border-color:var(--t-color-secondary)!important}.border-secondary-light{border-color:var(--t-color-secondary-light)!important}.border-secondary-dark{border-color:var(--t-color-secondary-dark)!important}.color-secondary{color:var(--t-color-secondary)!important}.color-secondary-light{color:var(--t-color-secondary-light)!important}.color-secondary-dark{color:var(--t-color-secondary-dark)!important}.bg-success{background-color:var(--t-color-success)!important}.bg-success-light{background-color:var(--t-color-success-light)!important}.bg-success-dark{background-color:var(--t-color-success-dark)!important}.border-success{border-color:var(--t-color-success)!important}.border-success-light{border-color:var(--t-color-success-light)!important}.border-success-dark{border-color:var(--t-color-success-dark)!important}.color-success{color:var(--t-color-success)!important}.color-success-light{color:var(--t-color-success-light)!important}.color-success-dark{color:var(--t-color-success-dark)!important}.bg-warning{background-color:var(--t-color-warning)!important}.bg-warning-light{background-color:var(--t-color-warning-light)!important}.bg-warning-dark{background-color:var(--t-color-warning-dark)!important}.border-warning{border-color:var(--t-color-warning)!important}.border-warning-light{border-color:var(--t-color-warning-light)!important}.border-warning-dark{border-color:var(--t-color-warning-dark)!important}.color-warning{color:var(--t-color-warning)!important}.color-warning-light{color:var(--t-color-warning-light)!important}.color-warning-dark{color:var(--t-color-warning-dark)!important}.bg-danger{background-color:var(--t-color-danger)!important}.bg-danger-light{background-color:var(--t-color-danger-light)!important}.bg-danger-dark{background-color:var(--t-color-danger-dark)!important}.border-danger{border-color:var(--t-color-danger)!important}.border-danger-light{border-color:var(--t-color-danger-light)!important}.border-danger-dark{border-color:var(--t-color-danger-dark)!important}.color-danger{color:var(--t-color-danger)!important}.color-danger-light{color:var(--t-color-danger-light)!important}.color-danger-dark{color:var(--t-color-danger-dark)!important}.bg-info{background-color:var(--t-color-info)!important}.bg-info-light{background-color:var(--t-color-info-light)!important}.bg-info-dark{background-color:var(--t-color-info-dark)!important}.border-info{border-color:var(--t-color-info)!important}.border-info-light{border-color:var(--t-color-info-light)!important}.border-info-dark{border-color:var(--t-color-info-dark)!important}.color-info{color:var(--t-color-info)!important}.color-info-light{color:var(--t-color-info-light)!important}.color-info-dark{color:var(--t-color-info-dark)!important}.text-start{text-align:start}.text-end{text-align:end}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.pos-static{position:static}.pos-relative{position:relative}.pos-absolute{position:absolute}.pos-fixed{position:fixed}.pos-sticky{position:sticky}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.top-auto{top:auto}.right-auto{right:auto}.bottom-auto{bottom:auto}.left-auto{left:auto}.pos-center-absolute{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.pos-center-fixed{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%)}.scroll-auto{overflow:auto!important}.scroll-hidden{overflow:hidden!important}.scroll-show{overflow:scroll!important}.scroll-x-auto{overflow-x:auto!important}.scroll-x-hidden{overflow-x:hidden!important}.scroll-x-show{overflow-x:scroll!important}.scroll-y-auto{overflow-y:auto!important}.scroll-y-hidden{overflow-y:hidden!important}.scroll-y-show{overflow-y:scroll!important}.t-app{height:100vh;width:100vw;max-height:100vh;max-width:100vw;position:absolute;top:0;left:0;overflow:hidden}.t-present-backdrop[data-v-0e153af5]{position:fixed;width:100%;height:100%;top:0;left:0;transition:background-color var(--t-present-transition, .2s) ease;background-color:rgba(var(--t-color-backdrop-rgb),var(--t-present-backdrop-opacity, 0))}.t-present[data-v-0e153af5]{display:flex;justify-content:center;align-items:center;position:absolute;width:fit-content;height:fit-content;transition:transform var(--t-present-transition, .2s) ease}.t-present.fullscreen[data-v-0e153af5]{width:100%;height:100%}.t-present.bottom[data-v-0e153af5]{bottom:0;left:0;width:100%;transform:translateY(var(--t-present-content-transform, 100%))}.t-present.top[data-v-0e153af5]{top:0;left:0;width:100%;transform:translateY(var(--t-present-content-transform, -100%))}.t-present.right[data-v-0e153af5]{top:0;right:0;height:100%;transform:translate(var(--t-present-content-transform, 100%))}.t-present.left[data-v-0e153af5]{top:0;left:0;height:100%;transform:translate(var(--t-present-content-transform, -100%))}.t-present.center[data-v-0e153af5]{width:fit-content;height:fit-content;transform:translate(-50%,-50%);top:50%;left:50%;opacity:var(--t-present-content-opacity, 1);transition:opacity var(--t-present-transition, .2s) ease}.t-loading-icon[data-v-7c463303]{display:inline-block;border:2px solid transparent;border-radius:50%;border-top-color:var(var(--t-color-text));animation:spin-7c463303 .6s linear infinite}@keyframes spin-7c463303{to{transform:rotate(360deg)}}.t-button[data-v-74d8380d]{display:flex;justify-content:center;align-items:center;position:relative;overflow:hidden;color:var(--color);background:var(--background);border:var(--border);white-space:nowrap}.t-button[data-v-74d8380d]>*{z-index:2}.t-button:not(:disabled).active-background[data-v-74d8380d]:active:after,.t-button:not(:disabled).active-background[data-v-74d8380d]:focus:after{content:"";display:block;position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;background-color:rgba(var(--t-color-backdrop-rgb),.1)}.t-button[data-v-74d8380d]:disabled{opacity:.5}.t-button.rounded[data-v-74d8380d]{border-radius:8px}.t-button.block[data-v-74d8380d]{width:100%}.t-button.size-small[data-v-74d8380d]{padding:.5rem .75rem;font-size:.8rem;height:31px}.t-button.size-standard[data-v-74d8380d]{padding:.75rem 1rem;font-size:1rem;height:42px}.t-button.size-large[data-v-74d8380d]{padding:1rem 1.1rem;font-size:1.2rem;height:50px}.t-button .loader[data-v-74d8380d]{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center}.t-alert[data-v-5cf415ec]{border-radius:8px;background-color:var(--t-color-surface);position:relative;width:270px;overflow:hidden}.t-alert .t-alert-footer[data-v-5cf415ec]{display:flex;flex-direction:row;border-top:.55px solid var(--t-color-separate)}.t-alert .t-alert-footer[data-v-5cf415ec]>*{flex:1}.t-alert .t-alert-content[data-v-5cf415ec]{padding:var(--t-size-2)}.t-alert .t-alert-header[data-v-5cf415ec]{padding:var(--t-size-2);border-bottom:.55px solid var(--t-color-separate);display:flex;justify-content:center;align-items:center;font-weight:600}.t-alert .t-alert-footer .t-button[data-v-5cf415ec]{font-weight:600}.t-alert.pop[data-v-5cf415ec]{animation:pop-5cf415ec .3s ease-in-out}@keyframes pop-5cf415ec{0%{transform:scale(1)}50%{transform:scale(1.1)}70%{transform:scale(1)}80%{transform:scale(1.1)}to{transform:scale(1)}}.t-action[data-v-5c29cf79]{width:100%;max-width:400px;padding:0 1rem;margin-bottom:var(--t-safe-area-bottom)}.t-action>div[data-v-5c29cf79]{position:relative;overflow:hidden;width:100%;border-radius:8px;margin-bottom:.5rem;background-color:var(--t-color-surface)}.t-action>div[data-v-5c29cf79]:last-child{margin-bottom:1rem!important}.t-action.pop[data-v-5c29cf79]{animation:pop-5c29cf79 .3s ease-in-out}@keyframes pop-5c29cf79{0%{transform:scale(1)}50%{transform:scale(1.1)}70%{transform:scale(1)}80%{transform:scale(1.1)}to{transform:scale(1)}}.t-loading[data-v-d048a41d]{padding:1rem;line-height:1rem;background-color:var(--t-color-surface);border-radius:8px}.t-toast[data-v-61960e03]{width:calc(100% - 2rem);height:fit-content;max-width:400px;padding:.75rem 1rem;position:absolute;z-index:9999;border-radius:8px;left:50%;transition:all .2s ease;opacity:1;color:var(--color);background:var(--background);border:var(--border)}.t-toast.bottom[data-v-61960e03]{bottom:0;transform:translate(-50%,100%)}.t-toast.bottom.open[data-v-61960e03]{transform:translate(-50%,calc((var(--t-safe-area-bottom) + 1rem + var(--space)) * -1))}.t-toast.top[data-v-61960e03]{top:0;transform:translate(-50%,-100%)}.t-toast.top.open[data-v-61960e03]{transform:translate(-50%,calc(var(--t-safe-area-top) + 1rem + var(--space)))}.t-toast.closing[data-v-61960e03]{opacity:0}.t-cable[data-v-ecb72421]{position:absolute;z-index:10}.t-cable.bottom[data-v-ecb72421]{bottom:0;left:0;height:auto;width:100%;will-change:transform;transition:transform var(--t-keyboard-transition) ease-out}.t-cable.bottom.keyboard[data-v-ecb72421]{transform:translateY(calc((var(--t-keyboard-height) - var(--t-safe-area-bottom)) * -1))}.t-cable.top[data-v-ecb72421]{left:0;top:0;height:auto;width:100%}.t-cable.left[data-v-ecb72421]{left:0;top:0;height:100%;width:auto}.t-cable.right[data-v-ecb72421]{right:0;top:0;height:100%;width:auto}.t-card{border-radius:8px;background:var(--background);padding:var(--t-size-2);position:relative}.t-content[data-v-9a833657]{width:100%;height:100%;overflow:auto;background-color:var(--t-color-background)}.t-refresher[data-v-ac2b2370]{display:flex;justify-content:center;align-items:center;overflow:hidden}img.spiner[data-v-ac2b2370]{animation:spinrefresh-ac2b2370 .7s linear infinite}@keyframes spinrefresh-ac2b2370{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.t-screen[data-v-c2a3436c]{position:absolute;top:0;left:0;height:100%;width:100%;max-height:100%;max-width:100%;background-color:var(--t-color-background);will-change:transform;overflow:hidden}.t-swipe-backdrop[data-v-e385a37a]{display:block;position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(var(--t-color-backdrop-rgb),var(--t-swipe-backdrop-opacity, 0));transition:all var(--t-screen-backdrop-duration, 0) ease!important}.t-toolbar[data-v-3b3a7896]{background-color:var(--t-color-surface)}.t-toolbar>div[data-v-3b3a7896]{align-items:center;display:flex;position:relative}.t-toolbar>div[data-v-3b3a7896]>*{flex:1}.t-toolbar.bottom[data-v-3b3a7896]{padding-bottom:var(--t-safe-area-bottom)}.t-toolbar.bottom>div[data-v-3b3a7896]{flex-direction:row;height:var(--t-size-toolbar);max-height:var(--t-size-toolbar);width:100%}.t-toolbar.bottom>div[data-v-3b3a7896]>*{height:100%}.t-toolbar.top[data-v-3b3a7896]{padding-top:var(--t-safe-area-top)}.t-toolbar.top>div[data-v-3b3a7896]{flex-direction:row;height:var(--t-size-toolbar);max-height:var(--t-size-toolbar);width:100%}.t-toolbar.top>div[data-v-3b3a7896]>*{height:100%}.t-toolbar.left[data-v-3b3a7896]{padding-left:var(--t-safe-area-left)}.t-toolbar.left>div[data-v-3b3a7896]{flex-direction:column;width:var(--t-size-toolbar);max-width:var(--t-size-toolbar);height:100%}.t-toolbar.left>div[data-v-3b3a7896]>*{width:100%}.t-toolbar.right[data-v-3b3a7896]{padding-right:var(--t-safe-area-right)}.t-toolbar.right>div[data-v-3b3a7896]{flex-direction:column;width:var(--t-size-toolbar);max-width:var(--t-size-toolbar);height:100%}.t-toolbar.right>div[data-v-3b3a7896]>*{width:100%}.t-back-button[data-v-ed626a3d]{font-size:2rem;background-color:transparent;width:44px;height:100%;flex:none;display:flex;justify-content:center;align-items:center;color:var(--t-color-text)}.t-text[data-v-f0f94f05]{color:var(--color);font-size:var(--font-size)}.t-pull-bar[data-v-daa38c85]{background-color:var(--t-color-separate);position:absolute;border-radius:3px;z-index:99}.t-pull-bar.bottom[data-v-daa38c85]{width:40px;height:4px;top:5px}.t-pull-bar.top[data-v-daa38c85]{width:40px;height:4px;bottom:5px}.t-pull-bar.left[data-v-daa38c85]{height:40px;width:4px;right:5px}.t-pull-bar.right[data-v-daa38c85]{height:40px;width:4px;left:5px}.t-sheet[data-v-145b1096]{background:var(--background);position:relative}.t-sheet.fullscreen[data-v-145b1096]{height:100%;width:100%}.t-sheet.rounded:not(.fullscreen).bottom.radius[data-v-145b1096]{border-top-left-radius:15px;border-top-right-radius:15px}.t-sheet.rounded:not(.fullscreen).top.radius[data-v-145b1096]{border-bottom-left-radius:15px;border-bottom-right-radius:15px}.t-sheet.rounded:not(.fullscreen).left.radius[data-v-145b1096]{border-top-right-radius:15px;border-bottom-right-radius:15px}.t-sheet.rounded:not(.fullscreen).right.radius[data-v-145b1096]{border-top-left-radius:15px;border-bottom-left-radius:15px}.t-sheet.rounded:not(.fullscreen).center.radius[data-v-145b1096]{border-radius:15px}.t-sheet.rounded:not(.fullscreen).radius[data-v-145b1096]{overflow:hidden}.t-sheet-close[data-v-145b1096]{position:absolute;color:var(--t-color-surface);background-color:transparent;border-radius:50%;height:30px;width:30px;font-size:1rem;border:1px solid var(--t-color-surface);bottom:-40px;left:50%;transform:translate(-50%)}.t-input[data-v-1a9425cf]{position:relative}.t-input .t-input-content[data-v-1a9425cf]{display:flex;align-items:center}.t-input input[data-v-1a9425cf]{background-color:transparent;color:var(--t-color-text);padding:0;flex:1}.t-input.size-small .t-input-label[data-v-1a9425cf]{display:none}.t-input.size-small .t-text[data-v-1a9425cf]{font-size:.7rem}.t-input.size-small input[data-v-1a9425cf]{font-size:1rem;height:31px}.t-input.size-standard .t-input-label[data-v-1a9425cf]{font-size:.8rem}.t-input.size-standard .t-text[data-v-1a9425cf]{font-size:.7rem}.t-input.size-standard input[data-v-1a9425cf]{font-size:1rem;height:42px}.t-input.size-large .t-input-label[data-v-1a9425cf]{font-size:1rem}.t-input.size-large .t-text[data-v-1a9425cf]{font-size:.8rem}.t-input.size-large input[data-v-1a9425cf]{font-size:1.2rem;height:50px}.t-input.variant-default label[data-v-1a9425cf]{display:block;width:100%}.t-divider.horizontal[data-v-47ee8991]{width:100%;border-bottom:.55px solid var(--t-color-separate)}.t-divider.vertical[data-v-47ee8991]{height:100%;border-right:.55px solid var(--t-color-separate)}.t-toggle-password[data-v-3268e9e3]{background-color:transparent;width:fit-content;flex:none;display:flex;justify-content:center;align-items:center;color:var(--color);font-size:1.2rem}.t-avatar[data-v-24384c2f]{position:relative;border-radius:50%;height:var(--size);width:var(--size);overflow:hidden}.t-avatar[data-v-24384c2f]>*{width:100%;height:100%}.t-avatar.square[data-v-24384c2f]{border-radius:8px}.t-collapse-header{display:flex;width:100%;align-items:center;padding:.5rem 0}.t-collapse-header>*{display:flex;align-items:center}.t-collapse-header i{font-size:1.2rem!important}.t-collapse-header .icon{justify-content:flex-end}.t-collapse-header .icon i{font-size:1.5rem!important}.t-collapse-header .t-collapse-title{flex:1}.t-collapse-header>*:first-child:not(.t-collapse-title){margin-right:.25rem}.t-collapse .t-collapse-content{height:var(--height);transition:height .2s ease;overflow:auto}.t-collapse:not(.open) .t-collapse-content{height:0px!important}.t-switch[data-v-3616970e]{height:31px;width:50px;border-radius:25px;position:relative;overflow:hidden;transition:all .2s ease}.t-switch .t-switch-icon[data-v-3616970e]{height:25px;width:25px;border-radius:50%;transition:all .2s ease;position:absolute;top:3px}.t-switch[data-v-3616970e]:not(.on){background-color:var(--t-color-separate)}.t-switch:not(.on) .t-switch-icon[data-v-3616970e]{left:3px;background:var(--t-color-text-dark)}.t-switch.on[data-v-3616970e]{background:var(--background)}.t-switch.on .t-switch-icon[data-v-3616970e]{right:3px;background:var(--color)}.t-tab[data-v-36c12a50]{display:flex;justify-content:center;align-items:center}.t-tab .t-button[data-v-36c12a50]{padding:.75rem .5rem!important}.t-tabs[data-v-65a2c74c]{height:fit-content;display:flex;width:100%;align-items:center;position:relative;padding:0;margin:0;list-style:none;overflow:auto}.t-tabs.top-start[data-v-65a2c74c],.t-tabs.bottom-start[data-v-65a2c74c],.t-tabs.left-start[data-v-65a2c74c],.t-tabs.right-start[data-v-65a2c74c]{justify-content:flex-start}.t-tabs.top-end[data-v-65a2c74c],.t-tabs.bottom-end[data-v-65a2c74c],.t-tabs.left-end[data-v-65a2c74c],.t-tabs.right-end[data-v-65a2c74c]{justify-content:flex-end}.t-tabs.top-center[data-v-65a2c74c],.t-tabs.bottom-center[data-v-65a2c74c],.t-tabs.left-center[data-v-65a2c74c],.t-tabs.right-center[data-v-65a2c74c]{justify-content:center}.t-tabs.top-start[data-v-65a2c74c],.t-tabs.top-center[data-v-65a2c74c],.t-tabs.top-end[data-v-65a2c74c],.t-tabs.bottom-start[data-v-65a2c74c],.t-tabs.bottom-center[data-v-65a2c74c],.t-tabs.bottom-end[data-v-65a2c74c]{flex-direction:row}.t-tabs.left-start[data-v-65a2c74c],.t-tabs.left-center[data-v-65a2c74c],.t-tabs.left-end[data-v-65a2c74c],.t-tabs.right-start[data-v-65a2c74c],.t-tabs.right-center[data-v-65a2c74c],.t-tabs.right-end[data-v-65a2c74c]{flex-direction:column}.t-tabs.border-under[data-v-65a2c74c]:after{content:"";display:block}.t-tabs.border-under.top-start[data-v-65a2c74c]:after,.t-tabs.border-under.top-center[data-v-65a2c74c]:after,.t-tabs.border-under.top-end[data-v-65a2c74c]:after,.t-tabs.border-under.bottom-start[data-v-65a2c74c]:after,.t-tabs.border-under.bottom-center[data-v-65a2c74c]:after,.t-tabs.border-under.bottom-end[data-v-65a2c74c]:after{width:var(--border);height:2.5px;background-color:var(--color);position:absolute;transform:translate(var(--transform));transition:transform .2s ease}.t-tabs.border-under.top-start[data-v-65a2c74c]:after,.t-tabs.border-under.top-center[data-v-65a2c74c]:after,.t-tabs.border-under.top-end[data-v-65a2c74c]:after{bottom:0;left:0}.t-tabs.border-under.bottom-start[data-v-65a2c74c]:after,.t-tabs.border-under.bottom-center[data-v-65a2c74c]:after,.t-tabs.border-under.bottom-end[data-v-65a2c74c]:after{top:0;left:0}.t-tabs.border-under.left-start[data-v-65a2c74c]:after,.t-tabs.border-under.left-center[data-v-65a2c74c]:after,.t-tabs.border-under.left-end[data-v-65a2c74c]:after,.t-tabs.border-under.right-start[data-v-65a2c74c]:after,.t-tabs.border-under.right-center[data-v-65a2c74c]:after,.t-tabs.border-under.right-end[data-v-65a2c74c]:after{height:var(--border);width:2.5px;background-color:var(--color);position:absolute;transform:translateY(var(--transform));transition:transform .2s ease}.t-tabs.border-under.left-start[data-v-65a2c74c]:after,.t-tabs.border-under.left-center[data-v-65a2c74c]:after,.t-tabs.border-under.left-end[data-v-65a2c74c]:after{top:0;right:0}.t-tabs.border-under.right-start[data-v-65a2c74c]:after,.t-tabs.border-under.right-center[data-v-65a2c74c]:after,.t-tabs.border-under.right-end[data-v-65a2c74c]:after{top:0;left:0}.t-content[data-v-1436aa9f]{display:flex;justify-content:center;align-items:center;height:100%;width:100%;position:absolute;top:0;left:0}
|
package/dist/index.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createElementBlock as _, openBlock as
|
|
1
|
+
import { createElementBlock as _, openBlock as u, renderSlot as h, defineComponent as T, ref as y, computed as S, reactive as te, watch as A, Fragment as V, withDirectives as Y, createCommentVNode as C, normalizeStyle as w, normalizeClass as x, vShow as H, createElementVNode as $, createVNode as j, onUnmounted as L, createBlock as z, withCtx as E, toDisplayString as D, renderList as U, createTextVNode as O, createApp as F, h as G, unref as P, onMounted as Q, resolveDynamicComponent as ce, markRaw as ie, inject as ue, provide as de } from "vue";
|
|
2
2
|
import { gesture as N } from "@toife/gesture";
|
|
3
3
|
import { useRouter as oe, useRoute as pe } from "vue-router";
|
|
4
4
|
const q = (t) => t && (t.tagName == "INPUT" || t.tagName == "TEXTAREA" || t.isContentEditable), X = () => {
|
|
@@ -15,7 +15,7 @@ const q = (t) => t && (t.tagName == "INPUT" || t.tagName == "TEXTAREA" || t.isCo
|
|
|
15
15
|
return o;
|
|
16
16
|
}, me = {}, ve = { class: "t-app" };
|
|
17
17
|
function _e(t, n) {
|
|
18
|
-
return
|
|
18
|
+
return u(), _("div", ve, [
|
|
19
19
|
h(t.$slots, "default")
|
|
20
20
|
]);
|
|
21
21
|
}
|
|
@@ -25,17 +25,18 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
25
25
|
keepalive: { type: Boolean, default: !0 },
|
|
26
26
|
visible: { type: Boolean, default: !1 },
|
|
27
27
|
backdrop: { type: Boolean, default: !0 },
|
|
28
|
-
placement: { default: "bottom" }
|
|
28
|
+
placement: { default: "bottom" },
|
|
29
|
+
fullscreen: { type: Boolean, default: !1 }
|
|
29
30
|
},
|
|
30
31
|
emits: ["dismiss"],
|
|
31
32
|
setup(t, { expose: n, emit: o }) {
|
|
32
|
-
const e = y(0), s = y(!1), r = y(), c = y(),
|
|
33
|
+
const e = y(0), s = y(!1), r = y(), c = y(), i = t, d = o, p = S(() => s.value || i.keepalive), f = te({
|
|
33
34
|
"--t-present-backdrop-opacity": "0.4",
|
|
34
35
|
"--t-present-transition": "0.2s",
|
|
35
36
|
"--t-present-content-transform": "0px",
|
|
36
37
|
"--t-present-content-opacity": "1"
|
|
37
38
|
}), v = (m) => {
|
|
38
|
-
|
|
39
|
+
i.backdrop ? m?.backdropOpacity && (f["--t-present-backdrop-opacity"] = m.backdropOpacity) : f["--t-present-backdrop-opacity"] = "0", m?.transition && (f["--t-present-transition"] = m.transition, f["--t-present-transition"] = m.transition), m?.contentTransform && (f["--t-present-content-transform"] = m.contentTransform), m?.contentOpacity && (f["--t-present-content-opacity"] = m.contentOpacity);
|
|
39
40
|
}, l = () => {
|
|
40
41
|
v({
|
|
41
42
|
contentTransform: "0px",
|
|
@@ -45,15 +46,15 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
45
46
|
});
|
|
46
47
|
}, a = () => {
|
|
47
48
|
let m = "0px", I = "1";
|
|
48
|
-
|
|
49
|
+
i.placement == "bottom" || i.placement == "right" ? m = "100%" : i.placement == "top" || i.placement == "left" ? m = "-100%" : i.placement == "center" && (m = "0px", I = "0"), v({
|
|
49
50
|
contentTransform: m,
|
|
50
51
|
transition: "0.2s",
|
|
51
52
|
contentOpacity: I,
|
|
52
53
|
backdropOpacity: "0"
|
|
53
54
|
});
|
|
54
55
|
};
|
|
55
|
-
A(() =>
|
|
56
|
-
|
|
56
|
+
A(() => i.visible, () => {
|
|
57
|
+
i.visible ? (s.value = !0, e.value = Ce.getNewIndex(), setTimeout(() => {
|
|
57
58
|
l();
|
|
58
59
|
}, 50)) : (a(), setTimeout(() => {
|
|
59
60
|
s.value = !1;
|
|
@@ -66,10 +67,10 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
66
67
|
const g = (m) => {
|
|
67
68
|
m.preventDefault(), d("dismiss", "backdrop");
|
|
68
69
|
};
|
|
69
|
-
return a(), (m, I) => (
|
|
70
|
-
p.value ? Y((
|
|
70
|
+
return a(), (m, I) => (u(), _(V, null, [
|
|
71
|
+
p.value ? Y((u(), _("div", {
|
|
71
72
|
key: 0,
|
|
72
|
-
class: x(["t-present", { [m.placement]: !0 }]),
|
|
73
|
+
class: x(["t-present", { [m.placement]: !0, fullscreen: i.fullscreen }]),
|
|
73
74
|
ref_key: "present",
|
|
74
75
|
ref: c,
|
|
75
76
|
style: w({ ...f, zIndex: e.value })
|
|
@@ -78,7 +79,7 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
78
79
|
], 6)), [
|
|
79
80
|
[H, s.value]
|
|
80
81
|
]) : C("", !0),
|
|
81
|
-
p.value ? Y((
|
|
82
|
+
p.value ? Y((u(), _("div", {
|
|
82
83
|
key: 1,
|
|
83
84
|
class: "t-present-backdrop",
|
|
84
85
|
onClick: g,
|
|
@@ -90,7 +91,7 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
90
91
|
]) : C("", !0)
|
|
91
92
|
], 64));
|
|
92
93
|
}
|
|
93
|
-
}), W = /* @__PURE__ */ b(ge, [["__scopeId", "data-v-
|
|
94
|
+
}), W = /* @__PURE__ */ b(ge, [["__scopeId", "data-v-0e153af5"]]), be = /* @__PURE__ */ T({
|
|
94
95
|
__name: "t-loading-icon",
|
|
95
96
|
props: {
|
|
96
97
|
size: {
|
|
@@ -103,7 +104,7 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
103
104
|
}
|
|
104
105
|
},
|
|
105
106
|
setup(t) {
|
|
106
|
-
return (n, o) => (
|
|
107
|
+
return (n, o) => (u(), _("span", {
|
|
107
108
|
class: "t-loading-icon",
|
|
108
109
|
style: w({
|
|
109
110
|
width: t.size,
|
|
@@ -170,7 +171,7 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
170
171
|
"--background": "transparent"
|
|
171
172
|
}), e;
|
|
172
173
|
});
|
|
173
|
-
return (e, s) => (
|
|
174
|
+
return (e, s) => (u(), _("button", {
|
|
174
175
|
class: x(["t-button", { "active-background": n.activeBackground, rounded: n.rounded, block: n.block, ["size-" + n.size]: !0 }]),
|
|
175
176
|
style: w(o.value)
|
|
176
177
|
}, [
|
|
@@ -179,7 +180,7 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
179
180
|
], 512), [
|
|
180
181
|
[H, !n.loading]
|
|
181
182
|
]),
|
|
182
|
-
n.loading ? (
|
|
183
|
+
n.loading ? (u(), _("span", he, [
|
|
183
184
|
j(K, {
|
|
184
185
|
color: "var(--color)",
|
|
185
186
|
type: n.loadingType
|
|
@@ -201,7 +202,7 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
201
202
|
emits: ["dismiss"],
|
|
202
203
|
setup(t, { expose: n, emit: o }) {
|
|
203
204
|
const e = t, s = y(!1), r = o, c = y();
|
|
204
|
-
let
|
|
205
|
+
let i;
|
|
205
206
|
const d = y(!1), p = () => {
|
|
206
207
|
s.value = !0;
|
|
207
208
|
}, f = (l) => {
|
|
@@ -214,14 +215,14 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
214
215
|
return n({
|
|
215
216
|
open: p
|
|
216
217
|
}), A(() => c.value, (l) => {
|
|
217
|
-
l && (
|
|
218
|
+
l && (i = N(c.value, {
|
|
218
219
|
beforeEvent(a) {
|
|
219
220
|
return a.stopPropagation(), q(a.target) || (a.preventDefault(), X()), !1;
|
|
220
221
|
}
|
|
221
222
|
}));
|
|
222
223
|
}), L(() => {
|
|
223
|
-
|
|
224
|
-
}), (l, a) => (
|
|
224
|
+
i && i.destroy();
|
|
225
|
+
}), (l, a) => (u(), z(W, {
|
|
225
226
|
placement: "center",
|
|
226
227
|
backdrop: !0,
|
|
227
228
|
keepalive: !1,
|
|
@@ -235,14 +236,14 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
235
236
|
ref: c
|
|
236
237
|
}, [
|
|
237
238
|
h(l.$slots, "header", {}, () => [
|
|
238
|
-
e.title ? (
|
|
239
|
+
e.title ? (u(), _("div", $e, D(e.title), 1)) : C("", !0)
|
|
239
240
|
], !0),
|
|
240
241
|
h(l.$slots, "content", {}, () => [
|
|
241
242
|
$("div", Te, D(e.message), 1)
|
|
242
243
|
], !0),
|
|
243
244
|
h(l.$slots, "footer", {}, () => [
|
|
244
245
|
$("div", we, [
|
|
245
|
-
(
|
|
246
|
+
(u(!0), _(V, null, U(e.actions, (g) => (u(), z(M, {
|
|
246
247
|
color: g.color,
|
|
247
248
|
variant: g.variant,
|
|
248
249
|
onClick: (m) => f(g)
|
|
@@ -271,10 +272,10 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
271
272
|
return G(ne, {
|
|
272
273
|
...t,
|
|
273
274
|
ref: s,
|
|
274
|
-
onDismiss: (c,
|
|
275
|
+
onDismiss: (c, i) => {
|
|
275
276
|
setTimeout(() => {
|
|
276
277
|
r.unmount(), e.remove();
|
|
277
|
-
}, 300), n(
|
|
278
|
+
}, 300), n(i);
|
|
278
279
|
}
|
|
279
280
|
});
|
|
280
281
|
}
|
|
@@ -293,7 +294,7 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
293
294
|
emits: ["dismiss"],
|
|
294
295
|
setup(t, { expose: n, emit: o }) {
|
|
295
296
|
const e = t, s = y(!1), r = o, c = y();
|
|
296
|
-
let
|
|
297
|
+
let i;
|
|
297
298
|
const d = y(!1), p = () => {
|
|
298
299
|
s.value = !0;
|
|
299
300
|
}, f = (l) => {
|
|
@@ -306,14 +307,14 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
306
307
|
return n({
|
|
307
308
|
open: p
|
|
308
309
|
}), A(() => c.value, (l) => {
|
|
309
|
-
l && (
|
|
310
|
+
l && (i = N(c.value, {
|
|
310
311
|
beforeEvent(a) {
|
|
311
312
|
return a.stopPropagation(), q(a.target) || (a.preventDefault(), X()), !1;
|
|
312
313
|
}
|
|
313
314
|
}));
|
|
314
315
|
}), L(() => {
|
|
315
|
-
|
|
316
|
-
}), (l, a) => (
|
|
316
|
+
i && i.destroy();
|
|
317
|
+
}), (l, a) => (u(), z(W, {
|
|
317
318
|
placement: "bottom",
|
|
318
319
|
backdrop: !0,
|
|
319
320
|
keepalive: !1,
|
|
@@ -326,8 +327,8 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
326
327
|
ref_key: "container",
|
|
327
328
|
ref: c
|
|
328
329
|
}, [
|
|
329
|
-
(
|
|
330
|
-
(
|
|
330
|
+
(u(!0), _(V, null, U(e.actions, (g) => (u(), _("div", null, [
|
|
331
|
+
(u(!0), _(V, null, U(g, (m) => (u(), z(M, {
|
|
331
332
|
color: m.color,
|
|
332
333
|
size: m.size,
|
|
333
334
|
variant: m.variant,
|
|
@@ -345,7 +346,7 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
345
346
|
_: 1
|
|
346
347
|
}, 8, ["visible"]));
|
|
347
348
|
}
|
|
348
|
-
}), Se = /* @__PURE__ */ b(Ie, [["__scopeId", "data-v-
|
|
349
|
+
}), Se = /* @__PURE__ */ b(Ie, [["__scopeId", "data-v-5c29cf79"]]), jt = (t = {}) => ({
|
|
349
350
|
open() {
|
|
350
351
|
return new Promise((n) => {
|
|
351
352
|
let o = document.body.querySelector(".t-app");
|
|
@@ -357,10 +358,10 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
357
358
|
return G(Se, {
|
|
358
359
|
...t,
|
|
359
360
|
ref: s,
|
|
360
|
-
onDismiss: (c,
|
|
361
|
+
onDismiss: (c, i) => {
|
|
361
362
|
setTimeout(() => {
|
|
362
363
|
r.unmount(), e.remove();
|
|
363
|
-
}, 300), n(
|
|
364
|
+
}, 300), n(i);
|
|
364
365
|
}
|
|
365
366
|
});
|
|
366
367
|
}
|
|
@@ -394,7 +395,7 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
394
395
|
}));
|
|
395
396
|
}), L(() => {
|
|
396
397
|
c && c.destroy();
|
|
397
|
-
}), (p, f) => (
|
|
398
|
+
}), (p, f) => (u(), z(W, {
|
|
398
399
|
placement: "center",
|
|
399
400
|
backdrop: !0,
|
|
400
401
|
keepalive: !1,
|
|
@@ -475,14 +476,14 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
475
476
|
},
|
|
476
477
|
emits: ["dismiss"],
|
|
477
478
|
setup(t, { expose: n, emit: o }) {
|
|
478
|
-
const e = t, s = o, r = y(!1), c = y(!1),
|
|
479
|
-
c.value = !0,
|
|
479
|
+
const e = t, s = o, r = y(!1), c = y(!1), i = y(!1), d = () => {
|
|
480
|
+
c.value = !0, i.value = !1, setTimeout(() => {
|
|
480
481
|
r.value = !0;
|
|
481
482
|
}, 10), setTimeout(() => {
|
|
482
483
|
p();
|
|
483
484
|
}, e.duration + 10);
|
|
484
485
|
}, p = () => {
|
|
485
|
-
|
|
486
|
+
i.value = !0, setTimeout(() => {
|
|
486
487
|
c.value = !1, r.value = !1, s("dismiss");
|
|
487
488
|
}, 300);
|
|
488
489
|
}, f = S(() => {
|
|
@@ -527,9 +528,9 @@ const ye = /* @__PURE__ */ b(me, [["render", _e]]), ge = /* @__PURE__ */ T({
|
|
|
527
528
|
});
|
|
528
529
|
return n({
|
|
529
530
|
open: d
|
|
530
|
-
}), (v, l) => c.value ? (
|
|
531
|
+
}), (v, l) => c.value ? (u(), _("div", {
|
|
531
532
|
key: 0,
|
|
532
|
-
class: x(["t-toast", { [e.placement]: !0, open: r.value, closing:
|
|
533
|
+
class: x(["t-toast", { [e.placement]: !0, open: r.value, closing: i.value }]),
|
|
533
534
|
style: w({ "--space": e.space, ...f.value })
|
|
534
535
|
}, D(e.message), 7)) : C("", !0);
|
|
535
536
|
}
|
|
@@ -570,7 +571,7 @@ const Le = /* @__PURE__ */ T({
|
|
|
570
571
|
},
|
|
571
572
|
setup(t) {
|
|
572
573
|
const n = t, { height: o } = Ve();
|
|
573
|
-
return (e, s) => (
|
|
574
|
+
return (e, s) => (u(), _("div", {
|
|
574
575
|
class: x(["t-cable", { keyboard: n.keyboard && P(o) > 0, [n.placement]: !0 }]),
|
|
575
576
|
style: w({ "--t-keyboard-height": P(o) + "px", "--t-keyboard-transition": P(o) > 0 ? "0.3s" : "0.1s" })
|
|
576
577
|
}, [
|
|
@@ -593,7 +594,7 @@ const Le = /* @__PURE__ */ T({
|
|
|
593
594
|
"--background": "var(--t-color-surface)"
|
|
594
595
|
}, e;
|
|
595
596
|
});
|
|
596
|
-
return (e, s) => (
|
|
597
|
+
return (e, s) => (u(), _("div", {
|
|
597
598
|
class: "t-card",
|
|
598
599
|
style: w(o.value)
|
|
599
600
|
}, [
|
|
@@ -602,7 +603,7 @@ const Le = /* @__PURE__ */ T({
|
|
|
602
603
|
}
|
|
603
604
|
}), qe = {}, Xe = { class: "t-content" };
|
|
604
605
|
function We(t, n) {
|
|
605
|
-
return
|
|
606
|
+
return u(), _("div", Xe, [
|
|
606
607
|
h(t.$slots, "default", {}, void 0, !0)
|
|
607
608
|
]);
|
|
608
609
|
}
|
|
@@ -611,13 +612,13 @@ const re = /* @__PURE__ */ b(qe, [["render", We], ["__scopeId", "data-v-9a833657
|
|
|
611
612
|
emits: ["refresh"],
|
|
612
613
|
setup(t, { emit: n }) {
|
|
613
614
|
const o = n, e = y(0), s = y(!1), r = y();
|
|
614
|
-
let c,
|
|
615
|
+
let c, i = !1;
|
|
615
616
|
const d = () => {
|
|
616
617
|
s.value = !1, e.value = 0, c && c.cancel(), setTimeout(() => {
|
|
617
|
-
|
|
618
|
+
i = !1;
|
|
618
619
|
}, 2e3);
|
|
619
620
|
}, p = () => {
|
|
620
|
-
|
|
621
|
+
i = !0, s.value = !0, e.value = ee, o("refresh", d);
|
|
621
622
|
};
|
|
622
623
|
return A(() => r.value, () => {
|
|
623
624
|
c && c.destroy();
|
|
@@ -627,20 +628,20 @@ const re = /* @__PURE__ */ b(qe, [["render", We], ["__scopeId", "data-v-9a833657
|
|
|
627
628
|
minDist: 60
|
|
628
629
|
},
|
|
629
630
|
move({ dy: v, e: l }) {
|
|
630
|
-
s.value ||
|
|
631
|
+
s.value || i || v < 0 || (v > 5 && f.scrollTop == 0 && (l.preventDefault(), f.classList.add("scroll-hidden")), v >= 120 ? p() : v > 10 && (e.value = v));
|
|
631
632
|
},
|
|
632
633
|
up({ dy: v, e: l }) {
|
|
633
|
-
f.classList.remove("scroll-hidden"), !(s.value ||
|
|
634
|
+
f.classList.remove("scroll-hidden"), !(s.value || i) && (v > ee ? p() : e.value = 0);
|
|
634
635
|
},
|
|
635
636
|
cancel() {
|
|
636
|
-
f.classList.remove("scroll-hidden"), !(s.value ||
|
|
637
|
+
f.classList.remove("scroll-hidden"), !(s.value || i) && (s.value = !1, e.value = 0);
|
|
637
638
|
}
|
|
638
639
|
}, {
|
|
639
640
|
passive: !1
|
|
640
641
|
}));
|
|
641
642
|
}), L(() => {
|
|
642
643
|
c && c.destroy();
|
|
643
|
-
}), (f, v) => Y((
|
|
644
|
+
}), (f, v) => Y((u(), _("div", {
|
|
644
645
|
class: "t-refresher",
|
|
645
646
|
ref_key: "container",
|
|
646
647
|
ref: r,
|
|
@@ -658,7 +659,7 @@ const re = /* @__PURE__ */ b(qe, [["render", We], ["__scopeId", "data-v-9a833657
|
|
|
658
659
|
}
|
|
659
660
|
}), He = /* @__PURE__ */ b(Ye, [["__scopeId", "data-v-ac2b2370"]]), Ue = {}, je = { class: "t-screen" };
|
|
660
661
|
function Fe(t, n) {
|
|
661
|
-
return
|
|
662
|
+
return u(), _("div", je, [
|
|
662
663
|
h(t.$slots, "default", {}, void 0, !0)
|
|
663
664
|
]);
|
|
664
665
|
}
|
|
@@ -667,7 +668,7 @@ const ae = /* @__PURE__ */ b(Ue, [["render", Fe], ["__scopeId", "data-v-c2a3436c
|
|
|
667
668
|
emits: ["change"],
|
|
668
669
|
setup(t, { emit: n }) {
|
|
669
670
|
let o = {};
|
|
670
|
-
const e = oe(), s = pe(), r = e.getRoutes(), c = y(!1),
|
|
671
|
+
const e = oe(), s = pe(), r = e.getRoutes(), c = y(!1), i = n;
|
|
671
672
|
for (let a of r)
|
|
672
673
|
o[a.name] = a.components;
|
|
673
674
|
const d = (a) => {
|
|
@@ -679,12 +680,12 @@ const ae = /* @__PURE__ */ b(Ue, [["render", Fe], ["__scopeId", "data-v-c2a3436c
|
|
|
679
680
|
}, p = (a, g) => {
|
|
680
681
|
!g || k.screens[a].target || (k.screens[a].target = g.$el, a > 0 && (c.value = !0, g.$el.style.transform = "translateX(100%)", g.$el.transitionOrigin = "center", document.documentElement.style.setProperty("--t-screen-backdrop-duration", "0s"), document.documentElement.style.setProperty("--t-swipe-backdrop-opacity", "0"), setTimeout(() => {
|
|
681
682
|
g.$el.style.transition = "transform 0.35s ease", g.$el.style.transform = "translateX(0px)", document.documentElement.style.setProperty("--t-screen-backdrop-duration", "0.35s"), document.documentElement.style.setProperty("--t-swipe-backdrop-opacity", "0.5"), k.screens.length > 1 && (k.lastScreen.value.target.style.transitionOrigin = "left center", k.lastScreen.value.target.style.transition = "transform 0.35s ease", k.lastScreen.value.target.style.transform = "translateX(-30vw) scale(0.5) perspective(100%) rotateY(30deg)"), setTimeout(() => {
|
|
682
|
-
|
|
683
|
+
i("change"), c.value = !1;
|
|
683
684
|
}, 400);
|
|
684
685
|
}, 100)));
|
|
685
686
|
}, f = () => {
|
|
686
687
|
k.currentScreen.value.target.style.transition = "transform 0.35s ease", k.currentScreen.value.target.style.transform = "translateX(100%) scale(1)", k.lastScreen.value.target.style.transition = "transform 0.35s ease", k.lastScreen.value.target.style.transform = "translateX(0px) scale(1) perspective(100%) rotateY(0deg)", document.documentElement.style.setProperty("--t-screen-backdrop-duration", "0.35s"), document.documentElement.style.setProperty("--t-swipe-backdrop-opacity", "0"), c.value = !0, setTimeout(() => {
|
|
687
|
-
k.removeScreen(),
|
|
688
|
+
k.removeScreen(), i("change"), c.value = !1;
|
|
688
689
|
}, 400);
|
|
689
690
|
};
|
|
690
691
|
d(s.name), A(() => s.name, (a, g) => {
|
|
@@ -727,15 +728,15 @@ const ae = /* @__PURE__ */ b(Ue, [["render", Fe], ["__scopeId", "data-v-c2a3436c
|
|
|
727
728
|
});
|
|
728
729
|
}), L(() => {
|
|
729
730
|
l && l.destroy(), k.removeAllScreen();
|
|
730
|
-
}), (a, g) => (
|
|
731
|
-
(
|
|
731
|
+
}), (a, g) => (u(), _(V, null, [
|
|
732
|
+
(u(!0), _(V, null, U(P(k).screens, (m, I) => (u(), z(ae, {
|
|
732
733
|
ref_for: !0,
|
|
733
734
|
ref: (R) => p(I, R),
|
|
734
735
|
style: w({ zIndex: I + (I == P(k).screens.length - 1 ? 2 : 1) }),
|
|
735
736
|
key: I
|
|
736
737
|
}, {
|
|
737
738
|
default: E(() => [
|
|
738
|
-
(
|
|
739
|
+
(u(), z(ce(m.component.default)))
|
|
739
740
|
]),
|
|
740
741
|
_: 2
|
|
741
742
|
}, 1032, ["style"]))), 128)),
|
|
@@ -753,7 +754,7 @@ const ae = /* @__PURE__ */ b(Ue, [["render", Fe], ["__scopeId", "data-v-c2a3436c
|
|
|
753
754
|
},
|
|
754
755
|
setup(t) {
|
|
755
756
|
const n = t;
|
|
756
|
-
return (o, e) => (
|
|
757
|
+
return (o, e) => (u(), _("div", {
|
|
757
758
|
class: x(["t-toolbar", { [n.placement]: !0 }]),
|
|
758
759
|
style: w({ "--t-size-toolbar": n.size })
|
|
759
760
|
}, [
|
|
@@ -771,7 +772,7 @@ const ae = /* @__PURE__ */ b(Ue, [["render", Fe], ["__scopeId", "data-v-c2a3436c
|
|
|
771
772
|
const n = oe(), o = t, e = () => {
|
|
772
773
|
k.hasPrevious.value ? n?.back?.() : o.to && n?.push?.(o.to);
|
|
773
774
|
};
|
|
774
|
-
return (s, r) => s.to || P(k).hasPrevious ? (
|
|
775
|
+
return (s, r) => s.to || P(k).hasPrevious ? (u(), _("button", {
|
|
775
776
|
key: 0,
|
|
776
777
|
class: "t-back-button",
|
|
777
778
|
onClick: e
|
|
@@ -795,7 +796,7 @@ const ae = /* @__PURE__ */ b(Ue, [["render", Fe], ["__scopeId", "data-v-c2a3436c
|
|
|
795
796
|
"--font-size": e
|
|
796
797
|
};
|
|
797
798
|
});
|
|
798
|
-
return (e, s) => (
|
|
799
|
+
return (e, s) => (u(), _("span", {
|
|
799
800
|
class: "t-text",
|
|
800
801
|
style: w(o.value)
|
|
801
802
|
}, [
|
|
@@ -808,7 +809,7 @@ const ae = /* @__PURE__ */ b(Ue, [["render", Fe], ["__scopeId", "data-v-c2a3436c
|
|
|
808
809
|
placement: { default: "bottom" }
|
|
809
810
|
},
|
|
810
811
|
setup(t) {
|
|
811
|
-
return (n, o) => (
|
|
812
|
+
return (n, o) => (u(), _("div", {
|
|
812
813
|
class: x(["t-pull-bar", { [n.placement]: !0 }])
|
|
813
814
|
}, null, 2));
|
|
814
815
|
}
|
|
@@ -829,7 +830,7 @@ const ae = /* @__PURE__ */ b(Ue, [["render", Fe], ["__scopeId", "data-v-c2a3436c
|
|
|
829
830
|
emits: ["dismiss"],
|
|
830
831
|
setup(t, { emit: n }) {
|
|
831
832
|
const o = t, e = n, s = y(), r = y(), c = y(!1);
|
|
832
|
-
let
|
|
833
|
+
let i = null;
|
|
833
834
|
const d = S(() => {
|
|
834
835
|
if (o.placement == "bottom") return "down";
|
|
835
836
|
if (o.placement == "top") return "up";
|
|
@@ -843,7 +844,7 @@ const ae = /* @__PURE__ */ b(Ue, [["render", Fe], ["__scopeId", "data-v-c2a3436c
|
|
|
843
844
|
}, 300);
|
|
844
845
|
};
|
|
845
846
|
return A(() => s.value, (v) => {
|
|
846
|
-
v && (
|
|
847
|
+
v && (i = N(s.value, {
|
|
847
848
|
options: {
|
|
848
849
|
minDist: 30
|
|
849
850
|
},
|
|
@@ -879,10 +880,11 @@ const ae = /* @__PURE__ */ b(Ue, [["render", Fe], ["__scopeId", "data-v-c2a3436c
|
|
|
879
880
|
}
|
|
880
881
|
}));
|
|
881
882
|
}), L(() => {
|
|
882
|
-
|
|
883
|
-
}), (v, l) => (
|
|
883
|
+
i && i.destroy();
|
|
884
|
+
}), (v, l) => (u(), z(W, {
|
|
884
885
|
ref_key: "present",
|
|
885
886
|
ref: r,
|
|
887
|
+
fullscreen: o.fullscreen,
|
|
886
888
|
placement: o.placement,
|
|
887
889
|
backdrop: v.backdrop,
|
|
888
890
|
visible: o.visible,
|
|
@@ -890,11 +892,11 @@ const ae = /* @__PURE__ */ b(Ue, [["render", Fe], ["__scopeId", "data-v-c2a3436c
|
|
|
890
892
|
onDismiss: p
|
|
891
893
|
}, {
|
|
892
894
|
default: E(() => [
|
|
893
|
-
o.gesture && o.placement != "center" ? (
|
|
895
|
+
o.gesture && o.placement != "center" ? (u(), z(le, {
|
|
894
896
|
key: 0,
|
|
895
897
|
placement: o.placement
|
|
896
898
|
}, null, 8, ["placement"])) : C("", !0),
|
|
897
|
-
o.closeButton && o.placement == "center" ? (
|
|
899
|
+
o.closeButton && o.placement == "center" ? (u(), _("button", {
|
|
898
900
|
key: 1,
|
|
899
901
|
class: "t-sheet-close",
|
|
900
902
|
onClick: l[0] || (l[0] = (a) => p("close-button"))
|
|
@@ -913,9 +915,9 @@ const ae = /* @__PURE__ */ b(Ue, [["render", Fe], ["__scopeId", "data-v-c2a3436c
|
|
|
913
915
|
], 6)
|
|
914
916
|
]),
|
|
915
917
|
_: 3
|
|
916
|
-
}, 8, ["placement", "backdrop", "visible", "keepalive"]));
|
|
918
|
+
}, 8, ["fullscreen", "placement", "backdrop", "visible", "keepalive"]));
|
|
917
919
|
}
|
|
918
|
-
}), nt = /* @__PURE__ */ b(ot, [["__scopeId", "data-v-
|
|
920
|
+
}), nt = /* @__PURE__ */ b(ot, [["__scopeId", "data-v-145b1096"]]), st = { class: "t-input-label" }, rt = { class: "t-input-content" }, at = ["type", "placeholder", "value"], lt = /* @__PURE__ */ T({
|
|
919
921
|
__name: "t-input",
|
|
920
922
|
props: {
|
|
921
923
|
size: { default: "standard" },
|
|
@@ -933,7 +935,7 @@ const ae = /* @__PURE__ */ b(Ue, [["render", Fe], ["__scopeId", "data-v-c2a3436c
|
|
|
933
935
|
const o = t, e = n, s = (r) => {
|
|
934
936
|
e("update:modelValue", r.target.value);
|
|
935
937
|
};
|
|
936
|
-
return (r, c) => (
|
|
938
|
+
return (r, c) => (u(), _("div", {
|
|
937
939
|
class: x(["t-input", { rounded: o.rounded, ["size-" + o.size]: !0, ["variant-" + o.variant]: !0 }])
|
|
938
940
|
}, [
|
|
939
941
|
$("label", null, [
|
|
@@ -949,7 +951,7 @@ const ae = /* @__PURE__ */ b(Ue, [["render", Fe], ["__scopeId", "data-v-c2a3436c
|
|
|
949
951
|
h(r.$slots, "end", {}, void 0, !0)
|
|
950
952
|
])
|
|
951
953
|
]),
|
|
952
|
-
o.error ? (
|
|
954
|
+
o.error ? (u(), z(J, {
|
|
953
955
|
key: 0,
|
|
954
956
|
color: "danger"
|
|
955
957
|
}, {
|
|
@@ -957,7 +959,7 @@ const ae = /* @__PURE__ */ b(Ue, [["render", Fe], ["__scopeId", "data-v-c2a3436c
|
|
|
957
959
|
O(D(o.error), 1)
|
|
958
960
|
]),
|
|
959
961
|
_: 1
|
|
960
|
-
})) : o.help ? (
|
|
962
|
+
})) : o.help ? (u(), z(J, {
|
|
961
963
|
key: 1,
|
|
962
964
|
color: "secondary"
|
|
963
965
|
}, {
|
|
@@ -970,19 +972,19 @@ const ae = /* @__PURE__ */ b(Ue, [["render", Fe], ["__scopeId", "data-v-c2a3436c
|
|
|
970
972
|
}
|
|
971
973
|
}), ct = /* @__PURE__ */ b(lt, [["__scopeId", "data-v-1a9425cf"]]), it = {};
|
|
972
974
|
function ut(t, n) {
|
|
973
|
-
return
|
|
975
|
+
return u(), _("textarea");
|
|
974
976
|
}
|
|
975
977
|
const dt = /* @__PURE__ */ b(it, [["render", ut]]), pt = {};
|
|
976
978
|
function ft(t, n) {
|
|
977
|
-
return
|
|
979
|
+
return u(), _("div");
|
|
978
980
|
}
|
|
979
981
|
const mt = /* @__PURE__ */ b(pt, [["render", ft]]), vt = {}, _t = { class: "t-grid" };
|
|
980
982
|
function yt(t, n) {
|
|
981
|
-
return
|
|
983
|
+
return u(), _("div", _t);
|
|
982
984
|
}
|
|
983
985
|
const gt = /* @__PURE__ */ b(vt, [["render", yt]]), bt = {}, ht = { class: "t-grid-item" };
|
|
984
986
|
function kt(t, n) {
|
|
985
|
-
return
|
|
987
|
+
return u(), _("div", ht);
|
|
986
988
|
}
|
|
987
989
|
const $t = /* @__PURE__ */ b(bt, [["render", kt]]), Tt = /* @__PURE__ */ T({
|
|
988
990
|
__name: "t-divider",
|
|
@@ -991,7 +993,7 @@ const $t = /* @__PURE__ */ b(bt, [["render", kt]]), Tt = /* @__PURE__ */ T({
|
|
|
991
993
|
},
|
|
992
994
|
setup(t) {
|
|
993
995
|
const n = t;
|
|
994
|
-
return (o, e) => (
|
|
996
|
+
return (o, e) => (u(), _("div", {
|
|
995
997
|
class: x(["t-divider", { [n.direction]: !0 }])
|
|
996
998
|
}, null, 2));
|
|
997
999
|
}
|
|
@@ -1007,16 +1009,16 @@ const $t = /* @__PURE__ */ b(bt, [["render", kt]]), Tt = /* @__PURE__ */ T({
|
|
|
1007
1009
|
return ["warning", "info", "danger", "primary", "secondary", "success"].includes(o.color) && (p = `var(--t-color-status-${o.color})`), {
|
|
1008
1010
|
"--color": p
|
|
1009
1011
|
};
|
|
1010
|
-
}),
|
|
1012
|
+
}), i = () => r.value?.parentElement?.querySelector?.("input");
|
|
1011
1013
|
Q(() => {
|
|
1012
|
-
let p =
|
|
1014
|
+
let p = i();
|
|
1013
1015
|
p && (s.value = p.type != "password", e("change", s.value));
|
|
1014
1016
|
});
|
|
1015
1017
|
const d = () => {
|
|
1016
|
-
let p =
|
|
1018
|
+
let p = i();
|
|
1017
1019
|
p && (s.value = !s.value, s.value ? p.type = "text" : p.type = "password", e("change", s.value));
|
|
1018
1020
|
};
|
|
1019
|
-
return (p, f) => (
|
|
1021
|
+
return (p, f) => (u(), _("button", {
|
|
1020
1022
|
ref_key: "toggle",
|
|
1021
1023
|
ref: r,
|
|
1022
1024
|
class: "t-toggle-password",
|
|
@@ -1039,7 +1041,7 @@ const $t = /* @__PURE__ */ b(bt, [["render", kt]]), Tt = /* @__PURE__ */ T({
|
|
|
1039
1041
|
},
|
|
1040
1042
|
setup(t) {
|
|
1041
1043
|
const n = t, o = S(() => n.size == "small" ? "24px" : n.size == "standard" ? "40px" : n.size == "large" ? "60px" : n.size);
|
|
1042
|
-
return (e, s) => (
|
|
1044
|
+
return (e, s) => (u(), _("div", {
|
|
1043
1045
|
class: x(["t-avatar", { square: e.square }]),
|
|
1044
1046
|
style: w({ "--size": o.value })
|
|
1045
1047
|
}, [
|
|
@@ -1059,16 +1061,16 @@ const $t = /* @__PURE__ */ b(bt, [["render", kt]]), Tt = /* @__PURE__ */ T({
|
|
|
1059
1061
|
},
|
|
1060
1062
|
emits: ["change"],
|
|
1061
1063
|
setup(t, { emit: n }) {
|
|
1062
|
-
const o = t, e = n, s = y(!1), r = y(""), c = y(),
|
|
1064
|
+
const o = t, e = n, s = y(!1), r = y(""), c = y(), i = () => {
|
|
1063
1065
|
s.value = !s.value, r.value = `calc(${c.value.offsetHeight}px + 2rem)`, e("change", s.value);
|
|
1064
1066
|
};
|
|
1065
|
-
return e("change", s.value), (d, p) => (
|
|
1067
|
+
return e("change", s.value), (d, p) => (u(), _("div", {
|
|
1066
1068
|
class: x(["t-collapse", { open: s.value }]),
|
|
1067
1069
|
style: w({ "--height": r.value })
|
|
1068
1070
|
}, [
|
|
1069
1071
|
$("div", {
|
|
1070
1072
|
class: "t-collapse-header",
|
|
1071
|
-
onClick:
|
|
1073
|
+
onClick: i
|
|
1072
1074
|
}, [
|
|
1073
1075
|
h(d.$slots, "icon"),
|
|
1074
1076
|
$("div", Bt, [
|
|
@@ -1077,9 +1079,9 @@ const $t = /* @__PURE__ */ b(bt, [["render", kt]]), Tt = /* @__PURE__ */ T({
|
|
|
1077
1079
|
])
|
|
1078
1080
|
]),
|
|
1079
1081
|
h(d.$slots, "toggle", {}, () => [
|
|
1080
|
-
s.value ? (
|
|
1082
|
+
s.value ? (u(), _("div", Ct, [...p[0] || (p[0] = [
|
|
1081
1083
|
$("i", { class: "ri-arrow-up-s-line" }, null, -1)
|
|
1082
|
-
])])) : (
|
|
1084
|
+
])])) : (u(), _("div", Et, [...p[1] || (p[1] = [
|
|
1083
1085
|
$("i", { class: "ri-arrow-down-s-line" }, null, -1)
|
|
1084
1086
|
])]))
|
|
1085
1087
|
])
|
|
@@ -1116,11 +1118,11 @@ const $t = /* @__PURE__ */ b(bt, [["render", kt]]), Tt = /* @__PURE__ */ T({
|
|
|
1116
1118
|
"--color": `var(--t-color-status-${o.color}-text)`
|
|
1117
1119
|
}), c;
|
|
1118
1120
|
});
|
|
1119
|
-
return (c,
|
|
1121
|
+
return (c, i) => (u(), _("div", {
|
|
1120
1122
|
class: x(["t-switch", { on: o.modelValue }]),
|
|
1121
1123
|
style: w(r.value),
|
|
1122
1124
|
onClick: s
|
|
1123
|
-
}, [...
|
|
1125
|
+
}, [...i[0] || (i[0] = [
|
|
1124
1126
|
$("div", { class: "t-switch-icon" }, null, -1)
|
|
1125
1127
|
])], 6));
|
|
1126
1128
|
}
|
|
@@ -1133,7 +1135,7 @@ const $t = /* @__PURE__ */ b(bt, [["render", kt]]), Tt = /* @__PURE__ */ T({
|
|
|
1133
1135
|
const n = t, o = ue("tabsState"), e = S(() => o.active.value === n.value), s = () => {
|
|
1134
1136
|
o.setActive(n.value);
|
|
1135
1137
|
};
|
|
1136
|
-
return (r, c) => (
|
|
1138
|
+
return (r, c) => (u(), _("li", {
|
|
1137
1139
|
class: x(["t-tab", { active: e.value }])
|
|
1138
1140
|
}, [
|
|
1139
1141
|
j(M, {
|
|
@@ -1164,7 +1166,7 @@ const $t = /* @__PURE__ */ b(bt, [["render", kt]]), Tt = /* @__PURE__ */ T({
|
|
|
1164
1166
|
const o = t, e = n, s = y("0px"), r = y(), c = S(() => {
|
|
1165
1167
|
let d = o.color;
|
|
1166
1168
|
return ["warning", "info", "danger", "primary", "secondary", "success"].includes(d) && (d = `var(--t-color-status-${d})`), d;
|
|
1167
|
-
}),
|
|
1169
|
+
}), i = () => {
|
|
1168
1170
|
setTimeout(() => {
|
|
1169
1171
|
if (o.placement.startsWith("top-") || o.placement.startsWith("bottom-")) {
|
|
1170
1172
|
let d = r.value.querySelector(".active");
|
|
@@ -1187,11 +1189,11 @@ const $t = /* @__PURE__ */ b(bt, [["render", kt]]), Tt = /* @__PURE__ */ T({
|
|
|
1187
1189
|
size: o.size,
|
|
1188
1190
|
variant: o.variant,
|
|
1189
1191
|
setActive: (d) => {
|
|
1190
|
-
e("update:modelValue", d),
|
|
1192
|
+
e("update:modelValue", d), i();
|
|
1191
1193
|
}
|
|
1192
1194
|
}), Q(() => {
|
|
1193
|
-
|
|
1194
|
-
}), (d, p) => (
|
|
1195
|
+
i();
|
|
1196
|
+
}), (d, p) => (u(), _("ul", {
|
|
1195
1197
|
ref_key: "container",
|
|
1196
1198
|
ref: r,
|
|
1197
1199
|
class: x(["t-tabs", { [d.placement]: !0, [d.variant]: !0 }]),
|
|
@@ -1203,7 +1205,7 @@ const $t = /* @__PURE__ */ b(bt, [["render", kt]]), Tt = /* @__PURE__ */ T({
|
|
|
1203
1205
|
}), Ot = /* @__PURE__ */ b(Nt, [["__scopeId", "data-v-65a2c74c"]]), qt = /* @__PURE__ */ T({
|
|
1204
1206
|
__name: "t-loading-app",
|
|
1205
1207
|
setup(t) {
|
|
1206
|
-
return (n, o) => (
|
|
1208
|
+
return (n, o) => (u(), z(re, null, {
|
|
1207
1209
|
default: E(() => [
|
|
1208
1210
|
j(K, { type: "spinner" })
|
|
1209
1211
|
]),
|
package/dist/index.umd.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(function(h,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue"),require("@toife/gesture"),require("vue-router")):typeof define=="function"&&define.amd?define(["exports","vue","@toife/gesture","vue-router"],e):(h=typeof globalThis<"u"?globalThis:h||self,e(h.ToifeVue={},h.Vue,h.ToifeGesture,h.VueRouter))})(this,(function(h,e,S,x){"use strict";const C=o=>o&&(o.tagName=="INPUT"||o.tagName=="TEXTAREA"||o.isContentEditable),E=()=>{const o=document.activeElement;o&&(o.tagName==="INPUT"||o.tagName==="TEXTAREA"||o.isContentEditable)&&o.blur()},O=()=>{document.addEventListener("contextmenu",o=>o.preventDefault()),document.addEventListener("selectstart",o=>o.preventDefault()),document.addEventListener("pointerup",o=>{!C(o.target)&&E()})},k=(o,r)=>{const n=o.__vccOpts||o;for(const[t,s]of r)n[t]=s;return n},X={},F={class:"t-app"};function U(o,r){return e.openBlock(),e.createElementBlock("div",F,[e.renderSlot(o.$slots,"default")])}const W=k(X,[["render",U]]),T=k(e.defineComponent({__name:"t-present",props:{keepalive:{type:Boolean,default:!0},visible:{type:Boolean,default:!1},backdrop:{type:Boolean,default:!0},placement:{default:"bottom"}},emits:["dismiss"],setup(o,{expose:r,emit:n}){const t=e.ref(0),s=e.ref(!1),a=e.ref(),i=e.ref(),d=o,p=n,m=e.computed(()=>s.value||d.keepalive),f=e.reactive({"--t-present-backdrop-opacity":"0.4","--t-present-transition":"0.2s","--t-present-content-transform":"0px","--t-present-content-opacity":"1"}),_=u=>{d.backdrop?u?.backdropOpacity&&(f["--t-present-backdrop-opacity"]=u.backdropOpacity):f["--t-present-backdrop-opacity"]="0",u?.transition&&(f["--t-present-transition"]=u.transition,f["--t-present-transition"]=u.transition),u?.contentTransform&&(f["--t-present-content-transform"]=u.contentTransform),u?.contentOpacity&&(f["--t-present-content-opacity"]=u.contentOpacity)},c=()=>{_({contentTransform:"0px",transition:"0.2s",backdropOpacity:"0.4",contentOpacity:"1"})},l=()=>{let u="0px",b="1";d.placement=="bottom"||d.placement=="right"?u="100%":d.placement=="top"||d.placement=="left"?u="-100%":d.placement=="center"&&(u="0px",b="0"),_({contentTransform:u,transition:"0.2s",contentOpacity:b,backdropOpacity:"0"})};e.watch(()=>d.visible,()=>{d.visible?(s.value=!0,t.value=D.getNewIndex(),setTimeout(()=>{c()},50)):(l(),setTimeout(()=>{s.value=!1},200))}),r({render:_,open:c,close:l});const y=u=>{u.preventDefault(),p("dismiss","backdrop")};return l(),(u,b)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[m.value?e.withDirectives((e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["t-present",{[u.placement]:!0}]),ref_key:"present",ref:i,style:e.normalizeStyle({...f,zIndex:t.value})},[e.renderSlot(u.$slots,"default",{},void 0,!0)],6)),[[e.vShow,s.value]]):e.createCommentVNode("",!0),m.value?e.withDirectives((e.openBlock(),e.createElementBlock("div",{key:1,class:"t-present-backdrop",onClick:y,ref_key:"backdrop",ref:a,style:e.normalizeStyle({...f,zIndex:t.value-1})},null,4)),[[e.vShow,s.value]]):e.createCommentVNode("",!0)],64))}}),[["__scopeId","data-v-3e2364a7"]]),w=k(e.defineComponent({__name:"t-loading-icon",props:{size:{type:String,default:"24px"},color:{type:String,default:"var(--t-color-text)"}},setup(o){return(r,n)=>(e.openBlock(),e.createElementBlock("span",{class:"t-loading-icon",style:e.normalizeStyle({width:o.size,height:o.size,borderTopColor:o.color}),role:"status","aria-label":"Loading..."},null,4))}}),[["__scopeId","data-v-7c463303"]]),j={key:0,class:"loader"},z=k(e.defineComponent({__name:"t-button",props:{color:{default:null},size:{default:"standard"},rounded:{type:Boolean,default:!1},block:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},loadingType:{default:"spinner"},variant:{default:"default"},activeBackground:{type:Boolean,default:!1}},setup(o){const r=o,n=e.computed(()=>{let t;return r.variant=="default"&&(r.color?["warning","info","danger","primary","secondary","success"].includes(r.color)?t={"--border":"none","--color":"var(--t-color-status-"+r.color+"-text)","--background":"var(--t-color-status-"+r.color+")"}:t={"--border":"none","--color":"var(--t-color-text)","--background":r.color}:t={"--border":"none","--color":"var(--t-color-text)","--background":"var(--t-color-surface)"}),r.variant=="text"&&(r.color?["warning","info","danger","primary","secondary","success"].includes(r.color)?t={"--border":"none","--color":"var(--t-color-status-"+r.color+")","--background":"transparent"}:t={"--border":"none","--color":r.color,"--background":"transparent"}:t={"--border":"none","--color":"var(--t-color-text)","--background":"transparent"}),r.variant=="outline"&&(r.color?["warning","info","danger","primary","secondary","success"].includes(r.color)?t={"--border":"0.55px solid var(--t-color-status-"+r.color+")","--color":"var(--t-color-status-"+r.color+")","--background":"transparent"}:t={"--border":"0.55px solid "+r.color,"--color":r.color,"--background":"transparent"}:t={"--border":"0.55px solid var(--t-color-text)","--color":"var(--t-color-text)","--background":"transparent"}),t});return(t,s)=>(e.openBlock(),e.createElementBlock("button",{class:e.normalizeClass(["t-button",{"active-background":r.activeBackground,rounded:r.rounded,block:r.block,["size-"+r.size]:!0}]),style:e.normalizeStyle(n.value)},[e.withDirectives(e.createElementVNode("span",null,[e.renderSlot(t.$slots,"default",{},void 0,!0)],512),[[e.vShow,!r.loading]]),r.loading?(e.openBlock(),e.createElementBlock("span",j,[e.createVNode(w,{color:"var(--color)",type:r.loadingType},null,8,["type"])])):e.createCommentVNode("",!0)],6))}}),[["__scopeId","data-v-74d8380d"]]),M={key:0,class:"t-alert-header"},Y={class:"t-alert-content"},G={class:"t-alert-footer"},N=k(e.defineComponent({__name:"t-alert",props:{title:{},message:{},actions:{},dismiss:{}},emits:["dismiss"],setup(o,{expose:r,emit:n}){const t=o,s=e.ref(!1),a=n,i=e.ref();let d;const p=e.ref(!1),m=()=>{s.value=!0},f=c=>{s.value=!1,c.handler&&c.handler(),a("dismiss","choose",c?.data)},_=c=>{t.dismiss&&t.dismiss.includes(c)?(s.value=!1,a("dismiss",c)):c=="backdrop"&&(p.value=!0,setTimeout(()=>{p.value=!1},300))};return r({open:m}),e.watch(()=>i.value,c=>{c&&(d=S.gesture(i.value,{beforeEvent(l){return l.stopPropagation(),C(l.target)||(l.preventDefault(),E()),!1}}))}),e.onUnmounted(()=>{d&&d.destroy()}),(c,l)=>(e.openBlock(),e.createBlock(T,{placement:"center",backdrop:!0,keepalive:!1,visible:s.value,onDismiss:_},{default:e.withCtx(()=>[e.createElementVNode("div",{class:e.normalizeClass(["t-alert",{pop:p.value}]),ref_key:"container",ref:i},[e.renderSlot(c.$slots,"header",{},()=>[t.title?(e.openBlock(),e.createElementBlock("div",M,e.toDisplayString(t.title),1)):e.createCommentVNode("",!0)],!0),e.renderSlot(c.$slots,"content",{},()=>[e.createElementVNode("div",Y,e.toDisplayString(t.message),1)],!0),e.renderSlot(c.$slots,"footer",{},()=>[e.createElementVNode("div",G,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.actions,y=>(e.openBlock(),e.createBlock(z,{color:y.color,variant:y.variant,onClick:u=>f(y)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(y.text),1)]),_:2},1032,["color","variant","onClick"]))),256))])],!0)],2)]),_:3},8,["visible"]))}}),[["__scopeId","data-v-5cf415ec"]]),H=(o={})=>({open(){return new Promise(r=>{let n=document.body.querySelector(".t-app");if(!n)return;const t=document.createElement("div"),s=e.ref();n.appendChild(t);const a=e.createApp({render(){return e.h(N,{...o,ref:s,onDismiss:(i,d)=>{setTimeout(()=>{a.unmount(),t.remove()},300),r(d)}})}});a.mount(t),setTimeout(()=>{s.value?.open?.()},50)})}}),K=k(e.defineComponent({__name:"t-action",props:{actions:{},dismiss:{}},emits:["dismiss"],setup(o,{expose:r,emit:n}){const t=o,s=e.ref(!1),a=n,i=e.ref();let d;const p=e.ref(!1),m=()=>{s.value=!0},f=c=>{s.value=!1,c.handler&&c.handler(),a("dismiss","choose",c?.data)},_=c=>{t.dismiss&&t.dismiss.includes(c)?(s.value=!1,a("dismiss",c)):c=="backdrop"&&(p.value=!0,setTimeout(()=>{p.value=!1},300))};return r({open:m}),e.watch(()=>i.value,c=>{c&&(d=S.gesture(i.value,{beforeEvent(l){return l.stopPropagation(),C(l.target)||(l.preventDefault(),E()),!1}}))}),e.onUnmounted(()=>{d&&d.destroy()}),(c,l)=>(e.openBlock(),e.createBlock(T,{placement:"bottom",backdrop:!0,keepalive:!1,visible:s.value,onDismiss:_},{default:e.withCtx(()=>[e.createElementVNode("div",{class:e.normalizeClass(["t-action",{pop:p.value}]),ref_key:"container",ref:i},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.actions,y=>(e.openBlock(),e.createElementBlock("div",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(y,u=>(e.openBlock(),e.createBlock(z,{color:u.color,size:u.size,variant:u.variant,onClick:b=>f(u),block:""},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(u.text),1)]),_:2},1032,["color","size","variant","onClick"]))),256))]))),256))],2)]),_:1},8,["visible"]))}}),[["__scopeId","data-v-73339adc"]]),J=(o={})=>({open(){return new Promise(r=>{let n=document.body.querySelector(".t-app");if(!n)return;const t=document.createElement("div"),s=e.ref();n.appendChild(t);const a=e.createApp({render(){return e.h(K,{...o,ref:s,onDismiss:(i,d)=>{setTimeout(()=>{a.unmount(),t.remove()},300),r(d)}})}});a.mount(t),setTimeout(()=>{s.value?.open?.()},50)})}}),Q=k(e.defineComponent({__name:"t-loading",props:{type:{default:"spinner"}},emits:["dismiss"],setup(o,{expose:r,emit:n}){const t=o,s=e.ref(!1),a=e.ref();let i;return r({open:()=>{s.value=!0},close:()=>{s.value=!1}}),e.watch(()=>a.value,m=>{m&&(i=S.gesture(a.value,{beforeEvent(f){return f.stopPropagation(),C(f.target)||(f.preventDefault(),E()),!1}}))}),e.onUnmounted(()=>{i&&i.destroy()}),(m,f)=>(e.openBlock(),e.createBlock(T,{placement:"center",backdrop:!0,keepalive:!1,visible:s.value},{default:e.withCtx(()=>[e.createElementVNode("div",{class:"t-loading",ref_key:"container",ref:a},[e.renderSlot(m.$slots,"default",{},()=>[e.createVNode(w,{type:t.type},null,8,["type"])],!0)],512)]),_:3},8,["visible"]))}}),[["__scopeId","data-v-d048a41d"]]),Z=(o={})=>{const r=e.ref(),n=document.body.querySelector(".t-app");let t=null,s=null;return{open(){return new Promise(a=>{n&&(s=document.createElement("div"),n.appendChild(s),t=e.createApp({render(){return e.h(Q,{...o,ref:r})}}),t.mount(s),setTimeout(()=>{r.value?.open?.(),a(!0)},50))})},close(){return new Promise(a=>{r.value?.close?.(),setTimeout(()=>{t?.unmount?.(),s?.remove?.(),a(!0)},300)})}}},I=e.ref(1e3),D={getNewIndex(){return I.value+=2,I.value}},B=e.reactive([]),g={screens:B,addScreen:o=>{B.push(o)},removeScreen:o=>{o||B.pop()},removeAllScreen:()=>{B.splice(0,B.length)},hasPrevious:e.computed(()=>B.length>1),currentScreen:e.computed(()=>B[B.length-1]),lastScreen:e.computed(()=>{if(!(B.length<2))return B[B.length-2]})},v=k(e.defineComponent({__name:"t-toast",props:{message:{},space:{default:"0px"},placement:{default:"bottom"},duration:{default:2e3},color:{default:null},variant:{default:"default"}},emits:["dismiss"],setup(o,{expose:r,emit:n}){const t=o,s=n,a=e.ref(!1),i=e.ref(!1),d=e.ref(!1),p=()=>{i.value=!0,d.value=!1,setTimeout(()=>{a.value=!0},10),setTimeout(()=>{m()},t.duration+10)},m=()=>{d.value=!0,setTimeout(()=>{i.value=!1,a.value=!1,s("dismiss")},300)},f=e.computed(()=>{let _;return t.variant=="default"&&(t.color?["warning","info","danger","primary","secondary","success"].includes(t.color)?_={"--border":"none","--color":"var(--t-color-status-"+t.color+"-text)","--background":"rgba(var(--t-color-status-"+t.color+"-rgb), 0.6)"}:_={"--border":"none","--color":"var(--t-color-text)","--background":t.color}:_={"--border":"none","--color":"var(--t-color-text)","--background":"rgba(var(--t-color-surface-rgb), 0.6)"}),t.variant=="text"&&(t.color?["warning","info","danger","primary","secondary","success"].includes(t.color)?_={"--border":"none","--color":"var(--t-color-status-"+t.color+")","--background":"transparent"}:_={"--border":"none","--color":t.color,"--background":"transparent"}:_={"--border":"none","--color":"var(--t-color-text)","--background":"transparent"}),t.variant=="outline"&&(t.color?["warning","info","danger","primary","secondary","success"].includes(t.color)?_={"--border":"0.55px solid var(--t-color-status-"+t.color+")","--color":"var(--t-color-status-"+t.color+")","--background":"transparent"}:_={"--border":"0.55px solid "+t.color,"--color":t.color,"--background":"transparent"}:_={"--border":"0.55px solid var(--t-color-text)","--color":"var(--t-color-text)","--background":"transparent"}),_});return r({open:p}),(_,c)=>i.value?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["t-toast",{[t.placement]:!0,open:a.value,closing:d.value}]),style:e.normalizeStyle({"--space":t.space,...f.value})},e.toDisplayString(t.message),7)):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-61960e03"]]),ee=(o={})=>({open(){let r=document.body.querySelector(".t-app");if(!r)return;const n=document.createElement("div"),t=e.ref();r.appendChild(n);const s=e.createApp({render(){return e.h(v,{...o,ref:t,onDismiss:()=>{setTimeout(()=>{s.unmount(),n.remove()},300)}})}});s.mount(n),setTimeout(()=>{t.value?.open?.()},50)}}),te=e.ref(0);function P(){return{height:te}}const oe=k(e.defineComponent({__name:"t-cable",props:{keyboard:{type:Boolean,default:!0},placement:{default:"bottom"}},setup(o){const r=o,{height:n}=P();return(t,s)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["t-cable",{keyboard:r.keyboard&&e.unref(n)>0,[r.placement]:!0}]),style:e.normalizeStyle({"--t-keyboard-height":e.unref(n)+"px","--t-keyboard-transition":e.unref(n)>0?"0.3s":"0.1s"})},[e.renderSlot(t.$slots,"default",{},void 0,!0)],6))}}),[["__scopeId","data-v-ecb72421"]]),ne=e.defineComponent({__name:"t-card",props:{color:{default:null}},setup(o){const r=o,n=e.computed(()=>{let t;return r.color?["warning","info","danger","primary","secondary","success"].includes(r.color)?t={"--background":"var(--t-color-status-"+r.color+")"}:t={"--background":r.color}:t={"--background":"var(--t-color-surface)"},t});return(t,s)=>(e.openBlock(),e.createElementBlock("div",{class:"t-card",style:e.normalizeStyle(n.value)},[e.renderSlot(t.$slots,"default")],4))}}),re={},se={class:"t-content"};function ae(o,r){return e.openBlock(),e.createElementBlock("div",se,[e.renderSlot(o.$slots,"default",{},void 0,!0)])}const A=k(re,[["render",ae],["__scopeId","data-v-9a833657"]]),R=80,le=k(e.defineComponent({__name:"t-refresher",emits:["refresh"],setup(o,{emit:r}){const n=r,t=e.ref(0),s=e.ref(!1),a=e.ref();let i,d=!1;const p=()=>{s.value=!1,t.value=0,i&&i.cancel(),setTimeout(()=>{d=!1},2e3)},m=()=>{d=!0,s.value=!0,t.value=R,n("refresh",p)};return e.watch(()=>a.value,()=>{i&&i.destroy();let f=a.value.closest(".t-content");f&&(i=S.gesture(f,{options:{minDist:60},move({dy:_,e:c}){s.value||d||_<0||(_>5&&f.scrollTop==0&&(c.preventDefault(),f.classList.add("scroll-hidden")),_>=120?m():_>10&&(t.value=_))},up({dy:_,e:c}){f.classList.remove("scroll-hidden"),!(s.value||d)&&(_>R?m():t.value=0)},cancel(){f.classList.remove("scroll-hidden"),!(s.value||d)&&(s.value=!1,t.value=0)}},{passive:!1}))}),e.onUnmounted(()=>{i&&i.destroy()}),(f,_)=>e.withDirectives((e.openBlock(),e.createElementBlock("div",{class:"t-refresher",ref_key:"container",ref:a,style:e.normalizeStyle({height:`${t.value}px`})},[e.createElementVNode("img",{class:e.normalizeClass({spiner:s.value}),src:"https://static.toikit.com/toikit/home_2.png?v=3",alt:"Loading...",style:{width:"22px",height:"22px"}},null,2)],4)),[[e.vShow,t.value>0]])}}),[["__scopeId","data-v-ac2b2370"]]),ce={},ie={class:"t-screen"};function de(o,r){return e.openBlock(),e.createElementBlock("div",ie,[e.renderSlot(o.$slots,"default",{},void 0,!0)])}const L=k(ce,[["render",de],["__scopeId","data-v-c2a3436c"]]),pe=k(e.defineComponent({__name:"t-swipe-screen",emits:["change"],setup(o,{emit:r}){let n={};const t=x.useRouter(),s=x.useRoute(),a=t.getRoutes(),i=e.ref(!1),d=r;for(let l of a)n[l.name]=l.components;const p=l=>{l&&g.addScreen({name:l,target:null,component:e.markRaw(n[l]||null)})},m=(l,y)=>{!y||g.screens[l].target||(g.screens[l].target=y.$el,l>0&&(i.value=!0,y.$el.style.transform="translateX(100%)",y.$el.transitionOrigin="center",document.documentElement.style.setProperty("--t-screen-backdrop-duration","0s"),document.documentElement.style.setProperty("--t-swipe-backdrop-opacity","0"),setTimeout(()=>{y.$el.style.transition="transform 0.35s ease",y.$el.style.transform="translateX(0px)",document.documentElement.style.setProperty("--t-screen-backdrop-duration","0.35s"),document.documentElement.style.setProperty("--t-swipe-backdrop-opacity","0.5"),g.screens.length>1&&(g.lastScreen.value.target.style.transitionOrigin="left center",g.lastScreen.value.target.style.transition="transform 0.35s ease",g.lastScreen.value.target.style.transform="translateX(-30vw) scale(0.5) perspective(100%) rotateY(30deg)"),setTimeout(()=>{d("change"),i.value=!1},400)},100)))},f=()=>{g.currentScreen.value.target.style.transition="transform 0.35s ease",g.currentScreen.value.target.style.transform="translateX(100%) scale(1)",g.lastScreen.value.target.style.transition="transform 0.35s ease",g.lastScreen.value.target.style.transform="translateX(0px) scale(1) perspective(100%) rotateY(0deg)",document.documentElement.style.setProperty("--t-screen-backdrop-duration","0.35s"),document.documentElement.style.setProperty("--t-swipe-backdrop-opacity","0"),i.value=!0,setTimeout(()=>{g.removeScreen(),d("change"),i.value=!1},400)};p(s.name),e.watch(()=>s.name,(l,y)=>{l!=g.currentScreen.value.name&&(g.lastScreen.value?.name==l?f():p(l))});const _=()=>{i.value=!0;const l=g.currentScreen.value.target,y=g.lastScreen.value.target;l.style.transition="transform 0.35s ease",l.style.transform="translateX(0px)",y.style.transition="transform 0.35s ease",y.style.transform="translateX(-30vw) scale(0.5) perspective(100%) rotateY(30deg)",document.documentElement.style.setProperty("--t-screen-backdrop-duration","0.35s"),document.documentElement.style.setProperty("--t-swipe-backdrop-opacity","0.5"),setTimeout(()=>{i.value=!1},400)};let c;return e.onMounted(()=>{c=S.gesture(document,{pointerId:null,beforeEvent(l){return i.value||g.screens.length<2?!1:(l.type=="pointerdown"&&!this.pointerId&&(this.pointerId=l.pointerId),this.pointerId==l.pointerId)},afterEvent(l){(l.type=="pointerup"||l.type=="pointercancel")&&(this.pointerId=null)},fast({d:l}){l=="right"&&t.back()},move({dx:l}){const y=window.innerWidth,u=l/y*100,b=g.currentScreen.value.target,$=g.lastScreen?.value?.target;if(l>15&&l<=y){b.style.transition="transform 0s ease",b.style.transform=`translateX(${l}px)`,$.style.transition="transform 0s ease",document.documentElement.style.setProperty("--t-screen-backdrop-duration","0s"),$.style.transform=`translateX(calc(-30vw + (30vw / 100 * ${u}))) scale(${.5+.5/100*u}) perspective(100%) rotateY(${30-30/100*u}deg)`,document.documentElement.style.setProperty("--t-swipe-backdrop-opacity",`${.5-.5/100*u}`);return}},up({dx:l}){const y=window.innerWidth;l/y*100>=50?t.back():_()},cancel(){_()}})}),e.onUnmounted(()=>{c&&c.destroy(),g.removeAllScreen()}),(l,y)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(g).screens,(u,b)=>(e.openBlock(),e.createBlock(L,{ref_for:!0,ref:$=>m(b,$),style:e.normalizeStyle({zIndex:b+(b==e.unref(g).screens.length-1?2:1)}),key:b},{default:e.withCtx(()=>[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(u.component.default)))]),_:2},1032,["style"]))),128)),e.createElementVNode("div",{class:"t-swipe-backdrop",style:e.normalizeStyle({zIndex:e.unref(g).screens.length})},null,4)],64))}}),[["__scopeId","data-v-e385a37a"]]),me=k(e.defineComponent({__name:"t-toolbar",props:{placement:{default:"bottom"},size:{default:"50px"}},setup(o){const r=o;return(n,t)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["t-toolbar",{[r.placement]:!0}]),style:e.normalizeStyle({"--t-size-toolbar":r.size})},[e.createElementVNode("div",null,[e.renderSlot(n.$slots,"default",{},void 0,!0)])],6))}}),[["__scopeId","data-v-3b3a7896"]]),fe=k(e.defineComponent({__name:"t-back-button",props:{to:{}},setup(o){const r=x.useRouter(),n=o,t=()=>{g.hasPrevious.value?r?.back?.():n.to&&r?.push?.(n.to)};return(s,a)=>s.to||e.unref(g).hasPrevious?(e.openBlock(),e.createElementBlock("button",{key:0,class:"t-back-button",onClick:t},[e.renderSlot(s.$slots,"default",{},()=>[a[0]||(a[0]=e.createElementVNode("i",{class:"ri-arrow-left-s-line"},null,-1))],!0)])):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-ed626a3d"]]),V=k(e.defineComponent({__name:"t-text",props:{color:{default:"var(--t-color-text)"},size:{default:"standard"}},setup(o){const r=o,n=e.computed(()=>{let t,s=r.color;return r.size=="standard"?t="var(--t-fs-10)":r.size=="small"?t="var(--t-fs-08)":r.size=="large"?t="var(--t-fs-12)":t=r.size,["warning","info","danger","primary","secondary","success"].includes(r.color)&&(s=`var(--t-color-status-${r.color})`),{"--color":s,"--font-size":t}});return(t,s)=>(e.openBlock(),e.createElementBlock("span",{class:"t-text",style:e.normalizeStyle(n.value)},[e.renderSlot(t.$slots,"default",{},void 0,!0)],4))}}),[["__scopeId","data-v-f0f94f05"]]),q=k(e.defineComponent({__name:"t-pull-signal",props:{placement:{default:"bottom"}},setup(o){return(r,n)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["t-pull-bar",{[r.placement]:!0}])},null,2))}}),[["__scopeId","data-v-daa38c85"]]),ue=k(e.defineComponent({__name:"t-sheet",props:{background:{default:"var(--t-color-surface)"},visible:{type:Boolean,default:!1},gesture:{type:Boolean,default:!0},fullscreen:{type:Boolean,default:!1},placement:{default:"bottom"},keepalive:{type:Boolean,default:!0},backdrop:{type:Boolean,default:!0},rounded:{type:Boolean,default:!0},radius:{type:Boolean,default:!0},closeButton:{type:Boolean,default:!0}},emits:["dismiss"],setup(o,{emit:r}){const n=o,t=r,s=e.ref(),a=e.ref(),i=e.ref(!1);let d=null;const p=e.computed(()=>{if(n.placement=="bottom")return"down";if(n.placement=="top")return"up";if(n.placement=="left")return"left";if(n.placement=="right")return"right"}),m=_=>{t("dismiss",_)},f=()=>{i.value=!0,setTimeout(()=>{i.value=!1},300)};return e.watch(()=>s.value,_=>{_&&(d=S.gesture(s.value,{options:{minDist:30},pointerId:null,beforeEvent(c){let l=!1,y=!1;return i.value||!n.gesture||n.placement=="center"?l=!0:this.pointerId?(l=!0,y=this.pointerId==c.pointerId):c.type=="pointerdown"&&(this.pointerId=c.pointerId,l=!0,y=!0),l&&(c.stopPropagation(),C(c.target)||(c.preventDefault(),E())),y},afterEvent(c){(c.type=="pointerup"||c.type=="pointercancel")&&(this.pointerId=null)},fast({d:c}){f(),c==p.value?t("dismiss","gesture"):a.value.open()},move({dy:c,dx:l,d:y}){if(y!=p.value)return;let u=0;n.placement=="bottom"||n.placement=="top"?u=c:u=l,a.value.render({contentTransform:u+"px",transition:"0s"})},up({dy:c,dx:l,d:y}){if(f(),y!=p.value){a.value.open();return}let u,b,$;n.placement=="bottom"||n.placement=="top"?(u=s.value.offsetHeight,$=c):(u=s.value.offsetWidth,$=l),b=$/u*100,b>50?t("dismiss","gesture"):a.value.open()},cancel(){f(),a.value.open()}}))}),e.onUnmounted(()=>{d&&d.destroy()}),(_,c)=>(e.openBlock(),e.createBlock(T,{ref_key:"present",ref:a,placement:n.placement,backdrop:_.backdrop,visible:n.visible,keepalive:n.keepalive,onDismiss:m},{default:e.withCtx(()=>[n.gesture&&n.placement!="center"?(e.openBlock(),e.createBlock(q,{key:0,placement:n.placement},null,8,["placement"])):e.createCommentVNode("",!0),n.closeButton&&n.placement=="center"?(e.openBlock(),e.createElementBlock("button",{key:1,class:"t-sheet-close",onClick:c[0]||(c[0]=l=>m("close-button"))},[e.renderSlot(_.$slots,"close-icon",{},()=>[c[1]||(c[1]=e.createElementVNode("i",{class:"ri-close-large-line"},null,-1))],!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["t-sheet",{fullscreen:n.fullscreen,[n.placement]:!0,rounded:_.rounded,radius:n.radius}]),style:e.normalizeStyle({"--background":n.background}),ref_key:"sheet",ref:s},[e.renderSlot(_.$slots,"default",{},void 0,!0)],6)]),_:3},8,["placement","backdrop","visible","keepalive"]))}}),[["__scopeId","data-v-5e880505"]]),_e={class:"t-input-label"},ye={class:"t-input-content"},ke=["type","placeholder","value"],ge=k(e.defineComponent({__name:"t-input",props:{size:{default:"standard"},rounded:{type:Boolean,default:!1},label:{default:""},placeholder:{default:""},type:{default:"text"},help:{},error:{},modelValue:{default:""},variant:{default:"default"}},emits:["update:modelValue"],setup(o,{emit:r}){const n=o,t=r,s=a=>{t("update:modelValue",a.target.value)};return(a,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["t-input",{rounded:n.rounded,["size-"+n.size]:!0,["variant-"+n.variant]:!0}])},[e.createElementVNode("label",null,[e.createElementVNode("span",_e,e.toDisplayString(a.label),1),e.createElementVNode("div",ye,[e.renderSlot(a.$slots,"start",{},void 0,!0),e.createElementVNode("input",{type:a.type,placeholder:a.placeholder,value:a.modelValue,onInput:s},null,40,ke),e.renderSlot(a.$slots,"end",{},void 0,!0)])]),n.error?(e.openBlock(),e.createBlock(V,{key:0,color:"danger"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.error),1)]),_:1})):n.help?(e.openBlock(),e.createBlock(V,{key:1,color:"secondary"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.help),1)]),_:1})):e.createCommentVNode("",!0)],2))}}),[["__scopeId","data-v-1a9425cf"]]),he={};function be(o,r){return e.openBlock(),e.createElementBlock("textarea")}const Be=k(he,[["render",be]]),$e={};function Se(o,r){return e.openBlock(),e.createElementBlock("div")}const Ce=k($e,[["render",Se]]),Ee={},Te={class:"t-grid"};function we(o,r){return e.openBlock(),e.createElementBlock("div",Te)}const ze=k(Ee,[["render",we]]),xe={},Ve={class:"t-grid-item"};function Ne(o,r){return e.openBlock(),e.createElementBlock("div",Ve)}const Ie=k(xe,[["render",Ne]]),De=k(e.defineComponent({__name:"t-divider",props:{direction:{default:"horizontal"}},setup(o){const r=o;return(n,t)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["t-divider",{[r.direction]:!0}])},null,2))}}),[["__scopeId","data-v-47ee8991"]]),ve=k(e.defineComponent({__name:"t-toggle-password",props:{color:{default:"warning"}},emits:["change"],setup(o,{emit:r}){const n=o,t=r,s=e.ref(!1),a=e.ref(),i=e.computed(()=>{let m=n.color;return["warning","info","danger","primary","secondary","success"].includes(n.color)&&(m=`var(--t-color-status-${n.color})`),{"--color":m}}),d=()=>a.value?.parentElement?.querySelector?.("input");e.onMounted(()=>{let m=d();m&&(s.value=m.type!="password",t("change",s.value))});const p=()=>{let m=d();m&&(s.value=!s.value,s.value?m.type="text":m.type="password",t("change",s.value))};return(m,f)=>(e.openBlock(),e.createElementBlock("button",{ref_key:"toggle",ref:a,class:"t-toggle-password",style:e.normalizeStyle(i.value),onClick:p},[s.value?e.renderSlot(m.$slots,"on",{key:0},()=>[f[0]||(f[0]=e.createElementVNode("i",{class:"ri-eye-line"},null,-1))],!0):e.createCommentVNode("",!0),s.value?e.createCommentVNode("",!0):e.renderSlot(m.$slots,"off",{key:1},()=>[f[1]||(f[1]=e.createElementVNode("i",{class:"ri-eye-off-line"},null,-1))],!0)],4))}}),[["__scopeId","data-v-3268e9e3"]]),Pe=k(e.defineComponent({__name:"t-avatar",props:{square:{type:Boolean,default:!1},size:{default:"standard"}},setup(o){const r=o,n=e.computed(()=>r.size=="small"?"24px":r.size=="standard"?"40px":r.size=="large"?"60px":r.size);return(t,s)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["t-avatar",{square:t.square}]),style:e.normalizeStyle({"--size":n.value})},[e.renderSlot(t.$slots,"default",{},void 0,!0)],6))}}),[["__scopeId","data-v-24384c2f"]]),Ae={class:"t-collapse-title"},Re={key:0,class:"icon"},Le={key:1,class:"icon"},qe={class:"t-collapse-content"},Oe=e.defineComponent({__name:"t-collapse",props:{title:{}},emits:["change"],setup(o,{emit:r}){const n=o,t=r,s=e.ref(!1),a=e.ref(""),i=e.ref(),d=()=>{s.value=!s.value,a.value=`calc(${i.value.offsetHeight}px + 2rem)`,t("change",s.value)};return t("change",s.value),(p,m)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["t-collapse",{open:s.value}]),style:e.normalizeStyle({"--height":a.value})},[e.createElementVNode("div",{class:"t-collapse-header",onClick:d},[e.renderSlot(p.$slots,"icon"),e.createElementVNode("div",Ae,[e.renderSlot(p.$slots,"title",{},()=>[e.createTextVNode(e.toDisplayString(n.title),1)])]),e.renderSlot(p.$slots,"toggle",{},()=>[s.value?(e.openBlock(),e.createElementBlock("div",Re,[...m[0]||(m[0]=[e.createElementVNode("i",{class:"ri-arrow-up-s-line"},null,-1)])])):(e.openBlock(),e.createElementBlock("div",Le,[...m[1]||(m[1]=[e.createElementVNode("i",{class:"ri-arrow-down-s-line"},null,-1)])]))])]),e.createElementVNode("div",qe,[e.createElementVNode("div",{ref_key:"content",ref:i},[e.renderSlot(p.$slots,"content",{},()=>[e.renderSlot(p.$slots,"default")])],512)])],6))}}),Xe=k(e.defineComponent({__name:"t-switch",props:{modelValue:{type:Boolean},color:{default:"primary"}},emits:["update:modelValue"],setup(o,{emit:r}){const n=o,t=r,s=()=>{t("update:modelValue",!n.modelValue)},a=e.computed(()=>{let i={"--background":n.color,"--color":"#ffffff"};return["warning","info","danger","primary","secondary","success"].includes(n.color)&&(i={"--background":`var(--t-color-status-${n.color})`,"--color":`var(--t-color-status-${n.color}-text)`}),i});return(i,d)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["t-switch",{on:n.modelValue}]),style:e.normalizeStyle(a.value),onClick:s},[...d[0]||(d[0]=[e.createElementVNode("div",{class:"t-switch-icon"},null,-1)])],6))}}),[["__scopeId","data-v-3616970e"]]),Fe=k(e.defineComponent({__name:"t-tab",props:{value:{}},setup(o){const r=o,n=e.inject("tabsState"),t=e.computed(()=>n.active.value===r.value),s=()=>{n.setActive(r.value)};return(a,i)=>(e.openBlock(),e.createElementBlock("li",{class:e.normalizeClass(["t-tab",{active:t.value}])},[e.createVNode(z,{variant:"text",onClick:s,size:e.unref(n).size,color:t.value&&e.unref(n).variant=="text"?e.unref(n).color:void 0},{default:e.withCtx(()=>[e.renderSlot(a.$slots,"default",{},void 0,!0)]),_:3},8,["size","color"])],2))}}),[["__scopeId","data-v-36c12a50"]]),Ue=k(e.defineComponent({__name:"t-tabs",props:{placement:{default:"top-start"},variant:{default:"border-under"},color:{default:"primary"},modelValue:{},border:{default:30},size:{default:"standard"}},emits:["update:modelValue"],setup(o,{emit:r}){const n=o,t=r,s=e.ref("0px"),a=e.ref(),i=e.computed(()=>{let p=n.color;return["warning","info","danger","primary","secondary","success"].includes(p)&&(p=`var(--t-color-status-${p})`),p}),d=()=>{setTimeout(()=>{if(n.placement.startsWith("top-")||n.placement.startsWith("bottom-")){let p=a.value.querySelector(".active");if(p){let m=p.getBoundingClientRect().left-a.value.getBoundingClientRect().left+a.value.scrollLeft,f=p.offsetWidth/2;s.value=m+f-n.border/2+"px"}}else if(n.placement.startsWith("left-")||n.placement.startsWith("right-")){let p=a.value.querySelector(".active");if(p){let m=p.getBoundingClientRect().top-a.value.getBoundingClientRect().top+a.value.scrollTop,f=p.offsetHeight/2;s.value=m+f-n.border/2+"px"}}},50)};return e.provide("tabsState",{active:e.computed(()=>n.modelValue),color:i.value,size:n.size,variant:n.variant,setActive:p=>{t("update:modelValue",p),d()}}),e.onMounted(()=>{d()}),(p,m)=>(e.openBlock(),e.createElementBlock("ul",{ref_key:"container",ref:a,class:e.normalizeClass(["t-tabs",{[p.placement]:!0,[p.variant]:!0}]),style:e.normalizeStyle({"--color":i.value,"--transform":s.value,"--border":p.border+"px"})},[e.renderSlot(p.$slots,"default",{},void 0,!0)],6))}}),[["__scopeId","data-v-65a2c74c"]]),We=k(e.defineComponent({__name:"t-loading-app",setup(o){return(r,n)=>(e.openBlock(),e.createBlock(A,null,{default:e.withCtx(()=>[e.createVNode(w,{type:"spinner"})]),_:1}))}}),[["__scopeId","data-v-1436aa9f"]]),je=()=>({install:o=>{O(),o.component("t-app",W),o.component("t-screen",L),o.component("t-swipe-screen",pe),o.component("t-cable",oe),o.component("t-toolbar",me),o.component("t-content",A),o.component("t-card",ne),o.component("t-refresher",le),o.component("t-button",z),o.component("t-back-button",fe),o.component("t-present",T),o.component("t-text",V),o.component("t-sheet",ue),o.component("t-pull-signal",q),o.component("t-input",ge),o.component("t-textarea",Be),o.component("t-rich-text",Ce),o.component("t-grid",ze),o.component("t-grid-item",Ie),o.component("t-divider",De),o.component("t-toggle-password",ve),o.component("t-loading-icon",w),o.component("t-alert",N),o.component("t-avatar",Pe),o.component("t-collapse",Oe),o.component("t-toast",v),o.component("t-switch",Xe),o.component("t-tab",Fe),o.component("t-tabs",Ue),o.component("t-loading-app",We)}});h.blurCurrentActive=E,h.createAction=J,h.createAlert=H,h.createLoading=Z,h.createToast=ee,h.createToife=je,h.isFormElement=C,h.presentController=D,h.screenController=g,h.useKeyboard=P,Object.defineProperty(h,Symbol.toStringTag,{value:"Module"})}));
|
|
1
|
+
(function(h,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue"),require("@toife/gesture"),require("vue-router")):typeof define=="function"&&define.amd?define(["exports","vue","@toife/gesture","vue-router"],e):(h=typeof globalThis<"u"?globalThis:h||self,e(h.ToifeVue={},h.Vue,h.ToifeGesture,h.VueRouter))})(this,(function(h,e,S,x){"use strict";const C=o=>o&&(o.tagName=="INPUT"||o.tagName=="TEXTAREA"||o.isContentEditable),E=()=>{const o=document.activeElement;o&&(o.tagName==="INPUT"||o.tagName==="TEXTAREA"||o.isContentEditable)&&o.blur()},O=()=>{document.addEventListener("contextmenu",o=>o.preventDefault()),document.addEventListener("selectstart",o=>o.preventDefault()),document.addEventListener("pointerup",o=>{!C(o.target)&&E()})},k=(o,r)=>{const n=o.__vccOpts||o;for(const[t,s]of r)n[t]=s;return n},X={},F={class:"t-app"};function U(o,r){return e.openBlock(),e.createElementBlock("div",F,[e.renderSlot(o.$slots,"default")])}const W=k(X,[["render",U]]),T=k(e.defineComponent({__name:"t-present",props:{keepalive:{type:Boolean,default:!0},visible:{type:Boolean,default:!1},backdrop:{type:Boolean,default:!0},placement:{default:"bottom"},fullscreen:{type:Boolean,default:!1}},emits:["dismiss"],setup(o,{expose:r,emit:n}){const t=e.ref(0),s=e.ref(!1),a=e.ref(),i=e.ref(),d=o,p=n,m=e.computed(()=>s.value||d.keepalive),f=e.reactive({"--t-present-backdrop-opacity":"0.4","--t-present-transition":"0.2s","--t-present-content-transform":"0px","--t-present-content-opacity":"1"}),_=u=>{d.backdrop?u?.backdropOpacity&&(f["--t-present-backdrop-opacity"]=u.backdropOpacity):f["--t-present-backdrop-opacity"]="0",u?.transition&&(f["--t-present-transition"]=u.transition,f["--t-present-transition"]=u.transition),u?.contentTransform&&(f["--t-present-content-transform"]=u.contentTransform),u?.contentOpacity&&(f["--t-present-content-opacity"]=u.contentOpacity)},c=()=>{_({contentTransform:"0px",transition:"0.2s",backdropOpacity:"0.4",contentOpacity:"1"})},l=()=>{let u="0px",b="1";d.placement=="bottom"||d.placement=="right"?u="100%":d.placement=="top"||d.placement=="left"?u="-100%":d.placement=="center"&&(u="0px",b="0"),_({contentTransform:u,transition:"0.2s",contentOpacity:b,backdropOpacity:"0"})};e.watch(()=>d.visible,()=>{d.visible?(s.value=!0,t.value=D.getNewIndex(),setTimeout(()=>{c()},50)):(l(),setTimeout(()=>{s.value=!1},200))}),r({render:_,open:c,close:l});const y=u=>{u.preventDefault(),p("dismiss","backdrop")};return l(),(u,b)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[m.value?e.withDirectives((e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["t-present",{[u.placement]:!0,fullscreen:d.fullscreen}]),ref_key:"present",ref:i,style:e.normalizeStyle({...f,zIndex:t.value})},[e.renderSlot(u.$slots,"default",{},void 0,!0)],6)),[[e.vShow,s.value]]):e.createCommentVNode("",!0),m.value?e.withDirectives((e.openBlock(),e.createElementBlock("div",{key:1,class:"t-present-backdrop",onClick:y,ref_key:"backdrop",ref:a,style:e.normalizeStyle({...f,zIndex:t.value-1})},null,4)),[[e.vShow,s.value]]):e.createCommentVNode("",!0)],64))}}),[["__scopeId","data-v-0e153af5"]]),w=k(e.defineComponent({__name:"t-loading-icon",props:{size:{type:String,default:"24px"},color:{type:String,default:"var(--t-color-text)"}},setup(o){return(r,n)=>(e.openBlock(),e.createElementBlock("span",{class:"t-loading-icon",style:e.normalizeStyle({width:o.size,height:o.size,borderTopColor:o.color}),role:"status","aria-label":"Loading..."},null,4))}}),[["__scopeId","data-v-7c463303"]]),j={key:0,class:"loader"},z=k(e.defineComponent({__name:"t-button",props:{color:{default:null},size:{default:"standard"},rounded:{type:Boolean,default:!1},block:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},loadingType:{default:"spinner"},variant:{default:"default"},activeBackground:{type:Boolean,default:!1}},setup(o){const r=o,n=e.computed(()=>{let t;return r.variant=="default"&&(r.color?["warning","info","danger","primary","secondary","success"].includes(r.color)?t={"--border":"none","--color":"var(--t-color-status-"+r.color+"-text)","--background":"var(--t-color-status-"+r.color+")"}:t={"--border":"none","--color":"var(--t-color-text)","--background":r.color}:t={"--border":"none","--color":"var(--t-color-text)","--background":"var(--t-color-surface)"}),r.variant=="text"&&(r.color?["warning","info","danger","primary","secondary","success"].includes(r.color)?t={"--border":"none","--color":"var(--t-color-status-"+r.color+")","--background":"transparent"}:t={"--border":"none","--color":r.color,"--background":"transparent"}:t={"--border":"none","--color":"var(--t-color-text)","--background":"transparent"}),r.variant=="outline"&&(r.color?["warning","info","danger","primary","secondary","success"].includes(r.color)?t={"--border":"0.55px solid var(--t-color-status-"+r.color+")","--color":"var(--t-color-status-"+r.color+")","--background":"transparent"}:t={"--border":"0.55px solid "+r.color,"--color":r.color,"--background":"transparent"}:t={"--border":"0.55px solid var(--t-color-text)","--color":"var(--t-color-text)","--background":"transparent"}),t});return(t,s)=>(e.openBlock(),e.createElementBlock("button",{class:e.normalizeClass(["t-button",{"active-background":r.activeBackground,rounded:r.rounded,block:r.block,["size-"+r.size]:!0}]),style:e.normalizeStyle(n.value)},[e.withDirectives(e.createElementVNode("span",null,[e.renderSlot(t.$slots,"default",{},void 0,!0)],512),[[e.vShow,!r.loading]]),r.loading?(e.openBlock(),e.createElementBlock("span",j,[e.createVNode(w,{color:"var(--color)",type:r.loadingType},null,8,["type"])])):e.createCommentVNode("",!0)],6))}}),[["__scopeId","data-v-74d8380d"]]),M={key:0,class:"t-alert-header"},Y={class:"t-alert-content"},G={class:"t-alert-footer"},N=k(e.defineComponent({__name:"t-alert",props:{title:{},message:{},actions:{},dismiss:{}},emits:["dismiss"],setup(o,{expose:r,emit:n}){const t=o,s=e.ref(!1),a=n,i=e.ref();let d;const p=e.ref(!1),m=()=>{s.value=!0},f=c=>{s.value=!1,c.handler&&c.handler(),a("dismiss","choose",c?.data)},_=c=>{t.dismiss&&t.dismiss.includes(c)?(s.value=!1,a("dismiss",c)):c=="backdrop"&&(p.value=!0,setTimeout(()=>{p.value=!1},300))};return r({open:m}),e.watch(()=>i.value,c=>{c&&(d=S.gesture(i.value,{beforeEvent(l){return l.stopPropagation(),C(l.target)||(l.preventDefault(),E()),!1}}))}),e.onUnmounted(()=>{d&&d.destroy()}),(c,l)=>(e.openBlock(),e.createBlock(T,{placement:"center",backdrop:!0,keepalive:!1,visible:s.value,onDismiss:_},{default:e.withCtx(()=>[e.createElementVNode("div",{class:e.normalizeClass(["t-alert",{pop:p.value}]),ref_key:"container",ref:i},[e.renderSlot(c.$slots,"header",{},()=>[t.title?(e.openBlock(),e.createElementBlock("div",M,e.toDisplayString(t.title),1)):e.createCommentVNode("",!0)],!0),e.renderSlot(c.$slots,"content",{},()=>[e.createElementVNode("div",Y,e.toDisplayString(t.message),1)],!0),e.renderSlot(c.$slots,"footer",{},()=>[e.createElementVNode("div",G,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.actions,y=>(e.openBlock(),e.createBlock(z,{color:y.color,variant:y.variant,onClick:u=>f(y)},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(y.text),1)]),_:2},1032,["color","variant","onClick"]))),256))])],!0)],2)]),_:3},8,["visible"]))}}),[["__scopeId","data-v-5cf415ec"]]),H=(o={})=>({open(){return new Promise(r=>{let n=document.body.querySelector(".t-app");if(!n)return;const t=document.createElement("div"),s=e.ref();n.appendChild(t);const a=e.createApp({render(){return e.h(N,{...o,ref:s,onDismiss:(i,d)=>{setTimeout(()=>{a.unmount(),t.remove()},300),r(d)}})}});a.mount(t),setTimeout(()=>{s.value?.open?.()},50)})}}),K=k(e.defineComponent({__name:"t-action",props:{actions:{},dismiss:{}},emits:["dismiss"],setup(o,{expose:r,emit:n}){const t=o,s=e.ref(!1),a=n,i=e.ref();let d;const p=e.ref(!1),m=()=>{s.value=!0},f=c=>{s.value=!1,c.handler&&c.handler(),a("dismiss","choose",c?.data)},_=c=>{t.dismiss&&t.dismiss.includes(c)?(s.value=!1,a("dismiss",c)):c=="backdrop"&&(p.value=!0,setTimeout(()=>{p.value=!1},300))};return r({open:m}),e.watch(()=>i.value,c=>{c&&(d=S.gesture(i.value,{beforeEvent(l){return l.stopPropagation(),C(l.target)||(l.preventDefault(),E()),!1}}))}),e.onUnmounted(()=>{d&&d.destroy()}),(c,l)=>(e.openBlock(),e.createBlock(T,{placement:"bottom",backdrop:!0,keepalive:!1,visible:s.value,onDismiss:_},{default:e.withCtx(()=>[e.createElementVNode("div",{class:e.normalizeClass(["t-action",{pop:p.value}]),ref_key:"container",ref:i},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.actions,y=>(e.openBlock(),e.createElementBlock("div",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(y,u=>(e.openBlock(),e.createBlock(z,{color:u.color,size:u.size,variant:u.variant,onClick:b=>f(u),block:""},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(u.text),1)]),_:2},1032,["color","size","variant","onClick"]))),256))]))),256))],2)]),_:1},8,["visible"]))}}),[["__scopeId","data-v-5c29cf79"]]),J=(o={})=>({open(){return new Promise(r=>{let n=document.body.querySelector(".t-app");if(!n)return;const t=document.createElement("div"),s=e.ref();n.appendChild(t);const a=e.createApp({render(){return e.h(K,{...o,ref:s,onDismiss:(i,d)=>{setTimeout(()=>{a.unmount(),t.remove()},300),r(d)}})}});a.mount(t),setTimeout(()=>{s.value?.open?.()},50)})}}),Q=k(e.defineComponent({__name:"t-loading",props:{type:{default:"spinner"}},emits:["dismiss"],setup(o,{expose:r,emit:n}){const t=o,s=e.ref(!1),a=e.ref();let i;return r({open:()=>{s.value=!0},close:()=>{s.value=!1}}),e.watch(()=>a.value,m=>{m&&(i=S.gesture(a.value,{beforeEvent(f){return f.stopPropagation(),C(f.target)||(f.preventDefault(),E()),!1}}))}),e.onUnmounted(()=>{i&&i.destroy()}),(m,f)=>(e.openBlock(),e.createBlock(T,{placement:"center",backdrop:!0,keepalive:!1,visible:s.value},{default:e.withCtx(()=>[e.createElementVNode("div",{class:"t-loading",ref_key:"container",ref:a},[e.renderSlot(m.$slots,"default",{},()=>[e.createVNode(w,{type:t.type},null,8,["type"])],!0)],512)]),_:3},8,["visible"]))}}),[["__scopeId","data-v-d048a41d"]]),Z=(o={})=>{const r=e.ref(),n=document.body.querySelector(".t-app");let t=null,s=null;return{open(){return new Promise(a=>{n&&(s=document.createElement("div"),n.appendChild(s),t=e.createApp({render(){return e.h(Q,{...o,ref:r})}}),t.mount(s),setTimeout(()=>{r.value?.open?.(),a(!0)},50))})},close(){return new Promise(a=>{r.value?.close?.(),setTimeout(()=>{t?.unmount?.(),s?.remove?.(),a(!0)},300)})}}},I=e.ref(1e3),D={getNewIndex(){return I.value+=2,I.value}},B=e.reactive([]),g={screens:B,addScreen:o=>{B.push(o)},removeScreen:o=>{o||B.pop()},removeAllScreen:()=>{B.splice(0,B.length)},hasPrevious:e.computed(()=>B.length>1),currentScreen:e.computed(()=>B[B.length-1]),lastScreen:e.computed(()=>{if(!(B.length<2))return B[B.length-2]})},v=k(e.defineComponent({__name:"t-toast",props:{message:{},space:{default:"0px"},placement:{default:"bottom"},duration:{default:2e3},color:{default:null},variant:{default:"default"}},emits:["dismiss"],setup(o,{expose:r,emit:n}){const t=o,s=n,a=e.ref(!1),i=e.ref(!1),d=e.ref(!1),p=()=>{i.value=!0,d.value=!1,setTimeout(()=>{a.value=!0},10),setTimeout(()=>{m()},t.duration+10)},m=()=>{d.value=!0,setTimeout(()=>{i.value=!1,a.value=!1,s("dismiss")},300)},f=e.computed(()=>{let _;return t.variant=="default"&&(t.color?["warning","info","danger","primary","secondary","success"].includes(t.color)?_={"--border":"none","--color":"var(--t-color-status-"+t.color+"-text)","--background":"rgba(var(--t-color-status-"+t.color+"-rgb), 0.6)"}:_={"--border":"none","--color":"var(--t-color-text)","--background":t.color}:_={"--border":"none","--color":"var(--t-color-text)","--background":"rgba(var(--t-color-surface-rgb), 0.6)"}),t.variant=="text"&&(t.color?["warning","info","danger","primary","secondary","success"].includes(t.color)?_={"--border":"none","--color":"var(--t-color-status-"+t.color+")","--background":"transparent"}:_={"--border":"none","--color":t.color,"--background":"transparent"}:_={"--border":"none","--color":"var(--t-color-text)","--background":"transparent"}),t.variant=="outline"&&(t.color?["warning","info","danger","primary","secondary","success"].includes(t.color)?_={"--border":"0.55px solid var(--t-color-status-"+t.color+")","--color":"var(--t-color-status-"+t.color+")","--background":"transparent"}:_={"--border":"0.55px solid "+t.color,"--color":t.color,"--background":"transparent"}:_={"--border":"0.55px solid var(--t-color-text)","--color":"var(--t-color-text)","--background":"transparent"}),_});return r({open:p}),(_,c)=>i.value?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["t-toast",{[t.placement]:!0,open:a.value,closing:d.value}]),style:e.normalizeStyle({"--space":t.space,...f.value})},e.toDisplayString(t.message),7)):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-61960e03"]]),ee=(o={})=>({open(){let r=document.body.querySelector(".t-app");if(!r)return;const n=document.createElement("div"),t=e.ref();r.appendChild(n);const s=e.createApp({render(){return e.h(v,{...o,ref:t,onDismiss:()=>{setTimeout(()=>{s.unmount(),n.remove()},300)}})}});s.mount(n),setTimeout(()=>{t.value?.open?.()},50)}}),te=e.ref(0);function P(){return{height:te}}const oe=k(e.defineComponent({__name:"t-cable",props:{keyboard:{type:Boolean,default:!0},placement:{default:"bottom"}},setup(o){const r=o,{height:n}=P();return(t,s)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["t-cable",{keyboard:r.keyboard&&e.unref(n)>0,[r.placement]:!0}]),style:e.normalizeStyle({"--t-keyboard-height":e.unref(n)+"px","--t-keyboard-transition":e.unref(n)>0?"0.3s":"0.1s"})},[e.renderSlot(t.$slots,"default",{},void 0,!0)],6))}}),[["__scopeId","data-v-ecb72421"]]),ne=e.defineComponent({__name:"t-card",props:{color:{default:null}},setup(o){const r=o,n=e.computed(()=>{let t;return r.color?["warning","info","danger","primary","secondary","success"].includes(r.color)?t={"--background":"var(--t-color-status-"+r.color+")"}:t={"--background":r.color}:t={"--background":"var(--t-color-surface)"},t});return(t,s)=>(e.openBlock(),e.createElementBlock("div",{class:"t-card",style:e.normalizeStyle(n.value)},[e.renderSlot(t.$slots,"default")],4))}}),re={},se={class:"t-content"};function ae(o,r){return e.openBlock(),e.createElementBlock("div",se,[e.renderSlot(o.$slots,"default",{},void 0,!0)])}const A=k(re,[["render",ae],["__scopeId","data-v-9a833657"]]),R=80,le=k(e.defineComponent({__name:"t-refresher",emits:["refresh"],setup(o,{emit:r}){const n=r,t=e.ref(0),s=e.ref(!1),a=e.ref();let i,d=!1;const p=()=>{s.value=!1,t.value=0,i&&i.cancel(),setTimeout(()=>{d=!1},2e3)},m=()=>{d=!0,s.value=!0,t.value=R,n("refresh",p)};return e.watch(()=>a.value,()=>{i&&i.destroy();let f=a.value.closest(".t-content");f&&(i=S.gesture(f,{options:{minDist:60},move({dy:_,e:c}){s.value||d||_<0||(_>5&&f.scrollTop==0&&(c.preventDefault(),f.classList.add("scroll-hidden")),_>=120?m():_>10&&(t.value=_))},up({dy:_,e:c}){f.classList.remove("scroll-hidden"),!(s.value||d)&&(_>R?m():t.value=0)},cancel(){f.classList.remove("scroll-hidden"),!(s.value||d)&&(s.value=!1,t.value=0)}},{passive:!1}))}),e.onUnmounted(()=>{i&&i.destroy()}),(f,_)=>e.withDirectives((e.openBlock(),e.createElementBlock("div",{class:"t-refresher",ref_key:"container",ref:a,style:e.normalizeStyle({height:`${t.value}px`})},[e.createElementVNode("img",{class:e.normalizeClass({spiner:s.value}),src:"https://static.toikit.com/toikit/home_2.png?v=3",alt:"Loading...",style:{width:"22px",height:"22px"}},null,2)],4)),[[e.vShow,t.value>0]])}}),[["__scopeId","data-v-ac2b2370"]]),ce={},ie={class:"t-screen"};function de(o,r){return e.openBlock(),e.createElementBlock("div",ie,[e.renderSlot(o.$slots,"default",{},void 0,!0)])}const L=k(ce,[["render",de],["__scopeId","data-v-c2a3436c"]]),pe=k(e.defineComponent({__name:"t-swipe-screen",emits:["change"],setup(o,{emit:r}){let n={};const t=x.useRouter(),s=x.useRoute(),a=t.getRoutes(),i=e.ref(!1),d=r;for(let l of a)n[l.name]=l.components;const p=l=>{l&&g.addScreen({name:l,target:null,component:e.markRaw(n[l]||null)})},m=(l,y)=>{!y||g.screens[l].target||(g.screens[l].target=y.$el,l>0&&(i.value=!0,y.$el.style.transform="translateX(100%)",y.$el.transitionOrigin="center",document.documentElement.style.setProperty("--t-screen-backdrop-duration","0s"),document.documentElement.style.setProperty("--t-swipe-backdrop-opacity","0"),setTimeout(()=>{y.$el.style.transition="transform 0.35s ease",y.$el.style.transform="translateX(0px)",document.documentElement.style.setProperty("--t-screen-backdrop-duration","0.35s"),document.documentElement.style.setProperty("--t-swipe-backdrop-opacity","0.5"),g.screens.length>1&&(g.lastScreen.value.target.style.transitionOrigin="left center",g.lastScreen.value.target.style.transition="transform 0.35s ease",g.lastScreen.value.target.style.transform="translateX(-30vw) scale(0.5) perspective(100%) rotateY(30deg)"),setTimeout(()=>{d("change"),i.value=!1},400)},100)))},f=()=>{g.currentScreen.value.target.style.transition="transform 0.35s ease",g.currentScreen.value.target.style.transform="translateX(100%) scale(1)",g.lastScreen.value.target.style.transition="transform 0.35s ease",g.lastScreen.value.target.style.transform="translateX(0px) scale(1) perspective(100%) rotateY(0deg)",document.documentElement.style.setProperty("--t-screen-backdrop-duration","0.35s"),document.documentElement.style.setProperty("--t-swipe-backdrop-opacity","0"),i.value=!0,setTimeout(()=>{g.removeScreen(),d("change"),i.value=!1},400)};p(s.name),e.watch(()=>s.name,(l,y)=>{l!=g.currentScreen.value.name&&(g.lastScreen.value?.name==l?f():p(l))});const _=()=>{i.value=!0;const l=g.currentScreen.value.target,y=g.lastScreen.value.target;l.style.transition="transform 0.35s ease",l.style.transform="translateX(0px)",y.style.transition="transform 0.35s ease",y.style.transform="translateX(-30vw) scale(0.5) perspective(100%) rotateY(30deg)",document.documentElement.style.setProperty("--t-screen-backdrop-duration","0.35s"),document.documentElement.style.setProperty("--t-swipe-backdrop-opacity","0.5"),setTimeout(()=>{i.value=!1},400)};let c;return e.onMounted(()=>{c=S.gesture(document,{pointerId:null,beforeEvent(l){return i.value||g.screens.length<2?!1:(l.type=="pointerdown"&&!this.pointerId&&(this.pointerId=l.pointerId),this.pointerId==l.pointerId)},afterEvent(l){(l.type=="pointerup"||l.type=="pointercancel")&&(this.pointerId=null)},fast({d:l}){l=="right"&&t.back()},move({dx:l}){const y=window.innerWidth,u=l/y*100,b=g.currentScreen.value.target,$=g.lastScreen?.value?.target;if(l>15&&l<=y){b.style.transition="transform 0s ease",b.style.transform=`translateX(${l}px)`,$.style.transition="transform 0s ease",document.documentElement.style.setProperty("--t-screen-backdrop-duration","0s"),$.style.transform=`translateX(calc(-30vw + (30vw / 100 * ${u}))) scale(${.5+.5/100*u}) perspective(100%) rotateY(${30-30/100*u}deg)`,document.documentElement.style.setProperty("--t-swipe-backdrop-opacity",`${.5-.5/100*u}`);return}},up({dx:l}){const y=window.innerWidth;l/y*100>=50?t.back():_()},cancel(){_()}})}),e.onUnmounted(()=>{c&&c.destroy(),g.removeAllScreen()}),(l,y)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(g).screens,(u,b)=>(e.openBlock(),e.createBlock(L,{ref_for:!0,ref:$=>m(b,$),style:e.normalizeStyle({zIndex:b+(b==e.unref(g).screens.length-1?2:1)}),key:b},{default:e.withCtx(()=>[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(u.component.default)))]),_:2},1032,["style"]))),128)),e.createElementVNode("div",{class:"t-swipe-backdrop",style:e.normalizeStyle({zIndex:e.unref(g).screens.length})},null,4)],64))}}),[["__scopeId","data-v-e385a37a"]]),me=k(e.defineComponent({__name:"t-toolbar",props:{placement:{default:"bottom"},size:{default:"50px"}},setup(o){const r=o;return(n,t)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["t-toolbar",{[r.placement]:!0}]),style:e.normalizeStyle({"--t-size-toolbar":r.size})},[e.createElementVNode("div",null,[e.renderSlot(n.$slots,"default",{},void 0,!0)])],6))}}),[["__scopeId","data-v-3b3a7896"]]),fe=k(e.defineComponent({__name:"t-back-button",props:{to:{}},setup(o){const r=x.useRouter(),n=o,t=()=>{g.hasPrevious.value?r?.back?.():n.to&&r?.push?.(n.to)};return(s,a)=>s.to||e.unref(g).hasPrevious?(e.openBlock(),e.createElementBlock("button",{key:0,class:"t-back-button",onClick:t},[e.renderSlot(s.$slots,"default",{},()=>[a[0]||(a[0]=e.createElementVNode("i",{class:"ri-arrow-left-s-line"},null,-1))],!0)])):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-ed626a3d"]]),V=k(e.defineComponent({__name:"t-text",props:{color:{default:"var(--t-color-text)"},size:{default:"standard"}},setup(o){const r=o,n=e.computed(()=>{let t,s=r.color;return r.size=="standard"?t="var(--t-fs-10)":r.size=="small"?t="var(--t-fs-08)":r.size=="large"?t="var(--t-fs-12)":t=r.size,["warning","info","danger","primary","secondary","success"].includes(r.color)&&(s=`var(--t-color-status-${r.color})`),{"--color":s,"--font-size":t}});return(t,s)=>(e.openBlock(),e.createElementBlock("span",{class:"t-text",style:e.normalizeStyle(n.value)},[e.renderSlot(t.$slots,"default",{},void 0,!0)],4))}}),[["__scopeId","data-v-f0f94f05"]]),q=k(e.defineComponent({__name:"t-pull-signal",props:{placement:{default:"bottom"}},setup(o){return(r,n)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["t-pull-bar",{[r.placement]:!0}])},null,2))}}),[["__scopeId","data-v-daa38c85"]]),ue=k(e.defineComponent({__name:"t-sheet",props:{background:{default:"var(--t-color-surface)"},visible:{type:Boolean,default:!1},gesture:{type:Boolean,default:!0},fullscreen:{type:Boolean,default:!1},placement:{default:"bottom"},keepalive:{type:Boolean,default:!0},backdrop:{type:Boolean,default:!0},rounded:{type:Boolean,default:!0},radius:{type:Boolean,default:!0},closeButton:{type:Boolean,default:!0}},emits:["dismiss"],setup(o,{emit:r}){const n=o,t=r,s=e.ref(),a=e.ref(),i=e.ref(!1);let d=null;const p=e.computed(()=>{if(n.placement=="bottom")return"down";if(n.placement=="top")return"up";if(n.placement=="left")return"left";if(n.placement=="right")return"right"}),m=_=>{t("dismiss",_)},f=()=>{i.value=!0,setTimeout(()=>{i.value=!1},300)};return e.watch(()=>s.value,_=>{_&&(d=S.gesture(s.value,{options:{minDist:30},pointerId:null,beforeEvent(c){let l=!1,y=!1;return i.value||!n.gesture||n.placement=="center"?l=!0:this.pointerId?(l=!0,y=this.pointerId==c.pointerId):c.type=="pointerdown"&&(this.pointerId=c.pointerId,l=!0,y=!0),l&&(c.stopPropagation(),C(c.target)||(c.preventDefault(),E())),y},afterEvent(c){(c.type=="pointerup"||c.type=="pointercancel")&&(this.pointerId=null)},fast({d:c}){f(),c==p.value?t("dismiss","gesture"):a.value.open()},move({dy:c,dx:l,d:y}){if(y!=p.value)return;let u=0;n.placement=="bottom"||n.placement=="top"?u=c:u=l,a.value.render({contentTransform:u+"px",transition:"0s"})},up({dy:c,dx:l,d:y}){if(f(),y!=p.value){a.value.open();return}let u,b,$;n.placement=="bottom"||n.placement=="top"?(u=s.value.offsetHeight,$=c):(u=s.value.offsetWidth,$=l),b=$/u*100,b>50?t("dismiss","gesture"):a.value.open()},cancel(){f(),a.value.open()}}))}),e.onUnmounted(()=>{d&&d.destroy()}),(_,c)=>(e.openBlock(),e.createBlock(T,{ref_key:"present",ref:a,fullscreen:n.fullscreen,placement:n.placement,backdrop:_.backdrop,visible:n.visible,keepalive:n.keepalive,onDismiss:m},{default:e.withCtx(()=>[n.gesture&&n.placement!="center"?(e.openBlock(),e.createBlock(q,{key:0,placement:n.placement},null,8,["placement"])):e.createCommentVNode("",!0),n.closeButton&&n.placement=="center"?(e.openBlock(),e.createElementBlock("button",{key:1,class:"t-sheet-close",onClick:c[0]||(c[0]=l=>m("close-button"))},[e.renderSlot(_.$slots,"close-icon",{},()=>[c[1]||(c[1]=e.createElementVNode("i",{class:"ri-close-large-line"},null,-1))],!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["t-sheet",{fullscreen:n.fullscreen,[n.placement]:!0,rounded:_.rounded,radius:n.radius}]),style:e.normalizeStyle({"--background":n.background}),ref_key:"sheet",ref:s},[e.renderSlot(_.$slots,"default",{},void 0,!0)],6)]),_:3},8,["fullscreen","placement","backdrop","visible","keepalive"]))}}),[["__scopeId","data-v-145b1096"]]),_e={class:"t-input-label"},ye={class:"t-input-content"},ke=["type","placeholder","value"],ge=k(e.defineComponent({__name:"t-input",props:{size:{default:"standard"},rounded:{type:Boolean,default:!1},label:{default:""},placeholder:{default:""},type:{default:"text"},help:{},error:{},modelValue:{default:""},variant:{default:"default"}},emits:["update:modelValue"],setup(o,{emit:r}){const n=o,t=r,s=a=>{t("update:modelValue",a.target.value)};return(a,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["t-input",{rounded:n.rounded,["size-"+n.size]:!0,["variant-"+n.variant]:!0}])},[e.createElementVNode("label",null,[e.createElementVNode("span",_e,e.toDisplayString(a.label),1),e.createElementVNode("div",ye,[e.renderSlot(a.$slots,"start",{},void 0,!0),e.createElementVNode("input",{type:a.type,placeholder:a.placeholder,value:a.modelValue,onInput:s},null,40,ke),e.renderSlot(a.$slots,"end",{},void 0,!0)])]),n.error?(e.openBlock(),e.createBlock(V,{key:0,color:"danger"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.error),1)]),_:1})):n.help?(e.openBlock(),e.createBlock(V,{key:1,color:"secondary"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.help),1)]),_:1})):e.createCommentVNode("",!0)],2))}}),[["__scopeId","data-v-1a9425cf"]]),he={};function be(o,r){return e.openBlock(),e.createElementBlock("textarea")}const Be=k(he,[["render",be]]),$e={};function Se(o,r){return e.openBlock(),e.createElementBlock("div")}const Ce=k($e,[["render",Se]]),Ee={},Te={class:"t-grid"};function we(o,r){return e.openBlock(),e.createElementBlock("div",Te)}const ze=k(Ee,[["render",we]]),xe={},Ve={class:"t-grid-item"};function Ne(o,r){return e.openBlock(),e.createElementBlock("div",Ve)}const Ie=k(xe,[["render",Ne]]),De=k(e.defineComponent({__name:"t-divider",props:{direction:{default:"horizontal"}},setup(o){const r=o;return(n,t)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["t-divider",{[r.direction]:!0}])},null,2))}}),[["__scopeId","data-v-47ee8991"]]),ve=k(e.defineComponent({__name:"t-toggle-password",props:{color:{default:"warning"}},emits:["change"],setup(o,{emit:r}){const n=o,t=r,s=e.ref(!1),a=e.ref(),i=e.computed(()=>{let m=n.color;return["warning","info","danger","primary","secondary","success"].includes(n.color)&&(m=`var(--t-color-status-${n.color})`),{"--color":m}}),d=()=>a.value?.parentElement?.querySelector?.("input");e.onMounted(()=>{let m=d();m&&(s.value=m.type!="password",t("change",s.value))});const p=()=>{let m=d();m&&(s.value=!s.value,s.value?m.type="text":m.type="password",t("change",s.value))};return(m,f)=>(e.openBlock(),e.createElementBlock("button",{ref_key:"toggle",ref:a,class:"t-toggle-password",style:e.normalizeStyle(i.value),onClick:p},[s.value?e.renderSlot(m.$slots,"on",{key:0},()=>[f[0]||(f[0]=e.createElementVNode("i",{class:"ri-eye-line"},null,-1))],!0):e.createCommentVNode("",!0),s.value?e.createCommentVNode("",!0):e.renderSlot(m.$slots,"off",{key:1},()=>[f[1]||(f[1]=e.createElementVNode("i",{class:"ri-eye-off-line"},null,-1))],!0)],4))}}),[["__scopeId","data-v-3268e9e3"]]),Pe=k(e.defineComponent({__name:"t-avatar",props:{square:{type:Boolean,default:!1},size:{default:"standard"}},setup(o){const r=o,n=e.computed(()=>r.size=="small"?"24px":r.size=="standard"?"40px":r.size=="large"?"60px":r.size);return(t,s)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["t-avatar",{square:t.square}]),style:e.normalizeStyle({"--size":n.value})},[e.renderSlot(t.$slots,"default",{},void 0,!0)],6))}}),[["__scopeId","data-v-24384c2f"]]),Ae={class:"t-collapse-title"},Re={key:0,class:"icon"},Le={key:1,class:"icon"},qe={class:"t-collapse-content"},Oe=e.defineComponent({__name:"t-collapse",props:{title:{}},emits:["change"],setup(o,{emit:r}){const n=o,t=r,s=e.ref(!1),a=e.ref(""),i=e.ref(),d=()=>{s.value=!s.value,a.value=`calc(${i.value.offsetHeight}px + 2rem)`,t("change",s.value)};return t("change",s.value),(p,m)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["t-collapse",{open:s.value}]),style:e.normalizeStyle({"--height":a.value})},[e.createElementVNode("div",{class:"t-collapse-header",onClick:d},[e.renderSlot(p.$slots,"icon"),e.createElementVNode("div",Ae,[e.renderSlot(p.$slots,"title",{},()=>[e.createTextVNode(e.toDisplayString(n.title),1)])]),e.renderSlot(p.$slots,"toggle",{},()=>[s.value?(e.openBlock(),e.createElementBlock("div",Re,[...m[0]||(m[0]=[e.createElementVNode("i",{class:"ri-arrow-up-s-line"},null,-1)])])):(e.openBlock(),e.createElementBlock("div",Le,[...m[1]||(m[1]=[e.createElementVNode("i",{class:"ri-arrow-down-s-line"},null,-1)])]))])]),e.createElementVNode("div",qe,[e.createElementVNode("div",{ref_key:"content",ref:i},[e.renderSlot(p.$slots,"content",{},()=>[e.renderSlot(p.$slots,"default")])],512)])],6))}}),Xe=k(e.defineComponent({__name:"t-switch",props:{modelValue:{type:Boolean},color:{default:"primary"}},emits:["update:modelValue"],setup(o,{emit:r}){const n=o,t=r,s=()=>{t("update:modelValue",!n.modelValue)},a=e.computed(()=>{let i={"--background":n.color,"--color":"#ffffff"};return["warning","info","danger","primary","secondary","success"].includes(n.color)&&(i={"--background":`var(--t-color-status-${n.color})`,"--color":`var(--t-color-status-${n.color}-text)`}),i});return(i,d)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["t-switch",{on:n.modelValue}]),style:e.normalizeStyle(a.value),onClick:s},[...d[0]||(d[0]=[e.createElementVNode("div",{class:"t-switch-icon"},null,-1)])],6))}}),[["__scopeId","data-v-3616970e"]]),Fe=k(e.defineComponent({__name:"t-tab",props:{value:{}},setup(o){const r=o,n=e.inject("tabsState"),t=e.computed(()=>n.active.value===r.value),s=()=>{n.setActive(r.value)};return(a,i)=>(e.openBlock(),e.createElementBlock("li",{class:e.normalizeClass(["t-tab",{active:t.value}])},[e.createVNode(z,{variant:"text",onClick:s,size:e.unref(n).size,color:t.value&&e.unref(n).variant=="text"?e.unref(n).color:void 0},{default:e.withCtx(()=>[e.renderSlot(a.$slots,"default",{},void 0,!0)]),_:3},8,["size","color"])],2))}}),[["__scopeId","data-v-36c12a50"]]),Ue=k(e.defineComponent({__name:"t-tabs",props:{placement:{default:"top-start"},variant:{default:"border-under"},color:{default:"primary"},modelValue:{},border:{default:30},size:{default:"standard"}},emits:["update:modelValue"],setup(o,{emit:r}){const n=o,t=r,s=e.ref("0px"),a=e.ref(),i=e.computed(()=>{let p=n.color;return["warning","info","danger","primary","secondary","success"].includes(p)&&(p=`var(--t-color-status-${p})`),p}),d=()=>{setTimeout(()=>{if(n.placement.startsWith("top-")||n.placement.startsWith("bottom-")){let p=a.value.querySelector(".active");if(p){let m=p.getBoundingClientRect().left-a.value.getBoundingClientRect().left+a.value.scrollLeft,f=p.offsetWidth/2;s.value=m+f-n.border/2+"px"}}else if(n.placement.startsWith("left-")||n.placement.startsWith("right-")){let p=a.value.querySelector(".active");if(p){let m=p.getBoundingClientRect().top-a.value.getBoundingClientRect().top+a.value.scrollTop,f=p.offsetHeight/2;s.value=m+f-n.border/2+"px"}}},50)};return e.provide("tabsState",{active:e.computed(()=>n.modelValue),color:i.value,size:n.size,variant:n.variant,setActive:p=>{t("update:modelValue",p),d()}}),e.onMounted(()=>{d()}),(p,m)=>(e.openBlock(),e.createElementBlock("ul",{ref_key:"container",ref:a,class:e.normalizeClass(["t-tabs",{[p.placement]:!0,[p.variant]:!0}]),style:e.normalizeStyle({"--color":i.value,"--transform":s.value,"--border":p.border+"px"})},[e.renderSlot(p.$slots,"default",{},void 0,!0)],6))}}),[["__scopeId","data-v-65a2c74c"]]),We=k(e.defineComponent({__name:"t-loading-app",setup(o){return(r,n)=>(e.openBlock(),e.createBlock(A,null,{default:e.withCtx(()=>[e.createVNode(w,{type:"spinner"})]),_:1}))}}),[["__scopeId","data-v-1436aa9f"]]),je=()=>({install:o=>{O(),o.component("t-app",W),o.component("t-screen",L),o.component("t-swipe-screen",pe),o.component("t-cable",oe),o.component("t-toolbar",me),o.component("t-content",A),o.component("t-card",ne),o.component("t-refresher",le),o.component("t-button",z),o.component("t-back-button",fe),o.component("t-present",T),o.component("t-text",V),o.component("t-sheet",ue),o.component("t-pull-signal",q),o.component("t-input",ge),o.component("t-textarea",Be),o.component("t-rich-text",Ce),o.component("t-grid",ze),o.component("t-grid-item",Ie),o.component("t-divider",De),o.component("t-toggle-password",ve),o.component("t-loading-icon",w),o.component("t-alert",N),o.component("t-avatar",Pe),o.component("t-collapse",Oe),o.component("t-toast",v),o.component("t-switch",Xe),o.component("t-tab",Fe),o.component("t-tabs",Ue),o.component("t-loading-app",We)}});h.blurCurrentActive=E,h.createAction=J,h.createAlert=H,h.createLoading=Z,h.createToast=ee,h.createToife=je,h.isFormElement=C,h.presentController=D,h.screenController=g,h.useKeyboard=P,Object.defineProperty(h,Symbol.toStringTag,{value:"Module"})}));
|