@mrfylke/contact-form 0.1.27 → 0.1.29
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/form/date-selector.d.ts.map +1 -1
- package/lib/components/form/date-selector.js +2 -1
- package/lib/components/form/time-selector.d.ts.map +1 -1
- package/lib/components/form/time-selector.js +2 -1
- package/lib/components/icon/generated-icons.d.ts +63 -63
- package/lib/components/icon/generated-icons.js +206 -206
- package/lib/group-travel/index.d.ts.map +1 -1
- package/lib/group-travel/index.js +6 -1
- package/lib/lost-property-external/index.d.ts.map +1 -1
- package/lib/lost-property-external/index.js +6 -1
- package/lib/refund/events.d.ts +1 -1
- package/lib/refund/events.d.ts.map +1 -1
- package/lib/refund/forms/refund-and-travel-guarantee/index.d.ts.map +1 -1
- package/lib/refund/forms/refund-and-travel-guarantee/index.js +7 -3
- package/lib/refund/forms/refund-and-travel-guarantee/refundTaxiForm.js +7 -7
- package/lib/refund/forms/refund-ticket/otherTicketRefund.d.ts.map +1 -1
- package/lib/refund/forms/refund-ticket/otherTicketRefund.js +1 -3
- package/lib/refund/refundFormMachine.d.ts +6 -2
- package/lib/refund/refundFormMachine.d.ts.map +1 -1
- package/lib/refund/refundFormMachine.js +7 -3
- package/lib/ticketing/forms/travel-card/orderTravelCard.d.ts.map +1 -1
- package/lib/ticketing/forms/travel-card/orderTravelCard.js +9 -4
- package/lib/ticketing/index.d.ts.map +1 -1
- package/lib/ticketing/index.js +7 -2
- package/lib/translations/pages/contact.d.ts.map +1 -1
- package/lib/translations/pages/contact.js +12 -28
- package/lib/types.d.ts +1 -5
- package/lib/types.d.ts.map +1 -1
- package/lib/types.js +0 -4
- package/lib/utils.d.ts +2 -0
- package/lib/utils.d.ts.map +1 -1
- package/lib/utils.js +10 -0
- package/lib/validation/validationRules.d.ts.map +1 -1
- package/lib/validation/validationRules.js +1 -0
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"date-selector.d.ts","sourceRoot":"","sources":["../../../src/components/form/date-selector.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"date-selector.d.ts","sourceRoot":"","sources":["../../../src/components/form/date-selector.tsx"],"names":[],"mappings":"AAiBA,OAAO,EAAE,gBAAgB,EAAkB,MAAM,oBAAoB,CAAC;AAItE,MAAM,MAAM,iBAAiB,GAAG;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,YAAY,CAAC,EAAE,gBAAgB,CAAC;IAChC,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACnC,CAAC;AAEF,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,EACnC,EAAE,EACF,KAAK,EACL,KAAK,EACL,UAAU,EACV,YAAY,EACZ,QAAQ,GACT,EAAE,iBAAiB,+BA0EnB"}
|
|
@@ -7,6 +7,7 @@ exports.default = DateSelector;
|
|
|
7
7
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
8
8
|
const form_module_css_1 = __importDefault(require("./form.module.css"));
|
|
9
9
|
const date_1 = require("@internationalized/date");
|
|
10
|
+
const react_1 = require("react");
|
|
10
11
|
const react_aria_components_1 = require("react-aria-components");
|
|
11
12
|
const form_component_label_1 = __importDefault(require("./form-component-label"));
|
|
12
13
|
const translations_1 = require("../../translations");
|
|
@@ -14,7 +15,7 @@ const icon_1 = require("../icon");
|
|
|
14
15
|
const error_message_1 = require("../error-message");
|
|
15
16
|
function DateSelector({ id, label, value, isRequired, errorMessage, onChange, }) {
|
|
16
17
|
const { t } = (0, translations_1.useTranslation)();
|
|
17
|
-
const zonedDateTime = value ? (0, date_1.fromDate)(new Date(value), 'Europe/Oslo') : null;
|
|
18
|
+
const zonedDateTime = (0, react_1.useMemo)(() => (value ? (0, date_1.fromDate)(new Date(value), 'Europe/Oslo') : null), [value]);
|
|
18
19
|
return ((0, jsx_runtime_1.jsxs)("div", { className: form_module_css_1.default.dateSelectorContainer, children: [(0, jsx_runtime_1.jsxs)(react_aria_components_1.DatePicker, { granularity: "day", value: zonedDateTime, onChange: (e) => e && onChange(e.toString().slice(0, 10)), onOpenChange: (isOpen) => {
|
|
19
20
|
if (isOpen && !value)
|
|
20
21
|
onChange((0, date_1.today)('Europe/Oslo').toString());
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"time-selector.d.ts","sourceRoot":"","sources":["../../../src/components/form/time-selector.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"time-selector.d.ts","sourceRoot":"","sources":["../../../src/components/form/time-selector.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,gBAAgB,EAAkB,MAAM,oBAAoB,CAAC;AAGtE,MAAM,MAAM,iBAAiB,GAAG;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,YAAY,CAAC,EAAE,gBAAgB,CAAC;IAChC,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACnC,CAAC;AACF,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,EACnC,EAAE,EACF,KAAK,EACL,KAAK,EACL,UAAU,EACV,YAAY,EACZ,QAAQ,GACT,EAAE,iBAAiB,+BA0CnB"}
|
|
@@ -7,13 +7,14 @@ exports.default = TimeSelector;
|
|
|
7
7
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
8
8
|
const form_module_css_1 = __importDefault(require("./form.module.css"));
|
|
9
9
|
const date_1 = require("@internationalized/date");
|
|
10
|
+
const react_1 = require("react");
|
|
10
11
|
const react_aria_components_1 = require("react-aria-components");
|
|
11
12
|
const form_component_label_1 = __importDefault(require("./form-component-label"));
|
|
12
13
|
const translations_1 = require("../../translations");
|
|
13
14
|
const error_message_1 = require("../error-message");
|
|
14
15
|
function TimeSelector({ id, label, value, isRequired, errorMessage, onChange, }) {
|
|
15
16
|
const { t } = (0, translations_1.useTranslation)();
|
|
16
|
-
const parsedValue = value ? (0, date_1.parseTime)(value) : undefined;
|
|
17
|
+
const parsedValue = (0, react_1.useMemo)(() => (value ? (0, date_1.parseTime)(value) : undefined), [value]);
|
|
17
18
|
return ((0, jsx_runtime_1.jsxs)("div", { className: form_module_css_1.default.timeSelectorContainer, children: [(0, jsx_runtime_1.jsxs)(react_aria_components_1.TimeField, { value: parsedValue, onChange: (change) => {
|
|
18
19
|
if (!change)
|
|
19
20
|
return;
|
|
@@ -846,313 +846,313 @@ export declare const icons: {
|
|
|
846
846
|
assetType: string;
|
|
847
847
|
id: string;
|
|
848
848
|
};
|
|
849
|
-
"transportation/Bicycle": {
|
|
849
|
+
"transportation-entur/Bicycle": {
|
|
850
850
|
relative: string;
|
|
851
851
|
absolute: string;
|
|
852
852
|
assetType: string;
|
|
853
853
|
id: string;
|
|
854
854
|
};
|
|
855
|
-
"transportation/
|
|
855
|
+
"transportation-entur/Bus": {
|
|
856
856
|
relative: string;
|
|
857
857
|
absolute: string;
|
|
858
858
|
assetType: string;
|
|
859
859
|
id: string;
|
|
860
860
|
};
|
|
861
|
-
"transportation/
|
|
861
|
+
"transportation-entur/Cableway": {
|
|
862
862
|
relative: string;
|
|
863
863
|
absolute: string;
|
|
864
864
|
assetType: string;
|
|
865
865
|
id: string;
|
|
866
866
|
};
|
|
867
|
-
"transportation/
|
|
867
|
+
"transportation-entur/Car": {
|
|
868
868
|
relative: string;
|
|
869
869
|
absolute: string;
|
|
870
870
|
assetType: string;
|
|
871
871
|
id: string;
|
|
872
872
|
};
|
|
873
|
-
"transportation/
|
|
873
|
+
"transportation-entur/Carferry": {
|
|
874
874
|
relative: string;
|
|
875
875
|
absolute: string;
|
|
876
876
|
assetType: string;
|
|
877
877
|
id: string;
|
|
878
878
|
};
|
|
879
|
-
"transportation/
|
|
879
|
+
"transportation-entur/Ferry": {
|
|
880
880
|
relative: string;
|
|
881
881
|
absolute: string;
|
|
882
882
|
assetType: string;
|
|
883
883
|
id: string;
|
|
884
884
|
};
|
|
885
|
-
"transportation/
|
|
885
|
+
"transportation-entur/Funicular": {
|
|
886
886
|
relative: string;
|
|
887
887
|
absolute: string;
|
|
888
888
|
assetType: string;
|
|
889
889
|
id: string;
|
|
890
890
|
};
|
|
891
|
-
"transportation/
|
|
891
|
+
"transportation-entur/Helicopter": {
|
|
892
892
|
relative: string;
|
|
893
893
|
absolute: string;
|
|
894
894
|
assetType: string;
|
|
895
895
|
id: string;
|
|
896
896
|
};
|
|
897
|
-
"transportation/
|
|
897
|
+
"transportation-entur/Plane": {
|
|
898
898
|
relative: string;
|
|
899
899
|
absolute: string;
|
|
900
900
|
assetType: string;
|
|
901
901
|
id: string;
|
|
902
902
|
};
|
|
903
|
-
"transportation/
|
|
903
|
+
"transportation-entur/Scooter": {
|
|
904
904
|
relative: string;
|
|
905
905
|
absolute: string;
|
|
906
906
|
assetType: string;
|
|
907
907
|
id: string;
|
|
908
908
|
};
|
|
909
|
-
"transportation/
|
|
909
|
+
"transportation-entur/Subway": {
|
|
910
910
|
relative: string;
|
|
911
911
|
absolute: string;
|
|
912
912
|
assetType: string;
|
|
913
913
|
id: string;
|
|
914
914
|
};
|
|
915
|
-
"transportation/
|
|
915
|
+
"transportation-entur/Taxi": {
|
|
916
916
|
relative: string;
|
|
917
917
|
absolute: string;
|
|
918
918
|
assetType: string;
|
|
919
919
|
id: string;
|
|
920
920
|
};
|
|
921
|
-
"transportation/
|
|
921
|
+
"transportation-entur/Train": {
|
|
922
922
|
relative: string;
|
|
923
923
|
absolute: string;
|
|
924
924
|
assetType: string;
|
|
925
925
|
id: string;
|
|
926
926
|
};
|
|
927
|
-
"transportation/
|
|
927
|
+
"transportation-entur/Tram": {
|
|
928
928
|
relative: string;
|
|
929
929
|
absolute: string;
|
|
930
930
|
assetType: string;
|
|
931
931
|
id: string;
|
|
932
932
|
};
|
|
933
|
-
"transportation/
|
|
933
|
+
"transportation-entur/Walk": {
|
|
934
934
|
relative: string;
|
|
935
935
|
absolute: string;
|
|
936
936
|
assetType: string;
|
|
937
937
|
id: string;
|
|
938
938
|
};
|
|
939
|
-
"transportation/
|
|
939
|
+
"transportation/Bicycle": {
|
|
940
940
|
relative: string;
|
|
941
941
|
absolute: string;
|
|
942
942
|
assetType: string;
|
|
943
943
|
id: string;
|
|
944
944
|
};
|
|
945
|
-
"transportation/
|
|
945
|
+
"transportation/BicycleFill": {
|
|
946
946
|
relative: string;
|
|
947
947
|
absolute: string;
|
|
948
948
|
assetType: string;
|
|
949
949
|
id: string;
|
|
950
950
|
};
|
|
951
|
-
"transportation/
|
|
951
|
+
"transportation/Boat": {
|
|
952
952
|
relative: string;
|
|
953
953
|
absolute: string;
|
|
954
954
|
assetType: string;
|
|
955
955
|
id: string;
|
|
956
956
|
};
|
|
957
|
-
"transportation/
|
|
957
|
+
"transportation/BoatFill": {
|
|
958
958
|
relative: string;
|
|
959
959
|
absolute: string;
|
|
960
960
|
assetType: string;
|
|
961
961
|
id: string;
|
|
962
962
|
};
|
|
963
|
-
"transportation/
|
|
963
|
+
"transportation/Bus": {
|
|
964
964
|
relative: string;
|
|
965
965
|
absolute: string;
|
|
966
966
|
assetType: string;
|
|
967
967
|
id: string;
|
|
968
968
|
};
|
|
969
|
-
"transportation/
|
|
969
|
+
"transportation/BusFill": {
|
|
970
970
|
relative: string;
|
|
971
971
|
absolute: string;
|
|
972
972
|
assetType: string;
|
|
973
973
|
id: string;
|
|
974
974
|
};
|
|
975
|
-
"transportation/
|
|
975
|
+
"transportation/Cable": {
|
|
976
976
|
relative: string;
|
|
977
977
|
absolute: string;
|
|
978
978
|
assetType: string;
|
|
979
979
|
id: string;
|
|
980
980
|
};
|
|
981
|
-
"transportation/
|
|
981
|
+
"transportation/CableFill": {
|
|
982
982
|
relative: string;
|
|
983
983
|
absolute: string;
|
|
984
984
|
assetType: string;
|
|
985
985
|
id: string;
|
|
986
986
|
};
|
|
987
|
-
"transportation/
|
|
987
|
+
"transportation/Car": {
|
|
988
988
|
relative: string;
|
|
989
989
|
absolute: string;
|
|
990
990
|
assetType: string;
|
|
991
991
|
id: string;
|
|
992
992
|
};
|
|
993
|
-
"transportation/
|
|
993
|
+
"transportation/CarFill": {
|
|
994
994
|
relative: string;
|
|
995
995
|
absolute: string;
|
|
996
996
|
assetType: string;
|
|
997
997
|
id: string;
|
|
998
998
|
};
|
|
999
|
-
"transportation/
|
|
999
|
+
"transportation/Ebike": {
|
|
1000
1000
|
relative: string;
|
|
1001
1001
|
absolute: string;
|
|
1002
1002
|
assetType: string;
|
|
1003
1003
|
id: string;
|
|
1004
1004
|
};
|
|
1005
|
-
"transportation/
|
|
1005
|
+
"transportation/EbikeFill": {
|
|
1006
1006
|
relative: string;
|
|
1007
1007
|
absolute: string;
|
|
1008
1008
|
assetType: string;
|
|
1009
1009
|
id: string;
|
|
1010
1010
|
};
|
|
1011
|
-
"transportation/
|
|
1011
|
+
"transportation/Ferry": {
|
|
1012
1012
|
relative: string;
|
|
1013
1013
|
absolute: string;
|
|
1014
1014
|
assetType: string;
|
|
1015
1015
|
id: string;
|
|
1016
1016
|
};
|
|
1017
|
-
"transportation/
|
|
1017
|
+
"transportation/FerryFill": {
|
|
1018
1018
|
relative: string;
|
|
1019
1019
|
absolute: string;
|
|
1020
1020
|
assetType: string;
|
|
1021
1021
|
id: string;
|
|
1022
1022
|
};
|
|
1023
|
-
"transportation/
|
|
1023
|
+
"transportation/Flexible": {
|
|
1024
1024
|
relative: string;
|
|
1025
1025
|
absolute: string;
|
|
1026
1026
|
assetType: string;
|
|
1027
1027
|
id: string;
|
|
1028
1028
|
};
|
|
1029
|
-
"transportation/
|
|
1029
|
+
"transportation/FlexibleFill": {
|
|
1030
1030
|
relative: string;
|
|
1031
1031
|
absolute: string;
|
|
1032
1032
|
assetType: string;
|
|
1033
1033
|
id: string;
|
|
1034
1034
|
};
|
|
1035
|
-
"transportation/
|
|
1035
|
+
"transportation/Funicular": {
|
|
1036
1036
|
relative: string;
|
|
1037
1037
|
absolute: string;
|
|
1038
1038
|
assetType: string;
|
|
1039
1039
|
id: string;
|
|
1040
1040
|
};
|
|
1041
|
-
"transportation/
|
|
1041
|
+
"transportation/FunicularFill": {
|
|
1042
1042
|
relative: string;
|
|
1043
1043
|
absolute: string;
|
|
1044
1044
|
assetType: string;
|
|
1045
1045
|
id: string;
|
|
1046
1046
|
};
|
|
1047
|
-
"transportation/
|
|
1047
|
+
"transportation/Metro": {
|
|
1048
1048
|
relative: string;
|
|
1049
1049
|
absolute: string;
|
|
1050
1050
|
assetType: string;
|
|
1051
1051
|
id: string;
|
|
1052
1052
|
};
|
|
1053
|
-
"transportation
|
|
1053
|
+
"transportation/MetroFill": {
|
|
1054
1054
|
relative: string;
|
|
1055
1055
|
absolute: string;
|
|
1056
1056
|
assetType: string;
|
|
1057
1057
|
id: string;
|
|
1058
1058
|
};
|
|
1059
|
-
"transportation
|
|
1059
|
+
"transportation/Night": {
|
|
1060
1060
|
relative: string;
|
|
1061
1061
|
absolute: string;
|
|
1062
1062
|
assetType: string;
|
|
1063
1063
|
id: string;
|
|
1064
1064
|
};
|
|
1065
|
-
"transportation
|
|
1065
|
+
"transportation/NightFill": {
|
|
1066
1066
|
relative: string;
|
|
1067
1067
|
absolute: string;
|
|
1068
1068
|
assetType: string;
|
|
1069
1069
|
id: string;
|
|
1070
1070
|
};
|
|
1071
|
-
"transportation
|
|
1071
|
+
"transportation/Plane": {
|
|
1072
1072
|
relative: string;
|
|
1073
1073
|
absolute: string;
|
|
1074
1074
|
assetType: string;
|
|
1075
1075
|
id: string;
|
|
1076
1076
|
};
|
|
1077
|
-
"transportation
|
|
1077
|
+
"transportation/PlaneFill": {
|
|
1078
1078
|
relative: string;
|
|
1079
1079
|
absolute: string;
|
|
1080
1080
|
assetType: string;
|
|
1081
1081
|
id: string;
|
|
1082
1082
|
};
|
|
1083
|
-
"transportation
|
|
1083
|
+
"transportation/Scooter": {
|
|
1084
1084
|
relative: string;
|
|
1085
1085
|
absolute: string;
|
|
1086
1086
|
assetType: string;
|
|
1087
1087
|
id: string;
|
|
1088
1088
|
};
|
|
1089
|
-
"transportation
|
|
1089
|
+
"transportation/ScooterFill": {
|
|
1090
1090
|
relative: string;
|
|
1091
1091
|
absolute: string;
|
|
1092
1092
|
assetType: string;
|
|
1093
1093
|
id: string;
|
|
1094
1094
|
};
|
|
1095
|
-
"transportation
|
|
1095
|
+
"transportation/Train": {
|
|
1096
1096
|
relative: string;
|
|
1097
1097
|
absolute: string;
|
|
1098
1098
|
assetType: string;
|
|
1099
1099
|
id: string;
|
|
1100
1100
|
};
|
|
1101
|
-
"transportation
|
|
1101
|
+
"transportation/TrainFill": {
|
|
1102
1102
|
relative: string;
|
|
1103
1103
|
absolute: string;
|
|
1104
1104
|
assetType: string;
|
|
1105
1105
|
id: string;
|
|
1106
1106
|
};
|
|
1107
|
-
"transportation
|
|
1107
|
+
"transportation/Tram": {
|
|
1108
1108
|
relative: string;
|
|
1109
1109
|
absolute: string;
|
|
1110
1110
|
assetType: string;
|
|
1111
1111
|
id: string;
|
|
1112
1112
|
};
|
|
1113
|
-
"transportation
|
|
1113
|
+
"transportation/TramFill": {
|
|
1114
1114
|
relative: string;
|
|
1115
1115
|
absolute: string;
|
|
1116
1116
|
assetType: string;
|
|
1117
1117
|
id: string;
|
|
1118
1118
|
};
|
|
1119
|
-
"transportation
|
|
1119
|
+
"transportation/Unknown": {
|
|
1120
1120
|
relative: string;
|
|
1121
1121
|
absolute: string;
|
|
1122
1122
|
assetType: string;
|
|
1123
1123
|
id: string;
|
|
1124
1124
|
};
|
|
1125
|
-
"transportation
|
|
1125
|
+
"transportation/UnknownFill": {
|
|
1126
1126
|
relative: string;
|
|
1127
1127
|
absolute: string;
|
|
1128
1128
|
assetType: string;
|
|
1129
1129
|
id: string;
|
|
1130
1130
|
};
|
|
1131
|
-
"transportation
|
|
1131
|
+
"transportation/Walk": {
|
|
1132
1132
|
relative: string;
|
|
1133
1133
|
absolute: string;
|
|
1134
1134
|
assetType: string;
|
|
1135
1135
|
id: string;
|
|
1136
1136
|
};
|
|
1137
|
-
"transportation
|
|
1137
|
+
"transportation/WalkFill": {
|
|
1138
1138
|
relative: string;
|
|
1139
1139
|
absolute: string;
|
|
1140
1140
|
assetType: string;
|
|
1141
1141
|
id: string;
|
|
1142
1142
|
};
|
|
1143
|
-
"
|
|
1143
|
+
"ticketing/Travelcard": {
|
|
1144
1144
|
relative: string;
|
|
1145
1145
|
absolute: string;
|
|
1146
1146
|
assetType: string;
|
|
1147
1147
|
id: string;
|
|
1148
1148
|
};
|
|
1149
|
-
"ticketing/
|
|
1149
|
+
"ticketing/TravelcardOutlined": {
|
|
1150
1150
|
relative: string;
|
|
1151
1151
|
absolute: string;
|
|
1152
1152
|
assetType: string;
|
|
1153
1153
|
id: string;
|
|
1154
1154
|
};
|
|
1155
|
-
"
|
|
1155
|
+
"logo/logo": {
|
|
1156
1156
|
relative: string;
|
|
1157
1157
|
absolute: string;
|
|
1158
1158
|
assetType: string;
|
|
@@ -1618,7 +1618,7 @@ export declare const icons: {
|
|
|
1618
1618
|
darkable: boolean;
|
|
1619
1619
|
id: string;
|
|
1620
1620
|
};
|
|
1621
|
-
"
|
|
1621
|
+
"input/CheckboxChecked": {
|
|
1622
1622
|
relative: string;
|
|
1623
1623
|
absolute: string;
|
|
1624
1624
|
assetType: string;
|
|
@@ -1626,7 +1626,7 @@ export declare const icons: {
|
|
|
1626
1626
|
darkable: boolean;
|
|
1627
1627
|
id: string;
|
|
1628
1628
|
};
|
|
1629
|
-
"
|
|
1629
|
+
"input/CheckboxUnchecked": {
|
|
1630
1630
|
relative: string;
|
|
1631
1631
|
absolute: string;
|
|
1632
1632
|
assetType: string;
|
|
@@ -1634,7 +1634,7 @@ export declare const icons: {
|
|
|
1634
1634
|
darkable: boolean;
|
|
1635
1635
|
id: string;
|
|
1636
1636
|
};
|
|
1637
|
-
"
|
|
1637
|
+
"input/RadiobuttonChecked": {
|
|
1638
1638
|
relative: string;
|
|
1639
1639
|
absolute: string;
|
|
1640
1640
|
assetType: string;
|
|
@@ -1642,7 +1642,7 @@ export declare const icons: {
|
|
|
1642
1642
|
darkable: boolean;
|
|
1643
1643
|
id: string;
|
|
1644
1644
|
};
|
|
1645
|
-
"
|
|
1645
|
+
"input/RadiobuttonUnchecked": {
|
|
1646
1646
|
relative: string;
|
|
1647
1647
|
absolute: string;
|
|
1648
1648
|
assetType: string;
|
|
@@ -1650,7 +1650,7 @@ export declare const icons: {
|
|
|
1650
1650
|
darkable: boolean;
|
|
1651
1651
|
id: string;
|
|
1652
1652
|
};
|
|
1653
|
-
"map/
|
|
1653
|
+
"map/Map": {
|
|
1654
1654
|
relative: string;
|
|
1655
1655
|
absolute: string;
|
|
1656
1656
|
assetType: string;
|
|
@@ -1658,7 +1658,7 @@ export declare const icons: {
|
|
|
1658
1658
|
darkable: boolean;
|
|
1659
1659
|
id: string;
|
|
1660
1660
|
};
|
|
1661
|
-
"
|
|
1661
|
+
"map/MapPin": {
|
|
1662
1662
|
relative: string;
|
|
1663
1663
|
absolute: string;
|
|
1664
1664
|
assetType: string;
|
|
@@ -1666,7 +1666,7 @@ export declare const icons: {
|
|
|
1666
1666
|
darkable: boolean;
|
|
1667
1667
|
id: string;
|
|
1668
1668
|
};
|
|
1669
|
-
"
|
|
1669
|
+
"map/Pin": {
|
|
1670
1670
|
relative: string;
|
|
1671
1671
|
absolute: string;
|
|
1672
1672
|
assetType: string;
|
|
@@ -1674,7 +1674,7 @@ export declare const icons: {
|
|
|
1674
1674
|
darkable: boolean;
|
|
1675
1675
|
id: string;
|
|
1676
1676
|
};
|
|
1677
|
-
"
|
|
1677
|
+
"map/PinInvalid": {
|
|
1678
1678
|
relative: string;
|
|
1679
1679
|
absolute: string;
|
|
1680
1680
|
assetType: string;
|
|
@@ -1682,7 +1682,7 @@ export declare const icons: {
|
|
|
1682
1682
|
darkable: boolean;
|
|
1683
1683
|
id: string;
|
|
1684
1684
|
};
|
|
1685
|
-
"
|
|
1685
|
+
"map/PinValid": {
|
|
1686
1686
|
relative: string;
|
|
1687
1687
|
absolute: string;
|
|
1688
1688
|
assetType: string;
|
|
@@ -1916,7 +1916,7 @@ export declare const icons: {
|
|
|
1916
1916
|
darkable: boolean;
|
|
1917
1917
|
id: string;
|
|
1918
1918
|
};
|
|
1919
|
-
"token/
|
|
1919
|
+
"token/mobile/Phone": {
|
|
1920
1920
|
relative: string;
|
|
1921
1921
|
absolute: string;
|
|
1922
1922
|
assetType: string;
|
|
@@ -1924,7 +1924,7 @@ export declare const icons: {
|
|
|
1924
1924
|
darkable: boolean;
|
|
1925
1925
|
id: string;
|
|
1926
1926
|
};
|
|
1927
|
-
"token/
|
|
1927
|
+
"token/travelcard/Travelcard": {
|
|
1928
1928
|
relative: string;
|
|
1929
1929
|
absolute: string;
|
|
1930
1930
|
assetType: string;
|