@max-ts/kit 1.5.3 → 1.7.0
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/lib/components/Checkbox/Checkbox.d.ts.map +1 -1
- package/lib/components/Checkbox/checkbox.css.d.ts +2 -1
- package/lib/components/Checkbox/checkbox.css.d.ts.map +1 -1
- package/lib/components/ContentState/ContentState.d.ts +3 -34
- package/lib/components/ContentState/ContentState.d.ts.map +1 -1
- package/lib/components/ContentState/styles.css.d.ts +2 -1
- package/lib/components/ContentState/styles.css.d.ts.map +1 -1
- package/lib/components/ContentState/types.d.ts +14 -23
- package/lib/components/ContentState/types.d.ts.map +1 -1
- package/lib/components/DataGrid/Body/Body.d.ts +5 -2
- package/lib/components/DataGrid/Body/Body.d.ts.map +1 -1
- package/lib/components/DataGrid/DataGrid.d.ts +13 -6
- package/lib/components/DataGrid/DataGrid.d.ts.map +1 -1
- package/lib/components/DataGrid/Header/Header.d.ts +9 -2
- package/lib/components/DataGrid/Header/Header.d.ts.map +1 -1
- package/lib/components/DataGrid/Header/styles.css.d.ts +1 -0
- package/lib/components/DataGrid/Header/styles.css.d.ts.map +1 -1
- package/lib/components/DataGrid/HeaderCell/HeaderCell.d.ts +4 -2
- package/lib/components/DataGrid/HeaderCell/HeaderCell.d.ts.map +1 -1
- package/lib/components/DataGrid/Row/Row.d.ts +6 -3
- package/lib/components/DataGrid/Row/Row.d.ts.map +1 -1
- package/lib/components/DataGrid/Row/styles.css.d.ts +1 -0
- package/lib/components/DataGrid/Row/styles.css.d.ts.map +1 -1
- package/lib/components/DataGrid/State/State.d.ts +5 -5
- package/lib/components/DataGrid/State/State.d.ts.map +1 -1
- package/lib/components/DataGrid/State/styles.css.d.ts +2 -1
- package/lib/components/DataGrid/State/styles.css.d.ts.map +1 -1
- package/lib/components/DataGrid/types.d.ts +13 -5
- package/lib/components/DataGrid/types.d.ts.map +1 -1
- package/lib/components/DataGridSortHeader/DataGridSortHeader.d.ts +3 -2
- package/lib/components/DataGridSortHeader/DataGridSortHeader.d.ts.map +1 -1
- package/lib/components/DataGridSortHeader/types.d.ts +1 -4
- package/lib/components/DataGridSortHeader/types.d.ts.map +1 -1
- package/lib/components/DataList/DataList.d.ts +3 -3
- package/lib/components/DataList/DataList.d.ts.map +1 -1
- package/lib/components/Spinner/Spinner.d.ts +6 -0
- package/lib/components/Spinner/Spinner.d.ts.map +1 -0
- package/lib/components/Spinner/index.d.ts +2 -0
- package/lib/components/Spinner/index.d.ts.map +1 -0
- package/lib/components/Spinner/styles.css.d.ts +2 -0
- package/lib/components/Spinner/styles.css.d.ts.map +1 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/components/index.d.ts.map +1 -1
- package/lib/index.mjs +492 -279
- package/lib/stories/Checkbox.stories.d.ts +3 -0
- package/lib/stories/Checkbox.stories.d.ts.map +1 -1
- package/lib/stories/ContentState.stories.d.ts +14 -0
- package/lib/stories/ContentState.stories.d.ts.map +1 -0
- package/lib/stories/DataGrid.stories.d.ts +1 -0
- package/lib/stories/DataGrid.stories.d.ts.map +1 -1
- package/lib/stories/DataList.stories.d.ts +1 -1
- package/lib/stories/Spinner.stories.d.ts +13 -0
- package/lib/stories/Spinner.stories.d.ts.map +1 -0
- package/lib/styles.css +235 -180
- package/package.json +1 -1
|
@@ -8,4 +8,7 @@ declare const _default: {
|
|
|
8
8
|
};
|
|
9
9
|
export default _default;
|
|
10
10
|
export declare const Default: () => import("react").JSX.Element;
|
|
11
|
+
export declare const Checked: () => import("react").JSX.Element;
|
|
12
|
+
export declare const Indeterminate: () => import("react").JSX.Element;
|
|
13
|
+
export declare const Disabled: () => import("react").JSX.Element;
|
|
11
14
|
//# sourceMappingURL=Checkbox.stories.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Checkbox.stories.d.ts","sourceRoot":"","sources":["../../src/stories/Checkbox.stories.tsx"],"names":[],"mappings":";;;;;;;;AAIA,wBAOkC;AAElC,eAAO,MAAM,OAAO,mCAUnB,CAAC"}
|
|
1
|
+
{"version":3,"file":"Checkbox.stories.d.ts","sourceRoot":"","sources":["../../src/stories/Checkbox.stories.tsx"],"names":[],"mappings":";;;;;;;;AAIA,wBAOkC;AAElC,eAAO,MAAM,OAAO,mCAUnB,CAAC;AAEF,eAAO,MAAM,OAAO,mCAUnB,CAAC;AAEF,eAAO,MAAM,aAAa,mCAUzB,CAAC;AAEF,eAAO,MAAM,QAAQ,mCAQpB,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ContentState } from '../components/index.ts';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: typeof ContentState;
|
|
5
|
+
parameters: {
|
|
6
|
+
layout: string;
|
|
7
|
+
};
|
|
8
|
+
tags: string[];
|
|
9
|
+
};
|
|
10
|
+
export default _default;
|
|
11
|
+
export declare function Success(): import("react").JSX.Element;
|
|
12
|
+
export declare function Loading(): import("react").JSX.Element;
|
|
13
|
+
export declare function ErrorState(): import("react").JSX.Element;
|
|
14
|
+
//# sourceMappingURL=ContentState.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ContentState.stories.d.ts","sourceRoot":"","sources":["../../src/stories/ContentState.stories.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;;;;;;;;;AAa5C,wBAOsC;AAEtC,wBAAgB,OAAO,gCAMtB;AAED,wBAAgB,OAAO,gCAQtB;AAED,wBAAgB,UAAU,gCAezB"}
|
|
@@ -11,6 +11,7 @@ export default _default;
|
|
|
11
11
|
export declare const BaseExample: () => import("react").JSX.Element;
|
|
12
12
|
export declare const WithActions: () => import("react").JSX.Element;
|
|
13
13
|
export declare const WithSorting: () => import("react").JSX.Element;
|
|
14
|
+
export declare const WithSelection: () => import("react").JSX.Element;
|
|
14
15
|
export declare const Loading: () => import("react").JSX.Element;
|
|
15
16
|
export declare const ErrorState: () => import("react").JSX.Element;
|
|
16
17
|
export declare const EmptyState: () => import("react").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataGrid.stories.d.ts","sourceRoot":"","sources":["../../src/stories/DataGrid.stories.tsx"],"names":[],"mappings":"AAGA,OAAO,EACN,QAAQ,EAMR,MAAM,cAAc,CAAC;;;;;;;;;AAGtB,wBAOkC;AA6JlC,eAAO,MAAM,WAAW,mCAMvB,CAAC;AAEF,eAAO,MAAM,WAAW,mCA6BvB,CAAC;AAEF,eAAO,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"DataGrid.stories.d.ts","sourceRoot":"","sources":["../../src/stories/DataGrid.stories.tsx"],"names":[],"mappings":"AAGA,OAAO,EACN,QAAQ,EAMR,MAAM,cAAc,CAAC;;;;;;;;;AAGtB,wBAOkC;AA6JlC,eAAO,MAAM,WAAW,mCAMvB,CAAC;AAEF,eAAO,MAAM,WAAW,mCA6BvB,CAAC;AAEF,eAAO,MAAM,WAAW,mCAoCvB,CAAC;AAEF,eAAO,MAAM,aAAa,mCAgBzB,CAAC;AAEF,eAAO,MAAM,OAAO,mCAEnB,CAAC;AAEF,eAAO,MAAM,UAAU,mCAEtB,CAAC;AAEF,eAAO,MAAM,UAAU,mCAEtB,CAAC;AAEF,eAAO,MAAM,cAAc,mCAsB1B,CAAC"}
|
|
@@ -6,7 +6,7 @@ import type React from 'react';
|
|
|
6
6
|
*/
|
|
7
7
|
declare const _default: {
|
|
8
8
|
title: string;
|
|
9
|
-
component: <TDataItem extends Record<string, unknown>>({ data, keyId, className, itemContent, noDataPlaceholder, endOfScrollMsg, errorState, isLoading, isError, isEndReached, onRetry, onEndReached, ref, }: import("../components/index.ts").DataListProps<TDataItem>) => React.JSX.Element;
|
|
9
|
+
component: <TDataItem extends Record<string, unknown>>({ data, keyId, className, itemContent, noDataPlaceholder, endOfScrollMsg, errorState, isLoading, isError, isEndReached, onRetry, onEndReached, ref, }: import("../components/index.ts").DataListProps<TDataItem>) => string | number | bigint | true | Iterable<React.ReactNode> | Promise<string | number | bigint | boolean | React.ReactPortal | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | null | undefined> | React.JSX.Element;
|
|
10
10
|
parameters: {
|
|
11
11
|
layout: string;
|
|
12
12
|
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Spinner } from '../components/index.ts';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: typeof Spinner;
|
|
5
|
+
parameters: {
|
|
6
|
+
layout: string;
|
|
7
|
+
};
|
|
8
|
+
tags: string[];
|
|
9
|
+
};
|
|
10
|
+
export default _default;
|
|
11
|
+
export declare function Default(): import("react").JSX.Element;
|
|
12
|
+
export declare function CustomSize(): import("react").JSX.Element;
|
|
13
|
+
//# sourceMappingURL=Spinner.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Spinner.stories.d.ts","sourceRoot":"","sources":["../../src/stories/Spinner.stories.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;;;;;;;;;AAEvC,wBAOiC;AAEjC,wBAAgB,OAAO,gCAEtB;AAED,wBAAgB,UAAU,gCAEzB"}
|
package/lib/styles.css
CHANGED
|
@@ -2104,11 +2104,12 @@ a.outline__1af895x4:hover {
|
|
|
2104
2104
|
border: 1px solid var(--colors-primary);
|
|
2105
2105
|
background-color: var(--colors-background-paper);
|
|
2106
2106
|
cursor: pointer;
|
|
2107
|
-
border-radius:
|
|
2107
|
+
border-radius: 4px;
|
|
2108
2108
|
flex-shrink: 0;
|
|
2109
2109
|
width: 1rem;
|
|
2110
2110
|
height: 1rem;
|
|
2111
2111
|
transition: all .2s;
|
|
2112
|
+
display: block;
|
|
2112
2113
|
position: relative;
|
|
2113
2114
|
}
|
|
2114
2115
|
|
|
@@ -2134,10 +2135,23 @@ a.outline__1af895x4:hover {
|
|
|
2134
2135
|
}
|
|
2135
2136
|
|
|
2136
2137
|
.style__b7yo4k2 {
|
|
2137
|
-
width:
|
|
2138
|
-
height:
|
|
2138
|
+
width: 100%;
|
|
2139
|
+
height: 100%;
|
|
2139
2140
|
stroke: var(--colors-foreground-primary);
|
|
2140
2141
|
stroke-width: 3px;
|
|
2142
|
+
display: none;
|
|
2143
|
+
}
|
|
2144
|
+
|
|
2145
|
+
.style__b7yo4k3 {
|
|
2146
|
+
width: 100%;
|
|
2147
|
+
height: 100%;
|
|
2148
|
+
stroke: var(--colors-primary);
|
|
2149
|
+
stroke-width: 3px;
|
|
2150
|
+
display: none;
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2153
|
+
.style__b7yo4k1[data-checked] .style__b7yo4k2, .style__b7yo4k1[data-indeterminate] .style__b7yo4k3 {
|
|
2154
|
+
display: block;
|
|
2141
2155
|
}
|
|
2142
2156
|
|
|
2143
2157
|
@keyframes style__1xy4jvu0 {
|
|
@@ -2210,90 +2224,124 @@ a.outline__1af895x4:hover {
|
|
|
2210
2224
|
max-width: 400px;
|
|
2211
2225
|
}
|
|
2212
2226
|
|
|
2213
|
-
.
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2227
|
+
.style__e4li7y0 {
|
|
2228
|
+
justify-content: center;
|
|
2229
|
+
align-items: center;
|
|
2230
|
+
gap: var(--spacing-4);
|
|
2231
|
+
border-radius: var(--borderRadius-lg);
|
|
2232
|
+
width: 100%;
|
|
2233
|
+
min-width: 0;
|
|
2234
|
+
padding: var(--spacing-6);
|
|
2235
|
+
text-align: center;
|
|
2236
|
+
text-wrap: balance;
|
|
2237
|
+
flex-direction: column;
|
|
2238
|
+
flex: 1;
|
|
2239
|
+
display: flex;
|
|
2218
2240
|
}
|
|
2219
2241
|
|
|
2220
|
-
.
|
|
2221
|
-
|
|
2242
|
+
.style__e4li7y1 {
|
|
2243
|
+
align-items: center;
|
|
2244
|
+
gap: var(--spacing-2);
|
|
2245
|
+
flex-direction: column;
|
|
2246
|
+
max-width: 24rem;
|
|
2247
|
+
display: flex;
|
|
2222
2248
|
}
|
|
2223
2249
|
|
|
2224
|
-
.
|
|
2225
|
-
margin:
|
|
2250
|
+
.style__e4li7y2 {
|
|
2251
|
+
margin-bottom: var(--spacing-2);
|
|
2252
|
+
flex-shrink: 0;
|
|
2253
|
+
justify-content: center;
|
|
2254
|
+
align-items: center;
|
|
2255
|
+
display: flex;
|
|
2226
2256
|
}
|
|
2227
2257
|
|
|
2228
|
-
.
|
|
2229
|
-
|
|
2258
|
+
.default__e4li7y3 {
|
|
2259
|
+
background-color: #0000;
|
|
2230
2260
|
}
|
|
2231
2261
|
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2262
|
+
.icon__e4li7y4 {
|
|
2263
|
+
width: var(--spacing-8);
|
|
2264
|
+
height: var(--spacing-8);
|
|
2265
|
+
border-radius: var(--borderRadius-md);
|
|
2266
|
+
background-color: var(--colors-background-element);
|
|
2267
|
+
color: var(--colors-text-primary);
|
|
2268
|
+
flex-shrink: 0;
|
|
2236
2269
|
}
|
|
2237
2270
|
|
|
2238
|
-
.
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
padding: var(--spacing-4);
|
|
2242
|
-
background-color: var(--colors-background-paper);
|
|
2243
|
-
flex-direction: column;
|
|
2244
|
-
justify-content: center;
|
|
2245
|
-
align-items: center;
|
|
2246
|
-
display: flex;
|
|
2271
|
+
.style__e4li7y2 svg {
|
|
2272
|
+
pointer-events: none;
|
|
2273
|
+
flex-shrink: 0;
|
|
2247
2274
|
}
|
|
2248
2275
|
|
|
2249
|
-
.
|
|
2250
|
-
|
|
2276
|
+
.icon__e4li7y4 svg:not([class*="size-"]) {
|
|
2277
|
+
width: var(--spacing-4);
|
|
2278
|
+
height: var(--spacing-4);
|
|
2251
2279
|
}
|
|
2252
2280
|
|
|
2253
|
-
.
|
|
2254
|
-
|
|
2281
|
+
.style__e4li7y5 {
|
|
2282
|
+
font-size: var(--fontSize-sm);
|
|
2283
|
+
font-weight: var(--fontWeight-medium);
|
|
2284
|
+
line-height: var(--lineHeight-normal);
|
|
2255
2285
|
}
|
|
2256
2286
|
|
|
2257
|
-
.
|
|
2258
|
-
|
|
2287
|
+
.style__e4li7y6 {
|
|
2288
|
+
color: var(--colors-text-secondary);
|
|
2289
|
+
font-size: var(--fontSize-sm);
|
|
2290
|
+
line-height: var(--lineHeight-relaxed);
|
|
2259
2291
|
}
|
|
2260
2292
|
|
|
2261
|
-
.
|
|
2262
|
-
|
|
2293
|
+
.style__e4li7y6 a {
|
|
2294
|
+
text-decoration: underline;
|
|
2263
2295
|
}
|
|
2264
2296
|
|
|
2265
|
-
.
|
|
2266
|
-
|
|
2267
|
-
color: var(--colors-text-secondary);
|
|
2268
|
-
display: block;
|
|
2297
|
+
.style__e4li7y6 a:hover {
|
|
2298
|
+
color: var(--colors-primary);
|
|
2269
2299
|
}
|
|
2270
2300
|
|
|
2271
|
-
.
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2301
|
+
.style__e4li7y7 {
|
|
2302
|
+
width: 100%;
|
|
2303
|
+
min-width: 0;
|
|
2304
|
+
max-width: 24rem;
|
|
2305
|
+
font-size: var(--fontSize-sm);
|
|
2306
|
+
text-wrap: balance;
|
|
2307
|
+
flex-direction: column;
|
|
2308
|
+
align-items: center;
|
|
2309
|
+
gap: .625rem;
|
|
2276
2310
|
display: flex;
|
|
2277
2311
|
}
|
|
2278
2312
|
|
|
2279
|
-
@
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
grid-template-rows: 1fr max-content;
|
|
2283
|
-
grid-template-columns: 100%;
|
|
2284
|
-
display: grid;
|
|
2313
|
+
@keyframes style__1dbefg90 {
|
|
2314
|
+
to {
|
|
2315
|
+
transform: rotate(360deg);
|
|
2285
2316
|
}
|
|
2286
2317
|
}
|
|
2287
2318
|
|
|
2319
|
+
.style__1dbefg91 {
|
|
2320
|
+
width: var(--spacing-4);
|
|
2321
|
+
height: var(--spacing-4);
|
|
2322
|
+
color: currentColor;
|
|
2323
|
+
animation: 1s linear infinite style__1dbefg90;
|
|
2324
|
+
}
|
|
2325
|
+
|
|
2288
2326
|
.style__nan0ao0 {
|
|
2289
|
-
|
|
2327
|
+
box-sizing: border-box;
|
|
2290
2328
|
justify-content: center;
|
|
2291
2329
|
align-items: center;
|
|
2292
2330
|
width: 100%;
|
|
2331
|
+
min-width: 0;
|
|
2293
2332
|
height: 100%;
|
|
2333
|
+
min-height: 100%;
|
|
2294
2334
|
display: flex;
|
|
2295
2335
|
}
|
|
2296
2336
|
|
|
2337
|
+
.style__nan0ao1 {
|
|
2338
|
+
max-width: 100%;
|
|
2339
|
+
width: var(--spacing-20);
|
|
2340
|
+
height: var(--spacing-20);
|
|
2341
|
+
object-fit: contain;
|
|
2342
|
+
display: block;
|
|
2343
|
+
}
|
|
2344
|
+
|
|
2297
2345
|
@keyframes style__izacrl0 {
|
|
2298
2346
|
from {
|
|
2299
2347
|
opacity: 0;
|
|
@@ -2508,17 +2556,28 @@ a.outline__1af895x4:hover {
|
|
|
2508
2556
|
background-color: var(--colors-background-elementHover);
|
|
2509
2557
|
}
|
|
2510
2558
|
|
|
2559
|
+
.style__gsm9mv2 {
|
|
2560
|
+
border-bottom: 1px solid var(--colors-border);
|
|
2561
|
+
justify-content: center;
|
|
2562
|
+
align-items: center;
|
|
2563
|
+
display: flex;
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2511
2566
|
.style__15m2ib80 {
|
|
2512
2567
|
width: 100%;
|
|
2513
2568
|
height: 100%;
|
|
2514
2569
|
}
|
|
2515
2570
|
|
|
2516
2571
|
.style__15m2ib81 {
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
height:
|
|
2520
|
-
|
|
2521
|
-
display:
|
|
2572
|
+
max-width: 100%;
|
|
2573
|
+
width: var(--spacing-20);
|
|
2574
|
+
height: var(--spacing-20);
|
|
2575
|
+
object-fit: contain;
|
|
2576
|
+
display: block;
|
|
2577
|
+
}
|
|
2578
|
+
|
|
2579
|
+
.style__15m2ib82 {
|
|
2580
|
+
height: 60vh;
|
|
2522
2581
|
}
|
|
2523
2582
|
|
|
2524
2583
|
.style__82af400 {
|
|
@@ -2547,6 +2606,44 @@ a.outline__1af895x4:hover {
|
|
|
2547
2606
|
display: none;
|
|
2548
2607
|
}
|
|
2549
2608
|
|
|
2609
|
+
.style__o752f00 {
|
|
2610
|
+
align-items: center;
|
|
2611
|
+
gap: var(--spacing-1);
|
|
2612
|
+
cursor: pointer;
|
|
2613
|
+
color: inherit;
|
|
2614
|
+
font-size: inherit;
|
|
2615
|
+
font-weight: inherit;
|
|
2616
|
+
overflow-wrap: break-word;
|
|
2617
|
+
background-color: #0000;
|
|
2618
|
+
border: none;
|
|
2619
|
+
width: 100%;
|
|
2620
|
+
height: 100%;
|
|
2621
|
+
font-family: inherit;
|
|
2622
|
+
display: flex;
|
|
2623
|
+
position: relative;
|
|
2624
|
+
}
|
|
2625
|
+
|
|
2626
|
+
.style__o752f00 svg {
|
|
2627
|
+
stroke: currentColor;
|
|
2628
|
+
min-width: 12px;
|
|
2629
|
+
}
|
|
2630
|
+
|
|
2631
|
+
.left__o752f01 {
|
|
2632
|
+
justify-content: flex-start;
|
|
2633
|
+
}
|
|
2634
|
+
|
|
2635
|
+
.center__o752f02 {
|
|
2636
|
+
justify-content: center;
|
|
2637
|
+
}
|
|
2638
|
+
|
|
2639
|
+
.right__o752f03 {
|
|
2640
|
+
justify-content: flex-end;
|
|
2641
|
+
}
|
|
2642
|
+
|
|
2643
|
+
.justify__o752f04 {
|
|
2644
|
+
justify-content: space-between;
|
|
2645
|
+
}
|
|
2646
|
+
|
|
2550
2647
|
.style__uma6hu0 {
|
|
2551
2648
|
padding: var(--spacing-1) var(--spacing-2);
|
|
2552
2649
|
width: 100%;
|
|
@@ -2563,6 +2660,13 @@ a.outline__1af895x4:hover {
|
|
|
2563
2660
|
top: 0;
|
|
2564
2661
|
}
|
|
2565
2662
|
|
|
2663
|
+
.style__fkgoub1 {
|
|
2664
|
+
border-bottom: 1px solid var(--colors-border);
|
|
2665
|
+
justify-content: center;
|
|
2666
|
+
align-items: center;
|
|
2667
|
+
display: flex;
|
|
2668
|
+
}
|
|
2669
|
+
|
|
2566
2670
|
.style__1gqvluf0 {
|
|
2567
2671
|
background-color: var(--colors-background-paper);
|
|
2568
2672
|
border: 1px solid var(--colors-border);
|
|
@@ -2860,44 +2964,6 @@ a.outline__1af895x4:hover {
|
|
|
2860
2964
|
display: inline-flex;
|
|
2861
2965
|
}
|
|
2862
2966
|
|
|
2863
|
-
.style__o752f00 {
|
|
2864
|
-
align-items: center;
|
|
2865
|
-
gap: var(--spacing-1);
|
|
2866
|
-
cursor: pointer;
|
|
2867
|
-
color: inherit;
|
|
2868
|
-
font-size: inherit;
|
|
2869
|
-
font-weight: inherit;
|
|
2870
|
-
overflow-wrap: break-word;
|
|
2871
|
-
background-color: #0000;
|
|
2872
|
-
border: none;
|
|
2873
|
-
width: 100%;
|
|
2874
|
-
height: 100%;
|
|
2875
|
-
font-family: inherit;
|
|
2876
|
-
display: flex;
|
|
2877
|
-
position: relative;
|
|
2878
|
-
}
|
|
2879
|
-
|
|
2880
|
-
.style__o752f00 svg {
|
|
2881
|
-
stroke: currentColor;
|
|
2882
|
-
min-width: 12px;
|
|
2883
|
-
}
|
|
2884
|
-
|
|
2885
|
-
.left__o752f01 {
|
|
2886
|
-
justify-content: flex-start;
|
|
2887
|
-
}
|
|
2888
|
-
|
|
2889
|
-
.center__o752f02 {
|
|
2890
|
-
justify-content: center;
|
|
2891
|
-
}
|
|
2892
|
-
|
|
2893
|
-
.right__o752f03 {
|
|
2894
|
-
justify-content: flex-end;
|
|
2895
|
-
}
|
|
2896
|
-
|
|
2897
|
-
.justify__o752f04 {
|
|
2898
|
-
justify-content: space-between;
|
|
2899
|
-
}
|
|
2900
|
-
|
|
2901
2967
|
.style__1syvw5e0 {
|
|
2902
2968
|
padding: var(--spacing-4) var(--spacing-5);
|
|
2903
2969
|
justify-content: center;
|
|
@@ -2942,6 +3008,81 @@ a.outline__1af895x4:hover {
|
|
|
2942
3008
|
}
|
|
2943
3009
|
}
|
|
2944
3010
|
|
|
3011
|
+
.style__1o97kvm0 {
|
|
3012
|
+
object-fit: contain;
|
|
3013
|
+
max-width: 100%;
|
|
3014
|
+
color: var(--colors-text-secondary);
|
|
3015
|
+
display: block;
|
|
3016
|
+
}
|
|
3017
|
+
|
|
3018
|
+
.small__1o97kvm1 {
|
|
3019
|
+
margin: auto auto var(--spacing-4);
|
|
3020
|
+
}
|
|
3021
|
+
|
|
3022
|
+
.medium__1o97kvm2 {
|
|
3023
|
+
margin: auto auto var(--spacing-8);
|
|
3024
|
+
}
|
|
3025
|
+
|
|
3026
|
+
.large__1o97kvm3 {
|
|
3027
|
+
margin: auto auto var(--spacing-10);
|
|
3028
|
+
}
|
|
3029
|
+
|
|
3030
|
+
@media (width <= 600px) {
|
|
3031
|
+
.style__1o97kvm0 {
|
|
3032
|
+
margin: auto auto var(--spacing-4);
|
|
3033
|
+
}
|
|
3034
|
+
}
|
|
3035
|
+
|
|
3036
|
+
.style__1nenzg00 {
|
|
3037
|
+
width: 100%;
|
|
3038
|
+
height: 100%;
|
|
3039
|
+
padding: var(--spacing-4);
|
|
3040
|
+
background-color: var(--colors-background-paper);
|
|
3041
|
+
flex-direction: column;
|
|
3042
|
+
justify-content: center;
|
|
3043
|
+
align-items: center;
|
|
3044
|
+
display: flex;
|
|
3045
|
+
}
|
|
3046
|
+
|
|
3047
|
+
.small__1nenzg01 {
|
|
3048
|
+
gap: var(--spacing-4);
|
|
3049
|
+
}
|
|
3050
|
+
|
|
3051
|
+
.medium__1nenzg02 {
|
|
3052
|
+
gap: var(--spacing-8);
|
|
3053
|
+
}
|
|
3054
|
+
|
|
3055
|
+
.large__1nenzg03 {
|
|
3056
|
+
gap: var(--spacing-10);
|
|
3057
|
+
}
|
|
3058
|
+
|
|
3059
|
+
.style__1nenzg04 {
|
|
3060
|
+
margin: 0 auto;
|
|
3061
|
+
}
|
|
3062
|
+
|
|
3063
|
+
.style__1nenzg05 {
|
|
3064
|
+
text-align: center;
|
|
3065
|
+
color: var(--colors-text-secondary);
|
|
3066
|
+
display: block;
|
|
3067
|
+
}
|
|
3068
|
+
|
|
3069
|
+
.style__1nenzg06 {
|
|
3070
|
+
color: var(--colors-text-secondary);
|
|
3071
|
+
justify-content: center;
|
|
3072
|
+
gap: var(--spacing-2);
|
|
3073
|
+
flex-wrap: wrap;
|
|
3074
|
+
display: flex;
|
|
3075
|
+
}
|
|
3076
|
+
|
|
3077
|
+
@media (width <= 560px) {
|
|
3078
|
+
.style__1nenzg00 {
|
|
3079
|
+
gap: var(--spacing-4);
|
|
3080
|
+
grid-template-rows: 1fr max-content;
|
|
3081
|
+
grid-template-columns: 100%;
|
|
3082
|
+
display: grid;
|
|
3083
|
+
}
|
|
3084
|
+
}
|
|
3085
|
+
|
|
2945
3086
|
.style__1jg5nd90 {
|
|
2946
3087
|
right: var(--spacing-3);
|
|
2947
3088
|
bottom: var(--spacing-8);
|
|
@@ -3524,92 +3665,6 @@ a.outline__1af895x4:hover {
|
|
|
3524
3665
|
}
|
|
3525
3666
|
}
|
|
3526
3667
|
|
|
3527
|
-
.style__e4li7y0 {
|
|
3528
|
-
justify-content: center;
|
|
3529
|
-
align-items: center;
|
|
3530
|
-
gap: var(--spacing-4);
|
|
3531
|
-
border-radius: var(--borderRadius-lg);
|
|
3532
|
-
width: 100%;
|
|
3533
|
-
min-width: 0;
|
|
3534
|
-
padding: var(--spacing-6);
|
|
3535
|
-
text-align: center;
|
|
3536
|
-
text-wrap: balance;
|
|
3537
|
-
flex-direction: column;
|
|
3538
|
-
flex: 1;
|
|
3539
|
-
display: flex;
|
|
3540
|
-
}
|
|
3541
|
-
|
|
3542
|
-
.style__e4li7y1 {
|
|
3543
|
-
align-items: center;
|
|
3544
|
-
gap: var(--spacing-2);
|
|
3545
|
-
flex-direction: column;
|
|
3546
|
-
max-width: 24rem;
|
|
3547
|
-
display: flex;
|
|
3548
|
-
}
|
|
3549
|
-
|
|
3550
|
-
.style__e4li7y2 {
|
|
3551
|
-
margin-bottom: var(--spacing-2);
|
|
3552
|
-
flex-shrink: 0;
|
|
3553
|
-
justify-content: center;
|
|
3554
|
-
align-items: center;
|
|
3555
|
-
display: flex;
|
|
3556
|
-
}
|
|
3557
|
-
|
|
3558
|
-
.default__e4li7y3 {
|
|
3559
|
-
background-color: #0000;
|
|
3560
|
-
}
|
|
3561
|
-
|
|
3562
|
-
.icon__e4li7y4 {
|
|
3563
|
-
width: var(--spacing-8);
|
|
3564
|
-
height: var(--spacing-8);
|
|
3565
|
-
border-radius: var(--borderRadius-md);
|
|
3566
|
-
background-color: var(--colors-background-element);
|
|
3567
|
-
color: var(--colors-text-primary);
|
|
3568
|
-
flex-shrink: 0;
|
|
3569
|
-
}
|
|
3570
|
-
|
|
3571
|
-
.style__e4li7y2 svg {
|
|
3572
|
-
pointer-events: none;
|
|
3573
|
-
flex-shrink: 0;
|
|
3574
|
-
}
|
|
3575
|
-
|
|
3576
|
-
.icon__e4li7y4 svg:not([class*="size-"]) {
|
|
3577
|
-
width: var(--spacing-4);
|
|
3578
|
-
height: var(--spacing-4);
|
|
3579
|
-
}
|
|
3580
|
-
|
|
3581
|
-
.style__e4li7y5 {
|
|
3582
|
-
font-size: var(--fontSize-sm);
|
|
3583
|
-
font-weight: var(--fontWeight-medium);
|
|
3584
|
-
line-height: var(--lineHeight-normal);
|
|
3585
|
-
}
|
|
3586
|
-
|
|
3587
|
-
.style__e4li7y6 {
|
|
3588
|
-
color: var(--colors-text-secondary);
|
|
3589
|
-
font-size: var(--fontSize-sm);
|
|
3590
|
-
line-height: var(--lineHeight-relaxed);
|
|
3591
|
-
}
|
|
3592
|
-
|
|
3593
|
-
.style__e4li7y6 a {
|
|
3594
|
-
text-decoration: underline;
|
|
3595
|
-
}
|
|
3596
|
-
|
|
3597
|
-
.style__e4li7y6 a:hover {
|
|
3598
|
-
color: var(--colors-primary);
|
|
3599
|
-
}
|
|
3600
|
-
|
|
3601
|
-
.style__e4li7y7 {
|
|
3602
|
-
width: 100%;
|
|
3603
|
-
min-width: 0;
|
|
3604
|
-
max-width: 24rem;
|
|
3605
|
-
font-size: var(--fontSize-sm);
|
|
3606
|
-
text-wrap: balance;
|
|
3607
|
-
flex-direction: column;
|
|
3608
|
-
align-items: center;
|
|
3609
|
-
gap: .625rem;
|
|
3610
|
-
display: flex;
|
|
3611
|
-
}
|
|
3612
|
-
|
|
3613
3668
|
.style__a5l83v0 {
|
|
3614
3669
|
width: 100%;
|
|
3615
3670
|
max-width: 800px;
|