Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
10
node_modules/html-url-attributes/lib/index.d.ts
generated
vendored
Normal file
10
node_modules/html-url-attributes/lib/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
/**
|
||||
* HTML URL properties.
|
||||
*
|
||||
* Each key is a property name and each value is a list of tag names it applies
|
||||
* to or `null` if it applies to all elements.
|
||||
*
|
||||
* @type {Record<string, Array<string> | null>}
|
||||
*/
|
||||
export const urlAttributes: Record<string, Array<string> | null>;
|
||||
//# sourceMappingURL=index.d.ts.map
|
||||
1
node_modules/html-url-attributes/lib/index.d.ts.map
generated
vendored
Normal file
1
node_modules/html-url-attributes/lib/index.d.ts.map
generated
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH,4BAFU,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAwB7C"}
|
||||
31
node_modules/html-url-attributes/lib/index.js
generated
vendored
Normal file
31
node_modules/html-url-attributes/lib/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
/**
|
||||
* HTML URL properties.
|
||||
*
|
||||
* Each key is a property name and each value is a list of tag names it applies
|
||||
* to or `null` if it applies to all elements.
|
||||
*
|
||||
* @type {Record<string, Array<string> | null>}
|
||||
*/
|
||||
export const urlAttributes = {
|
||||
action: ['form'],
|
||||
cite: ['blockquote', 'del', 'ins', 'q'],
|
||||
data: ['object'],
|
||||
formAction: ['button', 'input'],
|
||||
href: ['a', 'area', 'base', 'link'],
|
||||
icon: ['menuitem'],
|
||||
itemId: null,
|
||||
manifest: ['html'],
|
||||
ping: ['a', 'area'],
|
||||
poster: ['video'],
|
||||
src: [
|
||||
'audio',
|
||||
'embed',
|
||||
'iframe',
|
||||
'img',
|
||||
'input',
|
||||
'script',
|
||||
'source',
|
||||
'track',
|
||||
'video'
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue