@mateosuarezdev/flash 0.0.5 → 0.0.6
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/dist/index.d.ts +429 -430
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -662,10 +662,10 @@ declare global {
|
|
|
662
662
|
type Ref<T extends Element = Element> = (el: T) => void;
|
|
663
663
|
|
|
664
664
|
// =============================================================================
|
|
665
|
-
//
|
|
665
|
+
// Hybrid - allows static value or reactive function
|
|
666
666
|
// =============================================================================
|
|
667
667
|
|
|
668
|
-
type
|
|
668
|
+
type Hybrid<T> = T | (() => T);
|
|
669
669
|
|
|
670
670
|
// =============================================================================
|
|
671
671
|
// Event Handlers
|
|
@@ -860,43 +860,43 @@ interface HTMLAttributes<T extends Element = Element>
|
|
|
860
860
|
innerHTML?: string | object;
|
|
861
861
|
|
|
862
862
|
// Standard HTML attributes
|
|
863
|
-
id?:
|
|
864
|
-
class?:
|
|
865
|
-
className?:
|
|
866
|
-
style?:
|
|
867
|
-
title?:
|
|
868
|
-
|
|
869
|
-
lang?:
|
|
870
|
-
dir?:
|
|
871
|
-
hidden?:
|
|
872
|
-
draggable?:
|
|
873
|
-
spellcheck?:
|
|
874
|
-
|
|
875
|
-
translate?:
|
|
876
|
-
slot?:
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
863
|
+
id?: Hybrid<string>;
|
|
864
|
+
class?: Hybrid<string>;
|
|
865
|
+
className?: Hybrid<string>;
|
|
866
|
+
style?: Hybrid<string | CSSProperties>;
|
|
867
|
+
title?: Hybrid<string>;
|
|
868
|
+
tabindex?: Hybrid<number>;
|
|
869
|
+
lang?: Hybrid<string>;
|
|
870
|
+
dir?: Hybrid<"ltr" | "rtl" | "auto">;
|
|
871
|
+
hidden?: Hybrid<boolean>;
|
|
872
|
+
draggable?: Hybrid<boolean>;
|
|
873
|
+
spellcheck?: Hybrid<boolean>;
|
|
874
|
+
contenteditable?: Hybrid<boolean | "true" | "false" | "inherit">;
|
|
875
|
+
translate?: Hybrid<"yes" | "no">;
|
|
876
|
+
slot?: Hybrid<string>;
|
|
877
|
+
accesskey?: Hybrid<string>;
|
|
878
|
+
autocapitalize?: Hybrid<string>;
|
|
879
|
+
autofocus?: Hybrid<boolean>;
|
|
880
|
+
enterkeyhint?: Hybrid<
|
|
881
881
|
"enter" | "done" | "go" | "next" | "previous" | "search" | "send"
|
|
882
882
|
>;
|
|
883
|
-
|
|
883
|
+
inputmode?: Hybrid<
|
|
884
884
|
"none" | "text" | "decimal" | "numeric" | "tel" | "search" | "email" | "url"
|
|
885
885
|
>;
|
|
886
|
-
is?:
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
nonce?:
|
|
893
|
-
part?:
|
|
894
|
-
popover?:
|
|
895
|
-
|
|
896
|
-
|
|
886
|
+
is?: Hybrid<string>;
|
|
887
|
+
itemid?: Hybrid<string>;
|
|
888
|
+
itemprop?: Hybrid<string>;
|
|
889
|
+
itemref?: Hybrid<string>;
|
|
890
|
+
itemscope?: Hybrid<boolean>;
|
|
891
|
+
itemtype?: Hybrid<string>;
|
|
892
|
+
nonce?: Hybrid<string>;
|
|
893
|
+
part?: Hybrid<string>;
|
|
894
|
+
popover?: Hybrid<"auto" | "manual">;
|
|
895
|
+
popovertarget?: Hybrid<string>;
|
|
896
|
+
popovertargetaction?: Hybrid<"hide" | "show" | "toggle">;
|
|
897
897
|
|
|
898
898
|
// Data attributes
|
|
899
|
-
[key: `data-${string}`]:
|
|
899
|
+
[key: `data-${string}`]: Hybrid<string | number | boolean>;
|
|
900
900
|
}
|
|
901
901
|
|
|
902
902
|
// =============================================================================
|
|
@@ -908,152 +908,152 @@ type TagSpecificProps<K extends keyof HTMLElementTagNameMap> =
|
|
|
908
908
|
|
|
909
909
|
interface TagExtraProps {
|
|
910
910
|
a: {
|
|
911
|
-
href?:
|
|
912
|
-
target?:
|
|
913
|
-
rel?:
|
|
914
|
-
download?:
|
|
915
|
-
hreflang?:
|
|
916
|
-
ping?:
|
|
917
|
-
|
|
918
|
-
type?:
|
|
911
|
+
href?: Hybrid<string>;
|
|
912
|
+
target?: Hybrid<"_blank" | "_self" | "_parent" | "_top" | string>;
|
|
913
|
+
rel?: Hybrid<string>;
|
|
914
|
+
download?: Hybrid<boolean | string>;
|
|
915
|
+
hreflang?: Hybrid<string>;
|
|
916
|
+
ping?: Hybrid<string>;
|
|
917
|
+
referrerpolicy?: Hybrid<ReferrerPolicy>;
|
|
918
|
+
type?: Hybrid<string>;
|
|
919
919
|
};
|
|
920
920
|
area: {
|
|
921
|
-
alt?:
|
|
922
|
-
coords?:
|
|
923
|
-
download?:
|
|
924
|
-
href?:
|
|
925
|
-
hreflang?:
|
|
926
|
-
ping?:
|
|
927
|
-
|
|
928
|
-
rel?:
|
|
929
|
-
shape?:
|
|
930
|
-
target?:
|
|
921
|
+
alt?: Hybrid<string>;
|
|
922
|
+
coords?: Hybrid<string>;
|
|
923
|
+
download?: Hybrid<boolean | string>;
|
|
924
|
+
href?: Hybrid<string>;
|
|
925
|
+
hreflang?: Hybrid<string>;
|
|
926
|
+
ping?: Hybrid<string>;
|
|
927
|
+
referrerpolicy?: Hybrid<ReferrerPolicy>;
|
|
928
|
+
rel?: Hybrid<string>;
|
|
929
|
+
shape?: Hybrid<"rect" | "circle" | "poly" | "default">;
|
|
930
|
+
target?: Hybrid<string>;
|
|
931
931
|
};
|
|
932
932
|
audio: MediaProps;
|
|
933
933
|
base: {
|
|
934
|
-
href?:
|
|
935
|
-
target?:
|
|
934
|
+
href?: Hybrid<string>;
|
|
935
|
+
target?: Hybrid<string>;
|
|
936
936
|
};
|
|
937
937
|
blockquote: {
|
|
938
|
-
cite?:
|
|
938
|
+
cite?: Hybrid<string>;
|
|
939
939
|
};
|
|
940
940
|
button: {
|
|
941
|
-
type?:
|
|
942
|
-
disabled?:
|
|
943
|
-
form?:
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
name?:
|
|
950
|
-
value?:
|
|
951
|
-
|
|
952
|
-
|
|
941
|
+
type?: Hybrid<"button" | "submit" | "reset">;
|
|
942
|
+
disabled?: Hybrid<boolean>;
|
|
943
|
+
form?: Hybrid<string>;
|
|
944
|
+
formaction?: Hybrid<string>;
|
|
945
|
+
formenctype?: Hybrid<string>;
|
|
946
|
+
formmethod?: Hybrid<string>;
|
|
947
|
+
formnovalidate?: Hybrid<boolean>;
|
|
948
|
+
formtarget?: Hybrid<string>;
|
|
949
|
+
name?: Hybrid<string>;
|
|
950
|
+
value?: Hybrid<string>;
|
|
951
|
+
popovertarget?: Hybrid<string>;
|
|
952
|
+
popovertargetaction?: Hybrid<"hide" | "show" | "toggle">;
|
|
953
953
|
};
|
|
954
954
|
canvas: {
|
|
955
|
-
width?:
|
|
956
|
-
height?:
|
|
955
|
+
width?: Hybrid<number | string>;
|
|
956
|
+
height?: Hybrid<number | string>;
|
|
957
957
|
};
|
|
958
958
|
col: {
|
|
959
|
-
span?:
|
|
959
|
+
span?: Hybrid<number>;
|
|
960
960
|
};
|
|
961
961
|
colgroup: {
|
|
962
|
-
span?:
|
|
962
|
+
span?: Hybrid<number>;
|
|
963
963
|
};
|
|
964
964
|
del: {
|
|
965
|
-
cite?:
|
|
966
|
-
|
|
965
|
+
cite?: Hybrid<string>;
|
|
966
|
+
datetime?: Hybrid<string>;
|
|
967
967
|
};
|
|
968
968
|
details: {
|
|
969
|
-
open?:
|
|
969
|
+
open?: Hybrid<boolean>;
|
|
970
970
|
onToggle?: EventHandler<Event>;
|
|
971
971
|
};
|
|
972
972
|
dialog: {
|
|
973
|
-
open?:
|
|
973
|
+
open?: Hybrid<boolean>;
|
|
974
974
|
onClose?: EventHandler<Event>;
|
|
975
975
|
onCancel?: EventHandler<Event>;
|
|
976
976
|
};
|
|
977
977
|
embed: {
|
|
978
|
-
height?:
|
|
979
|
-
src?:
|
|
980
|
-
type?:
|
|
981
|
-
width?:
|
|
978
|
+
height?: Hybrid<number | string>;
|
|
979
|
+
src?: Hybrid<string>;
|
|
980
|
+
type?: Hybrid<string>;
|
|
981
|
+
width?: Hybrid<number | string>;
|
|
982
982
|
};
|
|
983
983
|
fieldset: {
|
|
984
|
-
disabled?:
|
|
985
|
-
form?:
|
|
986
|
-
name?:
|
|
984
|
+
disabled?: Hybrid<boolean>;
|
|
985
|
+
form?: Hybrid<string>;
|
|
986
|
+
name?: Hybrid<string>;
|
|
987
987
|
};
|
|
988
988
|
form: {
|
|
989
|
-
action?:
|
|
990
|
-
method?:
|
|
991
|
-
|
|
992
|
-
target?:
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
name?:
|
|
996
|
-
|
|
997
|
-
rel?:
|
|
989
|
+
action?: Hybrid<string>;
|
|
990
|
+
method?: Hybrid<"get" | "post" | "dialog">;
|
|
991
|
+
enctype?: Hybrid<string>;
|
|
992
|
+
target?: Hybrid<string>;
|
|
993
|
+
autocomplete?: Hybrid<"on" | "off">;
|
|
994
|
+
novalidate?: Hybrid<boolean>;
|
|
995
|
+
name?: Hybrid<string>;
|
|
996
|
+
"accept-charset"?: Hybrid<string>;
|
|
997
|
+
rel?: Hybrid<string>;
|
|
998
998
|
};
|
|
999
999
|
html: {
|
|
1000
|
-
manifest?:
|
|
1000
|
+
manifest?: Hybrid<string>;
|
|
1001
1001
|
};
|
|
1002
1002
|
iframe: {
|
|
1003
|
-
allow?:
|
|
1004
|
-
|
|
1005
|
-
height?:
|
|
1006
|
-
loading?:
|
|
1007
|
-
name?:
|
|
1008
|
-
|
|
1009
|
-
sandbox?:
|
|
1010
|
-
src?:
|
|
1011
|
-
srcdoc?:
|
|
1012
|
-
width?:
|
|
1003
|
+
allow?: Hybrid<string>;
|
|
1004
|
+
allowfullscreen?: Hybrid<boolean>;
|
|
1005
|
+
height?: Hybrid<number | string>;
|
|
1006
|
+
loading?: Hybrid<"eager" | "lazy">;
|
|
1007
|
+
name?: Hybrid<string>;
|
|
1008
|
+
referrerpolicy?: Hybrid<ReferrerPolicy>;
|
|
1009
|
+
sandbox?: Hybrid<string>;
|
|
1010
|
+
src?: Hybrid<string>;
|
|
1011
|
+
srcdoc?: Hybrid<string>;
|
|
1012
|
+
width?: Hybrid<number | string>;
|
|
1013
1013
|
};
|
|
1014
1014
|
img: {
|
|
1015
|
-
alt?:
|
|
1016
|
-
|
|
1017
|
-
decoding?:
|
|
1018
|
-
height?:
|
|
1019
|
-
loading?:
|
|
1020
|
-
|
|
1021
|
-
sizes?:
|
|
1022
|
-
src?:
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
width?:
|
|
1026
|
-
|
|
1015
|
+
alt?: Hybrid<string>;
|
|
1016
|
+
crossorigin?: Hybrid<boolean | "anonymous" | "use-credentials" | "">;
|
|
1017
|
+
decoding?: Hybrid<"async" | "auto" | "sync">;
|
|
1018
|
+
height?: Hybrid<number | string>;
|
|
1019
|
+
loading?: Hybrid<"eager" | "lazy">;
|
|
1020
|
+
referrerpolicy?: Hybrid<ReferrerPolicy>;
|
|
1021
|
+
sizes?: Hybrid<string>;
|
|
1022
|
+
src?: Hybrid<string>;
|
|
1023
|
+
srcset?: Hybrid<string>;
|
|
1024
|
+
usemap?: Hybrid<string>;
|
|
1025
|
+
width?: Hybrid<number | string>;
|
|
1026
|
+
fetchpriority?: Hybrid<"high" | "low" | "auto">;
|
|
1027
1027
|
};
|
|
1028
1028
|
input: {
|
|
1029
|
-
accept?:
|
|
1030
|
-
alt?:
|
|
1031
|
-
|
|
1032
|
-
capture?:
|
|
1033
|
-
checked?:
|
|
1034
|
-
disabled?:
|
|
1035
|
-
form?:
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
height?:
|
|
1042
|
-
list?:
|
|
1043
|
-
max?:
|
|
1044
|
-
|
|
1045
|
-
min?:
|
|
1046
|
-
|
|
1047
|
-
multiple?:
|
|
1048
|
-
name?:
|
|
1049
|
-
pattern?:
|
|
1050
|
-
placeholder?:
|
|
1051
|
-
|
|
1052
|
-
required?:
|
|
1053
|
-
size?:
|
|
1054
|
-
src?:
|
|
1055
|
-
step?:
|
|
1056
|
-
type?:
|
|
1029
|
+
accept?: Hybrid<string>;
|
|
1030
|
+
alt?: Hybrid<string>;
|
|
1031
|
+
autocomplete?: Hybrid<string>;
|
|
1032
|
+
capture?: Hybrid<boolean | "user" | "environment">;
|
|
1033
|
+
checked?: Hybrid<boolean>;
|
|
1034
|
+
disabled?: Hybrid<boolean>;
|
|
1035
|
+
form?: Hybrid<string>;
|
|
1036
|
+
formaction?: Hybrid<string>;
|
|
1037
|
+
formenctype?: Hybrid<string>;
|
|
1038
|
+
formmethod?: Hybrid<string>;
|
|
1039
|
+
formnovalidate?: Hybrid<boolean>;
|
|
1040
|
+
formtarget?: Hybrid<string>;
|
|
1041
|
+
height?: Hybrid<number | string>;
|
|
1042
|
+
list?: Hybrid<string>;
|
|
1043
|
+
max?: Hybrid<number | string>;
|
|
1044
|
+
maxlength?: Hybrid<number>;
|
|
1045
|
+
min?: Hybrid<number | string>;
|
|
1046
|
+
minlength?: Hybrid<number>;
|
|
1047
|
+
multiple?: Hybrid<boolean>;
|
|
1048
|
+
name?: Hybrid<string>;
|
|
1049
|
+
pattern?: Hybrid<string>;
|
|
1050
|
+
placeholder?: Hybrid<string>;
|
|
1051
|
+
readonly?: Hybrid<boolean>;
|
|
1052
|
+
required?: Hybrid<boolean>;
|
|
1053
|
+
size?: Hybrid<number>;
|
|
1054
|
+
src?: Hybrid<string>;
|
|
1055
|
+
step?: Hybrid<number | string>;
|
|
1056
|
+
type?: Hybrid<
|
|
1057
1057
|
| "button"
|
|
1058
1058
|
| "checkbox"
|
|
1059
1059
|
| "color"
|
|
@@ -1077,182 +1077,181 @@ interface TagExtraProps {
|
|
|
1077
1077
|
| "url"
|
|
1078
1078
|
| "week"
|
|
1079
1079
|
>;
|
|
1080
|
-
value?:
|
|
1081
|
-
width?:
|
|
1080
|
+
value?: Hybrid<string | number | readonly string[]>;
|
|
1081
|
+
width?: Hybrid<number | string>;
|
|
1082
1082
|
};
|
|
1083
1083
|
ins: {
|
|
1084
|
-
cite?:
|
|
1085
|
-
|
|
1084
|
+
cite?: Hybrid<string>;
|
|
1085
|
+
datetime?: Hybrid<string>;
|
|
1086
1086
|
};
|
|
1087
1087
|
label: {
|
|
1088
|
-
for?:
|
|
1089
|
-
htmlFor?: MaybeReactive<string>;
|
|
1088
|
+
for?: Hybrid<string>;
|
|
1090
1089
|
};
|
|
1091
1090
|
li: {
|
|
1092
|
-
value?:
|
|
1091
|
+
value?: Hybrid<number>;
|
|
1093
1092
|
};
|
|
1094
1093
|
link: {
|
|
1095
|
-
as?:
|
|
1096
|
-
|
|
1097
|
-
disabled?:
|
|
1098
|
-
href?:
|
|
1099
|
-
hreflang?:
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
integrity?:
|
|
1103
|
-
media?:
|
|
1104
|
-
|
|
1105
|
-
rel?:
|
|
1106
|
-
sizes?:
|
|
1107
|
-
type?:
|
|
1108
|
-
|
|
1094
|
+
as?: Hybrid<string>;
|
|
1095
|
+
crossorigin?: Hybrid<boolean | "anonymous" | "use-credentials" | "">;
|
|
1096
|
+
disabled?: Hybrid<boolean>;
|
|
1097
|
+
href?: Hybrid<string>;
|
|
1098
|
+
hreflang?: Hybrid<string>;
|
|
1099
|
+
imagesizes?: Hybrid<string>;
|
|
1100
|
+
imagesrcset?: Hybrid<string>;
|
|
1101
|
+
integrity?: Hybrid<string>;
|
|
1102
|
+
media?: Hybrid<string>;
|
|
1103
|
+
referrerpolicy?: Hybrid<ReferrerPolicy>;
|
|
1104
|
+
rel?: Hybrid<string>;
|
|
1105
|
+
sizes?: Hybrid<string>;
|
|
1106
|
+
type?: Hybrid<string>;
|
|
1107
|
+
fetchpriority?: Hybrid<"high" | "low" | "auto">;
|
|
1109
1108
|
};
|
|
1110
1109
|
map: {
|
|
1111
|
-
name?:
|
|
1110
|
+
name?: Hybrid<string>;
|
|
1112
1111
|
};
|
|
1113
1112
|
meta: {
|
|
1114
|
-
|
|
1115
|
-
content?:
|
|
1116
|
-
|
|
1117
|
-
name?:
|
|
1118
|
-
media?:
|
|
1113
|
+
charset?: Hybrid<string>;
|
|
1114
|
+
content?: Hybrid<string>;
|
|
1115
|
+
"http-equiv"?: Hybrid<string>;
|
|
1116
|
+
name?: Hybrid<string>;
|
|
1117
|
+
media?: Hybrid<string>;
|
|
1118
|
+
property?: Hybrid<string>; // Open Graph
|
|
1119
1119
|
};
|
|
1120
1120
|
meter: {
|
|
1121
|
-
high?:
|
|
1122
|
-
low?:
|
|
1123
|
-
max?:
|
|
1124
|
-
min?:
|
|
1125
|
-
optimum?:
|
|
1126
|
-
value?:
|
|
1121
|
+
high?: Hybrid<number>;
|
|
1122
|
+
low?: Hybrid<number>;
|
|
1123
|
+
max?: Hybrid<number>;
|
|
1124
|
+
min?: Hybrid<number>;
|
|
1125
|
+
optimum?: Hybrid<number>;
|
|
1126
|
+
value?: Hybrid<number>;
|
|
1127
1127
|
};
|
|
1128
1128
|
object: {
|
|
1129
|
-
data?:
|
|
1130
|
-
form?:
|
|
1131
|
-
height?:
|
|
1132
|
-
name?:
|
|
1133
|
-
type?:
|
|
1134
|
-
|
|
1135
|
-
width?:
|
|
1129
|
+
data?: Hybrid<string>;
|
|
1130
|
+
form?: Hybrid<string>;
|
|
1131
|
+
height?: Hybrid<number | string>;
|
|
1132
|
+
name?: Hybrid<string>;
|
|
1133
|
+
type?: Hybrid<string>;
|
|
1134
|
+
usemap?: Hybrid<string>;
|
|
1135
|
+
width?: Hybrid<number | string>;
|
|
1136
1136
|
};
|
|
1137
1137
|
ol: {
|
|
1138
|
-
reversed?:
|
|
1139
|
-
start?:
|
|
1140
|
-
type?:
|
|
1138
|
+
reversed?: Hybrid<boolean>;
|
|
1139
|
+
start?: Hybrid<number>;
|
|
1140
|
+
type?: Hybrid<"1" | "a" | "A" | "i" | "I">;
|
|
1141
1141
|
};
|
|
1142
1142
|
optgroup: {
|
|
1143
|
-
disabled?:
|
|
1144
|
-
label?:
|
|
1143
|
+
disabled?: Hybrid<boolean>;
|
|
1144
|
+
label?: Hybrid<string>;
|
|
1145
1145
|
};
|
|
1146
1146
|
option: {
|
|
1147
|
-
disabled?:
|
|
1148
|
-
label?:
|
|
1149
|
-
selected?:
|
|
1150
|
-
value?:
|
|
1147
|
+
disabled?: Hybrid<boolean>;
|
|
1148
|
+
label?: Hybrid<string>;
|
|
1149
|
+
selected?: Hybrid<boolean>;
|
|
1150
|
+
value?: Hybrid<string | number>;
|
|
1151
1151
|
};
|
|
1152
1152
|
output: {
|
|
1153
|
-
for?:
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
name?: MaybeReactive<string>;
|
|
1153
|
+
for?: Hybrid<string>;
|
|
1154
|
+
form?: Hybrid<string>;
|
|
1155
|
+
name?: Hybrid<string>;
|
|
1157
1156
|
};
|
|
1158
1157
|
progress: {
|
|
1159
|
-
max?:
|
|
1160
|
-
value?:
|
|
1158
|
+
max?: Hybrid<number>;
|
|
1159
|
+
value?: Hybrid<number>;
|
|
1161
1160
|
};
|
|
1162
1161
|
q: {
|
|
1163
|
-
cite?:
|
|
1162
|
+
cite?: Hybrid<string>;
|
|
1164
1163
|
};
|
|
1165
1164
|
script: {
|
|
1166
|
-
async?:
|
|
1167
|
-
|
|
1168
|
-
defer?:
|
|
1169
|
-
integrity?:
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
src?:
|
|
1173
|
-
type?:
|
|
1174
|
-
|
|
1165
|
+
async?: Hybrid<boolean>;
|
|
1166
|
+
crossorigin?: Hybrid<boolean | "anonymous" | "use-credentials" | "">;
|
|
1167
|
+
defer?: Hybrid<boolean>;
|
|
1168
|
+
integrity?: Hybrid<string>;
|
|
1169
|
+
nomodule?: Hybrid<boolean>;
|
|
1170
|
+
referrerpolicy?: Hybrid<ReferrerPolicy>;
|
|
1171
|
+
src?: Hybrid<string>;
|
|
1172
|
+
type?: Hybrid<string>;
|
|
1173
|
+
fetchpriority?: Hybrid<"high" | "low" | "auto">;
|
|
1175
1174
|
};
|
|
1176
1175
|
select: {
|
|
1177
|
-
|
|
1178
|
-
disabled?:
|
|
1179
|
-
form?:
|
|
1180
|
-
multiple?:
|
|
1181
|
-
name?:
|
|
1182
|
-
required?:
|
|
1183
|
-
size?:
|
|
1184
|
-
value?:
|
|
1176
|
+
autocomplete?: Hybrid<string>;
|
|
1177
|
+
disabled?: Hybrid<boolean>;
|
|
1178
|
+
form?: Hybrid<string>;
|
|
1179
|
+
multiple?: Hybrid<boolean>;
|
|
1180
|
+
name?: Hybrid<string>;
|
|
1181
|
+
required?: Hybrid<boolean>;
|
|
1182
|
+
size?: Hybrid<number>;
|
|
1183
|
+
value?: Hybrid<string | number | readonly string[]>;
|
|
1185
1184
|
};
|
|
1186
1185
|
slot: {
|
|
1187
|
-
name?:
|
|
1186
|
+
name?: Hybrid<string>;
|
|
1188
1187
|
};
|
|
1189
1188
|
source: {
|
|
1190
|
-
height?:
|
|
1191
|
-
media?:
|
|
1192
|
-
sizes?:
|
|
1193
|
-
src?:
|
|
1194
|
-
|
|
1195
|
-
type?:
|
|
1196
|
-
width?:
|
|
1189
|
+
height?: Hybrid<number | string>;
|
|
1190
|
+
media?: Hybrid<string>;
|
|
1191
|
+
sizes?: Hybrid<string>;
|
|
1192
|
+
src?: Hybrid<string>;
|
|
1193
|
+
srcset?: Hybrid<string>;
|
|
1194
|
+
type?: Hybrid<string>;
|
|
1195
|
+
width?: Hybrid<number | string>;
|
|
1197
1196
|
};
|
|
1198
1197
|
style: {
|
|
1199
|
-
media?:
|
|
1200
|
-
scoped?:
|
|
1198
|
+
media?: Hybrid<string>;
|
|
1199
|
+
scoped?: Hybrid<boolean>;
|
|
1201
1200
|
};
|
|
1202
1201
|
table: {
|
|
1203
|
-
|
|
1204
|
-
|
|
1202
|
+
cellpadding?: Hybrid<number | string>;
|
|
1203
|
+
cellspacing?: Hybrid<number | string>;
|
|
1205
1204
|
};
|
|
1206
1205
|
td: TableCellProps;
|
|
1207
1206
|
textarea: {
|
|
1208
|
-
|
|
1209
|
-
cols?:
|
|
1210
|
-
disabled?:
|
|
1211
|
-
form?:
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
name?:
|
|
1215
|
-
placeholder?:
|
|
1216
|
-
|
|
1217
|
-
required?:
|
|
1218
|
-
rows?:
|
|
1219
|
-
value?:
|
|
1220
|
-
wrap?:
|
|
1207
|
+
autocomplete?: Hybrid<string>;
|
|
1208
|
+
cols?: Hybrid<number>;
|
|
1209
|
+
disabled?: Hybrid<boolean>;
|
|
1210
|
+
form?: Hybrid<string>;
|
|
1211
|
+
maxlength?: Hybrid<number>;
|
|
1212
|
+
minlength?: Hybrid<number>;
|
|
1213
|
+
name?: Hybrid<string>;
|
|
1214
|
+
placeholder?: Hybrid<string>;
|
|
1215
|
+
readonly?: Hybrid<boolean>;
|
|
1216
|
+
required?: Hybrid<boolean>;
|
|
1217
|
+
rows?: Hybrid<number>;
|
|
1218
|
+
value?: Hybrid<string>;
|
|
1219
|
+
wrap?: Hybrid<"hard" | "soft" | "off">;
|
|
1221
1220
|
};
|
|
1222
1221
|
th: TableCellProps & {
|
|
1223
|
-
scope?:
|
|
1224
|
-
abbr?:
|
|
1222
|
+
scope?: Hybrid<"row" | "col" | "rowgroup" | "colgroup">;
|
|
1223
|
+
abbr?: Hybrid<string>;
|
|
1225
1224
|
};
|
|
1226
1225
|
time: {
|
|
1227
|
-
|
|
1226
|
+
datetime?: Hybrid<string>;
|
|
1228
1227
|
};
|
|
1229
1228
|
track: {
|
|
1230
|
-
default?:
|
|
1231
|
-
kind?:
|
|
1229
|
+
default?: Hybrid<boolean>;
|
|
1230
|
+
kind?: Hybrid<
|
|
1232
1231
|
"subtitles" | "captions" | "descriptions" | "chapters" | "metadata"
|
|
1233
1232
|
>;
|
|
1234
|
-
label?:
|
|
1235
|
-
src?:
|
|
1236
|
-
srclang?:
|
|
1233
|
+
label?: Hybrid<string>;
|
|
1234
|
+
src?: Hybrid<string>;
|
|
1235
|
+
srclang?: Hybrid<string>;
|
|
1237
1236
|
};
|
|
1238
1237
|
video: MediaProps & {
|
|
1239
|
-
height?:
|
|
1240
|
-
|
|
1241
|
-
poster?:
|
|
1242
|
-
width?:
|
|
1243
|
-
|
|
1244
|
-
|
|
1238
|
+
height?: Hybrid<number | string>;
|
|
1239
|
+
playsinline?: Hybrid<boolean>;
|
|
1240
|
+
poster?: Hybrid<string>;
|
|
1241
|
+
width?: Hybrid<number | string>;
|
|
1242
|
+
disablepictureinpicture?: Hybrid<boolean>;
|
|
1243
|
+
disableremoteplayback?: Hybrid<boolean>;
|
|
1245
1244
|
};
|
|
1246
1245
|
}
|
|
1247
1246
|
|
|
1248
1247
|
interface MediaProps {
|
|
1249
|
-
|
|
1250
|
-
controls?:
|
|
1251
|
-
|
|
1252
|
-
loop?:
|
|
1253
|
-
muted?:
|
|
1254
|
-
preload?:
|
|
1255
|
-
src?:
|
|
1248
|
+
autoplay?: Hybrid<boolean>;
|
|
1249
|
+
controls?: Hybrid<boolean>;
|
|
1250
|
+
crossorigin?: Hybrid<boolean | "anonymous" | "use-credentials" | "">;
|
|
1251
|
+
loop?: Hybrid<boolean>;
|
|
1252
|
+
muted?: Hybrid<boolean>;
|
|
1253
|
+
preload?: Hybrid<"none" | "metadata" | "auto" | "">;
|
|
1254
|
+
src?: Hybrid<string>;
|
|
1256
1255
|
onAbort?: EventHandler<Event>;
|
|
1257
1256
|
onCanPlay?: EventHandler<Event>;
|
|
1258
1257
|
onCanPlayThrough?: EventHandler<Event>;
|
|
@@ -1277,9 +1276,9 @@ interface MediaProps {
|
|
|
1277
1276
|
}
|
|
1278
1277
|
|
|
1279
1278
|
interface TableCellProps {
|
|
1280
|
-
|
|
1281
|
-
headers?:
|
|
1282
|
-
|
|
1279
|
+
colspan?: Hybrid<number>;
|
|
1280
|
+
headers?: Hybrid<string>;
|
|
1281
|
+
rowspan?: Hybrid<number>;
|
|
1283
1282
|
}
|
|
1284
1283
|
|
|
1285
1284
|
// =============================================================================
|
|
@@ -1295,201 +1294,201 @@ interface SVGAttributes<T extends SVGElement = SVGElement>
|
|
|
1295
1294
|
innerHTML?: string | object;
|
|
1296
1295
|
|
|
1297
1296
|
// Core SVG attributes
|
|
1298
|
-
id?:
|
|
1299
|
-
class?:
|
|
1300
|
-
className?:
|
|
1301
|
-
style?:
|
|
1302
|
-
|
|
1303
|
-
lang?:
|
|
1297
|
+
id?: Hybrid<string>;
|
|
1298
|
+
class?: Hybrid<string>;
|
|
1299
|
+
className?: Hybrid<string>;
|
|
1300
|
+
style?: Hybrid<string | CSSProperties>;
|
|
1301
|
+
tabindex?: Hybrid<number>;
|
|
1302
|
+
lang?: Hybrid<string>;
|
|
1304
1303
|
|
|
1305
1304
|
// Presentation attributes
|
|
1306
|
-
"alignment-baseline"?:
|
|
1307
|
-
"baseline-shift"?:
|
|
1308
|
-
clip?:
|
|
1309
|
-
"clip-path"?:
|
|
1310
|
-
"clip-rule"?:
|
|
1311
|
-
color?:
|
|
1312
|
-
"color-interpolation"?:
|
|
1313
|
-
"color-interpolation-filters"?:
|
|
1314
|
-
cursor?:
|
|
1315
|
-
direction?:
|
|
1316
|
-
display?:
|
|
1317
|
-
"dominant-baseline"?:
|
|
1318
|
-
fill?:
|
|
1319
|
-
"fill-opacity"?:
|
|
1320
|
-
"fill-rule"?:
|
|
1321
|
-
filter?:
|
|
1322
|
-
"flood-color"?:
|
|
1323
|
-
"flood-opacity"?:
|
|
1324
|
-
"font-family"?:
|
|
1325
|
-
"font-size"?:
|
|
1326
|
-
"font-size-adjust"?:
|
|
1327
|
-
"font-stretch"?:
|
|
1328
|
-
"font-style"?:
|
|
1329
|
-
"font-variant"?:
|
|
1330
|
-
"font-weight"?:
|
|
1331
|
-
"glyph-orientation-horizontal"?:
|
|
1332
|
-
"glyph-orientation-vertical"?:
|
|
1333
|
-
"image-rendering"?:
|
|
1334
|
-
kerning?:
|
|
1335
|
-
"letter-spacing"?:
|
|
1336
|
-
"lighting-color"?:
|
|
1337
|
-
"marker-end"?:
|
|
1338
|
-
"marker-mid"?:
|
|
1339
|
-
"marker-start"?:
|
|
1340
|
-
mask?:
|
|
1341
|
-
opacity?:
|
|
1342
|
-
overflow?:
|
|
1343
|
-
"pointer-events"?:
|
|
1344
|
-
"shape-rendering"?:
|
|
1345
|
-
"stop-color"?:
|
|
1346
|
-
"stop-opacity"?:
|
|
1347
|
-
stroke?:
|
|
1348
|
-
"stroke-dasharray"?:
|
|
1349
|
-
"stroke-dashoffset"?:
|
|
1350
|
-
"stroke-linecap"?:
|
|
1351
|
-
"stroke-linejoin"?:
|
|
1352
|
-
"stroke-miterlimit"?:
|
|
1353
|
-
"stroke-opacity"?:
|
|
1354
|
-
"stroke-width"?:
|
|
1355
|
-
"text-anchor"?:
|
|
1356
|
-
"text-decoration"?:
|
|
1357
|
-
"text-rendering"?:
|
|
1358
|
-
transform?:
|
|
1359
|
-
"transform-origin"?:
|
|
1360
|
-
"unicode-bidi"?:
|
|
1361
|
-
"vector-effect"?:
|
|
1362
|
-
visibility?:
|
|
1363
|
-
"word-spacing"?:
|
|
1364
|
-
"writing-mode"?:
|
|
1305
|
+
"alignment-baseline"?: Hybrid<string>;
|
|
1306
|
+
"baseline-shift"?: Hybrid<string>;
|
|
1307
|
+
clip?: Hybrid<string>;
|
|
1308
|
+
"clip-path"?: Hybrid<string>;
|
|
1309
|
+
"clip-rule"?: Hybrid<"nonzero" | "evenodd" | "inherit">;
|
|
1310
|
+
color?: Hybrid<string>;
|
|
1311
|
+
"color-interpolation"?: Hybrid<string>;
|
|
1312
|
+
"color-interpolation-filters"?: Hybrid<string>;
|
|
1313
|
+
cursor?: Hybrid<string>;
|
|
1314
|
+
direction?: Hybrid<string>;
|
|
1315
|
+
display?: Hybrid<string>;
|
|
1316
|
+
"dominant-baseline"?: Hybrid<string>;
|
|
1317
|
+
fill?: Hybrid<string>;
|
|
1318
|
+
"fill-opacity"?: Hybrid<number | string>;
|
|
1319
|
+
"fill-rule"?: Hybrid<"nonzero" | "evenodd" | "inherit">;
|
|
1320
|
+
filter?: Hybrid<string>;
|
|
1321
|
+
"flood-color"?: Hybrid<string>;
|
|
1322
|
+
"flood-opacity"?: Hybrid<number | string>;
|
|
1323
|
+
"font-family"?: Hybrid<string>;
|
|
1324
|
+
"font-size"?: Hybrid<string>;
|
|
1325
|
+
"font-size-adjust"?: Hybrid<string>;
|
|
1326
|
+
"font-stretch"?: Hybrid<string>;
|
|
1327
|
+
"font-style"?: Hybrid<string>;
|
|
1328
|
+
"font-variant"?: Hybrid<string>;
|
|
1329
|
+
"font-weight"?: Hybrid<string>;
|
|
1330
|
+
"glyph-orientation-horizontal"?: Hybrid<string>;
|
|
1331
|
+
"glyph-orientation-vertical"?: Hybrid<string>;
|
|
1332
|
+
"image-rendering"?: Hybrid<string>;
|
|
1333
|
+
kerning?: Hybrid<string>;
|
|
1334
|
+
"letter-spacing"?: Hybrid<string>;
|
|
1335
|
+
"lighting-color"?: Hybrid<string>;
|
|
1336
|
+
"marker-end"?: Hybrid<string>;
|
|
1337
|
+
"marker-mid"?: Hybrid<string>;
|
|
1338
|
+
"marker-start"?: Hybrid<string>;
|
|
1339
|
+
mask?: Hybrid<string>;
|
|
1340
|
+
opacity?: Hybrid<number | string>;
|
|
1341
|
+
overflow?: Hybrid<string>;
|
|
1342
|
+
"pointer-events"?: Hybrid<string>;
|
|
1343
|
+
"shape-rendering"?: Hybrid<string>;
|
|
1344
|
+
"stop-color"?: Hybrid<string>;
|
|
1345
|
+
"stop-opacity"?: Hybrid<number | string>;
|
|
1346
|
+
stroke?: Hybrid<string>;
|
|
1347
|
+
"stroke-dasharray"?: Hybrid<string>;
|
|
1348
|
+
"stroke-dashoffset"?: Hybrid<number | string>;
|
|
1349
|
+
"stroke-linecap"?: Hybrid<"butt" | "round" | "square" | "inherit">;
|
|
1350
|
+
"stroke-linejoin"?: Hybrid<"miter" | "round" | "bevel" | "inherit">;
|
|
1351
|
+
"stroke-miterlimit"?: Hybrid<number | string>;
|
|
1352
|
+
"stroke-opacity"?: Hybrid<number | string>;
|
|
1353
|
+
"stroke-width"?: Hybrid<number | string>;
|
|
1354
|
+
"text-anchor"?: Hybrid<"start" | "middle" | "end" | "inherit">;
|
|
1355
|
+
"text-decoration"?: Hybrid<string>;
|
|
1356
|
+
"text-rendering"?: Hybrid<string>;
|
|
1357
|
+
transform?: Hybrid<string>;
|
|
1358
|
+
"transform-origin"?: Hybrid<string>;
|
|
1359
|
+
"unicode-bidi"?: Hybrid<string>;
|
|
1360
|
+
"vector-effect"?: Hybrid<string>;
|
|
1361
|
+
visibility?: Hybrid<string>;
|
|
1362
|
+
"word-spacing"?: Hybrid<string>;
|
|
1363
|
+
"writing-mode"?: Hybrid<string>;
|
|
1365
1364
|
|
|
1366
1365
|
// Common SVG element attributes
|
|
1367
|
-
x?:
|
|
1368
|
-
y?:
|
|
1369
|
-
width?:
|
|
1370
|
-
height?:
|
|
1371
|
-
viewBox?:
|
|
1372
|
-
preserveAspectRatio?:
|
|
1373
|
-
xmlns?:
|
|
1374
|
-
"xmlns:xlink"?:
|
|
1366
|
+
x?: Hybrid<number | string>;
|
|
1367
|
+
y?: Hybrid<number | string>;
|
|
1368
|
+
width?: Hybrid<number | string>;
|
|
1369
|
+
height?: Hybrid<number | string>;
|
|
1370
|
+
viewBox?: Hybrid<string>;
|
|
1371
|
+
preserveAspectRatio?: Hybrid<string>;
|
|
1372
|
+
xmlns?: Hybrid<string>;
|
|
1373
|
+
"xmlns:xlink"?: Hybrid<string>;
|
|
1375
1374
|
|
|
1376
1375
|
// Path
|
|
1377
|
-
d?:
|
|
1378
|
-
pathLength?:
|
|
1376
|
+
d?: Hybrid<string>;
|
|
1377
|
+
pathLength?: Hybrid<number>;
|
|
1379
1378
|
|
|
1380
1379
|
// Circle/Ellipse
|
|
1381
|
-
cx?:
|
|
1382
|
-
cy?:
|
|
1383
|
-
r?:
|
|
1384
|
-
rx?:
|
|
1385
|
-
ry?:
|
|
1380
|
+
cx?: Hybrid<number | string>;
|
|
1381
|
+
cy?: Hybrid<number | string>;
|
|
1382
|
+
r?: Hybrid<number | string>;
|
|
1383
|
+
rx?: Hybrid<number | string>;
|
|
1384
|
+
ry?: Hybrid<number | string>;
|
|
1386
1385
|
|
|
1387
1386
|
// Line
|
|
1388
|
-
x1?:
|
|
1389
|
-
y1?:
|
|
1390
|
-
x2?:
|
|
1391
|
-
y2?:
|
|
1387
|
+
x1?: Hybrid<number | string>;
|
|
1388
|
+
y1?: Hybrid<number | string>;
|
|
1389
|
+
x2?: Hybrid<number | string>;
|
|
1390
|
+
y2?: Hybrid<number | string>;
|
|
1392
1391
|
|
|
1393
1392
|
// Polygon/Polyline
|
|
1394
|
-
points?:
|
|
1393
|
+
points?: Hybrid<string>;
|
|
1395
1394
|
|
|
1396
1395
|
// Text
|
|
1397
|
-
dx?:
|
|
1398
|
-
dy?:
|
|
1399
|
-
textLength?:
|
|
1400
|
-
lengthAdjust?:
|
|
1396
|
+
dx?: Hybrid<number | string>;
|
|
1397
|
+
dy?: Hybrid<number | string>;
|
|
1398
|
+
textLength?: Hybrid<number | string>;
|
|
1399
|
+
lengthAdjust?: Hybrid<"spacing" | "spacingAndGlyphs">;
|
|
1401
1400
|
|
|
1402
1401
|
// Use/Image
|
|
1403
|
-
href?:
|
|
1404
|
-
"xlink:href"?:
|
|
1402
|
+
href?: Hybrid<string>;
|
|
1403
|
+
"xlink:href"?: Hybrid<string>;
|
|
1405
1404
|
|
|
1406
1405
|
// Gradient
|
|
1407
|
-
gradientUnits?:
|
|
1408
|
-
gradientTransform?:
|
|
1409
|
-
spreadMethod?:
|
|
1410
|
-
fx?:
|
|
1411
|
-
fy?:
|
|
1412
|
-
offset?:
|
|
1406
|
+
gradientUnits?: Hybrid<"userSpaceOnUse" | "objectBoundingBox">;
|
|
1407
|
+
gradientTransform?: Hybrid<string>;
|
|
1408
|
+
spreadMethod?: Hybrid<"pad" | "reflect" | "repeat">;
|
|
1409
|
+
fx?: Hybrid<number | string>;
|
|
1410
|
+
fy?: Hybrid<number | string>;
|
|
1411
|
+
offset?: Hybrid<number | string>;
|
|
1413
1412
|
|
|
1414
1413
|
// Filter
|
|
1415
|
-
result?:
|
|
1416
|
-
in?:
|
|
1417
|
-
in2?:
|
|
1418
|
-
mode?:
|
|
1419
|
-
values?:
|
|
1420
|
-
type?:
|
|
1421
|
-
tableValues?:
|
|
1422
|
-
slope?:
|
|
1423
|
-
intercept?:
|
|
1424
|
-
amplitude?:
|
|
1425
|
-
exponent?:
|
|
1426
|
-
stdDeviation?:
|
|
1427
|
-
baseFrequency?:
|
|
1428
|
-
numOctaves?:
|
|
1429
|
-
seed?:
|
|
1430
|
-
stitchTiles?:
|
|
1431
|
-
scale?:
|
|
1432
|
-
xChannelSelector?:
|
|
1433
|
-
yChannelSelector?:
|
|
1434
|
-
azimuth?:
|
|
1435
|
-
elevation?:
|
|
1436
|
-
surfaceScale?:
|
|
1437
|
-
diffuseConstant?:
|
|
1438
|
-
specularConstant?:
|
|
1439
|
-
specularExponent?:
|
|
1440
|
-
kernelUnitLength?:
|
|
1441
|
-
order?:
|
|
1442
|
-
kernelMatrix?:
|
|
1443
|
-
divisor?:
|
|
1444
|
-
bias?:
|
|
1445
|
-
targetX?:
|
|
1446
|
-
targetY?:
|
|
1447
|
-
edgeMode?:
|
|
1448
|
-
preserveAlpha?:
|
|
1449
|
-
radius?:
|
|
1450
|
-
k1?:
|
|
1451
|
-
k2?:
|
|
1452
|
-
k3?:
|
|
1453
|
-
k4?:
|
|
1454
|
-
operator?:
|
|
1414
|
+
result?: Hybrid<string>;
|
|
1415
|
+
in?: Hybrid<string>;
|
|
1416
|
+
in2?: Hybrid<string>;
|
|
1417
|
+
mode?: Hybrid<string>;
|
|
1418
|
+
values?: Hybrid<string>;
|
|
1419
|
+
type?: Hybrid<string>;
|
|
1420
|
+
tableValues?: Hybrid<string>;
|
|
1421
|
+
slope?: Hybrid<number | string>;
|
|
1422
|
+
intercept?: Hybrid<number | string>;
|
|
1423
|
+
amplitude?: Hybrid<number | string>;
|
|
1424
|
+
exponent?: Hybrid<number | string>;
|
|
1425
|
+
stdDeviation?: Hybrid<number | string>;
|
|
1426
|
+
baseFrequency?: Hybrid<number | string>;
|
|
1427
|
+
numOctaves?: Hybrid<number>;
|
|
1428
|
+
seed?: Hybrid<number>;
|
|
1429
|
+
stitchTiles?: Hybrid<"stitch" | "noStitch">;
|
|
1430
|
+
scale?: Hybrid<number>;
|
|
1431
|
+
xChannelSelector?: Hybrid<"R" | "G" | "B" | "A">;
|
|
1432
|
+
yChannelSelector?: Hybrid<"R" | "G" | "B" | "A">;
|
|
1433
|
+
azimuth?: Hybrid<number>;
|
|
1434
|
+
elevation?: Hybrid<number>;
|
|
1435
|
+
surfaceScale?: Hybrid<number>;
|
|
1436
|
+
diffuseConstant?: Hybrid<number>;
|
|
1437
|
+
specularConstant?: Hybrid<number>;
|
|
1438
|
+
specularExponent?: Hybrid<number>;
|
|
1439
|
+
kernelUnitLength?: Hybrid<number | string>;
|
|
1440
|
+
order?: Hybrid<number | string>;
|
|
1441
|
+
kernelMatrix?: Hybrid<string>;
|
|
1442
|
+
divisor?: Hybrid<number>;
|
|
1443
|
+
bias?: Hybrid<number>;
|
|
1444
|
+
targetX?: Hybrid<number>;
|
|
1445
|
+
targetY?: Hybrid<number>;
|
|
1446
|
+
edgeMode?: Hybrid<"duplicate" | "wrap" | "none">;
|
|
1447
|
+
preserveAlpha?: Hybrid<boolean>;
|
|
1448
|
+
radius?: Hybrid<number | string>;
|
|
1449
|
+
k1?: Hybrid<number>;
|
|
1450
|
+
k2?: Hybrid<number>;
|
|
1451
|
+
k3?: Hybrid<number>;
|
|
1452
|
+
k4?: Hybrid<number>;
|
|
1453
|
+
operator?: Hybrid<string>;
|
|
1455
1454
|
|
|
1456
1455
|
// Marker
|
|
1457
|
-
markerWidth?:
|
|
1458
|
-
markerHeight?:
|
|
1459
|
-
refX?:
|
|
1460
|
-
refY?:
|
|
1461
|
-
orient?:
|
|
1462
|
-
markerUnits?:
|
|
1456
|
+
markerWidth?: Hybrid<number | string>;
|
|
1457
|
+
markerHeight?: Hybrid<number | string>;
|
|
1458
|
+
refX?: Hybrid<number | string>;
|
|
1459
|
+
refY?: Hybrid<number | string>;
|
|
1460
|
+
orient?: Hybrid<string>;
|
|
1461
|
+
markerUnits?: Hybrid<"strokeWidth" | "userSpaceOnUse">;
|
|
1463
1462
|
|
|
1464
1463
|
// ClipPath/Mask
|
|
1465
|
-
clipPathUnits?:
|
|
1466
|
-
maskUnits?:
|
|
1467
|
-
maskContentUnits?:
|
|
1464
|
+
clipPathUnits?: Hybrid<"userSpaceOnUse" | "objectBoundingBox">;
|
|
1465
|
+
maskUnits?: Hybrid<"userSpaceOnUse" | "objectBoundingBox">;
|
|
1466
|
+
maskContentUnits?: Hybrid<"userSpaceOnUse" | "objectBoundingBox">;
|
|
1468
1467
|
|
|
1469
1468
|
// Pattern
|
|
1470
|
-
patternUnits?:
|
|
1471
|
-
patternContentUnits?:
|
|
1472
|
-
patternTransform?:
|
|
1469
|
+
patternUnits?: Hybrid<"userSpaceOnUse" | "objectBoundingBox">;
|
|
1470
|
+
patternContentUnits?: Hybrid<"userSpaceOnUse" | "objectBoundingBox">;
|
|
1471
|
+
patternTransform?: Hybrid<string>;
|
|
1473
1472
|
|
|
1474
1473
|
// Animation
|
|
1475
|
-
attributeName?:
|
|
1476
|
-
attributeType?:
|
|
1477
|
-
begin?:
|
|
1478
|
-
dur?:
|
|
1479
|
-
end?:
|
|
1480
|
-
min?:
|
|
1481
|
-
max?:
|
|
1482
|
-
restart?:
|
|
1483
|
-
repeatCount?:
|
|
1484
|
-
repeatDur?:
|
|
1485
|
-
calcMode?:
|
|
1486
|
-
keyTimes?:
|
|
1487
|
-
keySplines?:
|
|
1488
|
-
from?:
|
|
1489
|
-
to?:
|
|
1490
|
-
by?:
|
|
1491
|
-
additive?:
|
|
1492
|
-
accumulate?:
|
|
1474
|
+
attributeName?: Hybrid<string>;
|
|
1475
|
+
attributeType?: Hybrid<string>;
|
|
1476
|
+
begin?: Hybrid<string>;
|
|
1477
|
+
dur?: Hybrid<string>;
|
|
1478
|
+
end?: Hybrid<string>;
|
|
1479
|
+
min?: Hybrid<string>;
|
|
1480
|
+
max?: Hybrid<string>;
|
|
1481
|
+
restart?: Hybrid<"always" | "whenNotActive" | "never">;
|
|
1482
|
+
repeatCount?: Hybrid<number | "indefinite">;
|
|
1483
|
+
repeatDur?: Hybrid<string>;
|
|
1484
|
+
calcMode?: Hybrid<"discrete" | "linear" | "paced" | "spline">;
|
|
1485
|
+
keyTimes?: Hybrid<string>;
|
|
1486
|
+
keySplines?: Hybrid<string>;
|
|
1487
|
+
from?: Hybrid<string>;
|
|
1488
|
+
to?: Hybrid<string>;
|
|
1489
|
+
by?: Hybrid<string>;
|
|
1490
|
+
additive?: Hybrid<"replace" | "sum">;
|
|
1491
|
+
accumulate?: Hybrid<"none" | "sum">;
|
|
1493
1492
|
|
|
1494
1493
|
// Allow any other attributes
|
|
1495
1494
|
[key: string]: any;
|