@webstudio-is/react-sdk 0.50.0 → 0.52.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/lib/app/custom-components/image.js +2 -4
- package/lib/app/custom-components/shared/remix-link.js +7 -23
- package/lib/cjs/app/custom-components/{image.cjs → image.js} +1 -3
- package/lib/cjs/app/custom-components/shared/{remix-link.cjs → remix-link.js} +6 -22
- package/lib/cjs/components/__generated__/{link.props.cjs → link.props.js} +6 -6
- package/lib/cjs/components/{blockquote.cjs → blockquote.js} +2 -1
- package/lib/cjs/components/{blockquote.ws.cjs → blockquote.ws.js} +57 -35
- package/lib/cjs/components/{body.cjs → body.js} +2 -1
- package/lib/cjs/components/{body.ws.cjs → body.ws.js} +30 -46
- package/lib/cjs/components/{bold.cjs → bold.js} +2 -1
- package/lib/cjs/components/{bold.ws.cjs → bold.ws.js} +6 -1
- package/lib/cjs/components/{box.ws.cjs → box.ws.js} +11 -4
- package/lib/cjs/components/{button.cjs → button.js} +2 -1
- package/lib/cjs/components/{button.ws.cjs → button.ws.js} +6 -1
- package/lib/cjs/components/{code.cjs → code.js} +1 -0
- package/lib/cjs/components/{code.ws.cjs → code.ws.js} +31 -25
- package/lib/cjs/components/{form.cjs → form.js} +2 -1
- package/lib/cjs/components/{form.ws.cjs → form.ws.js} +8 -8
- package/lib/cjs/components/{heading.ws.cjs → heading.ws.js} +11 -1
- package/lib/cjs/components/{image.cjs → image.js} +2 -1
- package/lib/cjs/components/{image.ws.cjs → image.ws.js} +15 -11
- package/lib/cjs/components/{input.cjs → input.js} +2 -1
- package/lib/cjs/components/{input.ws.cjs → input.ws.js} +6 -1
- package/lib/cjs/components/{italic.cjs → italic.js} +2 -1
- package/lib/cjs/components/{italic.ws.cjs → italic.ws.js} +8 -4
- package/lib/cjs/components/{link-block.cjs → link-block.js} +3 -1
- package/lib/cjs/components/{link-block.ws.cjs → link-block.ws.js} +13 -9
- package/lib/cjs/components/{link.cjs → link.js} +15 -6
- package/lib/cjs/components/{link.ws.cjs → link.ws.js} +21 -10
- package/lib/cjs/components/{list-item.cjs → list-item.js} +2 -1
- package/lib/cjs/components/{list-item.ws.cjs → list-item.ws.js} +6 -1
- package/lib/cjs/components/{list.ws.cjs → list.ws.js} +29 -10
- package/lib/cjs/components/{paragraph.cjs → paragraph.js} +2 -1
- package/lib/cjs/components/{paragraph.ws.cjs → paragraph.ws.js} +6 -1
- package/lib/cjs/components/{rich-text-link.ws.cjs → rich-text-link.ws.js} +5 -2
- package/lib/cjs/components/{separator.cjs → separator.js} +2 -1
- package/lib/cjs/components/{separator.ws.cjs → separator.ws.js} +27 -11
- package/lib/cjs/components/{span.cjs → span.js} +2 -1
- package/lib/cjs/components/{span.ws.cjs → span.ws.js} +6 -1
- package/lib/cjs/components/{subscript.cjs → subscript.js} +2 -1
- package/lib/cjs/components/{subscript.ws.cjs → subscript.ws.js} +6 -1
- package/lib/cjs/components/{superscript.cjs → superscript.js} +2 -1
- package/lib/cjs/components/{superscript.ws.cjs → superscript.ws.js} +6 -1
- package/lib/cjs/components/{text-block.cjs → text-block.js} +2 -1
- package/lib/cjs/components/{text-block.ws.cjs → text-block.ws.js} +9 -5
- package/lib/cjs/{context.cjs → context.js} +2 -1
- package/lib/cjs/css/css.js +64 -0
- package/lib/cjs/css/global-rules.js +37 -0
- package/lib/cjs/css/{index.cjs → index.js} +3 -1
- package/lib/cjs/css/normalize-type-check.js +26 -0
- package/lib/cjs/css/normalize.js +358 -0
- package/lib/cjs/css/presets.js +61 -0
- package/lib/cjs/css/style-rules.js +62 -0
- package/lib/cjs/package.json +1 -0
- package/lib/cjs/{props.cjs → props.js} +43 -2
- package/lib/cjs/pubsub/{create.cjs → create.js} +6 -35
- package/lib/cjs/pubsub/raf-queue.js +45 -0
- package/lib/cjs/tree/{create-elements-tree.cjs → create-elements-tree.js} +8 -1
- package/lib/cjs/tree/{root.cjs → root.js} +1 -0
- package/lib/cjs/tree/{webstudio-component.cjs → webstudio-component.js} +1 -0
- package/lib/components/__generated__/link-block.props.js +5 -5
- package/lib/components/__generated__/link.props.js +6 -6
- package/lib/components/__generated__/rich-text-link.props.js +5 -5
- package/lib/components/blockquote.js +2 -1
- package/lib/components/blockquote.ws.js +57 -35
- package/lib/components/body.js +2 -1
- package/lib/components/body.ws.js +30 -46
- package/lib/components/bold.js +2 -1
- package/lib/components/bold.ws.js +7 -2
- package/lib/components/box.ws.js +22 -4
- package/lib/components/button.js +2 -1
- package/lib/components/button.ws.js +7 -2
- package/lib/components/code.js +1 -0
- package/lib/components/code.ws.js +31 -25
- package/lib/components/form.js +2 -1
- package/lib/components/form.ws.js +8 -8
- package/lib/components/heading.ws.js +11 -1
- package/lib/components/image.js +2 -1
- package/lib/components/image.ws.js +15 -11
- package/lib/components/input.js +2 -1
- package/lib/components/input.ws.js +7 -2
- package/lib/components/italic.js +2 -1
- package/lib/components/italic.ws.js +9 -5
- package/lib/components/link-block.js +3 -1
- package/lib/components/link-block.ws.js +13 -9
- package/lib/components/link.js +15 -6
- package/lib/components/link.ws.js +22 -11
- package/lib/components/list-item.js +2 -1
- package/lib/components/list-item.ws.js +6 -1
- package/lib/components/list.ws.js +29 -10
- package/lib/components/paragraph.js +2 -1
- package/lib/components/paragraph.ws.js +6 -1
- package/lib/components/rich-text-link.ws.js +6 -3
- package/lib/components/separator.js +2 -1
- package/lib/components/separator.ws.js +27 -11
- package/lib/components/span.js +2 -1
- package/lib/components/span.ws.js +7 -2
- package/lib/components/subscript.js +2 -1
- package/lib/components/subscript.ws.js +6 -1
- package/lib/components/superscript.js +2 -1
- package/lib/components/superscript.ws.js +6 -1
- package/lib/components/text-block.js +2 -1
- package/lib/components/text-block.ws.js +10 -6
- package/lib/context.js +2 -1
- package/lib/css/css.js +44 -0
- package/lib/css/get-browser-style.js +3 -1
- package/lib/css/global-rules.js +20 -0
- package/lib/css/index.js +3 -1
- package/lib/css/normalize-type-check.js +3 -0
- package/lib/css/normalize.js +338 -0
- package/lib/css/presets.js +41 -0
- package/lib/css/style-rules.js +42 -0
- package/lib/props.js +43 -2
- package/lib/pubsub/create.js +6 -25
- package/lib/pubsub/raf-queue.js +25 -0
- package/lib/tree/create-elements-tree.js +8 -1
- package/lib/tree/root.js +1 -0
- package/lib/tree/webstudio-component.js +1 -0
- package/lib/types/app/custom-components/image.d.ts +6 -0
- package/lib/types/app/custom-components/index.d.ts +26 -0
- package/lib/types/app/custom-components/link-block.d.ts +6 -0
- package/lib/types/app/custom-components/link.d.ts +6 -0
- package/lib/types/app/custom-components/rich-text-link.d.ts +6 -0
- package/lib/types/app/custom-components/shared/remix-link.d.ts +10 -0
- package/lib/types/app/handle-request.server.d.ts +2 -0
- package/lib/types/app/index.d.ts +3 -0
- package/lib/types/app/params.d.ts +5 -0
- package/lib/types/app/root.d.ts +8 -0
- package/lib/types/components/__generated__/blockquote.props.d.ts +2 -0
- package/lib/types/components/__generated__/body.props.d.ts +2 -0
- package/lib/types/components/__generated__/bold.props.d.ts +2 -0
- package/lib/types/components/__generated__/box.props.d.ts +2 -0
- package/lib/types/components/__generated__/button.props.d.ts +2 -0
- package/lib/types/components/__generated__/code.props.d.ts +2 -0
- package/lib/types/components/__generated__/form.props.d.ts +2 -0
- package/lib/types/components/__generated__/fragment.props.d.ts +2 -0
- package/lib/types/components/__generated__/heading.props.d.ts +2 -0
- package/lib/types/components/__generated__/image.props.d.ts +2 -0
- package/lib/types/components/__generated__/input.props.d.ts +2 -0
- package/lib/types/components/__generated__/italic.props.d.ts +2 -0
- package/lib/types/components/__generated__/link-block.props.d.ts +2 -0
- package/lib/types/components/__generated__/link.props.d.ts +2 -0
- package/lib/types/components/__generated__/list-item.props.d.ts +2 -0
- package/lib/types/components/__generated__/list.props.d.ts +2 -0
- package/lib/types/components/__generated__/paragraph.props.d.ts +2 -0
- package/lib/types/components/__generated__/rich-text-link.props.d.ts +2 -0
- package/lib/types/components/__generated__/separator.props.d.ts +2 -0
- package/lib/types/components/__generated__/slot.props.d.ts +2 -0
- package/lib/types/components/__generated__/span.props.d.ts +2 -0
- package/lib/types/components/__generated__/subscript.props.d.ts +2 -0
- package/lib/types/components/__generated__/superscript.props.d.ts +2 -0
- package/lib/types/components/__generated__/text-block.props.d.ts +2 -0
- package/lib/types/components/blockquote.d.ts +3 -0
- package/lib/types/components/blockquote.stories.d.ts +5 -0
- package/lib/types/components/blockquote.ws.d.ts +3 -0
- package/lib/types/components/body.d.ts +3 -0
- package/lib/types/components/body.stories.d.ts +6 -0
- package/lib/types/components/body.ws.d.ts +3 -0
- package/lib/types/components/bold.d.ts +3 -0
- package/lib/types/components/bold.stories.d.ts +5 -0
- package/lib/types/components/bold.ws.d.ts +3 -0
- package/lib/types/components/box.d.ts +7 -0
- package/lib/types/components/box.stories.d.ts +9 -0
- package/lib/types/components/box.ws.d.ts +3 -0
- package/lib/types/components/button.d.ts +7 -0
- package/lib/types/components/button.stories.d.ts +9 -0
- package/lib/types/components/button.ws.d.ts +3 -0
- package/lib/types/components/code.d.ts +9 -0
- package/lib/types/components/code.stories.d.ts +11 -0
- package/lib/types/components/code.ws.d.ts +3 -0
- package/lib/types/components/component-meta.d.ts +605 -0
- package/lib/types/components/components-utils.d.ts +34 -0
- package/lib/types/components/components.d.ts +31 -0
- package/lib/types/components/form.d.ts +3 -0
- package/lib/types/components/form.stories.d.ts +5 -0
- package/lib/types/components/form.ws.d.ts +3 -0
- package/lib/types/components/fragment.d.ts +6 -0
- package/lib/types/components/fragment.ws.d.ts +3 -0
- package/lib/types/components/heading.d.ts +7 -0
- package/lib/types/components/heading.stories.d.ts +9 -0
- package/lib/types/components/heading.ws.d.ts +3 -0
- package/lib/types/components/image.d.ts +3 -0
- package/lib/types/components/image.stories.d.ts +5 -0
- package/lib/types/components/image.ws.d.ts +3 -0
- package/lib/types/components/index.d.ts +17 -0
- package/lib/types/components/input.d.ts +3 -0
- package/lib/types/components/input.stories.d.ts +5 -0
- package/lib/types/components/input.ws.d.ts +3 -0
- package/lib/types/components/italic.d.ts +3 -0
- package/lib/types/components/italic.stories.d.ts +5 -0
- package/lib/types/components/italic.ws.d.ts +3 -0
- package/lib/types/components/link-block.d.ts +3 -0
- package/lib/types/components/link-block.stories.d.ts +13 -0
- package/lib/types/components/link-block.ws.d.ts +3 -0
- package/lib/types/components/link.d.ts +9 -0
- package/lib/types/components/link.stories.d.ts +13 -0
- package/lib/types/components/link.ws.d.ts +3 -0
- package/lib/types/components/list-item.d.ts +3 -0
- package/lib/types/components/list-item.stories.d.ts +5 -0
- package/lib/types/components/list-item.ws.d.ts +3 -0
- package/lib/types/components/list.d.ts +9 -0
- package/lib/types/components/list.stories.d.ts +9 -0
- package/lib/types/components/list.ws.d.ts +3 -0
- package/lib/types/components/paragraph.d.ts +3 -0
- package/lib/types/components/paragraph.stories.d.ts +5 -0
- package/lib/types/components/paragraph.ws.d.ts +3 -0
- package/lib/types/components/rich-text-link.d.ts +2 -0
- package/lib/types/components/rich-text-link.stories.d.ts +13 -0
- package/lib/types/components/rich-text-link.ws.d.ts +3 -0
- package/lib/types/components/separator.d.ts +3 -0
- package/lib/types/components/separator.stories.d.ts +5 -0
- package/lib/types/components/separator.ws.d.ts +3 -0
- package/lib/types/components/slot.d.ts +6 -0
- package/lib/types/components/slot.stories.d.ts +9 -0
- package/lib/types/components/slot.ws.d.ts +3 -0
- package/lib/types/components/span.d.ts +3 -0
- package/lib/types/components/span.stories.d.ts +5 -0
- package/lib/types/components/span.ws.d.ts +3 -0
- package/lib/types/components/subscript.d.ts +3 -0
- package/lib/types/components/subscript.stories.d.ts +5 -0
- package/lib/types/components/subscript.ws.d.ts +3 -0
- package/lib/types/components/superscript.d.ts +3 -0
- package/lib/types/components/superscript.stories.d.ts +5 -0
- package/lib/types/components/superscript.ws.d.ts +3 -0
- package/lib/types/components/text-block.d.ts +3 -0
- package/lib/types/components/text-block.stories.d.ts +5 -0
- package/lib/types/components/text-block.ws.d.ts +3 -0
- package/lib/types/context.d.ts +9 -0
- package/lib/types/css/css.d.ts +10 -0
- package/lib/types/css/get-browser-style.d.ts +2 -0
- package/lib/types/css/global-rules.d.ts +44 -0
- package/lib/types/css/index.d.ts +4 -0
- package/lib/types/css/normalize-type-check.d.ts +1 -0
- package/lib/types/css/normalize.d.ts +2429 -0
- package/lib/types/css/presets.d.ts +38 -0
- package/lib/types/css/style-rules.d.ts +248 -0
- package/lib/types/css/style-rules.test.d.ts +1 -0
- package/lib/types/index.d.ts +9 -0
- package/lib/types/props.d.ts +97 -0
- package/lib/types/props.test.d.ts +1 -0
- package/lib/types/pubsub/create.d.ts +28 -0
- package/lib/types/pubsub/index.d.ts +1 -0
- package/lib/types/pubsub/raf-queue.d.ts +1 -0
- package/lib/types/tree/create-elements-tree.d.ts +16 -0
- package/lib/types/tree/index.d.ts +3 -0
- package/lib/types/tree/root.d.ts +25 -0
- package/lib/types/tree/session-storage-polyfill.d.ts +2 -0
- package/lib/types/tree/webstudio-component.d.ts +15 -0
- package/package.json +20 -19
- package/src/app/custom-components/image.tsx +4 -7
- package/src/app/custom-components/shared/remix-link.tsx +12 -48
- package/src/components/__generated__/link-block.props.ts +5 -5
- package/src/components/__generated__/link.props.ts +6 -6
- package/src/components/__generated__/rich-text-link.props.ts +5 -5
- package/src/components/blockquote.tsx +1 -1
- package/src/components/blockquote.ws.tsx +63 -36
- package/src/components/body.tsx +1 -1
- package/src/components/body.ws.tsx +39 -47
- package/src/components/bold.tsx +1 -1
- package/src/components/bold.ws.tsx +10 -2
- package/src/components/box.ws.ts +28 -5
- package/src/components/button.tsx +1 -1
- package/src/components/button.ws.tsx +10 -2
- package/src/components/code.tsx +1 -1
- package/src/components/code.ws.tsx +36 -28
- package/src/components/component-meta.ts +4 -1
- package/src/components/form.tsx +1 -1
- package/src/components/form.ws.tsx +11 -9
- package/src/components/heading.ws.tsx +16 -0
- package/src/components/image.tsx +1 -1
- package/src/components/image.ws.tsx +19 -12
- package/src/components/input.tsx +1 -1
- package/src/components/input.ws.tsx +10 -2
- package/src/components/italic.tsx +1 -1
- package/src/components/italic.ws.tsx +12 -6
- package/src/components/link-block.tsx +1 -0
- package/src/components/link-block.ws.tsx +16 -10
- package/src/components/link.tsx +14 -6
- package/src/components/link.ws.tsx +25 -12
- package/src/components/list-item.tsx +1 -1
- package/src/components/list-item.ws.tsx +8 -0
- package/src/components/list.tsx +2 -0
- package/src/components/list.ws.tsx +32 -11
- package/src/components/paragraph.tsx +1 -1
- package/src/components/paragraph.ws.tsx +8 -0
- package/src/components/rich-text-link.ws.tsx +6 -3
- package/src/components/separator.tsx +1 -1
- package/src/components/separator.ws.tsx +33 -12
- package/src/components/span.tsx +1 -1
- package/src/components/span.ws.tsx +10 -2
- package/src/components/subscript.tsx +1 -1
- package/src/components/subscript.ws.tsx +8 -0
- package/src/components/superscript.tsx +1 -1
- package/src/components/superscript.ws.tsx +8 -0
- package/src/components/text-block.tsx +1 -1
- package/src/components/text-block.ws.tsx +14 -7
- package/src/context.tsx +4 -1
- package/src/css/css.ts +57 -0
- package/src/css/get-browser-style.ts +6 -1
- package/src/css/global-rules.ts +29 -0
- package/src/css/index.ts +3 -1
- package/src/css/normalize-type-check.ts +13 -0
- package/src/css/normalize.ts +519 -0
- package/src/css/presets.ts +42 -0
- package/src/css/style-rules.test.ts +147 -0
- package/src/css/style-rules.ts +66 -0
- package/src/props.test.ts +95 -0
- package/src/props.ts +59 -5
- package/src/pubsub/create.ts +7 -38
- package/src/pubsub/raf-queue.ts +31 -0
- package/src/tree/create-elements-tree.tsx +7 -2
- package/src/tree/root.ts +2 -0
- package/src/tree/webstudio-component.tsx +1 -0
- package/lib/cjs/css/categories.cjs +0 -250
- package/lib/css/categories.js +0 -230
- package/src/css/categories.ts +0 -254
- package/lib/cjs/app/custom-components/{index.cjs → index.js} +0 -0
- package/lib/cjs/app/custom-components/{link-block.cjs → link-block.js} +0 -0
- package/lib/cjs/app/custom-components/{link.cjs → link.js} +0 -0
- package/lib/cjs/app/custom-components/{rich-text-link.cjs → rich-text-link.js} +0 -0
- package/lib/cjs/app/{handle-request.server.cjs → handle-request.server.js} +0 -0
- package/lib/cjs/app/{index.cjs → index.js} +0 -0
- package/lib/cjs/app/{params.cjs → params.js} +0 -0
- package/lib/cjs/app/{root.cjs → root.js} +0 -0
- package/lib/cjs/components/__generated__/{blockquote.props.cjs → blockquote.props.js} +0 -0
- package/lib/cjs/components/__generated__/{body.props.cjs → body.props.js} +0 -0
- package/lib/cjs/components/__generated__/{bold.props.cjs → bold.props.js} +0 -0
- package/lib/cjs/components/__generated__/{box.props.cjs → box.props.js} +0 -0
- package/lib/cjs/components/__generated__/{button.props.cjs → button.props.js} +0 -0
- package/lib/cjs/components/__generated__/{code.props.cjs → code.props.js} +0 -0
- package/lib/cjs/components/__generated__/{form.props.cjs → form.props.js} +0 -0
- package/lib/cjs/components/__generated__/{fragment.props.cjs → fragment.props.js} +0 -0
- package/lib/cjs/components/__generated__/{heading.props.cjs → heading.props.js} +0 -0
- package/lib/cjs/components/__generated__/{image.props.cjs → image.props.js} +0 -0
- package/lib/cjs/components/__generated__/{input.props.cjs → input.props.js} +0 -0
- package/lib/cjs/components/__generated__/{italic.props.cjs → italic.props.js} +0 -0
- package/lib/cjs/components/__generated__/{link-block.props.cjs → link-block.props.js} +5 -5
- package/lib/cjs/components/__generated__/{list-item.props.cjs → list-item.props.js} +0 -0
- package/lib/cjs/components/__generated__/{list.props.cjs → list.props.js} +0 -0
- package/lib/cjs/components/__generated__/{paragraph.props.cjs → paragraph.props.js} +0 -0
- package/lib/cjs/components/__generated__/{rich-text-link.props.cjs → rich-text-link.props.js} +5 -5
- /package/lib/cjs/components/__generated__/{separator.props.cjs → separator.props.js} +0 -0
- /package/lib/cjs/components/__generated__/{slot.props.cjs → slot.props.js} +0 -0
- /package/lib/cjs/components/__generated__/{span.props.cjs → span.props.js} +0 -0
- /package/lib/cjs/components/__generated__/{subscript.props.cjs → subscript.props.js} +0 -0
- /package/lib/cjs/components/__generated__/{superscript.props.cjs → superscript.props.js} +0 -0
- /package/lib/cjs/components/__generated__/{text-block.props.cjs → text-block.props.js} +0 -0
- /package/lib/cjs/components/{box.cjs → box.js} +0 -0
- /package/lib/cjs/components/{component-meta.cjs → component-meta.js} +0 -0
- /package/lib/cjs/components/{components-utils.cjs → components-utils.js} +0 -0
- /package/lib/cjs/components/{components.cjs → components.js} +0 -0
- /package/lib/cjs/components/{fragment.cjs → fragment.js} +0 -0
- /package/lib/cjs/components/{fragment.ws.cjs → fragment.ws.js} +0 -0
- /package/lib/cjs/components/{heading.cjs → heading.js} +0 -0
- /package/lib/cjs/components/{index.cjs → index.js} +0 -0
- /package/lib/cjs/components/{list.cjs → list.js} +0 -0
- /package/lib/cjs/components/{rich-text-link.cjs → rich-text-link.js} +0 -0
- /package/lib/cjs/components/{slot.cjs → slot.js} +0 -0
- /package/lib/cjs/components/{slot.ws.cjs → slot.ws.js} +0 -0
- /package/lib/cjs/css/{get-browser-style.cjs → get-browser-style.js} +0 -0
- /package/lib/cjs/{index.cjs → index.js} +0 -0
- /package/lib/cjs/pubsub/{index.cjs → index.js} +0 -0
- /package/lib/cjs/tree/{index.cjs → index.js} +0 -0
- /package/lib/cjs/tree/{session-storage-polyfill.cjs → session-storage-polyfill.js} +0 -0
|
@@ -0,0 +1,2429 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Based on https://github.com/sindresorhus/modern-normalize
|
|
3
|
+
*
|
|
4
|
+
* Attributions
|
|
5
|
+
*
|
|
6
|
+
* The MIT License (MIT)
|
|
7
|
+
* Copyright (c) Nicolas Gallagher
|
|
8
|
+
* Copyright (c) Jonathan Neal
|
|
9
|
+
* Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
10
|
+
*
|
|
11
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
12
|
+
*
|
|
13
|
+
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
14
|
+
*
|
|
15
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
|
|
16
|
+
*/
|
|
17
|
+
export declare const div: {
|
|
18
|
+
readonly borderTopColor: {
|
|
19
|
+
readonly type: "keyword";
|
|
20
|
+
readonly value: "currentColor";
|
|
21
|
+
};
|
|
22
|
+
readonly borderRightColor: {
|
|
23
|
+
readonly type: "keyword";
|
|
24
|
+
readonly value: "currentColor";
|
|
25
|
+
};
|
|
26
|
+
readonly borderBottomColor: {
|
|
27
|
+
readonly type: "keyword";
|
|
28
|
+
readonly value: "currentColor";
|
|
29
|
+
};
|
|
30
|
+
readonly borderLeftColor: {
|
|
31
|
+
readonly type: "keyword";
|
|
32
|
+
readonly value: "currentColor";
|
|
33
|
+
};
|
|
34
|
+
readonly borderTopWidth: {
|
|
35
|
+
readonly type: "unit";
|
|
36
|
+
readonly value: 1;
|
|
37
|
+
readonly unit: "px";
|
|
38
|
+
};
|
|
39
|
+
readonly borderRightWidth: {
|
|
40
|
+
readonly type: "unit";
|
|
41
|
+
readonly value: 1;
|
|
42
|
+
readonly unit: "px";
|
|
43
|
+
};
|
|
44
|
+
readonly borderBottomWidth: {
|
|
45
|
+
readonly type: "unit";
|
|
46
|
+
readonly value: 1;
|
|
47
|
+
readonly unit: "px";
|
|
48
|
+
};
|
|
49
|
+
readonly borderLeftWidth: {
|
|
50
|
+
readonly type: "unit";
|
|
51
|
+
readonly value: 1;
|
|
52
|
+
readonly unit: "px";
|
|
53
|
+
};
|
|
54
|
+
readonly boxSizing: {
|
|
55
|
+
readonly type: "keyword";
|
|
56
|
+
readonly value: "border-box";
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
export declare const address: {
|
|
60
|
+
readonly borderTopColor: {
|
|
61
|
+
readonly type: "keyword";
|
|
62
|
+
readonly value: "currentColor";
|
|
63
|
+
};
|
|
64
|
+
readonly borderRightColor: {
|
|
65
|
+
readonly type: "keyword";
|
|
66
|
+
readonly value: "currentColor";
|
|
67
|
+
};
|
|
68
|
+
readonly borderBottomColor: {
|
|
69
|
+
readonly type: "keyword";
|
|
70
|
+
readonly value: "currentColor";
|
|
71
|
+
};
|
|
72
|
+
readonly borderLeftColor: {
|
|
73
|
+
readonly type: "keyword";
|
|
74
|
+
readonly value: "currentColor";
|
|
75
|
+
};
|
|
76
|
+
readonly borderTopWidth: {
|
|
77
|
+
readonly type: "unit";
|
|
78
|
+
readonly value: 1;
|
|
79
|
+
readonly unit: "px";
|
|
80
|
+
};
|
|
81
|
+
readonly borderRightWidth: {
|
|
82
|
+
readonly type: "unit";
|
|
83
|
+
readonly value: 1;
|
|
84
|
+
readonly unit: "px";
|
|
85
|
+
};
|
|
86
|
+
readonly borderBottomWidth: {
|
|
87
|
+
readonly type: "unit";
|
|
88
|
+
readonly value: 1;
|
|
89
|
+
readonly unit: "px";
|
|
90
|
+
};
|
|
91
|
+
readonly borderLeftWidth: {
|
|
92
|
+
readonly type: "unit";
|
|
93
|
+
readonly value: 1;
|
|
94
|
+
readonly unit: "px";
|
|
95
|
+
};
|
|
96
|
+
readonly boxSizing: {
|
|
97
|
+
readonly type: "keyword";
|
|
98
|
+
readonly value: "border-box";
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
export declare const article: {
|
|
102
|
+
readonly borderTopColor: {
|
|
103
|
+
readonly type: "keyword";
|
|
104
|
+
readonly value: "currentColor";
|
|
105
|
+
};
|
|
106
|
+
readonly borderRightColor: {
|
|
107
|
+
readonly type: "keyword";
|
|
108
|
+
readonly value: "currentColor";
|
|
109
|
+
};
|
|
110
|
+
readonly borderBottomColor: {
|
|
111
|
+
readonly type: "keyword";
|
|
112
|
+
readonly value: "currentColor";
|
|
113
|
+
};
|
|
114
|
+
readonly borderLeftColor: {
|
|
115
|
+
readonly type: "keyword";
|
|
116
|
+
readonly value: "currentColor";
|
|
117
|
+
};
|
|
118
|
+
readonly borderTopWidth: {
|
|
119
|
+
readonly type: "unit";
|
|
120
|
+
readonly value: 1;
|
|
121
|
+
readonly unit: "px";
|
|
122
|
+
};
|
|
123
|
+
readonly borderRightWidth: {
|
|
124
|
+
readonly type: "unit";
|
|
125
|
+
readonly value: 1;
|
|
126
|
+
readonly unit: "px";
|
|
127
|
+
};
|
|
128
|
+
readonly borderBottomWidth: {
|
|
129
|
+
readonly type: "unit";
|
|
130
|
+
readonly value: 1;
|
|
131
|
+
readonly unit: "px";
|
|
132
|
+
};
|
|
133
|
+
readonly borderLeftWidth: {
|
|
134
|
+
readonly type: "unit";
|
|
135
|
+
readonly value: 1;
|
|
136
|
+
readonly unit: "px";
|
|
137
|
+
};
|
|
138
|
+
readonly boxSizing: {
|
|
139
|
+
readonly type: "keyword";
|
|
140
|
+
readonly value: "border-box";
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
export declare const aside: {
|
|
144
|
+
readonly borderTopColor: {
|
|
145
|
+
readonly type: "keyword";
|
|
146
|
+
readonly value: "currentColor";
|
|
147
|
+
};
|
|
148
|
+
readonly borderRightColor: {
|
|
149
|
+
readonly type: "keyword";
|
|
150
|
+
readonly value: "currentColor";
|
|
151
|
+
};
|
|
152
|
+
readonly borderBottomColor: {
|
|
153
|
+
readonly type: "keyword";
|
|
154
|
+
readonly value: "currentColor";
|
|
155
|
+
};
|
|
156
|
+
readonly borderLeftColor: {
|
|
157
|
+
readonly type: "keyword";
|
|
158
|
+
readonly value: "currentColor";
|
|
159
|
+
};
|
|
160
|
+
readonly borderTopWidth: {
|
|
161
|
+
readonly type: "unit";
|
|
162
|
+
readonly value: 1;
|
|
163
|
+
readonly unit: "px";
|
|
164
|
+
};
|
|
165
|
+
readonly borderRightWidth: {
|
|
166
|
+
readonly type: "unit";
|
|
167
|
+
readonly value: 1;
|
|
168
|
+
readonly unit: "px";
|
|
169
|
+
};
|
|
170
|
+
readonly borderBottomWidth: {
|
|
171
|
+
readonly type: "unit";
|
|
172
|
+
readonly value: 1;
|
|
173
|
+
readonly unit: "px";
|
|
174
|
+
};
|
|
175
|
+
readonly borderLeftWidth: {
|
|
176
|
+
readonly type: "unit";
|
|
177
|
+
readonly value: 1;
|
|
178
|
+
readonly unit: "px";
|
|
179
|
+
};
|
|
180
|
+
readonly boxSizing: {
|
|
181
|
+
readonly type: "keyword";
|
|
182
|
+
readonly value: "border-box";
|
|
183
|
+
};
|
|
184
|
+
};
|
|
185
|
+
export declare const figure: {
|
|
186
|
+
readonly borderTopColor: {
|
|
187
|
+
readonly type: "keyword";
|
|
188
|
+
readonly value: "currentColor";
|
|
189
|
+
};
|
|
190
|
+
readonly borderRightColor: {
|
|
191
|
+
readonly type: "keyword";
|
|
192
|
+
readonly value: "currentColor";
|
|
193
|
+
};
|
|
194
|
+
readonly borderBottomColor: {
|
|
195
|
+
readonly type: "keyword";
|
|
196
|
+
readonly value: "currentColor";
|
|
197
|
+
};
|
|
198
|
+
readonly borderLeftColor: {
|
|
199
|
+
readonly type: "keyword";
|
|
200
|
+
readonly value: "currentColor";
|
|
201
|
+
};
|
|
202
|
+
readonly borderTopWidth: {
|
|
203
|
+
readonly type: "unit";
|
|
204
|
+
readonly value: 1;
|
|
205
|
+
readonly unit: "px";
|
|
206
|
+
};
|
|
207
|
+
readonly borderRightWidth: {
|
|
208
|
+
readonly type: "unit";
|
|
209
|
+
readonly value: 1;
|
|
210
|
+
readonly unit: "px";
|
|
211
|
+
};
|
|
212
|
+
readonly borderBottomWidth: {
|
|
213
|
+
readonly type: "unit";
|
|
214
|
+
readonly value: 1;
|
|
215
|
+
readonly unit: "px";
|
|
216
|
+
};
|
|
217
|
+
readonly borderLeftWidth: {
|
|
218
|
+
readonly type: "unit";
|
|
219
|
+
readonly value: 1;
|
|
220
|
+
readonly unit: "px";
|
|
221
|
+
};
|
|
222
|
+
readonly boxSizing: {
|
|
223
|
+
readonly type: "keyword";
|
|
224
|
+
readonly value: "border-box";
|
|
225
|
+
};
|
|
226
|
+
};
|
|
227
|
+
export declare const footer: {
|
|
228
|
+
readonly borderTopColor: {
|
|
229
|
+
readonly type: "keyword";
|
|
230
|
+
readonly value: "currentColor";
|
|
231
|
+
};
|
|
232
|
+
readonly borderRightColor: {
|
|
233
|
+
readonly type: "keyword";
|
|
234
|
+
readonly value: "currentColor";
|
|
235
|
+
};
|
|
236
|
+
readonly borderBottomColor: {
|
|
237
|
+
readonly type: "keyword";
|
|
238
|
+
readonly value: "currentColor";
|
|
239
|
+
};
|
|
240
|
+
readonly borderLeftColor: {
|
|
241
|
+
readonly type: "keyword";
|
|
242
|
+
readonly value: "currentColor";
|
|
243
|
+
};
|
|
244
|
+
readonly borderTopWidth: {
|
|
245
|
+
readonly type: "unit";
|
|
246
|
+
readonly value: 1;
|
|
247
|
+
readonly unit: "px";
|
|
248
|
+
};
|
|
249
|
+
readonly borderRightWidth: {
|
|
250
|
+
readonly type: "unit";
|
|
251
|
+
readonly value: 1;
|
|
252
|
+
readonly unit: "px";
|
|
253
|
+
};
|
|
254
|
+
readonly borderBottomWidth: {
|
|
255
|
+
readonly type: "unit";
|
|
256
|
+
readonly value: 1;
|
|
257
|
+
readonly unit: "px";
|
|
258
|
+
};
|
|
259
|
+
readonly borderLeftWidth: {
|
|
260
|
+
readonly type: "unit";
|
|
261
|
+
readonly value: 1;
|
|
262
|
+
readonly unit: "px";
|
|
263
|
+
};
|
|
264
|
+
readonly boxSizing: {
|
|
265
|
+
readonly type: "keyword";
|
|
266
|
+
readonly value: "border-box";
|
|
267
|
+
};
|
|
268
|
+
};
|
|
269
|
+
export declare const header: {
|
|
270
|
+
readonly borderTopColor: {
|
|
271
|
+
readonly type: "keyword";
|
|
272
|
+
readonly value: "currentColor";
|
|
273
|
+
};
|
|
274
|
+
readonly borderRightColor: {
|
|
275
|
+
readonly type: "keyword";
|
|
276
|
+
readonly value: "currentColor";
|
|
277
|
+
};
|
|
278
|
+
readonly borderBottomColor: {
|
|
279
|
+
readonly type: "keyword";
|
|
280
|
+
readonly value: "currentColor";
|
|
281
|
+
};
|
|
282
|
+
readonly borderLeftColor: {
|
|
283
|
+
readonly type: "keyword";
|
|
284
|
+
readonly value: "currentColor";
|
|
285
|
+
};
|
|
286
|
+
readonly borderTopWidth: {
|
|
287
|
+
readonly type: "unit";
|
|
288
|
+
readonly value: 1;
|
|
289
|
+
readonly unit: "px";
|
|
290
|
+
};
|
|
291
|
+
readonly borderRightWidth: {
|
|
292
|
+
readonly type: "unit";
|
|
293
|
+
readonly value: 1;
|
|
294
|
+
readonly unit: "px";
|
|
295
|
+
};
|
|
296
|
+
readonly borderBottomWidth: {
|
|
297
|
+
readonly type: "unit";
|
|
298
|
+
readonly value: 1;
|
|
299
|
+
readonly unit: "px";
|
|
300
|
+
};
|
|
301
|
+
readonly borderLeftWidth: {
|
|
302
|
+
readonly type: "unit";
|
|
303
|
+
readonly value: 1;
|
|
304
|
+
readonly unit: "px";
|
|
305
|
+
};
|
|
306
|
+
readonly boxSizing: {
|
|
307
|
+
readonly type: "keyword";
|
|
308
|
+
readonly value: "border-box";
|
|
309
|
+
};
|
|
310
|
+
};
|
|
311
|
+
export declare const main: {
|
|
312
|
+
readonly borderTopColor: {
|
|
313
|
+
readonly type: "keyword";
|
|
314
|
+
readonly value: "currentColor";
|
|
315
|
+
};
|
|
316
|
+
readonly borderRightColor: {
|
|
317
|
+
readonly type: "keyword";
|
|
318
|
+
readonly value: "currentColor";
|
|
319
|
+
};
|
|
320
|
+
readonly borderBottomColor: {
|
|
321
|
+
readonly type: "keyword";
|
|
322
|
+
readonly value: "currentColor";
|
|
323
|
+
};
|
|
324
|
+
readonly borderLeftColor: {
|
|
325
|
+
readonly type: "keyword";
|
|
326
|
+
readonly value: "currentColor";
|
|
327
|
+
};
|
|
328
|
+
readonly borderTopWidth: {
|
|
329
|
+
readonly type: "unit";
|
|
330
|
+
readonly value: 1;
|
|
331
|
+
readonly unit: "px";
|
|
332
|
+
};
|
|
333
|
+
readonly borderRightWidth: {
|
|
334
|
+
readonly type: "unit";
|
|
335
|
+
readonly value: 1;
|
|
336
|
+
readonly unit: "px";
|
|
337
|
+
};
|
|
338
|
+
readonly borderBottomWidth: {
|
|
339
|
+
readonly type: "unit";
|
|
340
|
+
readonly value: 1;
|
|
341
|
+
readonly unit: "px";
|
|
342
|
+
};
|
|
343
|
+
readonly borderLeftWidth: {
|
|
344
|
+
readonly type: "unit";
|
|
345
|
+
readonly value: 1;
|
|
346
|
+
readonly unit: "px";
|
|
347
|
+
};
|
|
348
|
+
readonly boxSizing: {
|
|
349
|
+
readonly type: "keyword";
|
|
350
|
+
readonly value: "border-box";
|
|
351
|
+
};
|
|
352
|
+
};
|
|
353
|
+
export declare const nav: {
|
|
354
|
+
readonly borderTopColor: {
|
|
355
|
+
readonly type: "keyword";
|
|
356
|
+
readonly value: "currentColor";
|
|
357
|
+
};
|
|
358
|
+
readonly borderRightColor: {
|
|
359
|
+
readonly type: "keyword";
|
|
360
|
+
readonly value: "currentColor";
|
|
361
|
+
};
|
|
362
|
+
readonly borderBottomColor: {
|
|
363
|
+
readonly type: "keyword";
|
|
364
|
+
readonly value: "currentColor";
|
|
365
|
+
};
|
|
366
|
+
readonly borderLeftColor: {
|
|
367
|
+
readonly type: "keyword";
|
|
368
|
+
readonly value: "currentColor";
|
|
369
|
+
};
|
|
370
|
+
readonly borderTopWidth: {
|
|
371
|
+
readonly type: "unit";
|
|
372
|
+
readonly value: 1;
|
|
373
|
+
readonly unit: "px";
|
|
374
|
+
};
|
|
375
|
+
readonly borderRightWidth: {
|
|
376
|
+
readonly type: "unit";
|
|
377
|
+
readonly value: 1;
|
|
378
|
+
readonly unit: "px";
|
|
379
|
+
};
|
|
380
|
+
readonly borderBottomWidth: {
|
|
381
|
+
readonly type: "unit";
|
|
382
|
+
readonly value: 1;
|
|
383
|
+
readonly unit: "px";
|
|
384
|
+
};
|
|
385
|
+
readonly borderLeftWidth: {
|
|
386
|
+
readonly type: "unit";
|
|
387
|
+
readonly value: 1;
|
|
388
|
+
readonly unit: "px";
|
|
389
|
+
};
|
|
390
|
+
readonly boxSizing: {
|
|
391
|
+
readonly type: "keyword";
|
|
392
|
+
readonly value: "border-box";
|
|
393
|
+
};
|
|
394
|
+
};
|
|
395
|
+
export declare const section: {
|
|
396
|
+
readonly borderTopColor: {
|
|
397
|
+
readonly type: "keyword";
|
|
398
|
+
readonly value: "currentColor";
|
|
399
|
+
};
|
|
400
|
+
readonly borderRightColor: {
|
|
401
|
+
readonly type: "keyword";
|
|
402
|
+
readonly value: "currentColor";
|
|
403
|
+
};
|
|
404
|
+
readonly borderBottomColor: {
|
|
405
|
+
readonly type: "keyword";
|
|
406
|
+
readonly value: "currentColor";
|
|
407
|
+
};
|
|
408
|
+
readonly borderLeftColor: {
|
|
409
|
+
readonly type: "keyword";
|
|
410
|
+
readonly value: "currentColor";
|
|
411
|
+
};
|
|
412
|
+
readonly borderTopWidth: {
|
|
413
|
+
readonly type: "unit";
|
|
414
|
+
readonly value: 1;
|
|
415
|
+
readonly unit: "px";
|
|
416
|
+
};
|
|
417
|
+
readonly borderRightWidth: {
|
|
418
|
+
readonly type: "unit";
|
|
419
|
+
readonly value: 1;
|
|
420
|
+
readonly unit: "px";
|
|
421
|
+
};
|
|
422
|
+
readonly borderBottomWidth: {
|
|
423
|
+
readonly type: "unit";
|
|
424
|
+
readonly value: 1;
|
|
425
|
+
readonly unit: "px";
|
|
426
|
+
};
|
|
427
|
+
readonly borderLeftWidth: {
|
|
428
|
+
readonly type: "unit";
|
|
429
|
+
readonly value: 1;
|
|
430
|
+
readonly unit: "px";
|
|
431
|
+
};
|
|
432
|
+
readonly boxSizing: {
|
|
433
|
+
readonly type: "keyword";
|
|
434
|
+
readonly value: "border-box";
|
|
435
|
+
};
|
|
436
|
+
};
|
|
437
|
+
export declare const form: {
|
|
438
|
+
readonly borderTopColor: {
|
|
439
|
+
readonly type: "keyword";
|
|
440
|
+
readonly value: "currentColor";
|
|
441
|
+
};
|
|
442
|
+
readonly borderRightColor: {
|
|
443
|
+
readonly type: "keyword";
|
|
444
|
+
readonly value: "currentColor";
|
|
445
|
+
};
|
|
446
|
+
readonly borderBottomColor: {
|
|
447
|
+
readonly type: "keyword";
|
|
448
|
+
readonly value: "currentColor";
|
|
449
|
+
};
|
|
450
|
+
readonly borderLeftColor: {
|
|
451
|
+
readonly type: "keyword";
|
|
452
|
+
readonly value: "currentColor";
|
|
453
|
+
};
|
|
454
|
+
readonly borderTopWidth: {
|
|
455
|
+
readonly type: "unit";
|
|
456
|
+
readonly value: 1;
|
|
457
|
+
readonly unit: "px";
|
|
458
|
+
};
|
|
459
|
+
readonly borderRightWidth: {
|
|
460
|
+
readonly type: "unit";
|
|
461
|
+
readonly value: 1;
|
|
462
|
+
readonly unit: "px";
|
|
463
|
+
};
|
|
464
|
+
readonly borderBottomWidth: {
|
|
465
|
+
readonly type: "unit";
|
|
466
|
+
readonly value: 1;
|
|
467
|
+
readonly unit: "px";
|
|
468
|
+
};
|
|
469
|
+
readonly borderLeftWidth: {
|
|
470
|
+
readonly type: "unit";
|
|
471
|
+
readonly value: 1;
|
|
472
|
+
readonly unit: "px";
|
|
473
|
+
};
|
|
474
|
+
readonly boxSizing: {
|
|
475
|
+
readonly type: "keyword";
|
|
476
|
+
readonly value: "border-box";
|
|
477
|
+
};
|
|
478
|
+
};
|
|
479
|
+
export declare const h1: {
|
|
480
|
+
readonly borderTopColor: {
|
|
481
|
+
readonly type: "keyword";
|
|
482
|
+
readonly value: "currentColor";
|
|
483
|
+
};
|
|
484
|
+
readonly borderRightColor: {
|
|
485
|
+
readonly type: "keyword";
|
|
486
|
+
readonly value: "currentColor";
|
|
487
|
+
};
|
|
488
|
+
readonly borderBottomColor: {
|
|
489
|
+
readonly type: "keyword";
|
|
490
|
+
readonly value: "currentColor";
|
|
491
|
+
};
|
|
492
|
+
readonly borderLeftColor: {
|
|
493
|
+
readonly type: "keyword";
|
|
494
|
+
readonly value: "currentColor";
|
|
495
|
+
};
|
|
496
|
+
readonly borderTopWidth: {
|
|
497
|
+
readonly type: "unit";
|
|
498
|
+
readonly value: 1;
|
|
499
|
+
readonly unit: "px";
|
|
500
|
+
};
|
|
501
|
+
readonly borderRightWidth: {
|
|
502
|
+
readonly type: "unit";
|
|
503
|
+
readonly value: 1;
|
|
504
|
+
readonly unit: "px";
|
|
505
|
+
};
|
|
506
|
+
readonly borderBottomWidth: {
|
|
507
|
+
readonly type: "unit";
|
|
508
|
+
readonly value: 1;
|
|
509
|
+
readonly unit: "px";
|
|
510
|
+
};
|
|
511
|
+
readonly borderLeftWidth: {
|
|
512
|
+
readonly type: "unit";
|
|
513
|
+
readonly value: 1;
|
|
514
|
+
readonly unit: "px";
|
|
515
|
+
};
|
|
516
|
+
readonly boxSizing: {
|
|
517
|
+
readonly type: "keyword";
|
|
518
|
+
readonly value: "border-box";
|
|
519
|
+
};
|
|
520
|
+
};
|
|
521
|
+
export declare const h2: {
|
|
522
|
+
readonly borderTopColor: {
|
|
523
|
+
readonly type: "keyword";
|
|
524
|
+
readonly value: "currentColor";
|
|
525
|
+
};
|
|
526
|
+
readonly borderRightColor: {
|
|
527
|
+
readonly type: "keyword";
|
|
528
|
+
readonly value: "currentColor";
|
|
529
|
+
};
|
|
530
|
+
readonly borderBottomColor: {
|
|
531
|
+
readonly type: "keyword";
|
|
532
|
+
readonly value: "currentColor";
|
|
533
|
+
};
|
|
534
|
+
readonly borderLeftColor: {
|
|
535
|
+
readonly type: "keyword";
|
|
536
|
+
readonly value: "currentColor";
|
|
537
|
+
};
|
|
538
|
+
readonly borderTopWidth: {
|
|
539
|
+
readonly type: "unit";
|
|
540
|
+
readonly value: 1;
|
|
541
|
+
readonly unit: "px";
|
|
542
|
+
};
|
|
543
|
+
readonly borderRightWidth: {
|
|
544
|
+
readonly type: "unit";
|
|
545
|
+
readonly value: 1;
|
|
546
|
+
readonly unit: "px";
|
|
547
|
+
};
|
|
548
|
+
readonly borderBottomWidth: {
|
|
549
|
+
readonly type: "unit";
|
|
550
|
+
readonly value: 1;
|
|
551
|
+
readonly unit: "px";
|
|
552
|
+
};
|
|
553
|
+
readonly borderLeftWidth: {
|
|
554
|
+
readonly type: "unit";
|
|
555
|
+
readonly value: 1;
|
|
556
|
+
readonly unit: "px";
|
|
557
|
+
};
|
|
558
|
+
readonly boxSizing: {
|
|
559
|
+
readonly type: "keyword";
|
|
560
|
+
readonly value: "border-box";
|
|
561
|
+
};
|
|
562
|
+
};
|
|
563
|
+
export declare const h3: {
|
|
564
|
+
readonly borderTopColor: {
|
|
565
|
+
readonly type: "keyword";
|
|
566
|
+
readonly value: "currentColor";
|
|
567
|
+
};
|
|
568
|
+
readonly borderRightColor: {
|
|
569
|
+
readonly type: "keyword";
|
|
570
|
+
readonly value: "currentColor";
|
|
571
|
+
};
|
|
572
|
+
readonly borderBottomColor: {
|
|
573
|
+
readonly type: "keyword";
|
|
574
|
+
readonly value: "currentColor";
|
|
575
|
+
};
|
|
576
|
+
readonly borderLeftColor: {
|
|
577
|
+
readonly type: "keyword";
|
|
578
|
+
readonly value: "currentColor";
|
|
579
|
+
};
|
|
580
|
+
readonly borderTopWidth: {
|
|
581
|
+
readonly type: "unit";
|
|
582
|
+
readonly value: 1;
|
|
583
|
+
readonly unit: "px";
|
|
584
|
+
};
|
|
585
|
+
readonly borderRightWidth: {
|
|
586
|
+
readonly type: "unit";
|
|
587
|
+
readonly value: 1;
|
|
588
|
+
readonly unit: "px";
|
|
589
|
+
};
|
|
590
|
+
readonly borderBottomWidth: {
|
|
591
|
+
readonly type: "unit";
|
|
592
|
+
readonly value: 1;
|
|
593
|
+
readonly unit: "px";
|
|
594
|
+
};
|
|
595
|
+
readonly borderLeftWidth: {
|
|
596
|
+
readonly type: "unit";
|
|
597
|
+
readonly value: 1;
|
|
598
|
+
readonly unit: "px";
|
|
599
|
+
};
|
|
600
|
+
readonly boxSizing: {
|
|
601
|
+
readonly type: "keyword";
|
|
602
|
+
readonly value: "border-box";
|
|
603
|
+
};
|
|
604
|
+
};
|
|
605
|
+
export declare const h4: {
|
|
606
|
+
readonly borderTopColor: {
|
|
607
|
+
readonly type: "keyword";
|
|
608
|
+
readonly value: "currentColor";
|
|
609
|
+
};
|
|
610
|
+
readonly borderRightColor: {
|
|
611
|
+
readonly type: "keyword";
|
|
612
|
+
readonly value: "currentColor";
|
|
613
|
+
};
|
|
614
|
+
readonly borderBottomColor: {
|
|
615
|
+
readonly type: "keyword";
|
|
616
|
+
readonly value: "currentColor";
|
|
617
|
+
};
|
|
618
|
+
readonly borderLeftColor: {
|
|
619
|
+
readonly type: "keyword";
|
|
620
|
+
readonly value: "currentColor";
|
|
621
|
+
};
|
|
622
|
+
readonly borderTopWidth: {
|
|
623
|
+
readonly type: "unit";
|
|
624
|
+
readonly value: 1;
|
|
625
|
+
readonly unit: "px";
|
|
626
|
+
};
|
|
627
|
+
readonly borderRightWidth: {
|
|
628
|
+
readonly type: "unit";
|
|
629
|
+
readonly value: 1;
|
|
630
|
+
readonly unit: "px";
|
|
631
|
+
};
|
|
632
|
+
readonly borderBottomWidth: {
|
|
633
|
+
readonly type: "unit";
|
|
634
|
+
readonly value: 1;
|
|
635
|
+
readonly unit: "px";
|
|
636
|
+
};
|
|
637
|
+
readonly borderLeftWidth: {
|
|
638
|
+
readonly type: "unit";
|
|
639
|
+
readonly value: 1;
|
|
640
|
+
readonly unit: "px";
|
|
641
|
+
};
|
|
642
|
+
readonly boxSizing: {
|
|
643
|
+
readonly type: "keyword";
|
|
644
|
+
readonly value: "border-box";
|
|
645
|
+
};
|
|
646
|
+
};
|
|
647
|
+
export declare const h5: {
|
|
648
|
+
readonly borderTopColor: {
|
|
649
|
+
readonly type: "keyword";
|
|
650
|
+
readonly value: "currentColor";
|
|
651
|
+
};
|
|
652
|
+
readonly borderRightColor: {
|
|
653
|
+
readonly type: "keyword";
|
|
654
|
+
readonly value: "currentColor";
|
|
655
|
+
};
|
|
656
|
+
readonly borderBottomColor: {
|
|
657
|
+
readonly type: "keyword";
|
|
658
|
+
readonly value: "currentColor";
|
|
659
|
+
};
|
|
660
|
+
readonly borderLeftColor: {
|
|
661
|
+
readonly type: "keyword";
|
|
662
|
+
readonly value: "currentColor";
|
|
663
|
+
};
|
|
664
|
+
readonly borderTopWidth: {
|
|
665
|
+
readonly type: "unit";
|
|
666
|
+
readonly value: 1;
|
|
667
|
+
readonly unit: "px";
|
|
668
|
+
};
|
|
669
|
+
readonly borderRightWidth: {
|
|
670
|
+
readonly type: "unit";
|
|
671
|
+
readonly value: 1;
|
|
672
|
+
readonly unit: "px";
|
|
673
|
+
};
|
|
674
|
+
readonly borderBottomWidth: {
|
|
675
|
+
readonly type: "unit";
|
|
676
|
+
readonly value: 1;
|
|
677
|
+
readonly unit: "px";
|
|
678
|
+
};
|
|
679
|
+
readonly borderLeftWidth: {
|
|
680
|
+
readonly type: "unit";
|
|
681
|
+
readonly value: 1;
|
|
682
|
+
readonly unit: "px";
|
|
683
|
+
};
|
|
684
|
+
readonly boxSizing: {
|
|
685
|
+
readonly type: "keyword";
|
|
686
|
+
readonly value: "border-box";
|
|
687
|
+
};
|
|
688
|
+
};
|
|
689
|
+
export declare const h6: {
|
|
690
|
+
readonly borderTopColor: {
|
|
691
|
+
readonly type: "keyword";
|
|
692
|
+
readonly value: "currentColor";
|
|
693
|
+
};
|
|
694
|
+
readonly borderRightColor: {
|
|
695
|
+
readonly type: "keyword";
|
|
696
|
+
readonly value: "currentColor";
|
|
697
|
+
};
|
|
698
|
+
readonly borderBottomColor: {
|
|
699
|
+
readonly type: "keyword";
|
|
700
|
+
readonly value: "currentColor";
|
|
701
|
+
};
|
|
702
|
+
readonly borderLeftColor: {
|
|
703
|
+
readonly type: "keyword";
|
|
704
|
+
readonly value: "currentColor";
|
|
705
|
+
};
|
|
706
|
+
readonly borderTopWidth: {
|
|
707
|
+
readonly type: "unit";
|
|
708
|
+
readonly value: 1;
|
|
709
|
+
readonly unit: "px";
|
|
710
|
+
};
|
|
711
|
+
readonly borderRightWidth: {
|
|
712
|
+
readonly type: "unit";
|
|
713
|
+
readonly value: 1;
|
|
714
|
+
readonly unit: "px";
|
|
715
|
+
};
|
|
716
|
+
readonly borderBottomWidth: {
|
|
717
|
+
readonly type: "unit";
|
|
718
|
+
readonly value: 1;
|
|
719
|
+
readonly unit: "px";
|
|
720
|
+
};
|
|
721
|
+
readonly borderLeftWidth: {
|
|
722
|
+
readonly type: "unit";
|
|
723
|
+
readonly value: 1;
|
|
724
|
+
readonly unit: "px";
|
|
725
|
+
};
|
|
726
|
+
readonly boxSizing: {
|
|
727
|
+
readonly type: "keyword";
|
|
728
|
+
readonly value: "border-box";
|
|
729
|
+
};
|
|
730
|
+
};
|
|
731
|
+
export declare const i: {
|
|
732
|
+
readonly borderTopColor: {
|
|
733
|
+
readonly type: "keyword";
|
|
734
|
+
readonly value: "currentColor";
|
|
735
|
+
};
|
|
736
|
+
readonly borderRightColor: {
|
|
737
|
+
readonly type: "keyword";
|
|
738
|
+
readonly value: "currentColor";
|
|
739
|
+
};
|
|
740
|
+
readonly borderBottomColor: {
|
|
741
|
+
readonly type: "keyword";
|
|
742
|
+
readonly value: "currentColor";
|
|
743
|
+
};
|
|
744
|
+
readonly borderLeftColor: {
|
|
745
|
+
readonly type: "keyword";
|
|
746
|
+
readonly value: "currentColor";
|
|
747
|
+
};
|
|
748
|
+
readonly borderTopWidth: {
|
|
749
|
+
readonly type: "unit";
|
|
750
|
+
readonly value: 1;
|
|
751
|
+
readonly unit: "px";
|
|
752
|
+
};
|
|
753
|
+
readonly borderRightWidth: {
|
|
754
|
+
readonly type: "unit";
|
|
755
|
+
readonly value: 1;
|
|
756
|
+
readonly unit: "px";
|
|
757
|
+
};
|
|
758
|
+
readonly borderBottomWidth: {
|
|
759
|
+
readonly type: "unit";
|
|
760
|
+
readonly value: 1;
|
|
761
|
+
readonly unit: "px";
|
|
762
|
+
};
|
|
763
|
+
readonly borderLeftWidth: {
|
|
764
|
+
readonly type: "unit";
|
|
765
|
+
readonly value: 1;
|
|
766
|
+
readonly unit: "px";
|
|
767
|
+
};
|
|
768
|
+
readonly boxSizing: {
|
|
769
|
+
readonly type: "keyword";
|
|
770
|
+
readonly value: "border-box";
|
|
771
|
+
};
|
|
772
|
+
};
|
|
773
|
+
export declare const img: {
|
|
774
|
+
readonly borderTopColor: {
|
|
775
|
+
readonly type: "keyword";
|
|
776
|
+
readonly value: "currentColor";
|
|
777
|
+
};
|
|
778
|
+
readonly borderRightColor: {
|
|
779
|
+
readonly type: "keyword";
|
|
780
|
+
readonly value: "currentColor";
|
|
781
|
+
};
|
|
782
|
+
readonly borderBottomColor: {
|
|
783
|
+
readonly type: "keyword";
|
|
784
|
+
readonly value: "currentColor";
|
|
785
|
+
};
|
|
786
|
+
readonly borderLeftColor: {
|
|
787
|
+
readonly type: "keyword";
|
|
788
|
+
readonly value: "currentColor";
|
|
789
|
+
};
|
|
790
|
+
readonly borderTopWidth: {
|
|
791
|
+
readonly type: "unit";
|
|
792
|
+
readonly value: 1;
|
|
793
|
+
readonly unit: "px";
|
|
794
|
+
};
|
|
795
|
+
readonly borderRightWidth: {
|
|
796
|
+
readonly type: "unit";
|
|
797
|
+
readonly value: 1;
|
|
798
|
+
readonly unit: "px";
|
|
799
|
+
};
|
|
800
|
+
readonly borderBottomWidth: {
|
|
801
|
+
readonly type: "unit";
|
|
802
|
+
readonly value: 1;
|
|
803
|
+
readonly unit: "px";
|
|
804
|
+
};
|
|
805
|
+
readonly borderLeftWidth: {
|
|
806
|
+
readonly type: "unit";
|
|
807
|
+
readonly value: 1;
|
|
808
|
+
readonly unit: "px";
|
|
809
|
+
};
|
|
810
|
+
readonly boxSizing: {
|
|
811
|
+
readonly type: "keyword";
|
|
812
|
+
readonly value: "border-box";
|
|
813
|
+
};
|
|
814
|
+
};
|
|
815
|
+
export declare const a: {
|
|
816
|
+
readonly borderTopColor: {
|
|
817
|
+
readonly type: "keyword";
|
|
818
|
+
readonly value: "currentColor";
|
|
819
|
+
};
|
|
820
|
+
readonly borderRightColor: {
|
|
821
|
+
readonly type: "keyword";
|
|
822
|
+
readonly value: "currentColor";
|
|
823
|
+
};
|
|
824
|
+
readonly borderBottomColor: {
|
|
825
|
+
readonly type: "keyword";
|
|
826
|
+
readonly value: "currentColor";
|
|
827
|
+
};
|
|
828
|
+
readonly borderLeftColor: {
|
|
829
|
+
readonly type: "keyword";
|
|
830
|
+
readonly value: "currentColor";
|
|
831
|
+
};
|
|
832
|
+
readonly borderTopWidth: {
|
|
833
|
+
readonly type: "unit";
|
|
834
|
+
readonly value: 1;
|
|
835
|
+
readonly unit: "px";
|
|
836
|
+
};
|
|
837
|
+
readonly borderRightWidth: {
|
|
838
|
+
readonly type: "unit";
|
|
839
|
+
readonly value: 1;
|
|
840
|
+
readonly unit: "px";
|
|
841
|
+
};
|
|
842
|
+
readonly borderBottomWidth: {
|
|
843
|
+
readonly type: "unit";
|
|
844
|
+
readonly value: 1;
|
|
845
|
+
readonly unit: "px";
|
|
846
|
+
};
|
|
847
|
+
readonly borderLeftWidth: {
|
|
848
|
+
readonly type: "unit";
|
|
849
|
+
readonly value: 1;
|
|
850
|
+
readonly unit: "px";
|
|
851
|
+
};
|
|
852
|
+
readonly boxSizing: {
|
|
853
|
+
readonly type: "keyword";
|
|
854
|
+
readonly value: "border-box";
|
|
855
|
+
};
|
|
856
|
+
};
|
|
857
|
+
export declare const li: {
|
|
858
|
+
readonly borderTopColor: {
|
|
859
|
+
readonly type: "keyword";
|
|
860
|
+
readonly value: "currentColor";
|
|
861
|
+
};
|
|
862
|
+
readonly borderRightColor: {
|
|
863
|
+
readonly type: "keyword";
|
|
864
|
+
readonly value: "currentColor";
|
|
865
|
+
};
|
|
866
|
+
readonly borderBottomColor: {
|
|
867
|
+
readonly type: "keyword";
|
|
868
|
+
readonly value: "currentColor";
|
|
869
|
+
};
|
|
870
|
+
readonly borderLeftColor: {
|
|
871
|
+
readonly type: "keyword";
|
|
872
|
+
readonly value: "currentColor";
|
|
873
|
+
};
|
|
874
|
+
readonly borderTopWidth: {
|
|
875
|
+
readonly type: "unit";
|
|
876
|
+
readonly value: 1;
|
|
877
|
+
readonly unit: "px";
|
|
878
|
+
};
|
|
879
|
+
readonly borderRightWidth: {
|
|
880
|
+
readonly type: "unit";
|
|
881
|
+
readonly value: 1;
|
|
882
|
+
readonly unit: "px";
|
|
883
|
+
};
|
|
884
|
+
readonly borderBottomWidth: {
|
|
885
|
+
readonly type: "unit";
|
|
886
|
+
readonly value: 1;
|
|
887
|
+
readonly unit: "px";
|
|
888
|
+
};
|
|
889
|
+
readonly borderLeftWidth: {
|
|
890
|
+
readonly type: "unit";
|
|
891
|
+
readonly value: 1;
|
|
892
|
+
readonly unit: "px";
|
|
893
|
+
};
|
|
894
|
+
readonly boxSizing: {
|
|
895
|
+
readonly type: "keyword";
|
|
896
|
+
readonly value: "border-box";
|
|
897
|
+
};
|
|
898
|
+
};
|
|
899
|
+
export declare const ul: {
|
|
900
|
+
readonly borderTopColor: {
|
|
901
|
+
readonly type: "keyword";
|
|
902
|
+
readonly value: "currentColor";
|
|
903
|
+
};
|
|
904
|
+
readonly borderRightColor: {
|
|
905
|
+
readonly type: "keyword";
|
|
906
|
+
readonly value: "currentColor";
|
|
907
|
+
};
|
|
908
|
+
readonly borderBottomColor: {
|
|
909
|
+
readonly type: "keyword";
|
|
910
|
+
readonly value: "currentColor";
|
|
911
|
+
};
|
|
912
|
+
readonly borderLeftColor: {
|
|
913
|
+
readonly type: "keyword";
|
|
914
|
+
readonly value: "currentColor";
|
|
915
|
+
};
|
|
916
|
+
readonly borderTopWidth: {
|
|
917
|
+
readonly type: "unit";
|
|
918
|
+
readonly value: 1;
|
|
919
|
+
readonly unit: "px";
|
|
920
|
+
};
|
|
921
|
+
readonly borderRightWidth: {
|
|
922
|
+
readonly type: "unit";
|
|
923
|
+
readonly value: 1;
|
|
924
|
+
readonly unit: "px";
|
|
925
|
+
};
|
|
926
|
+
readonly borderBottomWidth: {
|
|
927
|
+
readonly type: "unit";
|
|
928
|
+
readonly value: 1;
|
|
929
|
+
readonly unit: "px";
|
|
930
|
+
};
|
|
931
|
+
readonly borderLeftWidth: {
|
|
932
|
+
readonly type: "unit";
|
|
933
|
+
readonly value: 1;
|
|
934
|
+
readonly unit: "px";
|
|
935
|
+
};
|
|
936
|
+
readonly boxSizing: {
|
|
937
|
+
readonly type: "keyword";
|
|
938
|
+
readonly value: "border-box";
|
|
939
|
+
};
|
|
940
|
+
};
|
|
941
|
+
export declare const ol: {
|
|
942
|
+
readonly borderTopColor: {
|
|
943
|
+
readonly type: "keyword";
|
|
944
|
+
readonly value: "currentColor";
|
|
945
|
+
};
|
|
946
|
+
readonly borderRightColor: {
|
|
947
|
+
readonly type: "keyword";
|
|
948
|
+
readonly value: "currentColor";
|
|
949
|
+
};
|
|
950
|
+
readonly borderBottomColor: {
|
|
951
|
+
readonly type: "keyword";
|
|
952
|
+
readonly value: "currentColor";
|
|
953
|
+
};
|
|
954
|
+
readonly borderLeftColor: {
|
|
955
|
+
readonly type: "keyword";
|
|
956
|
+
readonly value: "currentColor";
|
|
957
|
+
};
|
|
958
|
+
readonly borderTopWidth: {
|
|
959
|
+
readonly type: "unit";
|
|
960
|
+
readonly value: 1;
|
|
961
|
+
readonly unit: "px";
|
|
962
|
+
};
|
|
963
|
+
readonly borderRightWidth: {
|
|
964
|
+
readonly type: "unit";
|
|
965
|
+
readonly value: 1;
|
|
966
|
+
readonly unit: "px";
|
|
967
|
+
};
|
|
968
|
+
readonly borderBottomWidth: {
|
|
969
|
+
readonly type: "unit";
|
|
970
|
+
readonly value: 1;
|
|
971
|
+
readonly unit: "px";
|
|
972
|
+
};
|
|
973
|
+
readonly borderLeftWidth: {
|
|
974
|
+
readonly type: "unit";
|
|
975
|
+
readonly value: 1;
|
|
976
|
+
readonly unit: "px";
|
|
977
|
+
};
|
|
978
|
+
readonly boxSizing: {
|
|
979
|
+
readonly type: "keyword";
|
|
980
|
+
readonly value: "border-box";
|
|
981
|
+
};
|
|
982
|
+
};
|
|
983
|
+
export declare const p: {
|
|
984
|
+
readonly borderTopColor: {
|
|
985
|
+
readonly type: "keyword";
|
|
986
|
+
readonly value: "currentColor";
|
|
987
|
+
};
|
|
988
|
+
readonly borderRightColor: {
|
|
989
|
+
readonly type: "keyword";
|
|
990
|
+
readonly value: "currentColor";
|
|
991
|
+
};
|
|
992
|
+
readonly borderBottomColor: {
|
|
993
|
+
readonly type: "keyword";
|
|
994
|
+
readonly value: "currentColor";
|
|
995
|
+
};
|
|
996
|
+
readonly borderLeftColor: {
|
|
997
|
+
readonly type: "keyword";
|
|
998
|
+
readonly value: "currentColor";
|
|
999
|
+
};
|
|
1000
|
+
readonly borderTopWidth: {
|
|
1001
|
+
readonly type: "unit";
|
|
1002
|
+
readonly value: 1;
|
|
1003
|
+
readonly unit: "px";
|
|
1004
|
+
};
|
|
1005
|
+
readonly borderRightWidth: {
|
|
1006
|
+
readonly type: "unit";
|
|
1007
|
+
readonly value: 1;
|
|
1008
|
+
readonly unit: "px";
|
|
1009
|
+
};
|
|
1010
|
+
readonly borderBottomWidth: {
|
|
1011
|
+
readonly type: "unit";
|
|
1012
|
+
readonly value: 1;
|
|
1013
|
+
readonly unit: "px";
|
|
1014
|
+
};
|
|
1015
|
+
readonly borderLeftWidth: {
|
|
1016
|
+
readonly type: "unit";
|
|
1017
|
+
readonly value: 1;
|
|
1018
|
+
readonly unit: "px";
|
|
1019
|
+
};
|
|
1020
|
+
readonly boxSizing: {
|
|
1021
|
+
readonly type: "keyword";
|
|
1022
|
+
readonly value: "border-box";
|
|
1023
|
+
};
|
|
1024
|
+
};
|
|
1025
|
+
export declare const span: {
|
|
1026
|
+
readonly borderTopColor: {
|
|
1027
|
+
readonly type: "keyword";
|
|
1028
|
+
readonly value: "currentColor";
|
|
1029
|
+
};
|
|
1030
|
+
readonly borderRightColor: {
|
|
1031
|
+
readonly type: "keyword";
|
|
1032
|
+
readonly value: "currentColor";
|
|
1033
|
+
};
|
|
1034
|
+
readonly borderBottomColor: {
|
|
1035
|
+
readonly type: "keyword";
|
|
1036
|
+
readonly value: "currentColor";
|
|
1037
|
+
};
|
|
1038
|
+
readonly borderLeftColor: {
|
|
1039
|
+
readonly type: "keyword";
|
|
1040
|
+
readonly value: "currentColor";
|
|
1041
|
+
};
|
|
1042
|
+
readonly borderTopWidth: {
|
|
1043
|
+
readonly type: "unit";
|
|
1044
|
+
readonly value: 1;
|
|
1045
|
+
readonly unit: "px";
|
|
1046
|
+
};
|
|
1047
|
+
readonly borderRightWidth: {
|
|
1048
|
+
readonly type: "unit";
|
|
1049
|
+
readonly value: 1;
|
|
1050
|
+
readonly unit: "px";
|
|
1051
|
+
};
|
|
1052
|
+
readonly borderBottomWidth: {
|
|
1053
|
+
readonly type: "unit";
|
|
1054
|
+
readonly value: 1;
|
|
1055
|
+
readonly unit: "px";
|
|
1056
|
+
};
|
|
1057
|
+
readonly borderLeftWidth: {
|
|
1058
|
+
readonly type: "unit";
|
|
1059
|
+
readonly value: 1;
|
|
1060
|
+
readonly unit: "px";
|
|
1061
|
+
};
|
|
1062
|
+
readonly boxSizing: {
|
|
1063
|
+
readonly type: "keyword";
|
|
1064
|
+
readonly value: "border-box";
|
|
1065
|
+
};
|
|
1066
|
+
};
|
|
1067
|
+
/**
|
|
1068
|
+
1. Correct the line height in all browsers.
|
|
1069
|
+
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
1070
|
+
3. Use a more readable tab size (opinionated).
|
|
1071
|
+
*/
|
|
1072
|
+
export declare const html: {
|
|
1073
|
+
readonly borderTopColor: {
|
|
1074
|
+
readonly type: "keyword";
|
|
1075
|
+
readonly value: "currentColor";
|
|
1076
|
+
};
|
|
1077
|
+
readonly borderRightColor: {
|
|
1078
|
+
readonly type: "keyword";
|
|
1079
|
+
readonly value: "currentColor";
|
|
1080
|
+
};
|
|
1081
|
+
readonly borderBottomColor: {
|
|
1082
|
+
readonly type: "keyword";
|
|
1083
|
+
readonly value: "currentColor";
|
|
1084
|
+
};
|
|
1085
|
+
readonly borderLeftColor: {
|
|
1086
|
+
readonly type: "keyword";
|
|
1087
|
+
readonly value: "currentColor";
|
|
1088
|
+
};
|
|
1089
|
+
readonly borderTopWidth: {
|
|
1090
|
+
readonly type: "unit";
|
|
1091
|
+
readonly value: 1;
|
|
1092
|
+
readonly unit: "px";
|
|
1093
|
+
};
|
|
1094
|
+
readonly borderRightWidth: {
|
|
1095
|
+
readonly type: "unit";
|
|
1096
|
+
readonly value: 1;
|
|
1097
|
+
readonly unit: "px";
|
|
1098
|
+
};
|
|
1099
|
+
readonly borderBottomWidth: {
|
|
1100
|
+
readonly type: "unit";
|
|
1101
|
+
readonly value: 1;
|
|
1102
|
+
readonly unit: "px";
|
|
1103
|
+
};
|
|
1104
|
+
readonly borderLeftWidth: {
|
|
1105
|
+
readonly type: "unit";
|
|
1106
|
+
readonly value: 1;
|
|
1107
|
+
readonly unit: "px";
|
|
1108
|
+
};
|
|
1109
|
+
readonly lineHeight: {
|
|
1110
|
+
readonly type: "unit";
|
|
1111
|
+
readonly value: 1.15;
|
|
1112
|
+
readonly unit: "number";
|
|
1113
|
+
};
|
|
1114
|
+
readonly textSizeAdjust: {
|
|
1115
|
+
readonly type: "unit";
|
|
1116
|
+
readonly value: 100;
|
|
1117
|
+
readonly unit: "%";
|
|
1118
|
+
};
|
|
1119
|
+
readonly tabSize: {
|
|
1120
|
+
readonly type: "unit";
|
|
1121
|
+
readonly value: 4;
|
|
1122
|
+
readonly unit: "number";
|
|
1123
|
+
};
|
|
1124
|
+
readonly boxSizing: {
|
|
1125
|
+
readonly type: "keyword";
|
|
1126
|
+
readonly value: "border-box";
|
|
1127
|
+
};
|
|
1128
|
+
};
|
|
1129
|
+
/**
|
|
1130
|
+
1. Remove the margin in all browsers.
|
|
1131
|
+
2. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
|
|
1132
|
+
*/
|
|
1133
|
+
export declare const body: {
|
|
1134
|
+
readonly borderTopColor: {
|
|
1135
|
+
readonly type: "keyword";
|
|
1136
|
+
readonly value: "currentColor";
|
|
1137
|
+
};
|
|
1138
|
+
readonly borderRightColor: {
|
|
1139
|
+
readonly type: "keyword";
|
|
1140
|
+
readonly value: "currentColor";
|
|
1141
|
+
};
|
|
1142
|
+
readonly borderBottomColor: {
|
|
1143
|
+
readonly type: "keyword";
|
|
1144
|
+
readonly value: "currentColor";
|
|
1145
|
+
};
|
|
1146
|
+
readonly borderLeftColor: {
|
|
1147
|
+
readonly type: "keyword";
|
|
1148
|
+
readonly value: "currentColor";
|
|
1149
|
+
};
|
|
1150
|
+
readonly borderTopWidth: {
|
|
1151
|
+
readonly type: "unit";
|
|
1152
|
+
readonly value: 1;
|
|
1153
|
+
readonly unit: "px";
|
|
1154
|
+
};
|
|
1155
|
+
readonly borderRightWidth: {
|
|
1156
|
+
readonly type: "unit";
|
|
1157
|
+
readonly value: 1;
|
|
1158
|
+
readonly unit: "px";
|
|
1159
|
+
};
|
|
1160
|
+
readonly borderBottomWidth: {
|
|
1161
|
+
readonly type: "unit";
|
|
1162
|
+
readonly value: 1;
|
|
1163
|
+
readonly unit: "px";
|
|
1164
|
+
};
|
|
1165
|
+
readonly borderLeftWidth: {
|
|
1166
|
+
readonly type: "unit";
|
|
1167
|
+
readonly value: 1;
|
|
1168
|
+
readonly unit: "px";
|
|
1169
|
+
};
|
|
1170
|
+
readonly marginTop: {
|
|
1171
|
+
readonly type: "unit";
|
|
1172
|
+
readonly value: 0;
|
|
1173
|
+
readonly unit: "number";
|
|
1174
|
+
};
|
|
1175
|
+
readonly marginRight: {
|
|
1176
|
+
readonly type: "unit";
|
|
1177
|
+
readonly value: 0;
|
|
1178
|
+
readonly unit: "number";
|
|
1179
|
+
};
|
|
1180
|
+
readonly marginBottom: {
|
|
1181
|
+
readonly type: "unit";
|
|
1182
|
+
readonly value: 0;
|
|
1183
|
+
readonly unit: "number";
|
|
1184
|
+
};
|
|
1185
|
+
readonly marginLeft: {
|
|
1186
|
+
readonly type: "unit";
|
|
1187
|
+
readonly value: 0;
|
|
1188
|
+
readonly unit: "number";
|
|
1189
|
+
};
|
|
1190
|
+
readonly fontFamily: {
|
|
1191
|
+
readonly type: "keyword";
|
|
1192
|
+
readonly value: "system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji'";
|
|
1193
|
+
};
|
|
1194
|
+
readonly boxSizing: {
|
|
1195
|
+
readonly type: "keyword";
|
|
1196
|
+
readonly value: "border-box";
|
|
1197
|
+
};
|
|
1198
|
+
};
|
|
1199
|
+
/**
|
|
1200
|
+
1. Add the correct height in Firefox.
|
|
1201
|
+
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
1202
|
+
*/
|
|
1203
|
+
export declare const hr: {
|
|
1204
|
+
readonly borderTopColor: {
|
|
1205
|
+
readonly type: "keyword";
|
|
1206
|
+
readonly value: "currentColor";
|
|
1207
|
+
};
|
|
1208
|
+
readonly borderRightColor: {
|
|
1209
|
+
readonly type: "keyword";
|
|
1210
|
+
readonly value: "currentColor";
|
|
1211
|
+
};
|
|
1212
|
+
readonly borderBottomColor: {
|
|
1213
|
+
readonly type: "keyword";
|
|
1214
|
+
readonly value: "currentColor";
|
|
1215
|
+
};
|
|
1216
|
+
readonly borderLeftColor: {
|
|
1217
|
+
readonly type: "keyword";
|
|
1218
|
+
readonly value: "currentColor";
|
|
1219
|
+
};
|
|
1220
|
+
readonly borderTopWidth: {
|
|
1221
|
+
readonly type: "unit";
|
|
1222
|
+
readonly value: 1;
|
|
1223
|
+
readonly unit: "px";
|
|
1224
|
+
};
|
|
1225
|
+
readonly borderRightWidth: {
|
|
1226
|
+
readonly type: "unit";
|
|
1227
|
+
readonly value: 1;
|
|
1228
|
+
readonly unit: "px";
|
|
1229
|
+
};
|
|
1230
|
+
readonly borderBottomWidth: {
|
|
1231
|
+
readonly type: "unit";
|
|
1232
|
+
readonly value: 1;
|
|
1233
|
+
readonly unit: "px";
|
|
1234
|
+
};
|
|
1235
|
+
readonly borderLeftWidth: {
|
|
1236
|
+
readonly type: "unit";
|
|
1237
|
+
readonly value: 1;
|
|
1238
|
+
readonly unit: "px";
|
|
1239
|
+
};
|
|
1240
|
+
readonly height: {
|
|
1241
|
+
readonly type: "unit";
|
|
1242
|
+
readonly value: 0;
|
|
1243
|
+
readonly unit: "number";
|
|
1244
|
+
};
|
|
1245
|
+
readonly color: {
|
|
1246
|
+
readonly type: "keyword";
|
|
1247
|
+
readonly value: "inherit";
|
|
1248
|
+
};
|
|
1249
|
+
readonly boxSizing: {
|
|
1250
|
+
readonly type: "keyword";
|
|
1251
|
+
readonly value: "border-box";
|
|
1252
|
+
};
|
|
1253
|
+
};
|
|
1254
|
+
/**
|
|
1255
|
+
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
1256
|
+
|
|
1257
|
+
!!!Skipped as we don't support this logic!!!
|
|
1258
|
+
|
|
1259
|
+
abbr[title] {
|
|
1260
|
+
text-decoration: underline dotted;
|
|
1261
|
+
}
|
|
1262
|
+
*/
|
|
1263
|
+
/**
|
|
1264
|
+
Add the correct font weight in Edge and Safari.
|
|
1265
|
+
*/
|
|
1266
|
+
export declare const b: {
|
|
1267
|
+
readonly borderTopColor: {
|
|
1268
|
+
readonly type: "keyword";
|
|
1269
|
+
readonly value: "currentColor";
|
|
1270
|
+
};
|
|
1271
|
+
readonly borderRightColor: {
|
|
1272
|
+
readonly type: "keyword";
|
|
1273
|
+
readonly value: "currentColor";
|
|
1274
|
+
};
|
|
1275
|
+
readonly borderBottomColor: {
|
|
1276
|
+
readonly type: "keyword";
|
|
1277
|
+
readonly value: "currentColor";
|
|
1278
|
+
};
|
|
1279
|
+
readonly borderLeftColor: {
|
|
1280
|
+
readonly type: "keyword";
|
|
1281
|
+
readonly value: "currentColor";
|
|
1282
|
+
};
|
|
1283
|
+
readonly borderTopWidth: {
|
|
1284
|
+
readonly type: "unit";
|
|
1285
|
+
readonly value: 1;
|
|
1286
|
+
readonly unit: "px";
|
|
1287
|
+
};
|
|
1288
|
+
readonly borderRightWidth: {
|
|
1289
|
+
readonly type: "unit";
|
|
1290
|
+
readonly value: 1;
|
|
1291
|
+
readonly unit: "px";
|
|
1292
|
+
};
|
|
1293
|
+
readonly borderBottomWidth: {
|
|
1294
|
+
readonly type: "unit";
|
|
1295
|
+
readonly value: 1;
|
|
1296
|
+
readonly unit: "px";
|
|
1297
|
+
};
|
|
1298
|
+
readonly borderLeftWidth: {
|
|
1299
|
+
readonly type: "unit";
|
|
1300
|
+
readonly value: 1;
|
|
1301
|
+
readonly unit: "px";
|
|
1302
|
+
};
|
|
1303
|
+
readonly fontWeight: {
|
|
1304
|
+
readonly type: "keyword";
|
|
1305
|
+
readonly value: "bolder";
|
|
1306
|
+
};
|
|
1307
|
+
readonly boxSizing: {
|
|
1308
|
+
readonly type: "keyword";
|
|
1309
|
+
readonly value: "border-box";
|
|
1310
|
+
};
|
|
1311
|
+
};
|
|
1312
|
+
export declare const strong: {
|
|
1313
|
+
readonly borderTopColor: {
|
|
1314
|
+
readonly type: "keyword";
|
|
1315
|
+
readonly value: "currentColor";
|
|
1316
|
+
};
|
|
1317
|
+
readonly borderRightColor: {
|
|
1318
|
+
readonly type: "keyword";
|
|
1319
|
+
readonly value: "currentColor";
|
|
1320
|
+
};
|
|
1321
|
+
readonly borderBottomColor: {
|
|
1322
|
+
readonly type: "keyword";
|
|
1323
|
+
readonly value: "currentColor";
|
|
1324
|
+
};
|
|
1325
|
+
readonly borderLeftColor: {
|
|
1326
|
+
readonly type: "keyword";
|
|
1327
|
+
readonly value: "currentColor";
|
|
1328
|
+
};
|
|
1329
|
+
readonly borderTopWidth: {
|
|
1330
|
+
readonly type: "unit";
|
|
1331
|
+
readonly value: 1;
|
|
1332
|
+
readonly unit: "px";
|
|
1333
|
+
};
|
|
1334
|
+
readonly borderRightWidth: {
|
|
1335
|
+
readonly type: "unit";
|
|
1336
|
+
readonly value: 1;
|
|
1337
|
+
readonly unit: "px";
|
|
1338
|
+
};
|
|
1339
|
+
readonly borderBottomWidth: {
|
|
1340
|
+
readonly type: "unit";
|
|
1341
|
+
readonly value: 1;
|
|
1342
|
+
readonly unit: "px";
|
|
1343
|
+
};
|
|
1344
|
+
readonly borderLeftWidth: {
|
|
1345
|
+
readonly type: "unit";
|
|
1346
|
+
readonly value: 1;
|
|
1347
|
+
readonly unit: "px";
|
|
1348
|
+
};
|
|
1349
|
+
readonly fontWeight: {
|
|
1350
|
+
readonly type: "keyword";
|
|
1351
|
+
readonly value: "bolder";
|
|
1352
|
+
};
|
|
1353
|
+
readonly boxSizing: {
|
|
1354
|
+
readonly type: "keyword";
|
|
1355
|
+
readonly value: "border-box";
|
|
1356
|
+
};
|
|
1357
|
+
};
|
|
1358
|
+
/**
|
|
1359
|
+
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
|
|
1360
|
+
2. Correct the odd 'em' font sizing in all browsers.
|
|
1361
|
+
*/
|
|
1362
|
+
export declare const code: {
|
|
1363
|
+
readonly borderTopColor: {
|
|
1364
|
+
readonly type: "keyword";
|
|
1365
|
+
readonly value: "currentColor";
|
|
1366
|
+
};
|
|
1367
|
+
readonly borderRightColor: {
|
|
1368
|
+
readonly type: "keyword";
|
|
1369
|
+
readonly value: "currentColor";
|
|
1370
|
+
};
|
|
1371
|
+
readonly borderBottomColor: {
|
|
1372
|
+
readonly type: "keyword";
|
|
1373
|
+
readonly value: "currentColor";
|
|
1374
|
+
};
|
|
1375
|
+
readonly borderLeftColor: {
|
|
1376
|
+
readonly type: "keyword";
|
|
1377
|
+
readonly value: "currentColor";
|
|
1378
|
+
};
|
|
1379
|
+
readonly borderTopWidth: {
|
|
1380
|
+
readonly type: "unit";
|
|
1381
|
+
readonly value: 1;
|
|
1382
|
+
readonly unit: "px";
|
|
1383
|
+
};
|
|
1384
|
+
readonly borderRightWidth: {
|
|
1385
|
+
readonly type: "unit";
|
|
1386
|
+
readonly value: 1;
|
|
1387
|
+
readonly unit: "px";
|
|
1388
|
+
};
|
|
1389
|
+
readonly borderBottomWidth: {
|
|
1390
|
+
readonly type: "unit";
|
|
1391
|
+
readonly value: 1;
|
|
1392
|
+
readonly unit: "px";
|
|
1393
|
+
};
|
|
1394
|
+
readonly borderLeftWidth: {
|
|
1395
|
+
readonly type: "unit";
|
|
1396
|
+
readonly value: 1;
|
|
1397
|
+
readonly unit: "px";
|
|
1398
|
+
};
|
|
1399
|
+
readonly fontFamily: {
|
|
1400
|
+
readonly type: "keyword";
|
|
1401
|
+
readonly value: "ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace";
|
|
1402
|
+
};
|
|
1403
|
+
readonly fontSize: {
|
|
1404
|
+
readonly type: "unit";
|
|
1405
|
+
readonly value: 1;
|
|
1406
|
+
readonly unit: "em";
|
|
1407
|
+
};
|
|
1408
|
+
readonly boxSizing: {
|
|
1409
|
+
readonly type: "keyword";
|
|
1410
|
+
readonly value: "border-box";
|
|
1411
|
+
};
|
|
1412
|
+
};
|
|
1413
|
+
export declare const kbd: {
|
|
1414
|
+
readonly borderTopColor: {
|
|
1415
|
+
readonly type: "keyword";
|
|
1416
|
+
readonly value: "currentColor";
|
|
1417
|
+
};
|
|
1418
|
+
readonly borderRightColor: {
|
|
1419
|
+
readonly type: "keyword";
|
|
1420
|
+
readonly value: "currentColor";
|
|
1421
|
+
};
|
|
1422
|
+
readonly borderBottomColor: {
|
|
1423
|
+
readonly type: "keyword";
|
|
1424
|
+
readonly value: "currentColor";
|
|
1425
|
+
};
|
|
1426
|
+
readonly borderLeftColor: {
|
|
1427
|
+
readonly type: "keyword";
|
|
1428
|
+
readonly value: "currentColor";
|
|
1429
|
+
};
|
|
1430
|
+
readonly borderTopWidth: {
|
|
1431
|
+
readonly type: "unit";
|
|
1432
|
+
readonly value: 1;
|
|
1433
|
+
readonly unit: "px";
|
|
1434
|
+
};
|
|
1435
|
+
readonly borderRightWidth: {
|
|
1436
|
+
readonly type: "unit";
|
|
1437
|
+
readonly value: 1;
|
|
1438
|
+
readonly unit: "px";
|
|
1439
|
+
};
|
|
1440
|
+
readonly borderBottomWidth: {
|
|
1441
|
+
readonly type: "unit";
|
|
1442
|
+
readonly value: 1;
|
|
1443
|
+
readonly unit: "px";
|
|
1444
|
+
};
|
|
1445
|
+
readonly borderLeftWidth: {
|
|
1446
|
+
readonly type: "unit";
|
|
1447
|
+
readonly value: 1;
|
|
1448
|
+
readonly unit: "px";
|
|
1449
|
+
};
|
|
1450
|
+
readonly fontFamily: {
|
|
1451
|
+
readonly type: "keyword";
|
|
1452
|
+
readonly value: "ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace";
|
|
1453
|
+
};
|
|
1454
|
+
readonly fontSize: {
|
|
1455
|
+
readonly type: "unit";
|
|
1456
|
+
readonly value: 1;
|
|
1457
|
+
readonly unit: "em";
|
|
1458
|
+
};
|
|
1459
|
+
readonly boxSizing: {
|
|
1460
|
+
readonly type: "keyword";
|
|
1461
|
+
readonly value: "border-box";
|
|
1462
|
+
};
|
|
1463
|
+
};
|
|
1464
|
+
export declare const samp: {
|
|
1465
|
+
readonly borderTopColor: {
|
|
1466
|
+
readonly type: "keyword";
|
|
1467
|
+
readonly value: "currentColor";
|
|
1468
|
+
};
|
|
1469
|
+
readonly borderRightColor: {
|
|
1470
|
+
readonly type: "keyword";
|
|
1471
|
+
readonly value: "currentColor";
|
|
1472
|
+
};
|
|
1473
|
+
readonly borderBottomColor: {
|
|
1474
|
+
readonly type: "keyword";
|
|
1475
|
+
readonly value: "currentColor";
|
|
1476
|
+
};
|
|
1477
|
+
readonly borderLeftColor: {
|
|
1478
|
+
readonly type: "keyword";
|
|
1479
|
+
readonly value: "currentColor";
|
|
1480
|
+
};
|
|
1481
|
+
readonly borderTopWidth: {
|
|
1482
|
+
readonly type: "unit";
|
|
1483
|
+
readonly value: 1;
|
|
1484
|
+
readonly unit: "px";
|
|
1485
|
+
};
|
|
1486
|
+
readonly borderRightWidth: {
|
|
1487
|
+
readonly type: "unit";
|
|
1488
|
+
readonly value: 1;
|
|
1489
|
+
readonly unit: "px";
|
|
1490
|
+
};
|
|
1491
|
+
readonly borderBottomWidth: {
|
|
1492
|
+
readonly type: "unit";
|
|
1493
|
+
readonly value: 1;
|
|
1494
|
+
readonly unit: "px";
|
|
1495
|
+
};
|
|
1496
|
+
readonly borderLeftWidth: {
|
|
1497
|
+
readonly type: "unit";
|
|
1498
|
+
readonly value: 1;
|
|
1499
|
+
readonly unit: "px";
|
|
1500
|
+
};
|
|
1501
|
+
readonly fontFamily: {
|
|
1502
|
+
readonly type: "keyword";
|
|
1503
|
+
readonly value: "ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace";
|
|
1504
|
+
};
|
|
1505
|
+
readonly fontSize: {
|
|
1506
|
+
readonly type: "unit";
|
|
1507
|
+
readonly value: 1;
|
|
1508
|
+
readonly unit: "em";
|
|
1509
|
+
};
|
|
1510
|
+
readonly boxSizing: {
|
|
1511
|
+
readonly type: "keyword";
|
|
1512
|
+
readonly value: "border-box";
|
|
1513
|
+
};
|
|
1514
|
+
};
|
|
1515
|
+
export declare const pre: {
|
|
1516
|
+
readonly borderTopColor: {
|
|
1517
|
+
readonly type: "keyword";
|
|
1518
|
+
readonly value: "currentColor";
|
|
1519
|
+
};
|
|
1520
|
+
readonly borderRightColor: {
|
|
1521
|
+
readonly type: "keyword";
|
|
1522
|
+
readonly value: "currentColor";
|
|
1523
|
+
};
|
|
1524
|
+
readonly borderBottomColor: {
|
|
1525
|
+
readonly type: "keyword";
|
|
1526
|
+
readonly value: "currentColor";
|
|
1527
|
+
};
|
|
1528
|
+
readonly borderLeftColor: {
|
|
1529
|
+
readonly type: "keyword";
|
|
1530
|
+
readonly value: "currentColor";
|
|
1531
|
+
};
|
|
1532
|
+
readonly borderTopWidth: {
|
|
1533
|
+
readonly type: "unit";
|
|
1534
|
+
readonly value: 1;
|
|
1535
|
+
readonly unit: "px";
|
|
1536
|
+
};
|
|
1537
|
+
readonly borderRightWidth: {
|
|
1538
|
+
readonly type: "unit";
|
|
1539
|
+
readonly value: 1;
|
|
1540
|
+
readonly unit: "px";
|
|
1541
|
+
};
|
|
1542
|
+
readonly borderBottomWidth: {
|
|
1543
|
+
readonly type: "unit";
|
|
1544
|
+
readonly value: 1;
|
|
1545
|
+
readonly unit: "px";
|
|
1546
|
+
};
|
|
1547
|
+
readonly borderLeftWidth: {
|
|
1548
|
+
readonly type: "unit";
|
|
1549
|
+
readonly value: 1;
|
|
1550
|
+
readonly unit: "px";
|
|
1551
|
+
};
|
|
1552
|
+
readonly fontFamily: {
|
|
1553
|
+
readonly type: "keyword";
|
|
1554
|
+
readonly value: "ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace";
|
|
1555
|
+
};
|
|
1556
|
+
readonly fontSize: {
|
|
1557
|
+
readonly type: "unit";
|
|
1558
|
+
readonly value: 1;
|
|
1559
|
+
readonly unit: "em";
|
|
1560
|
+
};
|
|
1561
|
+
readonly boxSizing: {
|
|
1562
|
+
readonly type: "keyword";
|
|
1563
|
+
readonly value: "border-box";
|
|
1564
|
+
};
|
|
1565
|
+
};
|
|
1566
|
+
/**
|
|
1567
|
+
Add the correct font size in all browsers.
|
|
1568
|
+
*/
|
|
1569
|
+
export declare const small: {
|
|
1570
|
+
readonly borderTopColor: {
|
|
1571
|
+
readonly type: "keyword";
|
|
1572
|
+
readonly value: "currentColor";
|
|
1573
|
+
};
|
|
1574
|
+
readonly borderRightColor: {
|
|
1575
|
+
readonly type: "keyword";
|
|
1576
|
+
readonly value: "currentColor";
|
|
1577
|
+
};
|
|
1578
|
+
readonly borderBottomColor: {
|
|
1579
|
+
readonly type: "keyword";
|
|
1580
|
+
readonly value: "currentColor";
|
|
1581
|
+
};
|
|
1582
|
+
readonly borderLeftColor: {
|
|
1583
|
+
readonly type: "keyword";
|
|
1584
|
+
readonly value: "currentColor";
|
|
1585
|
+
};
|
|
1586
|
+
readonly borderTopWidth: {
|
|
1587
|
+
readonly type: "unit";
|
|
1588
|
+
readonly value: 1;
|
|
1589
|
+
readonly unit: "px";
|
|
1590
|
+
};
|
|
1591
|
+
readonly borderRightWidth: {
|
|
1592
|
+
readonly type: "unit";
|
|
1593
|
+
readonly value: 1;
|
|
1594
|
+
readonly unit: "px";
|
|
1595
|
+
};
|
|
1596
|
+
readonly borderBottomWidth: {
|
|
1597
|
+
readonly type: "unit";
|
|
1598
|
+
readonly value: 1;
|
|
1599
|
+
readonly unit: "px";
|
|
1600
|
+
};
|
|
1601
|
+
readonly borderLeftWidth: {
|
|
1602
|
+
readonly type: "unit";
|
|
1603
|
+
readonly value: 1;
|
|
1604
|
+
readonly unit: "px";
|
|
1605
|
+
};
|
|
1606
|
+
readonly fontSize: {
|
|
1607
|
+
readonly type: "unit";
|
|
1608
|
+
readonly value: 80;
|
|
1609
|
+
readonly unit: "%";
|
|
1610
|
+
};
|
|
1611
|
+
readonly boxSizing: {
|
|
1612
|
+
readonly type: "keyword";
|
|
1613
|
+
readonly value: "border-box";
|
|
1614
|
+
};
|
|
1615
|
+
};
|
|
1616
|
+
export declare const sub: {
|
|
1617
|
+
readonly bottom: {
|
|
1618
|
+
readonly type: "unit";
|
|
1619
|
+
readonly value: -0.25;
|
|
1620
|
+
readonly unit: "em";
|
|
1621
|
+
};
|
|
1622
|
+
readonly borderTopColor: {
|
|
1623
|
+
readonly type: "keyword";
|
|
1624
|
+
readonly value: "currentColor";
|
|
1625
|
+
};
|
|
1626
|
+
readonly borderRightColor: {
|
|
1627
|
+
readonly type: "keyword";
|
|
1628
|
+
readonly value: "currentColor";
|
|
1629
|
+
};
|
|
1630
|
+
readonly borderBottomColor: {
|
|
1631
|
+
readonly type: "keyword";
|
|
1632
|
+
readonly value: "currentColor";
|
|
1633
|
+
};
|
|
1634
|
+
readonly borderLeftColor: {
|
|
1635
|
+
readonly type: "keyword";
|
|
1636
|
+
readonly value: "currentColor";
|
|
1637
|
+
};
|
|
1638
|
+
readonly borderTopWidth: {
|
|
1639
|
+
readonly type: "unit";
|
|
1640
|
+
readonly value: 1;
|
|
1641
|
+
readonly unit: "px";
|
|
1642
|
+
};
|
|
1643
|
+
readonly borderRightWidth: {
|
|
1644
|
+
readonly type: "unit";
|
|
1645
|
+
readonly value: 1;
|
|
1646
|
+
readonly unit: "px";
|
|
1647
|
+
};
|
|
1648
|
+
readonly borderBottomWidth: {
|
|
1649
|
+
readonly type: "unit";
|
|
1650
|
+
readonly value: 1;
|
|
1651
|
+
readonly unit: "px";
|
|
1652
|
+
};
|
|
1653
|
+
readonly borderLeftWidth: {
|
|
1654
|
+
readonly type: "unit";
|
|
1655
|
+
readonly value: 1;
|
|
1656
|
+
readonly unit: "px";
|
|
1657
|
+
};
|
|
1658
|
+
readonly fontSize: {
|
|
1659
|
+
readonly type: "unit";
|
|
1660
|
+
readonly value: 75;
|
|
1661
|
+
readonly unit: "%";
|
|
1662
|
+
};
|
|
1663
|
+
readonly lineHeight: {
|
|
1664
|
+
readonly type: "unit";
|
|
1665
|
+
readonly value: 0;
|
|
1666
|
+
readonly unit: "number";
|
|
1667
|
+
};
|
|
1668
|
+
readonly position: {
|
|
1669
|
+
readonly type: "keyword";
|
|
1670
|
+
readonly value: "relative";
|
|
1671
|
+
};
|
|
1672
|
+
readonly verticalAlign: {
|
|
1673
|
+
readonly type: "keyword";
|
|
1674
|
+
readonly value: "baseline";
|
|
1675
|
+
};
|
|
1676
|
+
readonly boxSizing: {
|
|
1677
|
+
readonly type: "keyword";
|
|
1678
|
+
readonly value: "border-box";
|
|
1679
|
+
};
|
|
1680
|
+
};
|
|
1681
|
+
export declare const sup: {
|
|
1682
|
+
readonly top: {
|
|
1683
|
+
readonly type: "unit";
|
|
1684
|
+
readonly value: -0.5;
|
|
1685
|
+
readonly unit: "em";
|
|
1686
|
+
};
|
|
1687
|
+
readonly borderTopColor: {
|
|
1688
|
+
readonly type: "keyword";
|
|
1689
|
+
readonly value: "currentColor";
|
|
1690
|
+
};
|
|
1691
|
+
readonly borderRightColor: {
|
|
1692
|
+
readonly type: "keyword";
|
|
1693
|
+
readonly value: "currentColor";
|
|
1694
|
+
};
|
|
1695
|
+
readonly borderBottomColor: {
|
|
1696
|
+
readonly type: "keyword";
|
|
1697
|
+
readonly value: "currentColor";
|
|
1698
|
+
};
|
|
1699
|
+
readonly borderLeftColor: {
|
|
1700
|
+
readonly type: "keyword";
|
|
1701
|
+
readonly value: "currentColor";
|
|
1702
|
+
};
|
|
1703
|
+
readonly borderTopWidth: {
|
|
1704
|
+
readonly type: "unit";
|
|
1705
|
+
readonly value: 1;
|
|
1706
|
+
readonly unit: "px";
|
|
1707
|
+
};
|
|
1708
|
+
readonly borderRightWidth: {
|
|
1709
|
+
readonly type: "unit";
|
|
1710
|
+
readonly value: 1;
|
|
1711
|
+
readonly unit: "px";
|
|
1712
|
+
};
|
|
1713
|
+
readonly borderBottomWidth: {
|
|
1714
|
+
readonly type: "unit";
|
|
1715
|
+
readonly value: 1;
|
|
1716
|
+
readonly unit: "px";
|
|
1717
|
+
};
|
|
1718
|
+
readonly borderLeftWidth: {
|
|
1719
|
+
readonly type: "unit";
|
|
1720
|
+
readonly value: 1;
|
|
1721
|
+
readonly unit: "px";
|
|
1722
|
+
};
|
|
1723
|
+
readonly fontSize: {
|
|
1724
|
+
readonly type: "unit";
|
|
1725
|
+
readonly value: 75;
|
|
1726
|
+
readonly unit: "%";
|
|
1727
|
+
};
|
|
1728
|
+
readonly lineHeight: {
|
|
1729
|
+
readonly type: "unit";
|
|
1730
|
+
readonly value: 0;
|
|
1731
|
+
readonly unit: "number";
|
|
1732
|
+
};
|
|
1733
|
+
readonly position: {
|
|
1734
|
+
readonly type: "keyword";
|
|
1735
|
+
readonly value: "relative";
|
|
1736
|
+
};
|
|
1737
|
+
readonly verticalAlign: {
|
|
1738
|
+
readonly type: "keyword";
|
|
1739
|
+
readonly value: "baseline";
|
|
1740
|
+
};
|
|
1741
|
+
readonly boxSizing: {
|
|
1742
|
+
readonly type: "keyword";
|
|
1743
|
+
readonly value: "border-box";
|
|
1744
|
+
};
|
|
1745
|
+
};
|
|
1746
|
+
/**
|
|
1747
|
+
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
|
1748
|
+
2. Correct table border color inheritance in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
1749
|
+
*/
|
|
1750
|
+
export declare const table: {
|
|
1751
|
+
readonly borderTopColor: {
|
|
1752
|
+
readonly type: "keyword";
|
|
1753
|
+
readonly value: "inherit";
|
|
1754
|
+
};
|
|
1755
|
+
readonly borderRightColor: {
|
|
1756
|
+
readonly type: "keyword";
|
|
1757
|
+
readonly value: "inherit";
|
|
1758
|
+
};
|
|
1759
|
+
readonly borderBottomColor: {
|
|
1760
|
+
readonly type: "keyword";
|
|
1761
|
+
readonly value: "inherit";
|
|
1762
|
+
};
|
|
1763
|
+
readonly borderLeftColor: {
|
|
1764
|
+
readonly type: "keyword";
|
|
1765
|
+
readonly value: "inherit";
|
|
1766
|
+
};
|
|
1767
|
+
readonly boxSizing: {
|
|
1768
|
+
readonly type: "keyword";
|
|
1769
|
+
readonly value: "border-box";
|
|
1770
|
+
};
|
|
1771
|
+
readonly borderTopWidth: {
|
|
1772
|
+
readonly type: "unit";
|
|
1773
|
+
readonly value: 1;
|
|
1774
|
+
readonly unit: "px";
|
|
1775
|
+
};
|
|
1776
|
+
readonly borderRightWidth: {
|
|
1777
|
+
readonly type: "unit";
|
|
1778
|
+
readonly value: 1;
|
|
1779
|
+
readonly unit: "px";
|
|
1780
|
+
};
|
|
1781
|
+
readonly borderBottomWidth: {
|
|
1782
|
+
readonly type: "unit";
|
|
1783
|
+
readonly value: 1;
|
|
1784
|
+
readonly unit: "px";
|
|
1785
|
+
};
|
|
1786
|
+
readonly borderLeftWidth: {
|
|
1787
|
+
readonly type: "unit";
|
|
1788
|
+
readonly value: 1;
|
|
1789
|
+
readonly unit: "px";
|
|
1790
|
+
};
|
|
1791
|
+
readonly textIndent: {
|
|
1792
|
+
readonly type: "unit";
|
|
1793
|
+
readonly value: 0;
|
|
1794
|
+
readonly unit: "number";
|
|
1795
|
+
};
|
|
1796
|
+
};
|
|
1797
|
+
export declare const input: {
|
|
1798
|
+
readonly borderTopColor: {
|
|
1799
|
+
readonly type: "keyword";
|
|
1800
|
+
readonly value: "currentColor";
|
|
1801
|
+
};
|
|
1802
|
+
readonly borderRightColor: {
|
|
1803
|
+
readonly type: "keyword";
|
|
1804
|
+
readonly value: "currentColor";
|
|
1805
|
+
};
|
|
1806
|
+
readonly borderBottomColor: {
|
|
1807
|
+
readonly type: "keyword";
|
|
1808
|
+
readonly value: "currentColor";
|
|
1809
|
+
};
|
|
1810
|
+
readonly borderLeftColor: {
|
|
1811
|
+
readonly type: "keyword";
|
|
1812
|
+
readonly value: "currentColor";
|
|
1813
|
+
};
|
|
1814
|
+
readonly borderTopWidth: {
|
|
1815
|
+
readonly type: "unit";
|
|
1816
|
+
readonly value: 1;
|
|
1817
|
+
readonly unit: "px";
|
|
1818
|
+
};
|
|
1819
|
+
readonly borderRightWidth: {
|
|
1820
|
+
readonly type: "unit";
|
|
1821
|
+
readonly value: 1;
|
|
1822
|
+
readonly unit: "px";
|
|
1823
|
+
};
|
|
1824
|
+
readonly borderBottomWidth: {
|
|
1825
|
+
readonly type: "unit";
|
|
1826
|
+
readonly value: 1;
|
|
1827
|
+
readonly unit: "px";
|
|
1828
|
+
};
|
|
1829
|
+
readonly borderLeftWidth: {
|
|
1830
|
+
readonly type: "unit";
|
|
1831
|
+
readonly value: 1;
|
|
1832
|
+
readonly unit: "px";
|
|
1833
|
+
};
|
|
1834
|
+
readonly fontFamily: {
|
|
1835
|
+
readonly type: "keyword";
|
|
1836
|
+
readonly value: "inherit";
|
|
1837
|
+
};
|
|
1838
|
+
readonly fontSize: {
|
|
1839
|
+
readonly type: "unit";
|
|
1840
|
+
readonly value: 100;
|
|
1841
|
+
readonly unit: "%";
|
|
1842
|
+
};
|
|
1843
|
+
readonly lineHeight: {
|
|
1844
|
+
readonly type: "unit";
|
|
1845
|
+
readonly value: 1.15;
|
|
1846
|
+
readonly unit: "number";
|
|
1847
|
+
};
|
|
1848
|
+
readonly marginTop: {
|
|
1849
|
+
readonly type: "unit";
|
|
1850
|
+
readonly value: 0;
|
|
1851
|
+
readonly unit: "number";
|
|
1852
|
+
};
|
|
1853
|
+
readonly marginRight: {
|
|
1854
|
+
readonly type: "unit";
|
|
1855
|
+
readonly value: 0;
|
|
1856
|
+
readonly unit: "number";
|
|
1857
|
+
};
|
|
1858
|
+
readonly marginBottom: {
|
|
1859
|
+
readonly type: "unit";
|
|
1860
|
+
readonly value: 0;
|
|
1861
|
+
readonly unit: "number";
|
|
1862
|
+
};
|
|
1863
|
+
readonly marginLeft: {
|
|
1864
|
+
readonly type: "unit";
|
|
1865
|
+
readonly value: 0;
|
|
1866
|
+
readonly unit: "number";
|
|
1867
|
+
};
|
|
1868
|
+
readonly boxSizing: {
|
|
1869
|
+
readonly type: "keyword";
|
|
1870
|
+
readonly value: "border-box";
|
|
1871
|
+
};
|
|
1872
|
+
};
|
|
1873
|
+
export declare const optgroup: {
|
|
1874
|
+
readonly borderTopColor: {
|
|
1875
|
+
readonly type: "keyword";
|
|
1876
|
+
readonly value: "currentColor";
|
|
1877
|
+
};
|
|
1878
|
+
readonly borderRightColor: {
|
|
1879
|
+
readonly type: "keyword";
|
|
1880
|
+
readonly value: "currentColor";
|
|
1881
|
+
};
|
|
1882
|
+
readonly borderBottomColor: {
|
|
1883
|
+
readonly type: "keyword";
|
|
1884
|
+
readonly value: "currentColor";
|
|
1885
|
+
};
|
|
1886
|
+
readonly borderLeftColor: {
|
|
1887
|
+
readonly type: "keyword";
|
|
1888
|
+
readonly value: "currentColor";
|
|
1889
|
+
};
|
|
1890
|
+
readonly borderTopWidth: {
|
|
1891
|
+
readonly type: "unit";
|
|
1892
|
+
readonly value: 1;
|
|
1893
|
+
readonly unit: "px";
|
|
1894
|
+
};
|
|
1895
|
+
readonly borderRightWidth: {
|
|
1896
|
+
readonly type: "unit";
|
|
1897
|
+
readonly value: 1;
|
|
1898
|
+
readonly unit: "px";
|
|
1899
|
+
};
|
|
1900
|
+
readonly borderBottomWidth: {
|
|
1901
|
+
readonly type: "unit";
|
|
1902
|
+
readonly value: 1;
|
|
1903
|
+
readonly unit: "px";
|
|
1904
|
+
};
|
|
1905
|
+
readonly borderLeftWidth: {
|
|
1906
|
+
readonly type: "unit";
|
|
1907
|
+
readonly value: 1;
|
|
1908
|
+
readonly unit: "px";
|
|
1909
|
+
};
|
|
1910
|
+
readonly fontFamily: {
|
|
1911
|
+
readonly type: "keyword";
|
|
1912
|
+
readonly value: "inherit";
|
|
1913
|
+
};
|
|
1914
|
+
readonly fontSize: {
|
|
1915
|
+
readonly type: "unit";
|
|
1916
|
+
readonly value: 100;
|
|
1917
|
+
readonly unit: "%";
|
|
1918
|
+
};
|
|
1919
|
+
readonly lineHeight: {
|
|
1920
|
+
readonly type: "unit";
|
|
1921
|
+
readonly value: 1.15;
|
|
1922
|
+
readonly unit: "number";
|
|
1923
|
+
};
|
|
1924
|
+
readonly marginTop: {
|
|
1925
|
+
readonly type: "unit";
|
|
1926
|
+
readonly value: 0;
|
|
1927
|
+
readonly unit: "number";
|
|
1928
|
+
};
|
|
1929
|
+
readonly marginRight: {
|
|
1930
|
+
readonly type: "unit";
|
|
1931
|
+
readonly value: 0;
|
|
1932
|
+
readonly unit: "number";
|
|
1933
|
+
};
|
|
1934
|
+
readonly marginBottom: {
|
|
1935
|
+
readonly type: "unit";
|
|
1936
|
+
readonly value: 0;
|
|
1937
|
+
readonly unit: "number";
|
|
1938
|
+
};
|
|
1939
|
+
readonly marginLeft: {
|
|
1940
|
+
readonly type: "unit";
|
|
1941
|
+
readonly value: 0;
|
|
1942
|
+
readonly unit: "number";
|
|
1943
|
+
};
|
|
1944
|
+
readonly boxSizing: {
|
|
1945
|
+
readonly type: "keyword";
|
|
1946
|
+
readonly value: "border-box";
|
|
1947
|
+
};
|
|
1948
|
+
};
|
|
1949
|
+
export declare const textarea: {
|
|
1950
|
+
readonly borderTopColor: {
|
|
1951
|
+
readonly type: "keyword";
|
|
1952
|
+
readonly value: "currentColor";
|
|
1953
|
+
};
|
|
1954
|
+
readonly borderRightColor: {
|
|
1955
|
+
readonly type: "keyword";
|
|
1956
|
+
readonly value: "currentColor";
|
|
1957
|
+
};
|
|
1958
|
+
readonly borderBottomColor: {
|
|
1959
|
+
readonly type: "keyword";
|
|
1960
|
+
readonly value: "currentColor";
|
|
1961
|
+
};
|
|
1962
|
+
readonly borderLeftColor: {
|
|
1963
|
+
readonly type: "keyword";
|
|
1964
|
+
readonly value: "currentColor";
|
|
1965
|
+
};
|
|
1966
|
+
readonly borderTopWidth: {
|
|
1967
|
+
readonly type: "unit";
|
|
1968
|
+
readonly value: 1;
|
|
1969
|
+
readonly unit: "px";
|
|
1970
|
+
};
|
|
1971
|
+
readonly borderRightWidth: {
|
|
1972
|
+
readonly type: "unit";
|
|
1973
|
+
readonly value: 1;
|
|
1974
|
+
readonly unit: "px";
|
|
1975
|
+
};
|
|
1976
|
+
readonly borderBottomWidth: {
|
|
1977
|
+
readonly type: "unit";
|
|
1978
|
+
readonly value: 1;
|
|
1979
|
+
readonly unit: "px";
|
|
1980
|
+
};
|
|
1981
|
+
readonly borderLeftWidth: {
|
|
1982
|
+
readonly type: "unit";
|
|
1983
|
+
readonly value: 1;
|
|
1984
|
+
readonly unit: "px";
|
|
1985
|
+
};
|
|
1986
|
+
readonly fontFamily: {
|
|
1987
|
+
readonly type: "keyword";
|
|
1988
|
+
readonly value: "inherit";
|
|
1989
|
+
};
|
|
1990
|
+
readonly fontSize: {
|
|
1991
|
+
readonly type: "unit";
|
|
1992
|
+
readonly value: 100;
|
|
1993
|
+
readonly unit: "%";
|
|
1994
|
+
};
|
|
1995
|
+
readonly lineHeight: {
|
|
1996
|
+
readonly type: "unit";
|
|
1997
|
+
readonly value: 1.15;
|
|
1998
|
+
readonly unit: "number";
|
|
1999
|
+
};
|
|
2000
|
+
readonly marginTop: {
|
|
2001
|
+
readonly type: "unit";
|
|
2002
|
+
readonly value: 0;
|
|
2003
|
+
readonly unit: "number";
|
|
2004
|
+
};
|
|
2005
|
+
readonly marginRight: {
|
|
2006
|
+
readonly type: "unit";
|
|
2007
|
+
readonly value: 0;
|
|
2008
|
+
readonly unit: "number";
|
|
2009
|
+
};
|
|
2010
|
+
readonly marginBottom: {
|
|
2011
|
+
readonly type: "unit";
|
|
2012
|
+
readonly value: 0;
|
|
2013
|
+
readonly unit: "number";
|
|
2014
|
+
};
|
|
2015
|
+
readonly marginLeft: {
|
|
2016
|
+
readonly type: "unit";
|
|
2017
|
+
readonly value: 0;
|
|
2018
|
+
readonly unit: "number";
|
|
2019
|
+
};
|
|
2020
|
+
readonly boxSizing: {
|
|
2021
|
+
readonly type: "keyword";
|
|
2022
|
+
readonly value: "border-box";
|
|
2023
|
+
};
|
|
2024
|
+
};
|
|
2025
|
+
/**
|
|
2026
|
+
Remove the inheritance of text transform in Edge and Firefox.
|
|
2027
|
+
*/
|
|
2028
|
+
export declare const button: {
|
|
2029
|
+
readonly textTransform: {
|
|
2030
|
+
readonly type: "keyword";
|
|
2031
|
+
readonly value: "none";
|
|
2032
|
+
};
|
|
2033
|
+
readonly borderTopColor: {
|
|
2034
|
+
readonly type: "keyword";
|
|
2035
|
+
readonly value: "currentColor";
|
|
2036
|
+
};
|
|
2037
|
+
readonly borderRightColor: {
|
|
2038
|
+
readonly type: "keyword";
|
|
2039
|
+
readonly value: "currentColor";
|
|
2040
|
+
};
|
|
2041
|
+
readonly borderBottomColor: {
|
|
2042
|
+
readonly type: "keyword";
|
|
2043
|
+
readonly value: "currentColor";
|
|
2044
|
+
};
|
|
2045
|
+
readonly borderLeftColor: {
|
|
2046
|
+
readonly type: "keyword";
|
|
2047
|
+
readonly value: "currentColor";
|
|
2048
|
+
};
|
|
2049
|
+
readonly borderTopWidth: {
|
|
2050
|
+
readonly type: "unit";
|
|
2051
|
+
readonly value: 1;
|
|
2052
|
+
readonly unit: "px";
|
|
2053
|
+
};
|
|
2054
|
+
readonly borderRightWidth: {
|
|
2055
|
+
readonly type: "unit";
|
|
2056
|
+
readonly value: 1;
|
|
2057
|
+
readonly unit: "px";
|
|
2058
|
+
};
|
|
2059
|
+
readonly borderBottomWidth: {
|
|
2060
|
+
readonly type: "unit";
|
|
2061
|
+
readonly value: 1;
|
|
2062
|
+
readonly unit: "px";
|
|
2063
|
+
};
|
|
2064
|
+
readonly borderLeftWidth: {
|
|
2065
|
+
readonly type: "unit";
|
|
2066
|
+
readonly value: 1;
|
|
2067
|
+
readonly unit: "px";
|
|
2068
|
+
};
|
|
2069
|
+
readonly fontFamily: {
|
|
2070
|
+
readonly type: "keyword";
|
|
2071
|
+
readonly value: "inherit";
|
|
2072
|
+
};
|
|
2073
|
+
readonly fontSize: {
|
|
2074
|
+
readonly type: "unit";
|
|
2075
|
+
readonly value: 100;
|
|
2076
|
+
readonly unit: "%";
|
|
2077
|
+
};
|
|
2078
|
+
readonly lineHeight: {
|
|
2079
|
+
readonly type: "unit";
|
|
2080
|
+
readonly value: 1.15;
|
|
2081
|
+
readonly unit: "number";
|
|
2082
|
+
};
|
|
2083
|
+
readonly marginTop: {
|
|
2084
|
+
readonly type: "unit";
|
|
2085
|
+
readonly value: 0;
|
|
2086
|
+
readonly unit: "number";
|
|
2087
|
+
};
|
|
2088
|
+
readonly marginRight: {
|
|
2089
|
+
readonly type: "unit";
|
|
2090
|
+
readonly value: 0;
|
|
2091
|
+
readonly unit: "number";
|
|
2092
|
+
};
|
|
2093
|
+
readonly marginBottom: {
|
|
2094
|
+
readonly type: "unit";
|
|
2095
|
+
readonly value: 0;
|
|
2096
|
+
readonly unit: "number";
|
|
2097
|
+
};
|
|
2098
|
+
readonly marginLeft: {
|
|
2099
|
+
readonly type: "unit";
|
|
2100
|
+
readonly value: 0;
|
|
2101
|
+
readonly unit: "number";
|
|
2102
|
+
};
|
|
2103
|
+
readonly boxSizing: {
|
|
2104
|
+
readonly type: "keyword";
|
|
2105
|
+
readonly value: "border-box";
|
|
2106
|
+
};
|
|
2107
|
+
};
|
|
2108
|
+
export declare const select: {
|
|
2109
|
+
readonly textTransform: {
|
|
2110
|
+
readonly type: "keyword";
|
|
2111
|
+
readonly value: "none";
|
|
2112
|
+
};
|
|
2113
|
+
readonly borderTopColor: {
|
|
2114
|
+
readonly type: "keyword";
|
|
2115
|
+
readonly value: "currentColor";
|
|
2116
|
+
};
|
|
2117
|
+
readonly borderRightColor: {
|
|
2118
|
+
readonly type: "keyword";
|
|
2119
|
+
readonly value: "currentColor";
|
|
2120
|
+
};
|
|
2121
|
+
readonly borderBottomColor: {
|
|
2122
|
+
readonly type: "keyword";
|
|
2123
|
+
readonly value: "currentColor";
|
|
2124
|
+
};
|
|
2125
|
+
readonly borderLeftColor: {
|
|
2126
|
+
readonly type: "keyword";
|
|
2127
|
+
readonly value: "currentColor";
|
|
2128
|
+
};
|
|
2129
|
+
readonly borderTopWidth: {
|
|
2130
|
+
readonly type: "unit";
|
|
2131
|
+
readonly value: 1;
|
|
2132
|
+
readonly unit: "px";
|
|
2133
|
+
};
|
|
2134
|
+
readonly borderRightWidth: {
|
|
2135
|
+
readonly type: "unit";
|
|
2136
|
+
readonly value: 1;
|
|
2137
|
+
readonly unit: "px";
|
|
2138
|
+
};
|
|
2139
|
+
readonly borderBottomWidth: {
|
|
2140
|
+
readonly type: "unit";
|
|
2141
|
+
readonly value: 1;
|
|
2142
|
+
readonly unit: "px";
|
|
2143
|
+
};
|
|
2144
|
+
readonly borderLeftWidth: {
|
|
2145
|
+
readonly type: "unit";
|
|
2146
|
+
readonly value: 1;
|
|
2147
|
+
readonly unit: "px";
|
|
2148
|
+
};
|
|
2149
|
+
readonly fontFamily: {
|
|
2150
|
+
readonly type: "keyword";
|
|
2151
|
+
readonly value: "inherit";
|
|
2152
|
+
};
|
|
2153
|
+
readonly fontSize: {
|
|
2154
|
+
readonly type: "unit";
|
|
2155
|
+
readonly value: 100;
|
|
2156
|
+
readonly unit: "%";
|
|
2157
|
+
};
|
|
2158
|
+
readonly lineHeight: {
|
|
2159
|
+
readonly type: "unit";
|
|
2160
|
+
readonly value: 1.15;
|
|
2161
|
+
readonly unit: "number";
|
|
2162
|
+
};
|
|
2163
|
+
readonly marginTop: {
|
|
2164
|
+
readonly type: "unit";
|
|
2165
|
+
readonly value: 0;
|
|
2166
|
+
readonly unit: "number";
|
|
2167
|
+
};
|
|
2168
|
+
readonly marginRight: {
|
|
2169
|
+
readonly type: "unit";
|
|
2170
|
+
readonly value: 0;
|
|
2171
|
+
readonly unit: "number";
|
|
2172
|
+
};
|
|
2173
|
+
readonly marginBottom: {
|
|
2174
|
+
readonly type: "unit";
|
|
2175
|
+
readonly value: 0;
|
|
2176
|
+
readonly unit: "number";
|
|
2177
|
+
};
|
|
2178
|
+
readonly marginLeft: {
|
|
2179
|
+
readonly type: "unit";
|
|
2180
|
+
readonly value: 0;
|
|
2181
|
+
readonly unit: "number";
|
|
2182
|
+
};
|
|
2183
|
+
readonly boxSizing: {
|
|
2184
|
+
readonly type: "keyword";
|
|
2185
|
+
readonly value: "border-box";
|
|
2186
|
+
};
|
|
2187
|
+
};
|
|
2188
|
+
/**
|
|
2189
|
+
Correct the inability to style clickable types in iOS and Safari.
|
|
2190
|
+
|
|
2191
|
+
!!!Skipped as we don't support this logic!!!
|
|
2192
|
+
|
|
2193
|
+
buttonBase,
|
|
2194
|
+
[type='button'],
|
|
2195
|
+
[type='reset'],
|
|
2196
|
+
[type='submit'] {
|
|
2197
|
+
-webkit-appearance: buttonBase;
|
|
2198
|
+
}
|
|
2199
|
+
*/
|
|
2200
|
+
/**
|
|
2201
|
+
Remove the inner border and padding in Firefox.
|
|
2202
|
+
|
|
2203
|
+
!!!Skipped as we don't support this logic!!!
|
|
2204
|
+
|
|
2205
|
+
::-moz-focus-inner {
|
|
2206
|
+
border-style: none;
|
|
2207
|
+
padding: 0;
|
|
2208
|
+
}
|
|
2209
|
+
*/
|
|
2210
|
+
/**
|
|
2211
|
+
Restore the focus styles unset by the previous rule.
|
|
2212
|
+
|
|
2213
|
+
!!!Skipped as we don't support this logic!!!
|
|
2214
|
+
|
|
2215
|
+
:-moz-focusring {
|
|
2216
|
+
outline: 1px dotted ButtonText;
|
|
2217
|
+
}
|
|
2218
|
+
*/
|
|
2219
|
+
/**
|
|
2220
|
+
Remove the additional ':invalid' styles in Firefox.
|
|
2221
|
+
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
|
|
2222
|
+
|
|
2223
|
+
!!!Skipped as we don't support this logic!!!
|
|
2224
|
+
|
|
2225
|
+
:-moz-ui-invalid {
|
|
2226
|
+
box-shadow: none;
|
|
2227
|
+
}
|
|
2228
|
+
*/
|
|
2229
|
+
/**
|
|
2230
|
+
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
|
|
2231
|
+
*/
|
|
2232
|
+
export declare const legend: {
|
|
2233
|
+
readonly borderTopColor: {
|
|
2234
|
+
readonly type: "keyword";
|
|
2235
|
+
readonly value: "currentColor";
|
|
2236
|
+
};
|
|
2237
|
+
readonly borderRightColor: {
|
|
2238
|
+
readonly type: "keyword";
|
|
2239
|
+
readonly value: "currentColor";
|
|
2240
|
+
};
|
|
2241
|
+
readonly borderBottomColor: {
|
|
2242
|
+
readonly type: "keyword";
|
|
2243
|
+
readonly value: "currentColor";
|
|
2244
|
+
};
|
|
2245
|
+
readonly borderLeftColor: {
|
|
2246
|
+
readonly type: "keyword";
|
|
2247
|
+
readonly value: "currentColor";
|
|
2248
|
+
};
|
|
2249
|
+
readonly borderTopWidth: {
|
|
2250
|
+
readonly type: "unit";
|
|
2251
|
+
readonly value: 1;
|
|
2252
|
+
readonly unit: "px";
|
|
2253
|
+
};
|
|
2254
|
+
readonly borderRightWidth: {
|
|
2255
|
+
readonly type: "unit";
|
|
2256
|
+
readonly value: 1;
|
|
2257
|
+
readonly unit: "px";
|
|
2258
|
+
};
|
|
2259
|
+
readonly borderBottomWidth: {
|
|
2260
|
+
readonly type: "unit";
|
|
2261
|
+
readonly value: 1;
|
|
2262
|
+
readonly unit: "px";
|
|
2263
|
+
};
|
|
2264
|
+
readonly borderLeftWidth: {
|
|
2265
|
+
readonly type: "unit";
|
|
2266
|
+
readonly value: 1;
|
|
2267
|
+
readonly unit: "px";
|
|
2268
|
+
};
|
|
2269
|
+
readonly paddingTop: {
|
|
2270
|
+
readonly type: "unit";
|
|
2271
|
+
readonly value: 0;
|
|
2272
|
+
readonly unit: "number";
|
|
2273
|
+
};
|
|
2274
|
+
readonly paddingRight: {
|
|
2275
|
+
readonly type: "unit";
|
|
2276
|
+
readonly value: 0;
|
|
2277
|
+
readonly unit: "number";
|
|
2278
|
+
};
|
|
2279
|
+
readonly paddingBottom: {
|
|
2280
|
+
readonly type: "unit";
|
|
2281
|
+
readonly value: 0;
|
|
2282
|
+
readonly unit: "number";
|
|
2283
|
+
};
|
|
2284
|
+
readonly paddingLeft: {
|
|
2285
|
+
readonly type: "unit";
|
|
2286
|
+
readonly value: 0;
|
|
2287
|
+
readonly unit: "number";
|
|
2288
|
+
};
|
|
2289
|
+
readonly boxSizing: {
|
|
2290
|
+
readonly type: "keyword";
|
|
2291
|
+
readonly value: "border-box";
|
|
2292
|
+
};
|
|
2293
|
+
};
|
|
2294
|
+
/**
|
|
2295
|
+
Add the correct vertical alignment in Chrome and Firefox.
|
|
2296
|
+
*/
|
|
2297
|
+
export declare const progress: {
|
|
2298
|
+
readonly borderTopColor: {
|
|
2299
|
+
readonly type: "keyword";
|
|
2300
|
+
readonly value: "currentColor";
|
|
2301
|
+
};
|
|
2302
|
+
readonly borderRightColor: {
|
|
2303
|
+
readonly type: "keyword";
|
|
2304
|
+
readonly value: "currentColor";
|
|
2305
|
+
};
|
|
2306
|
+
readonly borderBottomColor: {
|
|
2307
|
+
readonly type: "keyword";
|
|
2308
|
+
readonly value: "currentColor";
|
|
2309
|
+
};
|
|
2310
|
+
readonly borderLeftColor: {
|
|
2311
|
+
readonly type: "keyword";
|
|
2312
|
+
readonly value: "currentColor";
|
|
2313
|
+
};
|
|
2314
|
+
readonly borderTopWidth: {
|
|
2315
|
+
readonly type: "unit";
|
|
2316
|
+
readonly value: 1;
|
|
2317
|
+
readonly unit: "px";
|
|
2318
|
+
};
|
|
2319
|
+
readonly borderRightWidth: {
|
|
2320
|
+
readonly type: "unit";
|
|
2321
|
+
readonly value: 1;
|
|
2322
|
+
readonly unit: "px";
|
|
2323
|
+
};
|
|
2324
|
+
readonly borderBottomWidth: {
|
|
2325
|
+
readonly type: "unit";
|
|
2326
|
+
readonly value: 1;
|
|
2327
|
+
readonly unit: "px";
|
|
2328
|
+
};
|
|
2329
|
+
readonly borderLeftWidth: {
|
|
2330
|
+
readonly type: "unit";
|
|
2331
|
+
readonly value: 1;
|
|
2332
|
+
readonly unit: "px";
|
|
2333
|
+
};
|
|
2334
|
+
readonly verticalAlign: {
|
|
2335
|
+
readonly type: "keyword";
|
|
2336
|
+
readonly value: "baseline";
|
|
2337
|
+
};
|
|
2338
|
+
readonly boxSizing: {
|
|
2339
|
+
readonly type: "keyword";
|
|
2340
|
+
readonly value: "border-box";
|
|
2341
|
+
};
|
|
2342
|
+
};
|
|
2343
|
+
/**
|
|
2344
|
+
Correct the cursor style of increment and decrement buttons in Safari.
|
|
2345
|
+
|
|
2346
|
+
!!!Skipped as we don't support this logic!!!
|
|
2347
|
+
|
|
2348
|
+
::-webkit-inner-spin-buttonBase,
|
|
2349
|
+
::-webkit-outer-spin-buttonBase {
|
|
2350
|
+
height: auto;
|
|
2351
|
+
}
|
|
2352
|
+
*/
|
|
2353
|
+
/**
|
|
2354
|
+
1. Correct the odd appearance in Chrome and Safari.
|
|
2355
|
+
2. Correct the outline style in Safari.
|
|
2356
|
+
|
|
2357
|
+
!!!Skipped as we don't support this logic!!!
|
|
2358
|
+
|
|
2359
|
+
[type='search'] {
|
|
2360
|
+
-webkit-appearance: textfield;
|
|
2361
|
+
outline-offset: -2px;
|
|
2362
|
+
}
|
|
2363
|
+
*/
|
|
2364
|
+
/**
|
|
2365
|
+
Remove the inner padding in Chrome and Safari on macOS.
|
|
2366
|
+
|
|
2367
|
+
!!!Skipped as we don't support this logic!!!
|
|
2368
|
+
|
|
2369
|
+
::-webkit-search-decoration {
|
|
2370
|
+
-webkit-appearance: none;
|
|
2371
|
+
}
|
|
2372
|
+
*/
|
|
2373
|
+
/**
|
|
2374
|
+
1. Correct the inability to style clickable types in iOS and Safari.
|
|
2375
|
+
2. Change font properties to 'inherit' in Safari.
|
|
2376
|
+
|
|
2377
|
+
!!!Skipped as we don't support this logic!!!
|
|
2378
|
+
|
|
2379
|
+
::-webkit-file-upload-buttonBase {
|
|
2380
|
+
-webkit-appearance: buttonBase;
|
|
2381
|
+
font: inherit;
|
|
2382
|
+
}
|
|
2383
|
+
*/
|
|
2384
|
+
export declare const summary: {
|
|
2385
|
+
readonly borderTopColor: {
|
|
2386
|
+
readonly type: "keyword";
|
|
2387
|
+
readonly value: "currentColor";
|
|
2388
|
+
};
|
|
2389
|
+
readonly borderRightColor: {
|
|
2390
|
+
readonly type: "keyword";
|
|
2391
|
+
readonly value: "currentColor";
|
|
2392
|
+
};
|
|
2393
|
+
readonly borderBottomColor: {
|
|
2394
|
+
readonly type: "keyword";
|
|
2395
|
+
readonly value: "currentColor";
|
|
2396
|
+
};
|
|
2397
|
+
readonly borderLeftColor: {
|
|
2398
|
+
readonly type: "keyword";
|
|
2399
|
+
readonly value: "currentColor";
|
|
2400
|
+
};
|
|
2401
|
+
readonly borderTopWidth: {
|
|
2402
|
+
readonly type: "unit";
|
|
2403
|
+
readonly value: 1;
|
|
2404
|
+
readonly unit: "px";
|
|
2405
|
+
};
|
|
2406
|
+
readonly borderRightWidth: {
|
|
2407
|
+
readonly type: "unit";
|
|
2408
|
+
readonly value: 1;
|
|
2409
|
+
readonly unit: "px";
|
|
2410
|
+
};
|
|
2411
|
+
readonly borderBottomWidth: {
|
|
2412
|
+
readonly type: "unit";
|
|
2413
|
+
readonly value: 1;
|
|
2414
|
+
readonly unit: "px";
|
|
2415
|
+
};
|
|
2416
|
+
readonly borderLeftWidth: {
|
|
2417
|
+
readonly type: "unit";
|
|
2418
|
+
readonly value: 1;
|
|
2419
|
+
readonly unit: "px";
|
|
2420
|
+
};
|
|
2421
|
+
readonly display: {
|
|
2422
|
+
readonly type: "keyword";
|
|
2423
|
+
readonly value: "list-item";
|
|
2424
|
+
};
|
|
2425
|
+
readonly boxSizing: {
|
|
2426
|
+
readonly type: "keyword";
|
|
2427
|
+
readonly value: "border-box";
|
|
2428
|
+
};
|
|
2429
|
+
};
|