@taiga-ui/cdk 3.37.0 → 3.38.0-dev.main.39d1b62
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/bundles/taiga-ui-cdk-components-dialog-host.umd.js +13 -7
- package/bundles/taiga-ui-cdk-components-dialog-host.umd.js.map +1 -1
- package/bundles/taiga-ui-cdk-constants.umd.js +1 -1
- package/bundles/taiga-ui-cdk-constants.umd.js.map +1 -1
- package/bundles/taiga-ui-cdk-directives-click-outside.umd.js +89 -0
- package/bundles/taiga-ui-cdk-directives-click-outside.umd.js.map +1 -0
- package/bundles/taiga-ui-cdk-directives.umd.js +10 -4
- package/bundles/taiga-ui-cdk-directives.umd.js.map +1 -1
- package/bundles/taiga-ui-cdk-services.umd.js.map +1 -1
- package/components/dialog-host/dialog-host.component.d.ts +3 -2
- package/constants/version.d.ts +1 -1
- package/constants/version.js +1 -1
- package/directives/click-outside/click-outside.directive.d.ts +13 -0
- package/directives/click-outside/click-outside.module.d.ts +7 -0
- package/directives/click-outside/index.d.ts +2 -0
- package/directives/click-outside/package.json +10 -0
- package/directives/click-outside/taiga-ui-cdk-directives-click-outside.d.ts +5 -0
- package/directives/index.d.ts +1 -0
- package/esm2015/components/dialog-host/dialog-host.component.js +10 -3
- package/esm2015/constants/version.js +2 -2
- package/esm2015/directives/click-outside/click-outside.directive.js +39 -0
- package/esm2015/directives/click-outside/click-outside.module.js +16 -0
- package/esm2015/directives/click-outside/index.js +3 -0
- package/esm2015/directives/click-outside/taiga-ui-cdk-directives-click-outside.js +5 -0
- package/esm2015/directives/index.js +2 -1
- package/esm2015/services/scroll.service.js +1 -1
- package/fesm2015/taiga-ui-cdk-components-dialog-host.js +10 -4
- package/fesm2015/taiga-ui-cdk-components-dialog-host.js.map +1 -1
- package/fesm2015/taiga-ui-cdk-constants.js +1 -1
- package/fesm2015/taiga-ui-cdk-constants.js.map +1 -1
- package/fesm2015/taiga-ui-cdk-directives-click-outside.js +59 -0
- package/fesm2015/taiga-ui-cdk-directives-click-outside.js.map +1 -0
- package/fesm2015/taiga-ui-cdk-directives.js +1 -0
- package/fesm2015/taiga-ui-cdk-directives.js.map +1 -1
- package/fesm2015/taiga-ui-cdk-services.js.map +1 -1
- package/package.json +2 -2
- package/schematics/constants/file-globs.js +2 -2
- package/schematics/ng-update/v3-35/constants/icons.js +168 -0
- package/services/scroll.service.d.ts +1 -1
@@ -14,6 +14,10 @@ exports.ICONS = [
|
|
14
14
|
to: `tuiIconTdsExclamationSmallPragmatic`,
|
15
15
|
from: `tuiIconAlert`,
|
16
16
|
},
|
17
|
+
{
|
18
|
+
to: `tuiIconTdsAlertSmallPragmatic`,
|
19
|
+
from: `tuiIconAttention`,
|
20
|
+
},
|
17
21
|
{
|
18
22
|
to: `tuiIconTdsAlertSmallPragmatic`,
|
19
23
|
from: `tuiIconAlertCircle`,
|
@@ -74,6 +78,10 @@ exports.ICONS = [
|
|
74
78
|
to: `tuiIconTdsArrowLeftSmallPragmatic`,
|
75
79
|
from: `tuiIconArrowLeft`,
|
76
80
|
},
|
81
|
+
{
|
82
|
+
to: `tuiIconTdsArrowLeftCircleMediumPragmatic`,
|
83
|
+
from: `tuiIconBackCircle`,
|
84
|
+
},
|
77
85
|
{
|
78
86
|
to: `tuiIconTdsArrowLeftCircleMediumPragmatic`,
|
79
87
|
from: `tuiIconArrowLeftCircle`,
|
@@ -126,6 +134,14 @@ exports.ICONS = [
|
|
126
134
|
to: `tuiIconTdsBackspaceSmallPragmatic`,
|
127
135
|
from: `tuiIconBackspace`,
|
128
136
|
},
|
137
|
+
{
|
138
|
+
to: `tuiIconTdsChartBarSmallPragmatic`,
|
139
|
+
from: `tuiIconChart`,
|
140
|
+
},
|
141
|
+
{
|
142
|
+
to: `tuiIconTdsChartBarSmallPragmatic`,
|
143
|
+
from: `tuiIconChartBar`,
|
144
|
+
},
|
129
145
|
{
|
130
146
|
to: `tuiIconTdsChartBarSmallPragmatic`,
|
131
147
|
from: `tuiIconBarChart`,
|
@@ -382,6 +398,10 @@ exports.ICONS = [
|
|
382
398
|
to: `tuiIconTdsCheckSmallPragmatic`,
|
383
399
|
from: `tuiIconCheck`,
|
384
400
|
},
|
401
|
+
{
|
402
|
+
to: `tuiIconTdsCheckCircleSmallPragmatic`,
|
403
|
+
from: `tuiIconDone`,
|
404
|
+
},
|
385
405
|
{
|
386
406
|
to: `tuiIconTdsCheckCircleSmallPragmatic`,
|
387
407
|
from: `tuiIconCheckCircle`,
|
@@ -470,6 +490,10 @@ exports.ICONS = [
|
|
470
490
|
to: `tuiIconTdsWysiwygFontStyleClearMediumPragmatic`,
|
471
491
|
from: `tuiIconClearFormatLarge`,
|
472
492
|
},
|
493
|
+
{
|
494
|
+
to: `tuiIconTdsClockCircleSmallPragmatic`,
|
495
|
+
from: `tuiIconTime`,
|
496
|
+
},
|
473
497
|
{
|
474
498
|
to: `tuiIconTdsClockCircleSmallPragmatic`,
|
475
499
|
from: `tuiIconClock`,
|
@@ -674,6 +698,10 @@ exports.ICONS = [
|
|
674
698
|
to: `tuiIconTdsWysiwygListBulletedMediumPragmatic`,
|
675
699
|
from: `tuiIconEventsLargeOutline`,
|
676
700
|
},
|
701
|
+
{
|
702
|
+
to: `tuiIconTdsArrowOutTopRightSmallPragmatic`,
|
703
|
+
from: `tuiIconExternal`,
|
704
|
+
},
|
677
705
|
{
|
678
706
|
to: `tuiIconTdsArrowOutTopRightSmallPragmatic`,
|
679
707
|
from: `tuiIconExternalLink`,
|
@@ -682,6 +710,14 @@ exports.ICONS = [
|
|
682
710
|
to: `tuiIconTdsArrowOutTopRightMediumPragmatic`,
|
683
711
|
from: `tuiIconExternalLinkLarge`,
|
684
712
|
},
|
713
|
+
{
|
714
|
+
to: `tuiIconTdsEyeSmallPragmatic`,
|
715
|
+
from: `tuiIconEyeOpen`,
|
716
|
+
},
|
717
|
+
{
|
718
|
+
to: `tuiIconTdsEyeSmallPragmatic`,
|
719
|
+
from: `tuiIconShow`,
|
720
|
+
},
|
685
721
|
{
|
686
722
|
to: `tuiIconTdsEyeSmallPragmatic`,
|
687
723
|
from: `tuiIconEye`,
|
@@ -690,6 +726,14 @@ exports.ICONS = [
|
|
690
726
|
to: `tuiIconTdsEyeMediumPragmatic`,
|
691
727
|
from: `tuiIconEyeLarge`,
|
692
728
|
},
|
729
|
+
{
|
730
|
+
to: `tuiIconTdsEyeOffSmallPragmatic`,
|
731
|
+
from: `tuiIconEyeClosed`,
|
732
|
+
},
|
733
|
+
{
|
734
|
+
to: `tuiIconTdsEyeOffSmallPragmatic`,
|
735
|
+
from: `tuiIconHide`,
|
736
|
+
},
|
693
737
|
{
|
694
738
|
to: `tuiIconTdsEyeOffSmallPragmatic`,
|
695
739
|
from: `tuiIconEyeOff`,
|
@@ -706,6 +750,10 @@ exports.ICONS = [
|
|
706
750
|
to: `tuiIconTdsStarMediumPragmatic`,
|
707
751
|
from: `tuiIconFavoriteLarge`,
|
708
752
|
},
|
753
|
+
{
|
754
|
+
to: `tuiIconTdsDocSmallPragmatic`,
|
755
|
+
from: `tuiIconDefaultDoc`,
|
756
|
+
},
|
709
757
|
{
|
710
758
|
to: `tuiIconTdsDocSmallPragmatic`,
|
711
759
|
from: `tuiIconFile`,
|
@@ -866,6 +914,10 @@ exports.ICONS = [
|
|
866
914
|
to: `tuiIconTdsHeadsetMediumPragmatic`,
|
867
915
|
from: `tuiIconHeadsetLarge`,
|
868
916
|
},
|
917
|
+
{
|
918
|
+
to: `tuiIconTdsHeartFilledSmall`,
|
919
|
+
from: `tuiIconHeartFilled`,
|
920
|
+
},
|
869
921
|
{
|
870
922
|
to: `tuiIconTdsHeartFilledSmall`,
|
871
923
|
from: `tuiIconHeart`,
|
@@ -886,6 +938,10 @@ exports.ICONS = [
|
|
886
938
|
to: `tuiIconTdsQuestionCircleSmall`,
|
887
939
|
from: `tuiIconHelp`,
|
888
940
|
},
|
941
|
+
{
|
942
|
+
to: `tuiIconTdsQuestionCircleSmall`,
|
943
|
+
from: `tuiIconTooltip`,
|
944
|
+
},
|
889
945
|
{
|
890
946
|
to: `tuiIconTdsQuestionCircleSmall`,
|
891
947
|
from: `tuiIconHelpCircle`,
|
@@ -934,6 +990,14 @@ exports.ICONS = [
|
|
934
990
|
to: `tuiIconTdsWysiwygDividerMediumPragmatic`,
|
935
991
|
from: `tuiIconHrLarge`,
|
936
992
|
},
|
993
|
+
{
|
994
|
+
to: `tuiIconTdsImageSmallPragmatic`,
|
995
|
+
from: `tuiIconImg`,
|
996
|
+
},
|
997
|
+
{
|
998
|
+
to: `tuiIconTdsImageSmallPragmatic`,
|
999
|
+
from: `tuiIconPicture`,
|
1000
|
+
},
|
937
1001
|
{
|
938
1002
|
to: `tuiIconTdsImageSmallPragmatic`,
|
939
1003
|
from: `tuiIconImage`,
|
@@ -950,6 +1014,10 @@ exports.ICONS = [
|
|
950
1014
|
to: `tuiIconTdsWysiwygTextShiftRightMediumPragmatic`,
|
951
1015
|
from: `tuiIconIndentLarge`,
|
952
1016
|
},
|
1017
|
+
{
|
1018
|
+
to: `tuiIconTdsInfoCircleMedium`,
|
1019
|
+
from: `tuiIconInfoCircle`,
|
1020
|
+
},
|
953
1021
|
{
|
954
1022
|
to: `tuiIconTdsInfoCircleMedium`,
|
955
1023
|
from: `tuiIconInfo`,
|
@@ -986,6 +1054,10 @@ exports.ICONS = [
|
|
986
1054
|
to: `tuiIconTdsThumbUpMediumPragmatic`,
|
987
1055
|
from: `tuiIconLarge`,
|
988
1056
|
},
|
1057
|
+
{
|
1058
|
+
to: `tuiIconTdsFrameSmallPragmatic`,
|
1059
|
+
from: `tuiIconFrame`,
|
1060
|
+
},
|
989
1061
|
{
|
990
1062
|
to: `tuiIconTdsFrameSmallPragmatic`,
|
991
1063
|
from: `tuiIconLayout`,
|
@@ -1026,6 +1098,10 @@ exports.ICONS = [
|
|
1026
1098
|
to: `tuiIconTdsLinkMediumPragmatic`,
|
1027
1099
|
from: `tuiIconLinkLarge`,
|
1028
1100
|
},
|
1101
|
+
{
|
1102
|
+
to: `tuiIconTdsListPreviewSmallPragmatic`,
|
1103
|
+
from: `tuiIconViewList`,
|
1104
|
+
},
|
1029
1105
|
{
|
1030
1106
|
to: `tuiIconTdsListPreviewSmallPragmatic`,
|
1031
1107
|
from: `tuiIconList`,
|
@@ -1094,6 +1170,10 @@ exports.ICONS = [
|
|
1094
1170
|
to: `tuiIconTdsLetterSmallPragmatic`,
|
1095
1171
|
from: `tuiIconMailOutline`,
|
1096
1172
|
},
|
1173
|
+
{
|
1174
|
+
to: `tuiIconTdsPinGeoSmallPragmatic`,
|
1175
|
+
from: `tuiIconGeo`,
|
1176
|
+
},
|
1097
1177
|
{
|
1098
1178
|
to: `tuiIconTdsPinGeoSmallPragmatic`,
|
1099
1179
|
from: `tuiIconMapPin`,
|
@@ -1110,6 +1190,10 @@ exports.ICONS = [
|
|
1110
1190
|
to: `tuiIconTdsPinGeoSmallPragmatic`,
|
1111
1191
|
from: `tuiIconMapPinOutline`,
|
1112
1192
|
},
|
1193
|
+
{
|
1194
|
+
to: `tuiIconTdsArrowsExpandSmallPragmatic`,
|
1195
|
+
from: `tuiIconExpand`,
|
1196
|
+
},
|
1113
1197
|
{
|
1114
1198
|
to: `tuiIconTdsArrowsExpandSmallPragmatic`,
|
1115
1199
|
from: `tuiIconMaximize`,
|
@@ -1118,6 +1202,10 @@ exports.ICONS = [
|
|
1118
1202
|
to: `tuiIconTdsWysiwygAlignJustifyMediumPragmatic`,
|
1119
1203
|
from: `tuiIconMenuLarge`,
|
1120
1204
|
},
|
1205
|
+
{
|
1206
|
+
to: `tuiIconTdsChatArrowRightSmallPragmatic`,
|
1207
|
+
from: `tuiIconCommentFw`,
|
1208
|
+
},
|
1121
1209
|
{
|
1122
1210
|
to: `tuiIconTdsChatArrowRightSmallPragmatic`,
|
1123
1211
|
from: `tuiIconMessageForward`,
|
@@ -1134,6 +1222,10 @@ exports.ICONS = [
|
|
1134
1222
|
to: `tuiIconTdsChatArrowRightSmallPragmatic`,
|
1135
1223
|
from: `tuiIconMessageForwardOutline`,
|
1136
1224
|
},
|
1225
|
+
{
|
1226
|
+
to: `tuiIconTdsChatSmallPragmatic`,
|
1227
|
+
from: `tuiIconComment`,
|
1228
|
+
},
|
1137
1229
|
{
|
1138
1230
|
to: `tuiIconTdsChatSmallPragmatic`,
|
1139
1231
|
from: `tuiIconMessageSquare`,
|
@@ -1178,6 +1270,10 @@ exports.ICONS = [
|
|
1178
1270
|
to: `tuiIconTdsMicrophoneOffSmallPragmatic`,
|
1179
1271
|
from: `tuiIconMicOffOutline`,
|
1180
1272
|
},
|
1273
|
+
{
|
1274
|
+
to: `tuiIconTdsArrowsCollapseSmallPragmatic`,
|
1275
|
+
from: `tuiIconCollapse`,
|
1276
|
+
},
|
1181
1277
|
{
|
1182
1278
|
to: `tuiIconTdsArrowsCollapseSmallPragmatic`,
|
1183
1279
|
from: `tuiIconMinimize`,
|
@@ -1278,6 +1374,14 @@ exports.ICONS = [
|
|
1278
1374
|
to: `tuiIconTdsMathMoreOrEqualMediumPragmatic`,
|
1279
1375
|
from: `tuiIconMoreOrEqualLarge`,
|
1280
1376
|
},
|
1377
|
+
{
|
1378
|
+
to: `tuiIconTdsMoreVerticalSmallPragmatic`,
|
1379
|
+
from: `tuiIconMoreVert`,
|
1380
|
+
},
|
1381
|
+
{
|
1382
|
+
to: `tuiIconTdsMoreVerticalSmallPragmatic`,
|
1383
|
+
from: `tuiIconMoreVer`,
|
1384
|
+
},
|
1281
1385
|
{
|
1282
1386
|
to: `tuiIconTdsMoreVerticalSmallPragmatic`,
|
1283
1387
|
from: `tuiIconMoreVertical`,
|
@@ -1286,6 +1390,10 @@ exports.ICONS = [
|
|
1286
1390
|
to: `tuiIconTdsMoreVerticalMediumPragmatic`,
|
1287
1391
|
from: `tuiIconMoreVerticalLarge`,
|
1288
1392
|
},
|
1393
|
+
{
|
1394
|
+
to: `tuiIconTdsMoreVerticalMediumPragmatic`,
|
1395
|
+
from: `tuiIconMoreVertLarge`,
|
1396
|
+
},
|
1289
1397
|
{
|
1290
1398
|
to: `tuiIconTdsMusicSmallPragmatic`,
|
1291
1399
|
from: `tuiIconMusic`,
|
@@ -1350,6 +1458,10 @@ exports.ICONS = [
|
|
1350
1458
|
to: `tuiIconTdsWysiwygColorMediumPragmatic`,
|
1351
1459
|
from: `tuiIconPaintLarge`,
|
1352
1460
|
},
|
1461
|
+
{
|
1462
|
+
to: `tuiIconTdsPaperClipSmallPragmatic`,
|
1463
|
+
from: `tuiIconAttach`,
|
1464
|
+
},
|
1353
1465
|
{
|
1354
1466
|
to: `tuiIconTdsPaperClipSmallPragmatic`,
|
1355
1467
|
from: `tuiIconPaperclip`,
|
@@ -1390,6 +1502,10 @@ exports.ICONS = [
|
|
1390
1502
|
to: `tuiIconTdsPercentMediumPragmatic`,
|
1391
1503
|
from: `tuiIconPercentLarge`,
|
1392
1504
|
},
|
1505
|
+
{
|
1506
|
+
to: `tuiIconTdsPhoneSmallPragmatic`,
|
1507
|
+
from: `tuiIconCall`,
|
1508
|
+
},
|
1393
1509
|
{
|
1394
1510
|
to: `tuiIconTdsPhoneSmallPragmatic`,
|
1395
1511
|
from: `tuiIconPhone`,
|
@@ -1482,6 +1598,10 @@ exports.ICONS = [
|
|
1482
1598
|
to: `tuiIconTdsPlus2SmallPragmatic`,
|
1483
1599
|
from: `tuiIconPlusSmall`,
|
1484
1600
|
},
|
1601
|
+
{
|
1602
|
+
to: `tuiIconTdsPrinterSmallPragmatic`,
|
1603
|
+
from: `tuiIconPrint`,
|
1604
|
+
},
|
1485
1605
|
{
|
1486
1606
|
to: `tuiIconTdsPrinterSmallPragmatic`,
|
1487
1607
|
from: `tuiIconPrinter`,
|
@@ -1542,6 +1662,10 @@ exports.ICONS = [
|
|
1542
1662
|
to: `tuiIconTdsArrowRewindMediumPragmatic`,
|
1543
1663
|
from: `tuiIconRedoLarge`,
|
1544
1664
|
},
|
1665
|
+
{
|
1666
|
+
to: `tuiIconTdsArrowsLeftRightSmallPragmatic`,
|
1667
|
+
from: `tuiIconRefresh`,
|
1668
|
+
},
|
1545
1669
|
{
|
1546
1670
|
to: `tuiIconTdsArrowsLeftRightSmallPragmatic`,
|
1547
1671
|
from: `tuiIconRefreshCw`,
|
@@ -1678,6 +1802,10 @@ exports.ICONS = [
|
|
1678
1802
|
to: `tuiIconTdsPencilSmallPragmatic`,
|
1679
1803
|
from: `tuiIconSignOutline`,
|
1680
1804
|
},
|
1805
|
+
{
|
1806
|
+
to: `tuiIconTdsDenyMediumPragmatic`,
|
1807
|
+
from: `tuiIconCancelCircle`,
|
1808
|
+
},
|
1681
1809
|
{
|
1682
1810
|
to: `tuiIconTdsDenyMediumPragmatic`,
|
1683
1811
|
from: `tuiIconSlashLarge`,
|
@@ -1730,6 +1858,10 @@ exports.ICONS = [
|
|
1730
1858
|
to: `tuiIconTdsArrowsSplitMediumPragmatic`,
|
1731
1859
|
from: `tuiIconSplitLarge`,
|
1732
1860
|
},
|
1861
|
+
{
|
1862
|
+
to: `tuiIconTdsStopSmallPragmatic`,
|
1863
|
+
from: `tuiIconStop`,
|
1864
|
+
},
|
1733
1865
|
{
|
1734
1866
|
to: `tuiIconTdsStopSmallPragmatic`,
|
1735
1867
|
from: `tuiIconSquare`,
|
@@ -1874,6 +2006,10 @@ exports.ICONS = [
|
|
1874
2006
|
to: `tuiIconTdsSnowflakeOffMediumPragmatic`,
|
1875
2007
|
from: `tuiIconUnfreezeLarge`,
|
1876
2008
|
},
|
2009
|
+
{
|
2010
|
+
to: `tuiIconTdsLockOpenSmallPragmatic`,
|
2011
|
+
from: `tuiIconLockOpen`,
|
2012
|
+
},
|
1877
2013
|
{
|
1878
2014
|
to: `tuiIconTdsLockOpenSmallPragmatic`,
|
1879
2015
|
from: `tuiIconUnlock`,
|
@@ -1926,6 +2062,10 @@ exports.ICONS = [
|
|
1926
2062
|
to: `tuiIconTdsCameraVideoSmallPragmatic`,
|
1927
2063
|
from: `tuiIconVideoOutline`,
|
1928
2064
|
},
|
2065
|
+
{
|
2066
|
+
to: `tuiIconTdsSoundSmallPragmatic`,
|
2067
|
+
from: `tuiIconSound`,
|
2068
|
+
},
|
1929
2069
|
{
|
1930
2070
|
to: `tuiIconTdsSoundSmallPragmatic`,
|
1931
2071
|
from: `tuiIconVolume`,
|
@@ -1942,6 +2082,10 @@ exports.ICONS = [
|
|
1942
2082
|
to: `tuiIconTdsSoundSmallPragmatic`,
|
1943
2083
|
from: `tuiIconVolumeOutline`,
|
1944
2084
|
},
|
2085
|
+
{
|
2086
|
+
to: `tuiIconTdsSoundOffSmallPragmatic`,
|
2087
|
+
from: `tuiIconSoundOff`,
|
2088
|
+
},
|
1945
2089
|
{
|
1946
2090
|
to: `tuiIconTdsSoundOffSmallPragmatic`,
|
1947
2091
|
from: `tuiIconVolumeX`,
|
@@ -1982,10 +2126,18 @@ exports.ICONS = [
|
|
1982
2126
|
to: `tuiIconTdsGlobeMediumPragmatic`,
|
1983
2127
|
from: `tuiIconWorldLarge`,
|
1984
2128
|
},
|
2129
|
+
{
|
2130
|
+
to: `tuiIconTdsCrossSmallPragmatic`,
|
2131
|
+
from: `tuiIconRemove`,
|
2132
|
+
},
|
1985
2133
|
{
|
1986
2134
|
to: `tuiIconTdsCrossSmallPragmatic`,
|
1987
2135
|
from: `tuiIconX`,
|
1988
2136
|
},
|
2137
|
+
{
|
2138
|
+
to: `tuiIconTdsCrossCircleSmallPragmatic`,
|
2139
|
+
from: `tuiIconCancel`,
|
2140
|
+
},
|
1989
2141
|
{
|
1990
2142
|
to: `tuiIconTdsCrossCircleSmallPragmatic`,
|
1991
2143
|
from: `tuiIconXCircle`,
|
@@ -2126,6 +2278,14 @@ exports.ICONS = [
|
|
2126
2278
|
to: `tuiIconTdsPlusCircleMediumPragmatic`,
|
2127
2279
|
from: `tuiIconCompensationLargeOutline`,
|
2128
2280
|
},
|
2281
|
+
{
|
2282
|
+
to: `tuiIconTdsCardBacksideSmallPragmatic`,
|
2283
|
+
from: `tuiIconCards`,
|
2284
|
+
},
|
2285
|
+
{
|
2286
|
+
to: `tuiIconTdsCardBacksideSmallPragmatic`,
|
2287
|
+
from: `tuiIconCard`,
|
2288
|
+
},
|
2129
2289
|
{
|
2130
2290
|
to: `tuiIconTdsCardBacksideSmallPragmatic`,
|
2131
2291
|
from: `tuiIconCreditCard`,
|
@@ -2198,6 +2358,10 @@ exports.ICONS = [
|
|
2198
2358
|
to: `tuiIconTdsLogoOdnoklassnikiMedium`,
|
2199
2359
|
from: `tuiIconOkLarge`,
|
2200
2360
|
},
|
2361
|
+
{
|
2362
|
+
to: `tuiIconTdsPhoneArrowSmallPragmatic`,
|
2363
|
+
from: `tuiIconCallIn`,
|
2364
|
+
},
|
2201
2365
|
{
|
2202
2366
|
to: `tuiIconTdsPhoneArrowSmallPragmatic`,
|
2203
2367
|
from: `tuiIconPhoneIncoming`,
|
@@ -2226,6 +2390,10 @@ exports.ICONS = [
|
|
2226
2390
|
to: `tuiIconTdsSaveSmallPragmatic`,
|
2227
2391
|
from: `tuiIconSaveOutline`,
|
2228
2392
|
},
|
2393
|
+
{
|
2394
|
+
to: `tuiIconTdsDevicePhoneSmallPragmatic`,
|
2395
|
+
from: `tuiIconMobile`,
|
2396
|
+
},
|
2229
2397
|
{
|
2230
2398
|
to: `tuiIconTdsDevicePhoneSmallPragmatic`,
|
2231
2399
|
from: `tuiIconSmartphone`,
|
@@ -4,7 +4,7 @@ export declare class TuiScrollService {
|
|
4
4
|
private readonly performanceRef;
|
5
5
|
private readonly animationFrame$;
|
6
6
|
constructor(performanceRef: Performance, animationFrame$: Observable<number>);
|
7
|
-
scroll$(elementOrWindow: Element | Window, scrollTop: number, scrollLeft?: number, duration?: number): Observable<
|
7
|
+
scroll$(elementOrWindow: Element | Window, scrollTop: number, scrollLeft?: number, duration?: number): Observable<[number, number]>;
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<TuiScrollService, never>;
|
9
9
|
static ɵprov: i0.ɵɵInjectableDeclaration<TuiScrollService>;
|
10
10
|
}
|