amateras 0.2.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -7
- package/ext/css/README.md +19 -0
- package/ext/css/src/index.ts +395 -322
- package/ext/css/src/lib/colorAssign.ts +6 -0
- package/ext/css/src/lib/colors/amber.ts +25 -0
- package/ext/css/src/lib/colors/blackwhite.ts +13 -0
- package/ext/css/src/lib/colors/blue.ts +25 -0
- package/ext/css/src/lib/colors/cyan.ts +25 -0
- package/ext/css/src/lib/colors/emerald.ts +25 -0
- package/ext/css/src/lib/colors/fuchsia.ts +25 -0
- package/ext/css/src/lib/colors/gray.ts +25 -0
- package/ext/css/src/lib/colors/green.ts +25 -0
- package/ext/css/src/lib/colors/indigo.ts +25 -0
- package/ext/css/src/lib/colors/lime.ts +25 -0
- package/ext/css/src/lib/colors/neutral.ts +25 -0
- package/ext/css/src/lib/colors/orange.ts +25 -0
- package/ext/css/src/lib/colors/pink.ts +25 -0
- package/ext/css/src/lib/colors/purple.ts +25 -0
- package/ext/css/src/lib/colors/red.ts +25 -0
- package/ext/css/src/lib/colors/rose.ts +25 -0
- package/ext/css/src/lib/colors/sky.ts +25 -0
- package/ext/css/src/lib/colors/slate.ts +25 -0
- package/ext/css/src/lib/colors/stone.ts +25 -0
- package/ext/css/src/lib/colors/teal.ts +25 -0
- package/ext/css/src/lib/colors/violet.ts +25 -0
- package/ext/css/src/lib/colors/yellow.ts +25 -0
- package/ext/css/src/lib/colors/zinc.ts +25 -0
- package/ext/css/src/lib/colors.ts +23 -0
- package/ext/css/src/structure/$CSSContainerRule.ts +13 -0
- package/ext/css/src/structure/$CSSKeyframesRule.ts +1 -5
- package/ext/css/src/structure/$CSSMediaRule.ts +3 -23
- package/ext/css/src/structure/$CSSRule.ts +6 -18
- package/ext/css/src/structure/$CSSStyleRule.ts +5 -14
- package/ext/css/src/structure/$CSSVariable.ts +3 -3
- package/ext/html/html.ts +1 -13
- package/ext/html/node/$Anchor.ts +31 -1
- package/ext/html/node/$Image.ts +54 -1
- package/ext/html/node/$Input.ts +154 -1
- package/ext/html/node/$OptGroup.ts +8 -1
- package/ext/html/node/$Option.ts +25 -1
- package/ext/html/node/$Select.ts +61 -1
- package/ext/i18n/README.md +53 -0
- package/ext/i18n/package.json +10 -0
- package/ext/i18n/src/index.ts +54 -0
- package/ext/i18n/src/node/I18nText.ts +35 -0
- package/ext/i18n/src/structure/I18n.ts +40 -0
- package/ext/i18n/src/structure/I18nDictionary.ts +31 -0
- package/ext/markdown/index.ts +123 -0
- package/ext/router/index.ts +13 -4
- package/ext/router/node/Page.ts +1 -0
- package/ext/router/node/Route.ts +4 -3
- package/ext/router/node/Router.ts +62 -17
- package/ext/router/node/RouterAnchor.ts +1 -1
- package/ext/ssr/index.ts +7 -5
- package/ext/ui/lib/VirtualScroll.ts +24 -0
- package/ext/ui/node/Accordian.ts +97 -0
- package/ext/ui/node/Tabs.ts +114 -0
- package/ext/ui/node/Toast.ts +16 -0
- package/ext/ui/node/Waterfall.ts +73 -0
- package/ext/ui/package.json +11 -0
- package/package.json +6 -7
- package/src/core.ts +36 -19
- package/src/global.ts +4 -0
- package/src/lib/assign.ts +12 -12
- package/src/lib/assignHelper.ts +2 -2
- package/src/lib/chain.ts +3 -0
- package/src/lib/debounce.ts +7 -0
- package/src/lib/env.ts +2 -0
- package/src/lib/native.ts +22 -24
- package/src/lib/randomId.ts +1 -1
- package/src/lib/sleep.ts +1 -1
- package/src/node/$Element.ts +301 -35
- package/src/node/$HTMLElement.ts +94 -1
- package/src/node/$Node.ts +148 -54
- package/src/node/$Virtual.ts +58 -0
- package/src/{node/node.ts → node.ts} +2 -4
- package/src/structure/Signal.ts +3 -3
- package/ext/css/src/structure/$CSSKeyframeRule.ts +0 -14
package/ext/css/src/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _instanceof, _Object_assign, _Object_entries, _Object_fromEntries, isObject, isUndefined } from "amateras/lib/native";
|
|
1
|
+
import { _Array_from, _instanceof, _JSON_stringify, _Object_assign, _Object_entries, _Object_fromEntries, forEach, isObject, isUndefined, startsWith } from "amateras/lib/native";
|
|
2
2
|
import { randomId } from "amateras/lib/randomId";
|
|
3
3
|
import { $Element } from "amateras/node/$Element";
|
|
4
4
|
import { $CSSDeclaration } from "#structure/$CSSDeclaration";
|
|
@@ -7,16 +7,16 @@ import { $CSSRule } from "#structure/$CSSRule";
|
|
|
7
7
|
import { $CSSStyleRule } from "#structure/$CSSStyleRule";
|
|
8
8
|
import { $CSSKeyframesRule } from "#structure/$CSSKeyframesRule";
|
|
9
9
|
import { $CSSVariable } from "#structure/$CSSVariable";
|
|
10
|
-
import { $
|
|
10
|
+
import { $CSSContainerRule } from "#structure/$CSSContainerRule";
|
|
11
11
|
|
|
12
12
|
declare module 'amateras/core' {
|
|
13
13
|
export namespace $ {
|
|
14
|
-
export function css(options: $CSSOptions): $CSSStyleRule
|
|
15
|
-
export function CSS(options: $CSSSelectorType | $
|
|
14
|
+
export function css(options: $CSSOptions | $CSSStyleRule): $CSSStyleRule
|
|
15
|
+
export function CSS(options: $CSSSelectorType | $CSSKeyframesSelectorType): void
|
|
16
16
|
|
|
17
17
|
export namespace css {
|
|
18
|
-
export function variables(value:
|
|
19
|
-
export function variables<T extends $CSSVariableType>(options: T, conditions?: $CSSVariableConditionType<T>): { [key in keyof T]: $CSSVariable }
|
|
18
|
+
export function variables<V extends string>(value: V): $CSSVariable<V>;
|
|
19
|
+
export function variables<T extends $CSSVariableType>(options: T, conditions?: $CSSVariableConditionType<T>): { [key in keyof T]: $CSSVariable<T[key]> }
|
|
20
20
|
export function keyframes<T extends { [key: string]: $CSSKeyframesType }>(options: T): { [key in keyof T]: $CSSKeyframesRule };
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -24,12 +24,12 @@ declare module 'amateras/core' {
|
|
|
24
24
|
|
|
25
25
|
declare module 'amateras/node/$Element' {
|
|
26
26
|
export interface $Element {
|
|
27
|
-
css(...options: $CSSOptions[]): this;
|
|
27
|
+
css(...options: ($CSSOptions | $CSSStyleRule)[]): this;
|
|
28
28
|
}
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
const generatedIds = new Set<string>();
|
|
32
|
-
|
|
32
|
+
const generateId = (lettercase: 'any' | 'lower' | 'upper' = 'any'): string => {
|
|
33
33
|
const id = randomId({lettercase: lettercase});
|
|
34
34
|
if (generatedIds.has(id)) return generateId(lettercase);
|
|
35
35
|
generatedIds.add(id);
|
|
@@ -37,16 +37,18 @@ function generateId(lettercase?: 'any' | 'lower' | 'upper'): string {
|
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
const stylesheet = $.stylesheet;
|
|
40
|
+
const cssTextMap = new Map<string, $CSSStyleRule>();
|
|
41
|
+
const [MEDIA, KEYFRAMES, CONTAINER] = ['@media', '@keyframes', '@container'] as const;
|
|
40
42
|
|
|
41
|
-
|
|
43
|
+
const processCSSOptions = <T extends $CSSStyleRule>(
|
|
42
44
|
rule: T,
|
|
43
|
-
options: $
|
|
44
|
-
|
|
45
|
-
): T {
|
|
45
|
+
options: $CSSOptions,
|
|
46
|
+
): T => {
|
|
46
47
|
for (const [key, value] of _Object_entries(options)) {
|
|
47
48
|
if (isUndefined(value)) continue;
|
|
48
|
-
if (
|
|
49
|
-
|
|
49
|
+
else if (_instanceof(value, $CSSDeclaration)) rule.declarations.set(value.key, value);
|
|
50
|
+
else if (isObject(value) && !_instanceof(value, $CSSKeyframesRule, $CSSVariable))
|
|
51
|
+
rule.rules.add( createRule(key, value, rule.selector) );
|
|
50
52
|
else {
|
|
51
53
|
const declaration = new $CSSDeclaration(key, `${value}`);
|
|
52
54
|
rule.declarations.set(declaration.key, declaration);
|
|
@@ -55,56 +57,98 @@ function processCSSOptions<T extends $CSSStyleRule | $CSSKeyframeRule>(
|
|
|
55
57
|
return rule;
|
|
56
58
|
}
|
|
57
59
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
60
|
+
/** Create rule with several type depend on selector content.
|
|
61
|
+
* @param context - for media rule creation, it should be style rule selector same as nested parent of media rule.
|
|
62
|
+
*/
|
|
63
|
+
const createRule = (selector: string, options: $CSSOptions, context?: string) => {
|
|
64
|
+
if (startsWith(selector, CONTAINER, MEDIA)) return createMediaOrContainerRule(selector, options, context);
|
|
65
|
+
if (startsWith(selector, KEYFRAMES)) return createKeyframesRule(selector.replace('@keyframes ', ''), options as $CSSKeyframesType)
|
|
66
|
+
return createStyleRule(selector, options);
|
|
62
67
|
}
|
|
63
68
|
|
|
64
|
-
|
|
65
|
-
function createStyleRule<T extends $CSSOptions>(options: T, context?: string[]): $CSSStyleRule;
|
|
66
|
-
function createStyleRule<T extends $CSSOptions>(options: T, context: string[] = []) {
|
|
67
|
-
if (_instanceof(options, $CSSRule)) return options;
|
|
68
|
-
return processCSSOptions(new $CSSStyleRule(context), options, context);
|
|
69
|
-
}
|
|
69
|
+
const createStyleRule = <T extends $CSSOptions>(selector: string, options: T) => processCSSOptions(new $CSSStyleRule(selector), options);
|
|
70
70
|
|
|
71
|
-
|
|
72
|
-
const rule = new $CSSMediaRule(
|
|
71
|
+
const createMediaOrContainerRule = (selector: string, options: $CSSOptions, context?: string) => {
|
|
72
|
+
const rule = startsWith(selector, MEDIA) ? new $CSSMediaRule(selector) : new $CSSContainerRule(selector);
|
|
73
73
|
// create media rule from $.CSS
|
|
74
|
-
if (
|
|
74
|
+
if (!context) forEach(_Object_entries(options), ([key, value]) => rule.rules.add( createRule(key, value) ))
|
|
75
75
|
// create from $.css
|
|
76
|
-
else rule.
|
|
76
|
+
else rule.rules.add( createStyleRule(context, options) );
|
|
77
77
|
return rule;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
-
|
|
80
|
+
const createKeyframesRule = (name: string, options: $CSSKeyframesType) => {
|
|
81
81
|
const rule = new $CSSKeyframesRule(name);
|
|
82
|
-
_Object_entries(options)
|
|
83
|
-
rule.
|
|
82
|
+
forEach(_Object_entries(options), ([key, value]) => {
|
|
83
|
+
rule.rules.add( processCSSOptions(new $CSSStyleRule(key), value) );
|
|
84
84
|
})
|
|
85
85
|
return rule;
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
88
|
+
const insertRule = (rule: $CSSRule) => {
|
|
89
|
+
cssText(rule).forEach(text => {
|
|
90
|
+
const selector = text.match(/^(.+?) {/)?.[1];
|
|
91
|
+
if (!selector) return;
|
|
92
|
+
if (!startsWith(selector, '@') && selector.split(',').find(str => !CSS.supports(`selector(${str})`))) return;
|
|
93
|
+
$.style(text, stylesheet.cssRules.length);
|
|
94
|
+
})
|
|
95
|
+
return rule
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
const cssText = (rule: $CSSRule, context: string = '', options?: {mediaContext?: string[], containerContext?: string[]}): string[] => {
|
|
99
|
+
if (_instanceof(rule, $CSSStyleRule)) {
|
|
100
|
+
const split = (str: string) => str.split(',');
|
|
101
|
+
const relation = (str: string, ctx: string): string => {
|
|
102
|
+
if (str.includes('&')) return str.replaceAll('&', ctx);
|
|
103
|
+
else return `${ctx ? ctx + ' ': ''}${str}`
|
|
104
|
+
}
|
|
105
|
+
const selectors = split(rule.selector);
|
|
106
|
+
const selector = split(context).map(ctx => selectors.map(selector => relation(selector, ctx))).join(', ');
|
|
107
|
+
const text = `${selector} { ${_Array_from(rule.declarations).map(([_, dec]) => `${dec}`).join(' ')} }`
|
|
108
|
+
return [text, ..._Array_from(rule.rules).map(childRule => cssText(childRule, selector, options)).flat()]
|
|
109
|
+
}
|
|
110
|
+
if (_instanceof(rule, $CSSMediaRule)) {
|
|
111
|
+
const mediaContext = [...options?.mediaContext ?? [], rule.condition];
|
|
112
|
+
const media: string[] = [], style: string[] = []
|
|
113
|
+
forEach(
|
|
114
|
+
_Array_from(rule.rules)
|
|
115
|
+
.map(childRule => cssText(childRule, '', {...options, mediaContext}))
|
|
116
|
+
.flat(),
|
|
117
|
+
(childText => startsWith(childText, MEDIA) ? media.push(childText) : style.push(childText))
|
|
118
|
+
);
|
|
119
|
+
return [`${MEDIA} ${mediaContext.join(' and ')} { ${style.join('\n')} }`, ...media]
|
|
120
|
+
}
|
|
121
|
+
if (_instanceof(rule, $CSSContainerRule)) {
|
|
122
|
+
const containerContext = [...options?.containerContext ?? [], rule.condition];
|
|
123
|
+
const container: string[] = [], style: string[] = [];
|
|
124
|
+
forEach(
|
|
125
|
+
_Array_from(rule.rules)
|
|
126
|
+
.map(childRule => cssText(childRule, '', {...options, containerContext}))
|
|
127
|
+
.flat(),
|
|
128
|
+
(childText => startsWith(childText, CONTAINER) ? container.push(childText) : style.push(childText))
|
|
129
|
+
);
|
|
130
|
+
return [`${CONTAINER} ${rule.name} ${containerContext.join(' and ')} { ${style.join('\n')} }`, ...container]
|
|
131
|
+
}
|
|
132
|
+
if (_instanceof(rule, $CSSKeyframesRule)) {
|
|
133
|
+
return [`${KEYFRAMES} ${rule.name} { ${_Array_from(rule.rules).map(childRule => cssText(childRule, context, options)).join('\n')} }`]
|
|
134
|
+
}
|
|
135
|
+
throw '$CSS RULE TYPE ERROR'
|
|
95
136
|
}
|
|
96
137
|
|
|
97
138
|
_Object_assign($, {
|
|
98
|
-
css(options: $CSSOptions) {
|
|
139
|
+
css(options: $CSSOptions | $CSSStyleRule) {
|
|
99
140
|
if (_instanceof(options, $CSSRule)) return options;
|
|
141
|
+
const cssText = _JSON_stringify(options);
|
|
142
|
+
const cacheRule = cssTextMap.get(cssText);
|
|
143
|
+
if (cacheRule) return cacheRule;
|
|
100
144
|
const className = `.${generateId()}`;
|
|
101
|
-
const rule = createStyleRule(
|
|
102
|
-
|
|
145
|
+
const rule = createStyleRule(className, options);
|
|
146
|
+
cssTextMap.set(_JSON_stringify(options), rule);
|
|
103
147
|
return insertRule( rule );
|
|
104
148
|
},
|
|
105
149
|
CSS(options: $CSSSelectorType | $CSSMediaRule) {
|
|
106
150
|
return _Object_entries(options).map(([selector, declarations]) => {
|
|
107
|
-
return insertRule( createRule(selector, declarations
|
|
151
|
+
return insertRule( createRule(selector, declarations) );
|
|
108
152
|
})
|
|
109
153
|
}
|
|
110
154
|
})
|
|
@@ -114,7 +158,7 @@ _Object_assign($.css, {
|
|
|
114
158
|
if (isObject(options)) {
|
|
115
159
|
const variables = _Object_fromEntries(_Object_entries(options).map(([key, value]) => [
|
|
116
160
|
key,
|
|
117
|
-
new $CSSVariable(`${key.replaceAll(/([A-Z])/g, ((_, $1) => `-${$1.toLowerCase()}`))}_${generateId('lower')}`, `${value}`)
|
|
161
|
+
new $CSSVariable(`${key.replaceAll(/([A-Z])/g, ((_, $1: string) => `-${$1.toLowerCase()}`))}_${generateId('lower')}`, `${value}`)
|
|
118
162
|
]))
|
|
119
163
|
|
|
120
164
|
const conditionObj = conditions ? _Object_entries(conditions).map(([condition, _options]) => [
|
|
@@ -142,298 +186,327 @@ _Object_assign($.css, {
|
|
|
142
186
|
})
|
|
143
187
|
|
|
144
188
|
_Object_assign($Element.prototype, {
|
|
145
|
-
css(this: $Element, ...options: $CSSOptions[]) {
|
|
146
|
-
|
|
189
|
+
css(this: $Element, ...options: ($CSSOptions | $CSSStyleRule)[]) {
|
|
190
|
+
forEach(options, options => {
|
|
147
191
|
const rule = $.css(options);
|
|
148
|
-
this.addClass(rule.
|
|
192
|
+
this.addClass(rule.selector.replace(/^./, ''));
|
|
149
193
|
})
|
|
150
194
|
return this;
|
|
151
195
|
}
|
|
152
196
|
})
|
|
153
197
|
|
|
154
198
|
export * from "#structure/$CSSDeclaration";
|
|
155
|
-
export * from "#structure/$CSSKeyframeRule";
|
|
156
199
|
export * from "#structure/$CSSKeyframesRule";
|
|
157
200
|
export * from "#structure/$CSSMediaRule";
|
|
158
201
|
export * from "#structure/$CSSRule";
|
|
159
202
|
export * from "#structure/$CSSStyleRule";
|
|
160
203
|
export * from "#structure/$CSSVariable";
|
|
161
204
|
|
|
162
|
-
type $CSSOptions = $CSSDeclarationType | $CSSSelectorType
|
|
163
|
-
type $CSSValueType = '' | 'unset' | 'initial' | 'inherit' | string & {} | number | $CSSVariable
|
|
164
|
-
type $CSSDeclarationType = { [key in keyof $CSSDeclarationMap]?: $CSSDeclarationMap[key] }
|
|
165
|
-
type $CSSSelectorType = { [key: string & {}]: $CSSOptions }
|
|
166
|
-
type $
|
|
167
|
-
type $
|
|
168
|
-
type $
|
|
169
|
-
type $
|
|
170
|
-
type $CSSKeyframesType = { [key: `${number}%`]: $CSSDeclarationType } | { from?: $CSSDeclarationType, to?: $CSSDeclarationType }
|
|
205
|
+
export type $CSSOptions = $CSSDeclarationType | $CSSSelectorType;
|
|
206
|
+
export type $CSSValueType = '' | 'unset' | 'initial' | 'inherit' | string & {} | number | $CSSVariable
|
|
207
|
+
export type $CSSDeclarationType = { [key in keyof $CSSDeclarationMap]?: $CSSDeclarationMap[key] | $CSSValueType } | { [key: string]: $CSSValueType }
|
|
208
|
+
export type $CSSSelectorType = { [key: string & {}]: $CSSOptions }
|
|
209
|
+
export type $CSSVariableType<T = any> = { [key in keyof T]: $CSSValueType }
|
|
210
|
+
export type $CSSVariableConditionType<T extends $CSSVariableType | string> = T extends string ? { [key: string]: $CSSValueType } : { [key: string]: Partial<$CSSVariableType<T>> }
|
|
211
|
+
export type $CSSKeyframesSelectorType = { [key: `@keyframes ${string}`]: $CSSKeyframesType }
|
|
212
|
+
export type $CSSKeyframesType = { [key: `${number}%`]: $CSSDeclarationType } | { from?: $CSSDeclarationType, to?: $CSSDeclarationType }
|
|
171
213
|
|
|
172
214
|
type $CSSDeclarationMap = {
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
backdropFilter
|
|
190
|
-
backfaceVisibility
|
|
191
|
-
background
|
|
192
|
-
backgroundAttachment
|
|
193
|
-
backgroundBlendMode
|
|
194
|
-
backgroundClip
|
|
195
|
-
backgroundColor
|
|
196
|
-
backgroundImage
|
|
197
|
-
backgroundOrigin
|
|
198
|
-
backgroundPosition
|
|
199
|
-
backgroundRepeat
|
|
200
|
-
backgroundSize
|
|
201
|
-
border
|
|
202
|
-
borderBottom
|
|
203
|
-
borderBottomColor
|
|
204
|
-
borderBottomLeftRadius
|
|
205
|
-
borderBottomRightRadius
|
|
206
|
-
borderBottomStyle
|
|
207
|
-
borderBottomWidth
|
|
208
|
-
borderCollapse
|
|
209
|
-
borderColor
|
|
210
|
-
borderImage
|
|
211
|
-
borderImageOutset
|
|
212
|
-
borderImageRepeat
|
|
213
|
-
borderImageSlice
|
|
214
|
-
borderImageSource
|
|
215
|
-
borderImageWidth
|
|
216
|
-
borderLeft
|
|
217
|
-
borderLeftColor
|
|
218
|
-
borderLeftStyle
|
|
219
|
-
borderLeftWidth
|
|
220
|
-
borderRadius
|
|
221
|
-
borderRight
|
|
222
|
-
borderRightColor
|
|
223
|
-
borderRightStyle
|
|
224
|
-
borderRightWidth
|
|
225
|
-
borderSpacing
|
|
226
|
-
borderStyle
|
|
227
|
-
borderTop
|
|
228
|
-
borderTopColor
|
|
229
|
-
borderTopLeftRadius
|
|
230
|
-
borderTopRightRadius
|
|
231
|
-
borderTopStyle
|
|
232
|
-
borderTopWidth
|
|
233
|
-
borderWidth
|
|
234
|
-
bottom
|
|
235
|
-
boxShadow
|
|
236
|
-
boxSizing
|
|
237
|
-
breakAfter
|
|
238
|
-
breakBefore
|
|
239
|
-
breakInside
|
|
240
|
-
captionSide
|
|
241
|
-
caretColor
|
|
242
|
-
clear
|
|
243
|
-
clip
|
|
244
|
-
clipPath
|
|
245
|
-
color
|
|
246
|
-
columnCount
|
|
247
|
-
columnFill
|
|
248
|
-
columnGap
|
|
249
|
-
columnRule
|
|
250
|
-
columnRuleColor
|
|
251
|
-
columnRuleStyle
|
|
252
|
-
columnRuleWidth
|
|
253
|
-
columnSpan
|
|
254
|
-
columnWidth
|
|
255
|
-
columns
|
|
256
|
-
content
|
|
257
|
-
counterIncrement
|
|
258
|
-
counterReset
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
left
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
215
|
+
alignContent: 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'space-evenly' | 'stretch' | 'normal';
|
|
216
|
+
alignItems: 'normal' | 'stretch' | 'center' | 'flex-start' | 'flex-end' | 'baseline';
|
|
217
|
+
alignSelf: 'auto' | 'normal' | 'stretch' | 'center' | 'flex-start' | 'flex-end' | 'baseline';
|
|
218
|
+
all: 'initial' | 'inherit' | 'unset';
|
|
219
|
+
animation: string | $CSSKeyframesRule;
|
|
220
|
+
animationDelay: string;
|
|
221
|
+
animationDirection: 'normal' | 'reverse' | 'alternate' | 'alternate-reverse';
|
|
222
|
+
animationDuration: string;
|
|
223
|
+
animationFillMode: 'none' | 'forwards' | 'backwards' | 'both';
|
|
224
|
+
animationIterationCount: 'infinite' | number;
|
|
225
|
+
animationName: string | $CSSKeyframesRule;
|
|
226
|
+
animationPlayState: 'running' | 'paused';
|
|
227
|
+
animationTimingFunction: 'ease' | 'ease-in' | 'ease-out' | 'ease-in-out' | 'linear' | 'step-start' | 'step-end';
|
|
228
|
+
animationComposition: 'replace' | 'add' | 'accumulate';
|
|
229
|
+
aspectRatio: string;
|
|
230
|
+
appearance: 'none' | 'auto' | 'menulist-button' | 'textfield' | 'base-select' | 'button' | 'checkbox';
|
|
231
|
+
backdropFilter: string;
|
|
232
|
+
backfaceVisibility: 'visible' | 'hidden';
|
|
233
|
+
background: string;
|
|
234
|
+
backgroundAttachment: 'scroll' | 'fixed' | 'local';
|
|
235
|
+
backgroundBlendMode: 'normal' | 'multiply' | 'screen' | 'overlay' | 'darken' | 'lighten' | 'color-dodge' | 'color-burn' | 'hard-light' | 'soft-light' | 'difference' | 'exclusion' | 'hue' | 'saturation' | 'color' | 'luminosity';
|
|
236
|
+
backgroundClip: 'border-box' | 'padding-box' | 'content-box' | 'text';
|
|
237
|
+
backgroundColor: string;
|
|
238
|
+
backgroundImage: string;
|
|
239
|
+
backgroundOrigin: 'border-box' | 'padding-box' | 'content-box';
|
|
240
|
+
backgroundPosition: string;
|
|
241
|
+
backgroundRepeat: 'repeat' | 'repeat-x' | 'repeat-y' | 'no-repeat' | 'space' | 'round';
|
|
242
|
+
backgroundSize: 'auto' | 'cover' | 'contain';
|
|
243
|
+
border: string;
|
|
244
|
+
borderBottom: string;
|
|
245
|
+
borderBottomColor: string;
|
|
246
|
+
borderBottomLeftRadius: string;
|
|
247
|
+
borderBottomRightRadius: string;
|
|
248
|
+
borderBottomStyle: 'none' | 'hidden' | 'dotted' | 'dashed' | 'solid' | 'double' | 'groove' | 'ridge' | 'inset' | 'outset';
|
|
249
|
+
borderBottomWidth: string;
|
|
250
|
+
borderCollapse: 'collapse' | 'separate';
|
|
251
|
+
borderColor: string;
|
|
252
|
+
borderImage: string;
|
|
253
|
+
borderImageOutset: string;
|
|
254
|
+
borderImageRepeat: 'stretch' | 'repeat' | 'round' | 'space';
|
|
255
|
+
borderImageSlice: string;
|
|
256
|
+
borderImageSource: string;
|
|
257
|
+
borderImageWidth: string;
|
|
258
|
+
borderLeft: string;
|
|
259
|
+
borderLeftColor: string;
|
|
260
|
+
borderLeftStyle: 'none' | 'hidden' | 'dotted' | 'dashed' | 'solid' | 'double' | 'groove' | 'ridge' | 'inset' | 'outset';
|
|
261
|
+
borderLeftWidth: string;
|
|
262
|
+
borderRadius: string;
|
|
263
|
+
borderRight: string;
|
|
264
|
+
borderRightColor: string;
|
|
265
|
+
borderRightStyle: 'none' | 'hidden' | 'dotted' | 'dashed' | 'solid' | 'double' | 'groove' | 'ridge' | 'inset' | 'outset';
|
|
266
|
+
borderRightWidth: string;
|
|
267
|
+
borderSpacing: string;
|
|
268
|
+
borderStyle: 'none' | 'hidden' | 'dotted' | 'dashed' | 'solid' | 'double' | 'groove' | 'ridge' | 'inset' | 'outset';
|
|
269
|
+
borderTop: string;
|
|
270
|
+
borderTopColor: string;
|
|
271
|
+
borderTopLeftRadius: string;
|
|
272
|
+
borderTopRightRadius: string;
|
|
273
|
+
borderTopStyle: 'none' | 'hidden' | 'dotted' | 'dashed' | 'solid' | 'double' | 'groove' | 'ridge' | 'inset' | 'outset';
|
|
274
|
+
borderTopWidth: string;
|
|
275
|
+
borderWidth: string;
|
|
276
|
+
bottom: string;
|
|
277
|
+
boxShadow: string;
|
|
278
|
+
boxSizing: 'content-box' | 'border-box';
|
|
279
|
+
breakAfter: 'auto' | 'avoid' | 'always' | 'all' | 'avoid-page' | 'page' | 'left' | 'right' | 'recto' | 'verso' | 'column' | 'avoid-column';
|
|
280
|
+
breakBefore: 'auto' | 'avoid' | 'always' | 'all' | 'avoid-page' | 'page' | 'left' | 'right' | 'recto' | 'verso' | 'column' | 'avoid-column';
|
|
281
|
+
breakInside: 'auto' | 'avoid' | 'avoid-page' | 'avoid-column';
|
|
282
|
+
captionSide: 'top' | 'bottom';
|
|
283
|
+
caretColor: string;
|
|
284
|
+
clear: 'none' | 'left' | 'right' | 'both';
|
|
285
|
+
clip: string;
|
|
286
|
+
clipPath: string;
|
|
287
|
+
color: string;
|
|
288
|
+
columnCount: 'auto' | number;
|
|
289
|
+
columnFill: 'balance' | 'auto';
|
|
290
|
+
columnGap: string;
|
|
291
|
+
columnRule: string;
|
|
292
|
+
columnRuleColor: string;
|
|
293
|
+
columnRuleStyle: 'none' | 'hidden' | 'dotted' | 'dashed' | 'solid' | 'double' | 'groove' | 'ridge' | 'inset' | 'outset';
|
|
294
|
+
columnRuleWidth: string;
|
|
295
|
+
columnSpan: 'none' | 'all';
|
|
296
|
+
columnWidth: string;
|
|
297
|
+
columns: string;
|
|
298
|
+
content: string;
|
|
299
|
+
counterIncrement: string;
|
|
300
|
+
counterReset: string;
|
|
301
|
+
containerName: string;
|
|
302
|
+
containerType: 'inline-size' | 'size' | 'normal' | 'scroll-state';
|
|
303
|
+
cursor: 'auto' | 'default' | 'none' | 'context-menu' | 'help' | 'pointer' | 'progress' | 'wait' | 'cell' | 'crosshair' | 'text' | 'vertical-text' | 'alias' | 'copy' | 'move' | 'no-drop' | 'not-allowed' | 'e-resize' | 'n-resize' | 'ne-resize' | 'nw-resize' | 's-resize' | 'se-resize' | 'sw-resize' | 'w-resize' | 'ew-resize' | 'ns-resize' | 'nesw-resize' | 'nwse-resize' | 'col-resize' | 'row-resize' | 'all-scroll' | 'zoom-in' | 'zoom-out' | 'grab' | 'grabbing';
|
|
304
|
+
direction: 'ltr' | 'rtl';
|
|
305
|
+
display: 'block' | 'inline' | 'inline-block' | 'flex' | 'inline-flex' | 'grid' | 'inline-grid' | 'flow-root' | 'none' | 'contents' | 'table' | 'table-row' | 'table-cell' | 'table-column' | 'table-column-group' | 'table-header-group' | 'table-footer-group' | 'table-row-group' | 'list-item';
|
|
306
|
+
emptyCells: 'show' | 'hide';
|
|
307
|
+
filter: string;
|
|
308
|
+
flex: string;
|
|
309
|
+
flexBasis: string;
|
|
310
|
+
flexDirection: 'row' | 'row-reverse' | 'column' | 'column-reverse';
|
|
311
|
+
flexFlow: string;
|
|
312
|
+
flexGrow: number;
|
|
313
|
+
flexShrink: number;
|
|
314
|
+
flexWrap: 'nowrap' | 'wrap' | 'wrap-reverse';
|
|
315
|
+
float: 'left' | 'right' | 'none';
|
|
316
|
+
font: string;
|
|
317
|
+
fontFamily: string;
|
|
318
|
+
fontFeatureSettings: string;
|
|
319
|
+
fontKerning: 'auto' | 'normal' | 'none';
|
|
320
|
+
fontLanguageOverride: string;
|
|
321
|
+
fontOpticalSizing: 'auto' | 'none';
|
|
322
|
+
fontSize: string;
|
|
323
|
+
fontSizeAdjust: string;
|
|
324
|
+
fontStretch: 'normal' | 'ultra-condensed' | 'extra-condensed' | 'condensed' | 'semi-condensed' | 'semi-expanded' | 'expanded' | 'extra-expanded' | 'ultra-expanded';
|
|
325
|
+
fontStyle: 'normal' | 'italic' | 'oblique';
|
|
326
|
+
fontSynthesis: string;
|
|
327
|
+
fontVariant: 'normal' | 'small-caps';
|
|
328
|
+
fontVariantCaps: 'normal' | 'small-caps' | 'all-small-caps' | 'petite-caps' | 'all-petite-caps' | 'unicase' | 'titling-caps';
|
|
329
|
+
fontVariantEastAsian: string;
|
|
330
|
+
fontVariantLigatures: string;
|
|
331
|
+
fontVariantNumeric: string;
|
|
332
|
+
fontVariantPosition: 'normal' | 'sub' | 'super';
|
|
333
|
+
fontWeight: 'normal' | 'bold' | 'bolder' | 'lighter' | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
|
|
334
|
+
gap: string;
|
|
335
|
+
grid: string;
|
|
336
|
+
gridArea: string;
|
|
337
|
+
gridAutoColumns: string;
|
|
338
|
+
gridAutoFlow: 'row' | 'column' | 'dense' | 'row dense' | 'column dense';
|
|
339
|
+
gridAutoRows: string;
|
|
340
|
+
gridColumn: string;
|
|
341
|
+
gridColumnEnd: string;
|
|
342
|
+
gridColumnGap: string;
|
|
343
|
+
gridColumnStart: string;
|
|
344
|
+
gridGap: string;
|
|
345
|
+
gridRow: string;
|
|
346
|
+
gridRowEnd: string;
|
|
347
|
+
gridRowGap: string;
|
|
348
|
+
gridRowStart: string;
|
|
349
|
+
gridTemplate: string;
|
|
350
|
+
gridTemplateAreas: string;
|
|
351
|
+
gridTemplateColumns: string;
|
|
352
|
+
gridTemplateRows: string;
|
|
353
|
+
height: string;
|
|
354
|
+
hyphens: 'none' | 'manual' | 'auto';
|
|
355
|
+
imageRendering: 'auto' | 'crisp-edges' | 'pixelated';
|
|
356
|
+
isolation: 'auto' | 'isolate';
|
|
357
|
+
justifyContent: 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' | 'space-evenly';
|
|
358
|
+
justifyItems: 'normal' | 'stretch' | 'center' | 'start' | 'end' | 'flex-start' | 'flex-end' | 'self-start' | 'self-end' | 'left' | 'right';
|
|
359
|
+
justifySelf: 'auto' | 'normal' | 'stretch' | 'center' | 'start' | 'end' | 'flex-start' | 'flex-end' | 'self-start' | 'self-end' | 'left' | 'right';
|
|
360
|
+
left: string;
|
|
361
|
+
letterSpacing: 'normal';
|
|
362
|
+
lineHeight: 'normal' | number;
|
|
363
|
+
listStyle: string;
|
|
364
|
+
listStyleImage: string;
|
|
365
|
+
listStylePosition: 'inside' | 'outside';
|
|
366
|
+
listStyleType: 'disc' | 'circle' | 'square' | 'decimal' | 'georgian' | 'trad-chinese-informal' | 'none';
|
|
367
|
+
margin: string;
|
|
368
|
+
marginBottom: string;
|
|
369
|
+
marginLeft: string;
|
|
370
|
+
marginRight: string;
|
|
371
|
+
marginTop: string;
|
|
372
|
+
marginBlock: string;
|
|
373
|
+
marginBlockStart: string;
|
|
374
|
+
marginBlockEnd: string;
|
|
375
|
+
marginInline: string;
|
|
376
|
+
marginInlineStart: string;
|
|
377
|
+
marginInlineEnd: string;
|
|
378
|
+
mask: string;
|
|
379
|
+
maskClip: string;
|
|
380
|
+
maskComposite: string;
|
|
381
|
+
maskImage: string;
|
|
382
|
+
maskMode: string;
|
|
383
|
+
maskOrigin: string;
|
|
384
|
+
maskPosition: string;
|
|
385
|
+
maskRepeat: string;
|
|
386
|
+
maskSize: string;
|
|
387
|
+
maskType: string;
|
|
388
|
+
maxHeight: string;
|
|
389
|
+
maxWidth: string;
|
|
390
|
+
minHeight: string;
|
|
391
|
+
minWidth: string;
|
|
392
|
+
mixBlendMode: 'normal' | 'multiply' | 'screen' | 'overlay' | 'darken' | 'lighten' | 'color-dodge' | 'color-burn' | 'hard-light' | 'soft-light' | 'difference' | 'exclusion' | 'hue' | 'saturation' | 'color' | 'luminosity';
|
|
393
|
+
objectFit: 'fill' | 'contain' | 'cover' | 'none' | 'scale-down';
|
|
394
|
+
objectPosition: string;
|
|
395
|
+
opacity: number;
|
|
396
|
+
order: number;
|
|
397
|
+
outline: string;
|
|
398
|
+
outlineColor: string;
|
|
399
|
+
outlineOffset: string;
|
|
400
|
+
outlineStyle: 'none' | 'hidden' | 'dotted' | 'dashed' | 'solid' | 'double' | 'groove' | 'ridge' | 'inset' | 'outset';
|
|
401
|
+
outlineWidth: string;
|
|
402
|
+
overflow: 'visible' | 'hidden' | 'scroll' | 'auto';
|
|
403
|
+
overflowWrap: 'normal' | 'break-word' | 'anywhere';
|
|
404
|
+
overflowX: 'visible' | 'hidden' | 'scroll' | 'auto';
|
|
405
|
+
overflowY: 'visible' | 'hidden' | 'scroll' | 'auto';
|
|
406
|
+
overscrollBehavior: 'auto' | 'contain' | 'none';
|
|
407
|
+
overscrollBehaviorX: 'auto' | 'contain' | 'none';
|
|
408
|
+
overscrollBehaviorY: 'auto' | 'contain' | 'none';
|
|
409
|
+
padding: string;
|
|
410
|
+
paddingBottom: string;
|
|
411
|
+
paddingLeft: string;
|
|
412
|
+
paddingRight: string;
|
|
413
|
+
paddingTop: string;
|
|
414
|
+
paddingBlock: string;
|
|
415
|
+
paddingBlockStart: string;
|
|
416
|
+
paddingBlockEnd: string;
|
|
417
|
+
paddingInline: string;
|
|
418
|
+
paddingInlineStart: string;
|
|
419
|
+
paddingInlineEnd: string;
|
|
420
|
+
pageBreakAfter: 'auto' | 'always' | 'avoid' | 'left' | 'right';
|
|
421
|
+
pageBreakBefore: 'auto' | 'always' | 'avoid' | 'left' | 'right';
|
|
422
|
+
pageBreakInside: 'auto' | 'avoid';
|
|
423
|
+
paintOrder: string;
|
|
424
|
+
perspective: string;
|
|
425
|
+
perspectiveOrigin: string;
|
|
426
|
+
placeContent: string;
|
|
427
|
+
placeItems: string;
|
|
428
|
+
placeSelf: string;
|
|
429
|
+
pointerEvents: 'auto' | 'none';
|
|
430
|
+
position: 'static' | 'relative' | 'absolute' | 'fixed' | 'sticky';
|
|
431
|
+
quotes: string;
|
|
432
|
+
resize: 'none' | 'both' | 'horizontal' | 'vertical' | 'block' | 'inline';
|
|
433
|
+
right: string;
|
|
434
|
+
rotate: string;
|
|
435
|
+
rowGap: string;
|
|
436
|
+
scale: string;
|
|
437
|
+
scrollBehavior: 'auto' | 'smooth';
|
|
438
|
+
scrollMargin: string;
|
|
439
|
+
scrollMarginBottom: string;
|
|
440
|
+
scrollMarginLeft: string;
|
|
441
|
+
scrollMarginRight: string;
|
|
442
|
+
scrollMarginTop: string;
|
|
443
|
+
scrollMarginBlock: string;
|
|
444
|
+
scrollMarginBlockStart: string;
|
|
445
|
+
scrollMarginBlockEnd: string;
|
|
446
|
+
scrollMarginInline: string;
|
|
447
|
+
scrollMarginInlineStart: string;
|
|
448
|
+
scrollMarginInlineEnd: string;
|
|
449
|
+
shapeRendering: 'auto' | 'optimizeSpeed' | 'crispEdges' | 'geometricPrecision';
|
|
450
|
+
stopColor: string;
|
|
451
|
+
stopOpacity: string;
|
|
452
|
+
stroke: string;
|
|
453
|
+
strokeDasharray: string;
|
|
454
|
+
strokeDashoffset: string;
|
|
455
|
+
strokeLinecap: 'butt' | 'round' | 'square';
|
|
456
|
+
strokeLinejoin: 'miter' | 'round' | 'bevel';
|
|
457
|
+
strokeMiterlimit: string;
|
|
458
|
+
strokeOpacity: string;
|
|
459
|
+
strokeWidth: string;
|
|
460
|
+
tabSize: string;
|
|
461
|
+
tableLayout: 'auto' | 'fixed';
|
|
462
|
+
textAlign: 'left' | 'right' | 'center' | 'justify' | 'start' | 'end';
|
|
463
|
+
textAlignLast: 'auto' | 'left' | 'right' | 'center' | 'justify' | 'start' | 'end';
|
|
464
|
+
textAnchor: 'start' | 'middle' | 'end';
|
|
465
|
+
textCombineUpright: 'none' | 'all';
|
|
466
|
+
textDecoration: 'none' | 'underline' | 'overline' | 'line-through' | 'grammar-error' | 'spelling-error' | 'solid' | 'double' | 'dotted' | 'dashed' | 'wavy';
|
|
467
|
+
textDecorationColor: string;
|
|
468
|
+
textDecorationLine: 'none' | 'underline' | 'overline' | 'line-through' | 'grammar-error' | 'spelling-error';
|
|
469
|
+
textDecorationStyle: 'solid' | 'double' | 'dotted' | 'dashed' | 'wavy';
|
|
470
|
+
textDecorationThickness: string;
|
|
471
|
+
textDecorationSkipInk: 'auto' | 'none';
|
|
472
|
+
textEmphasis: string;
|
|
473
|
+
textIndent: string;
|
|
474
|
+
textJustify: 'auto' | 'inter-word' | 'inter-character' | 'none';
|
|
475
|
+
textOrientation: 'mixed' | 'upright' | 'sideways';
|
|
476
|
+
textOverflow: 'clip' | 'ellipsis';
|
|
477
|
+
textRendering: 'auto' | 'optimizeSpeed' | 'optimizeLegibility' | 'geometricPrecision';
|
|
478
|
+
textShadow: string;
|
|
479
|
+
textTransform: 'none' | 'capitalize' | 'uppercase' | 'lowercase';
|
|
480
|
+
textUnderlineOffset: string;
|
|
481
|
+
textUnderlinePosition: 'auto' | 'under' | 'left' | 'right';
|
|
482
|
+
top: string;
|
|
483
|
+
touchAction: 'auto' | 'none' | 'pan-x' | 'pan-y' | 'manipulation';
|
|
484
|
+
transform: string;
|
|
485
|
+
transformBox: 'border-box' | 'fill-box' | 'view-box';
|
|
486
|
+
transformOrigin: string;
|
|
487
|
+
transformStyle: 'flat' | 'preserve-3d';
|
|
488
|
+
transition: string;
|
|
489
|
+
transitionDelay: string;
|
|
490
|
+
transitionDuration: string;
|
|
491
|
+
transitionProperty: string;
|
|
492
|
+
transitionTimingFunction: 'ease' | 'ease-in' | 'ease-out' | 'ease-in-out' | 'linear' | 'step-start' | 'step-end';
|
|
493
|
+
translate: string;
|
|
494
|
+
unicodeBidi: 'normal' | 'embed' | 'isolate' | 'bidi-override' | 'isolate-override' | 'plaintext';
|
|
495
|
+
userSelect: 'auto' | 'none' | 'text' | 'contain' | 'all';
|
|
496
|
+
verticalAlign: 'baseline' | 'sub' | 'super' | 'text-top' | 'text-bottom' | 'middle' | 'top' | 'bottom';
|
|
497
|
+
viewTimeline: string;
|
|
498
|
+
viewTimelineAxis: string;
|
|
499
|
+
viewTimelineInset: string;
|
|
500
|
+
viewTimelineName: string;
|
|
501
|
+
viewTransitionName: string;
|
|
502
|
+
viewTransitionClass: string;
|
|
503
|
+
visibility: 'visible' | 'hidden' | 'collapse';
|
|
504
|
+
whiteSpace: 'normal' | 'nowrap' | 'pre' | 'pre-wrap' | 'pre-line' | 'break-spaces';
|
|
505
|
+
width: string;
|
|
506
|
+
willChange: string;
|
|
507
|
+
wordBreak: 'normal' | 'break-all' | 'keep-all' | 'break-word';
|
|
508
|
+
wordSpacing: string;
|
|
509
|
+
wordWrap: 'normal' | 'break-word';
|
|
510
|
+
writingMode: 'horizontal-tb' | 'vertical-rl' | 'vertical-lr';
|
|
511
|
+
zIndex: 'auto' | number;
|
|
439
512
|
};
|