@pingux/astro 2.28.0-alpha.1 → 2.28.0-alpha.2
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.
@@ -24,7 +24,21 @@ var _react2 = require("@emotion/react");
|
|
24
24
|
function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
25
25
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(source), !0)).call(_context, function (key) { (0, _defineProperty2["default"])(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
26
26
|
var _default = {
|
27
|
-
title: 'Recipes/Condition Filter'
|
27
|
+
title: 'Recipes/Condition Filter',
|
28
|
+
parameters: {
|
29
|
+
a11y: {
|
30
|
+
config: {
|
31
|
+
/** The "color-contrast" test ends with an "incomplete" status
|
32
|
+
* since pseudo-element applies to the same container as selected values.
|
33
|
+
* A workaround to disable "color-contrast" incomplete tests.
|
34
|
+
*/
|
35
|
+
rules: [{
|
36
|
+
id: 'color-contrast',
|
37
|
+
enabled: false
|
38
|
+
}]
|
39
|
+
}
|
40
|
+
}
|
41
|
+
}
|
28
42
|
};
|
29
43
|
exports["default"] = _default;
|
30
44
|
var borderBox = {
|
@@ -17,7 +17,21 @@ import { Badge, Box, Bracket, Button, Icon, IconButton, Item, RockerButton, Rock
|
|
17
17
|
import { FIGMA_LINKS } from '../utils/designUtils/figmaLinks.js';
|
18
18
|
import { jsx as ___EmotionJSX } from "@emotion/react";
|
19
19
|
export default {
|
20
|
-
title: 'Recipes/Condition Filter'
|
20
|
+
title: 'Recipes/Condition Filter',
|
21
|
+
parameters: {
|
22
|
+
a11y: {
|
23
|
+
config: {
|
24
|
+
/** The "color-contrast" test ends with an "incomplete" status
|
25
|
+
* since pseudo-element applies to the same container as selected values.
|
26
|
+
* A workaround to disable "color-contrast" incomplete tests.
|
27
|
+
*/
|
28
|
+
rules: [{
|
29
|
+
id: 'color-contrast',
|
30
|
+
enabled: false
|
31
|
+
}]
|
32
|
+
}
|
33
|
+
}
|
34
|
+
}
|
21
35
|
};
|
22
36
|
var borderBox = {
|
23
37
|
borderColor: 'neutral.80',
|