boss-css 0.0.1 → 0.0.3
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 +1 -0
- package/dist/_virtual/rolldown_runtime.cjs +43 -0
- package/dist/_virtual/rolldown_runtime.mjs +20 -0
- package/dist/api/browser.cjs +54 -0
- package/dist/api/browser.mjs +48 -0
- package/dist/api/config.cjs +94 -0
- package/dist/api/config.mjs +91 -0
- package/dist/api/css.cjs +304 -0
- package/dist/api/css.mjs +303 -0
- package/dist/api/dictionary.cjs +218 -0
- package/dist/api/dictionary.mjs +215 -0
- package/dist/api/file/dts.cjs +21 -0
- package/dist/api/file/dts.mjs +21 -0
- package/dist/api/file/file.cjs +123 -0
- package/dist/api/file/file.mjs +120 -0
- package/dist/api/file/js.cjs +118 -0
- package/dist/api/file/js.mjs +116 -0
- package/dist/api/names.cjs +52 -0
- package/dist/api/names.mjs +46 -0
- package/dist/api/noopCss.cjs +37 -0
- package/dist/api/noopCss.mjs +36 -0
- package/dist/api/propTree.cjs +54 -0
- package/dist/api/propTree.mjs +48 -0
- package/dist/api/server.cjs +112 -0
- package/dist/api/server.mjs +106 -0
- package/dist/cli/build.cjs +1 -0
- package/dist/cli/build.mjs +3 -0
- package/dist/cli/index.cjs +30 -0
- package/dist/cli/index.mjs +29 -0
- package/dist/cli/tasks/build.cjs +24 -0
- package/dist/cli/tasks/build.mjs +23 -0
- package/dist/cli/tasks/choose.cjs +47 -0
- package/dist/cli/tasks/choose.mjs +46 -0
- package/dist/cli/tasks/compile.cjs +68 -0
- package/dist/cli/tasks/compile.mjs +67 -0
- package/dist/cli/tasks/dev.cjs +51 -0
- package/dist/cli/tasks/dev.mjs +48 -0
- package/dist/cli/tasks/init.cjs +1835 -0
- package/dist/cli/tasks/init.mjs +1831 -0
- package/dist/cli/tasks/watch.cjs +38 -0
- package/dist/cli/tasks/watch.mjs +37 -0
- package/dist/cli/templates/init.cjs +82 -0
- package/dist/cli/templates/init.mjs +78 -0
- package/dist/cli/types.cjs +13 -0
- package/dist/cli/types.mjs +13 -0
- package/dist/cli/utils.cjs +43 -0
- package/dist/cli/utils.mjs +41 -0
- package/dist/compile/classname-strategy.cjs +79 -0
- package/dist/compile/classname-strategy.mjs +77 -0
- package/dist/compile/classname.cjs +366 -0
- package/dist/compile/classname.mjs +360 -0
- package/dist/compile/index.cjs +238 -0
- package/dist/compile/index.mjs +235 -0
- package/dist/compile/jsx.cjs +803 -0
- package/dist/compile/jsx.mjs +800 -0
- package/dist/compile/prepared.cjs +88 -0
- package/dist/compile/prepared.mjs +87 -0
- package/dist/compile/runtime.cjs +33 -0
- package/dist/compile/runtime.mjs +32 -0
- package/dist/compile/transform.cjs +371 -0
- package/dist/compile/transform.mjs +369 -0
- package/dist/cx/index.cjs +93 -0
- package/dist/cx/index.mjs +85 -0
- package/dist/detect-fw/index.cjs +384 -0
- package/dist/detect-fw/index.mjs +379 -0
- package/dist/dev/client.cjs +39 -0
- package/dist/dev/client.mjs +38 -0
- package/dist/dev/plugin/browser.cjs +11 -0
- package/dist/dev/plugin/browser.mjs +9 -0
- package/dist/dev/plugin/server.cjs +86 -0
- package/dist/dev/plugin/server.mjs +78 -0
- package/dist/dev/port.cjs +46 -0
- package/dist/dev/port.mjs +43 -0
- package/dist/dev/runtime.cjs +28 -0
- package/dist/dev/runtime.mjs +29 -0
- package/dist/dev/server.cjs +808 -0
- package/dist/dev/server.mjs +805 -0
- package/dist/dev/shared.cjs +6 -0
- package/dist/dev/shared.mjs +5 -0
- package/dist/eslint-plugin/index.cjs +66 -0
- package/dist/eslint-plugin/index.mjs +66 -0
- package/dist/eslint-plugin/rules/classnames-only.cjs +68 -0
- package/dist/eslint-plugin/rules/classnames-only.mjs +68 -0
- package/dist/eslint-plugin/rules/format-classnames.cjs +137 -0
- package/dist/eslint-plugin/rules/format-classnames.mjs +136 -0
- package/dist/eslint-plugin/rules/no-unknown-classes.cjs +119 -0
- package/dist/eslint-plugin/rules/no-unknown-classes.mjs +119 -0
- package/dist/eslint-plugin/rules/prefer-classnames.cjs +69 -0
- package/dist/eslint-plugin/rules/prefer-classnames.mjs +69 -0
- package/dist/eslint-plugin/rules/prefer-token-values.cjs +197 -0
- package/dist/eslint-plugin/rules/prefer-token-values.mjs +197 -0
- package/dist/eslint-plugin/rules/props-only.cjs +115 -0
- package/dist/eslint-plugin/rules/props-only.mjs +115 -0
- package/dist/eslint-plugin/rules/redundant-cx.cjs +66 -0
- package/dist/eslint-plugin/rules/redundant-cx.mjs +66 -0
- package/dist/eslint-plugin/rules/require-prop-functions.cjs +130 -0
- package/dist/eslint-plugin/rules/require-prop-functions.mjs +130 -0
- package/dist/eslint-plugin/utils/api.cjs +30 -0
- package/dist/eslint-plugin/utils/api.mjs +29 -0
- package/dist/eslint-plugin/utils/ast.cjs +119 -0
- package/dist/eslint-plugin/utils/ast.mjs +112 -0
- package/dist/eslint-plugin/utils/boss-classes.cjs +185 -0
- package/dist/eslint-plugin/utils/boss-classes.mjs +175 -0
- package/dist/eslint-plugin/utils/defaults.cjs +99 -0
- package/dist/eslint-plugin/utils/defaults.mjs +93 -0
- package/dist/eslint-plugin/utils/format.cjs +20 -0
- package/dist/eslint-plugin/utils/format.mjs +19 -0
- package/dist/eslint-plugin/utils/order.cjs +76 -0
- package/dist/eslint-plugin/utils/order.mjs +76 -0
- package/dist/eslint-plugin/utils/property-order.cjs +449 -0
- package/dist/eslint-plugin/utils/property-order.mjs +448 -0
- package/dist/eslint-plugin/utils/static.cjs +36 -0
- package/dist/eslint-plugin/utils/static.mjs +35 -0
- package/dist/fontsource/directory.cjs +39588 -0
- package/dist/fontsource/directory.mjs +39587 -0
- package/dist/fontsource/server.cjs +291 -0
- package/dist/fontsource/server.mjs +282 -0
- package/dist/index.cjs +10 -0
- package/dist/index.mjs +6 -0
- package/dist/log/browser.cjs +28 -0
- package/dist/log/browser.mjs +28 -0
- package/dist/log/server.cjs +32 -0
- package/dist/log/server.mjs +30 -0
- package/dist/merge/index.cjs +590 -0
- package/dist/merge/index.mjs +586 -0
- package/dist/native/browser.cjs +78 -0
- package/dist/native/browser.mjs +77 -0
- package/dist/native/server.cjs +180 -0
- package/dist/native/server.mjs +176 -0
- package/dist/native/styleTypes.cjs +168 -0
- package/dist/native/styleTypes.mjs +164 -0
- package/dist/parser/classname/server.cjs +239 -0
- package/dist/parser/classname/server.mjs +232 -0
- package/dist/parser/jsx/browser.cjs +66 -0
- package/dist/parser/jsx/browser.mjs +63 -0
- package/dist/parser/jsx/extractCode.cjs +99 -0
- package/dist/parser/jsx/extractCode.mjs +98 -0
- package/dist/parser/jsx/extractPrepared.cjs +123 -0
- package/dist/parser/jsx/extractPrepared.mjs +122 -0
- package/dist/parser/jsx/extractProps.cjs +234 -0
- package/dist/parser/jsx/extractProps.mjs +232 -0
- package/dist/parser/jsx/isDOMProp.cjs +17 -0
- package/dist/parser/jsx/isDOMProp.mjs +15 -0
- package/dist/parser/jsx/native.cjs +110 -0
- package/dist/parser/jsx/native.mjs +108 -0
- package/dist/parser/jsx/runtime.cjs +4 -0
- package/dist/parser/jsx/runtime.mjs +3 -0
- package/dist/parser/jsx/server.cjs +278 -0
- package/dist/parser/jsx/server.mjs +268 -0
- package/dist/postcss/index.cjs +16 -0
- package/dist/postcss/index.mjs +16 -0
- package/dist/prop/at/runtime-only.cjs +90 -0
- package/dist/prop/at/runtime-only.mjs +88 -0
- package/dist/prop/at/server.cjs +282 -0
- package/dist/prop/at/server.mjs +268 -0
- package/dist/prop/at/shared.cjs +153 -0
- package/dist/prop/at/shared.mjs +144 -0
- package/dist/prop/bosswind/browser.cjs +18 -0
- package/dist/prop/bosswind/browser.mjs +16 -0
- package/dist/prop/bosswind/runtime-only.cjs +18 -0
- package/dist/prop/bosswind/runtime-only.mjs +16 -0
- package/dist/prop/bosswind/server.cjs +81 -0
- package/dist/prop/bosswind/server.mjs +72 -0
- package/dist/prop/bosswind/shared.cjs +861 -0
- package/dist/prop/bosswind/shared.mjs +855 -0
- package/dist/prop/bosswind/tailwind-theme.cjs +703 -0
- package/dist/prop/bosswind/tailwind-theme.mjs +702 -0
- package/dist/prop/child/runtime-only.cjs +18 -0
- package/dist/prop/child/runtime-only.mjs +15 -0
- package/dist/prop/child/server.cjs +81 -0
- package/dist/prop/child/server.mjs +72 -0
- package/dist/prop/css/getDtsTemplate.cjs +65 -0
- package/dist/prop/css/getDtsTemplate.mjs +63 -0
- package/dist/prop/css/runtime-only.cjs +14 -0
- package/dist/prop/css/runtime-only.mjs +13 -0
- package/dist/prop/css/server.cjs +99 -0
- package/dist/prop/css/server.mjs +90 -0
- package/dist/prop/pseudo/runtime-only.cjs +23 -0
- package/dist/prop/pseudo/runtime-only.mjs +21 -0
- package/dist/prop/pseudo/server.cjs +91 -0
- package/dist/prop/pseudo/server.mjs +82 -0
- package/dist/prop/pseudo/shared.cjs +61 -0
- package/dist/prop/pseudo/shared.mjs +60 -0
- package/dist/reset/server.cjs +34 -0
- package/dist/reset/server.mjs +26 -0
- package/dist/runtime/index.cjs +119 -0
- package/dist/runtime/index.mjs +118 -0
- package/dist/runtime/preact.cjs +4 -0
- package/dist/runtime/preact.mjs +3 -0
- package/dist/runtime/qwik.cjs +21 -0
- package/dist/runtime/qwik.mjs +18 -0
- package/dist/runtime/react.cjs +4 -0
- package/dist/runtime/react.mjs +3 -0
- package/dist/runtime/solid.cjs +15 -0
- package/dist/runtime/solid.mjs +14 -0
- package/dist/runtime/stencil.cjs +25 -0
- package/dist/runtime/stencil.mjs +21 -0
- package/dist/runtime/style.cjs +14 -0
- package/dist/runtime/style.mjs +13 -0
- package/dist/shared/boundaries.cjs +288 -0
- package/dist/shared/boundaries.mjs +285 -0
- package/dist/shared/customCss.cjs +212 -0
- package/dist/shared/customCss.mjs +211 -0
- package/dist/shared/debug.cjs +76 -0
- package/dist/shared/debug.mjs +74 -0
- package/dist/shared/file.cjs +21 -0
- package/dist/shared/file.mjs +19 -0
- package/dist/shared/framework.cjs +10 -0
- package/dist/shared/framework.mjs +9 -0
- package/dist/shared/json.cjs +58 -0
- package/dist/shared/json.mjs +57 -0
- package/dist/shared/types.cjs +11 -0
- package/dist/shared/types.mjs +10 -0
- package/dist/strategy/classic/runtime-only.cjs +190 -0
- package/dist/strategy/classic/runtime-only.mjs +186 -0
- package/dist/strategy/classname-first/runtime-only.cjs +138 -0
- package/dist/strategy/classname-first/runtime-only.mjs +134 -0
- package/dist/strategy/classname-first/server.cjs +139 -0
- package/dist/strategy/classname-first/server.mjs +133 -0
- package/dist/strategy/classname-only/server.cjs +43 -0
- package/dist/strategy/classname-only/server.mjs +35 -0
- package/dist/strategy/inline-first/browser.cjs +61 -0
- package/dist/strategy/inline-first/browser.mjs +58 -0
- package/dist/strategy/inline-first/runtime-only.cjs +159 -0
- package/dist/strategy/inline-first/runtime-only.mjs +155 -0
- package/dist/strategy/inline-first/server.cjs +92 -0
- package/dist/strategy/inline-first/server.mjs +83 -0
- package/dist/strategy/runtime/runtime-only.cjs +24 -0
- package/dist/strategy/runtime/runtime-only.mjs +22 -0
- package/dist/strategy/runtime/server.cjs +72 -0
- package/dist/strategy/runtime/server.mjs +63 -0
- package/dist/strategy/runtime-only/css.cjs +183 -0
- package/dist/strategy/runtime-only/css.mjs +181 -0
- package/dist/tasks/build.cjs +88 -0
- package/dist/tasks/build.mjs +84 -0
- package/dist/tasks/compile.cjs +12 -0
- package/dist/tasks/compile.mjs +12 -0
- package/dist/tasks/postcss.cjs +116 -0
- package/dist/tasks/postcss.mjs +113 -0
- package/dist/tasks/session.cjs +46 -0
- package/dist/tasks/session.mjs +42 -0
- package/dist/tasks/watch.cjs +102 -0
- package/dist/tasks/watch.mjs +99 -0
- package/dist/transform/cache.cjs +24 -0
- package/dist/transform/cache.mjs +21 -0
- package/dist/transform/processFile.cjs +26 -0
- package/dist/transform/processFile.mjs +24 -0
- package/dist/use/token/browser.cjs +65 -0
- package/dist/use/token/browser.mjs +61 -0
- package/dist/use/token/runtime-only.cjs +245 -0
- package/dist/use/token/runtime-only.mjs +239 -0
- package/dist/use/token/server.cjs +325 -0
- package/dist/use/token/server.mjs +313 -0
- package/dist/use/token/vars.cjs +47 -0
- package/dist/use/token/vars.mjs +46 -0
- package/package.json +300 -4
- package/src/api/config.d.ts +1 -0
- package/src/fontsource/types.d.ts +50 -0
- package/src/packages/document-create-element/createElement.browser.js +3 -0
- package/src/packages/document-create-element/createElement.js +7 -0
- package/src/packages/document-create-element/package.json +17 -0
- package/src/packages/is-css-prop/browser.js +13 -0
- package/src/packages/is-css-prop/index.js +13 -0
- package/src/packages/is-css-prop/package-lock.json +52 -0
- package/src/packages/is-css-prop/package.json +17 -0
- package/src/prop/css/csstype.json +4387 -0
- package/src/prop/css/package.json +3 -0
- package/src/reset/reset.css +259 -0
|
@@ -0,0 +1,449 @@
|
|
|
1
|
+
|
|
2
|
+
//#region src/eslint-plugin/utils/property-order.js
|
|
3
|
+
const propertyOrder = [
|
|
4
|
+
"composes",
|
|
5
|
+
"all",
|
|
6
|
+
"position",
|
|
7
|
+
"inset",
|
|
8
|
+
"inset-block",
|
|
9
|
+
"inset-block-start",
|
|
10
|
+
"inset-block-end",
|
|
11
|
+
"inset-inline",
|
|
12
|
+
"inset-inline-start",
|
|
13
|
+
"inset-inline-end",
|
|
14
|
+
"top",
|
|
15
|
+
"right",
|
|
16
|
+
"bottom",
|
|
17
|
+
"left",
|
|
18
|
+
"z-index",
|
|
19
|
+
"float",
|
|
20
|
+
"clear",
|
|
21
|
+
"box-sizing",
|
|
22
|
+
"display",
|
|
23
|
+
"visibility",
|
|
24
|
+
"flex",
|
|
25
|
+
"flex-grow",
|
|
26
|
+
"flex-shrink",
|
|
27
|
+
"flex-basis",
|
|
28
|
+
"flex-flow",
|
|
29
|
+
"flex-direction",
|
|
30
|
+
"flex-wrap",
|
|
31
|
+
"-webkit-box-orient",
|
|
32
|
+
"grid",
|
|
33
|
+
"grid-area",
|
|
34
|
+
"grid-template",
|
|
35
|
+
"grid-template-areas",
|
|
36
|
+
"grid-template-rows",
|
|
37
|
+
"grid-template-columns",
|
|
38
|
+
"grid-row",
|
|
39
|
+
"grid-row-start",
|
|
40
|
+
"grid-row-end",
|
|
41
|
+
"grid-column",
|
|
42
|
+
"grid-column-start",
|
|
43
|
+
"grid-column-end",
|
|
44
|
+
"grid-auto-rows",
|
|
45
|
+
"grid-auto-columns",
|
|
46
|
+
"grid-auto-flow",
|
|
47
|
+
"grid-gap",
|
|
48
|
+
"grid-row-gap",
|
|
49
|
+
"grid-column-gap",
|
|
50
|
+
"gap",
|
|
51
|
+
"row-gap",
|
|
52
|
+
"column-gap",
|
|
53
|
+
"place-content",
|
|
54
|
+
"place-items",
|
|
55
|
+
"place-self",
|
|
56
|
+
"align-content",
|
|
57
|
+
"align-items",
|
|
58
|
+
"align-self",
|
|
59
|
+
"justify-content",
|
|
60
|
+
"justify-items",
|
|
61
|
+
"justify-self",
|
|
62
|
+
"order",
|
|
63
|
+
"inline-size",
|
|
64
|
+
"min-inline-size",
|
|
65
|
+
"max-inline-size",
|
|
66
|
+
"width",
|
|
67
|
+
"min-width",
|
|
68
|
+
"max-width",
|
|
69
|
+
"block-size",
|
|
70
|
+
"min-block-size",
|
|
71
|
+
"max-block-size",
|
|
72
|
+
"height",
|
|
73
|
+
"min-height",
|
|
74
|
+
"max-height",
|
|
75
|
+
"aspect-ratio",
|
|
76
|
+
"contain-intrinsic-inline-size",
|
|
77
|
+
"contain-intrinsic-block-size",
|
|
78
|
+
"contain-intrinsic-size",
|
|
79
|
+
"contain-intrinsic-width",
|
|
80
|
+
"contain-intrinsic-height",
|
|
81
|
+
"padding",
|
|
82
|
+
"padding-block",
|
|
83
|
+
"padding-block-start",
|
|
84
|
+
"padding-block-end",
|
|
85
|
+
"padding-inline",
|
|
86
|
+
"padding-inline-start",
|
|
87
|
+
"padding-inline-end",
|
|
88
|
+
"padding-top",
|
|
89
|
+
"padding-right",
|
|
90
|
+
"padding-bottom",
|
|
91
|
+
"padding-left",
|
|
92
|
+
"margin",
|
|
93
|
+
"margin-block",
|
|
94
|
+
"margin-block-start",
|
|
95
|
+
"margin-block-end",
|
|
96
|
+
"margin-inline",
|
|
97
|
+
"margin-inline-start",
|
|
98
|
+
"margin-inline-end",
|
|
99
|
+
"margin-top",
|
|
100
|
+
"margin-right",
|
|
101
|
+
"margin-bottom",
|
|
102
|
+
"margin-left",
|
|
103
|
+
"contain",
|
|
104
|
+
"container",
|
|
105
|
+
"container-name",
|
|
106
|
+
"container-type",
|
|
107
|
+
"content-visibility",
|
|
108
|
+
"overflow",
|
|
109
|
+
"overflow-inline",
|
|
110
|
+
"overflow-block",
|
|
111
|
+
"overflow-x",
|
|
112
|
+
"overflow-y",
|
|
113
|
+
"scrollbar-gutter",
|
|
114
|
+
"-webkit-overflow-scrolling",
|
|
115
|
+
"-ms-overflow-x",
|
|
116
|
+
"-ms-overflow-y",
|
|
117
|
+
"-ms-overflow-style",
|
|
118
|
+
"text-overflow",
|
|
119
|
+
"-webkit-line-clamp",
|
|
120
|
+
"line-clamp",
|
|
121
|
+
"scroll-behaviour",
|
|
122
|
+
"overscroll-behavior",
|
|
123
|
+
"overscroll-behavior-inline",
|
|
124
|
+
"overscroll-behavior-block",
|
|
125
|
+
"overscroll-behavior-x",
|
|
126
|
+
"overscroll-behavior-y",
|
|
127
|
+
"font",
|
|
128
|
+
"font-family",
|
|
129
|
+
"font-size",
|
|
130
|
+
"font-size-adjust",
|
|
131
|
+
"font-variation-settings",
|
|
132
|
+
"font-style",
|
|
133
|
+
"font-weight",
|
|
134
|
+
"font-optical-sizing",
|
|
135
|
+
"font-stretch",
|
|
136
|
+
"font-feature-settings",
|
|
137
|
+
"font-kerning",
|
|
138
|
+
"font-variant",
|
|
139
|
+
"font-variant-ligatures",
|
|
140
|
+
"font-variant-caps",
|
|
141
|
+
"font-variant-alternates",
|
|
142
|
+
"font-variant-numeric",
|
|
143
|
+
"font-variant-east-asian",
|
|
144
|
+
"font-variant-position",
|
|
145
|
+
"-webkit-font-smoothing",
|
|
146
|
+
"-moz-osx-font-smoothing",
|
|
147
|
+
"font-smooth",
|
|
148
|
+
"font-synthesis",
|
|
149
|
+
"font-synthesis-weight",
|
|
150
|
+
"font-synthesis-style",
|
|
151
|
+
"font-synthesis-small-caps",
|
|
152
|
+
"line-height",
|
|
153
|
+
"vertical-align",
|
|
154
|
+
"alignment-baseline",
|
|
155
|
+
"baseline-shift",
|
|
156
|
+
"dominant-baseline",
|
|
157
|
+
"base-palette",
|
|
158
|
+
"override-colors",
|
|
159
|
+
"font-palette",
|
|
160
|
+
"color",
|
|
161
|
+
"-webkit-text-fill-color",
|
|
162
|
+
"-webkit-text-stroke",
|
|
163
|
+
"-webkit-text-stroke-width",
|
|
164
|
+
"-webkit-text-stroke-color",
|
|
165
|
+
"text-align",
|
|
166
|
+
"text-align-last",
|
|
167
|
+
"text-justify",
|
|
168
|
+
"text-indent",
|
|
169
|
+
"text-transform",
|
|
170
|
+
"word-spacing",
|
|
171
|
+
"letter-spacing",
|
|
172
|
+
"hyphens",
|
|
173
|
+
"hyphenate-character",
|
|
174
|
+
"line-break",
|
|
175
|
+
"word-break",
|
|
176
|
+
"text-wrap",
|
|
177
|
+
"text-wrap-mode",
|
|
178
|
+
"text-wrap-style",
|
|
179
|
+
"word-wrap",
|
|
180
|
+
"overflow-wrap",
|
|
181
|
+
"tab-size",
|
|
182
|
+
"white-space",
|
|
183
|
+
"white-space-collapse",
|
|
184
|
+
"text-emphasis",
|
|
185
|
+
"text-emphasis-color",
|
|
186
|
+
"text-emphasis-style",
|
|
187
|
+
"text-emphasis-position",
|
|
188
|
+
"text-decoration",
|
|
189
|
+
"text-decoration-line",
|
|
190
|
+
"text-decoration-thickness",
|
|
191
|
+
"text-decoration-style",
|
|
192
|
+
"text-decoration-color",
|
|
193
|
+
"text-decoration-skip-ink",
|
|
194
|
+
"text-underline-position",
|
|
195
|
+
"text-underline-offset",
|
|
196
|
+
"text-shadow",
|
|
197
|
+
"ruby-position",
|
|
198
|
+
"ruby-align",
|
|
199
|
+
"src",
|
|
200
|
+
"font-display",
|
|
201
|
+
"unicode-range",
|
|
202
|
+
"size-adjust",
|
|
203
|
+
"ascent-override",
|
|
204
|
+
"descent-override",
|
|
205
|
+
"line-gap-override",
|
|
206
|
+
"appearance",
|
|
207
|
+
"accent-color",
|
|
208
|
+
"pointer-events",
|
|
209
|
+
"-ms-touch-action",
|
|
210
|
+
"touch-action",
|
|
211
|
+
"cursor",
|
|
212
|
+
"caret-color",
|
|
213
|
+
"zoom",
|
|
214
|
+
"resize",
|
|
215
|
+
"user-select",
|
|
216
|
+
"-webkit-user-select",
|
|
217
|
+
"nav-index",
|
|
218
|
+
"nav-up",
|
|
219
|
+
"nav-right",
|
|
220
|
+
"nav-down",
|
|
221
|
+
"nav-left",
|
|
222
|
+
"outline",
|
|
223
|
+
"outline-width",
|
|
224
|
+
"outline-style",
|
|
225
|
+
"outline-color",
|
|
226
|
+
"outline-offset",
|
|
227
|
+
"color-scheme",
|
|
228
|
+
"forced-color-adjust",
|
|
229
|
+
"print-color-adjust",
|
|
230
|
+
"table-layout",
|
|
231
|
+
"empty-cells",
|
|
232
|
+
"caption-side",
|
|
233
|
+
"border-spacing",
|
|
234
|
+
"border-collapse",
|
|
235
|
+
"content",
|
|
236
|
+
"quotes",
|
|
237
|
+
"list-style",
|
|
238
|
+
"list-style-position",
|
|
239
|
+
"list-style-type",
|
|
240
|
+
"list-style-image",
|
|
241
|
+
"counter-reset",
|
|
242
|
+
"counter-set",
|
|
243
|
+
"counter-increment",
|
|
244
|
+
"scroll-snap-type",
|
|
245
|
+
"scroll-snap-align",
|
|
246
|
+
"scroll-snap-stop",
|
|
247
|
+
"scroll-padding",
|
|
248
|
+
"scroll-padding-block",
|
|
249
|
+
"scroll-padding-block-start",
|
|
250
|
+
"scroll-padding-block-end",
|
|
251
|
+
"scroll-padding-inline",
|
|
252
|
+
"scroll-padding-inline-start",
|
|
253
|
+
"scroll-padding-inline-end",
|
|
254
|
+
"scroll-padding-top",
|
|
255
|
+
"scroll-padding-right",
|
|
256
|
+
"scroll-padding-bottom",
|
|
257
|
+
"scroll-padding-left",
|
|
258
|
+
"scroll-margin",
|
|
259
|
+
"scroll-margin-block",
|
|
260
|
+
"scroll-margin-block-start",
|
|
261
|
+
"scroll-margin-block-end",
|
|
262
|
+
"scroll-margin-inline",
|
|
263
|
+
"scroll-margin-inline-start",
|
|
264
|
+
"scroll-margin-inline-end",
|
|
265
|
+
"scroll-margin-top",
|
|
266
|
+
"scroll-margin-right",
|
|
267
|
+
"scroll-margin-bottom",
|
|
268
|
+
"scroll-margin-left",
|
|
269
|
+
"scrollbar-color",
|
|
270
|
+
"scrollbar-width",
|
|
271
|
+
"object-fit",
|
|
272
|
+
"object-position",
|
|
273
|
+
"-ms-interpolation-mode",
|
|
274
|
+
"image-orientation",
|
|
275
|
+
"image-rendering",
|
|
276
|
+
"image-resolution",
|
|
277
|
+
"background",
|
|
278
|
+
"background-color",
|
|
279
|
+
"background-image",
|
|
280
|
+
"-ms-filter:\\'progid:DXImageTransform.Microsoft.gradient",
|
|
281
|
+
"filter:progid:DXImageTransform.Microsoft.gradient",
|
|
282
|
+
"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader",
|
|
283
|
+
"background-repeat",
|
|
284
|
+
"background-attachment",
|
|
285
|
+
"background-position",
|
|
286
|
+
"background-position-x",
|
|
287
|
+
"background-position-y",
|
|
288
|
+
"background-clip",
|
|
289
|
+
"background-origin",
|
|
290
|
+
"background-size",
|
|
291
|
+
"border",
|
|
292
|
+
"border-color",
|
|
293
|
+
"border-style",
|
|
294
|
+
"border-width",
|
|
295
|
+
"border-block",
|
|
296
|
+
"border-block-start",
|
|
297
|
+
"border-block-start-color",
|
|
298
|
+
"border-block-start-style",
|
|
299
|
+
"border-block-start-width",
|
|
300
|
+
"border-block-end",
|
|
301
|
+
"border-block-end-color",
|
|
302
|
+
"border-block-end-style",
|
|
303
|
+
"border-block-end-width",
|
|
304
|
+
"border-inline",
|
|
305
|
+
"border-inline-start",
|
|
306
|
+
"border-inline-start-color",
|
|
307
|
+
"border-inline-start-style",
|
|
308
|
+
"border-inline-start-width",
|
|
309
|
+
"border-inline-end",
|
|
310
|
+
"border-inline-end-color",
|
|
311
|
+
"border-inline-end-style",
|
|
312
|
+
"border-inline-end-width",
|
|
313
|
+
"border-top",
|
|
314
|
+
"border-top-color",
|
|
315
|
+
"border-top-style",
|
|
316
|
+
"border-top-width",
|
|
317
|
+
"border-right",
|
|
318
|
+
"border-right-color",
|
|
319
|
+
"border-right-style",
|
|
320
|
+
"border-right-width",
|
|
321
|
+
"border-bottom",
|
|
322
|
+
"border-bottom-color",
|
|
323
|
+
"border-bottom-style",
|
|
324
|
+
"border-bottom-width",
|
|
325
|
+
"border-left",
|
|
326
|
+
"border-left-color",
|
|
327
|
+
"border-left-style",
|
|
328
|
+
"border-left-width",
|
|
329
|
+
"border-radius",
|
|
330
|
+
"border-start-start-radius",
|
|
331
|
+
"border-start-end-radius",
|
|
332
|
+
"border-end-start-radius",
|
|
333
|
+
"border-end-end-radius",
|
|
334
|
+
"border-top-left-radius",
|
|
335
|
+
"border-top-right-radius",
|
|
336
|
+
"border-bottom-right-radius",
|
|
337
|
+
"border-bottom-left-radius",
|
|
338
|
+
"border-image",
|
|
339
|
+
"border-image-source",
|
|
340
|
+
"border-image-slice",
|
|
341
|
+
"border-image-width",
|
|
342
|
+
"border-image-outset",
|
|
343
|
+
"border-image-repeat",
|
|
344
|
+
"box-shadow",
|
|
345
|
+
"background-blend-mode",
|
|
346
|
+
"isolation",
|
|
347
|
+
"mix-blend-mode",
|
|
348
|
+
"filter:progid:DXImageTransform.Microsoft.Alpha(Opacity",
|
|
349
|
+
"-ms-filter:\\'progid:DXImageTransform.Microsoft.Alpha",
|
|
350
|
+
"opacity",
|
|
351
|
+
"filter",
|
|
352
|
+
"backdrop-filter",
|
|
353
|
+
"clip",
|
|
354
|
+
"clip-path",
|
|
355
|
+
"clip-rule",
|
|
356
|
+
"mask-border",
|
|
357
|
+
"mask-border-source",
|
|
358
|
+
"mask-border-slice",
|
|
359
|
+
"mask-border-width",
|
|
360
|
+
"mask-border-outset",
|
|
361
|
+
"mask-border-repeat",
|
|
362
|
+
"mask-border-mode",
|
|
363
|
+
"mask",
|
|
364
|
+
"mask-image",
|
|
365
|
+
"mask-mode",
|
|
366
|
+
"mask-repeat",
|
|
367
|
+
"mask-position",
|
|
368
|
+
"mask-clip",
|
|
369
|
+
"mask-origin",
|
|
370
|
+
"mask-size",
|
|
371
|
+
"mask-composite",
|
|
372
|
+
"mask-type",
|
|
373
|
+
"shape-outside",
|
|
374
|
+
"shape-image-threshold",
|
|
375
|
+
"shape-margin",
|
|
376
|
+
"direction",
|
|
377
|
+
"unicode-bidi",
|
|
378
|
+
"writing-mode",
|
|
379
|
+
"text-orientation",
|
|
380
|
+
"text-combine-upright",
|
|
381
|
+
"text-anchor",
|
|
382
|
+
"fill",
|
|
383
|
+
"fill-rule",
|
|
384
|
+
"fill-opacity",
|
|
385
|
+
"stroke",
|
|
386
|
+
"stroke-opacity",
|
|
387
|
+
"stroke-width",
|
|
388
|
+
"stroke-linecap",
|
|
389
|
+
"stroke-linejoin",
|
|
390
|
+
"stroke-miterlimit",
|
|
391
|
+
"stroke-dasharray",
|
|
392
|
+
"stroke-dashoffset",
|
|
393
|
+
"color-interpolation",
|
|
394
|
+
"color-interpolation-filters",
|
|
395
|
+
"flood-color",
|
|
396
|
+
"flood-opacity",
|
|
397
|
+
"lighting-color",
|
|
398
|
+
"marker",
|
|
399
|
+
"marker-start",
|
|
400
|
+
"marker-mid",
|
|
401
|
+
"marker-end",
|
|
402
|
+
"stop-color",
|
|
403
|
+
"stop-opacity",
|
|
404
|
+
"paint-order",
|
|
405
|
+
"shape-rendering",
|
|
406
|
+
"text-rendering",
|
|
407
|
+
"transform",
|
|
408
|
+
"transform-origin",
|
|
409
|
+
"transform-box",
|
|
410
|
+
"transform-style",
|
|
411
|
+
"rotate",
|
|
412
|
+
"scale",
|
|
413
|
+
"translate",
|
|
414
|
+
"perspective",
|
|
415
|
+
"perspective-origin",
|
|
416
|
+
"backface-visibility",
|
|
417
|
+
"transition",
|
|
418
|
+
"transition-delay",
|
|
419
|
+
"transition-timing-function",
|
|
420
|
+
"transition-duration",
|
|
421
|
+
"transition-property",
|
|
422
|
+
"view-transition-name",
|
|
423
|
+
"view-transition-class",
|
|
424
|
+
"animation",
|
|
425
|
+
"animation-name",
|
|
426
|
+
"animation-duration",
|
|
427
|
+
"animation-timing-function",
|
|
428
|
+
"animation-delay",
|
|
429
|
+
"animation-iteration-count",
|
|
430
|
+
"animation-direction",
|
|
431
|
+
"animation-fill-mode",
|
|
432
|
+
"animation-play-state",
|
|
433
|
+
"animation-composition",
|
|
434
|
+
"offset",
|
|
435
|
+
"offset-position",
|
|
436
|
+
"offset-path",
|
|
437
|
+
"offset-distance",
|
|
438
|
+
"offset-rotate",
|
|
439
|
+
"offset-anchor",
|
|
440
|
+
"will-change",
|
|
441
|
+
"break-before",
|
|
442
|
+
"break-after",
|
|
443
|
+
"break-inside",
|
|
444
|
+
"widows",
|
|
445
|
+
"orphans"
|
|
446
|
+
];
|
|
447
|
+
|
|
448
|
+
//#endregion
|
|
449
|
+
exports.propertyOrder = propertyOrder;
|