@vygruppen/spor-react 6.0.0 → 6.2.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/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +18 -0
- package/dist/{CountryCodeSelect-EM747ZM6.mjs → CountryCodeSelect-QBDQ3HTF.mjs} +1 -1
- package/dist/{chunk-GAHDJA6T.mjs → chunk-UIM4MXLY.mjs} +140 -119
- package/dist/index.d.mts +122 -38
- package/dist/index.d.ts +122 -38
- package/dist/index.js +138 -118
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/button/Button.tsx +44 -43
- package/src/button/IconButton.tsx +4 -0
- package/src/linjetag/InfoTag.tsx +23 -2
- package/src/linjetag/LineIcon.tsx +38 -5
- package/src/linjetag/TravelTag.tsx +21 -1
- package/src/linjetag/types.d.ts +17 -2
- package/src/theme/components/button.ts +47 -74
- package/src/theme/components/card-select.ts +1 -0
- package/src/theme/components/line-icon.ts +5 -0
- package/src/theme/components/travel-tag.ts +5 -0
package/dist/index.d.mts
CHANGED
@@ -265,7 +265,9 @@ type ButtonProps = Exclude<ButtonProps$1, "colorScheme" | "loadingText" | "size"
|
|
265
265
|
size?: "xs" | "sm" | "md" | "lg";
|
266
266
|
/** The different variants of a button
|
267
267
|
*
|
268
|
-
* Defaults to "primary"
|
268
|
+
* Defaults to "primary".
|
269
|
+
*
|
270
|
+
* "control" is deprecated, and will be removed in a future version
|
269
271
|
*/
|
270
272
|
variant?: "control" | "primary" | "secondary" | "tertiary" | "ghost" | "floating";
|
271
273
|
};
|
@@ -274,7 +276,6 @@ type ButtonProps = Exclude<ButtonProps$1, "colorScheme" | "loadingText" | "size"
|
|
274
276
|
*
|
275
277
|
* There are several button variants. You can specify which one you want with the `variant` prop. The available variants are:
|
276
278
|
*
|
277
|
-
* - `control`: This button is used for ticket controls only.
|
278
279
|
* - `primary`: This is our main button. It's used for the main actions in a view, like a call to action. There should only be a single primary button in each view.
|
279
280
|
* - `secondary`: Used for secondary actions in a view, and when you need to make several actions available at the same time.
|
280
281
|
* - `tertiary`: Used for additional choices, like a less important secondary action.
|
@@ -335,6 +336,10 @@ type ButtonGroupProps = ButtonGroupProps$1;
|
|
335
336
|
declare const ButtonGroup: _chakra_ui_system_dist_system_types.ComponentWithAs<"div", ButtonGroupProps$1>;
|
336
337
|
|
337
338
|
type IconButtonProps = Omit<IconButtonProps$1, "variant"> & {
|
339
|
+
/** The button variant.
|
340
|
+
*
|
341
|
+
* "control" is deprecated
|
342
|
+
*/
|
338
343
|
variant: "control" | "primary" | "secondary" | "tertiary" | "ghost" | "floating";
|
339
344
|
};
|
340
345
|
/**
|
@@ -1329,13 +1334,28 @@ type Variant =
|
|
1329
1334
|
|
1330
1335
|
type Size = "sm" | "md" | "lg";
|
1331
1336
|
|
1332
|
-
type TagProps = {
|
1333
|
-
variant: Variant;
|
1337
|
+
type TagProps = VariantProps$1 & {
|
1334
1338
|
size: Size;
|
1335
1339
|
title: string;
|
1336
1340
|
description?: string;
|
1337
1341
|
};
|
1338
1342
|
|
1343
|
+
type DefaultVariantProps$1 = {
|
1344
|
+
variant: Variant;
|
1345
|
+
};
|
1346
|
+
type CustomVariantProps$1 = {
|
1347
|
+
variant: "custom";
|
1348
|
+
/** When variant="custom", the foreground color of the tag */
|
1349
|
+
foregroundColor: string;
|
1350
|
+
/** When variant="custom", the background color of the tag */
|
1351
|
+
backgroundColor: string;
|
1352
|
+
/** When variant="custom", this is the icon you want to display.
|
1353
|
+
* It should be one of the other variants
|
1354
|
+
*/
|
1355
|
+
customIconVariant: Variant;
|
1356
|
+
};
|
1357
|
+
type VariantProps$1 = DefaultVariantProps$1 | CustomVariantProps$1;
|
1358
|
+
|
1339
1359
|
type InfoTagProps = TagProps;
|
1340
1360
|
/**
|
1341
1361
|
* An info tag component.
|
@@ -1356,12 +1376,33 @@ type InfoTagProps = TagProps;
|
|
1356
1376
|
* />
|
1357
1377
|
* ```
|
1358
1378
|
*
|
1379
|
+
* If required, you can also override the colors and icons in these line tags:
|
1380
|
+
*
|
1381
|
+
* ```tsx
|
1382
|
+
* <InfoTag
|
1383
|
+
* variant="custom"
|
1384
|
+
* customIconVariant="ferry"
|
1385
|
+
* foregroundColor="#b4da55"
|
1386
|
+
* backgroundColor="#c0ffee"
|
1387
|
+
* />
|
1388
|
+
* ```
|
1389
|
+
*
|
1359
1390
|
* @see https://spor.vy.no/components/line-tags
|
1360
1391
|
*/
|
1361
|
-
declare const InfoTag: ({ variant, size, title, description, }: InfoTagProps) => React__default.JSX.Element;
|
1392
|
+
declare const InfoTag: ({ variant, size, title, description, ...customProps }: InfoTagProps) => React__default.JSX.Element;
|
1362
1393
|
|
1363
|
-
type
|
1364
|
-
|
1394
|
+
type DefaultVariants = Exclude<TagProps["variant"], "custom">;
|
1395
|
+
type DefaultVariantProps = {
|
1396
|
+
variant: DefaultVariants;
|
1397
|
+
};
|
1398
|
+
type CustomVariantProps = {
|
1399
|
+
variant: "custom";
|
1400
|
+
customIconVariant: DefaultVariants;
|
1401
|
+
foregroundColor: string;
|
1402
|
+
backgroundColor: string;
|
1403
|
+
};
|
1404
|
+
type VariantProps = DefaultVariantProps | CustomVariantProps;
|
1405
|
+
type LineIconProps = Exclude<BoxProps, "variant"> & VariantProps & {
|
1365
1406
|
size: TagProps["size"];
|
1366
1407
|
};
|
1367
1408
|
/**
|
@@ -1379,6 +1420,18 @@ type LineIconProps = BoxProps & {
|
|
1379
1420
|
* <LineIcon variant="subway" size="lg" />
|
1380
1421
|
* ```
|
1381
1422
|
*
|
1423
|
+
* If you require some one-off colors, but still want to use the line tag component,
|
1424
|
+
* you can do so like this:
|
1425
|
+
*
|
1426
|
+
* ```tsx
|
1427
|
+
* <LineIcon
|
1428
|
+
* variant="custom"
|
1429
|
+
* customIconVariant="ferry"
|
1430
|
+
* foregroundColor="#b4da55"
|
1431
|
+
* backgroundColor="#c0ffee"
|
1432
|
+
* />
|
1433
|
+
* ```
|
1434
|
+
*
|
1382
1435
|
* @see https://spor.vy.no/components/line-tags
|
1383
1436
|
*/
|
1384
1437
|
declare const LineIcon: ({ variant, size, sx, ...rest }: LineIconProps) => React__default.JSX.Element | null;
|
@@ -1422,6 +1475,19 @@ type TravelTagProps = TagProps & BoxProps & {
|
|
1422
1475
|
* />
|
1423
1476
|
* ```
|
1424
1477
|
*
|
1478
|
+
* If required, you can also override the colors and icons in these travel tags:
|
1479
|
+
*
|
1480
|
+
* ```tsx
|
1481
|
+
* <TravelTag
|
1482
|
+
* variant="custom"
|
1483
|
+
* customIconVariant="ferry"
|
1484
|
+
* foregroundColor="#b4da55"
|
1485
|
+
* backgroundColor="#c0ffee"
|
1486
|
+
* title="3"
|
1487
|
+
* description="Ringen"
|
1488
|
+
* />
|
1489
|
+
* ```
|
1490
|
+
*
|
1425
1491
|
* @see https://spor.vy.no/components/line-tags
|
1426
1492
|
*/
|
1427
1493
|
declare const TravelTag: _chakra_ui_system_dist_system_types.ComponentWithAs<As, TravelTagProps>;
|
@@ -2270,7 +2336,6 @@ declare const theme: {
|
|
2270
2336
|
baseStyle?: {
|
2271
2337
|
border: number;
|
2272
2338
|
borderRadius: string;
|
2273
|
-
fontWeight: string;
|
2274
2339
|
transitionProperty: string;
|
2275
2340
|
transitionDuration: string;
|
2276
2341
|
textWrap: string;
|
@@ -2297,56 +2362,69 @@ declare const theme: {
|
|
2297
2362
|
minHeight: number;
|
2298
2363
|
minWidth: number;
|
2299
2364
|
fontSize: string;
|
2365
|
+
fontWeight: string;
|
2300
2366
|
};
|
2301
2367
|
md: {
|
2302
2368
|
minHeight: number;
|
2303
2369
|
minWidth: number;
|
2304
2370
|
fontSize: string;
|
2371
|
+
fontWeight: string;
|
2305
2372
|
};
|
2306
2373
|
sm: {
|
2307
2374
|
minHeight: number;
|
2308
2375
|
minWidth: number;
|
2309
2376
|
fontSize: string;
|
2377
|
+
fontWeight: string;
|
2310
2378
|
};
|
2311
2379
|
xs: {
|
2312
2380
|
minHeight: number;
|
2313
2381
|
minWidth: number;
|
2314
2382
|
fontSize: string;
|
2315
2383
|
paddingX: number;
|
2384
|
+
fontWeight: string;
|
2316
2385
|
};
|
2317
2386
|
} | undefined;
|
2318
2387
|
variants?: {
|
2319
2388
|
primary: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
2389
|
+
backgroundColor: string;
|
2390
|
+
color: string;
|
2391
|
+
_focusVisible: {
|
2392
|
+
boxShadow: string;
|
2393
|
+
};
|
2320
2394
|
_hover: {
|
2321
2395
|
backgroundColor: string;
|
2322
2396
|
};
|
2323
2397
|
_active: {
|
2324
2398
|
backgroundColor: string;
|
2325
2399
|
};
|
2326
|
-
_focus: _chakra_ui_styled_system.SystemStyleObject;
|
2327
|
-
_focusVisible: _chakra_ui_styled_system.SystemStyleObject;
|
2328
|
-
"&[data-focus]:not([data-focus-visible])": _chakra_ui_styled_system.SystemStyleObject;
|
2329
|
-
backgroundColor: string;
|
2330
|
-
color: string;
|
2331
2400
|
};
|
2332
2401
|
secondary: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
2333
|
-
|
2402
|
+
backgroundColor: string;
|
2403
|
+
color: string;
|
2404
|
+
_hover: {
|
2334
2405
|
backgroundColor: string;
|
2406
|
+
};
|
2407
|
+
_focusVisible: {
|
2335
2408
|
boxShadow: string;
|
2336
2409
|
_hover: {
|
2337
2410
|
boxShadow: string;
|
2338
2411
|
};
|
2339
2412
|
};
|
2340
|
-
|
2341
|
-
_focusVisible: _chakra_ui_styled_system.SystemStyleObject;
|
2342
|
-
"&[data-focus]:not([data-focus-visible])": _chakra_ui_styled_system.SystemStyleObject;
|
2343
|
-
backgroundColor: string;
|
2344
|
-
color: string;
|
2345
|
-
_hover: {
|
2413
|
+
_active: {
|
2346
2414
|
backgroundColor: string;
|
2415
|
+
boxShadow: string;
|
2416
|
+
_hover: {
|
2417
|
+
boxShadow: string;
|
2418
|
+
};
|
2347
2419
|
};
|
2348
2420
|
};
|
2349
2421
|
tertiary: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
2422
|
+
backgroundColor: string;
|
2423
|
+
color: string;
|
2424
|
+
boxShadow: string;
|
2425
|
+
_focusVisible: {
|
2426
|
+
boxShadow: string;
|
2427
|
+
};
|
2350
2428
|
_hover: {
|
2351
2429
|
boxShadow: string;
|
2352
2430
|
};
|
@@ -2354,15 +2432,13 @@ declare const theme: {
|
|
2354
2432
|
boxShadow: string;
|
2355
2433
|
backgroundColor: string;
|
2356
2434
|
};
|
2357
|
-
_focus: _chakra_ui_styled_system.SystemStyleObject;
|
2358
|
-
_focusVisible: _chakra_ui_styled_system.SystemStyleObject;
|
2359
|
-
"&[data-focus]:not([data-focus-visible])": _chakra_ui_styled_system.SystemStyleObject;
|
2360
|
-
backgroundColor: string;
|
2361
|
-
color: string;
|
2362
|
-
fontWeight: string;
|
2363
|
-
boxShadow: string;
|
2364
2435
|
};
|
2365
2436
|
ghost: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
2437
|
+
backgroundColor: string;
|
2438
|
+
color: string;
|
2439
|
+
_focusVisible: {
|
2440
|
+
boxShadow: string;
|
2441
|
+
};
|
2366
2442
|
_hover: {
|
2367
2443
|
backgroundColor: string;
|
2368
2444
|
_disabled: {
|
@@ -2372,17 +2448,8 @@ declare const theme: {
|
|
2372
2448
|
_active: {
|
2373
2449
|
backgroundColor: string;
|
2374
2450
|
};
|
2375
|
-
_focus: _chakra_ui_styled_system.SystemStyleObject;
|
2376
|
-
_focusVisible: _chakra_ui_styled_system.SystemStyleObject;
|
2377
|
-
"&[data-focus]:not([data-focus-visible])": _chakra_ui_styled_system.SystemStyleObject;
|
2378
|
-
backgroundColor: string;
|
2379
|
-
color: string;
|
2380
|
-
fontWeight: string;
|
2381
2451
|
};
|
2382
2452
|
floating: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
2383
|
-
_focus: _chakra_ui_styled_system.SystemStyleObject;
|
2384
|
-
_focusVisible: _chakra_ui_styled_system.SystemStyleObject;
|
2385
|
-
"&[data-focus]:not([data-focus-visible])": _chakra_ui_styled_system.SystemStyleObject;
|
2386
2453
|
backgroundColor: string;
|
2387
2454
|
boxShadow: string;
|
2388
2455
|
_active: {
|
@@ -2392,6 +2459,12 @@ declare const theme: {
|
|
2392
2459
|
backgroundColor: string;
|
2393
2460
|
boxShadow: string;
|
2394
2461
|
};
|
2462
|
+
_focusVisible: {
|
2463
|
+
boxShadow: string;
|
2464
|
+
_hover: {
|
2465
|
+
boxShadow: string;
|
2466
|
+
};
|
2467
|
+
};
|
2395
2468
|
};
|
2396
2469
|
} | undefined;
|
2397
2470
|
defaultProps?: {
|
@@ -2541,6 +2614,7 @@ declare const theme: {
|
|
2541
2614
|
alignItems: string;
|
2542
2615
|
};
|
2543
2616
|
card: {
|
2617
|
+
backgroundColor: string;
|
2544
2618
|
borderRadius: string;
|
2545
2619
|
boxShadow: string;
|
2546
2620
|
padding: number;
|
@@ -3954,10 +4028,15 @@ declare const theme: {
|
|
3954
4028
|
};
|
3955
4029
|
};
|
3956
4030
|
};
|
4031
|
+
custom: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
4032
|
+
iconContainer: {
|
4033
|
+
backgroundColor: any;
|
4034
|
+
};
|
4035
|
+
};
|
3957
4036
|
} | undefined;
|
3958
4037
|
defaultProps?: {
|
3959
4038
|
size?: "sm" | "md" | "lg" | undefined;
|
3960
|
-
variant?: "alt-transport" | "local-train" | "region-train" | "region-express-train" | "long-distance-train" | "airport-express-train" | "vy-bus" | "local-bus" | "ferry" | "subway" | "tram" | "walk" | undefined;
|
4039
|
+
variant?: "custom" | "alt-transport" | "local-train" | "region-train" | "region-express-train" | "long-distance-train" | "airport-express-train" | "vy-bus" | "local-bus" | "ferry" | "subway" | "tram" | "walk" | undefined;
|
3961
4040
|
colorScheme?: string | undefined;
|
3962
4041
|
} | undefined;
|
3963
4042
|
parts: ("icon" | "iconContainer")[];
|
@@ -5543,10 +5622,15 @@ declare const theme: {
|
|
5543
5622
|
display: string;
|
5544
5623
|
};
|
5545
5624
|
};
|
5625
|
+
custom: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
5626
|
+
container: {
|
5627
|
+
backgroundColor: any;
|
5628
|
+
};
|
5629
|
+
};
|
5546
5630
|
} | undefined;
|
5547
5631
|
defaultProps?: {
|
5548
5632
|
size?: "sm" | "md" | "lg" | undefined;
|
5549
|
-
variant?: "alt-transport" | "local-train" | "region-train" | "region-express-train" | "long-distance-train" | "airport-express-train" | "vy-bus" | "local-bus" | "ferry" | "subway" | "tram" | "walk" | undefined;
|
5633
|
+
variant?: "custom" | "alt-transport" | "local-train" | "region-train" | "region-express-train" | "long-distance-train" | "airport-express-train" | "vy-bus" | "local-bus" | "ferry" | "subway" | "tram" | "walk" | undefined;
|
5550
5634
|
colorScheme?: string | undefined;
|
5551
5635
|
} | undefined;
|
5552
5636
|
parts: ("title" | "container" | "icon" | "description" | "iconContainer" | "textContainer" | "deviationIcon")[];
|
package/dist/index.d.ts
CHANGED
@@ -265,7 +265,9 @@ type ButtonProps = Exclude<ButtonProps$1, "colorScheme" | "loadingText" | "size"
|
|
265
265
|
size?: "xs" | "sm" | "md" | "lg";
|
266
266
|
/** The different variants of a button
|
267
267
|
*
|
268
|
-
* Defaults to "primary"
|
268
|
+
* Defaults to "primary".
|
269
|
+
*
|
270
|
+
* "control" is deprecated, and will be removed in a future version
|
269
271
|
*/
|
270
272
|
variant?: "control" | "primary" | "secondary" | "tertiary" | "ghost" | "floating";
|
271
273
|
};
|
@@ -274,7 +276,6 @@ type ButtonProps = Exclude<ButtonProps$1, "colorScheme" | "loadingText" | "size"
|
|
274
276
|
*
|
275
277
|
* There are several button variants. You can specify which one you want with the `variant` prop. The available variants are:
|
276
278
|
*
|
277
|
-
* - `control`: This button is used for ticket controls only.
|
278
279
|
* - `primary`: This is our main button. It's used for the main actions in a view, like a call to action. There should only be a single primary button in each view.
|
279
280
|
* - `secondary`: Used for secondary actions in a view, and when you need to make several actions available at the same time.
|
280
281
|
* - `tertiary`: Used for additional choices, like a less important secondary action.
|
@@ -335,6 +336,10 @@ type ButtonGroupProps = ButtonGroupProps$1;
|
|
335
336
|
declare const ButtonGroup: _chakra_ui_system_dist_system_types.ComponentWithAs<"div", ButtonGroupProps$1>;
|
336
337
|
|
337
338
|
type IconButtonProps = Omit<IconButtonProps$1, "variant"> & {
|
339
|
+
/** The button variant.
|
340
|
+
*
|
341
|
+
* "control" is deprecated
|
342
|
+
*/
|
338
343
|
variant: "control" | "primary" | "secondary" | "tertiary" | "ghost" | "floating";
|
339
344
|
};
|
340
345
|
/**
|
@@ -1329,13 +1334,28 @@ type Variant =
|
|
1329
1334
|
|
1330
1335
|
type Size = "sm" | "md" | "lg";
|
1331
1336
|
|
1332
|
-
type TagProps = {
|
1333
|
-
variant: Variant;
|
1337
|
+
type TagProps = VariantProps$1 & {
|
1334
1338
|
size: Size;
|
1335
1339
|
title: string;
|
1336
1340
|
description?: string;
|
1337
1341
|
};
|
1338
1342
|
|
1343
|
+
type DefaultVariantProps$1 = {
|
1344
|
+
variant: Variant;
|
1345
|
+
};
|
1346
|
+
type CustomVariantProps$1 = {
|
1347
|
+
variant: "custom";
|
1348
|
+
/** When variant="custom", the foreground color of the tag */
|
1349
|
+
foregroundColor: string;
|
1350
|
+
/** When variant="custom", the background color of the tag */
|
1351
|
+
backgroundColor: string;
|
1352
|
+
/** When variant="custom", this is the icon you want to display.
|
1353
|
+
* It should be one of the other variants
|
1354
|
+
*/
|
1355
|
+
customIconVariant: Variant;
|
1356
|
+
};
|
1357
|
+
type VariantProps$1 = DefaultVariantProps$1 | CustomVariantProps$1;
|
1358
|
+
|
1339
1359
|
type InfoTagProps = TagProps;
|
1340
1360
|
/**
|
1341
1361
|
* An info tag component.
|
@@ -1356,12 +1376,33 @@ type InfoTagProps = TagProps;
|
|
1356
1376
|
* />
|
1357
1377
|
* ```
|
1358
1378
|
*
|
1379
|
+
* If required, you can also override the colors and icons in these line tags:
|
1380
|
+
*
|
1381
|
+
* ```tsx
|
1382
|
+
* <InfoTag
|
1383
|
+
* variant="custom"
|
1384
|
+
* customIconVariant="ferry"
|
1385
|
+
* foregroundColor="#b4da55"
|
1386
|
+
* backgroundColor="#c0ffee"
|
1387
|
+
* />
|
1388
|
+
* ```
|
1389
|
+
*
|
1359
1390
|
* @see https://spor.vy.no/components/line-tags
|
1360
1391
|
*/
|
1361
|
-
declare const InfoTag: ({ variant, size, title, description, }: InfoTagProps) => React__default.JSX.Element;
|
1392
|
+
declare const InfoTag: ({ variant, size, title, description, ...customProps }: InfoTagProps) => React__default.JSX.Element;
|
1362
1393
|
|
1363
|
-
type
|
1364
|
-
|
1394
|
+
type DefaultVariants = Exclude<TagProps["variant"], "custom">;
|
1395
|
+
type DefaultVariantProps = {
|
1396
|
+
variant: DefaultVariants;
|
1397
|
+
};
|
1398
|
+
type CustomVariantProps = {
|
1399
|
+
variant: "custom";
|
1400
|
+
customIconVariant: DefaultVariants;
|
1401
|
+
foregroundColor: string;
|
1402
|
+
backgroundColor: string;
|
1403
|
+
};
|
1404
|
+
type VariantProps = DefaultVariantProps | CustomVariantProps;
|
1405
|
+
type LineIconProps = Exclude<BoxProps, "variant"> & VariantProps & {
|
1365
1406
|
size: TagProps["size"];
|
1366
1407
|
};
|
1367
1408
|
/**
|
@@ -1379,6 +1420,18 @@ type LineIconProps = BoxProps & {
|
|
1379
1420
|
* <LineIcon variant="subway" size="lg" />
|
1380
1421
|
* ```
|
1381
1422
|
*
|
1423
|
+
* If you require some one-off colors, but still want to use the line tag component,
|
1424
|
+
* you can do so like this:
|
1425
|
+
*
|
1426
|
+
* ```tsx
|
1427
|
+
* <LineIcon
|
1428
|
+
* variant="custom"
|
1429
|
+
* customIconVariant="ferry"
|
1430
|
+
* foregroundColor="#b4da55"
|
1431
|
+
* backgroundColor="#c0ffee"
|
1432
|
+
* />
|
1433
|
+
* ```
|
1434
|
+
*
|
1382
1435
|
* @see https://spor.vy.no/components/line-tags
|
1383
1436
|
*/
|
1384
1437
|
declare const LineIcon: ({ variant, size, sx, ...rest }: LineIconProps) => React__default.JSX.Element | null;
|
@@ -1422,6 +1475,19 @@ type TravelTagProps = TagProps & BoxProps & {
|
|
1422
1475
|
* />
|
1423
1476
|
* ```
|
1424
1477
|
*
|
1478
|
+
* If required, you can also override the colors and icons in these travel tags:
|
1479
|
+
*
|
1480
|
+
* ```tsx
|
1481
|
+
* <TravelTag
|
1482
|
+
* variant="custom"
|
1483
|
+
* customIconVariant="ferry"
|
1484
|
+
* foregroundColor="#b4da55"
|
1485
|
+
* backgroundColor="#c0ffee"
|
1486
|
+
* title="3"
|
1487
|
+
* description="Ringen"
|
1488
|
+
* />
|
1489
|
+
* ```
|
1490
|
+
*
|
1425
1491
|
* @see https://spor.vy.no/components/line-tags
|
1426
1492
|
*/
|
1427
1493
|
declare const TravelTag: _chakra_ui_system_dist_system_types.ComponentWithAs<As, TravelTagProps>;
|
@@ -2270,7 +2336,6 @@ declare const theme: {
|
|
2270
2336
|
baseStyle?: {
|
2271
2337
|
border: number;
|
2272
2338
|
borderRadius: string;
|
2273
|
-
fontWeight: string;
|
2274
2339
|
transitionProperty: string;
|
2275
2340
|
transitionDuration: string;
|
2276
2341
|
textWrap: string;
|
@@ -2297,56 +2362,69 @@ declare const theme: {
|
|
2297
2362
|
minHeight: number;
|
2298
2363
|
minWidth: number;
|
2299
2364
|
fontSize: string;
|
2365
|
+
fontWeight: string;
|
2300
2366
|
};
|
2301
2367
|
md: {
|
2302
2368
|
minHeight: number;
|
2303
2369
|
minWidth: number;
|
2304
2370
|
fontSize: string;
|
2371
|
+
fontWeight: string;
|
2305
2372
|
};
|
2306
2373
|
sm: {
|
2307
2374
|
minHeight: number;
|
2308
2375
|
minWidth: number;
|
2309
2376
|
fontSize: string;
|
2377
|
+
fontWeight: string;
|
2310
2378
|
};
|
2311
2379
|
xs: {
|
2312
2380
|
minHeight: number;
|
2313
2381
|
minWidth: number;
|
2314
2382
|
fontSize: string;
|
2315
2383
|
paddingX: number;
|
2384
|
+
fontWeight: string;
|
2316
2385
|
};
|
2317
2386
|
} | undefined;
|
2318
2387
|
variants?: {
|
2319
2388
|
primary: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
2389
|
+
backgroundColor: string;
|
2390
|
+
color: string;
|
2391
|
+
_focusVisible: {
|
2392
|
+
boxShadow: string;
|
2393
|
+
};
|
2320
2394
|
_hover: {
|
2321
2395
|
backgroundColor: string;
|
2322
2396
|
};
|
2323
2397
|
_active: {
|
2324
2398
|
backgroundColor: string;
|
2325
2399
|
};
|
2326
|
-
_focus: _chakra_ui_styled_system.SystemStyleObject;
|
2327
|
-
_focusVisible: _chakra_ui_styled_system.SystemStyleObject;
|
2328
|
-
"&[data-focus]:not([data-focus-visible])": _chakra_ui_styled_system.SystemStyleObject;
|
2329
|
-
backgroundColor: string;
|
2330
|
-
color: string;
|
2331
2400
|
};
|
2332
2401
|
secondary: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
2333
|
-
|
2402
|
+
backgroundColor: string;
|
2403
|
+
color: string;
|
2404
|
+
_hover: {
|
2334
2405
|
backgroundColor: string;
|
2406
|
+
};
|
2407
|
+
_focusVisible: {
|
2335
2408
|
boxShadow: string;
|
2336
2409
|
_hover: {
|
2337
2410
|
boxShadow: string;
|
2338
2411
|
};
|
2339
2412
|
};
|
2340
|
-
|
2341
|
-
_focusVisible: _chakra_ui_styled_system.SystemStyleObject;
|
2342
|
-
"&[data-focus]:not([data-focus-visible])": _chakra_ui_styled_system.SystemStyleObject;
|
2343
|
-
backgroundColor: string;
|
2344
|
-
color: string;
|
2345
|
-
_hover: {
|
2413
|
+
_active: {
|
2346
2414
|
backgroundColor: string;
|
2415
|
+
boxShadow: string;
|
2416
|
+
_hover: {
|
2417
|
+
boxShadow: string;
|
2418
|
+
};
|
2347
2419
|
};
|
2348
2420
|
};
|
2349
2421
|
tertiary: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
2422
|
+
backgroundColor: string;
|
2423
|
+
color: string;
|
2424
|
+
boxShadow: string;
|
2425
|
+
_focusVisible: {
|
2426
|
+
boxShadow: string;
|
2427
|
+
};
|
2350
2428
|
_hover: {
|
2351
2429
|
boxShadow: string;
|
2352
2430
|
};
|
@@ -2354,15 +2432,13 @@ declare const theme: {
|
|
2354
2432
|
boxShadow: string;
|
2355
2433
|
backgroundColor: string;
|
2356
2434
|
};
|
2357
|
-
_focus: _chakra_ui_styled_system.SystemStyleObject;
|
2358
|
-
_focusVisible: _chakra_ui_styled_system.SystemStyleObject;
|
2359
|
-
"&[data-focus]:not([data-focus-visible])": _chakra_ui_styled_system.SystemStyleObject;
|
2360
|
-
backgroundColor: string;
|
2361
|
-
color: string;
|
2362
|
-
fontWeight: string;
|
2363
|
-
boxShadow: string;
|
2364
2435
|
};
|
2365
2436
|
ghost: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
2437
|
+
backgroundColor: string;
|
2438
|
+
color: string;
|
2439
|
+
_focusVisible: {
|
2440
|
+
boxShadow: string;
|
2441
|
+
};
|
2366
2442
|
_hover: {
|
2367
2443
|
backgroundColor: string;
|
2368
2444
|
_disabled: {
|
@@ -2372,17 +2448,8 @@ declare const theme: {
|
|
2372
2448
|
_active: {
|
2373
2449
|
backgroundColor: string;
|
2374
2450
|
};
|
2375
|
-
_focus: _chakra_ui_styled_system.SystemStyleObject;
|
2376
|
-
_focusVisible: _chakra_ui_styled_system.SystemStyleObject;
|
2377
|
-
"&[data-focus]:not([data-focus-visible])": _chakra_ui_styled_system.SystemStyleObject;
|
2378
|
-
backgroundColor: string;
|
2379
|
-
color: string;
|
2380
|
-
fontWeight: string;
|
2381
2451
|
};
|
2382
2452
|
floating: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
2383
|
-
_focus: _chakra_ui_styled_system.SystemStyleObject;
|
2384
|
-
_focusVisible: _chakra_ui_styled_system.SystemStyleObject;
|
2385
|
-
"&[data-focus]:not([data-focus-visible])": _chakra_ui_styled_system.SystemStyleObject;
|
2386
2453
|
backgroundColor: string;
|
2387
2454
|
boxShadow: string;
|
2388
2455
|
_active: {
|
@@ -2392,6 +2459,12 @@ declare const theme: {
|
|
2392
2459
|
backgroundColor: string;
|
2393
2460
|
boxShadow: string;
|
2394
2461
|
};
|
2462
|
+
_focusVisible: {
|
2463
|
+
boxShadow: string;
|
2464
|
+
_hover: {
|
2465
|
+
boxShadow: string;
|
2466
|
+
};
|
2467
|
+
};
|
2395
2468
|
};
|
2396
2469
|
} | undefined;
|
2397
2470
|
defaultProps?: {
|
@@ -2541,6 +2614,7 @@ declare const theme: {
|
|
2541
2614
|
alignItems: string;
|
2542
2615
|
};
|
2543
2616
|
card: {
|
2617
|
+
backgroundColor: string;
|
2544
2618
|
borderRadius: string;
|
2545
2619
|
boxShadow: string;
|
2546
2620
|
padding: number;
|
@@ -3954,10 +4028,15 @@ declare const theme: {
|
|
3954
4028
|
};
|
3955
4029
|
};
|
3956
4030
|
};
|
4031
|
+
custom: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
4032
|
+
iconContainer: {
|
4033
|
+
backgroundColor: any;
|
4034
|
+
};
|
4035
|
+
};
|
3957
4036
|
} | undefined;
|
3958
4037
|
defaultProps?: {
|
3959
4038
|
size?: "sm" | "md" | "lg" | undefined;
|
3960
|
-
variant?: "alt-transport" | "local-train" | "region-train" | "region-express-train" | "long-distance-train" | "airport-express-train" | "vy-bus" | "local-bus" | "ferry" | "subway" | "tram" | "walk" | undefined;
|
4039
|
+
variant?: "custom" | "alt-transport" | "local-train" | "region-train" | "region-express-train" | "long-distance-train" | "airport-express-train" | "vy-bus" | "local-bus" | "ferry" | "subway" | "tram" | "walk" | undefined;
|
3961
4040
|
colorScheme?: string | undefined;
|
3962
4041
|
} | undefined;
|
3963
4042
|
parts: ("icon" | "iconContainer")[];
|
@@ -5543,10 +5622,15 @@ declare const theme: {
|
|
5543
5622
|
display: string;
|
5544
5623
|
};
|
5545
5624
|
};
|
5625
|
+
custom: (props: _chakra_ui_styled_system.StyleFunctionProps) => {
|
5626
|
+
container: {
|
5627
|
+
backgroundColor: any;
|
5628
|
+
};
|
5629
|
+
};
|
5546
5630
|
} | undefined;
|
5547
5631
|
defaultProps?: {
|
5548
5632
|
size?: "sm" | "md" | "lg" | undefined;
|
5549
|
-
variant?: "alt-transport" | "local-train" | "region-train" | "region-express-train" | "long-distance-train" | "airport-express-train" | "vy-bus" | "local-bus" | "ferry" | "subway" | "tram" | "walk" | undefined;
|
5633
|
+
variant?: "custom" | "alt-transport" | "local-train" | "region-train" | "region-express-train" | "long-distance-train" | "airport-express-train" | "vy-bus" | "local-bus" | "ferry" | "subway" | "tram" | "walk" | undefined;
|
5550
5634
|
colorScheme?: string | undefined;
|
5551
5635
|
} | undefined;
|
5552
5636
|
parts: ("title" | "container" | "icon" | "description" | "iconContainer" | "textContainer" | "deviationIcon")[];
|