tide-design-system 2.0.53 → 2.1.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/.storybook/main.ts +3 -3
- package/.storybook/preview.ts +0 -4
- package/dist/css/dynamic-utilities.css +0 -1
- package/dist/css/realm/aero.css +31 -37
- package/dist/css/realm/atv.css +21 -41
- package/dist/css/realm/boatmart.css +20 -40
- package/dist/css/realm/cycle.css +19 -39
- package/dist/css/realm/equipment.css +31 -37
- package/dist/css/realm/pwc.css +31 -37
- package/dist/css/realm/rv.css +20 -39
- package/dist/css/realm/snow.css +31 -37
- package/dist/css/realm/truck.css +31 -37
- package/dist/css/variables.css +18 -0
- package/dist/style.css +1 -1
- package/dist/tide-design-system.cjs +2 -2
- package/dist/tide-design-system.esm.d.ts +224 -213
- package/dist/tide-design-system.esm.js +567 -614
- package/dist/utilities/storybook.ts +4 -3
- package/index.ts +4 -4
- package/package.json +1 -1
- package/src/assets/css/dynamic-utilities.css +0 -1
- package/src/assets/css/realm/aero.css +31 -37
- package/src/assets/css/realm/atv.css +21 -41
- package/src/assets/css/realm/boatmart.css +20 -40
- package/src/assets/css/realm/cycle.css +19 -39
- package/src/assets/css/realm/equipment.css +31 -37
- package/src/assets/css/realm/pwc.css +31 -37
- package/src/assets/css/realm/rv.css +20 -39
- package/src/assets/css/realm/snow.css +31 -37
- package/src/assets/css/realm/truck.css +31 -37
- package/src/assets/css/variables.css +18 -0
- package/src/components/TideAccordionItem.vue +27 -56
- package/src/components/TideAlert.vue +15 -15
- package/src/components/TideBreadCrumbs.vue +6 -7
- package/src/components/{TideTabs.vue → TideButtonSegmented.vue} +9 -15
- package/src/components/TideCarousel.vue +1 -1
- package/src/components/TideModal.vue +3 -3
- package/src/components/TidePagination.vue +4 -4
- package/src/components/{TideToggle.vue → TideSwitch.vue} +18 -26
- package/src/stories/TideAccordionItem.stories.ts +37 -12
- package/src/stories/TideBackgroundImage.stories.ts +2 -6
- package/src/stories/TideButton.stories.ts +5 -5
- package/src/stories/TideButtonIcon.stories.ts +5 -5
- package/src/stories/TideButtonPagination.stories.ts +5 -5
- package/src/stories/{TideTabs.stories.ts → TideButtonSegmented.stories.ts} +18 -21
- package/src/stories/TideCard.stories.ts +5 -5
- package/src/stories/TideCarousel.stories.ts +11 -24
- package/src/stories/TideChipFilter.stories.ts +14 -4
- package/src/stories/TideChipInput.stories.ts +14 -3
- package/src/stories/TideInputCheckbox.stories.ts +5 -5
- package/src/stories/TideInputRadio.stories.ts +18 -5
- package/src/stories/TideInputSelect.stories.ts +5 -5
- package/src/stories/TideInputText.stories.ts +4 -7
- package/src/stories/TideInputTextarea.stories.ts +2 -2
- package/src/stories/TideLink.stories.ts +4 -2
- package/src/stories/TideModal.stories.ts +6 -4
- package/src/stories/TidePagination.stories.ts +9 -10
- package/src/stories/{TideToggle.stories.ts → TideSwitch.stories.ts} +15 -15
- package/src/types/Styles.ts +0 -1
- package/src/utilities/storybook.ts +4 -3
|
@@ -49,8 +49,14 @@ declare type __VLS_NonUndefinedable_27<T> = T extends undefined ? never : T;
|
|
|
49
49
|
|
|
50
50
|
declare type __VLS_NonUndefinedable_28<T> = T extends undefined ? never : T;
|
|
51
51
|
|
|
52
|
+
declare type __VLS_NonUndefinedable_29<T> = T extends undefined ? never : T;
|
|
53
|
+
|
|
52
54
|
declare type __VLS_NonUndefinedable_3<T> = T extends undefined ? never : T;
|
|
53
55
|
|
|
56
|
+
declare type __VLS_NonUndefinedable_30<T> = T extends undefined ? never : T;
|
|
57
|
+
|
|
58
|
+
declare type __VLS_NonUndefinedable_31<T> = T extends undefined ? never : T;
|
|
59
|
+
|
|
54
60
|
declare type __VLS_NonUndefinedable_4<T> = T extends undefined ? never : T;
|
|
55
61
|
|
|
56
62
|
declare type __VLS_NonUndefinedable_5<T> = T extends undefined ? never : T;
|
|
@@ -127,6 +133,18 @@ declare type __VLS_PrettifyLocal_23<T> = {
|
|
|
127
133
|
[K in keyof T]: T[K];
|
|
128
134
|
} & {};
|
|
129
135
|
|
|
136
|
+
declare type __VLS_PrettifyLocal_24<T> = {
|
|
137
|
+
[K in keyof T]: T[K];
|
|
138
|
+
} & {};
|
|
139
|
+
|
|
140
|
+
declare type __VLS_PrettifyLocal_25<T> = {
|
|
141
|
+
[K in keyof T]: T[K];
|
|
142
|
+
} & {};
|
|
143
|
+
|
|
144
|
+
declare type __VLS_PrettifyLocal_26<T> = {
|
|
145
|
+
[K in keyof T]: T[K];
|
|
146
|
+
} & {};
|
|
147
|
+
|
|
130
148
|
declare type __VLS_PrettifyLocal_3<T> = {
|
|
131
149
|
[K in keyof T]: T[K];
|
|
132
150
|
} & {};
|
|
@@ -344,6 +362,15 @@ declare type __VLS_TypePropsToOption_28<T> = {
|
|
|
344
362
|
};
|
|
345
363
|
};
|
|
346
364
|
|
|
365
|
+
declare type __VLS_TypePropsToOption_29<T> = {
|
|
366
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
367
|
+
type: PropType<__VLS_NonUndefinedable_29<T[K]>>;
|
|
368
|
+
} : {
|
|
369
|
+
type: PropType<T[K]>;
|
|
370
|
+
required: true;
|
|
371
|
+
};
|
|
372
|
+
};
|
|
373
|
+
|
|
347
374
|
declare type __VLS_TypePropsToOption_3<T> = {
|
|
348
375
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
349
376
|
type: PropType<__VLS_NonUndefinedable_3<T[K]>>;
|
|
@@ -353,6 +380,24 @@ declare type __VLS_TypePropsToOption_3<T> = {
|
|
|
353
380
|
};
|
|
354
381
|
};
|
|
355
382
|
|
|
383
|
+
declare type __VLS_TypePropsToOption_30<T> = {
|
|
384
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
385
|
+
type: PropType<__VLS_NonUndefinedable_30<T[K]>>;
|
|
386
|
+
} : {
|
|
387
|
+
type: PropType<T[K]>;
|
|
388
|
+
required: true;
|
|
389
|
+
};
|
|
390
|
+
};
|
|
391
|
+
|
|
392
|
+
declare type __VLS_TypePropsToOption_31<T> = {
|
|
393
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
394
|
+
type: PropType<__VLS_NonUndefinedable_31<T[K]>>;
|
|
395
|
+
} : {
|
|
396
|
+
type: PropType<T[K]>;
|
|
397
|
+
required: true;
|
|
398
|
+
};
|
|
399
|
+
};
|
|
400
|
+
|
|
356
401
|
declare type __VLS_TypePropsToOption_4<T> = {
|
|
357
402
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
358
403
|
type: PropType<__VLS_NonUndefinedable_4<T[K]>>;
|
|
@@ -503,6 +548,24 @@ declare type __VLS_WithDefaults_23<P, D> = {
|
|
|
503
548
|
}> : P[K];
|
|
504
549
|
};
|
|
505
550
|
|
|
551
|
+
declare type __VLS_WithDefaults_24<P, D> = {
|
|
552
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal_24<P[K] & {
|
|
553
|
+
default: D[K];
|
|
554
|
+
}> : P[K];
|
|
555
|
+
};
|
|
556
|
+
|
|
557
|
+
declare type __VLS_WithDefaults_25<P, D> = {
|
|
558
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal_25<P[K] & {
|
|
559
|
+
default: D[K];
|
|
560
|
+
}> : P[K];
|
|
561
|
+
};
|
|
562
|
+
|
|
563
|
+
declare type __VLS_WithDefaults_26<P, D> = {
|
|
564
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal_26<P[K] & {
|
|
565
|
+
default: D[K];
|
|
566
|
+
}> : P[K];
|
|
567
|
+
};
|
|
568
|
+
|
|
506
569
|
declare type __VLS_WithDefaults_3<P, D> = {
|
|
507
570
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal_3<P[K] & {
|
|
508
571
|
default: D[K];
|
|
@@ -696,7 +759,6 @@ declare const CSS_2: {
|
|
|
696
759
|
readonly SUCCESS: "tide-bg-success";
|
|
697
760
|
readonly SURFACE: {
|
|
698
761
|
readonly ACCENT: "tide-bg-surface-accent";
|
|
699
|
-
readonly ACCENT_VARIANT: "tide-bg-surface-accent-variant";
|
|
700
762
|
readonly BRAND: "tide-bg-surface-brand";
|
|
701
763
|
readonly DEFAULT: "tide-bg-surface";
|
|
702
764
|
readonly ERROR: "tide-bg-surface-error";
|
|
@@ -1378,45 +1440,75 @@ export declare const PRIORITY: {
|
|
|
1378
1440
|
export declare type Priority = (typeof PRIORITY)[keyof typeof PRIORITY];
|
|
1379
1441
|
|
|
1380
1442
|
declare type Props = {
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1443
|
+
hasBottomDivider?: boolean;
|
|
1444
|
+
hasTopDivider?: boolean;
|
|
1445
|
+
isExpanded?: boolean;
|
|
1446
|
+
isOptional?: boolean;
|
|
1447
|
+
label: string;
|
|
1384
1448
|
};
|
|
1385
1449
|
|
|
1386
1450
|
declare type Props_10 = {
|
|
1451
|
+
disabled?: boolean;
|
|
1452
|
+
element?: ElementTextAsIcon;
|
|
1453
|
+
href?: string;
|
|
1454
|
+
label: string | number;
|
|
1455
|
+
};
|
|
1456
|
+
|
|
1457
|
+
declare type Props_11 = {
|
|
1458
|
+
activeTab: number;
|
|
1459
|
+
tabs: Tab[];
|
|
1460
|
+
};
|
|
1461
|
+
|
|
1462
|
+
declare type Props_12 = {
|
|
1463
|
+
description?: string;
|
|
1464
|
+
heading: string;
|
|
1465
|
+
icon?: Icon;
|
|
1466
|
+
iconPosition: CardIconPosition;
|
|
1467
|
+
selected?: boolean;
|
|
1468
|
+
type: CardType;
|
|
1469
|
+
href?: string;
|
|
1470
|
+
};
|
|
1471
|
+
|
|
1472
|
+
declare type Props_13 = {
|
|
1387
1473
|
isTouchscreen?: boolean;
|
|
1388
1474
|
offsetX?: number;
|
|
1389
1475
|
};
|
|
1390
1476
|
|
|
1391
|
-
declare type
|
|
1477
|
+
declare type Props_14 = {
|
|
1392
1478
|
href: string;
|
|
1393
1479
|
isNewTab?: boolean;
|
|
1394
1480
|
label: string;
|
|
1395
1481
|
};
|
|
1396
1482
|
|
|
1397
|
-
declare type
|
|
1483
|
+
declare type Props_15 = {
|
|
1398
1484
|
isActive: boolean;
|
|
1399
1485
|
label: string;
|
|
1400
1486
|
};
|
|
1401
1487
|
|
|
1402
|
-
declare type
|
|
1488
|
+
declare type Props_16 = {
|
|
1403
1489
|
label: string;
|
|
1404
1490
|
};
|
|
1405
1491
|
|
|
1406
|
-
declare type
|
|
1492
|
+
declare type Props_17 = {
|
|
1407
1493
|
heading?: string;
|
|
1408
1494
|
};
|
|
1409
1495
|
|
|
1410
|
-
declare type
|
|
1496
|
+
declare type Props_18 = {
|
|
1411
1497
|
orientation?: Orientation;
|
|
1412
1498
|
};
|
|
1413
1499
|
|
|
1414
|
-
declare type
|
|
1500
|
+
declare type Props_19 = {
|
|
1415
1501
|
icon: Icon;
|
|
1416
1502
|
size?: Size;
|
|
1417
1503
|
};
|
|
1418
1504
|
|
|
1419
|
-
declare type
|
|
1505
|
+
declare type Props_2 = {
|
|
1506
|
+
heading?: string;
|
|
1507
|
+
isToast?: boolean;
|
|
1508
|
+
type?: Alert;
|
|
1509
|
+
};
|
|
1510
|
+
|
|
1511
|
+
declare type Props_20 = {
|
|
1420
1512
|
alt: string;
|
|
1421
1513
|
height?: string;
|
|
1422
1514
|
isLazy?: boolean;
|
|
@@ -1425,11 +1517,11 @@ declare type Props_17 = {
|
|
|
1425
1517
|
width?: string;
|
|
1426
1518
|
};
|
|
1427
1519
|
|
|
1428
|
-
declare type
|
|
1520
|
+
declare type Props_21 = {
|
|
1429
1521
|
label?: string | number;
|
|
1430
1522
|
};
|
|
1431
1523
|
|
|
1432
|
-
declare type
|
|
1524
|
+
declare type Props_22 = {
|
|
1433
1525
|
checked?: boolean;
|
|
1434
1526
|
dataTrack?: string;
|
|
1435
1527
|
disabled?: boolean;
|
|
@@ -1440,14 +1532,7 @@ declare type Props_19 = {
|
|
|
1440
1532
|
number?: number | undefined;
|
|
1441
1533
|
};
|
|
1442
1534
|
|
|
1443
|
-
declare type
|
|
1444
|
-
alt: string;
|
|
1445
|
-
isLazy: boolean;
|
|
1446
|
-
sources?: Source[];
|
|
1447
|
-
src?: string;
|
|
1448
|
-
};
|
|
1449
|
-
|
|
1450
|
-
declare type Props_20 = {
|
|
1535
|
+
declare type Props_23 = {
|
|
1451
1536
|
checked?: boolean;
|
|
1452
1537
|
dataTrack?: string;
|
|
1453
1538
|
disabled?: boolean;
|
|
@@ -1456,12 +1541,12 @@ declare type Props_20 = {
|
|
|
1456
1541
|
name: string;
|
|
1457
1542
|
};
|
|
1458
1543
|
|
|
1459
|
-
declare interface
|
|
1544
|
+
declare interface Props_24 extends SelectField {
|
|
1460
1545
|
inputId?: string;
|
|
1461
1546
|
supportingText?: string;
|
|
1462
1547
|
}
|
|
1463
1548
|
|
|
1464
|
-
declare type
|
|
1549
|
+
declare type Props_25 = {
|
|
1465
1550
|
autocomplete?: boolean;
|
|
1466
1551
|
dataTrack?: string;
|
|
1467
1552
|
disabled?: boolean;
|
|
@@ -1483,7 +1568,7 @@ declare type Props_22 = {
|
|
|
1483
1568
|
value?: string;
|
|
1484
1569
|
};
|
|
1485
1570
|
|
|
1486
|
-
declare type
|
|
1571
|
+
declare type Props_26 = {
|
|
1487
1572
|
dataTrack?: string;
|
|
1488
1573
|
error?: ValidationError;
|
|
1489
1574
|
inputId?: string;
|
|
@@ -1497,7 +1582,7 @@ declare type Props_23 = {
|
|
|
1497
1582
|
value?: string;
|
|
1498
1583
|
};
|
|
1499
1584
|
|
|
1500
|
-
declare type
|
|
1585
|
+
declare type Props_27 = {
|
|
1501
1586
|
element?: Element_2;
|
|
1502
1587
|
href?: string;
|
|
1503
1588
|
iconLeading?: Icon;
|
|
@@ -1507,40 +1592,51 @@ declare type Props_24 = {
|
|
|
1507
1592
|
typography?: (typeof CSS_2.FONT.ROLE)['LINK_1' | 'LINK_2' | 'LINK_3'];
|
|
1508
1593
|
};
|
|
1509
1594
|
|
|
1510
|
-
declare type
|
|
1595
|
+
declare type Props_28 = {
|
|
1511
1596
|
isOpen: boolean;
|
|
1512
1597
|
title?: string;
|
|
1513
1598
|
width?: string;
|
|
1514
1599
|
};
|
|
1515
1600
|
|
|
1516
|
-
declare type
|
|
1601
|
+
declare type Props_29 = {
|
|
1517
1602
|
pageCurrent?: number;
|
|
1518
1603
|
pageTotal?: number;
|
|
1519
1604
|
};
|
|
1520
1605
|
|
|
1521
|
-
declare type
|
|
1606
|
+
declare type Props_3 = {
|
|
1607
|
+
alt: string;
|
|
1608
|
+
isLazy: boolean;
|
|
1609
|
+
sources?: Source[];
|
|
1610
|
+
src?: string;
|
|
1611
|
+
};
|
|
1612
|
+
|
|
1613
|
+
declare type Props_30 = {
|
|
1522
1614
|
heading?: string;
|
|
1523
1615
|
links: Link[];
|
|
1524
1616
|
};
|
|
1525
1617
|
|
|
1526
|
-
declare type
|
|
1527
|
-
|
|
1528
|
-
|
|
1618
|
+
declare type Props_31 = {
|
|
1619
|
+
disabled?: boolean;
|
|
1620
|
+
isActive?: boolean;
|
|
1529
1621
|
};
|
|
1530
1622
|
|
|
1531
|
-
declare type
|
|
1623
|
+
declare type Props_4 = {
|
|
1532
1624
|
label: string;
|
|
1533
1625
|
};
|
|
1534
1626
|
|
|
1535
|
-
declare type
|
|
1627
|
+
declare type Props_5 = {
|
|
1536
1628
|
label: BadgePremium;
|
|
1537
1629
|
};
|
|
1538
1630
|
|
|
1539
|
-
declare type
|
|
1631
|
+
declare type Props_6 = {
|
|
1540
1632
|
years?: BadgeTrustedYears;
|
|
1541
1633
|
};
|
|
1542
1634
|
|
|
1543
|
-
declare type
|
|
1635
|
+
declare type Props_7 = {
|
|
1636
|
+
breadCrumbs: BreadCrumb[];
|
|
1637
|
+
};
|
|
1638
|
+
|
|
1639
|
+
declare type Props_8 = {
|
|
1544
1640
|
disabled?: boolean;
|
|
1545
1641
|
element?: Element_2;
|
|
1546
1642
|
href?: string;
|
|
@@ -1552,7 +1648,7 @@ declare type Props_6 = {
|
|
|
1552
1648
|
size?: SizeButton;
|
|
1553
1649
|
};
|
|
1554
1650
|
|
|
1555
|
-
declare type
|
|
1651
|
+
declare type Props_9 = {
|
|
1556
1652
|
disabled?: boolean;
|
|
1557
1653
|
element?: Element_2;
|
|
1558
1654
|
href?: string;
|
|
@@ -1561,23 +1657,6 @@ declare type Props_7 = {
|
|
|
1561
1657
|
priority?: Priority;
|
|
1562
1658
|
};
|
|
1563
1659
|
|
|
1564
|
-
declare type Props_8 = {
|
|
1565
|
-
disabled?: boolean;
|
|
1566
|
-
element?: ElementTextAsIcon;
|
|
1567
|
-
href?: string;
|
|
1568
|
-
label: string | number;
|
|
1569
|
-
};
|
|
1570
|
-
|
|
1571
|
-
declare type Props_9 = {
|
|
1572
|
-
description?: string;
|
|
1573
|
-
heading: string;
|
|
1574
|
-
icon?: Icon;
|
|
1575
|
-
iconPosition: CardIconPosition;
|
|
1576
|
-
selected?: boolean;
|
|
1577
|
-
type: CardType;
|
|
1578
|
-
href?: string;
|
|
1579
|
-
};
|
|
1580
|
-
|
|
1581
1660
|
export declare type RangeData = {
|
|
1582
1661
|
min: number | null;
|
|
1583
1662
|
max: number | null;
|
|
@@ -1737,84 +1816,37 @@ export declare type TextInput = GenericInput_2 & StringValue_2 & {
|
|
|
1737
1816
|
|
|
1738
1817
|
export declare type TextInputType = (typeof TEXT_INPUT_TYPE)[keyof typeof TEXT_INPUT_TYPE];
|
|
1739
1818
|
|
|
1740
|
-
export declare const TideAccordionItem: __VLS_WithTemplateSlots<DefineComponent<
|
|
1741
|
-
hasBottomDivider:
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
};
|
|
1746
|
-
hasTopDivider: {
|
|
1747
|
-
default: boolean;
|
|
1748
|
-
required: false;
|
|
1749
|
-
type: BooleanConstructor;
|
|
1750
|
-
};
|
|
1751
|
-
isActive: {
|
|
1752
|
-
default: boolean;
|
|
1753
|
-
required: false;
|
|
1754
|
-
type: BooleanConstructor;
|
|
1755
|
-
};
|
|
1756
|
-
isExpandedInitial: {
|
|
1757
|
-
default: boolean;
|
|
1758
|
-
required: false;
|
|
1759
|
-
type: BooleanConstructor;
|
|
1760
|
-
};
|
|
1761
|
-
isOptional: {
|
|
1762
|
-
default: boolean;
|
|
1763
|
-
required: false;
|
|
1764
|
-
type: BooleanConstructor;
|
|
1765
|
-
};
|
|
1766
|
-
label: {
|
|
1767
|
-
default: string;
|
|
1768
|
-
required: true;
|
|
1769
|
-
type: StringConstructor;
|
|
1770
|
-
};
|
|
1771
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
1772
|
-
hasBottomDivider: {
|
|
1773
|
-
default: boolean;
|
|
1774
|
-
required: false;
|
|
1775
|
-
type: BooleanConstructor;
|
|
1776
|
-
};
|
|
1777
|
-
hasTopDivider: {
|
|
1778
|
-
default: boolean;
|
|
1779
|
-
required: false;
|
|
1780
|
-
type: BooleanConstructor;
|
|
1781
|
-
};
|
|
1782
|
-
isActive: {
|
|
1783
|
-
default: boolean;
|
|
1784
|
-
required: false;
|
|
1785
|
-
type: BooleanConstructor;
|
|
1786
|
-
};
|
|
1787
|
-
isExpandedInitial: {
|
|
1788
|
-
default: boolean;
|
|
1789
|
-
required: false;
|
|
1790
|
-
type: BooleanConstructor;
|
|
1791
|
-
};
|
|
1792
|
-
isOptional: {
|
|
1793
|
-
default: boolean;
|
|
1794
|
-
required: false;
|
|
1795
|
-
type: BooleanConstructor;
|
|
1796
|
-
};
|
|
1797
|
-
label: {
|
|
1798
|
-
default: string;
|
|
1799
|
-
required: true;
|
|
1800
|
-
type: StringConstructor;
|
|
1801
|
-
};
|
|
1802
|
-
}>>, {
|
|
1819
|
+
export declare const TideAccordionItem: __VLS_WithTemplateSlots<DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
1820
|
+
hasBottomDivider: boolean;
|
|
1821
|
+
hasTopDivider: boolean;
|
|
1822
|
+
isExpanded: boolean;
|
|
1823
|
+
isOptional: boolean;
|
|
1803
1824
|
label: string;
|
|
1825
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1826
|
+
toggle: (...args: any[]) => void;
|
|
1827
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
1804
1828
|
hasBottomDivider: boolean;
|
|
1805
1829
|
hasTopDivider: boolean;
|
|
1806
|
-
|
|
1807
|
-
|
|
1830
|
+
isExpanded: boolean;
|
|
1831
|
+
isOptional: boolean;
|
|
1832
|
+
label: string;
|
|
1833
|
+
}>>> & {
|
|
1834
|
+
onToggle?: ((...args: any[]) => any) | undefined;
|
|
1835
|
+
}, {
|
|
1836
|
+
label: string;
|
|
1837
|
+
hasBottomDivider: boolean;
|
|
1838
|
+
hasTopDivider: boolean;
|
|
1839
|
+
isExpanded: boolean;
|
|
1808
1840
|
isOptional: boolean;
|
|
1809
1841
|
}, {}>, {
|
|
1810
1842
|
default?(_: {}): any;
|
|
1811
1843
|
}>;
|
|
1812
1844
|
|
|
1813
|
-
export declare const TideAlert: __VLS_WithTemplateSlots_2<DefineComponent<
|
|
1845
|
+
export declare const TideAlert: __VLS_WithTemplateSlots_2<DefineComponent<__VLS_WithDefaults_2<__VLS_TypePropsToOption_2<Props_2>, {
|
|
1814
1846
|
heading: undefined;
|
|
1815
1847
|
isToast: boolean;
|
|
1816
1848
|
type: "info";
|
|
1817
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1849
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_2<__VLS_TypePropsToOption_2<Props_2>, {
|
|
1818
1850
|
heading: undefined;
|
|
1819
1851
|
isToast: boolean;
|
|
1820
1852
|
type: "info";
|
|
@@ -1826,12 +1858,12 @@ isToast: boolean;
|
|
|
1826
1858
|
default?(_: {}): any;
|
|
1827
1859
|
}>;
|
|
1828
1860
|
|
|
1829
|
-
export declare const TideBackgroundImage: __VLS_WithTemplateSlots_3<DefineComponent<
|
|
1861
|
+
export declare const TideBackgroundImage: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_WithDefaults_3<__VLS_TypePropsToOption_3<Props_3>, {
|
|
1830
1862
|
alt: string;
|
|
1831
1863
|
isLazy: boolean;
|
|
1832
1864
|
sources: () => never[];
|
|
1833
1865
|
src: undefined;
|
|
1834
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1866
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_3<__VLS_TypePropsToOption_3<Props_3>, {
|
|
1835
1867
|
alt: string;
|
|
1836
1868
|
isLazy: boolean;
|
|
1837
1869
|
sources: () => never[];
|
|
@@ -1845,35 +1877,27 @@ src: string;
|
|
|
1845
1877
|
default?(_: {}): any;
|
|
1846
1878
|
}>;
|
|
1847
1879
|
|
|
1848
|
-
export declare const TideBadge: DefineComponent<
|
|
1880
|
+
export declare const TideBadge: DefineComponent<__VLS_TypePropsToOption_4<Props_4>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToOption_4<Props_4>>>, {}, {}>;
|
|
1849
1881
|
|
|
1850
|
-
export declare const TideBadgePremium: DefineComponent<
|
|
1882
|
+
export declare const TideBadgePremium: DefineComponent<__VLS_TypePropsToOption_5<Props_5>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToOption_5<Props_5>>>, {}, {}>;
|
|
1851
1883
|
|
|
1852
|
-
export declare const TideBadgeTrustedPartner: DefineComponent<
|
|
1884
|
+
export declare const TideBadgeTrustedPartner: DefineComponent<__VLS_WithDefaults_4<__VLS_TypePropsToOption_6<Props_6>, {
|
|
1853
1885
|
years: "5";
|
|
1854
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1886
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToOption_6<Props_6>, {
|
|
1855
1887
|
years: "5";
|
|
1856
1888
|
}>>>, {
|
|
1857
1889
|
years: BadgeTrustedYears;
|
|
1858
1890
|
}, {}>;
|
|
1859
1891
|
|
|
1860
|
-
export declare const TideBreadCrumbs: DefineComponent<
|
|
1861
|
-
breadCrumbs:
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
};
|
|
1866
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
1867
|
-
breadCrumbs: {
|
|
1868
|
-
default: undefined;
|
|
1869
|
-
required: true;
|
|
1870
|
-
type: PropType<BreadCrumb[]>;
|
|
1871
|
-
};
|
|
1872
|
-
}>>, {
|
|
1892
|
+
export declare const TideBreadCrumbs: DefineComponent<__VLS_WithDefaults_5<__VLS_TypePropsToOption_7<Props_7>, {
|
|
1893
|
+
breadCrumbs: undefined;
|
|
1894
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_5<__VLS_TypePropsToOption_7<Props_7>, {
|
|
1895
|
+
breadCrumbs: undefined;
|
|
1896
|
+
}>>>, {
|
|
1873
1897
|
breadCrumbs: BreadCrumb[];
|
|
1874
1898
|
}, {}>;
|
|
1875
1899
|
|
|
1876
|
-
export declare const TideButton: DefineComponent<
|
|
1900
|
+
export declare const TideButton: DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsToOption_8<Props_8>, {
|
|
1877
1901
|
disabled: boolean;
|
|
1878
1902
|
element: "button";
|
|
1879
1903
|
href: undefined;
|
|
@@ -1883,7 +1907,7 @@ isNewTab: boolean;
|
|
|
1883
1907
|
label: undefined;
|
|
1884
1908
|
priority: "primary";
|
|
1885
1909
|
size: "large";
|
|
1886
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1910
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_6<__VLS_TypePropsToOption_8<Props_8>, {
|
|
1887
1911
|
disabled: boolean;
|
|
1888
1912
|
element: "button";
|
|
1889
1913
|
href: undefined;
|
|
@@ -1905,14 +1929,14 @@ iconLeading: Icon;
|
|
|
1905
1929
|
iconTrailing: Icon;
|
|
1906
1930
|
}, {}>;
|
|
1907
1931
|
|
|
1908
|
-
export declare const TideButtonIcon: DefineComponent<
|
|
1932
|
+
export declare const TideButtonIcon: DefineComponent<__VLS_WithDefaults_7<__VLS_TypePropsToOption_9<Props_9>, {
|
|
1909
1933
|
disabled: boolean;
|
|
1910
1934
|
element: "button";
|
|
1911
1935
|
href: undefined;
|
|
1912
1936
|
icon: undefined;
|
|
1913
1937
|
isNewTab: boolean;
|
|
1914
1938
|
priority: "primary";
|
|
1915
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1939
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_7<__VLS_TypePropsToOption_9<Props_9>, {
|
|
1916
1940
|
disabled: boolean;
|
|
1917
1941
|
element: "button";
|
|
1918
1942
|
href: undefined;
|
|
@@ -1928,12 +1952,12 @@ isNewTab: boolean;
|
|
|
1928
1952
|
priority: Priority;
|
|
1929
1953
|
}, {}>;
|
|
1930
1954
|
|
|
1931
|
-
export declare const TideButtonPagination: DefineComponent<
|
|
1955
|
+
export declare const TideButtonPagination: DefineComponent<__VLS_WithDefaults_8<__VLS_TypePropsToOption_10<Props_10>, {
|
|
1932
1956
|
disabled: boolean;
|
|
1933
1957
|
element: "button";
|
|
1934
1958
|
href: undefined;
|
|
1935
1959
|
label: undefined;
|
|
1936
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1960
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_8<__VLS_TypePropsToOption_10<Props_10>, {
|
|
1937
1961
|
disabled: boolean;
|
|
1938
1962
|
element: "button";
|
|
1939
1963
|
href: undefined;
|
|
@@ -1945,14 +1969,26 @@ element: ElementTextAsIcon;
|
|
|
1945
1969
|
href: string;
|
|
1946
1970
|
}, {}>;
|
|
1947
1971
|
|
|
1948
|
-
export declare const
|
|
1972
|
+
export declare const TideButtonSegmented: DefineComponent<__VLS_WithDefaults_9<__VLS_TypePropsToOption_11<Props_11>, {
|
|
1973
|
+
activeTab: number;
|
|
1974
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1975
|
+
change: (...args: any[]) => void;
|
|
1976
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_9<__VLS_TypePropsToOption_11<Props_11>, {
|
|
1977
|
+
activeTab: number;
|
|
1978
|
+
}>>> & {
|
|
1979
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1980
|
+
}, {
|
|
1981
|
+
activeTab: number;
|
|
1982
|
+
}, {}>;
|
|
1983
|
+
|
|
1984
|
+
export declare const TideCard: DefineComponent<__VLS_WithDefaults_10<__VLS_TypePropsToOption_12<Props_12>, {
|
|
1949
1985
|
description: undefined;
|
|
1950
1986
|
href: undefined;
|
|
1951
1987
|
icon: undefined;
|
|
1952
1988
|
iconPosition: "left";
|
|
1953
1989
|
selected: undefined;
|
|
1954
1990
|
type: "informational";
|
|
1955
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
1991
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_10<__VLS_TypePropsToOption_12<Props_12>, {
|
|
1956
1992
|
description: undefined;
|
|
1957
1993
|
href: undefined;
|
|
1958
1994
|
icon: undefined;
|
|
@@ -1968,11 +2004,11 @@ iconPosition: CardIconPosition;
|
|
|
1968
2004
|
selected: boolean;
|
|
1969
2005
|
}, {}>;
|
|
1970
2006
|
|
|
1971
|
-
export declare const TideCarousel: __VLS_WithTemplateSlots_4<DefineComponent<
|
|
2007
|
+
export declare const TideCarousel: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDefaults_11<__VLS_TypePropsToOption_13<Props_13>, {
|
|
1972
2008
|
offsetX: number;
|
|
1973
2009
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1974
2010
|
change: (...args: any[]) => void;
|
|
1975
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2011
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_11<__VLS_TypePropsToOption_13<Props_13>, {
|
|
1976
2012
|
offsetX: number;
|
|
1977
2013
|
}>>> & {
|
|
1978
2014
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -1982,23 +2018,23 @@ offsetX: number;
|
|
|
1982
2018
|
default?(_: {}): any;
|
|
1983
2019
|
}>;
|
|
1984
2020
|
|
|
1985
|
-
export declare const TideChipAction: DefineComponent<
|
|
2021
|
+
export declare const TideChipAction: DefineComponent<__VLS_WithDefaults_12<__VLS_TypePropsToOption_14<Props_14>, {
|
|
1986
2022
|
isNewTab: boolean;
|
|
1987
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2023
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_12<__VLS_TypePropsToOption_14<Props_14>, {
|
|
1988
2024
|
isNewTab: boolean;
|
|
1989
2025
|
}>>>, {
|
|
1990
2026
|
isNewTab: boolean;
|
|
1991
2027
|
}, {}>;
|
|
1992
2028
|
|
|
1993
|
-
export declare const TideChipFilter: __VLS_WithTemplateSlots_5<DefineComponent<
|
|
2029
|
+
export declare const TideChipFilter: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_TypePropsToOption_15<Props_15>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToOption_15<Props_15>>>, {}, {}>, {
|
|
1994
2030
|
default?(_: {}): any;
|
|
1995
2031
|
}>;
|
|
1996
2032
|
|
|
1997
|
-
export declare const TideChipInput: DefineComponent<
|
|
2033
|
+
export declare const TideChipInput: DefineComponent<__VLS_TypePropsToOption_16<Props_16>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToOption_16<Props_16>>>, {}, {}>;
|
|
1998
2034
|
|
|
1999
|
-
export declare const TideColumns: __VLS_WithTemplateSlots_6<DefineComponent<
|
|
2035
|
+
export declare const TideColumns: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_WithDefaults_13<__VLS_TypePropsToOption_17<Props_17>, {
|
|
2000
2036
|
heading: string;
|
|
2001
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2037
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToOption_17<Props_17>, {
|
|
2002
2038
|
heading: string;
|
|
2003
2039
|
}>>>, {
|
|
2004
2040
|
heading: string;
|
|
@@ -2009,30 +2045,30 @@ heading: string;
|
|
|
2009
2045
|
section4?(_: {}): any;
|
|
2010
2046
|
}>;
|
|
2011
2047
|
|
|
2012
|
-
export declare const TideDivider: DefineComponent<
|
|
2048
|
+
export declare const TideDivider: DefineComponent<__VLS_WithDefaults_14<__VLS_TypePropsToOption_18<Props_18>, {
|
|
2013
2049
|
orientation: "horizontal";
|
|
2014
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2050
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_14<__VLS_TypePropsToOption_18<Props_18>, {
|
|
2015
2051
|
orientation: "horizontal";
|
|
2016
2052
|
}>>>, {
|
|
2017
2053
|
orientation: Orientation;
|
|
2018
2054
|
}, {}>;
|
|
2019
2055
|
|
|
2020
|
-
export declare const TideIcon: DefineComponent<
|
|
2056
|
+
export declare const TideIcon: DefineComponent<__VLS_WithDefaults_15<__VLS_TypePropsToOption_19<Props_19>, {
|
|
2021
2057
|
size: "small";
|
|
2022
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2058
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_15<__VLS_TypePropsToOption_19<Props_19>, {
|
|
2023
2059
|
size: "small";
|
|
2024
2060
|
}>>>, {
|
|
2025
2061
|
size: Size;
|
|
2026
2062
|
}, {}>;
|
|
2027
2063
|
|
|
2028
|
-
export declare const TideImage: DefineComponent<
|
|
2064
|
+
export declare const TideImage: DefineComponent<__VLS_WithDefaults_16<__VLS_TypePropsToOption_20<Props_20>, {
|
|
2029
2065
|
alt: string;
|
|
2030
2066
|
height: undefined;
|
|
2031
2067
|
isLazy: boolean;
|
|
2032
2068
|
sources: () => never[];
|
|
2033
2069
|
src: undefined;
|
|
2034
2070
|
width: undefined;
|
|
2035
|
-
}>, any, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2071
|
+
}>, any, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_16<__VLS_TypePropsToOption_20<Props_20>, {
|
|
2036
2072
|
alt: string;
|
|
2037
2073
|
height: undefined;
|
|
2038
2074
|
isLazy: boolean;
|
|
@@ -2048,15 +2084,15 @@ sources: Source[];
|
|
|
2048
2084
|
src: string;
|
|
2049
2085
|
}, {}>;
|
|
2050
2086
|
|
|
2051
|
-
export declare const TideIndicator: DefineComponent<
|
|
2087
|
+
export declare const TideIndicator: DefineComponent<__VLS_WithDefaults_17<__VLS_TypePropsToOption_21<Props_21>, {
|
|
2052
2088
|
label: undefined;
|
|
2053
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2089
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_17<__VLS_TypePropsToOption_21<Props_21>, {
|
|
2054
2090
|
label: undefined;
|
|
2055
2091
|
}>>>, {
|
|
2056
2092
|
label: string | number;
|
|
2057
2093
|
}, {}>;
|
|
2058
2094
|
|
|
2059
|
-
export declare const TideInputCheckbox: DefineComponent<
|
|
2095
|
+
export declare const TideInputCheckbox: DefineComponent<__VLS_WithDefaults_18<__VLS_TypePropsToOption_22<Props_22>, {
|
|
2060
2096
|
checked: boolean;
|
|
2061
2097
|
dataTrack: string;
|
|
2062
2098
|
disabled: boolean;
|
|
@@ -2065,7 +2101,7 @@ inputId: undefined;
|
|
|
2065
2101
|
label: undefined;
|
|
2066
2102
|
name: undefined;
|
|
2067
2103
|
number: undefined;
|
|
2068
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2104
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_18<__VLS_TypePropsToOption_22<Props_22>, {
|
|
2069
2105
|
checked: boolean;
|
|
2070
2106
|
dataTrack: string;
|
|
2071
2107
|
disabled: boolean;
|
|
@@ -2085,13 +2121,13 @@ inputId: string;
|
|
|
2085
2121
|
name: string;
|
|
2086
2122
|
}, {}>;
|
|
2087
2123
|
|
|
2088
|
-
export declare const TideInputRadio: DefineComponent<
|
|
2124
|
+
export declare const TideInputRadio: DefineComponent<__VLS_WithDefaults_19<__VLS_TypePropsToOption_23<Props_23>, {
|
|
2089
2125
|
checked: boolean;
|
|
2090
2126
|
dataTrack: string;
|
|
2091
2127
|
disabled: boolean;
|
|
2092
2128
|
inputId: undefined;
|
|
2093
2129
|
label: undefined;
|
|
2094
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2130
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_19<__VLS_TypePropsToOption_23<Props_23>, {
|
|
2095
2131
|
checked: boolean;
|
|
2096
2132
|
dataTrack: string;
|
|
2097
2133
|
disabled: boolean;
|
|
@@ -2105,7 +2141,7 @@ dataTrack: string;
|
|
|
2105
2141
|
inputId: string;
|
|
2106
2142
|
}, {}>;
|
|
2107
2143
|
|
|
2108
|
-
export declare const TideInputSelect: DefineComponent<
|
|
2144
|
+
export declare const TideInputSelect: DefineComponent<__VLS_WithDefaults_20<__VLS_TypePropsToOption_24<Props_24>, {
|
|
2109
2145
|
disabled: boolean;
|
|
2110
2146
|
error: boolean;
|
|
2111
2147
|
inputId: undefined;
|
|
@@ -2116,7 +2152,7 @@ value: undefined;
|
|
|
2116
2152
|
}>, {
|
|
2117
2153
|
error: Ref<ValidationError_2>;
|
|
2118
2154
|
value: Ref<string | undefined>;
|
|
2119
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2155
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_20<__VLS_TypePropsToOption_24<Props_24>, {
|
|
2120
2156
|
disabled: boolean;
|
|
2121
2157
|
error: boolean;
|
|
2122
2158
|
inputId: undefined;
|
|
@@ -2134,7 +2170,7 @@ value: string;
|
|
|
2134
2170
|
supportingText: string;
|
|
2135
2171
|
}, {}>;
|
|
2136
2172
|
|
|
2137
|
-
export declare const TideInputText: DefineComponent<
|
|
2173
|
+
export declare const TideInputText: DefineComponent<__VLS_WithDefaults_21<__VLS_TypePropsToOption_25<Props_25>, {
|
|
2138
2174
|
autocomplete: boolean;
|
|
2139
2175
|
dataTrack: string;
|
|
2140
2176
|
disabled: boolean;
|
|
@@ -2157,7 +2193,7 @@ value: string;
|
|
|
2157
2193
|
error: Ref<ValidationError>;
|
|
2158
2194
|
updateValue: (newValue: string) => void;
|
|
2159
2195
|
value: Ref<string>;
|
|
2160
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2196
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_21<__VLS_TypePropsToOption_25<Props_25>, {
|
|
2161
2197
|
autocomplete: boolean;
|
|
2162
2198
|
dataTrack: string;
|
|
2163
2199
|
disabled: boolean;
|
|
@@ -2197,7 +2233,7 @@ suffix: string;
|
|
|
2197
2233
|
transformValue: FormValueTransformer;
|
|
2198
2234
|
}, {}>;
|
|
2199
2235
|
|
|
2200
|
-
export declare const TideInputTextarea: DefineComponent<
|
|
2236
|
+
export declare const TideInputTextarea: DefineComponent<__VLS_WithDefaults_22<__VLS_TypePropsToOption_26<Props_26>, {
|
|
2201
2237
|
dataTrack: string;
|
|
2202
2238
|
error: boolean;
|
|
2203
2239
|
inputId: undefined;
|
|
@@ -2212,7 +2248,7 @@ value: string;
|
|
|
2212
2248
|
}>, {
|
|
2213
2249
|
error: Ref<ValidationError>;
|
|
2214
2250
|
value: Ref<string>;
|
|
2215
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2251
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_22<__VLS_TypePropsToOption_26<Props_26>, {
|
|
2216
2252
|
dataTrack: string;
|
|
2217
2253
|
error: boolean;
|
|
2218
2254
|
inputId: undefined;
|
|
@@ -2238,7 +2274,7 @@ supportingText: string;
|
|
|
2238
2274
|
rows: number;
|
|
2239
2275
|
}, {}>;
|
|
2240
2276
|
|
|
2241
|
-
export declare const TideLink: DefineComponent<
|
|
2277
|
+
export declare const TideLink: DefineComponent<__VLS_WithDefaults_23<__VLS_TypePropsToOption_27<Props_27>, {
|
|
2242
2278
|
element: "a";
|
|
2243
2279
|
href: undefined;
|
|
2244
2280
|
iconLeading: undefined;
|
|
@@ -2246,7 +2282,7 @@ iconTrailing: undefined;
|
|
|
2246
2282
|
isNewTab: boolean;
|
|
2247
2283
|
label: undefined;
|
|
2248
2284
|
typography: "tide-typography-link-1";
|
|
2249
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2285
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_23<__VLS_TypePropsToOption_27<Props_27>, {
|
|
2250
2286
|
element: "a";
|
|
2251
2287
|
href: undefined;
|
|
2252
2288
|
iconLeading: undefined;
|
|
@@ -2264,21 +2300,21 @@ iconTrailing: Icon;
|
|
|
2264
2300
|
typography: "tide-typography-link-1" | "tide-typography-link-2" | "tide-typography-link-3";
|
|
2265
2301
|
}, {}>;
|
|
2266
2302
|
|
|
2267
|
-
export declare const TideModal: __VLS_WithTemplateSlots_7<DefineComponent<
|
|
2303
|
+
export declare const TideModal: __VLS_WithTemplateSlots_7<DefineComponent<__VLS_TypePropsToOption_28<Props_28>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2268
2304
|
close: (...args: any[]) => void;
|
|
2269
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2305
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToOption_28<Props_28>>> & {
|
|
2270
2306
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
2271
2307
|
}, {}, {}>, {
|
|
2272
2308
|
default?(_: {}): any;
|
|
2273
2309
|
footer?(_: {}): any;
|
|
2274
2310
|
}>;
|
|
2275
2311
|
|
|
2276
|
-
export declare const TidePagination: DefineComponent<
|
|
2312
|
+
export declare const TidePagination: DefineComponent<__VLS_WithDefaults_24<__VLS_TypePropsToOption_29<Props_29>, {
|
|
2277
2313
|
pageCurrent: number;
|
|
2278
2314
|
pageTotal: number;
|
|
2279
2315
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2280
2316
|
change: (...args: any[]) => void;
|
|
2281
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2317
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_24<__VLS_TypePropsToOption_29<Props_29>, {
|
|
2282
2318
|
pageCurrent: number;
|
|
2283
2319
|
pageTotal: number;
|
|
2284
2320
|
}>>> & {
|
|
@@ -2288,52 +2324,27 @@ pageCurrent: number;
|
|
|
2288
2324
|
pageTotal: number;
|
|
2289
2325
|
}, {}>;
|
|
2290
2326
|
|
|
2291
|
-
export declare const TideSeoLinks: DefineComponent<
|
|
2327
|
+
export declare const TideSeoLinks: DefineComponent<__VLS_WithDefaults_25<__VLS_TypePropsToOption_30<Props_30>, {
|
|
2292
2328
|
heading: string;
|
|
2293
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2329
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_25<__VLS_TypePropsToOption_30<Props_30>, {
|
|
2294
2330
|
heading: string;
|
|
2295
2331
|
}>>>, {
|
|
2296
2332
|
heading: string;
|
|
2297
2333
|
}, {}>;
|
|
2298
2334
|
|
|
2299
|
-
export declare const
|
|
2300
|
-
|
|
2335
|
+
export declare const TideSwitch: DefineComponent<__VLS_WithDefaults_26<__VLS_TypePropsToOption_31<Props_31>, {
|
|
2336
|
+
disabled: boolean;
|
|
2337
|
+
isActive: boolean;
|
|
2301
2338
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2302
2339
|
change: (...args: any[]) => void;
|
|
2303
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2304
|
-
|
|
2340
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_26<__VLS_TypePropsToOption_31<Props_31>, {
|
|
2341
|
+
disabled: boolean;
|
|
2342
|
+
isActive: boolean;
|
|
2305
2343
|
}>>> & {
|
|
2306
2344
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
2307
2345
|
}, {
|
|
2308
|
-
activeTabInitial: number;
|
|
2309
|
-
}, {}>;
|
|
2310
|
-
|
|
2311
|
-
export declare const TideToggle: DefineComponent< {
|
|
2312
|
-
disabled: {
|
|
2313
|
-
default: boolean;
|
|
2314
|
-
required: false;
|
|
2315
|
-
type: BooleanConstructor;
|
|
2316
|
-
};
|
|
2317
|
-
isActive: {
|
|
2318
|
-
required: true;
|
|
2319
|
-
type: BooleanConstructor;
|
|
2320
|
-
};
|
|
2321
|
-
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2322
|
-
change: (...args: any[]) => void;
|
|
2323
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
2324
|
-
disabled: {
|
|
2325
|
-
default: boolean;
|
|
2326
|
-
required: false;
|
|
2327
|
-
type: BooleanConstructor;
|
|
2328
|
-
};
|
|
2329
|
-
isActive: {
|
|
2330
|
-
required: true;
|
|
2331
|
-
type: BooleanConstructor;
|
|
2332
|
-
};
|
|
2333
|
-
}>> & {
|
|
2334
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
2335
|
-
}, {
|
|
2336
2346
|
disabled: boolean;
|
|
2347
|
+
isActive: boolean;
|
|
2337
2348
|
}, {}>;
|
|
2338
2349
|
|
|
2339
2350
|
export declare const TYPE_CARD: {
|