@wordpress/style-engine 2.32.0 → 2.32.1-next.47f435fc9.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.
Files changed (73) hide show
  1. package/build/index.js +62 -69
  2. package/build/index.js.map +7 -1
  3. package/build/styles/background/index.js +76 -34
  4. package/build/styles/background/index.js.map +7 -1
  5. package/build/styles/border/index.js +61 -48
  6. package/build/styles/border/index.js.map +7 -1
  7. package/build/styles/color/background.js +31 -13
  8. package/build/styles/color/background.js.map +7 -1
  9. package/build/styles/color/gradient.js +31 -13
  10. package/build/styles/color/gradient.js.map +7 -1
  11. package/build/styles/color/index.js +36 -13
  12. package/build/styles/color/index.js.map +7 -1
  13. package/build/styles/color/text.js +26 -13
  14. package/build/styles/color/text.js.map +7 -1
  15. package/build/styles/constants.js +33 -8
  16. package/build/styles/constants.js.map +7 -1
  17. package/build/styles/dimensions/index.js +38 -15
  18. package/build/styles/dimensions/index.js.map +7 -1
  19. package/build/styles/index.js +54 -19
  20. package/build/styles/index.js.map +7 -1
  21. package/build/styles/outline/index.js +36 -23
  22. package/build/styles/outline/index.js.map +7 -1
  23. package/build/styles/shadow/index.js +26 -13
  24. package/build/styles/shadow/index.js.map +7 -1
  25. package/build/styles/spacing/index.js +35 -12
  26. package/build/styles/spacing/index.js.map +7 -1
  27. package/build/styles/spacing/margin.js +28 -15
  28. package/build/styles/spacing/margin.js.map +7 -1
  29. package/build/styles/spacing/padding.js +28 -15
  30. package/build/styles/spacing/padding.js.map +7 -1
  31. package/build/styles/typography/index.js +105 -31
  32. package/build/styles/typography/index.js.map +7 -1
  33. package/build/styles/utils.js +90 -132
  34. package/build/styles/utils.js.map +7 -1
  35. package/build/types.js +16 -5
  36. package/build/types.js.map +7 -1
  37. package/build-module/index.js +40 -61
  38. package/build-module/index.js.map +7 -1
  39. package/build-module/styles/background/index.js +58 -30
  40. package/build-module/styles/background/index.js.map +7 -1
  41. package/build-module/styles/border/index.js +42 -44
  42. package/build-module/styles/border/index.js.map +7 -1
  43. package/build-module/styles/color/background.js +13 -9
  44. package/build-module/styles/color/background.js.map +7 -1
  45. package/build-module/styles/color/gradient.js +13 -9
  46. package/build-module/styles/color/gradient.js.map +7 -1
  47. package/build-module/styles/color/index.js +8 -8
  48. package/build-module/styles/color/index.js.map +7 -1
  49. package/build-module/styles/color/text.js +8 -9
  50. package/build-module/styles/color/text.js.map +7 -1
  51. package/build-module/styles/constants.js +9 -4
  52. package/build-module/styles/constants.js.map +7 -1
  53. package/build-module/styles/dimensions/index.js +20 -11
  54. package/build-module/styles/dimensions/index.js.map +7 -1
  55. package/build-module/styles/index.js +22 -13
  56. package/build-module/styles/index.js.map +7 -1
  57. package/build-module/styles/outline/index.js +14 -15
  58. package/build-module/styles/outline/index.js.map +7 -1
  59. package/build-module/styles/shadow/index.js +8 -9
  60. package/build-module/styles/shadow/index.js.map +7 -1
  61. package/build-module/styles/spacing/index.js +7 -7
  62. package/build-module/styles/spacing/index.js.map +7 -1
  63. package/build-module/styles/spacing/margin.js +10 -11
  64. package/build-module/styles/spacing/margin.js.map +7 -1
  65. package/build-module/styles/spacing/padding.js +10 -11
  66. package/build-module/styles/spacing/padding.js.map +7 -1
  67. package/build-module/styles/typography/index.js +87 -27
  68. package/build-module/styles/typography/index.js.map +7 -1
  69. package/build-module/styles/utils.js +72 -128
  70. package/build-module/styles/utils.js.map +7 -1
  71. package/build-module/types.js +1 -2
  72. package/build-module/types.js.map +7 -1
  73. package/package.json +10 -3
@@ -1 +1,7 @@
1
- {"version":3,"names":["generateRule","minHeight","name","generate","style","options","aspectRatio"],"sources":["@wordpress/style-engine/src/styles/dimensions/index.ts"],"sourcesContent":["/**\n * Internal dependencies\n */\nimport type { Style, StyleOptions } from '../../types';\nimport { generateRule } from '../utils';\n\nconst minHeight = {\n\tname: 'minHeight',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'dimensions', 'minHeight' ],\n\t\t\t'minHeight'\n\t\t);\n\t},\n};\n\nconst aspectRatio = {\n\tname: 'aspectRatio',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'dimensions', 'aspectRatio' ],\n\t\t\t'aspectRatio'\n\t\t);\n\t},\n};\n\nexport default [ minHeight, aspectRatio ];\n"],"mappings":"AAAA;AACA;AACA;;AAEA,SAASA,YAAY,QAAQ,UAAU;AAEvC,MAAMC,SAAS,GAAG;EACjBC,IAAI,EAAE,WAAW;EACjBC,QAAQ,EAAEA,CAAEC,KAAY,EAAEC,OAAqB,KAAM;IACpD,OAAOL,YAAY,CAClBI,KAAK,EACLC,OAAO,EACP,CAAE,YAAY,EAAE,WAAW,CAAE,EAC7B,WACD,CAAC;EACF;AACD,CAAC;AAED,MAAMC,WAAW,GAAG;EACnBJ,IAAI,EAAE,aAAa;EACnBC,QAAQ,EAAEA,CAAEC,KAAY,EAAEC,OAAqB,KAAM;IACpD,OAAOL,YAAY,CAClBI,KAAK,EACLC,OAAO,EACP,CAAE,YAAY,EAAE,aAAa,CAAE,EAC/B,aACD,CAAC;EACF;AACD,CAAC;AAED,eAAe,CAAEJ,SAAS,EAAEK,WAAW,CAAE","ignoreList":[]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/styles/dimensions/index.ts"],
4
+ "sourcesContent": ["/**\n * Internal dependencies\n */\nimport type { Style, StyleOptions } from '../../types';\nimport { generateRule } from '../utils';\n\nconst minHeight = {\n\tname: 'minHeight',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'dimensions', 'minHeight' ],\n\t\t\t'minHeight'\n\t\t);\n\t},\n};\n\nconst aspectRatio = {\n\tname: 'aspectRatio',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'dimensions', 'aspectRatio' ],\n\t\t\t'aspectRatio'\n\t\t);\n\t},\n};\n\nexport default [ minHeight, aspectRatio ];\n"],
5
+ "mappings": "AAIA,SAAS,oBAAoB;AAE7B,MAAM,YAAY;AAAA,EACjB,MAAM;AAAA,EACN,UAAU,CAAE,OAAc,YAA2B;AACpD,WAAO;AAAA,MACN;AAAA,MACA;AAAA,MACA,CAAE,cAAc,WAAY;AAAA,MAC5B;AAAA,IACD;AAAA,EACD;AACD;AAEA,MAAM,cAAc;AAAA,EACnB,MAAM;AAAA,EACN,UAAU,CAAE,OAAc,YAA2B;AACpD,WAAO;AAAA,MACN;AAAA,MACA;AAAA,MACA,CAAE,cAAc,aAAc;AAAA,MAC9B;AAAA,IACD;AAAA,EACD;AACD;AAEA,IAAO,qBAAQ,CAAE,WAAW,WAAY;",
6
+ "names": []
7
+ }
@@ -1,13 +1,22 @@
1
- /**
2
- * Internal dependencies
3
- */
4
- import border from './border';
5
- import color from './color';
6
- import dimensions from './dimensions';
7
- import background from './background';
8
- import shadow from './shadow';
9
- import outline from './outline';
10
- import spacing from './spacing';
11
- import typography from './typography';
12
- export const styleDefinitions = [...border, ...color, ...dimensions, ...outline, ...spacing, ...typography, ...shadow, ...background];
13
- //# sourceMappingURL=index.js.map
1
+ import border from "./border";
2
+ import color from "./color";
3
+ import dimensions from "./dimensions";
4
+ import background from "./background";
5
+ import shadow from "./shadow";
6
+ import outline from "./outline";
7
+ import spacing from "./spacing";
8
+ import typography from "./typography";
9
+ const styleDefinitions = [
10
+ ...border,
11
+ ...color,
12
+ ...dimensions,
13
+ ...outline,
14
+ ...spacing,
15
+ ...typography,
16
+ ...shadow,
17
+ ...background
18
+ ];
19
+ export {
20
+ styleDefinitions
21
+ };
22
+ //# sourceMappingURL=index.js.map
@@ -1 +1,7 @@
1
- {"version":3,"names":["border","color","dimensions","background","shadow","outline","spacing","typography","styleDefinitions"],"sources":["@wordpress/style-engine/src/styles/index.ts"],"sourcesContent":["/**\n * Internal dependencies\n */\nimport border from './border';\nimport color from './color';\nimport dimensions from './dimensions';\nimport background from './background';\nimport shadow from './shadow';\nimport outline from './outline';\nimport spacing from './spacing';\nimport typography from './typography';\n\nexport const styleDefinitions = [\n\t...border,\n\t...color,\n\t...dimensions,\n\t...outline,\n\t...spacing,\n\t...typography,\n\t...shadow,\n\t...background,\n];\n"],"mappings":"AAAA;AACA;AACA;AACA,OAAOA,MAAM,MAAM,UAAU;AAC7B,OAAOC,KAAK,MAAM,SAAS;AAC3B,OAAOC,UAAU,MAAM,cAAc;AACrC,OAAOC,UAAU,MAAM,cAAc;AACrC,OAAOC,MAAM,MAAM,UAAU;AAC7B,OAAOC,OAAO,MAAM,WAAW;AAC/B,OAAOC,OAAO,MAAM,WAAW;AAC/B,OAAOC,UAAU,MAAM,cAAc;AAErC,OAAO,MAAMC,gBAAgB,GAAG,CAC/B,GAAGR,MAAM,EACT,GAAGC,KAAK,EACR,GAAGC,UAAU,EACb,GAAGG,OAAO,EACV,GAAGC,OAAO,EACV,GAAGC,UAAU,EACb,GAAGH,MAAM,EACT,GAAGD,UAAU,CACb","ignoreList":[]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/styles/index.ts"],
4
+ "sourcesContent": ["/**\n * Internal dependencies\n */\nimport border from './border';\nimport color from './color';\nimport dimensions from './dimensions';\nimport background from './background';\nimport shadow from './shadow';\nimport outline from './outline';\nimport spacing from './spacing';\nimport typography from './typography';\n\nexport const styleDefinitions = [\n\t...border,\n\t...color,\n\t...dimensions,\n\t...outline,\n\t...spacing,\n\t...typography,\n\t...shadow,\n\t...background,\n];\n"],
5
+ "mappings": "AAGA,OAAO,YAAY;AACnB,OAAO,WAAW;AAClB,OAAO,gBAAgB;AACvB,OAAO,gBAAgB;AACvB,OAAO,YAAY;AACnB,OAAO,aAAa;AACpB,OAAO,aAAa;AACpB,OAAO,gBAAgB;AAEhB,MAAM,mBAAmB;AAAA,EAC/B,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AAAA,EACH,GAAG;AACJ;",
6
+ "names": []
7
+ }
@@ -1,31 +1,30 @@
1
- /**
2
- * Internal dependencies
3
- */
4
-
5
- import { generateRule } from '../utils';
1
+ import { generateRule } from "../utils";
6
2
  const color = {
7
- name: 'color',
8
- generate: (style, options, path = ['outline', 'color'], ruleKey = 'outlineColor') => {
3
+ name: "color",
4
+ generate: (style, options, path = ["outline", "color"], ruleKey = "outlineColor") => {
9
5
  return generateRule(style, options, path, ruleKey);
10
6
  }
11
7
  };
12
8
  const offset = {
13
- name: 'offset',
14
- generate: (style, options, path = ['outline', 'offset'], ruleKey = 'outlineOffset') => {
9
+ name: "offset",
10
+ generate: (style, options, path = ["outline", "offset"], ruleKey = "outlineOffset") => {
15
11
  return generateRule(style, options, path, ruleKey);
16
12
  }
17
13
  };
18
14
  const outlineStyle = {
19
- name: 'style',
20
- generate: (style, options, path = ['outline', 'style'], ruleKey = 'outlineStyle') => {
15
+ name: "style",
16
+ generate: (style, options, path = ["outline", "style"], ruleKey = "outlineStyle") => {
21
17
  return generateRule(style, options, path, ruleKey);
22
18
  }
23
19
  };
24
20
  const width = {
25
- name: 'width',
26
- generate: (style, options, path = ['outline', 'width'], ruleKey = 'outlineWidth') => {
21
+ name: "width",
22
+ generate: (style, options, path = ["outline", "width"], ruleKey = "outlineWidth") => {
27
23
  return generateRule(style, options, path, ruleKey);
28
24
  }
29
25
  };
30
- export default [color, outlineStyle, offset, width];
31
- //# sourceMappingURL=index.js.map
26
+ var outline_default = [color, outlineStyle, offset, width];
27
+ export {
28
+ outline_default as default
29
+ };
30
+ //# sourceMappingURL=index.js.map
@@ -1 +1,7 @@
1
- {"version":3,"names":["generateRule","color","name","generate","style","options","path","ruleKey","offset","outlineStyle","width"],"sources":["@wordpress/style-engine/src/styles/outline/index.ts"],"sourcesContent":["/**\n * Internal dependencies\n */\nimport type { GeneratedCSSRule, Style, StyleOptions } from '../../types';\nimport { generateRule } from '../utils';\n\nconst color = {\n\tname: 'color',\n\tgenerate: (\n\t\tstyle: Style,\n\t\toptions: StyleOptions,\n\t\tpath: string[] = [ 'outline', 'color' ],\n\t\truleKey: string = 'outlineColor'\n\t): GeneratedCSSRule[] => {\n\t\treturn generateRule( style, options, path, ruleKey );\n\t},\n};\n\nconst offset = {\n\tname: 'offset',\n\tgenerate: (\n\t\tstyle: Style,\n\t\toptions: StyleOptions,\n\t\tpath: string[] = [ 'outline', 'offset' ],\n\t\truleKey: string = 'outlineOffset'\n\t): GeneratedCSSRule[] => {\n\t\treturn generateRule( style, options, path, ruleKey );\n\t},\n};\n\nconst outlineStyle = {\n\tname: 'style',\n\tgenerate: (\n\t\tstyle: Style,\n\t\toptions: StyleOptions,\n\t\tpath: string[] = [ 'outline', 'style' ],\n\t\truleKey: string = 'outlineStyle'\n\t): GeneratedCSSRule[] => {\n\t\treturn generateRule( style, options, path, ruleKey );\n\t},\n};\n\nconst width = {\n\tname: 'width',\n\tgenerate: (\n\t\tstyle: Style,\n\t\toptions: StyleOptions,\n\t\tpath: string[] = [ 'outline', 'width' ],\n\t\truleKey: string = 'outlineWidth'\n\t): GeneratedCSSRule[] => {\n\t\treturn generateRule( style, options, path, ruleKey );\n\t},\n};\n\nexport default [ color, outlineStyle, offset, width ];\n"],"mappings":"AAAA;AACA;AACA;;AAEA,SAASA,YAAY,QAAQ,UAAU;AAEvC,MAAMC,KAAK,GAAG;EACbC,IAAI,EAAE,OAAO;EACbC,QAAQ,EAAEA,CACTC,KAAY,EACZC,OAAqB,EACrBC,IAAc,GAAG,CAAE,SAAS,EAAE,OAAO,CAAE,EACvCC,OAAe,GAAG,cAAc,KACR;IACxB,OAAOP,YAAY,CAAEI,KAAK,EAAEC,OAAO,EAAEC,IAAI,EAAEC,OAAQ,CAAC;EACrD;AACD,CAAC;AAED,MAAMC,MAAM,GAAG;EACdN,IAAI,EAAE,QAAQ;EACdC,QAAQ,EAAEA,CACTC,KAAY,EACZC,OAAqB,EACrBC,IAAc,GAAG,CAAE,SAAS,EAAE,QAAQ,CAAE,EACxCC,OAAe,GAAG,eAAe,KACT;IACxB,OAAOP,YAAY,CAAEI,KAAK,EAAEC,OAAO,EAAEC,IAAI,EAAEC,OAAQ,CAAC;EACrD;AACD,CAAC;AAED,MAAME,YAAY,GAAG;EACpBP,IAAI,EAAE,OAAO;EACbC,QAAQ,EAAEA,CACTC,KAAY,EACZC,OAAqB,EACrBC,IAAc,GAAG,CAAE,SAAS,EAAE,OAAO,CAAE,EACvCC,OAAe,GAAG,cAAc,KACR;IACxB,OAAOP,YAAY,CAAEI,KAAK,EAAEC,OAAO,EAAEC,IAAI,EAAEC,OAAQ,CAAC;EACrD;AACD,CAAC;AAED,MAAMG,KAAK,GAAG;EACbR,IAAI,EAAE,OAAO;EACbC,QAAQ,EAAEA,CACTC,KAAY,EACZC,OAAqB,EACrBC,IAAc,GAAG,CAAE,SAAS,EAAE,OAAO,CAAE,EACvCC,OAAe,GAAG,cAAc,KACR;IACxB,OAAOP,YAAY,CAAEI,KAAK,EAAEC,OAAO,EAAEC,IAAI,EAAEC,OAAQ,CAAC;EACrD;AACD,CAAC;AAED,eAAe,CAAEN,KAAK,EAAEQ,YAAY,EAAED,MAAM,EAAEE,KAAK,CAAE","ignoreList":[]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/styles/outline/index.ts"],
4
+ "sourcesContent": ["/**\n * Internal dependencies\n */\nimport type { GeneratedCSSRule, Style, StyleOptions } from '../../types';\nimport { generateRule } from '../utils';\n\nconst color = {\n\tname: 'color',\n\tgenerate: (\n\t\tstyle: Style,\n\t\toptions: StyleOptions,\n\t\tpath: string[] = [ 'outline', 'color' ],\n\t\truleKey: string = 'outlineColor'\n\t): GeneratedCSSRule[] => {\n\t\treturn generateRule( style, options, path, ruleKey );\n\t},\n};\n\nconst offset = {\n\tname: 'offset',\n\tgenerate: (\n\t\tstyle: Style,\n\t\toptions: StyleOptions,\n\t\tpath: string[] = [ 'outline', 'offset' ],\n\t\truleKey: string = 'outlineOffset'\n\t): GeneratedCSSRule[] => {\n\t\treturn generateRule( style, options, path, ruleKey );\n\t},\n};\n\nconst outlineStyle = {\n\tname: 'style',\n\tgenerate: (\n\t\tstyle: Style,\n\t\toptions: StyleOptions,\n\t\tpath: string[] = [ 'outline', 'style' ],\n\t\truleKey: string = 'outlineStyle'\n\t): GeneratedCSSRule[] => {\n\t\treturn generateRule( style, options, path, ruleKey );\n\t},\n};\n\nconst width = {\n\tname: 'width',\n\tgenerate: (\n\t\tstyle: Style,\n\t\toptions: StyleOptions,\n\t\tpath: string[] = [ 'outline', 'width' ],\n\t\truleKey: string = 'outlineWidth'\n\t): GeneratedCSSRule[] => {\n\t\treturn generateRule( style, options, path, ruleKey );\n\t},\n};\n\nexport default [ color, outlineStyle, offset, width ];\n"],
5
+ "mappings": "AAIA,SAAS,oBAAoB;AAE7B,MAAM,QAAQ;AAAA,EACb,MAAM;AAAA,EACN,UAAU,CACT,OACA,SACA,OAAiB,CAAE,WAAW,OAAQ,GACtC,UAAkB,mBACM;AACxB,WAAO,aAAc,OAAO,SAAS,MAAM,OAAQ;AAAA,EACpD;AACD;AAEA,MAAM,SAAS;AAAA,EACd,MAAM;AAAA,EACN,UAAU,CACT,OACA,SACA,OAAiB,CAAE,WAAW,QAAS,GACvC,UAAkB,oBACM;AACxB,WAAO,aAAc,OAAO,SAAS,MAAM,OAAQ;AAAA,EACpD;AACD;AAEA,MAAM,eAAe;AAAA,EACpB,MAAM;AAAA,EACN,UAAU,CACT,OACA,SACA,OAAiB,CAAE,WAAW,OAAQ,GACtC,UAAkB,mBACM;AACxB,WAAO,aAAc,OAAO,SAAS,MAAM,OAAQ;AAAA,EACpD;AACD;AAEA,MAAM,QAAQ;AAAA,EACb,MAAM;AAAA,EACN,UAAU,CACT,OACA,SACA,OAAiB,CAAE,WAAW,OAAQ,GACtC,UAAkB,mBACM;AACxB,WAAO,aAAc,OAAO,SAAS,MAAM,OAAQ;AAAA,EACpD;AACD;AAEA,IAAO,kBAAQ,CAAE,OAAO,cAAc,QAAQ,KAAM;",
6
+ "names": []
7
+ }
@@ -1,13 +1,12 @@
1
- /**
2
- * Internal dependencies
3
- */
4
-
5
- import { generateRule } from '../utils';
1
+ import { generateRule } from "../utils";
6
2
  const shadow = {
7
- name: 'shadow',
3
+ name: "shadow",
8
4
  generate: (style, options) => {
9
- return generateRule(style, options, ['shadow'], 'boxShadow');
5
+ return generateRule(style, options, ["shadow"], "boxShadow");
10
6
  }
11
7
  };
12
- export default [shadow];
13
- //# sourceMappingURL=index.js.map
8
+ var shadow_default = [shadow];
9
+ export {
10
+ shadow_default as default
11
+ };
12
+ //# sourceMappingURL=index.js.map
@@ -1 +1,7 @@
1
- {"version":3,"names":["generateRule","shadow","name","generate","style","options"],"sources":["@wordpress/style-engine/src/styles/shadow/index.ts"],"sourcesContent":["/**\n * Internal dependencies\n */\nimport type { Style, StyleOptions } from '../../types';\nimport { generateRule } from '../utils';\n\nconst shadow = {\n\tname: 'shadow',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule( style, options, [ 'shadow' ], 'boxShadow' );\n\t},\n};\n\nexport default [ shadow ];\n"],"mappings":"AAAA;AACA;AACA;;AAEA,SAASA,YAAY,QAAQ,UAAU;AAEvC,MAAMC,MAAM,GAAG;EACdC,IAAI,EAAE,QAAQ;EACdC,QAAQ,EAAEA,CAAEC,KAAY,EAAEC,OAAqB,KAAM;IACpD,OAAOL,YAAY,CAAEI,KAAK,EAAEC,OAAO,EAAE,CAAE,QAAQ,CAAE,EAAE,WAAY,CAAC;EACjE;AACD,CAAC;AAED,eAAe,CAAEJ,MAAM,CAAE","ignoreList":[]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/styles/shadow/index.ts"],
4
+ "sourcesContent": ["/**\n * Internal dependencies\n */\nimport type { Style, StyleOptions } from '../../types';\nimport { generateRule } from '../utils';\n\nconst shadow = {\n\tname: 'shadow',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule( style, options, [ 'shadow' ], 'boxShadow' );\n\t},\n};\n\nexport default [ shadow ];\n"],
5
+ "mappings": "AAIA,SAAS,oBAAoB;AAE7B,MAAM,SAAS;AAAA,EACd,MAAM;AAAA,EACN,UAAU,CAAE,OAAc,YAA2B;AACpD,WAAO,aAAc,OAAO,SAAS,CAAE,QAAS,GAAG,WAAY;AAAA,EAChE;AACD;AAEA,IAAO,iBAAQ,CAAE,MAAO;",
6
+ "names": []
7
+ }
@@ -1,7 +1,7 @@
1
- /**
2
- * Internal dependencies
3
- */
4
- import padding from './padding';
5
- import margin from './margin';
6
- export default [margin, padding];
7
- //# sourceMappingURL=index.js.map
1
+ import padding from "./padding";
2
+ import margin from "./margin";
3
+ var spacing_default = [margin, padding];
4
+ export {
5
+ spacing_default as default
6
+ };
7
+ //# sourceMappingURL=index.js.map
@@ -1 +1,7 @@
1
- {"version":3,"names":["padding","margin"],"sources":["@wordpress/style-engine/src/styles/spacing/index.ts"],"sourcesContent":["/**\n * Internal dependencies\n */\nimport padding from './padding';\nimport margin from './margin';\n\nexport default [ margin, padding ];\n"],"mappings":"AAAA;AACA;AACA;AACA,OAAOA,OAAO,MAAM,WAAW;AAC/B,OAAOC,MAAM,MAAM,UAAU;AAE7B,eAAe,CAAEA,MAAM,EAAED,OAAO,CAAE","ignoreList":[]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/styles/spacing/index.ts"],
4
+ "sourcesContent": ["/**\n * Internal dependencies\n */\nimport padding from './padding';\nimport margin from './margin';\n\nexport default [ margin, padding ];\n"],
5
+ "mappings": "AAGA,OAAO,aAAa;AACpB,OAAO,YAAY;AAEnB,IAAO,kBAAQ,CAAE,QAAQ,OAAQ;",
6
+ "names": []
7
+ }
@@ -1,16 +1,15 @@
1
- /**
2
- * Internal dependencies
3
- */
4
-
5
- import { generateBoxRules } from '../utils';
1
+ import { generateBoxRules } from "../utils";
6
2
  const margin = {
7
- name: 'margin',
3
+ name: "margin",
8
4
  generate: (style, options) => {
9
- return generateBoxRules(style, options, ['spacing', 'margin'], {
10
- default: 'margin',
11
- individual: 'margin%s'
5
+ return generateBoxRules(style, options, ["spacing", "margin"], {
6
+ default: "margin",
7
+ individual: "margin%s"
12
8
  });
13
9
  }
14
10
  };
15
- export default margin;
16
- //# sourceMappingURL=margin.js.map
11
+ var margin_default = margin;
12
+ export {
13
+ margin_default as default
14
+ };
15
+ //# sourceMappingURL=margin.js.map
@@ -1 +1,7 @@
1
- {"version":3,"names":["generateBoxRules","margin","name","generate","style","options","default","individual"],"sources":["@wordpress/style-engine/src/styles/spacing/margin.ts"],"sourcesContent":["/**\n * Internal dependencies\n */\nimport type { Style, StyleOptions } from '../../types';\nimport { generateBoxRules } from '../utils';\n\nconst margin = {\n\tname: 'margin',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateBoxRules( style, options, [ 'spacing', 'margin' ], {\n\t\t\tdefault: 'margin',\n\t\t\tindividual: 'margin%s',\n\t\t} );\n\t},\n};\n\nexport default margin;\n"],"mappings":"AAAA;AACA;AACA;;AAEA,SAASA,gBAAgB,QAAQ,UAAU;AAE3C,MAAMC,MAAM,GAAG;EACdC,IAAI,EAAE,QAAQ;EACdC,QAAQ,EAAEA,CAAEC,KAAY,EAAEC,OAAqB,KAAM;IACpD,OAAOL,gBAAgB,CAAEI,KAAK,EAAEC,OAAO,EAAE,CAAE,SAAS,EAAE,QAAQ,CAAE,EAAE;MACjEC,OAAO,EAAE,QAAQ;MACjBC,UAAU,EAAE;IACb,CAAE,CAAC;EACJ;AACD,CAAC;AAED,eAAeN,MAAM","ignoreList":[]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/styles/spacing/margin.ts"],
4
+ "sourcesContent": ["/**\n * Internal dependencies\n */\nimport type { Style, StyleOptions } from '../../types';\nimport { generateBoxRules } from '../utils';\n\nconst margin = {\n\tname: 'margin',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateBoxRules( style, options, [ 'spacing', 'margin' ], {\n\t\t\tdefault: 'margin',\n\t\t\tindividual: 'margin%s',\n\t\t} );\n\t},\n};\n\nexport default margin;\n"],
5
+ "mappings": "AAIA,SAAS,wBAAwB;AAEjC,MAAM,SAAS;AAAA,EACd,MAAM;AAAA,EACN,UAAU,CAAE,OAAc,YAA2B;AACpD,WAAO,iBAAkB,OAAO,SAAS,CAAE,WAAW,QAAS,GAAG;AAAA,MACjE,SAAS;AAAA,MACT,YAAY;AAAA,IACb,CAAE;AAAA,EACH;AACD;AAEA,IAAO,iBAAQ;",
6
+ "names": []
7
+ }
@@ -1,16 +1,15 @@
1
- /**
2
- * Internal dependencies
3
- */
4
-
5
- import { generateBoxRules } from '../utils';
1
+ import { generateBoxRules } from "../utils";
6
2
  const padding = {
7
- name: 'padding',
3
+ name: "padding",
8
4
  generate: (style, options) => {
9
- return generateBoxRules(style, options, ['spacing', 'padding'], {
10
- default: 'padding',
11
- individual: 'padding%s'
5
+ return generateBoxRules(style, options, ["spacing", "padding"], {
6
+ default: "padding",
7
+ individual: "padding%s"
12
8
  });
13
9
  }
14
10
  };
15
- export default padding;
16
- //# sourceMappingURL=padding.js.map
11
+ var padding_default = padding;
12
+ export {
13
+ padding_default as default
14
+ };
15
+ //# sourceMappingURL=padding.js.map
@@ -1 +1,7 @@
1
- {"version":3,"names":["generateBoxRules","padding","name","generate","style","options","default","individual"],"sources":["@wordpress/style-engine/src/styles/spacing/padding.ts"],"sourcesContent":["/**\n * Internal dependencies\n */\nimport type { Style, StyleOptions } from '../../types';\nimport { generateBoxRules } from '../utils';\n\nconst padding = {\n\tname: 'padding',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateBoxRules( style, options, [ 'spacing', 'padding' ], {\n\t\t\tdefault: 'padding',\n\t\t\tindividual: 'padding%s',\n\t\t} );\n\t},\n};\n\nexport default padding;\n"],"mappings":"AAAA;AACA;AACA;;AAEA,SAASA,gBAAgB,QAAQ,UAAU;AAE3C,MAAMC,OAAO,GAAG;EACfC,IAAI,EAAE,SAAS;EACfC,QAAQ,EAAEA,CAAEC,KAAY,EAAEC,OAAqB,KAAM;IACpD,OAAOL,gBAAgB,CAAEI,KAAK,EAAEC,OAAO,EAAE,CAAE,SAAS,EAAE,SAAS,CAAE,EAAE;MAClEC,OAAO,EAAE,SAAS;MAClBC,UAAU,EAAE;IACb,CAAE,CAAC;EACJ;AACD,CAAC;AAED,eAAeN,OAAO","ignoreList":[]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/styles/spacing/padding.ts"],
4
+ "sourcesContent": ["/**\n * Internal dependencies\n */\nimport type { Style, StyleOptions } from '../../types';\nimport { generateBoxRules } from '../utils';\n\nconst padding = {\n\tname: 'padding',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateBoxRules( style, options, [ 'spacing', 'padding' ], {\n\t\t\tdefault: 'padding',\n\t\t\tindividual: 'padding%s',\n\t\t} );\n\t},\n};\n\nexport default padding;\n"],
5
+ "mappings": "AAIA,SAAS,wBAAwB;AAEjC,MAAM,UAAU;AAAA,EACf,MAAM;AAAA,EACN,UAAU,CAAE,OAAc,YAA2B;AACpD,WAAO,iBAAkB,OAAO,SAAS,CAAE,WAAW,SAAU,GAAG;AAAA,MAClE,SAAS;AAAA,MACT,YAAY;AAAA,IACb,CAAE;AAAA,EACH;AACD;AAEA,IAAO,kBAAQ;",
6
+ "names": []
7
+ }
@@ -1,67 +1,127 @@
1
- /**
2
- * Internal dependencies
3
- */
4
-
5
- import { generateRule } from '../utils';
1
+ import { generateRule } from "../utils";
6
2
  const fontSize = {
7
- name: 'fontSize',
3
+ name: "fontSize",
8
4
  generate: (style, options) => {
9
- return generateRule(style, options, ['typography', 'fontSize'], 'fontSize');
5
+ return generateRule(
6
+ style,
7
+ options,
8
+ ["typography", "fontSize"],
9
+ "fontSize"
10
+ );
10
11
  }
11
12
  };
12
13
  const fontStyle = {
13
- name: 'fontStyle',
14
+ name: "fontStyle",
14
15
  generate: (style, options) => {
15
- return generateRule(style, options, ['typography', 'fontStyle'], 'fontStyle');
16
+ return generateRule(
17
+ style,
18
+ options,
19
+ ["typography", "fontStyle"],
20
+ "fontStyle"
21
+ );
16
22
  }
17
23
  };
18
24
  const fontWeight = {
19
- name: 'fontWeight',
25
+ name: "fontWeight",
20
26
  generate: (style, options) => {
21
- return generateRule(style, options, ['typography', 'fontWeight'], 'fontWeight');
27
+ return generateRule(
28
+ style,
29
+ options,
30
+ ["typography", "fontWeight"],
31
+ "fontWeight"
32
+ );
22
33
  }
23
34
  };
24
35
  const fontFamily = {
25
- name: 'fontFamily',
36
+ name: "fontFamily",
26
37
  generate: (style, options) => {
27
- return generateRule(style, options, ['typography', 'fontFamily'], 'fontFamily');
38
+ return generateRule(
39
+ style,
40
+ options,
41
+ ["typography", "fontFamily"],
42
+ "fontFamily"
43
+ );
28
44
  }
29
45
  };
30
46
  const letterSpacing = {
31
- name: 'letterSpacing',
47
+ name: "letterSpacing",
32
48
  generate: (style, options) => {
33
- return generateRule(style, options, ['typography', 'letterSpacing'], 'letterSpacing');
49
+ return generateRule(
50
+ style,
51
+ options,
52
+ ["typography", "letterSpacing"],
53
+ "letterSpacing"
54
+ );
34
55
  }
35
56
  };
36
57
  const lineHeight = {
37
- name: 'lineHeight',
58
+ name: "lineHeight",
38
59
  generate: (style, options) => {
39
- return generateRule(style, options, ['typography', 'lineHeight'], 'lineHeight');
60
+ return generateRule(
61
+ style,
62
+ options,
63
+ ["typography", "lineHeight"],
64
+ "lineHeight"
65
+ );
40
66
  }
41
67
  };
42
68
  const textColumns = {
43
- name: 'textColumns',
69
+ name: "textColumns",
44
70
  generate: (style, options) => {
45
- return generateRule(style, options, ['typography', 'textColumns'], 'columnCount');
71
+ return generateRule(
72
+ style,
73
+ options,
74
+ ["typography", "textColumns"],
75
+ "columnCount"
76
+ );
46
77
  }
47
78
  };
48
79
  const textDecoration = {
49
- name: 'textDecoration',
80
+ name: "textDecoration",
50
81
  generate: (style, options) => {
51
- return generateRule(style, options, ['typography', 'textDecoration'], 'textDecoration');
82
+ return generateRule(
83
+ style,
84
+ options,
85
+ ["typography", "textDecoration"],
86
+ "textDecoration"
87
+ );
52
88
  }
53
89
  };
54
90
  const textTransform = {
55
- name: 'textTransform',
91
+ name: "textTransform",
56
92
  generate: (style, options) => {
57
- return generateRule(style, options, ['typography', 'textTransform'], 'textTransform');
93
+ return generateRule(
94
+ style,
95
+ options,
96
+ ["typography", "textTransform"],
97
+ "textTransform"
98
+ );
58
99
  }
59
100
  };
60
101
  const writingMode = {
61
- name: 'writingMode',
102
+ name: "writingMode",
62
103
  generate: (style, options) => {
63
- return generateRule(style, options, ['typography', 'writingMode'], 'writingMode');
104
+ return generateRule(
105
+ style,
106
+ options,
107
+ ["typography", "writingMode"],
108
+ "writingMode"
109
+ );
64
110
  }
65
111
  };
66
- export default [fontFamily, fontSize, fontStyle, fontWeight, letterSpacing, lineHeight, textColumns, textDecoration, textTransform, writingMode];
67
- //# sourceMappingURL=index.js.map
112
+ var typography_default = [
113
+ fontFamily,
114
+ fontSize,
115
+ fontStyle,
116
+ fontWeight,
117
+ letterSpacing,
118
+ lineHeight,
119
+ textColumns,
120
+ textDecoration,
121
+ textTransform,
122
+ writingMode
123
+ ];
124
+ export {
125
+ typography_default as default
126
+ };
127
+ //# sourceMappingURL=index.js.map
@@ -1 +1,7 @@
1
- {"version":3,"names":["generateRule","fontSize","name","generate","style","options","fontStyle","fontWeight","fontFamily","letterSpacing","lineHeight","textColumns","textDecoration","textTransform","writingMode"],"sources":["@wordpress/style-engine/src/styles/typography/index.ts"],"sourcesContent":["/**\n * Internal dependencies\n */\nimport type { Style, StyleOptions } from '../../types';\nimport { generateRule } from '../utils';\n\nconst fontSize = {\n\tname: 'fontSize',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'fontSize' ],\n\t\t\t'fontSize'\n\t\t);\n\t},\n};\n\nconst fontStyle = {\n\tname: 'fontStyle',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'fontStyle' ],\n\t\t\t'fontStyle'\n\t\t);\n\t},\n};\n\nconst fontWeight = {\n\tname: 'fontWeight',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'fontWeight' ],\n\t\t\t'fontWeight'\n\t\t);\n\t},\n};\n\nconst fontFamily = {\n\tname: 'fontFamily',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'fontFamily' ],\n\t\t\t'fontFamily'\n\t\t);\n\t},\n};\n\nconst letterSpacing = {\n\tname: 'letterSpacing',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'letterSpacing' ],\n\t\t\t'letterSpacing'\n\t\t);\n\t},\n};\n\nconst lineHeight = {\n\tname: 'lineHeight',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'lineHeight' ],\n\t\t\t'lineHeight'\n\t\t);\n\t},\n};\n\nconst textColumns = {\n\tname: 'textColumns',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'textColumns' ],\n\t\t\t'columnCount'\n\t\t);\n\t},\n};\n\nconst textDecoration = {\n\tname: 'textDecoration',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'textDecoration' ],\n\t\t\t'textDecoration'\n\t\t);\n\t},\n};\n\nconst textTransform = {\n\tname: 'textTransform',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'textTransform' ],\n\t\t\t'textTransform'\n\t\t);\n\t},\n};\n\nconst writingMode = {\n\tname: 'writingMode',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'writingMode' ],\n\t\t\t'writingMode'\n\t\t);\n\t},\n};\n\nexport default [\n\tfontFamily,\n\tfontSize,\n\tfontStyle,\n\tfontWeight,\n\tletterSpacing,\n\tlineHeight,\n\ttextColumns,\n\ttextDecoration,\n\ttextTransform,\n\twritingMode,\n];\n"],"mappings":"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","ignoreList":[]}
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/styles/typography/index.ts"],
4
+ "sourcesContent": ["/**\n * Internal dependencies\n */\nimport type { Style, StyleOptions } from '../../types';\nimport { generateRule } from '../utils';\n\nconst fontSize = {\n\tname: 'fontSize',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'fontSize' ],\n\t\t\t'fontSize'\n\t\t);\n\t},\n};\n\nconst fontStyle = {\n\tname: 'fontStyle',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'fontStyle' ],\n\t\t\t'fontStyle'\n\t\t);\n\t},\n};\n\nconst fontWeight = {\n\tname: 'fontWeight',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'fontWeight' ],\n\t\t\t'fontWeight'\n\t\t);\n\t},\n};\n\nconst fontFamily = {\n\tname: 'fontFamily',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'fontFamily' ],\n\t\t\t'fontFamily'\n\t\t);\n\t},\n};\n\nconst letterSpacing = {\n\tname: 'letterSpacing',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'letterSpacing' ],\n\t\t\t'letterSpacing'\n\t\t);\n\t},\n};\n\nconst lineHeight = {\n\tname: 'lineHeight',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'lineHeight' ],\n\t\t\t'lineHeight'\n\t\t);\n\t},\n};\n\nconst textColumns = {\n\tname: 'textColumns',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'textColumns' ],\n\t\t\t'columnCount'\n\t\t);\n\t},\n};\n\nconst textDecoration = {\n\tname: 'textDecoration',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'textDecoration' ],\n\t\t\t'textDecoration'\n\t\t);\n\t},\n};\n\nconst textTransform = {\n\tname: 'textTransform',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'textTransform' ],\n\t\t\t'textTransform'\n\t\t);\n\t},\n};\n\nconst writingMode = {\n\tname: 'writingMode',\n\tgenerate: ( style: Style, options: StyleOptions ) => {\n\t\treturn generateRule(\n\t\t\tstyle,\n\t\t\toptions,\n\t\t\t[ 'typography', 'writingMode' ],\n\t\t\t'writingMode'\n\t\t);\n\t},\n};\n\nexport default [\n\tfontFamily,\n\tfontSize,\n\tfontStyle,\n\tfontWeight,\n\tletterSpacing,\n\tlineHeight,\n\ttextColumns,\n\ttextDecoration,\n\ttextTransform,\n\twritingMode,\n];\n"],
5
+ "mappings": "AAIA,SAAS,oBAAoB;AAE7B,MAAM,WAAW;AAAA,EAChB,MAAM;AAAA,EACN,UAAU,CAAE,OAAc,YAA2B;AACpD,WAAO;AAAA,MACN;AAAA,MACA;AAAA,MACA,CAAE,cAAc,UAAW;AAAA,MAC3B;AAAA,IACD;AAAA,EACD;AACD;AAEA,MAAM,YAAY;AAAA,EACjB,MAAM;AAAA,EACN,UAAU,CAAE,OAAc,YAA2B;AACpD,WAAO;AAAA,MACN;AAAA,MACA;AAAA,MACA,CAAE,cAAc,WAAY;AAAA,MAC5B;AAAA,IACD;AAAA,EACD;AACD;AAEA,MAAM,aAAa;AAAA,EAClB,MAAM;AAAA,EACN,UAAU,CAAE,OAAc,YAA2B;AACpD,WAAO;AAAA,MACN;AAAA,MACA;AAAA,MACA,CAAE,cAAc,YAAa;AAAA,MAC7B;AAAA,IACD;AAAA,EACD;AACD;AAEA,MAAM,aAAa;AAAA,EAClB,MAAM;AAAA,EACN,UAAU,CAAE,OAAc,YAA2B;AACpD,WAAO;AAAA,MACN;AAAA,MACA;AAAA,MACA,CAAE,cAAc,YAAa;AAAA,MAC7B;AAAA,IACD;AAAA,EACD;AACD;AAEA,MAAM,gBAAgB;AAAA,EACrB,MAAM;AAAA,EACN,UAAU,CAAE,OAAc,YAA2B;AACpD,WAAO;AAAA,MACN;AAAA,MACA;AAAA,MACA,CAAE,cAAc,eAAgB;AAAA,MAChC;AAAA,IACD;AAAA,EACD;AACD;AAEA,MAAM,aAAa;AAAA,EAClB,MAAM;AAAA,EACN,UAAU,CAAE,OAAc,YAA2B;AACpD,WAAO;AAAA,MACN;AAAA,MACA;AAAA,MACA,CAAE,cAAc,YAAa;AAAA,MAC7B;AAAA,IACD;AAAA,EACD;AACD;AAEA,MAAM,cAAc;AAAA,EACnB,MAAM;AAAA,EACN,UAAU,CAAE,OAAc,YAA2B;AACpD,WAAO;AAAA,MACN;AAAA,MACA;AAAA,MACA,CAAE,cAAc,aAAc;AAAA,MAC9B;AAAA,IACD;AAAA,EACD;AACD;AAEA,MAAM,iBAAiB;AAAA,EACtB,MAAM;AAAA,EACN,UAAU,CAAE,OAAc,YAA2B;AACpD,WAAO;AAAA,MACN;AAAA,MACA;AAAA,MACA,CAAE,cAAc,gBAAiB;AAAA,MACjC;AAAA,IACD;AAAA,EACD;AACD;AAEA,MAAM,gBAAgB;AAAA,EACrB,MAAM;AAAA,EACN,UAAU,CAAE,OAAc,YAA2B;AACpD,WAAO;AAAA,MACN;AAAA,MACA;AAAA,MACA,CAAE,cAAc,eAAgB;AAAA,MAChC;AAAA,IACD;AAAA,EACD;AACD;AAEA,MAAM,cAAc;AAAA,EACnB,MAAM;AAAA,EACN,UAAU,CAAE,OAAc,YAA2B;AACpD,WAAO;AAAA,MACN;AAAA,MACA;AAAA,MACA,CAAE,cAAc,aAAc;AAAA,MAC9B;AAAA,IACD;AAAA,EACD;AACD;AAEA,IAAO,qBAAQ;AAAA,EACd;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACD;",
6
+ "names": []
7
+ }