@stylexjs/shared 0.2.0-beta.9 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (183) hide show
  1. package/README.md +3 -3
  2. package/lib/common-types.d.ts +49 -0
  3. package/lib/common-types.js.flow +64 -0
  4. package/lib/convert-to-className.d.ts +16 -0
  5. package/lib/convert-to-className.js +17 -26
  6. package/lib/convert-to-className.js.flow +23 -0
  7. package/lib/generate-css-rule.d.ts +17 -0
  8. package/lib/generate-css-rule.js +6 -17
  9. package/lib/generate-css-rule.js.flow +17 -0
  10. package/lib/hash.d.ts +11 -0
  11. package/lib/hash.js +3 -27
  12. package/lib/hash.js.flow +10 -0
  13. package/lib/index.d.ts +42 -85
  14. package/lib/index.js +21 -29
  15. package/lib/index.js.flow +57 -3
  16. package/lib/messages.d.ts +41 -0
  17. package/lib/messages.js +33 -53
  18. package/lib/messages.js.flow +44 -0
  19. package/lib/physical-rtl/generate-ltr.d.ts +11 -0
  20. package/lib/physical-rtl/generate-ltr.js +18 -46
  21. package/lib/physical-rtl/generate-ltr.js.flow +12 -0
  22. package/lib/physical-rtl/generate-rtl.d.ts +13 -0
  23. package/lib/physical-rtl/generate-rtl.js +18 -50
  24. package/lib/physical-rtl/generate-rtl.js.flow +12 -0
  25. package/lib/preprocess-rules/PreRule.d.ts +52 -0
  26. package/lib/preprocess-rules/PreRule.js +87 -0
  27. package/lib/preprocess-rules/PreRule.js.flow +64 -0
  28. package/lib/preprocess-rules/application-order.d.ts +290 -0
  29. package/lib/preprocess-rules/application-order.js +60 -133
  30. package/lib/preprocess-rules/application-order.js.flow +241 -0
  31. package/lib/preprocess-rules/basic-validation.d.ts +13 -0
  32. package/lib/preprocess-rules/basic-validation.js +83 -0
  33. package/lib/preprocess-rules/basic-validation.js.flow +13 -0
  34. package/lib/preprocess-rules/flatten-raw-style-obj.d.ts +25 -0
  35. package/lib/preprocess-rules/flatten-raw-style-obj.js +120 -0
  36. package/lib/preprocess-rules/flatten-raw-style-obj.js.flow +27 -0
  37. package/lib/preprocess-rules/index.d.ts +18 -0
  38. package/lib/preprocess-rules/index.js +0 -9
  39. package/lib/preprocess-rules/index.js.flow +19 -0
  40. package/lib/preprocess-rules/legacy-expand-shorthands.d.ts +200 -0
  41. package/lib/preprocess-rules/legacy-expand-shorthands.js +90 -123
  42. package/lib/preprocess-rules/legacy-expand-shorthands.js.flow +179 -0
  43. package/lib/preprocess-rules/property-specificity.d.ts +89 -0
  44. package/lib/preprocess-rules/property-specificity.js +46 -74
  45. package/lib/preprocess-rules/property-specificity.js.flow +98 -0
  46. package/lib/properties/CSS Animations.json +445 -0
  47. package/lib/properties/CSS Backgrounds and Borders.json +1085 -0
  48. package/lib/properties/CSS Basic User Interface.json +365 -0
  49. package/lib/properties/CSS Box Alignment.json +245 -0
  50. package/lib/properties/CSS Box Model.json +501 -0
  51. package/lib/properties/CSS Color.json +100 -0
  52. package/lib/properties/CSS Columns.json +185 -0
  53. package/lib/properties/CSS Containment.json +203 -0
  54. package/lib/properties/CSS Counter Styles.json +56 -0
  55. package/lib/properties/CSS Display.json +20 -0
  56. package/lib/properties/CSS Flexible Box Layout.json +167 -0
  57. package/lib/properties/CSS Fonts.json +684 -0
  58. package/lib/properties/CSS Fragmentation.json +110 -0
  59. package/lib/properties/CSS Generated Content.json +38 -0
  60. package/lib/properties/CSS Grid Layout.json +500 -0
  61. package/lib/properties/CSS Images.json +91 -0
  62. package/lib/properties/CSS Inline.json +38 -0
  63. package/lib/properties/CSS Lists and Counters.json +86 -0
  64. package/lib/properties/CSS Logical Properties.json +1086 -0
  65. package/lib/properties/CSS Masking.json +399 -0
  66. package/lib/properties/CSS Miscellaneous.json +38 -0
  67. package/lib/properties/CSS Motion Path.json +132 -0
  68. package/lib/properties/CSS Overflow.json +216 -0
  69. package/lib/properties/CSS Pages.json +83 -0
  70. package/lib/properties/CSS Positioning.json +166 -0
  71. package/lib/properties/CSS Ruby.json +55 -0
  72. package/lib/properties/CSS Scroll Anchoring.json +19 -0
  73. package/lib/properties/CSS Scroll Snap.json +604 -0
  74. package/lib/properties/CSS Scrollbars.json +38 -0
  75. package/lib/properties/CSS Shapes.json +56 -0
  76. package/lib/properties/CSS Speech.json +20 -0
  77. package/lib/properties/CSS Table.json +115 -0
  78. package/lib/properties/CSS Text Decoration.json +312 -0
  79. package/lib/properties/CSS Text.json +415 -0
  80. package/lib/properties/CSS Transforms.json +188 -0
  81. package/lib/properties/CSS Transitions.json +122 -0
  82. package/lib/properties/CSS Variables.json +20 -0
  83. package/lib/properties/CSS View Transitions.json +20 -0
  84. package/lib/properties/CSS Will Change.json +20 -0
  85. package/lib/properties/CSS Writing Modes.json +92 -0
  86. package/lib/properties/Compositing and Blending.json +62 -0
  87. package/lib/properties/Filter Effects.json +38 -0
  88. package/lib/properties/MathML.json +56 -0
  89. package/lib/properties/Microsoft Extensions.json +885 -0
  90. package/lib/properties/Mozilla Extensions.json +607 -0
  91. package/lib/properties/Pointer Events.json +20 -0
  92. package/lib/properties/WebKit Extensions.json +707 -0
  93. package/lib/properties.json +10122 -0
  94. package/lib/stylex-create-theme.d.ts +26 -0
  95. package/lib/stylex-create-theme.js +67 -0
  96. package/lib/stylex-create-theme.js.flow +19 -0
  97. package/lib/stylex-create.d.ts +23 -0
  98. package/lib/stylex-create.js +30 -146
  99. package/lib/stylex-create.js.flow +30 -0
  100. package/lib/stylex-define-vars.d.ts +29 -0
  101. package/lib/stylex-define-vars.js +73 -0
  102. package/lib/stylex-define-vars.js.flow +26 -0
  103. package/lib/stylex-first-that-works.d.ts +13 -0
  104. package/lib/stylex-first-that-works.js +0 -10
  105. package/lib/stylex-first-that-works.js.flow +12 -0
  106. package/lib/stylex-include.d.ts +18 -0
  107. package/lib/stylex-include.js +2 -12
  108. package/lib/stylex-include.js.flow +20 -0
  109. package/lib/stylex-keyframes.d.ts +17 -0
  110. package/lib/stylex-keyframes.js +6 -26
  111. package/lib/stylex-keyframes.js.flow +20 -0
  112. package/lib/transform-value.d.ts +22 -0
  113. package/lib/transform-value.js +9 -23
  114. package/lib/transform-value.js.flow +25 -0
  115. package/lib/types/index.d.ts +205 -0
  116. package/lib/types/index.js +191 -0
  117. package/lib/types/index.js.flow +241 -0
  118. package/lib/utils/Rule.d.ts +58 -0
  119. package/lib/utils/Rule.js +0 -21
  120. package/lib/utils/Rule.js.flow +64 -0
  121. package/lib/utils/dashify.d.ts +11 -0
  122. package/lib/utils/dashify.js +0 -8
  123. package/lib/utils/dashify.js.flow +10 -0
  124. package/lib/utils/default-options.d.ts +11 -0
  125. package/lib/utils/default-options.js +13 -0
  126. package/lib/utils/default-options.js.flow +25 -0
  127. package/lib/utils/file-based-identifier.d.ts +15 -0
  128. package/lib/utils/file-based-identifier.js +14 -0
  129. package/lib/utils/file-based-identifier.js.flow +14 -0
  130. package/lib/utils/genCSSRule.d.ts +15 -0
  131. package/lib/utils/genCSSRule.js +9 -18
  132. package/lib/utils/genCSSRule.js.flow +15 -0
  133. package/lib/utils/normalize-value.d.ts +16 -0
  134. package/lib/utils/normalize-value.js +8 -15
  135. package/lib/utils/normalize-value.js.flow +16 -0
  136. package/lib/utils/normalizers/convert-camel-case-transition-props.d.ts +14 -0
  137. package/lib/utils/normalizers/convert-camel-case-transition-props.js +23 -0
  138. package/lib/utils/normalizers/convert-camel-case-transition-props.js.flow +13 -0
  139. package/lib/utils/normalizers/convert-camel-case-values.d.ts +14 -0
  140. package/lib/utils/normalizers/convert-camel-case-values.js +23 -0
  141. package/lib/utils/normalizers/convert-camel-case-values.js.flow +13 -0
  142. package/lib/utils/normalizers/detect-unclosed-fns.d.ts +17 -0
  143. package/lib/utils/normalizers/detect-unclosed-fns.js +2 -14
  144. package/lib/utils/normalizers/detect-unclosed-fns.js.flow +16 -0
  145. package/lib/utils/normalizers/font-size-px-to-rem.d.ts +19 -0
  146. package/lib/utils/normalizers/font-size-px-to-rem.js +9 -19
  147. package/lib/utils/normalizers/font-size-px-to-rem.js.flow +18 -0
  148. package/lib/utils/normalizers/leading-zero.d.ts +17 -0
  149. package/lib/utils/normalizers/leading-zero.js +0 -12
  150. package/lib/utils/normalizers/leading-zero.js.flow +16 -0
  151. package/lib/utils/normalizers/quotes.d.ts +18 -0
  152. package/lib/utils/normalizers/quotes.js +0 -13
  153. package/lib/utils/normalizers/quotes.js.flow +17 -0
  154. package/lib/utils/normalizers/timings.d.ts +18 -0
  155. package/lib/utils/normalizers/timings.js +0 -14
  156. package/lib/utils/normalizers/timings.js.flow +17 -0
  157. package/lib/utils/normalizers/whitespace.d.ts +19 -0
  158. package/lib/utils/normalizers/whitespace.js +0 -15
  159. package/lib/utils/normalizers/whitespace.js.flow +18 -0
  160. package/lib/utils/normalizers/zero-dimensions.d.ts +19 -0
  161. package/lib/utils/normalizers/zero-dimensions.js +0 -15
  162. package/lib/utils/normalizers/zero-dimensions.js.flow +18 -0
  163. package/lib/utils/object-utils.d.ts +66 -0
  164. package/lib/utils/object-utils.js +21 -13
  165. package/lib/utils/object-utils.js.flow +77 -0
  166. package/lib/utils/property-priorities.d.ts +11 -0
  167. package/lib/utils/property-priorities.js +516 -101
  168. package/lib/utils/property-priorities.js.flow +10 -0
  169. package/lib/utils/split-css-value.d.ts +14 -0
  170. package/lib/utils/split-css-value.js +0 -14
  171. package/lib/utils/split-css-value.js.flow +15 -0
  172. package/lib/validate.d.ts +12 -0
  173. package/lib/validate.js +1 -10
  174. package/lib/validate.js.flow +12 -0
  175. package/package.json +4 -5
  176. package/lib/expand-shorthands.d.ts +0 -5
  177. package/lib/expand-shorthands.js +0 -330
  178. package/lib/namespace-transforms/__tests__/preflatten.test.js +0 -120
  179. package/lib/namespace-transforms/preflatten.js +0 -89
  180. package/lib/preprocess-rules/expand-shorthands.js +0 -156
  181. package/lib/preprocess-rules/null-out-longhand.js +0 -310
  182. package/lib/preprocess-rules/react-native-web.js +0 -142
  183. package/lib/stylex-defaultValue.js +0 -397
@@ -1,89 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = preflatten;
7
- var _Rule = require("../utils/Rule");
8
- /**
9
- * Copyright (c) Meta Platforms, Inc. and affiliates.
10
- *
11
- * This source code is licensed under the MIT license found in the
12
- * LICENSE file in the root directory of this source tree.
13
- *
14
- *
15
- */
16
-
17
- /// This function takes a Raw Style Object and converts into a flat object of rules.
18
- ///
19
- /// 1. The object is "flat": There will be no nested objects after this function.
20
- /// 2. The values are "rules": Each value is the representation of a CSS Rule.
21
- function preflatten(namespace) {
22
- const result = {};
23
- for (const key of Object.keys(namespace)) {
24
- const value = namespace[key];
25
- if (value === null) {
26
- result[key] = null;
27
- } else if (Array.isArray(value)) {
28
- const allRules = getNestedRules(key, value);
29
- if (allRules.length > 1) {
30
- result[key] = new _Rule.RawRuleList(allRules);
31
- } else if (allRules.length === 1) {
32
- result[key] = allRules[0];
33
- } else if (allRules.length === 0) {
34
- result[key] = null;
35
- }
36
- } else if (typeof value === 'object' && !Array.isArray(value)) {
37
- if (key.startsWith('@') || key.startsWith(':')) {
38
- for (const [nestedKey, nestedValue] of Object.entries(value)) {
39
- if (nestedValue != null && typeof nestedValue === 'object') {
40
- throw new Error('Pseudo and At-Rules cannot be nested.');
41
- }
42
- result[`${key}_${nestedKey}`] = new _Rule.RawRule(nestedKey, nestedValue, key.startsWith(':') ? [key] : [], key.startsWith('@') ? [key] : []);
43
- }
44
- } else {
45
- /*:: (value: RawStyles); */
46
- const allRules = getNestedRules(key, value);
47
- if (allRules.length > 1) {
48
- result[key] = new _Rule.RawRuleList(allRules);
49
- } else if (allRules.length === 1) {
50
- result[key] = allRules[0];
51
- } else if (allRules.length === 0) {
52
- result[key] = null;
53
- }
54
- }
55
- } else {
56
- result[key] = new _Rule.RawRule(key, value, [], []);
57
- }
58
- }
59
- return result;
60
- }
61
- function getNestedRules(key, value) {
62
- let pseudos = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : [];
63
- let atRules = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : [];
64
- const result = [];
65
- if (value === null) {
66
- return result;
67
- } else if (Array.isArray(value)) {
68
- result.push(new _Rule.RawRuleList(value.map(val => new _Rule.RawRule(key, val, pseudos, atRules))));
69
- } else if (typeof value === 'object') {
70
- for (const nestedKey of Object.keys(value)) {
71
- const nestedValue = value[nestedKey];
72
- if (nestedKey.startsWith('@')) {
73
- result.push(...getNestedRules(key, nestedValue, pseudos, [...atRules, nestedKey]));
74
- } else if (nestedKey.startsWith(':')) {
75
- result.push(...getNestedRules(key, nestedValue, [...pseudos, nestedKey], atRules));
76
- } else if (nestedKey === 'default') {
77
- result.push(...getNestedRules(key, nestedValue, pseudos, atRules));
78
- } else {
79
- // This can be updated when we support more complex styles, such
80
- // as applying a style conditionally when a parent is hovered.
81
- throw new Error('Complex Selectors (combinators) are not supported yet.');
82
- }
83
- }
84
- } else {
85
- // primitive value
86
- result.push(new _Rule.RawRule(key, value, pseudos, atRules));
87
- }
88
- return result;
89
- }
@@ -1,156 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _splitCssValue = _interopRequireDefault(require("../utils/split-css-value"));
8
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
9
- /**
10
- * Copyright (c) Meta Platforms, Inc. and affiliates.
11
- *
12
- * This source code is licensed under the MIT license found in the
13
- * LICENSE file in the root directory of this source tree.
14
- *
15
- *
16
- */
17
-
18
- // TODO: to be added later.
19
- // const aliases = {
20
- // marginInlineStart: (rawValue) => [['marginStart', rawValue]],
21
- // marginInlineEnd: (rawValue) => [['marginEnd', rawValue]],
22
- // marginInline: (rawValue) => [
23
- // ['marginStart', rawValue],
24
- // ['marginEnd', rawValue],
25
- // ],
26
- // paddingInlineStart: (rawValue) => [['paddingStart', rawValue]],
27
- // paddingInlineEnd: (rawValue) => [['paddingEnd', rawValue]],
28
- // paddingInline: (rawValue) => [
29
- // ['paddingStart', rawValue],
30
- // ['paddingEnd', rawValue],
31
- // ],
32
- // // 'borderInlineStart': (rawValue) => [['borderStart', rawValue]],
33
- // // 'borderInlineEnd': (rawValue) => [['borderEnd', rawValue]],
34
- // // // This will need to change.
35
- // // 'borderInline': (rawValue) => [
36
- // // ['borderStart', rawValue],
37
- // // ['borderEnd', rawValue],
38
- // // ],
39
- // };
40
-
41
- /**
42
- * Shorthand properties:
43
- * - [x] all - Should be banned
44
- * - [ ] animation
45
- * - [ ] background
46
- * - [-] border
47
- * - [x] border-block-end
48
- * - [x] border-block-start
49
- * - [ ] border-bottom
50
- * - [x] border-color
51
- * - [x] border-image
52
- * - [x] border-inline-end
53
- * - [x] border-inline-start
54
- * - [ ] border-left
55
- * - [x] border-radius
56
- * - [ ] border-right
57
- * - [x] border-style
58
- * - [ ] border-top
59
- * - [x] border-width
60
- * - [ ] column-rule
61
- * - [ ] columns
62
- * - [ ] flex
63
- * - [ ] flex-flow
64
- * - [ ] font
65
- * - [ ] gap
66
- * - [ ] grid
67
- * - [ ] grid-area
68
- * - [ ] grid-column
69
- * - [ ] grid-row
70
- * - [ ] grid-template
71
- * - [ ] list-style
72
- * - [x] margin
73
- * - [ ] mask
74
- * - [ ] offset
75
- * - [ ] outline
76
- * - [x] overflow
77
- * - [x] padding
78
- * - [ ] place-content
79
- * - [ ] place-items
80
- * - [ ] place-self
81
- * - [ ] scroll-margin
82
- * - [ ] scroll-padding
83
- * - [ ] text-decoration
84
- * - [ ] text-emphasis
85
- * - [ ] transition
86
- */
87
-
88
- const expansions = {
89
- // ...aliases,
90
- border: rawValue => {
91
- return [['borderTop', rawValue], ['borderEnd', rawValue], ['borderBottom', rawValue], ['borderStart', rawValue]];
92
- },
93
- /*
94
- // Add this later, as this will be a breaking change
95
- border: (rawValue: string): Array<[string, string]> => {
96
- if (typeof rawValue === 'number') {
97
- return expansions.borderWidth(rawValue);
98
- }
99
- const [width, style, color] = splitValue(rawValue);
100
- return [
101
- ...expansions.borderWidth(width),
102
- ...expansions.borderStyle(style),
103
- ...expansions.borderColor(color),
104
- ];
105
- }
106
- */
107
- borderColor: rawValue => {
108
- const [top, right = top, bottom = top, left = right] = (0, _splitCssValue.default)(rawValue);
109
- return [['borderTopColor', top], ['borderEndColor', right], ['borderBottomColor', bottom], ['borderStartColor', left]];
110
- },
111
- borderHorizontal: rawValue => {
112
- return [['borderStart', rawValue], ['borderEnd', rawValue]];
113
- },
114
- borderStyle: rawValue => {
115
- const [top, right = top, bottom = top, left = right] = (0, _splitCssValue.default)(rawValue);
116
- return [['borderTopStyle', top], ['borderEndStyle', right], ['borderBottomStyle', bottom], ['borderStartStyle', left]];
117
- },
118
- borderVertical: rawValue => {
119
- return [['borderTop', rawValue], ['borderBottom', rawValue]];
120
- },
121
- borderWidth: rawValue => {
122
- const [top, right = top, bottom = top, left = right] = typeof rawValue === 'number' ? [rawValue] : (0, _splitCssValue.default)(rawValue);
123
- return [['borderTopWidth', top], ['borderEndWidth', right], ['borderBottomWidth', bottom], ['borderStartWidth', left]];
124
- },
125
- borderRadius: rawValue => {
126
- const [top, right = top, bottom = top, left = right] = typeof rawValue === 'string' ? (0, _splitCssValue.default)(rawValue) : typeof rawValue === 'number' ? [rawValue] : rawValue; // remove
127
-
128
- return [['borderTopStartRadius', top], ['borderTopEndRadius', right], ['borderBottomEndRadius', bottom], ['borderBottomStartRadius', left]];
129
- },
130
- margin: rawValue => {
131
- const [top, right = top, bottom = top, left = right] = typeof rawValue === 'number' ? [rawValue] : (0, _splitCssValue.default)(rawValue);
132
- return [['marginTop', top], ['marginEnd', right], ['marginBottom', bottom], ['marginStart', left]];
133
- },
134
- marginHorizontal: rawValue => {
135
- return [['marginStart', rawValue], ['marginEnd', rawValue]];
136
- },
137
- marginVertical: rawValue => {
138
- return [['marginTop', rawValue], ['marginBottom', rawValue]];
139
- },
140
- overflow: rawValue => {
141
- const [x, y = x] = (0, _splitCssValue.default)(rawValue);
142
- return [['overflowX', x], ['overflowY', y]];
143
- },
144
- padding: rawValue => {
145
- const [top, right = top, bottom = top, left = right] = typeof rawValue === 'number' ? [rawValue] : (0, _splitCssValue.default)(rawValue);
146
- return [['paddingTop', top], ['paddingEnd', right], ['paddingBottom', bottom], ['paddingStart', left]];
147
- },
148
- paddingHorizontal: rawValue => {
149
- return [['paddingStart', rawValue], ['paddingEnd', rawValue]];
150
- },
151
- paddingVertical: rawValue => {
152
- return [['paddingTop', rawValue], ['paddingBottom', rawValue]];
153
- }
154
- };
155
- var _default = expansions;
156
- exports.default = _default;
@@ -1,310 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- var _splitCssValue = _interopRequireDefault(require("../utils/split-css-value"));
8
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
9
- /**
10
- * Copyright (c) Meta Platforms, Inc. and affiliates.
11
- *
12
- * This source code is licensed under the MIT license found in the
13
- * LICENSE file in the root directory of this source tree.
14
- *
15
- *
16
- */
17
-
18
- /**
19
- * Shorthand properties:
20
- * - [x] all - Should be banned
21
- * - [x] animation
22
- * - [x] background
23
- * - [x] border
24
- * - [x] border-block-end
25
- * - [x] border-block-start
26
- * - [x] border-bottom
27
- * - [x] border-color
28
- * - [x] border-image
29
- * - [x] border-inline-end
30
- * - [x] border-inline-start
31
- * - [x] border-left
32
- * - [x] border-radius
33
- * - [x] border-right
34
- * - [x] border-style
35
- * - [x] border-top
36
- * - [x] border-width
37
- * - [x] column-rule
38
- * - [x] columns
39
- * - [x] container
40
- * - [x] flex
41
- * - [x] flex-flow
42
- * - [x] font
43
- * - [x] gap
44
- * - [x] grid
45
- * - [x] grid-area
46
- * - [x] grid-column
47
- * - [x] grid-row
48
- * - [x] grid-template
49
- * - [x] inset
50
- * - [x] inset-block
51
- * - [x] inset-inline
52
- * - [x] list-style
53
- * - [x] margin
54
- * - [x] mask
55
- * - [x] offset
56
- * - [x] outline
57
- * - [x] overflow
58
- * - [x] padding
59
- * - [x] place-content
60
- * - [x] place-items
61
- * - [x] place-self
62
- * - [x] scroll-margin
63
- * - [x] scroll-padding
64
- * - [x] text-decoration
65
- * - [x] text-emphasis
66
- * - [x] transition
67
- */
68
-
69
- const shorthands = {
70
- all: _ => {
71
- throw new Error('all is not supported');
72
- },
73
- animation: value => [['animation', value], ['animationName', null], ['animationDuration', null], ['animationTimingFunction', null], ['animationDelay', null], ['animationIterationCount', null], ['animationDirection', null], ['animationFillMode', null], ['animationPlayState', null]],
74
- background: value => [['background', value], ['backgroundAttachment', null], ['backgroundClip', null], ['backgroundColor', null], ['backgroundImage', null], ['backgroundOrigin', null], ['backgroundPosition', null], ['backgroundRepeat', null], ['backgroundSize', null]],
75
- // These will be removed later, matching the properties with React Native.
76
- // For now, we're compiling them to the React Native properties.
77
- // @Deprecated
78
- border: rawValue => {
79
- if (typeof rawValue === 'number') {
80
- return shorthands.borderWidth(rawValue);
81
- }
82
- const [width, style, color] = (0, _splitCssValue.default)(rawValue);
83
- return [...shorthands.borderWidth(width), ...shorthands.borderStyle(style), ...shorthands.borderColor(color)];
84
- },
85
- // @Deprecated
86
- borderInline: rawValue => {
87
- if (typeof rawValue === 'number') {
88
- return [['borderInlineWidth', rawValue], ['borderInlineStartWidth', null], ['borderInlineEndWidth', null]];
89
- }
90
- const [width, style, color] = (0, _splitCssValue.default)(rawValue);
91
- return [...shorthands.borderInlineWidth(width), ...shorthands.borderInlineStyle(style), ...shorthands.borderInlineColor(color)];
92
- },
93
- // @Deprecated
94
- borderBlock: rawValue => {
95
- if (typeof rawValue === 'number') {
96
- return [['borderBlockWidth', rawValue], ['borderTopWidth', null], ['borderBottomWidth', null]];
97
- }
98
- const [width, style, color] = (0, _splitCssValue.default)(rawValue);
99
- return [...shorthands.borderBlockWidth(width), ...shorthands.borderBlockStyle(style), ...shorthands.borderBlockColor(color)];
100
- },
101
- // @Deprecated
102
- borderTop: rawValue => {
103
- if (typeof rawValue === 'number') {
104
- return [['borderTopWidth', rawValue]];
105
- }
106
- const [width, style, color] = (0, _splitCssValue.default)(rawValue);
107
- return [['borderTopWidth', width], ['borderTopStyle', style], ['borderTopColor', color]];
108
- },
109
- // @Deprecated
110
- borderInlineEnd: rawValue => {
111
- if (typeof rawValue === 'number') {
112
- return [['borderInlineEndWidth', rawValue]];
113
- }
114
- const [width, style, color] = (0, _splitCssValue.default)(rawValue);
115
- return [['borderInlineEndWidth', width], ['borderInlineEndStyle', style], ['borderInlineEndColor', color]];
116
- },
117
- // @Deprecated
118
- borderRight: rawValue => {
119
- throw new Error(['`borderRight` is not supported.', 'You could use `borderRightWidth`, `borderRightStyle` and `borderRightColor`,', 'but it is preferable to use `borderInlineEndWidth`, `borderInlineEndStyle` and `borderInlineEndColor`.'].join(' '));
120
- },
121
- // @Deprecated
122
- borderBottom: rawValue => {
123
- if (typeof rawValue === 'number') {
124
- return [['borderBottomWidth', rawValue]];
125
- }
126
- const [width, style, color] = (0, _splitCssValue.default)(rawValue);
127
- return [['borderBottomWidth', width], ['borderBottomStyle', style], ['borderBottomColor', color]];
128
- },
129
- // @Deprecated
130
- borderInlineStart: rawValue => {
131
- if (typeof rawValue === 'number') {
132
- return [['borderInlineStartWidth', rawValue]];
133
- }
134
- const [width, style, color] = (0, _splitCssValue.default)(rawValue);
135
- return [['borderInlineStartWidth', width], ['borderInlineStartStyle', style], ['borderInlineStartColor', color]];
136
- },
137
- // @Deprecated
138
- borderLeft: rawValue => {
139
- throw new Error(['`borderLeft` is not supported.', 'You could use `borderLeftWidth`, `borderLeftStyle` and `borderLeftColor`,', 'but it is preferable to use `borderInlineStartWidth`, `borderInlineStartStyle` and `borderInlineStartColor`.'].join(' '));
140
- },
141
- borderInlineWidth: rawValue => [['borderInlineWidth', rawValue], ['borderInlineStartWidth', null], ['borderLeftWidth', null], ['borderInlineEndWidth', null], ['borderRightWidth', null]],
142
- borderInlineStyle: rawValue => [['borderInlineStyle', rawValue], ['borderInlineStartStyle', null], ['borderLeftStyle', null], ['borderInlineEndStyle', null], ['borderRightStyle', null]],
143
- borderInlineColor: rawValue => [['borderInlineColor', rawValue], ['borderInlineStartColor', null], ['borderLeftColor', null], ['borderInlineEndColor', null], ['borderRightColor', null]],
144
- borderBlockWidth: rawValue => [['borderBlockWidth', rawValue], ['borderTopWidth', null], ['borderBottomWidth', null]],
145
- borderBlockStyle: rawValue => [['borderBlockStyle', rawValue], ['borderTopStyle', null], ['borderBottomStyle', null]],
146
- borderBlockColor: rawValue => [['borderBlockColor', rawValue], ['borderTopColor', null], ['borderBottomColor', null]],
147
- borderColor: value => [['borderColor', value], ['borderTopColor', null], ['borderInlineEndColor', null], ['borderRightColor', null], ['borderBottomColor', null], ['borderInlineStartColor', null], ['borderLeftColor', null]],
148
- borderStyle: value => [['borderStyle', value], ['borderTopStyle', null], ['borderInlineEndStyle', null], ['borderRightStyle', null], ['borderBottomStyle', null], ['borderInlineStartStyle', null], ['borderLeftStyle', null]],
149
- borderWidth: value => [['borderWidth', value], ['borderTopWidth', null], ['borderInlineEndWidth', null], ['borderRightWidth', null], ['borderBottomWidth', null], ['borderInlineStartWidth', null], ['borderLeftWidth', null]],
150
- borderInlineStartColor: value => [['borderInlineStartColor', value], ['borderLeftColor', null], ['borderRightColor', null]],
151
- borderInlineEndColor: value => [['borderInlineEndColor', value], ['borderLeftColor', null], ['borderRightColor', null]],
152
- borderInlineStartStyle: value => [['borderInlineStartStyle', value], ['borderLeftStyle', null], ['borderRightStyle', null]],
153
- borderInlineEndStyle: value => [['borderInlineEndStyle', value], ['borderLeftStyle', null], ['borderRightStyle', null]],
154
- borderInlineStartWidth: value => [['borderInlineStartWidth', value], ['borderLeftWidth', null], ['borderRightWidth', null]],
155
- borderInlineEndWidth: value => [['borderInlineEndWidth', value], ['borderLeftWidth', null], ['borderRightWidth', null]],
156
- borderLeftColor: value => [['borderLeftColor', value], ['borderInlineStartColor', null], ['borderInlineEndColor', null]],
157
- borderRightColor: value => [['borderRightColor', value], ['borderInlineStartColor', null], ['borderInlineEndColor', null]],
158
- borderLeftStyle: value => [['borderLeftStyle', value], ['borderInlineStartStyle', null], ['borderInlineEndStyle', null]],
159
- borderRightStyle: value => [['borderRightStyle', value], ['borderInlineStartStyle', null], ['borderInlineEndStyle', null]],
160
- borderLeftWidth: value => [['borderLeftWidth', value], ['borderInlineStartWidth', null], ['borderInlineEndWidth', null]],
161
- borderRightWidth: value => [['borderRightWidth', value], ['borderInlineStartWidth', null], ['borderInlineEndWidth', null]],
162
- borderRadius: value => {
163
- const values = typeof value === 'number' ? [value] : (0, _splitCssValue.default)(value);
164
- if (values.length === 1) {
165
- return [['borderRadius', value],
166
- // // logical constituents
167
- ['borderStartStartRadius', null], ['borderStartEndRadius', null], ['borderEndStartRadius', null], ['borderEndEndRadius', null],
168
- // physical constituents
169
- ['borderTopLeftRadius', null], ['borderTopRightRadius', null], ['borderBottomLeftRadius', null], ['borderBottomRightRadius', null]];
170
- }
171
-
172
- // @Deprecated
173
- const [startStart, startEnd = startStart, endEnd = startStart, endStart = startEnd] = values;
174
- return [
175
- // split into logical consituents
176
- ['borderStartStartRadius', startStart], ['borderStartEndRadius', startEnd], ['borderEndEndRadius', endEnd], ['borderEndStartRadius', endStart],
177
- // unset physical consituents
178
- ['borderTopLeftRadius', null], ['borderTopRightRadius', null], ['borderBottomLeftRadius', null], ['borderBottomRightRadius', null]];
179
- },
180
- borderStartStartRadius: value => [['borderStartStartRadius', value], ['borderTopLeftRadius', null], ['borderTopRightRadius', null]],
181
- borderStartEndRadius: value => [['borderStartEndRadius', value], ['borderTopLeftRadius', null], ['borderTopRightRadius', null]],
182
- borderEndStartRadius: value => [['borderEndStartRadius', value], ['borderBottomLeftRadius', null], ['borderBottomRightRadius', null]],
183
- borderEndEndRadius: value => [['borderEndEndRadius', value], ['borderBottomLeftRadius', null], ['borderBottomRightRadius', null]],
184
- borderTopLeftRadius: value => [['borderTopLeftRadius', value], ['borderStartStartRadius', null], ['borderStartEndRadius', null]],
185
- borderTopRightRadius: value => [['borderTopRightRadius', value], ['borderStartStartRadius', null], ['borderStartEndRadius', null]],
186
- borderBottomLeftRadius: value => [['borderBottomLeftRadius', value], ['borderEndStartRadius', null], ['borderEndEndRadius', null]],
187
- borderBottomRightRadius: value => [['borderBottomRightRadius', value], ['borderEndStartRadius', null], ['borderEndEndRadius', null]],
188
- columnRule: value => [['columnRule', value], ['columnRuleWidth', null], ['columnRuleStyle', null], ['columnRuleColor', null]],
189
- columns: value => [['columns', value], ['columnCount', null], ['columnWidth', null]],
190
- container: value => [['container', value], ['containerName', null], ['containerType', null]],
191
- flex: value => [['flex', value], ['flexGrow', null], ['flexShrink', null], ['flexBasis', null]],
192
- flexFlow: value => [['flexFlow', value], ['flexDirection', null], ['flexWrap', null]],
193
- // @Deprecated ?
194
- font: value => [['font', value], ['fontFamily', null], ['fontSize', null], ['fontStretch', null], ['fontStyle', null], ['fontVariant', null], ['fontWeight', null], ['lineHeight', null]],
195
- gap: value => [['gap', value], ['rowGap', null], ['columnGap', null]],
196
- grid: value => [['grid', value], ['gridTemplate', null], ['gridTemplateAreas', null], ['gridTemplateColumns', null], ['gridTemplateRows', null], ['gridAutoRows', null], ['gridAutoColumns', null], ['gridAutoFlow', null]],
197
- gridArea: value => [['gridArea', value], ['gridRow', null], ['gridRowStart', null], ['gridRowEnd', null], ['gridColumn', null], ['gridColumnStart', null], ['gridColumnEnd', null]],
198
- gridRow: value => [['gridRow', value], ['gridRowStart', null], ['gridRowEnd', null]],
199
- gridColumn: value => [['gridColumn', value], ['gridColumnStart', null], ['gridColumnEnd', null]],
200
- gridTemplate: value => [['gridTemplate', value], ['gridTemplateAreas', null], ['gridTemplateColumns', null], ['gridTemplateRows', null]],
201
- inset: value => [['inset', value], ['insetInline', null], ['insetBlock', null], ['insetInlineStart', null], ['insetInlineEnd', null], ['top', null], ['right', null], ['bottom', null], ['left', null]],
202
- insetInline: value => [['insetInline', value], ['insetInlineStart', null], ['insetInlineEnd', null], ['left', null], ['right', null]],
203
- insetBlock: value => [['insetBlock', value], ['top', null], ['bottom', null]],
204
- insetInlineStart: value => [['insetInlineStart', value], ['left', null], ['right', null]],
205
- insetInlineEnd: value => [['insetInlineEnd', value], ['left', null], ['right', null]],
206
- left: value => [['left', value], ['insetInlineStart', null], ['insetInlineEnd', null]],
207
- right: value => [['right', value], ['insetInlineStart', null], ['insetInlineEnd', null]],
208
- listStyle: value => [['listStyle', value], ['listStyleImage', null], ['listStylePosition', null], ['listStyleType', null]],
209
- margin: value => {
210
- const values = typeof value === 'number' ? [value] : (0, _splitCssValue.default)(value);
211
- if (values.length === 1) {
212
- return [['margin', values[0]], ['marginInlineStart', null], ['marginLeft', null], ['marginInlineEnd', null], ['marginRight', null], ['marginTop', null], ['marginBottom', null]];
213
- }
214
- // @Deprecated
215
- const [top, right = top, bottom = top, left = right] = values;
216
- return [['marginTop', top], ['marginInlineEnd', right], ['marginBottom', bottom], ['marginInlineStart', left], ['marginLeft', null], ['marginRight', null]];
217
- },
218
- marginInline: value => [['marginInline', value], ['marginInlineStart', null], ['marginLeft', null], ['marginInlineEnd', null], ['marginRight', null]],
219
- marginBlock: value => [['marginBlock', value], ['marginTop', null], ['marginBottom', null]],
220
- marginInlineStart: value => [['marginInlineStart', value], ['marginLeft', null], ['marginRight', null]],
221
- marginInlineEnd: value => [['marginInlineEnd', value], ['marginLeft', null], ['marginRight', null]],
222
- marginLeft: value => [['marginLeft', value], ['marginInlineStart', null], ['marginInlineEnd', null]],
223
- marginRight: value => [['marginRight', value], ['marginInlineStart', null], ['marginInlineEnd', null]],
224
- mask: value => [['mask', value], ['maskClip', null], ['maskComposite', null], ['maskImage', null], ['maskMode', null], ['maskOrigin', null], ['maskPosition', null], ['maskRepeat', null], ['maskSize', null]],
225
- offset: value => [['offset', value], ['offsetAnchor', null], ['offsetDistance', null], ['offsetPath', null], ['offsetPosition', null], ['offsetRotate', null]],
226
- outline: value => [['outline', value], ['outlineColor', null], ['outlineStyle', null], ['outlineWidth', null]],
227
- overflow: value => [['overflow', value], ['overflowX', null], ['overflowY', null]],
228
- padding: rawValue => {
229
- const values = typeof rawValue === 'number' ? [rawValue] : (0, _splitCssValue.default)(rawValue);
230
- if (values.length === 1) {
231
- return [['padding', values[0]], ['paddingStart', null], ['paddingLeft', null], ['paddingEnd', null], ['paddingRight', null], ['paddingTop', null], ['paddingBottom', null]];
232
- }
233
- // @Deprecated
234
- const [top, right = top, bottom = top, left = right] = values;
235
- return [['paddingTop', top], ['paddingEnd', right], ['paddingBottom', bottom], ['paddingStart', left]];
236
- },
237
- paddingInline: rawValue => [['paddingInline', rawValue], ['paddingStart', null], ['paddingLeft', null], ['paddingEnd', null], ['paddingRight', null]],
238
- paddingBlock: rawValue => [['paddingBlock', rawValue], ['paddingTop', null], ['paddingBottom', null]],
239
- paddingInlineStart: value => [['paddingInlineStart', value], ['paddingLeft', null], ['paddingRight', null]],
240
- paddingInlineEnd: value => [['paddingInlineEnd', value], ['paddingLeft', null], ['paddingRight', null]],
241
- paddingLeft: value => [['paddingLeft', value], ['paddingInlineStart', null], ['paddingInlineEnd', null]],
242
- paddingRight: value => [['paddingRight', value], ['paddingInlineStart', null], ['paddingInlineEnd', null]],
243
- placeContent: value => [['placeContent', value], ['alignContent', null], ['justifyContent', null]],
244
- placeItems: value => [['placeItems', value], ['alignItems', null], ['justifyItems', null]],
245
- placeSelf: value => [['placeSelf', value], ['alignSelf', null], ['justifySelf', null]],
246
- scrollMargin: value => [['scrollMargin', value], ['scrollMarginBottom', null], ['scrollMarginLeft', null], ['scrollMarginStart', null], ['scrollMarginRight', null], ['scrollMarginEnd', null], ['scrollMarginTop', null]],
247
- scrollPadding: value => [['scrollPadding', value], ['scrollPaddingBottom', null], ['scrollPaddingLeft', null], ['scrollPaddingStart', null], ['scrollPaddingRight', null], ['scrollPaddingEnd', null], ['scrollPaddingTop', null]],
248
- scrollTimeline: value => [['scrollTimeline', value], ['scrollTimelineName', null], ['scrollTimelineAxis', null]],
249
- textDecoration: value => [['textDecoration', value], ['textDecorationColor', null], ['textDecorationLine', null], ['textDecorationStyle', null], ['textDecorationThickness', null]],
250
- textEmphasis: value => [['textEmphasis', value], ['textEmphasisColor', null], ['textEmphasisStyle', null]],
251
- transition: value => [['transition', value], ['transitionDelay', null], ['transitionDuration', null], ['transitionProperty', null], ['transitionTimingFunction', null]]
252
- };
253
- const aliases = {
254
- // @Deprecated
255
- borderHorizontal: shorthands.borderInline,
256
- // @Deprecated
257
- borderVertical: shorthands.borderBlock,
258
- // @Deprecated
259
- borderBlockStart: shorthands.borderTop,
260
- // @Deprecated
261
- borderEnd: shorthands.borderInlineEnd,
262
- // @Deprecated
263
- borderBlockEnd: shorthands.borderBottom,
264
- // @Deprecated
265
- borderStart: shorthands.borderInlineStart,
266
- borderHorizontalWidth: shorthands.borderInlineWidth,
267
- borderHorizontalStyle: shorthands.borderInlineStyle,
268
- borderHorizontalColor: shorthands.borderInlineColor,
269
- borderVerticalWidth: shorthands.borderBlockWidth,
270
- borderVerticalStyle: shorthands.borderBlockStyle,
271
- borderVerticalColor: shorthands.borderBlockColor,
272
- borderBlockStartColor: value => [['borderTopColor', value]],
273
- borderBlockEndColor: value => [['borderBottomColor', value]],
274
- borderBlockStartStyle: value => [['borderTopStyle', value]],
275
- borderBlockEndStyle: value => [['borderBottomStyle', value]],
276
- borderBlockStartWidth: value => [['borderTopWidth', value]],
277
- borderBlockEndWidth: value => [['borderBottomWidth', value]],
278
- borderStartColor: shorthands.borderInlineStartColor,
279
- borderEndColor: shorthands.borderInlineEndColor,
280
- borderStartStyle: shorthands.borderInlineStartStyle,
281
- borderEndStyle: shorthands.borderInlineEndStyle,
282
- borderStartWidth: shorthands.borderInlineStartWidth,
283
- borderEndWidth: shorthands.borderInlineEndWidth,
284
- borderTopStartRadius: value => [['borderStartStartRadius', value]],
285
- borderTopEndRadius: value => [['borderStartEndRadius', value]],
286
- borderBottomStartRadius: value => [['borderEndStartRadius', value]],
287
- borderBottomEndRadius: value => [['borderEndEndRadius', value]],
288
- marginBlockStart: value => [['marginTop', value]],
289
- marginBlockEnd: value => [['marginBottom', value]],
290
- marginStart: shorthands.marginInlineStart,
291
- marginEnd: shorthands.marginInlineEnd,
292
- marginHorizontal: shorthands.marginInline,
293
- marginVertical: shorthands.marginBlock,
294
- paddingBlockStart: rawValue => [['paddingTop', rawValue]],
295
- paddingBlockEnd: rawValue => [['paddingBottom', rawValue]],
296
- paddingStart: shorthands.paddingInlineStart,
297
- paddingEnd: shorthands.paddingInlineEnd,
298
- paddingHorizontal: shorthands.paddingInline,
299
- paddingVertical: shorthands.paddingBlock,
300
- insetBlockStart: value => [['top', value]],
301
- insetBlockEnd: value => [['bottom', value]],
302
- start: shorthands.insetInlineStart,
303
- end: shorthands.insetInlineEnd
304
- };
305
- const expansions = {
306
- ...shorthands,
307
- ...aliases
308
- };
309
- var _default = expansions;
310
- exports.default = _default;