isomorfeus-preact 10.5.3 → 10.5.7
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.
- checksums.yaml +4 -4
- data/lib/isomorfeus/preact/config.rb +5 -18
- data/lib/isomorfeus/preact/imports.rb +0 -3
- data/lib/isomorfeus/preact_view_helper.rb +19 -19
- data/lib/isomorfeus/props/validator.rb +1 -1
- data/lib/isomorfeus/top_level.rb +3 -6
- data/lib/isomorfeus-preact.rb +1 -1
- data/lib/preact/version.rb +1 -1
- data/lib/preact.rb +17 -7
- data/node_modules/.package-lock.json +3 -11
- data/node_modules/csstype/README.md +4 -6
- data/node_modules/csstype/index.d.ts +541 -598
- data/node_modules/csstype/index.js.flow +47 -12
- data/node_modules/csstype/package.json +28 -26
- data/package.json +2 -3
- metadata +20 -35
- data/node_modules/preact-deep-force-update/.babelrc +0 -8
- data/node_modules/preact-deep-force-update/.eslintrc +0 -66
- data/node_modules/preact-deep-force-update/.npmignore +0 -2
- data/node_modules/preact-deep-force-update/.travis.yml +0 -3
- data/node_modules/preact-deep-force-update/LICENSE +0 -21
- data/node_modules/preact-deep-force-update/README.md +0 -53
- data/node_modules/preact-deep-force-update/dist/deep-force-update.js +0 -36
- data/node_modules/preact-deep-force-update/dist/deep-force-update.js.map +0 -1
- data/node_modules/preact-deep-force-update/dist/deep-force-update.min.js +0 -2
- data/node_modules/preact-deep-force-update/dist/deep-force-update.min.js.map +0 -1
- data/node_modules/preact-deep-force-update/karma.conf.js +0 -32
- data/node_modules/preact-deep-force-update/package.json +0 -80
- data/node_modules/preact-deep-force-update/rollup.config.js +0 -17
- data/node_modules/preact-deep-force-update/src/index.js +0 -27
- data/node_modules/preact-deep-force-update/test/index.js +0 -50
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 363f9c3c194571b11fdf9104bdde84985ca316d64f04af0590dd06372fa51a31
|
4
|
+
data.tar.gz: 9b63db87c2d1d6480df2381503dff665743a4e789cff5e00fa51c238f5f42814
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aedafa0eebda6332e25780787b08d842109c52cc369baea348e9d83c066554de9cb74d05c7fe8f86d68d6974a6b20d4805ff3ddcd94a18561b9ab4a44b51ab68
|
7
|
+
data.tar.gz: 0763a62f108c91781e8fe3475e9a0dbee3cd88daab647cb88e91a7fcd42048505292c557ff7fd0495e754582e0ccc10bc354f9e3b35aa17e9ee3863418c29a9b
|
@@ -87,22 +87,11 @@ module Isomorfeus
|
|
87
87
|
end
|
88
88
|
|
89
89
|
def force_render
|
90
|
-
|
91
|
-
if Isomorfeus.top_component
|
92
|
-
Preact.find_dom_node(Isomorfeus.top_component) if on_browser? || on_desktop? # if not mounted will raise
|
93
|
-
if `typeof Opal.global.deepForceUpdate === 'undefined'`
|
94
|
-
Isomorfeus.top_component.JS.forceUpdate()
|
95
|
-
else
|
96
|
-
`Opal.global.deepForceUpdate(#{Isomorfeus.top_component})`
|
97
|
-
end
|
98
|
-
end
|
99
|
-
rescue Exception => e
|
100
|
-
# TODO try mount first
|
101
|
-
# if it fails
|
102
|
-
`console.error("force_render failed'! Error: " + #{e.message} + "! Reloading page.")`
|
103
|
-
`location.reload()` if on_browser?
|
104
|
-
end
|
90
|
+
`Opal.Preact.deep_force_update(#{Isomorfeus.top_component})`
|
105
91
|
nil
|
92
|
+
rescue Exception => e
|
93
|
+
`console.error("force_render failed'! Error: " + #{e.message} + "! Reloading page.")`
|
94
|
+
`location.reload()` if on_browser?
|
106
95
|
end
|
107
96
|
end
|
108
97
|
|
@@ -142,14 +131,12 @@ module Isomorfeus
|
|
142
131
|
|
143
132
|
class << self
|
144
133
|
def raise_error(error: nil, error_class: nil, message: nil, stack: nil)
|
145
|
-
error_class = error.class
|
134
|
+
error_class = error.class if error
|
146
135
|
|
147
136
|
error_class = RuntimeError unless error_class
|
148
137
|
execution_environment = if on_browser? then 'on Browser'
|
149
138
|
elsif on_ssr? then 'in Server Side Rendering'
|
150
139
|
elsif on_server? then 'on Server'
|
151
|
-
elsif on_mobile? then 'on Mobile'
|
152
|
-
elsif on_database? then 'on Database'
|
153
140
|
else
|
154
141
|
'on Client'
|
155
142
|
end
|
@@ -17,9 +17,6 @@ module Isomorfeus
|
|
17
17
|
Isomorfeus.add_ssr_js_import('wouter-preact/static-location', 'staticLocationHook')
|
18
18
|
|
19
19
|
Isomorfeus.add_web_js_import('wouter-preact/use-location', 'locationHook')
|
20
|
-
if Isomorfeus.development?
|
21
|
-
Isomorfeus.add_web_js_import('preact-deep-force-update', 'deepForceUpdate')
|
22
|
-
end
|
23
20
|
|
24
21
|
if Dir.exist?(Isomorfeus.app_root)
|
25
22
|
Isomorfeus.add_common_ruby_import('isomorfeus_loader') if File.exist?(File.join(Isomorfeus.app_root, 'isomorfeus_loader.rb'))
|
@@ -16,12 +16,12 @@ module Isomorfeus
|
|
16
16
|
render_result
|
17
17
|
end
|
18
18
|
|
19
|
-
def mount_component(component_name, props = {}, asset_key = 'ssr.js')
|
19
|
+
def mount_component(component_name, props = {}, asset_key = 'ssr.js', skip_ssr: false, use_ssr: false)
|
20
20
|
@ssr_response_status = nil
|
21
21
|
@ssr_styles = nil
|
22
22
|
thread_id_asset = "#{Thread.current.object_id}#{asset_key}"
|
23
23
|
render_result = "<div data-iso-env=\"#{Isomorfeus.env}\" data-iso-root=\"#{component_name}\" data-iso-props='#{Oj.dump(props, mode: :strict)}'"
|
24
|
-
if Isomorfeus.server_side_rendering
|
24
|
+
if !skip_ssr && (Isomorfeus.server_side_rendering || use_ssr)
|
25
25
|
if Isomorfeus.development?
|
26
26
|
# always create a new context, effectively reloading code
|
27
27
|
# delete the existing context first, saves memory
|
@@ -31,22 +31,23 @@ module Isomorfeus
|
|
31
31
|
runtime.vm.delete_context(uuid)
|
32
32
|
end
|
33
33
|
begin
|
34
|
-
|
35
|
-
raise "#{self.class.name}: Asset not found: #{asset_key}" unless asset
|
36
|
-
asset_manager.transition(asset_key, asset)
|
37
|
-
Isomorfeus.ssr_contexts[thread_id_asset] = ExecJS.permissive_compile(asset.bundle)
|
34
|
+
init_speednode_context(asset_key, thread_id_asset)
|
38
35
|
rescue Exception => e
|
39
36
|
Isomorfeus.raise_error(message: "Server Side Rendering: Failed creating context for #{asset_key}. Error: #{e.message}", stack: e.backtrace)
|
40
37
|
end
|
41
38
|
else
|
42
|
-
# initialize speednode context
|
43
39
|
unless Isomorfeus.ssr_contexts.key?(thread_id_asset)
|
44
|
-
|
45
|
-
raise "#{self.class.name}: Asset not found: #{asset_key}" unless asset
|
46
|
-
asset_manager.transition(asset_key, asset)
|
47
|
-
Isomorfeus.ssr_contexts[thread_id_asset] = ExecJS.permissive_compile(asset.bundle)
|
40
|
+
init_speednode_context(asset_key, thread_id_asset)
|
48
41
|
end
|
49
42
|
end
|
43
|
+
|
44
|
+
# if location_host and scheme are given and if Transport is loaded, connect and then render,
|
45
|
+
# otherwise do not render because only one pass is required
|
46
|
+
ws_scheme = props[:location_scheme] == 'https:' ? 'wss:' : 'ws:'
|
47
|
+
location_host = props[:location_host] ? props[:location_host] : 'localhost'
|
48
|
+
api_ws_path = Isomorfeus.respond_to?(:api_websocket_path) ? Isomorfeus.api_websocket_path : ''
|
49
|
+
transport_ws_url = ws_scheme + location_host + api_ws_path
|
50
|
+
|
50
51
|
# build javascript for rendering first pass
|
51
52
|
# it will initialize buffers to guard against leaks, maybe caused by previous exceptions
|
52
53
|
javascript = <<~JAVASCRIPT
|
@@ -63,14 +64,6 @@ module Isomorfeus
|
|
63
64
|
global.Opal.Isomorfeus['$force_init!']();
|
64
65
|
global.Opal.Isomorfeus['$ssr_response_status='](200);
|
65
66
|
global.Opal.Isomorfeus.TopLevel['$ssr_route_path=']('#{props[:location]}');
|
66
|
-
JAVASCRIPT
|
67
|
-
# if location_host and scheme are given and if Transport is loaded, connect and then render,
|
68
|
-
# otherwise do not render because only one pass is required
|
69
|
-
ws_scheme = props[:location_scheme] == 'https:' ? 'wss:' : 'ws:'
|
70
|
-
location_host = props[:location_host] ? props[:location_host] : 'localhost'
|
71
|
-
api_ws_path = Isomorfeus.respond_to?(:api_websocket_path) ? Isomorfeus.api_websocket_path : ''
|
72
|
-
transport_ws_url = ws_scheme + location_host + api_ws_path
|
73
|
-
javascript << <<~JAVASCRIPT
|
74
67
|
let api_ws_path = '#{api_ws_path}';
|
75
68
|
let exception;
|
76
69
|
if (typeof global.Opal.Isomorfeus.Transport !== 'undefined' && api_ws_path !== '') {
|
@@ -176,5 +169,12 @@ module Isomorfeus
|
|
176
169
|
def component_cache
|
177
170
|
@_component_cache ||= Isomorfeus.component_cache_init_block.call
|
178
171
|
end
|
172
|
+
|
173
|
+
def init_speednode_context(asset_key, thread_id_asset)
|
174
|
+
asset = Isomorfeus.assets[asset_key]
|
175
|
+
raise "#{self.class.name}: Asset not found: #{asset_key}" unless asset
|
176
|
+
asset_manager.transition(asset_key, asset)
|
177
|
+
Isomorfeus.ssr_contexts[thread_id_asset] = ExecJS.permissive_compile(asset.bundle)
|
178
|
+
end
|
179
179
|
end
|
180
180
|
end
|
@@ -65,7 +65,7 @@ module Isomorfeus
|
|
65
65
|
def type!
|
66
66
|
return if @o[:allow_nil] && @v.nil?
|
67
67
|
if @o.key?(:class)
|
68
|
-
Isomorfeus.raise_error(message: "#{@c}: #{@p} class not #{@o[:class]}") unless @v.class == @o[:class]
|
68
|
+
Isomorfeus.raise_error(message: "#{@c}: #{@p} class is not #{@o[:class]}") unless @v.class == @o[:class]
|
69
69
|
elsif @o.key?(:is_a)
|
70
70
|
Isomorfeus.raise_error(message: "#{@c}: #{@p} is not a #{@o[:is_a]}") unless @v.is_a?(@o[:is_a])
|
71
71
|
elsif @o.key?(:type)
|
data/lib/isomorfeus/top_level.rb
CHANGED
@@ -89,12 +89,9 @@ module Isomorfeus
|
|
89
89
|
element = element_or_query
|
90
90
|
end
|
91
91
|
|
92
|
-
top =
|
93
|
-
|
94
|
-
|
95
|
-
Preact.render(Preact.create_element(component, props), element)
|
96
|
-
end
|
97
|
-
Isomorfeus.top_component = top if top
|
92
|
+
top = Preact.create_element(component, props)
|
93
|
+
hydrated ? Preact.hydrate(top, element) : Preact.render(top, element)
|
94
|
+
Isomorfeus.top_component = top
|
98
95
|
end
|
99
96
|
end
|
100
97
|
end
|
data/lib/isomorfeus-preact.rb
CHANGED
@@ -59,7 +59,7 @@ if RUBY_ENGINE == 'opal'
|
|
59
59
|
Isomorfeus.zeitwerk = Zeitwerk::Loader.new
|
60
60
|
|
61
61
|
Isomorfeus.zeitwerk.push_dir('isomorfeus_preact')
|
62
|
-
require_tree 'isomorfeus_preact', :
|
62
|
+
require_tree 'isomorfeus_preact', autoload: true
|
63
63
|
|
64
64
|
Isomorfeus.zeitwerk.push_dir('components')
|
65
65
|
else
|
data/lib/preact/version.rb
CHANGED
data/lib/preact.rb
CHANGED
@@ -213,6 +213,21 @@ module Preact
|
|
213
213
|
operabu[operabu.length - 1].push(Opal.global.Preact.createElement(component, native_props));
|
214
214
|
}
|
215
215
|
};
|
216
|
+
|
217
|
+
self.deep_force_update = function(component) {
|
218
|
+
if (component.forceUpdate) { component.forceUpdate(); }
|
219
|
+
if (component.__c) { self.deep_force_update(component.__c); }
|
220
|
+
else if (component.base) { self.update_components_from_dom(component.base); }
|
221
|
+
};
|
222
|
+
|
223
|
+
self.update_components_from_dom = function(node, fn) {
|
224
|
+
let children = node.childNodes;
|
225
|
+
for (let i=children && children.length; i--;) {
|
226
|
+
let child = children[i];
|
227
|
+
if (child.__c) { self.deep_force_update(child.__c); }
|
228
|
+
else { self.update_components_from_dom(child, fn); }
|
229
|
+
}
|
230
|
+
};
|
216
231
|
}
|
217
232
|
|
218
233
|
|
@@ -264,13 +279,8 @@ module Preact
|
|
264
279
|
Preact::Ref.new(`Opal.global.Preact.createRef()`)
|
265
280
|
end
|
266
281
|
|
267
|
-
def self.hydrate(native_preact_element, container_node, replace_node
|
268
|
-
|
269
|
-
if block_given?
|
270
|
-
`Opal.global.Preact.hydrate(native_preact_element, container_node, function() { block.$call() })`
|
271
|
-
else
|
272
|
-
`Opal.global.Preact.hydrate(native_preact_element, container_node)`
|
273
|
-
end
|
282
|
+
def self.hydrate(native_preact_element, container_node, replace_node)
|
283
|
+
`Opal.global.Preact.hydrate(native_preact_element, container_node)`
|
274
284
|
end
|
275
285
|
|
276
286
|
def self.location_hook(location)
|
@@ -36,9 +36,9 @@
|
|
36
36
|
}
|
37
37
|
},
|
38
38
|
"node_modules/csstype": {
|
39
|
-
"version": "3.0.
|
40
|
-
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.
|
41
|
-
"integrity": "sha512-
|
39
|
+
"version": "3.0.9",
|
40
|
+
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz",
|
41
|
+
"integrity": "sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw=="
|
42
42
|
},
|
43
43
|
"node_modules/error-stack-parser": {
|
44
44
|
"version": "2.0.6",
|
@@ -134,14 +134,6 @@
|
|
134
134
|
"url": "https://opencollective.com/preact"
|
135
135
|
}
|
136
136
|
},
|
137
|
-
"node_modules/preact-deep-force-update": {
|
138
|
-
"version": "0.1.0",
|
139
|
-
"resolved": "https://registry.npmjs.org/preact-deep-force-update/-/preact-deep-force-update-0.1.0.tgz",
|
140
|
-
"integrity": "sha1-IWazTsISfLZ1UsouD73Sdsh4bPw=",
|
141
|
-
"peerDependencies": {
|
142
|
-
"preact": "*"
|
143
|
-
}
|
144
|
-
},
|
145
137
|
"node_modules/preact-render-to-string": {
|
146
138
|
"version": "5.1.19",
|
147
139
|
"resolved": "https://registry.npmjs.org/preact-render-to-string/-/preact-render-to-string-5.1.19.tgz",
|
@@ -33,8 +33,6 @@ _Further examples below will be in TypeScript!_
|
|
33
33
|
|
34
34
|
```sh
|
35
35
|
$ npm install csstype
|
36
|
-
$ # or
|
37
|
-
$ yarn add csstype
|
38
36
|
```
|
39
37
|
|
40
38
|
## Table of content
|
@@ -267,7 +265,7 @@ _If you're using CSS Custom Properties you can step directly to step 3._
|
|
267
265
|
|
268
266
|
### Commands
|
269
267
|
|
270
|
-
- `
|
271
|
-
- `
|
272
|
-
- `
|
273
|
-
- `
|
268
|
+
- `npm run build` Generates typings and type checks them
|
269
|
+
- `npm run watch` Runs build on each save
|
270
|
+
- `npm run test` Runs the tests
|
271
|
+
- `npm run lazy` Type checks, lints and formats everything
|
@@ -6,7 +6,23 @@ export type PropertyValue<TValue> = TValue extends Array<infer AValue>
|
|
6
6
|
? TUnpacked
|
7
7
|
: TValue;
|
8
8
|
|
9
|
+
export type Fallback<T> = { [P in keyof T]: T[P] | T[P][] };
|
10
|
+
|
9
11
|
export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime = string & {}> {
|
12
|
+
/**
|
13
|
+
* The **`accent-color`** CSS property sets the color of the elements accent. An accent appears in elements such as `<input>` of `type="checkbox"`, or `type="radio"`.
|
14
|
+
*
|
15
|
+
* **Syntax**: `auto | <color>`
|
16
|
+
*
|
17
|
+
* **Initial value**: `auto`
|
18
|
+
*
|
19
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
20
|
+
* | :----: | :-----: | :----: | :----: | :-: |
|
21
|
+
* | **93** | **92** | No | **93** | No |
|
22
|
+
*
|
23
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/accent-color
|
24
|
+
*/
|
25
|
+
accentColor?: Property.AccentColor;
|
10
26
|
/**
|
11
27
|
* The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.
|
12
28
|
*
|
@@ -18,10 +34,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
18
34
|
*
|
19
35
|
* _Supported in Flex Layout_
|
20
36
|
*
|
21
|
-
* | Chrome | Firefox |
|
22
|
-
* | :------: | :-----: |
|
23
|
-
* | **29** | **28** |
|
24
|
-
* | 21 _-x-_ | |
|
37
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
38
|
+
* | :------: | :-----: | :-----: | :----: | :----: |
|
39
|
+
* | **29** | **28** | **9** | **12** | **11** |
|
40
|
+
* | 21 _-x-_ | | 7 _-x-_ | | |
|
25
41
|
*
|
26
42
|
* ---
|
27
43
|
*
|
@@ -252,7 +268,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
252
268
|
*
|
253
269
|
* | Chrome | Firefox | Safari | Edge | IE |
|
254
270
|
* | :----: | :-----: | :----: | :----: | :-: |
|
255
|
-
* | **88** |
|
271
|
+
* | **88** | **89** | **15** | **88** | No |
|
256
272
|
*
|
257
273
|
* @see https://developer.mozilla.org/docs/Web/CSS/aspect-ratio
|
258
274
|
*/
|
@@ -454,9 +470,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
454
470
|
*
|
455
471
|
* **Initial value**: `currentcolor`
|
456
472
|
*
|
457
|
-
* | Chrome | Firefox |
|
458
|
-
* | :----: | :-----: |
|
459
|
-
* | **87** | **66** |
|
473
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
474
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
475
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
460
476
|
*
|
461
477
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-color
|
462
478
|
*/
|
@@ -552,9 +568,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
552
568
|
*
|
553
569
|
* **Initial value**: `none`
|
554
570
|
*
|
555
|
-
* | Chrome | Firefox |
|
556
|
-
* | :----: | :-----: |
|
557
|
-
* | **87** | **66** |
|
571
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
572
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
573
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
558
574
|
*
|
559
575
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-style
|
560
576
|
*/
|
@@ -566,9 +582,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
566
582
|
*
|
567
583
|
* **Initial value**: `medium`
|
568
584
|
*
|
569
|
-
* | Chrome | Firefox |
|
570
|
-
* | :----: | :-----: |
|
571
|
-
* | **87** | **66** |
|
585
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
586
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
587
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
572
588
|
*
|
573
589
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-width
|
574
590
|
*/
|
@@ -668,7 +684,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
668
684
|
*
|
669
685
|
* | Chrome | Firefox | Safari | Edge | IE |
|
670
686
|
* | :----: | :-----: | :----: | :----: | :-: |
|
671
|
-
* | **89** | **66** |
|
687
|
+
* | **89** | **66** | **15** | **89** | No |
|
672
688
|
*
|
673
689
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius
|
674
690
|
*/
|
@@ -682,7 +698,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
682
698
|
*
|
683
699
|
* | Chrome | Firefox | Safari | Edge | IE |
|
684
700
|
* | :----: | :-----: | :----: | :----: | :-: |
|
685
|
-
* | **89** | **66** |
|
701
|
+
* | **89** | **66** | **15** | **89** | No |
|
686
702
|
*
|
687
703
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius
|
688
704
|
*/
|
@@ -764,9 +780,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
764
780
|
*
|
765
781
|
* **Initial value**: `currentcolor`
|
766
782
|
*
|
767
|
-
* | Chrome | Firefox |
|
768
|
-
* | :----: | :-----: |
|
769
|
-
* | **87** | **66** |
|
783
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
784
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
785
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
770
786
|
*
|
771
787
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color
|
772
788
|
*/
|
@@ -867,9 +883,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
867
883
|
*
|
868
884
|
* **Initial value**: `none`
|
869
885
|
*
|
870
|
-
* | Chrome | Firefox |
|
871
|
-
* | :----: | :-----: |
|
872
|
-
* | **87** | **66** |
|
886
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
887
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
888
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
873
889
|
*
|
874
890
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style
|
875
891
|
*/
|
@@ -881,9 +897,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
881
897
|
*
|
882
898
|
* **Initial value**: `medium`
|
883
899
|
*
|
884
|
-
* | Chrome | Firefox |
|
885
|
-
* | :----: | :-----: |
|
886
|
-
* | **87** | **66** |
|
900
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
901
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
902
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
887
903
|
*
|
888
904
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width
|
889
905
|
*/
|
@@ -995,7 +1011,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
995
1011
|
*
|
996
1012
|
* | Chrome | Firefox | Safari | Edge | IE |
|
997
1013
|
* | :----: | :-----: | :----: | :----: | :-: |
|
998
|
-
* | **89** | **66** |
|
1014
|
+
* | **89** | **66** | **15** | **89** | No |
|
999
1015
|
*
|
1000
1016
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius
|
1001
1017
|
*/
|
@@ -1009,7 +1025,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
1009
1025
|
*
|
1010
1026
|
* | Chrome | Firefox | Safari | Edge | IE |
|
1011
1027
|
* | :----: | :-----: | :----: | :----: | :-: |
|
1012
|
-
* | **89** | **66** |
|
1028
|
+
* | **89** | **66** | **15** | **89** | No |
|
1013
1029
|
*
|
1014
1030
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius
|
1015
1031
|
*/
|
@@ -1107,9 +1123,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
1107
1123
|
*
|
1108
1124
|
* **Initial value**: `slice`
|
1109
1125
|
*
|
1110
|
-
* | Chrome | Firefox |
|
1111
|
-
* | :----------: | :-----: |
|
1112
|
-
* | **22** _-x-_ | **32** | **
|
1126
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
1127
|
+
* | :----------: | :-----: | :---------: | :----------: | :-: |
|
1128
|
+
* | **22** _-x-_ | **32** | **7** _-x-_ | **79** _-x-_ | No |
|
1113
1129
|
*
|
1114
1130
|
* @see https://developer.mozilla.org/docs/Web/CSS/box-decoration-break
|
1115
1131
|
*/
|
@@ -1368,9 +1384,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
1368
1384
|
*
|
1369
1385
|
* _Supported in Flex Layout_
|
1370
1386
|
*
|
1371
|
-
* | Chrome | Firefox |
|
1372
|
-
* | :----: | :-----: |
|
1373
|
-
* | **84** | **63** |
|
1387
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
1388
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
1389
|
+
* | **84** | **63** | **14.1** | **84** | No |
|
1374
1390
|
*
|
1375
1391
|
* ---
|
1376
1392
|
*
|
@@ -1378,7 +1394,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
1378
1394
|
*
|
1379
1395
|
* | Chrome | Firefox | Safari | Edge | IE |
|
1380
1396
|
* | :--------------------: | :--------------------: | :----------------------: | :----: | :-: |
|
1381
|
-
* | **66** | **61** |
|
1397
|
+
* | **66** | **61** | **12** | **16** | No |
|
1382
1398
|
* | 57 _(grid-column-gap)_ | 52 _(grid-column-gap)_ | 10.1 _(grid-column-gap)_ | | |
|
1383
1399
|
*
|
1384
1400
|
* ---
|
@@ -1662,10 +1678,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
1662
1678
|
*
|
1663
1679
|
* **Initial value**: `0`
|
1664
1680
|
*
|
1665
|
-
* | Chrome | Firefox |
|
1666
|
-
* | :------: | :-----: |
|
1667
|
-
* | **29** | **20** |
|
1668
|
-
* | 22 _-x-_ | |
|
1681
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
1682
|
+
* | :------: | :-----: | :-----: | :----: | :----------------------: |
|
1683
|
+
* | **29** | **20** | **9** | **12** | **11** |
|
1684
|
+
* | 22 _-x-_ | | 7 _-x-_ | | 10 _(-ms-flex-positive)_ |
|
1669
1685
|
*
|
1670
1686
|
* @see https://developer.mozilla.org/docs/Web/CSS/flex-grow
|
1671
1687
|
*/
|
@@ -1804,7 +1820,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
1804
1820
|
/**
|
1805
1821
|
* The **`font-size-adjust`** CSS property sets the size of lower-case letters relative to the current font size (which defines the size of upper-case letters).
|
1806
1822
|
*
|
1807
|
-
* **Syntax**: `none | <number
|
1823
|
+
* **Syntax**: `none | [ ex-height | cap-height | ch-width | ic-width | ic-height ]? [ from-font | <number> ]`
|
1808
1824
|
*
|
1809
1825
|
* **Initial value**: `none`
|
1810
1826
|
*
|
@@ -1860,7 +1876,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
1860
1876
|
/**
|
1861
1877
|
* The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser.
|
1862
1878
|
*
|
1863
|
-
* **Syntax**: `none | [ weight || style ]`
|
1879
|
+
* **Syntax**: `none | [ weight || style || small-caps ]`
|
1864
1880
|
*
|
1865
1881
|
* **Initial value**: `weight style`
|
1866
1882
|
*
|
@@ -1906,9 +1922,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
1906
1922
|
*
|
1907
1923
|
* **Initial value**: `normal`
|
1908
1924
|
*
|
1909
|
-
* | Chrome | Firefox | Safari
|
1910
|
-
* | :----: | :-----: |
|
1911
|
-
* | **63** | **34** |
|
1925
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
1926
|
+
* | :----: | :-----: | :-----: | :----: | :-: |
|
1927
|
+
* | **63** | **34** | **9.1** | **79** | No |
|
1912
1928
|
*
|
1913
1929
|
* @see https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian
|
1914
1930
|
*/
|
@@ -1949,9 +1965,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
1949
1965
|
*
|
1950
1966
|
* **Initial value**: `normal`
|
1951
1967
|
*
|
1952
|
-
* | Chrome | Firefox | Safari
|
1953
|
-
* | :----: | :-----: |
|
1954
|
-
* | No | **34** |
|
1968
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
1969
|
+
* | :----: | :-----: | :-----: | :--: | :-: |
|
1970
|
+
* | No | **34** | **9.1** | No | No |
|
1955
1971
|
*
|
1956
1972
|
* @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position
|
1957
1973
|
*/
|
@@ -2174,10 +2190,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
2174
2190
|
*
|
2175
2191
|
* **Initial value**: `manual`
|
2176
2192
|
*
|
2177
|
-
* | Chrome | Firefox | Safari |
|
2178
|
-
* | :------: | :-----: | :-----------: |
|
2179
|
-
* | **55** | **43** | **5.1** _-x-_ | **
|
2180
|
-
* | 13 _-x-_ | 6 _-x-_ | |
|
2193
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
2194
|
+
* | :------: | :-----: | :-----------: | :----: | :----------: |
|
2195
|
+
* | **55** | **43** | **5.1** _-x-_ | **79** | **10** _-x-_ |
|
2196
|
+
* | 13 _-x-_ | 6 _-x-_ | | | |
|
2181
2197
|
*
|
2182
2198
|
* @see https://developer.mozilla.org/docs/Web/CSS/hyphens
|
2183
2199
|
*/
|
@@ -2251,9 +2267,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
2251
2267
|
*
|
2252
2268
|
* **Initial value**: `auto`
|
2253
2269
|
*
|
2254
|
-
* | Chrome | Firefox |
|
2255
|
-
* | :----: | :-----: |
|
2256
|
-
* | **87** | **66** |
|
2270
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
2271
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
2272
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
2257
2273
|
*
|
2258
2274
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset
|
2259
2275
|
*/
|
@@ -2265,9 +2281,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
2265
2281
|
*
|
2266
2282
|
* **Initial value**: `auto`
|
2267
2283
|
*
|
2268
|
-
* | Chrome | Firefox |
|
2269
|
-
* | :----: | :-----: |
|
2270
|
-
* | **87** | **63** |
|
2284
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
2285
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
2286
|
+
* | **87** | **63** | **14.1** | **87** | No |
|
2271
2287
|
*
|
2272
2288
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-block
|
2273
2289
|
*/
|
@@ -2279,9 +2295,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
2279
2295
|
*
|
2280
2296
|
* **Initial value**: `auto`
|
2281
2297
|
*
|
2282
|
-
* | Chrome | Firefox |
|
2283
|
-
* | :----: | :-----: |
|
2284
|
-
* | **87** | **63** |
|
2298
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
2299
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
2300
|
+
* | **87** | **63** | **14.1** | **87** | No |
|
2285
2301
|
*
|
2286
2302
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end
|
2287
2303
|
*/
|
@@ -2293,9 +2309,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
2293
2309
|
*
|
2294
2310
|
* **Initial value**: `auto`
|
2295
2311
|
*
|
2296
|
-
* | Chrome | Firefox |
|
2297
|
-
* | :----: | :-----: |
|
2298
|
-
* | **87** | **63** |
|
2312
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
2313
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
2314
|
+
* | **87** | **63** | **14.1** | **87** | No |
|
2299
2315
|
*
|
2300
2316
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start
|
2301
2317
|
*/
|
@@ -2307,9 +2323,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
2307
2323
|
*
|
2308
2324
|
* **Initial value**: `auto`
|
2309
2325
|
*
|
2310
|
-
* | Chrome | Firefox |
|
2311
|
-
* | :----: | :-----: |
|
2312
|
-
* | **87** | **63** |
|
2326
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
2327
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
2328
|
+
* | **87** | **63** | **14.1** | **87** | No |
|
2313
2329
|
*
|
2314
2330
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline
|
2315
2331
|
*/
|
@@ -2321,9 +2337,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
2321
2337
|
*
|
2322
2338
|
* **Initial value**: `auto`
|
2323
2339
|
*
|
2324
|
-
* | Chrome | Firefox |
|
2325
|
-
* | :----: | :-----: |
|
2326
|
-
* | **87** | **63** |
|
2340
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
2341
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
2342
|
+
* | **87** | **63** | **14.1** | **87** | No |
|
2327
2343
|
*
|
2328
2344
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
|
2329
2345
|
*/
|
@@ -2335,9 +2351,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
2335
2351
|
*
|
2336
2352
|
* **Initial value**: `auto`
|
2337
2353
|
*
|
2338
|
-
* | Chrome | Firefox |
|
2339
|
-
* | :----: | :-----: |
|
2340
|
-
* | **87** | **63** |
|
2354
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
2355
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
2356
|
+
* | **87** | **63** | **14.1** | **87** | No |
|
2341
2357
|
*
|
2342
2358
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
|
2343
2359
|
*/
|
@@ -2575,9 +2591,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
2575
2591
|
*
|
2576
2592
|
* **Initial value**: `0`
|
2577
2593
|
*
|
2578
|
-
* | Chrome | Firefox |
|
2579
|
-
* | :----: | :-----: |
|
2580
|
-
* | **87** | **66** |
|
2594
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
2595
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
2596
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
2581
2597
|
*
|
2582
2598
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-block
|
2583
2599
|
*/
|
@@ -2631,9 +2647,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
2631
2647
|
*
|
2632
2648
|
* **Initial value**: `0`
|
2633
2649
|
*
|
2634
|
-
* | Chrome | Firefox |
|
2635
|
-
* | :----: | :-----: |
|
2636
|
-
* | **87** | **66** |
|
2650
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
2651
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
2652
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
2637
2653
|
*
|
2638
2654
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
|
2639
2655
|
*/
|
@@ -2823,9 +2839,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
2823
2839
|
*
|
2824
2840
|
* **Initial value**: `none`
|
2825
2841
|
*
|
2826
|
-
* | Chrome | Firefox | Safari |
|
2827
|
-
* | :---------: | :-----: | :---------: |
|
2828
|
-
* | **1** _-x-_ | **53** | **4** _-x-_ |
|
2842
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
2843
|
+
* | :---------: | :-----: | :---------: | :---: | :-: |
|
2844
|
+
* | **1** _-x-_ | **53** | **4** _-x-_ | 16-79 | No |
|
2829
2845
|
*
|
2830
2846
|
* @see https://developer.mozilla.org/docs/Web/CSS/mask-image
|
2831
2847
|
*/
|
@@ -2865,9 +2881,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
2865
2881
|
*
|
2866
2882
|
* **Initial value**: `center`
|
2867
2883
|
*
|
2868
|
-
* | Chrome | Firefox | Safari |
|
2869
|
-
* | :---------: | :-----: | :-----------: |
|
2870
|
-
* | **1** _-x-_ | **53** | **3.
|
2884
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
2885
|
+
* | :---------: | :-----: | :-----------: | :---: | :-: |
|
2886
|
+
* | **1** _-x-_ | **53** | **3.1** _-x-_ | 18-79 | No |
|
2871
2887
|
*
|
2872
2888
|
* @see https://developer.mozilla.org/docs/Web/CSS/mask-position
|
2873
2889
|
*/
|
@@ -2879,9 +2895,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
2879
2895
|
*
|
2880
2896
|
* **Initial value**: `no-repeat`
|
2881
2897
|
*
|
2882
|
-
* | Chrome | Firefox | Safari |
|
2883
|
-
* | :---------: | :-----: | :-----------: |
|
2884
|
-
* | **1** _-x-_ | **53** | **3.
|
2898
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
2899
|
+
* | :---------: | :-----: | :-----------: | :---: | :-: |
|
2900
|
+
* | **1** _-x-_ | **53** | **3.1** _-x-_ | 18-79 | No |
|
2885
2901
|
*
|
2886
2902
|
* @see https://developer.mozilla.org/docs/Web/CSS/mask-repeat
|
2887
2903
|
*/
|
@@ -2893,9 +2909,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
2893
2909
|
*
|
2894
2910
|
* **Initial value**: `auto`
|
2895
2911
|
*
|
2896
|
-
* | Chrome | Firefox | Safari |
|
2897
|
-
* | :---------: | :-----: | :---------: |
|
2898
|
-
* | **4** _-x-_ | **53** | **4** _-x-_ |
|
2912
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
2913
|
+
* | :---------: | :-----: | :---------: | :---: | :-: |
|
2914
|
+
* | **4** _-x-_ | **53** | **4** _-x-_ | 18-79 | No |
|
2899
2915
|
*
|
2900
2916
|
* @see https://developer.mozilla.org/docs/Web/CSS/mask-size
|
2901
2917
|
*/
|
@@ -2907,9 +2923,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
2907
2923
|
*
|
2908
2924
|
* **Initial value**: `luminance`
|
2909
2925
|
*
|
2910
|
-
* | Chrome | Firefox | Safari
|
2911
|
-
* | :----: | :-----: |
|
2912
|
-
* | **24** | **35** | **
|
2926
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
2927
|
+
* | :----: | :-----: | :----: | :----: | :-: |
|
2928
|
+
* | **24** | **35** | **7** | **79** | No |
|
2913
2929
|
*
|
2914
2930
|
* @see https://developer.mozilla.org/docs/Web/CSS/mask-type
|
2915
2931
|
*/
|
@@ -2921,9 +2937,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
2921
2937
|
*
|
2922
2938
|
* **Initial value**: `normal`
|
2923
2939
|
*
|
2924
|
-
* | Chrome | Firefox |
|
2925
|
-
* | :----: | :-----: |
|
2926
|
-
* | n/a | n/a |
|
2940
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
2941
|
+
* | :----: | :-----: | :------: | :--: | :-: |
|
2942
|
+
* | n/a | n/a | **14.1** | No | No |
|
2927
2943
|
*
|
2928
2944
|
* @see https://developer.mozilla.org/docs/Web/CSS/math-style
|
2929
2945
|
*/
|
@@ -3376,7 +3392,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
3376
3392
|
*
|
3377
3393
|
* | Chrome | Firefox | Safari | Edge | IE |
|
3378
3394
|
* | :-------------: | :---------------: | :-------------: | :--------------: | :-------------------: |
|
3379
|
-
* | **23** | **49** |
|
3395
|
+
* | **23** | **49** | **7** | **18** | **5.5** _(word-wrap)_ |
|
3380
3396
|
* | 1 _(word-wrap)_ | 3.5 _(word-wrap)_ | 1 _(word-wrap)_ | 12 _(word-wrap)_ | |
|
3381
3397
|
*
|
3382
3398
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow-wrap
|
@@ -3473,9 +3489,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
3473
3489
|
*
|
3474
3490
|
* **Initial value**: `0`
|
3475
3491
|
*
|
3476
|
-
* | Chrome | Firefox |
|
3477
|
-
* | :----: | :-----: |
|
3478
|
-
* | **87** | **66** |
|
3492
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
3493
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
3494
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
3479
3495
|
*
|
3480
3496
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-block
|
3481
3497
|
*/
|
@@ -3529,9 +3545,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
3529
3545
|
*
|
3530
3546
|
* **Initial value**: `0`
|
3531
3547
|
*
|
3532
|
-
* | Chrome | Firefox |
|
3533
|
-
* | :----: | :-----: |
|
3534
|
-
* | **87** | **66** |
|
3548
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
3549
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
3550
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
3535
3551
|
*
|
3536
3552
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
|
3537
3553
|
*/
|
@@ -3701,24 +3717,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
3701
3717
|
*
|
3702
3718
|
* **Initial value**: `normal`
|
3703
3719
|
*
|
3704
|
-
* ---
|
3705
|
-
*
|
3706
|
-
* _Supported in Flex Layout_
|
3707
|
-
*
|
3708
3720
|
* | Chrome | Firefox | Safari | Edge | IE |
|
3709
3721
|
* | :----: | :-----: | :----: | :----: | :-: |
|
3710
3722
|
* | **59** | **45** | **9** | **79** | No |
|
3711
3723
|
*
|
3712
|
-
* ---
|
3713
|
-
*
|
3714
|
-
* _Supported in Grid Layout_
|
3715
|
-
*
|
3716
|
-
* | Chrome | Firefox | Safari | Edge | IE |
|
3717
|
-
* | :----: | :-----: | :----: | :----: | :-: |
|
3718
|
-
* | **59** | **53** | **11** | **79** | No |
|
3719
|
-
*
|
3720
|
-
* ---
|
3721
|
-
*
|
3722
3724
|
* @see https://developer.mozilla.org/docs/Web/CSS/place-content
|
3723
3725
|
*/
|
3724
3726
|
placeContent?: Property.PlaceContent;
|
@@ -3799,9 +3801,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
3799
3801
|
*
|
3800
3802
|
* **Initial value**: `none`
|
3801
3803
|
*
|
3802
|
-
* | Chrome | Firefox |
|
3803
|
-
* | :----: | :-----: |
|
3804
|
-
* | No | **72** |
|
3804
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
3805
|
+
* | :----: | :-----: | :------: | :--: | :-: |
|
3806
|
+
* | No | **72** | **14.1** | No | No |
|
3805
3807
|
*
|
3806
3808
|
* @see https://developer.mozilla.org/docs/Web/CSS/rotate
|
3807
3809
|
*/
|
@@ -3817,9 +3819,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
3817
3819
|
*
|
3818
3820
|
* _Supported in Flex Layout_
|
3819
3821
|
*
|
3820
|
-
* | Chrome | Firefox |
|
3821
|
-
* | :----: | :-----: |
|
3822
|
-
* | **84** | **63** |
|
3822
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
3823
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
3824
|
+
* | **84** | **63** | **14.1** | **84** | No |
|
3823
3825
|
*
|
3824
3826
|
* ---
|
3825
3827
|
*
|
@@ -3827,7 +3829,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
3827
3829
|
*
|
3828
3830
|
* | Chrome | Firefox | Safari | Edge | IE |
|
3829
3831
|
* | :-----------------: | :-----------------: | :-------------------: | :----: | :-: |
|
3830
|
-
* | **66** | **61** |
|
3832
|
+
* | **66** | **61** | **12** | **16** | No |
|
3831
3833
|
* | 57 _(grid-row-gap)_ | 52 _(grid-row-gap)_ | 10.1 _(grid-row-gap)_ | | |
|
3832
3834
|
*
|
3833
3835
|
* ---
|
@@ -3877,9 +3879,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
3877
3879
|
*
|
3878
3880
|
* **Initial value**: `none`
|
3879
3881
|
*
|
3880
|
-
* | Chrome | Firefox |
|
3881
|
-
* | :----: | :-----: |
|
3882
|
-
* | No | **72** |
|
3882
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
3883
|
+
* | :----: | :-----: | :------: | :--: | :-: |
|
3884
|
+
* | No | **72** | **14.1** | No | No |
|
3883
3885
|
*
|
3884
3886
|
* @see https://developer.mozilla.org/docs/Web/CSS/scale
|
3885
3887
|
*/
|
@@ -3905,9 +3907,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
3905
3907
|
*
|
3906
3908
|
* **Initial value**: `0`
|
3907
3909
|
*
|
3908
|
-
* | Chrome | Firefox |
|
3909
|
-
* | :----: | :-----: |
|
3910
|
-
* | **69** | **
|
3910
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
3911
|
+
* | :----: | :-----: | :-----------------------: | :----: | :-: |
|
3912
|
+
* | **69** | **90** | **14.1** | **79** | No |
|
3913
|
+
* | | | 11 _(scroll-snap-margin)_ | | |
|
3911
3914
|
*
|
3912
3915
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
|
3913
3916
|
*/
|
@@ -3919,9 +3922,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
3919
3922
|
*
|
3920
3923
|
* **Initial value**: `0`
|
3921
3924
|
*
|
3922
|
-
* | Chrome | Firefox |
|
3923
|
-
* | :----: | :-----: |
|
3924
|
-
* | **69** | **68** |
|
3925
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
3926
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
3927
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
3925
3928
|
*
|
3926
3929
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
|
3927
3930
|
*/
|
@@ -3933,9 +3936,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
3933
3936
|
*
|
3934
3937
|
* **Initial value**: `0`
|
3935
3938
|
*
|
3936
|
-
* | Chrome | Firefox |
|
3937
|
-
* | :----: | :-----: |
|
3938
|
-
* | **69** | **68** |
|
3939
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
3940
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
3941
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
3939
3942
|
*
|
3940
3943
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end
|
3941
3944
|
*/
|
@@ -3947,9 +3950,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
3947
3950
|
*
|
3948
3951
|
* **Initial value**: `0`
|
3949
3952
|
*
|
3950
|
-
* | Chrome | Firefox |
|
3951
|
-
* | :----: | :-----: |
|
3952
|
-
* | **69** | **68** |
|
3953
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
3954
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
3955
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
3953
3956
|
*
|
3954
3957
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start
|
3955
3958
|
*/
|
@@ -3961,9 +3964,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
3961
3964
|
*
|
3962
3965
|
* **Initial value**: `0`
|
3963
3966
|
*
|
3964
|
-
* | Chrome | Firefox |
|
3965
|
-
* | :----: | :-----: |
|
3966
|
-
* | **69** | **68** |
|
3967
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
3968
|
+
* | :----: | :-----: | :------------------------------: | :----: | :-: |
|
3969
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
3970
|
+
* | | | 11 _(scroll-snap-margin-bottom)_ | | |
|
3967
3971
|
*
|
3968
3972
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
|
3969
3973
|
*/
|
@@ -3975,9 +3979,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
3975
3979
|
*
|
3976
3980
|
* **Initial value**: `0`
|
3977
3981
|
*
|
3978
|
-
* | Chrome | Firefox |
|
3979
|
-
* | :----: | :-----: |
|
3980
|
-
* | No | **68** |
|
3982
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
3983
|
+
* | :----: | :-----: | :------: | :--: | :-: |
|
3984
|
+
* | No | **68** | **14.1** | No | No |
|
3981
3985
|
*
|
3982
3986
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
|
3983
3987
|
*/
|
@@ -3989,9 +3993,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
3989
3993
|
*
|
3990
3994
|
* **Initial value**: `0`
|
3991
3995
|
*
|
3992
|
-
* | Chrome | Firefox |
|
3993
|
-
* | :----: | :-----: |
|
3994
|
-
* | **69** | **68** |
|
3996
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
3997
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
3998
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
3995
3999
|
*
|
3996
4000
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end
|
3997
4001
|
*/
|
@@ -4003,9 +4007,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4003
4007
|
*
|
4004
4008
|
* **Initial value**: `0`
|
4005
4009
|
*
|
4006
|
-
* | Chrome | Firefox |
|
4007
|
-
* | :----: | :-----: |
|
4008
|
-
* | **69** | **68** |
|
4010
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
4011
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
4012
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
4009
4013
|
*
|
4010
4014
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start
|
4011
4015
|
*/
|
@@ -4017,9 +4021,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4017
4021
|
*
|
4018
4022
|
* **Initial value**: `0`
|
4019
4023
|
*
|
4020
|
-
* | Chrome | Firefox |
|
4021
|
-
* | :----: | :-----: |
|
4022
|
-
* | **69** | **68** |
|
4024
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
4025
|
+
* | :----: | :-----: | :----------------------------: | :----: | :-: |
|
4026
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
4027
|
+
* | | | 11 _(scroll-snap-margin-left)_ | | |
|
4023
4028
|
*
|
4024
4029
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
|
4025
4030
|
*/
|
@@ -4031,9 +4036,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4031
4036
|
*
|
4032
4037
|
* **Initial value**: `0`
|
4033
4038
|
*
|
4034
|
-
* | Chrome | Firefox |
|
4035
|
-
* | :----: | :-----: |
|
4036
|
-
* | **69** | **68** |
|
4039
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
4040
|
+
* | :----: | :-----: | :-----------------------------: | :----: | :-: |
|
4041
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
4042
|
+
* | | | 11 _(scroll-snap-margin-right)_ | | |
|
4037
4043
|
*
|
4038
4044
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
|
4039
4045
|
*/
|
@@ -4045,9 +4051,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4045
4051
|
*
|
4046
4052
|
* **Initial value**: `0`
|
4047
4053
|
*
|
4048
|
-
* | Chrome | Firefox |
|
4049
|
-
* | :----: | :-----: |
|
4050
|
-
* | **69** | **68** |
|
4054
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
4055
|
+
* | :----: | :-----: | :---------------------------: | :----: | :-: |
|
4056
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
4057
|
+
* | | | 11 _(scroll-snap-margin-top)_ | | |
|
4051
4058
|
*
|
4052
4059
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
|
4053
4060
|
*/
|
@@ -4075,7 +4082,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4075
4082
|
*
|
4076
4083
|
* | Chrome | Firefox | Safari | Edge | IE |
|
4077
4084
|
* | :----: | :-----: | :----: | :----: | :-: |
|
4078
|
-
* | **69** | **68** |
|
4085
|
+
* | **69** | **68** | **15** | **79** | No |
|
4079
4086
|
*
|
4080
4087
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block
|
4081
4088
|
*/
|
@@ -4089,7 +4096,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4089
4096
|
*
|
4090
4097
|
* | Chrome | Firefox | Safari | Edge | IE |
|
4091
4098
|
* | :----: | :-----: | :----: | :----: | :-: |
|
4092
|
-
* | **69** | **68** |
|
4099
|
+
* | **69** | **68** | **15** | **79** | No |
|
4093
4100
|
*
|
4094
4101
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end
|
4095
4102
|
*/
|
@@ -4103,7 +4110,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4103
4110
|
*
|
4104
4111
|
* | Chrome | Firefox | Safari | Edge | IE |
|
4105
4112
|
* | :----: | :-----: | :----: | :----: | :-: |
|
4106
|
-
* | **69** | **68** |
|
4113
|
+
* | **69** | **68** | **15** | **79** | No |
|
4107
4114
|
*
|
4108
4115
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start
|
4109
4116
|
*/
|
@@ -4131,7 +4138,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4131
4138
|
*
|
4132
4139
|
* | Chrome | Firefox | Safari | Edge | IE |
|
4133
4140
|
* | :----: | :-----: | :----: | :----: | :-: |
|
4134
|
-
* | **69** | **68** |
|
4141
|
+
* | **69** | **68** | **15** | **79** | No |
|
4135
4142
|
*
|
4136
4143
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline
|
4137
4144
|
*/
|
@@ -4145,7 +4152,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4145
4152
|
*
|
4146
4153
|
* | Chrome | Firefox | Safari | Edge | IE |
|
4147
4154
|
* | :----: | :-----: | :----: | :----: | :-: |
|
4148
|
-
* | **69** | **68** |
|
4155
|
+
* | **69** | **68** | **15** | **79** | No |
|
4149
4156
|
*
|
4150
4157
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end
|
4151
4158
|
*/
|
@@ -4159,7 +4166,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4159
4166
|
*
|
4160
4167
|
* | Chrome | Firefox | Safari | Edge | IE |
|
4161
4168
|
* | :----: | :-----: | :----: | :----: | :-: |
|
4162
|
-
* | **69** | **68** |
|
4169
|
+
* | **69** | **68** | **15** | **79** | No |
|
4163
4170
|
*
|
4164
4171
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start
|
4165
4172
|
*/
|
@@ -4227,9 +4234,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4227
4234
|
*
|
4228
4235
|
* **Initial value**: `0`
|
4229
4236
|
*
|
4230
|
-
* | Chrome | Firefox |
|
4231
|
-
* | :----: | :-----: |
|
4232
|
-
* | **69** |
|
4237
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
4238
|
+
* | :----: | :-----: | :-----------------------: | :----: | :-: |
|
4239
|
+
* | **69** | 68-90 | **14.1** | **79** | No |
|
4240
|
+
* | | | 11 _(scroll-snap-margin)_ | | |
|
4233
4241
|
*
|
4234
4242
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
|
4235
4243
|
*/
|
@@ -4241,9 +4249,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4241
4249
|
*
|
4242
4250
|
* **Initial value**: `0`
|
4243
4251
|
*
|
4244
|
-
* | Chrome | Firefox |
|
4245
|
-
* | :----: | :-----: |
|
4246
|
-
* | **69** | **68** |
|
4252
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
4253
|
+
* | :----: | :-----: | :------------------------------: | :----: | :-: |
|
4254
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
4255
|
+
* | | | 11 _(scroll-snap-margin-bottom)_ | | |
|
4247
4256
|
*
|
4248
4257
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
|
4249
4258
|
*/
|
@@ -4255,9 +4264,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4255
4264
|
*
|
4256
4265
|
* **Initial value**: `0`
|
4257
4266
|
*
|
4258
|
-
* | Chrome | Firefox |
|
4259
|
-
* | :----: | :-----: |
|
4260
|
-
* | **69** | **68** |
|
4267
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
4268
|
+
* | :----: | :-----: | :----------------------------: | :----: | :-: |
|
4269
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
4270
|
+
* | | | 11 _(scroll-snap-margin-left)_ | | |
|
4261
4271
|
*
|
4262
4272
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
|
4263
4273
|
*/
|
@@ -4269,9 +4279,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4269
4279
|
*
|
4270
4280
|
* **Initial value**: `0`
|
4271
4281
|
*
|
4272
|
-
* | Chrome | Firefox |
|
4273
|
-
* | :----: | :-----: |
|
4274
|
-
* | **69** | **68** |
|
4282
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
4283
|
+
* | :----: | :-----: | :-----------------------------: | :----: | :-: |
|
4284
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
4285
|
+
* | | | 11 _(scroll-snap-margin-right)_ | | |
|
4275
4286
|
*
|
4276
4287
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
|
4277
4288
|
*/
|
@@ -4283,9 +4294,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4283
4294
|
*
|
4284
4295
|
* **Initial value**: `0`
|
4285
4296
|
*
|
4286
|
-
* | Chrome | Firefox |
|
4287
|
-
* | :----: | :-----: |
|
4288
|
-
* | **69** | **68** |
|
4297
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
4298
|
+
* | :----: | :-----: | :---------------------------: | :----: | :-: |
|
4299
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
4300
|
+
* | | | 11 _(scroll-snap-margin-top)_ | | |
|
4289
4301
|
*
|
4290
4302
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
|
4291
4303
|
*/
|
@@ -4299,7 +4311,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4299
4311
|
*
|
4300
4312
|
* | Chrome | Firefox | Safari | Edge | IE |
|
4301
4313
|
* | :----: | :-----: | :----: | :----: | :-: |
|
4302
|
-
* | **75** | No |
|
4314
|
+
* | **75** | No | **15** | **79** | No |
|
4303
4315
|
*
|
4304
4316
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop
|
4305
4317
|
*/
|
@@ -4311,10 +4323,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4311
4323
|
*
|
4312
4324
|
* **Initial value**: `none`
|
4313
4325
|
*
|
4314
|
-
* | Chrome | Firefox | Safari |
|
4315
|
-
* | :----: | :-----: | :-----: |
|
4316
|
-
* | **69** | 39-68 | **11** | **
|
4317
|
-
* | | | 9 _-x-_ |
|
4326
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
4327
|
+
* | :----: | :-----: | :-----: | :----: | :----------: |
|
4328
|
+
* | **69** | 39-68 | **11** | **79** | **10** _-x-_ |
|
4329
|
+
* | | | 9 _-x-_ | | |
|
4318
4330
|
*
|
4319
4331
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type
|
4320
4332
|
*/
|
@@ -4322,7 +4334,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4322
4334
|
/**
|
4323
4335
|
* The **`scrollbar-color`** CSS property sets the color of the scrollbar track and thumb.
|
4324
4336
|
*
|
4325
|
-
* **Syntax**: `auto |
|
4337
|
+
* **Syntax**: `auto | <color>{2}`
|
4326
4338
|
*
|
4327
4339
|
* **Initial value**: `auto`
|
4328
4340
|
*
|
@@ -4336,7 +4348,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4336
4348
|
/**
|
4337
4349
|
* The **`scrollbar-gutter`** CSS property allows authors to reserve space for the scrollbar, preventing unwanted layout changes as the content grows while also avoiding unnecessary visuals when scrolling isn't needed.
|
4338
4350
|
*
|
4339
|
-
* **Syntax**: `auto |
|
4351
|
+
* **Syntax**: `auto | stable && both-edges?`
|
4340
4352
|
*
|
4341
4353
|
* **Initial value**: `auto`
|
4342
4354
|
*
|
@@ -4410,9 +4422,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4410
4422
|
*
|
4411
4423
|
* **Initial value**: `8`
|
4412
4424
|
*
|
4413
|
-
* | Chrome |
|
4414
|
-
* | :----: |
|
4415
|
-
* | **21** | **
|
4425
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
4426
|
+
* | :----: | :-----: | :----: | :----: | :-: |
|
4427
|
+
* | **21** | **91** | **7** | **79** | No |
|
4428
|
+
* | | 4 _-x-_ | | | |
|
4416
4429
|
*
|
4417
4430
|
* @see https://developer.mozilla.org/docs/Web/CSS/tab-size
|
4418
4431
|
*/
|
@@ -4514,7 +4527,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4514
4527
|
* | Chrome | Firefox | Safari | Edge | IE |
|
4515
4528
|
* | :----: | :-----: | :------: | :--: | :-: |
|
4516
4529
|
* | 57-64 | No | **12.1** | No | No |
|
4517
|
-
* | | |
|
4530
|
+
* | | | 7 _-x-_ | | |
|
4518
4531
|
*
|
4519
4532
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip
|
4520
4533
|
*/
|
@@ -4583,9 +4596,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4583
4596
|
*
|
4584
4597
|
* **Initial value**: `currentcolor`
|
4585
4598
|
*
|
4586
|
-
* | Chrome | Firefox | Safari
|
4587
|
-
* | :----------: | :-----: |
|
4588
|
-
* | **25** _-x-_ | **46** | **
|
4599
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
4600
|
+
* | :----------: | :-----: | :----: | :----------: | :-: |
|
4601
|
+
* | **25** _-x-_ | **46** | **7** | **79** _-x-_ | No |
|
4589
4602
|
*
|
4590
4603
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color
|
4591
4604
|
*/
|
@@ -4597,9 +4610,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4597
4610
|
*
|
4598
4611
|
* **Initial value**: `over right`
|
4599
4612
|
*
|
4600
|
-
* | Chrome | Firefox | Safari
|
4601
|
-
* | :----------: | :-----: |
|
4602
|
-
* | **25** _-x-_ | **46** | **
|
4613
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
4614
|
+
* | :----------: | :-----: | :----: | :----------: | :-: |
|
4615
|
+
* | **25** _-x-_ | **46** | **7** | **79** _-x-_ | No |
|
4603
4616
|
*
|
4604
4617
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position
|
4605
4618
|
*/
|
@@ -4611,9 +4624,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4611
4624
|
*
|
4612
4625
|
* **Initial value**: `none`
|
4613
4626
|
*
|
4614
|
-
* | Chrome | Firefox | Safari
|
4615
|
-
* | :----------: | :-----: |
|
4616
|
-
* | **25** _-x-_ | **46** | **
|
4627
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
4628
|
+
* | :----------: | :-----: | :----: | :----------: | :-: |
|
4629
|
+
* | **25** _-x-_ | **46** | **7** | **79** _-x-_ | No |
|
4617
4630
|
*
|
4618
4631
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style
|
4619
4632
|
*/
|
@@ -4915,9 +4928,9 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4915
4928
|
*
|
4916
4929
|
* **Initial value**: `none`
|
4917
4930
|
*
|
4918
|
-
* | Chrome | Firefox |
|
4919
|
-
* | :----: | :-----: |
|
4920
|
-
* | No | **72** |
|
4931
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
4932
|
+
* | :----: | :-----: | :------: | :--: | :-: |
|
4933
|
+
* | No | **72** | **14.1** | No | No |
|
4921
4934
|
*
|
4922
4935
|
* @see https://developer.mozilla.org/docs/Web/CSS/translate
|
4923
4936
|
*/
|
@@ -4943,10 +4956,10 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
4943
4956
|
*
|
4944
4957
|
* **Initial value**: `auto`
|
4945
4958
|
*
|
4946
|
-
* | Chrome | Firefox | Safari |
|
4947
|
-
* | :-----: | :-----: | :---------: |
|
4948
|
-
* | **54** | **69** | **3** _-x-_ |
|
4949
|
-
* | 1 _-x-_ | 1 _-x-_ | |
|
4959
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
4960
|
+
* | :-----: | :-----: | :---------: | :------: | :----------: |
|
4961
|
+
* | **54** | **69** | **3** _-x-_ | **79** | **10** _-x-_ |
|
4962
|
+
* | 1 _-x-_ | 1 _-x-_ | | 12 _-x-_ | |
|
4950
4963
|
*
|
4951
4964
|
* @see https://developer.mozilla.org/docs/Web/CSS/user-select
|
4952
4965
|
*/
|
@@ -5052,7 +5065,7 @@ export interface StandardLonghandProperties<TLength = (string & {}) | 0, TTime =
|
|
5052
5065
|
/**
|
5053
5066
|
* The **`word-spacing`** CSS property sets the length of space between words and between tags.
|
5054
5067
|
*
|
5055
|
-
* **Syntax**: `normal | <length
|
5068
|
+
* **Syntax**: `normal | <length>`
|
5056
5069
|
*
|
5057
5070
|
* **Initial value**: `normal`
|
5058
5071
|
*
|
@@ -5187,9 +5200,9 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
|
|
5187
5200
|
*
|
5188
5201
|
* **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
|
5189
5202
|
*
|
5190
|
-
* | Chrome | Firefox |
|
5191
|
-
* | :----: | :-----: |
|
5192
|
-
* | **87** | **66** |
|
5203
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
5204
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
5205
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
5193
5206
|
*
|
5194
5207
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block
|
5195
5208
|
*/
|
@@ -5260,9 +5273,9 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
|
|
5260
5273
|
*
|
5261
5274
|
* **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
|
5262
5275
|
*
|
5263
|
-
* | Chrome | Firefox |
|
5264
|
-
* | :----: | :-----: |
|
5265
|
-
* | **87** | **66** |
|
5276
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
5277
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
5278
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
5266
5279
|
*
|
5267
5280
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline
|
5268
5281
|
*/
|
@@ -5395,10 +5408,10 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
|
|
5395
5408
|
*
|
5396
5409
|
* **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
|
5397
5410
|
*
|
5398
|
-
* | Chrome | Firefox |
|
5399
|
-
* | :------: | :-----: |
|
5400
|
-
* | **29** | **20** |
|
5401
|
-
* | 21 _-x-_ | |
|
5411
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
5412
|
+
* | :------: | :-----: | :-----: | :----: | :------: |
|
5413
|
+
* | **29** | **20** | **9** | **12** | **11** |
|
5414
|
+
* | 21 _-x-_ | | 7 _-x-_ | | 10 _-x-_ |
|
5402
5415
|
*
|
5403
5416
|
* @see https://developer.mozilla.org/docs/Web/CSS/flex
|
5404
5417
|
*/
|
@@ -5408,10 +5421,10 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
|
|
5408
5421
|
*
|
5409
5422
|
* **Syntax**: `<'flex-direction'> || <'flex-wrap'>`
|
5410
5423
|
*
|
5411
|
-
* | Chrome | Firefox |
|
5412
|
-
* | :------: | :-----: |
|
5413
|
-
* | **29** | **28** |
|
5414
|
-
* | 21 _-x-_ | |
|
5424
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
5425
|
+
* | :------: | :-----: | :-----: | :----: | :----: |
|
5426
|
+
* | **29** | **28** | **9** | **12** | **11** |
|
5427
|
+
* | 21 _-x-_ | | 7 _-x-_ | | |
|
5415
5428
|
*
|
5416
5429
|
* @see https://developer.mozilla.org/docs/Web/CSS/flex-flow
|
5417
5430
|
*/
|
@@ -5437,9 +5450,9 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
|
|
5437
5450
|
*
|
5438
5451
|
* _Supported in Flex Layout_
|
5439
5452
|
*
|
5440
|
-
* | Chrome | Firefox |
|
5441
|
-
* | :----: | :-----: |
|
5442
|
-
* | **84** | **63** |
|
5453
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
5454
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
5455
|
+
* | **84** | **63** | **14.1** | **84** | No |
|
5443
5456
|
*
|
5444
5457
|
* ---
|
5445
5458
|
*
|
@@ -5558,9 +5571,9 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
|
|
5558
5571
|
*
|
5559
5572
|
* **Syntax**: `<mask-layer>#`
|
5560
5573
|
*
|
5561
|
-
* | Chrome | Firefox | Safari |
|
5562
|
-
* | :----: | :-----: | :-----: |
|
5563
|
-
* | **1** | **2** | **3.
|
5574
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
5575
|
+
* | :----: | :-----: | :-----: | :---: | :-: |
|
5576
|
+
* | **1** | **2** | **3.1** | 12-79 | No |
|
5564
5577
|
*
|
5565
5578
|
* @see https://developer.mozilla.org/docs/Web/CSS/mask
|
5566
5579
|
*/
|
@@ -5660,24 +5673,10 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
|
|
5660
5673
|
*
|
5661
5674
|
* **Syntax**: `<'align-items'> <'justify-items'>?`
|
5662
5675
|
*
|
5663
|
-
* ---
|
5664
|
-
*
|
5665
|
-
* _Supported in Flex Layout_
|
5666
|
-
*
|
5667
|
-
* | Chrome | Firefox | Safari | Edge | IE |
|
5668
|
-
* | :----: | :-----: | :----: | :----: | :-: |
|
5669
|
-
* | **59** | **45** | **11** | **79** | No |
|
5670
|
-
*
|
5671
|
-
* ---
|
5672
|
-
*
|
5673
|
-
* _Supported in Grid Layout_
|
5674
|
-
*
|
5675
5676
|
* | Chrome | Firefox | Safari | Edge | IE |
|
5676
5677
|
* | :----: | :-----: | :----: | :----: | :-: |
|
5677
5678
|
* | **59** | **45** | **11** | **79** | No |
|
5678
5679
|
*
|
5679
|
-
* ---
|
5680
|
-
*
|
5681
5680
|
* @see https://developer.mozilla.org/docs/Web/CSS/place-items
|
5682
5681
|
*/
|
5683
5682
|
placeItems?: Property.PlaceItems;
|
@@ -5686,24 +5685,10 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
|
|
5686
5685
|
*
|
5687
5686
|
* **Syntax**: `<'align-self'> <'justify-self'>?`
|
5688
5687
|
*
|
5689
|
-
* ---
|
5690
|
-
*
|
5691
|
-
* _Supported in Flex Layout_
|
5692
|
-
*
|
5693
|
-
* | Chrome | Firefox | Safari | Edge | IE |
|
5694
|
-
* | :----: | :-----: | :----: | :----: | :-: |
|
5695
|
-
* | **59** | **45** | **11** | **79** | No |
|
5696
|
-
*
|
5697
|
-
* ---
|
5698
|
-
*
|
5699
|
-
* _Supported in Grid Layout_
|
5700
|
-
*
|
5701
5688
|
* | Chrome | Firefox | Safari | Edge | IE |
|
5702
5689
|
* | :----: | :-----: | :----: | :----: | :-: |
|
5703
5690
|
* | **59** | **45** | **11** | **79** | No |
|
5704
5691
|
*
|
5705
|
-
* ---
|
5706
|
-
*
|
5707
5692
|
* @see https://developer.mozilla.org/docs/Web/CSS/place-self
|
5708
5693
|
*/
|
5709
5694
|
placeSelf?: Property.PlaceSelf;
|
@@ -5724,9 +5709,9 @@ export interface StandardShorthandProperties<TLength = (string & {}) | 0, TTime
|
|
5724
5709
|
*
|
5725
5710
|
* **Syntax**: `<'text-emphasis-style'> || <'text-emphasis-color'>`
|
5726
5711
|
*
|
5727
|
-
* | Chrome | Firefox | Safari
|
5728
|
-
* | :----------: | :-----: |
|
5729
|
-
* | **25** _-x-_ | **46** | **
|
5712
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
5713
|
+
* | :----------: | :-----: | :----: | :----------: | :-: |
|
5714
|
+
* | **25** _-x-_ | **46** | **7** | **79** _-x-_ | No |
|
5730
5715
|
*
|
5731
5716
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis
|
5732
5717
|
*/
|
@@ -8270,7 +8255,7 @@ export interface ObsoleteProperties<TLength = (string & {}) | 0, TTime = string
|
|
8270
8255
|
/**
|
8271
8256
|
* The **`-moz-force-broken-image-icon`** extended CSS property can be used to force the broken image icon to be shown even when a broken image has an `alt` attribute.
|
8272
8257
|
*
|
8273
|
-
* **Syntax**:
|
8258
|
+
* **Syntax**: `0 | 1`
|
8274
8259
|
*
|
8275
8260
|
* **Initial value**: `0`
|
8276
8261
|
*
|
@@ -8829,6 +8814,20 @@ export interface Properties<TLength = (string & {}) | 0, TTime = string & {}>
|
|
8829
8814
|
SvgProperties<TLength, TTime> {}
|
8830
8815
|
|
8831
8816
|
export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
|
8817
|
+
/**
|
8818
|
+
* The **`accent-color`** CSS property sets the color of the elements accent. An accent appears in elements such as `<input>` of `type="checkbox"`, or `type="radio"`.
|
8819
|
+
*
|
8820
|
+
* **Syntax**: `auto | <color>`
|
8821
|
+
*
|
8822
|
+
* **Initial value**: `auto`
|
8823
|
+
*
|
8824
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
8825
|
+
* | :----: | :-----: | :----: | :----: | :-: |
|
8826
|
+
* | **93** | **92** | No | **93** | No |
|
8827
|
+
*
|
8828
|
+
* @see https://developer.mozilla.org/docs/Web/CSS/accent-color
|
8829
|
+
*/
|
8830
|
+
"accent-color"?: Property.AccentColor;
|
8832
8831
|
/**
|
8833
8832
|
* The CSS **`align-content`** property sets the distribution of space between and around content items along a flexbox's cross-axis or a grid's block axis.
|
8834
8833
|
*
|
@@ -8840,10 +8839,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
8840
8839
|
*
|
8841
8840
|
* _Supported in Flex Layout_
|
8842
8841
|
*
|
8843
|
-
* | Chrome | Firefox |
|
8844
|
-
* | :------: | :-----: |
|
8845
|
-
* | **29** | **28** |
|
8846
|
-
* | 21 _-x-_ | |
|
8842
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
8843
|
+
* | :------: | :-----: | :-----: | :----: | :----: |
|
8844
|
+
* | **29** | **28** | **9** | **12** | **11** |
|
8845
|
+
* | 21 _-x-_ | | 7 _-x-_ | | |
|
8847
8846
|
*
|
8848
8847
|
* ---
|
8849
8848
|
*
|
@@ -9074,7 +9073,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
9074
9073
|
*
|
9075
9074
|
* | Chrome | Firefox | Safari | Edge | IE |
|
9076
9075
|
* | :----: | :-----: | :----: | :----: | :-: |
|
9077
|
-
* | **88** |
|
9076
|
+
* | **88** | **89** | **15** | **88** | No |
|
9078
9077
|
*
|
9079
9078
|
* @see https://developer.mozilla.org/docs/Web/CSS/aspect-ratio
|
9080
9079
|
*/
|
@@ -9276,9 +9275,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
9276
9275
|
*
|
9277
9276
|
* **Initial value**: `currentcolor`
|
9278
9277
|
*
|
9279
|
-
* | Chrome | Firefox |
|
9280
|
-
* | :----: | :-----: |
|
9281
|
-
* | **87** | **66** |
|
9278
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
9279
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
9280
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
9282
9281
|
*
|
9283
9282
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-color
|
9284
9283
|
*/
|
@@ -9374,9 +9373,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
9374
9373
|
*
|
9375
9374
|
* **Initial value**: `none`
|
9376
9375
|
*
|
9377
|
-
* | Chrome | Firefox |
|
9378
|
-
* | :----: | :-----: |
|
9379
|
-
* | **87** | **66** |
|
9376
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
9377
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
9378
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
9380
9379
|
*
|
9381
9380
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-style
|
9382
9381
|
*/
|
@@ -9388,9 +9387,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
9388
9387
|
*
|
9389
9388
|
* **Initial value**: `medium`
|
9390
9389
|
*
|
9391
|
-
* | Chrome | Firefox |
|
9392
|
-
* | :----: | :-----: |
|
9393
|
-
* | **87** | **66** |
|
9390
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
9391
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
9392
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
9394
9393
|
*
|
9395
9394
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block-width
|
9396
9395
|
*/
|
@@ -9490,7 +9489,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
9490
9489
|
*
|
9491
9490
|
* | Chrome | Firefox | Safari | Edge | IE |
|
9492
9491
|
* | :----: | :-----: | :----: | :----: | :-: |
|
9493
|
-
* | **89** | **66** |
|
9492
|
+
* | **89** | **66** | **15** | **89** | No |
|
9494
9493
|
*
|
9495
9494
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-end-end-radius
|
9496
9495
|
*/
|
@@ -9504,7 +9503,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
9504
9503
|
*
|
9505
9504
|
* | Chrome | Firefox | Safari | Edge | IE |
|
9506
9505
|
* | :----: | :-----: | :----: | :----: | :-: |
|
9507
|
-
* | **89** | **66** |
|
9506
|
+
* | **89** | **66** | **15** | **89** | No |
|
9508
9507
|
*
|
9509
9508
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-end-start-radius
|
9510
9509
|
*/
|
@@ -9586,9 +9585,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
9586
9585
|
*
|
9587
9586
|
* **Initial value**: `currentcolor`
|
9588
9587
|
*
|
9589
|
-
* | Chrome | Firefox |
|
9590
|
-
* | :----: | :-----: |
|
9591
|
-
* | **87** | **66** |
|
9588
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
9589
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
9590
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
9592
9591
|
*
|
9593
9592
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-color
|
9594
9593
|
*/
|
@@ -9689,9 +9688,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
9689
9688
|
*
|
9690
9689
|
* **Initial value**: `none`
|
9691
9690
|
*
|
9692
|
-
* | Chrome | Firefox |
|
9693
|
-
* | :----: | :-----: |
|
9694
|
-
* | **87** | **66** |
|
9691
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
9692
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
9693
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
9695
9694
|
*
|
9696
9695
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-style
|
9697
9696
|
*/
|
@@ -9703,9 +9702,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
9703
9702
|
*
|
9704
9703
|
* **Initial value**: `medium`
|
9705
9704
|
*
|
9706
|
-
* | Chrome | Firefox |
|
9707
|
-
* | :----: | :-----: |
|
9708
|
-
* | **87** | **66** |
|
9705
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
9706
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
9707
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
9709
9708
|
*
|
9710
9709
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline-width
|
9711
9710
|
*/
|
@@ -9817,7 +9816,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
9817
9816
|
*
|
9818
9817
|
* | Chrome | Firefox | Safari | Edge | IE |
|
9819
9818
|
* | :----: | :-----: | :----: | :----: | :-: |
|
9820
|
-
* | **89** | **66** |
|
9819
|
+
* | **89** | **66** | **15** | **89** | No |
|
9821
9820
|
*
|
9822
9821
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-start-end-radius
|
9823
9822
|
*/
|
@@ -9831,7 +9830,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
9831
9830
|
*
|
9832
9831
|
* | Chrome | Firefox | Safari | Edge | IE |
|
9833
9832
|
* | :----: | :-----: | :----: | :----: | :-: |
|
9834
|
-
* | **89** | **66** |
|
9833
|
+
* | **89** | **66** | **15** | **89** | No |
|
9835
9834
|
*
|
9836
9835
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-start-start-radius
|
9837
9836
|
*/
|
@@ -9929,9 +9928,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
9929
9928
|
*
|
9930
9929
|
* **Initial value**: `slice`
|
9931
9930
|
*
|
9932
|
-
* | Chrome | Firefox |
|
9933
|
-
* | :----------: | :-----: |
|
9934
|
-
* | **22** _-x-_ | **32** | **
|
9931
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
9932
|
+
* | :----------: | :-----: | :---------: | :----------: | :-: |
|
9933
|
+
* | **22** _-x-_ | **32** | **7** _-x-_ | **79** _-x-_ | No |
|
9935
9934
|
*
|
9936
9935
|
* @see https://developer.mozilla.org/docs/Web/CSS/box-decoration-break
|
9937
9936
|
*/
|
@@ -10190,9 +10189,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
10190
10189
|
*
|
10191
10190
|
* _Supported in Flex Layout_
|
10192
10191
|
*
|
10193
|
-
* | Chrome | Firefox |
|
10194
|
-
* | :----: | :-----: |
|
10195
|
-
* | **84** | **63** |
|
10192
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
10193
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
10194
|
+
* | **84** | **63** | **14.1** | **84** | No |
|
10196
10195
|
*
|
10197
10196
|
* ---
|
10198
10197
|
*
|
@@ -10200,7 +10199,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
10200
10199
|
*
|
10201
10200
|
* | Chrome | Firefox | Safari | Edge | IE |
|
10202
10201
|
* | :--------------------: | :--------------------: | :----------------------: | :----: | :-: |
|
10203
|
-
* | **66** | **61** |
|
10202
|
+
* | **66** | **61** | **12** | **16** | No |
|
10204
10203
|
* | 57 _(grid-column-gap)_ | 52 _(grid-column-gap)_ | 10.1 _(grid-column-gap)_ | | |
|
10205
10204
|
*
|
10206
10205
|
* ---
|
@@ -10484,10 +10483,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
10484
10483
|
*
|
10485
10484
|
* **Initial value**: `0`
|
10486
10485
|
*
|
10487
|
-
* | Chrome | Firefox |
|
10488
|
-
* | :------: | :-----: |
|
10489
|
-
* | **29** | **20** |
|
10490
|
-
* | 22 _-x-_ | |
|
10486
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
10487
|
+
* | :------: | :-----: | :-----: | :----: | :----------------------: |
|
10488
|
+
* | **29** | **20** | **9** | **12** | **11** |
|
10489
|
+
* | 22 _-x-_ | | 7 _-x-_ | | 10 _(-ms-flex-positive)_ |
|
10491
10490
|
*
|
10492
10491
|
* @see https://developer.mozilla.org/docs/Web/CSS/flex-grow
|
10493
10492
|
*/
|
@@ -10626,7 +10625,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
10626
10625
|
/**
|
10627
10626
|
* The **`font-size-adjust`** CSS property sets the size of lower-case letters relative to the current font size (which defines the size of upper-case letters).
|
10628
10627
|
*
|
10629
|
-
* **Syntax**: `none | <number
|
10628
|
+
* **Syntax**: `none | [ ex-height | cap-height | ch-width | ic-width | ic-height ]? [ from-font | <number> ]`
|
10630
10629
|
*
|
10631
10630
|
* **Initial value**: `none`
|
10632
10631
|
*
|
@@ -10682,7 +10681,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
10682
10681
|
/**
|
10683
10682
|
* The **`font-synthesis`** CSS property controls which missing typefaces, bold or italic, may be synthesized by the browser.
|
10684
10683
|
*
|
10685
|
-
* **Syntax**: `none | [ weight || style ]`
|
10684
|
+
* **Syntax**: `none | [ weight || style || small-caps ]`
|
10686
10685
|
*
|
10687
10686
|
* **Initial value**: `weight style`
|
10688
10687
|
*
|
@@ -10728,9 +10727,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
10728
10727
|
*
|
10729
10728
|
* **Initial value**: `normal`
|
10730
10729
|
*
|
10731
|
-
* | Chrome | Firefox | Safari
|
10732
|
-
* | :----: | :-----: |
|
10733
|
-
* | **63** | **34** |
|
10730
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
10731
|
+
* | :----: | :-----: | :-----: | :----: | :-: |
|
10732
|
+
* | **63** | **34** | **9.1** | **79** | No |
|
10734
10733
|
*
|
10735
10734
|
* @see https://developer.mozilla.org/docs/Web/CSS/font-variant-east-asian
|
10736
10735
|
*/
|
@@ -10771,9 +10770,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
10771
10770
|
*
|
10772
10771
|
* **Initial value**: `normal`
|
10773
10772
|
*
|
10774
|
-
* | Chrome | Firefox | Safari
|
10775
|
-
* | :----: | :-----: |
|
10776
|
-
* | No | **34** |
|
10773
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
10774
|
+
* | :----: | :-----: | :-----: | :--: | :-: |
|
10775
|
+
* | No | **34** | **9.1** | No | No |
|
10777
10776
|
*
|
10778
10777
|
* @see https://developer.mozilla.org/docs/Web/CSS/font-variant-position
|
10779
10778
|
*/
|
@@ -10996,10 +10995,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
10996
10995
|
*
|
10997
10996
|
* **Initial value**: `manual`
|
10998
10997
|
*
|
10999
|
-
* | Chrome | Firefox | Safari |
|
11000
|
-
* | :------: | :-----: | :-----------: |
|
11001
|
-
* | **55** | **43** | **5.1** _-x-_ | **
|
11002
|
-
* | 13 _-x-_ | 6 _-x-_ | |
|
10998
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
10999
|
+
* | :------: | :-----: | :-----------: | :----: | :----------: |
|
11000
|
+
* | **55** | **43** | **5.1** _-x-_ | **79** | **10** _-x-_ |
|
11001
|
+
* | 13 _-x-_ | 6 _-x-_ | | | |
|
11003
11002
|
*
|
11004
11003
|
* @see https://developer.mozilla.org/docs/Web/CSS/hyphens
|
11005
11004
|
*/
|
@@ -11073,9 +11072,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
11073
11072
|
*
|
11074
11073
|
* **Initial value**: `auto`
|
11075
11074
|
*
|
11076
|
-
* | Chrome | Firefox |
|
11077
|
-
* | :----: | :-----: |
|
11078
|
-
* | **87** | **66** |
|
11075
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
11076
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
11077
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
11079
11078
|
*
|
11080
11079
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset
|
11081
11080
|
*/
|
@@ -11087,9 +11086,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
11087
11086
|
*
|
11088
11087
|
* **Initial value**: `auto`
|
11089
11088
|
*
|
11090
|
-
* | Chrome | Firefox |
|
11091
|
-
* | :----: | :-----: |
|
11092
|
-
* | **87** | **63** |
|
11089
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
11090
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
11091
|
+
* | **87** | **63** | **14.1** | **87** | No |
|
11093
11092
|
*
|
11094
11093
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-block
|
11095
11094
|
*/
|
@@ -11101,9 +11100,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
11101
11100
|
*
|
11102
11101
|
* **Initial value**: `auto`
|
11103
11102
|
*
|
11104
|
-
* | Chrome | Firefox |
|
11105
|
-
* | :----: | :-----: |
|
11106
|
-
* | **87** | **63** |
|
11103
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
11104
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
11105
|
+
* | **87** | **63** | **14.1** | **87** | No |
|
11107
11106
|
*
|
11108
11107
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-block-end
|
11109
11108
|
*/
|
@@ -11115,9 +11114,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
11115
11114
|
*
|
11116
11115
|
* **Initial value**: `auto`
|
11117
11116
|
*
|
11118
|
-
* | Chrome | Firefox |
|
11119
|
-
* | :----: | :-----: |
|
11120
|
-
* | **87** | **63** |
|
11117
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
11118
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
11119
|
+
* | **87** | **63** | **14.1** | **87** | No |
|
11121
11120
|
*
|
11122
11121
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-block-start
|
11123
11122
|
*/
|
@@ -11129,9 +11128,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
11129
11128
|
*
|
11130
11129
|
* **Initial value**: `auto`
|
11131
11130
|
*
|
11132
|
-
* | Chrome | Firefox |
|
11133
|
-
* | :----: | :-----: |
|
11134
|
-
* | **87** | **63** |
|
11131
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
11132
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
11133
|
+
* | **87** | **63** | **14.1** | **87** | No |
|
11135
11134
|
*
|
11136
11135
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline
|
11137
11136
|
*/
|
@@ -11143,9 +11142,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
11143
11142
|
*
|
11144
11143
|
* **Initial value**: `auto`
|
11145
11144
|
*
|
11146
|
-
* | Chrome | Firefox |
|
11147
|
-
* | :----: | :-----: |
|
11148
|
-
* | **87** | **63** |
|
11145
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
11146
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
11147
|
+
* | **87** | **63** | **14.1** | **87** | No |
|
11149
11148
|
*
|
11150
11149
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-end
|
11151
11150
|
*/
|
@@ -11157,9 +11156,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
11157
11156
|
*
|
11158
11157
|
* **Initial value**: `auto`
|
11159
11158
|
*
|
11160
|
-
* | Chrome | Firefox |
|
11161
|
-
* | :----: | :-----: |
|
11162
|
-
* | **87** | **63** |
|
11159
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
11160
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
11161
|
+
* | **87** | **63** | **14.1** | **87** | No |
|
11163
11162
|
*
|
11164
11163
|
* @see https://developer.mozilla.org/docs/Web/CSS/inset-inline-start
|
11165
11164
|
*/
|
@@ -11397,9 +11396,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
11397
11396
|
*
|
11398
11397
|
* **Initial value**: `0`
|
11399
11398
|
*
|
11400
|
-
* | Chrome | Firefox |
|
11401
|
-
* | :----: | :-----: |
|
11402
|
-
* | **87** | **66** |
|
11399
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
11400
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
11401
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
11403
11402
|
*
|
11404
11403
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-block
|
11405
11404
|
*/
|
@@ -11453,9 +11452,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
11453
11452
|
*
|
11454
11453
|
* **Initial value**: `0`
|
11455
11454
|
*
|
11456
|
-
* | Chrome | Firefox |
|
11457
|
-
* | :----: | :-----: |
|
11458
|
-
* | **87** | **66** |
|
11455
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
11456
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
11457
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
11459
11458
|
*
|
11460
11459
|
* @see https://developer.mozilla.org/docs/Web/CSS/margin-inline
|
11461
11460
|
*/
|
@@ -11645,9 +11644,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
11645
11644
|
*
|
11646
11645
|
* **Initial value**: `none`
|
11647
11646
|
*
|
11648
|
-
* | Chrome | Firefox | Safari |
|
11649
|
-
* | :---------: | :-----: | :---------: |
|
11650
|
-
* | **1** _-x-_ | **53** | **4** _-x-_ |
|
11647
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
11648
|
+
* | :---------: | :-----: | :---------: | :---: | :-: |
|
11649
|
+
* | **1** _-x-_ | **53** | **4** _-x-_ | 16-79 | No |
|
11651
11650
|
*
|
11652
11651
|
* @see https://developer.mozilla.org/docs/Web/CSS/mask-image
|
11653
11652
|
*/
|
@@ -11687,9 +11686,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
11687
11686
|
*
|
11688
11687
|
* **Initial value**: `center`
|
11689
11688
|
*
|
11690
|
-
* | Chrome | Firefox | Safari |
|
11691
|
-
* | :---------: | :-----: | :-----------: |
|
11692
|
-
* | **1** _-x-_ | **53** | **3.
|
11689
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
11690
|
+
* | :---------: | :-----: | :-----------: | :---: | :-: |
|
11691
|
+
* | **1** _-x-_ | **53** | **3.1** _-x-_ | 18-79 | No |
|
11693
11692
|
*
|
11694
11693
|
* @see https://developer.mozilla.org/docs/Web/CSS/mask-position
|
11695
11694
|
*/
|
@@ -11701,9 +11700,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
11701
11700
|
*
|
11702
11701
|
* **Initial value**: `no-repeat`
|
11703
11702
|
*
|
11704
|
-
* | Chrome | Firefox | Safari |
|
11705
|
-
* | :---------: | :-----: | :-----------: |
|
11706
|
-
* | **1** _-x-_ | **53** | **3.
|
11703
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
11704
|
+
* | :---------: | :-----: | :-----------: | :---: | :-: |
|
11705
|
+
* | **1** _-x-_ | **53** | **3.1** _-x-_ | 18-79 | No |
|
11707
11706
|
*
|
11708
11707
|
* @see https://developer.mozilla.org/docs/Web/CSS/mask-repeat
|
11709
11708
|
*/
|
@@ -11715,9 +11714,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
11715
11714
|
*
|
11716
11715
|
* **Initial value**: `auto`
|
11717
11716
|
*
|
11718
|
-
* | Chrome | Firefox | Safari |
|
11719
|
-
* | :---------: | :-----: | :---------: |
|
11720
|
-
* | **4** _-x-_ | **53** | **4** _-x-_ |
|
11717
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
11718
|
+
* | :---------: | :-----: | :---------: | :---: | :-: |
|
11719
|
+
* | **4** _-x-_ | **53** | **4** _-x-_ | 18-79 | No |
|
11721
11720
|
*
|
11722
11721
|
* @see https://developer.mozilla.org/docs/Web/CSS/mask-size
|
11723
11722
|
*/
|
@@ -11729,9 +11728,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
11729
11728
|
*
|
11730
11729
|
* **Initial value**: `luminance`
|
11731
11730
|
*
|
11732
|
-
* | Chrome | Firefox | Safari
|
11733
|
-
* | :----: | :-----: |
|
11734
|
-
* | **24** | **35** | **
|
11731
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
11732
|
+
* | :----: | :-----: | :----: | :----: | :-: |
|
11733
|
+
* | **24** | **35** | **7** | **79** | No |
|
11735
11734
|
*
|
11736
11735
|
* @see https://developer.mozilla.org/docs/Web/CSS/mask-type
|
11737
11736
|
*/
|
@@ -11743,9 +11742,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
11743
11742
|
*
|
11744
11743
|
* **Initial value**: `normal`
|
11745
11744
|
*
|
11746
|
-
* | Chrome | Firefox |
|
11747
|
-
* | :----: | :-----: |
|
11748
|
-
* | n/a | n/a |
|
11745
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
11746
|
+
* | :----: | :-----: | :------: | :--: | :-: |
|
11747
|
+
* | n/a | n/a | **14.1** | No | No |
|
11749
11748
|
*
|
11750
11749
|
* @see https://developer.mozilla.org/docs/Web/CSS/math-style
|
11751
11750
|
*/
|
@@ -12198,7 +12197,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12198
12197
|
*
|
12199
12198
|
* | Chrome | Firefox | Safari | Edge | IE |
|
12200
12199
|
* | :-------------: | :---------------: | :-------------: | :--------------: | :-------------------: |
|
12201
|
-
* | **23** | **49** |
|
12200
|
+
* | **23** | **49** | **7** | **18** | **5.5** _(word-wrap)_ |
|
12202
12201
|
* | 1 _(word-wrap)_ | 3.5 _(word-wrap)_ | 1 _(word-wrap)_ | 12 _(word-wrap)_ | |
|
12203
12202
|
*
|
12204
12203
|
* @see https://developer.mozilla.org/docs/Web/CSS/overflow-wrap
|
@@ -12295,9 +12294,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12295
12294
|
*
|
12296
12295
|
* **Initial value**: `0`
|
12297
12296
|
*
|
12298
|
-
* | Chrome | Firefox |
|
12299
|
-
* | :----: | :-----: |
|
12300
|
-
* | **87** | **66** |
|
12297
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
12298
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
12299
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
12301
12300
|
*
|
12302
12301
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-block
|
12303
12302
|
*/
|
@@ -12351,9 +12350,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12351
12350
|
*
|
12352
12351
|
* **Initial value**: `0`
|
12353
12352
|
*
|
12354
|
-
* | Chrome | Firefox |
|
12355
|
-
* | :----: | :-----: |
|
12356
|
-
* | **87** | **66** |
|
12353
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
12354
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
12355
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
12357
12356
|
*
|
12358
12357
|
* @see https://developer.mozilla.org/docs/Web/CSS/padding-inline
|
12359
12358
|
*/
|
@@ -12523,24 +12522,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12523
12522
|
*
|
12524
12523
|
* **Initial value**: `normal`
|
12525
12524
|
*
|
12526
|
-
* ---
|
12527
|
-
*
|
12528
|
-
* _Supported in Flex Layout_
|
12529
|
-
*
|
12530
12525
|
* | Chrome | Firefox | Safari | Edge | IE |
|
12531
12526
|
* | :----: | :-----: | :----: | :----: | :-: |
|
12532
12527
|
* | **59** | **45** | **9** | **79** | No |
|
12533
12528
|
*
|
12534
|
-
* ---
|
12535
|
-
*
|
12536
|
-
* _Supported in Grid Layout_
|
12537
|
-
*
|
12538
|
-
* | Chrome | Firefox | Safari | Edge | IE |
|
12539
|
-
* | :----: | :-----: | :----: | :----: | :-: |
|
12540
|
-
* | **59** | **53** | **11** | **79** | No |
|
12541
|
-
*
|
12542
|
-
* ---
|
12543
|
-
*
|
12544
12529
|
* @see https://developer.mozilla.org/docs/Web/CSS/place-content
|
12545
12530
|
*/
|
12546
12531
|
"place-content"?: Property.PlaceContent;
|
@@ -12621,9 +12606,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12621
12606
|
*
|
12622
12607
|
* **Initial value**: `none`
|
12623
12608
|
*
|
12624
|
-
* | Chrome | Firefox |
|
12625
|
-
* | :----: | :-----: |
|
12626
|
-
* | No | **72** |
|
12609
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
12610
|
+
* | :----: | :-----: | :------: | :--: | :-: |
|
12611
|
+
* | No | **72** | **14.1** | No | No |
|
12627
12612
|
*
|
12628
12613
|
* @see https://developer.mozilla.org/docs/Web/CSS/rotate
|
12629
12614
|
*/
|
@@ -12639,9 +12624,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12639
12624
|
*
|
12640
12625
|
* _Supported in Flex Layout_
|
12641
12626
|
*
|
12642
|
-
* | Chrome | Firefox |
|
12643
|
-
* | :----: | :-----: |
|
12644
|
-
* | **84** | **63** |
|
12627
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
12628
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
12629
|
+
* | **84** | **63** | **14.1** | **84** | No |
|
12645
12630
|
*
|
12646
12631
|
* ---
|
12647
12632
|
*
|
@@ -12649,7 +12634,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12649
12634
|
*
|
12650
12635
|
* | Chrome | Firefox | Safari | Edge | IE |
|
12651
12636
|
* | :-----------------: | :-----------------: | :-------------------: | :----: | :-: |
|
12652
|
-
* | **66** | **61** |
|
12637
|
+
* | **66** | **61** | **12** | **16** | No |
|
12653
12638
|
* | 57 _(grid-row-gap)_ | 52 _(grid-row-gap)_ | 10.1 _(grid-row-gap)_ | | |
|
12654
12639
|
*
|
12655
12640
|
* ---
|
@@ -12699,9 +12684,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12699
12684
|
*
|
12700
12685
|
* **Initial value**: `none`
|
12701
12686
|
*
|
12702
|
-
* | Chrome | Firefox |
|
12703
|
-
* | :----: | :-----: |
|
12704
|
-
* | No | **72** |
|
12687
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
12688
|
+
* | :----: | :-----: | :------: | :--: | :-: |
|
12689
|
+
* | No | **72** | **14.1** | No | No |
|
12705
12690
|
*
|
12706
12691
|
* @see https://developer.mozilla.org/docs/Web/CSS/scale
|
12707
12692
|
*/
|
@@ -12727,9 +12712,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12727
12712
|
*
|
12728
12713
|
* **Initial value**: `0`
|
12729
12714
|
*
|
12730
|
-
* | Chrome | Firefox |
|
12731
|
-
* | :----: | :-----: |
|
12732
|
-
* | **69** | **
|
12715
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
12716
|
+
* | :----: | :-----: | :-----------------------: | :----: | :-: |
|
12717
|
+
* | **69** | **90** | **14.1** | **79** | No |
|
12718
|
+
* | | | 11 _(scroll-snap-margin)_ | | |
|
12733
12719
|
*
|
12734
12720
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
|
12735
12721
|
*/
|
@@ -12741,9 +12727,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12741
12727
|
*
|
12742
12728
|
* **Initial value**: `0`
|
12743
12729
|
*
|
12744
|
-
* | Chrome | Firefox |
|
12745
|
-
* | :----: | :-----: |
|
12746
|
-
* | **69** | **68** |
|
12730
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
12731
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
12732
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
12747
12733
|
*
|
12748
12734
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block
|
12749
12735
|
*/
|
@@ -12755,9 +12741,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12755
12741
|
*
|
12756
12742
|
* **Initial value**: `0`
|
12757
12743
|
*
|
12758
|
-
* | Chrome | Firefox |
|
12759
|
-
* | :----: | :-----: |
|
12760
|
-
* | **69** | **68** |
|
12744
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
12745
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
12746
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
12761
12747
|
*
|
12762
12748
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-end
|
12763
12749
|
*/
|
@@ -12769,9 +12755,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12769
12755
|
*
|
12770
12756
|
* **Initial value**: `0`
|
12771
12757
|
*
|
12772
|
-
* | Chrome | Firefox |
|
12773
|
-
* | :----: | :-----: |
|
12774
|
-
* | **69** | **68** |
|
12758
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
12759
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
12760
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
12775
12761
|
*
|
12776
12762
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-block-start
|
12777
12763
|
*/
|
@@ -12783,9 +12769,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12783
12769
|
*
|
12784
12770
|
* **Initial value**: `0`
|
12785
12771
|
*
|
12786
|
-
* | Chrome | Firefox |
|
12787
|
-
* | :----: | :-----: |
|
12788
|
-
* | **69** | **68** |
|
12772
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
12773
|
+
* | :----: | :-----: | :------------------------------: | :----: | :-: |
|
12774
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
12775
|
+
* | | | 11 _(scroll-snap-margin-bottom)_ | | |
|
12789
12776
|
*
|
12790
12777
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
|
12791
12778
|
*/
|
@@ -12797,9 +12784,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12797
12784
|
*
|
12798
12785
|
* **Initial value**: `0`
|
12799
12786
|
*
|
12800
|
-
* | Chrome | Firefox |
|
12801
|
-
* | :----: | :-----: |
|
12802
|
-
* | No | **68** |
|
12787
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
12788
|
+
* | :----: | :-----: | :------: | :--: | :-: |
|
12789
|
+
* | No | **68** | **14.1** | No | No |
|
12803
12790
|
*
|
12804
12791
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline
|
12805
12792
|
*/
|
@@ -12811,9 +12798,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12811
12798
|
*
|
12812
12799
|
* **Initial value**: `0`
|
12813
12800
|
*
|
12814
|
-
* | Chrome | Firefox |
|
12815
|
-
* | :----: | :-----: |
|
12816
|
-
* | **69** | **68** |
|
12801
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
12802
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
12803
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
12817
12804
|
*
|
12818
12805
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-end
|
12819
12806
|
*/
|
@@ -12825,9 +12812,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12825
12812
|
*
|
12826
12813
|
* **Initial value**: `0`
|
12827
12814
|
*
|
12828
|
-
* | Chrome | Firefox |
|
12829
|
-
* | :----: | :-----: |
|
12830
|
-
* | **69** | **68** |
|
12815
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
12816
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
12817
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
12831
12818
|
*
|
12832
12819
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-inline-start
|
12833
12820
|
*/
|
@@ -12839,9 +12826,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12839
12826
|
*
|
12840
12827
|
* **Initial value**: `0`
|
12841
12828
|
*
|
12842
|
-
* | Chrome | Firefox |
|
12843
|
-
* | :----: | :-----: |
|
12844
|
-
* | **69** | **68** |
|
12829
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
12830
|
+
* | :----: | :-----: | :----------------------------: | :----: | :-: |
|
12831
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
12832
|
+
* | | | 11 _(scroll-snap-margin-left)_ | | |
|
12845
12833
|
*
|
12846
12834
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
|
12847
12835
|
*/
|
@@ -12853,9 +12841,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12853
12841
|
*
|
12854
12842
|
* **Initial value**: `0`
|
12855
12843
|
*
|
12856
|
-
* | Chrome | Firefox |
|
12857
|
-
* | :----: | :-----: |
|
12858
|
-
* | **69** | **68** |
|
12844
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
12845
|
+
* | :----: | :-----: | :-----------------------------: | :----: | :-: |
|
12846
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
12847
|
+
* | | | 11 _(scroll-snap-margin-right)_ | | |
|
12859
12848
|
*
|
12860
12849
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
|
12861
12850
|
*/
|
@@ -12867,9 +12856,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12867
12856
|
*
|
12868
12857
|
* **Initial value**: `0`
|
12869
12858
|
*
|
12870
|
-
* | Chrome | Firefox |
|
12871
|
-
* | :----: | :-----: |
|
12872
|
-
* | **69** | **68** |
|
12859
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
12860
|
+
* | :----: | :-----: | :---------------------------: | :----: | :-: |
|
12861
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
12862
|
+
* | | | 11 _(scroll-snap-margin-top)_ | | |
|
12873
12863
|
*
|
12874
12864
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
|
12875
12865
|
*/
|
@@ -12897,7 +12887,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12897
12887
|
*
|
12898
12888
|
* | Chrome | Firefox | Safari | Edge | IE |
|
12899
12889
|
* | :----: | :-----: | :----: | :----: | :-: |
|
12900
|
-
* | **69** | **68** |
|
12890
|
+
* | **69** | **68** | **15** | **79** | No |
|
12901
12891
|
*
|
12902
12892
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block
|
12903
12893
|
*/
|
@@ -12911,7 +12901,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12911
12901
|
*
|
12912
12902
|
* | Chrome | Firefox | Safari | Edge | IE |
|
12913
12903
|
* | :----: | :-----: | :----: | :----: | :-: |
|
12914
|
-
* | **69** | **68** |
|
12904
|
+
* | **69** | **68** | **15** | **79** | No |
|
12915
12905
|
*
|
12916
12906
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-end
|
12917
12907
|
*/
|
@@ -12925,7 +12915,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12925
12915
|
*
|
12926
12916
|
* | Chrome | Firefox | Safari | Edge | IE |
|
12927
12917
|
* | :----: | :-----: | :----: | :----: | :-: |
|
12928
|
-
* | **69** | **68** |
|
12918
|
+
* | **69** | **68** | **15** | **79** | No |
|
12929
12919
|
*
|
12930
12920
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-block-start
|
12931
12921
|
*/
|
@@ -12953,7 +12943,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12953
12943
|
*
|
12954
12944
|
* | Chrome | Firefox | Safari | Edge | IE |
|
12955
12945
|
* | :----: | :-----: | :----: | :----: | :-: |
|
12956
|
-
* | **69** | **68** |
|
12946
|
+
* | **69** | **68** | **15** | **79** | No |
|
12957
12947
|
*
|
12958
12948
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline
|
12959
12949
|
*/
|
@@ -12967,7 +12957,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12967
12957
|
*
|
12968
12958
|
* | Chrome | Firefox | Safari | Edge | IE |
|
12969
12959
|
* | :----: | :-----: | :----: | :----: | :-: |
|
12970
|
-
* | **69** | **68** |
|
12960
|
+
* | **69** | **68** | **15** | **79** | No |
|
12971
12961
|
*
|
12972
12962
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-end
|
12973
12963
|
*/
|
@@ -12981,7 +12971,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
12981
12971
|
*
|
12982
12972
|
* | Chrome | Firefox | Safari | Edge | IE |
|
12983
12973
|
* | :----: | :-----: | :----: | :----: | :-: |
|
12984
|
-
* | **69** | **68** |
|
12974
|
+
* | **69** | **68** | **15** | **79** | No |
|
12985
12975
|
*
|
12986
12976
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-padding-inline-start
|
12987
12977
|
*/
|
@@ -13049,9 +13039,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13049
13039
|
*
|
13050
13040
|
* **Initial value**: `0`
|
13051
13041
|
*
|
13052
|
-
* | Chrome | Firefox |
|
13053
|
-
* | :----: | :-----: |
|
13054
|
-
* | **69** |
|
13042
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
13043
|
+
* | :----: | :-----: | :-----------------------: | :----: | :-: |
|
13044
|
+
* | **69** | 68-90 | **14.1** | **79** | No |
|
13045
|
+
* | | | 11 _(scroll-snap-margin)_ | | |
|
13055
13046
|
*
|
13056
13047
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin
|
13057
13048
|
*/
|
@@ -13063,9 +13054,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13063
13054
|
*
|
13064
13055
|
* **Initial value**: `0`
|
13065
13056
|
*
|
13066
|
-
* | Chrome | Firefox |
|
13067
|
-
* | :----: | :-----: |
|
13068
|
-
* | **69** | **68** |
|
13057
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
13058
|
+
* | :----: | :-----: | :------------------------------: | :----: | :-: |
|
13059
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
13060
|
+
* | | | 11 _(scroll-snap-margin-bottom)_ | | |
|
13069
13061
|
*
|
13070
13062
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-bottom
|
13071
13063
|
*/
|
@@ -13077,9 +13069,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13077
13069
|
*
|
13078
13070
|
* **Initial value**: `0`
|
13079
13071
|
*
|
13080
|
-
* | Chrome | Firefox |
|
13081
|
-
* | :----: | :-----: |
|
13082
|
-
* | **69** | **68** |
|
13072
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
13073
|
+
* | :----: | :-----: | :----------------------------: | :----: | :-: |
|
13074
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
13075
|
+
* | | | 11 _(scroll-snap-margin-left)_ | | |
|
13083
13076
|
*
|
13084
13077
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-left
|
13085
13078
|
*/
|
@@ -13091,9 +13084,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13091
13084
|
*
|
13092
13085
|
* **Initial value**: `0`
|
13093
13086
|
*
|
13094
|
-
* | Chrome | Firefox |
|
13095
|
-
* | :----: | :-----: |
|
13096
|
-
* | **69** | **68** |
|
13087
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
13088
|
+
* | :----: | :-----: | :-----------------------------: | :----: | :-: |
|
13089
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
13090
|
+
* | | | 11 _(scroll-snap-margin-right)_ | | |
|
13097
13091
|
*
|
13098
13092
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-right
|
13099
13093
|
*/
|
@@ -13105,9 +13099,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13105
13099
|
*
|
13106
13100
|
* **Initial value**: `0`
|
13107
13101
|
*
|
13108
|
-
* | Chrome | Firefox |
|
13109
|
-
* | :----: | :-----: |
|
13110
|
-
* | **69** | **68** |
|
13102
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
13103
|
+
* | :----: | :-----: | :---------------------------: | :----: | :-: |
|
13104
|
+
* | **69** | **68** | **14.1** | **79** | No |
|
13105
|
+
* | | | 11 _(scroll-snap-margin-top)_ | | |
|
13111
13106
|
*
|
13112
13107
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-margin-top
|
13113
13108
|
*/
|
@@ -13121,7 +13116,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13121
13116
|
*
|
13122
13117
|
* | Chrome | Firefox | Safari | Edge | IE |
|
13123
13118
|
* | :----: | :-----: | :----: | :----: | :-: |
|
13124
|
-
* | **75** | No |
|
13119
|
+
* | **75** | No | **15** | **79** | No |
|
13125
13120
|
*
|
13126
13121
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-stop
|
13127
13122
|
*/
|
@@ -13133,10 +13128,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13133
13128
|
*
|
13134
13129
|
* **Initial value**: `none`
|
13135
13130
|
*
|
13136
|
-
* | Chrome | Firefox | Safari |
|
13137
|
-
* | :----: | :-----: | :-----: |
|
13138
|
-
* | **69** | 39-68 | **11** | **
|
13139
|
-
* | | | 9 _-x-_ |
|
13131
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
13132
|
+
* | :----: | :-----: | :-----: | :----: | :----------: |
|
13133
|
+
* | **69** | 39-68 | **11** | **79** | **10** _-x-_ |
|
13134
|
+
* | | | 9 _-x-_ | | |
|
13140
13135
|
*
|
13141
13136
|
* @see https://developer.mozilla.org/docs/Web/CSS/scroll-snap-type
|
13142
13137
|
*/
|
@@ -13144,7 +13139,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13144
13139
|
/**
|
13145
13140
|
* The **`scrollbar-color`** CSS property sets the color of the scrollbar track and thumb.
|
13146
13141
|
*
|
13147
|
-
* **Syntax**: `auto |
|
13142
|
+
* **Syntax**: `auto | <color>{2}`
|
13148
13143
|
*
|
13149
13144
|
* **Initial value**: `auto`
|
13150
13145
|
*
|
@@ -13158,7 +13153,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13158
13153
|
/**
|
13159
13154
|
* The **`scrollbar-gutter`** CSS property allows authors to reserve space for the scrollbar, preventing unwanted layout changes as the content grows while also avoiding unnecessary visuals when scrolling isn't needed.
|
13160
13155
|
*
|
13161
|
-
* **Syntax**: `auto |
|
13156
|
+
* **Syntax**: `auto | stable && both-edges?`
|
13162
13157
|
*
|
13163
13158
|
* **Initial value**: `auto`
|
13164
13159
|
*
|
@@ -13232,9 +13227,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13232
13227
|
*
|
13233
13228
|
* **Initial value**: `8`
|
13234
13229
|
*
|
13235
|
-
* | Chrome |
|
13236
|
-
* | :----: |
|
13237
|
-
* | **21** | **
|
13230
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
13231
|
+
* | :----: | :-----: | :----: | :----: | :-: |
|
13232
|
+
* | **21** | **91** | **7** | **79** | No |
|
13233
|
+
* | | 4 _-x-_ | | | |
|
13238
13234
|
*
|
13239
13235
|
* @see https://developer.mozilla.org/docs/Web/CSS/tab-size
|
13240
13236
|
*/
|
@@ -13336,7 +13332,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13336
13332
|
* | Chrome | Firefox | Safari | Edge | IE |
|
13337
13333
|
* | :----: | :-----: | :------: | :--: | :-: |
|
13338
13334
|
* | 57-64 | No | **12.1** | No | No |
|
13339
|
-
* | | |
|
13335
|
+
* | | | 7 _-x-_ | | |
|
13340
13336
|
*
|
13341
13337
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-decoration-skip
|
13342
13338
|
*/
|
@@ -13405,9 +13401,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13405
13401
|
*
|
13406
13402
|
* **Initial value**: `currentcolor`
|
13407
13403
|
*
|
13408
|
-
* | Chrome | Firefox | Safari
|
13409
|
-
* | :----------: | :-----: |
|
13410
|
-
* | **25** _-x-_ | **46** | **
|
13404
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
13405
|
+
* | :----------: | :-----: | :----: | :----------: | :-: |
|
13406
|
+
* | **25** _-x-_ | **46** | **7** | **79** _-x-_ | No |
|
13411
13407
|
*
|
13412
13408
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-color
|
13413
13409
|
*/
|
@@ -13419,9 +13415,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13419
13415
|
*
|
13420
13416
|
* **Initial value**: `over right`
|
13421
13417
|
*
|
13422
|
-
* | Chrome | Firefox | Safari
|
13423
|
-
* | :----------: | :-----: |
|
13424
|
-
* | **25** _-x-_ | **46** | **
|
13418
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
13419
|
+
* | :----------: | :-----: | :----: | :----------: | :-: |
|
13420
|
+
* | **25** _-x-_ | **46** | **7** | **79** _-x-_ | No |
|
13425
13421
|
*
|
13426
13422
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-position
|
13427
13423
|
*/
|
@@ -13433,9 +13429,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13433
13429
|
*
|
13434
13430
|
* **Initial value**: `none`
|
13435
13431
|
*
|
13436
|
-
* | Chrome | Firefox | Safari
|
13437
|
-
* | :----------: | :-----: |
|
13438
|
-
* | **25** _-x-_ | **46** | **
|
13432
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
13433
|
+
* | :----------: | :-----: | :----: | :----------: | :-: |
|
13434
|
+
* | **25** _-x-_ | **46** | **7** | **79** _-x-_ | No |
|
13439
13435
|
*
|
13440
13436
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis-style
|
13441
13437
|
*/
|
@@ -13737,9 +13733,9 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13737
13733
|
*
|
13738
13734
|
* **Initial value**: `none`
|
13739
13735
|
*
|
13740
|
-
* | Chrome | Firefox |
|
13741
|
-
* | :----: | :-----: |
|
13742
|
-
* | No | **72** |
|
13736
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
13737
|
+
* | :----: | :-----: | :------: | :--: | :-: |
|
13738
|
+
* | No | **72** | **14.1** | No | No |
|
13743
13739
|
*
|
13744
13740
|
* @see https://developer.mozilla.org/docs/Web/CSS/translate
|
13745
13741
|
*/
|
@@ -13765,10 +13761,10 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13765
13761
|
*
|
13766
13762
|
* **Initial value**: `auto`
|
13767
13763
|
*
|
13768
|
-
* | Chrome | Firefox | Safari |
|
13769
|
-
* | :-----: | :-----: | :---------: |
|
13770
|
-
* | **54** | **69** | **3** _-x-_ |
|
13771
|
-
* | 1 _-x-_ | 1 _-x-_ | |
|
13764
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
13765
|
+
* | :-----: | :-----: | :---------: | :------: | :----------: |
|
13766
|
+
* | **54** | **69** | **3** _-x-_ | **79** | **10** _-x-_ |
|
13767
|
+
* | 1 _-x-_ | 1 _-x-_ | | 12 _-x-_ | |
|
13772
13768
|
*
|
13773
13769
|
* @see https://developer.mozilla.org/docs/Web/CSS/user-select
|
13774
13770
|
*/
|
@@ -13874,7 +13870,7 @@ export interface StandardLonghandPropertiesHyphen<TLength = (string & {}) | 0, T
|
|
13874
13870
|
/**
|
13875
13871
|
* The **`word-spacing`** CSS property sets the length of space between words and between tags.
|
13876
13872
|
*
|
13877
|
-
* **Syntax**: `normal | <length
|
13873
|
+
* **Syntax**: `normal | <length>`
|
13878
13874
|
*
|
13879
13875
|
* **Initial value**: `normal`
|
13880
13876
|
*
|
@@ -14009,9 +14005,9 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
|
|
14009
14005
|
*
|
14010
14006
|
* **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
|
14011
14007
|
*
|
14012
|
-
* | Chrome | Firefox |
|
14013
|
-
* | :----: | :-----: |
|
14014
|
-
* | **87** | **66** |
|
14008
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
14009
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
14010
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
14015
14011
|
*
|
14016
14012
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-block
|
14017
14013
|
*/
|
@@ -14082,9 +14078,9 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
|
|
14082
14078
|
*
|
14083
14079
|
* **Syntax**: `<'border-top-width'> || <'border-top-style'> || <color>`
|
14084
14080
|
*
|
14085
|
-
* | Chrome | Firefox |
|
14086
|
-
* | :----: | :-----: |
|
14087
|
-
* | **87** | **66** |
|
14081
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
14082
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
14083
|
+
* | **87** | **66** | **14.1** | **87** | No |
|
14088
14084
|
*
|
14089
14085
|
* @see https://developer.mozilla.org/docs/Web/CSS/border-inline
|
14090
14086
|
*/
|
@@ -14217,10 +14213,10 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
|
|
14217
14213
|
*
|
14218
14214
|
* **Syntax**: `none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]`
|
14219
14215
|
*
|
14220
|
-
* | Chrome | Firefox |
|
14221
|
-
* | :------: | :-----: |
|
14222
|
-
* | **29** | **20** |
|
14223
|
-
* | 21 _-x-_ | |
|
14216
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
14217
|
+
* | :------: | :-----: | :-----: | :----: | :------: |
|
14218
|
+
* | **29** | **20** | **9** | **12** | **11** |
|
14219
|
+
* | 21 _-x-_ | | 7 _-x-_ | | 10 _-x-_ |
|
14224
14220
|
*
|
14225
14221
|
* @see https://developer.mozilla.org/docs/Web/CSS/flex
|
14226
14222
|
*/
|
@@ -14230,10 +14226,10 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
|
|
14230
14226
|
*
|
14231
14227
|
* **Syntax**: `<'flex-direction'> || <'flex-wrap'>`
|
14232
14228
|
*
|
14233
|
-
* | Chrome | Firefox |
|
14234
|
-
* | :------: | :-----: |
|
14235
|
-
* | **29** | **28** |
|
14236
|
-
* | 21 _-x-_ | |
|
14229
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
14230
|
+
* | :------: | :-----: | :-----: | :----: | :----: |
|
14231
|
+
* | **29** | **28** | **9** | **12** | **11** |
|
14232
|
+
* | 21 _-x-_ | | 7 _-x-_ | | |
|
14237
14233
|
*
|
14238
14234
|
* @see https://developer.mozilla.org/docs/Web/CSS/flex-flow
|
14239
14235
|
*/
|
@@ -14259,9 +14255,9 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
|
|
14259
14255
|
*
|
14260
14256
|
* _Supported in Flex Layout_
|
14261
14257
|
*
|
14262
|
-
* | Chrome | Firefox |
|
14263
|
-
* | :----: | :-----: |
|
14264
|
-
* | **84** | **63** |
|
14258
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
14259
|
+
* | :----: | :-----: | :------: | :----: | :-: |
|
14260
|
+
* | **84** | **63** | **14.1** | **84** | No |
|
14265
14261
|
*
|
14266
14262
|
* ---
|
14267
14263
|
*
|
@@ -14380,9 +14376,9 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
|
|
14380
14376
|
*
|
14381
14377
|
* **Syntax**: `<mask-layer>#`
|
14382
14378
|
*
|
14383
|
-
* | Chrome | Firefox | Safari |
|
14384
|
-
* | :----: | :-----: | :-----: |
|
14385
|
-
* | **1** | **2** | **3.
|
14379
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
14380
|
+
* | :----: | :-----: | :-----: | :---: | :-: |
|
14381
|
+
* | **1** | **2** | **3.1** | 12-79 | No |
|
14386
14382
|
*
|
14387
14383
|
* @see https://developer.mozilla.org/docs/Web/CSS/mask
|
14388
14384
|
*/
|
@@ -14482,24 +14478,10 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
|
|
14482
14478
|
*
|
14483
14479
|
* **Syntax**: `<'align-items'> <'justify-items'>?`
|
14484
14480
|
*
|
14485
|
-
* ---
|
14486
|
-
*
|
14487
|
-
* _Supported in Flex Layout_
|
14488
|
-
*
|
14489
|
-
* | Chrome | Firefox | Safari | Edge | IE |
|
14490
|
-
* | :----: | :-----: | :----: | :----: | :-: |
|
14491
|
-
* | **59** | **45** | **11** | **79** | No |
|
14492
|
-
*
|
14493
|
-
* ---
|
14494
|
-
*
|
14495
|
-
* _Supported in Grid Layout_
|
14496
|
-
*
|
14497
14481
|
* | Chrome | Firefox | Safari | Edge | IE |
|
14498
14482
|
* | :----: | :-----: | :----: | :----: | :-: |
|
14499
14483
|
* | **59** | **45** | **11** | **79** | No |
|
14500
14484
|
*
|
14501
|
-
* ---
|
14502
|
-
*
|
14503
14485
|
* @see https://developer.mozilla.org/docs/Web/CSS/place-items
|
14504
14486
|
*/
|
14505
14487
|
"place-items"?: Property.PlaceItems;
|
@@ -14508,24 +14490,10 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
|
|
14508
14490
|
*
|
14509
14491
|
* **Syntax**: `<'align-self'> <'justify-self'>?`
|
14510
14492
|
*
|
14511
|
-
* ---
|
14512
|
-
*
|
14513
|
-
* _Supported in Flex Layout_
|
14514
|
-
*
|
14515
|
-
* | Chrome | Firefox | Safari | Edge | IE |
|
14516
|
-
* | :----: | :-----: | :----: | :----: | :-: |
|
14517
|
-
* | **59** | **45** | **11** | **79** | No |
|
14518
|
-
*
|
14519
|
-
* ---
|
14520
|
-
*
|
14521
|
-
* _Supported in Grid Layout_
|
14522
|
-
*
|
14523
14493
|
* | Chrome | Firefox | Safari | Edge | IE |
|
14524
14494
|
* | :----: | :-----: | :----: | :----: | :-: |
|
14525
14495
|
* | **59** | **45** | **11** | **79** | No |
|
14526
14496
|
*
|
14527
|
-
* ---
|
14528
|
-
*
|
14529
14497
|
* @see https://developer.mozilla.org/docs/Web/CSS/place-self
|
14530
14498
|
*/
|
14531
14499
|
"place-self"?: Property.PlaceSelf;
|
@@ -14546,9 +14514,9 @@ export interface StandardShorthandPropertiesHyphen<TLength = (string & {}) | 0,
|
|
14546
14514
|
*
|
14547
14515
|
* **Syntax**: `<'text-emphasis-style'> || <'text-emphasis-color'>`
|
14548
14516
|
*
|
14549
|
-
* | Chrome | Firefox | Safari
|
14550
|
-
* | :----------: | :-----: |
|
14551
|
-
* | **25** _-x-_ | **46** | **
|
14517
|
+
* | Chrome | Firefox | Safari | Edge | IE |
|
14518
|
+
* | :----------: | :-----: | :----: | :----------: | :-: |
|
14519
|
+
* | **25** _-x-_ | **46** | **7** | **79** _-x-_ | No |
|
14552
14520
|
*
|
14553
14521
|
* @see https://developer.mozilla.org/docs/Web/CSS/text-emphasis
|
14554
14522
|
*/
|
@@ -17094,7 +17062,7 @@ export interface ObsoletePropertiesHyphen<TLength = (string & {}) | 0, TTime = s
|
|
17094
17062
|
/**
|
17095
17063
|
* The **`-moz-force-broken-image-icon`** extended CSS property can be used to force the broken image icon to be shown even when a broken image has an `alt` attribute.
|
17096
17064
|
*
|
17097
|
-
* **Syntax**:
|
17065
|
+
* **Syntax**: `0 | 1`
|
17098
17066
|
*
|
17099
17067
|
* **Initial value**: `0`
|
17100
17068
|
*
|
@@ -17652,37 +17620,25 @@ export interface PropertiesHyphen<TLength = (string & {}) | 0, TTime = string &
|
|
17652
17620
|
ObsoletePropertiesHyphen<TLength, TTime>,
|
17653
17621
|
SvgPropertiesHyphen<TLength, TTime> {}
|
17654
17622
|
|
17655
|
-
export type StandardLonghandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
17656
|
-
[P in keyof StandardLonghandProperties<TLength, TTime>]: StandardLonghandProperties<TLength, TTime>[P] | StandardLonghandProperties<TLength, TTime>[P][];
|
17657
|
-
};
|
17623
|
+
export type StandardLonghandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<StandardLonghandProperties<TLength, TTime>>;
|
17658
17624
|
|
17659
|
-
export type StandardShorthandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
17660
|
-
[P in keyof StandardShorthandProperties<TLength, TTime>]: StandardShorthandProperties<TLength, TTime>[P] | StandardShorthandProperties<TLength, TTime>[P][];
|
17661
|
-
};
|
17625
|
+
export type StandardShorthandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<StandardShorthandProperties<TLength, TTime>>;
|
17662
17626
|
|
17663
17627
|
export interface StandardPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}>
|
17664
17628
|
extends StandardLonghandPropertiesFallback<TLength, TTime>,
|
17665
17629
|
StandardShorthandPropertiesFallback<TLength, TTime> {}
|
17666
17630
|
|
17667
|
-
export type VendorLonghandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
17668
|
-
[P in keyof VendorLonghandProperties<TLength, TTime>]: VendorLonghandProperties<TLength, TTime>[P] | VendorLonghandProperties<TLength, TTime>[P][];
|
17669
|
-
};
|
17631
|
+
export type VendorLonghandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<VendorLonghandProperties<TLength, TTime>>;
|
17670
17632
|
|
17671
|
-
export type VendorShorthandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
17672
|
-
[P in keyof VendorShorthandProperties<TLength, TTime>]: VendorShorthandProperties<TLength, TTime>[P] | VendorShorthandProperties<TLength, TTime>[P][];
|
17673
|
-
};
|
17633
|
+
export type VendorShorthandPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<VendorShorthandProperties<TLength, TTime>>;
|
17674
17634
|
|
17675
17635
|
export interface VendorPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}>
|
17676
17636
|
extends VendorLonghandPropertiesFallback<TLength, TTime>,
|
17677
17637
|
VendorShorthandPropertiesFallback<TLength, TTime> {}
|
17678
17638
|
|
17679
|
-
export type ObsoletePropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
17680
|
-
[P in keyof ObsoleteProperties<TLength, TTime>]: ObsoleteProperties<TLength, TTime>[P] | ObsoleteProperties<TLength, TTime>[P][];
|
17681
|
-
};
|
17639
|
+
export type ObsoletePropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<ObsoleteProperties<TLength, TTime>>;
|
17682
17640
|
|
17683
|
-
export type SvgPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
17684
|
-
[P in keyof SvgProperties<TLength, TTime>]: SvgProperties<TLength, TTime>[P] | SvgProperties<TLength, TTime>[P][];
|
17685
|
-
};
|
17641
|
+
export type SvgPropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<SvgProperties<TLength, TTime>>;
|
17686
17642
|
|
17687
17643
|
export interface PropertiesFallback<TLength = (string & {}) | 0, TTime = string & {}>
|
17688
17644
|
extends StandardPropertiesFallback<TLength, TTime>,
|
@@ -17690,37 +17646,25 @@ export interface PropertiesFallback<TLength = (string & {}) | 0, TTime = string
|
|
17690
17646
|
ObsoletePropertiesFallback<TLength, TTime>,
|
17691
17647
|
SvgPropertiesFallback<TLength, TTime> {}
|
17692
17648
|
|
17693
|
-
export type StandardLonghandPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
17694
|
-
[P in keyof StandardLonghandPropertiesHyphen<TLength, TTime>]: StandardLonghandPropertiesHyphen<TLength, TTime>[P] | StandardLonghandPropertiesHyphen<TLength, TTime>[P][];
|
17695
|
-
};
|
17649
|
+
export type StandardLonghandPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<StandardLonghandPropertiesHyphen<TLength, TTime>>;
|
17696
17650
|
|
17697
|
-
export type StandardShorthandPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
17698
|
-
[P in keyof StandardShorthandPropertiesHyphen<TLength, TTime>]: StandardShorthandPropertiesHyphen<TLength, TTime>[P] | StandardShorthandPropertiesHyphen<TLength, TTime>[P][];
|
17699
|
-
};
|
17651
|
+
export type StandardShorthandPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<StandardShorthandPropertiesHyphen<TLength, TTime>>;
|
17700
17652
|
|
17701
17653
|
export interface StandardPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}>
|
17702
17654
|
extends StandardLonghandPropertiesHyphenFallback<TLength, TTime>,
|
17703
17655
|
StandardShorthandPropertiesHyphenFallback<TLength, TTime> {}
|
17704
17656
|
|
17705
|
-
export type VendorLonghandPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
17706
|
-
[P in keyof VendorLonghandPropertiesHyphen<TLength, TTime>]: VendorLonghandPropertiesHyphen<TLength, TTime>[P] | VendorLonghandPropertiesHyphen<TLength, TTime>[P][];
|
17707
|
-
};
|
17657
|
+
export type VendorLonghandPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<VendorLonghandPropertiesHyphen<TLength, TTime>>;
|
17708
17658
|
|
17709
|
-
export type VendorShorthandPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
17710
|
-
[P in keyof VendorShorthandPropertiesHyphen<TLength, TTime>]: VendorShorthandPropertiesHyphen<TLength, TTime>[P] | VendorShorthandPropertiesHyphen<TLength, TTime>[P][];
|
17711
|
-
};
|
17659
|
+
export type VendorShorthandPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<VendorShorthandPropertiesHyphen<TLength, TTime>>;
|
17712
17660
|
|
17713
17661
|
export interface VendorPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}>
|
17714
17662
|
extends VendorLonghandPropertiesHyphenFallback<TLength, TTime>,
|
17715
17663
|
VendorShorthandPropertiesHyphenFallback<TLength, TTime> {}
|
17716
17664
|
|
17717
|
-
export type ObsoletePropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
17718
|
-
[P in keyof ObsoletePropertiesHyphen<TLength, TTime>]: ObsoletePropertiesHyphen<TLength, TTime>[P] | ObsoletePropertiesHyphen<TLength, TTime>[P][];
|
17719
|
-
};
|
17665
|
+
export type ObsoletePropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<ObsoletePropertiesHyphen<TLength, TTime>>;
|
17720
17666
|
|
17721
|
-
export type SvgPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
17722
|
-
[P in keyof SvgPropertiesHyphen<TLength, TTime>]: SvgPropertiesHyphen<TLength, TTime>[P] | SvgPropertiesHyphen<TLength, TTime>[P][];
|
17723
|
-
};
|
17667
|
+
export type SvgPropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<SvgPropertiesHyphen<TLength, TTime>>;
|
17724
17668
|
|
17725
17669
|
export interface PropertiesHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}>
|
17726
17670
|
extends StandardPropertiesHyphenFallback<TLength, TTime>,
|
@@ -18039,10 +17983,8 @@ export type HtmlAttributes =
|
|
18039
17983
|
| "[prefetch]"
|
18040
17984
|
| "[preload]"
|
18041
17985
|
| "[profile]"
|
18042
|
-
| "[prompt]"
|
18043
17986
|
| "[radiogroup]"
|
18044
17987
|
| "[readonly]"
|
18045
|
-
| "[referrerPolicy]"
|
18046
17988
|
| "[referrerpolicy]"
|
18047
17989
|
| "[rel]"
|
18048
17990
|
| "[required]"
|
@@ -18151,7 +18093,6 @@ export type SvgAttributes =
|
|
18151
18093
|
| "[edgeMode]"
|
18152
18094
|
| "[elevation]"
|
18153
18095
|
| "[enable-background]"
|
18154
|
-
| "[externalResourcesRequired]"
|
18155
18096
|
| "[fill-opacity]"
|
18156
18097
|
| "[fill-rule]"
|
18157
18098
|
| "[fill]"
|
@@ -18210,7 +18151,6 @@ export type SvgAttributes =
|
|
18210
18151
|
| "[letter-spacing]"
|
18211
18152
|
| "[lighting-color]"
|
18212
18153
|
| "[limitingConeAngle]"
|
18213
|
-
| "[local]"
|
18214
18154
|
| "[marker-end]"
|
18215
18155
|
| "[marker-mid]"
|
18216
18156
|
| "[marker-start]"
|
@@ -18255,9 +18195,8 @@ export type SvgAttributes =
|
|
18255
18195
|
| "[radius]"
|
18256
18196
|
| "[refX]"
|
18257
18197
|
| "[refY]"
|
18258
|
-
| "[
|
18198
|
+
| "[referrerpolicy]"
|
18259
18199
|
| "[rel]"
|
18260
|
-
| "[rendering-intent]"
|
18261
18200
|
| "[repeatCount]"
|
18262
18201
|
| "[requiredExtensions]"
|
18263
18202
|
| "[requiredFeatures]"
|
@@ -18351,6 +18290,8 @@ export type SvgAttributes =
|
|
18351
18290
|
export type Globals = "-moz-initial" | "inherit" | "initial" | "revert" | "unset";
|
18352
18291
|
|
18353
18292
|
export namespace Property {
|
18293
|
+
export type AccentColor = Globals | DataType.Color | "auto";
|
18294
|
+
|
18354
18295
|
export type AlignContent = Globals | DataType.ContentDistribution | DataType.ContentPosition | "baseline" | "normal" | (string & {});
|
18355
18296
|
|
18356
18297
|
export type AlignItems = Globals | DataType.SelfPosition | "baseline" | "normal" | "stretch" | (string & {});
|
@@ -18772,7 +18713,7 @@ export namespace Property {
|
|
18772
18713
|
|
18773
18714
|
export type FontSize<TLength = (string & {}) | 0> = Globals | DataType.AbsoluteSize | TLength | "larger" | "smaller" | (string & {});
|
18774
18715
|
|
18775
|
-
export type FontSizeAdjust = Globals | "none" | (number & {});
|
18716
|
+
export type FontSizeAdjust = Globals | "from-font" | "none" | (string & {}) | (number & {});
|
18776
18717
|
|
18777
18718
|
export type FontSmooth<TLength = (string & {}) | 0> = Globals | DataType.AbsoluteSize | TLength | "always" | "auto" | "never";
|
18778
18719
|
|
@@ -18780,7 +18721,7 @@ export namespace Property {
|
|
18780
18721
|
|
18781
18722
|
export type FontStyle = Globals | "italic" | "normal" | "oblique" | (string & {});
|
18782
18723
|
|
18783
|
-
export type FontSynthesis = Globals | "none" | "style" | "weight" | (string & {});
|
18724
|
+
export type FontSynthesis = Globals | "none" | "small-caps" | "style" | "weight" | (string & {});
|
18784
18725
|
|
18785
18726
|
export type FontVariant =
|
18786
18727
|
| Globals
|
@@ -19339,9 +19280,9 @@ export namespace Property {
|
|
19339
19280
|
|
19340
19281
|
export type ScrollSnapTypeY = Globals | "mandatory" | "none" | "proximity";
|
19341
19282
|
|
19342
|
-
export type ScrollbarColor = Globals | DataType.Color | "auto"
|
19283
|
+
export type ScrollbarColor = Globals | DataType.Color | "auto";
|
19343
19284
|
|
19344
|
-
export type ScrollbarGutter = Globals | "
|
19285
|
+
export type ScrollbarGutter = Globals | "auto" | "stable" | (string & {});
|
19345
19286
|
|
19346
19287
|
export type MsScrollbarTrackColor = Globals | DataType.Color;
|
19347
19288
|
|
@@ -19518,7 +19459,7 @@ export namespace Property {
|
|
19518
19459
|
|
19519
19460
|
export type WordBreak = Globals | "break-all" | "break-word" | "keep-all" | "normal";
|
19520
19461
|
|
19521
|
-
export type WordSpacing<TLength = (string & {}) | 0> = Globals | TLength | "normal"
|
19462
|
+
export type WordSpacing<TLength = (string & {}) | 0> = Globals | TLength | "normal";
|
19522
19463
|
|
19523
19464
|
export type WordWrap = Globals | "break-word" | "normal";
|
19524
19465
|
|
@@ -19655,7 +19596,7 @@ export namespace Property {
|
|
19655
19596
|
|
19656
19597
|
export type MozFloatEdge = Globals | "border-box" | "content-box" | "margin-box" | "padding-box";
|
19657
19598
|
|
19658
|
-
export type MozForceBrokenImageIcon = Globals |
|
19599
|
+
export type MozForceBrokenImageIcon = Globals | 0 | 1;
|
19659
19600
|
|
19660
19601
|
export type MozImageRegion = Globals | "auto" | (string & {});
|
19661
19602
|
|
@@ -20009,16 +19950,14 @@ export namespace AtRule {
|
|
20009
19950
|
system?: System;
|
20010
19951
|
}
|
20011
19952
|
|
20012
|
-
export type CounterStyleFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
20013
|
-
[P in keyof CounterStyle<TLength, TTime>]: CounterStyle<TLength, TTime>[P] | CounterStyle<TLength, TTime>[P][];
|
20014
|
-
};
|
19953
|
+
export type CounterStyleFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<CounterStyle<TLength, TTime>>;
|
20015
19954
|
|
20016
|
-
export type CounterStyleHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
20017
|
-
[P in keyof CounterStyleHyphen<TLength, TTime>]: CounterStyleHyphen<TLength, TTime>[P] | CounterStyleHyphen<TLength, TTime>[P][];
|
20018
|
-
};
|
19955
|
+
export type CounterStyleHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<CounterStyleHyphen<TLength, TTime>>;
|
20019
19956
|
|
20020
19957
|
export interface FontFace<TLength = (string & {}) | 0, TTime = string & {}> {
|
20021
19958
|
MozFontFeatureSettings?: FontFeatureSettings;
|
19959
|
+
ascentOverride?: AscentOverride;
|
19960
|
+
descentOverride?: DescentOverride;
|
20022
19961
|
fontDisplay?: FontDisplay;
|
20023
19962
|
fontFamily?: string;
|
20024
19963
|
fontFeatureSettings?: FontFeatureSettings;
|
@@ -20027,12 +19966,16 @@ export namespace AtRule {
|
|
20027
19966
|
fontVariant?: FontVariant;
|
20028
19967
|
fontVariationSettings?: FontVariationSettings;
|
20029
19968
|
fontWeight?: FontWeight;
|
19969
|
+
lineGapOverride?: LineGapOverride;
|
19970
|
+
sizeAdjust?: string;
|
20030
19971
|
src?: string;
|
20031
19972
|
unicodeRange?: string;
|
20032
19973
|
}
|
20033
19974
|
|
20034
19975
|
export interface FontFaceHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
|
20035
19976
|
"-moz-font-feature-settings"?: FontFeatureSettings;
|
19977
|
+
"ascent-override"?: AscentOverride;
|
19978
|
+
"descent-override"?: DescentOverride;
|
20036
19979
|
"font-display"?: FontDisplay;
|
20037
19980
|
"font-family"?: string;
|
20038
19981
|
"font-feature-settings"?: FontFeatureSettings;
|
@@ -20041,33 +19984,31 @@ export namespace AtRule {
|
|
20041
19984
|
"font-variant"?: FontVariant;
|
20042
19985
|
"font-variation-settings"?: FontVariationSettings;
|
20043
19986
|
"font-weight"?: FontWeight;
|
19987
|
+
"line-gap-override"?: LineGapOverride;
|
19988
|
+
"size-adjust"?: string;
|
20044
19989
|
src?: string;
|
20045
19990
|
"unicode-range"?: string;
|
20046
19991
|
}
|
20047
19992
|
|
20048
|
-
export type FontFaceFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
20049
|
-
[P in keyof FontFace<TLength, TTime>]: FontFace<TLength, TTime>[P] | FontFace<TLength, TTime>[P][];
|
20050
|
-
};
|
19993
|
+
export type FontFaceFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<FontFace<TLength, TTime>>;
|
20051
19994
|
|
20052
|
-
export type FontFaceHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
20053
|
-
[P in keyof FontFaceHyphen<TLength, TTime>]: FontFaceHyphen<TLength, TTime>[P] | FontFaceHyphen<TLength, TTime>[P][];
|
20054
|
-
};
|
19995
|
+
export type FontFaceHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<FontFaceHyphen<TLength, TTime>>;
|
20055
19996
|
|
20056
19997
|
export interface Page<TLength = (string & {}) | 0, TTime = string & {}> {
|
19998
|
+
bleed?: Bleed<TLength>;
|
19999
|
+
marks?: Marks;
|
20057
20000
|
size?: Size<TLength>;
|
20058
20001
|
}
|
20059
20002
|
|
20060
20003
|
export interface PageHyphen<TLength = (string & {}) | 0, TTime = string & {}> {
|
20004
|
+
bleed?: Bleed<TLength>;
|
20005
|
+
marks?: Marks;
|
20061
20006
|
size?: Size<TLength>;
|
20062
20007
|
}
|
20063
20008
|
|
20064
|
-
export type PageFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
20065
|
-
[P in keyof Page<TLength, TTime>]: Page<TLength, TTime>[P] | Page<TLength, TTime>[P][];
|
20066
|
-
};
|
20009
|
+
export type PageFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<Page<TLength, TTime>>;
|
20067
20010
|
|
20068
|
-
export type PageHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
20069
|
-
[P in keyof PageHyphen<TLength, TTime>]: PageHyphen<TLength, TTime>[P] | PageHyphen<TLength, TTime>[P][];
|
20070
|
-
};
|
20011
|
+
export type PageHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<PageHyphen<TLength, TTime>>;
|
20071
20012
|
|
20072
20013
|
export interface Property<TLength = (string & {}) | 0, TTime = string & {}> {
|
20073
20014
|
inherits?: Inherits;
|
@@ -20081,13 +20022,9 @@ export namespace AtRule {
|
|
20081
20022
|
syntax?: string;
|
20082
20023
|
}
|
20083
20024
|
|
20084
|
-
export type PropertyFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
20085
|
-
[P in keyof Property<TLength, TTime>]: Property<TLength, TTime>[P] | Property<TLength, TTime>[P][];
|
20086
|
-
};
|
20025
|
+
export type PropertyFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<Property<TLength, TTime>>;
|
20087
20026
|
|
20088
|
-
export type PropertyHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
20089
|
-
[P in keyof PropertyHyphen<TLength, TTime>]: PropertyHyphen<TLength, TTime>[P] | PropertyHyphen<TLength, TTime>[P][];
|
20090
|
-
};
|
20027
|
+
export type PropertyHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<PropertyHyphen<TLength, TTime>>;
|
20091
20028
|
|
20092
20029
|
export interface Viewport<TLength = (string & {}) | 0, TTime = string & {}> {
|
20093
20030
|
height?: Height<TLength>;
|
@@ -20119,13 +20056,9 @@ export namespace AtRule {
|
|
20119
20056
|
zoom?: Zoom;
|
20120
20057
|
}
|
20121
20058
|
|
20122
|
-
export type ViewportFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
20123
|
-
[P in keyof Viewport<TLength, TTime>]: Viewport<TLength, TTime>[P] | Viewport<TLength, TTime>[P][];
|
20124
|
-
};
|
20059
|
+
export type ViewportFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<Viewport<TLength, TTime>>;
|
20125
20060
|
|
20126
|
-
export type ViewportHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> =
|
20127
|
-
[P in keyof ViewportHyphen<TLength, TTime>]: ViewportHyphen<TLength, TTime>[P] | ViewportHyphen<TLength, TTime>[P][];
|
20128
|
-
};
|
20061
|
+
export type ViewportHyphenFallback<TLength = (string & {}) | 0, TTime = string & {}> = Fallback<ViewportHyphen<TLength, TTime>>;
|
20129
20062
|
|
20130
20063
|
type Range = "auto" | "infinite" | (string & {}) | (number & {});
|
20131
20064
|
|
@@ -20135,6 +20068,10 @@ export namespace AtRule {
|
|
20135
20068
|
|
20136
20069
|
type FontFeatureSettings = "normal" | (string & {});
|
20137
20070
|
|
20071
|
+
type AscentOverride = "normal" | (string & {});
|
20072
|
+
|
20073
|
+
type DescentOverride = "normal" | (string & {});
|
20074
|
+
|
20138
20075
|
type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";
|
20139
20076
|
|
20140
20077
|
type FontStretch = DataType.FontStretchAbsolute | (string & {});
|
@@ -20177,6 +20114,12 @@ export namespace AtRule {
|
|
20177
20114
|
|
20178
20115
|
type FontWeight = DataType.FontWeightAbsolute | (string & {});
|
20179
20116
|
|
20117
|
+
type LineGapOverride = "normal" | (string & {});
|
20118
|
+
|
20119
|
+
type Bleed<TLength> = TLength | "auto";
|
20120
|
+
|
20121
|
+
type Marks = "crop" | "cross" | "none" | (string & {});
|
20122
|
+
|
20180
20123
|
type Size<TLength> = DataType.PageSize | TLength | "auto" | "landscape" | "portrait" | (string & {});
|
20181
20124
|
|
20182
20125
|
type Inherits = "false" | "true";
|