@dreamcommerce/aurora 2.4.0-5 → 2.4.0-6
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/build/cjs/packages/aurora/src/components/stack/index.js +1 -3
- package/build/cjs/packages/aurora/src/components/stack/index.js.map +1 -1
- package/build/cjs/packages/aurora/src/components/typography/index.js +2 -2
- package/build/cjs/packages/aurora/src/components/typography/typography_constants.js +3 -1
- package/build/cjs/packages/aurora/src/components/typography/typography_constants.js.map +1 -1
- package/build/cjs/packages/aurora/src/css/heading/main.module.less.js +2 -2
- package/build/cjs/packages/aurora/src/css/typography/main.module.less.js +2 -2
- package/build/esm/packages/aurora/src/components/stack/index.js +1 -3
- package/build/esm/packages/aurora/src/components/stack/index.js.map +1 -1
- package/build/esm/packages/aurora/src/components/typography/index.js +3 -3
- package/build/esm/packages/aurora/src/components/typography/typography_constants.d.ts +2 -0
- package/build/esm/packages/aurora/src/components/typography/typography_constants.js +3 -1
- package/build/esm/packages/aurora/src/components/typography/typography_constants.js.map +1 -1
- package/build/esm/packages/aurora/src/css/heading/main.module.less.js +2 -2
- package/build/esm/packages/aurora/src/css/typography/main.module.less.js +2 -2
- package/package.json +1 -1
|
@@ -14,9 +14,7 @@ var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
|
14
14
|
var classnames__default = /*#__PURE__*/_interopDefaultLegacy(classnames);
|
|
15
15
|
|
|
16
16
|
const Stack = ({ children, spacing = 0, className = '', direction = stack_constants.STACK_DIRECTIONS.row, justify = stack_constants.STACK_JUSTIFICATIONS.flexStart, align = stack_constants.STACK_ALIGNMENTS.normal, wrap = stack_constants.STACK_WRAP.nowrap, as = 'div', inline = false }) => {
|
|
17
|
-
const stackClass = classnames__default['default'](main_module['default'][css_classes.cssStack], main_module['default'][stack_constants.STACK_DIRECTIONS_TO_CSS_CLASSES_MAP[direction]], main_module['default'][stack_constants.STACK_ALIGNMENTS_TO_CSS_CLASSES_MAP[align]], main_module['default'][stack_constants.STACK_JUSTIFICATIONS[justify]], main_module['default'][stack_constants.STACK_WRAP_TO_CSS_CLASSES_MAP[wrap]],
|
|
18
|
-
[stack_constants.STACK_CSS_CLASSES.inline]: inline
|
|
19
|
-
});
|
|
17
|
+
const stackClass = classnames__default['default'](main_module['default'][css_classes.cssStack], main_module['default'][stack_constants.STACK_DIRECTIONS_TO_CSS_CLASSES_MAP[direction]], main_module['default'][stack_constants.STACK_ALIGNMENTS_TO_CSS_CLASSES_MAP[align]], main_module['default'][stack_constants.STACK_JUSTIFICATIONS[justify]], main_module['default'][stack_constants.STACK_WRAP_TO_CSS_CLASSES_MAP[wrap]], stack_constants.STACK_CSS_CLASSES.inline ? main_module['default'][stack_constants.STACK_CSS_CLASSES.inline] : '', className);
|
|
20
18
|
return React__default['default'].createElement(as, {
|
|
21
19
|
className: `${stackClass}`,
|
|
22
20
|
style: { gap: `${spacing}px` }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -12,8 +12,8 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
|
|
|
12
12
|
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
13
13
|
var classnames__default = /*#__PURE__*/_interopDefaultLegacy(classnames);
|
|
14
14
|
|
|
15
|
-
const Typography = ({ as = 'p', children, variant = 'h1', weight, transform }) => {
|
|
16
|
-
const typographyClasses = classnames__default['default'](main_module['default'][typography_constants.TYPOGRAPHY_CSS_CLASSES.typography], main_module['default'][typography_constants.TYPOGRAPHY_COMPONENTS_TYPES_TO_CSS_CLASSES_MAP[as]], main_module['default'][typography_constants.TYPOGRAPHY_COMPONENTS_TYPES_TO_CSS_CLASSES_MAP[variant]], main_module['default'][typography_constants.TYPOGRAPHY_TRANSFORM_TO_CSS_CLASSES_MAP[transform
|
|
15
|
+
const Typography = ({ as = 'p', children, variant = 'h1', weight, transform, cssClasses }) => {
|
|
16
|
+
const typographyClasses = classnames__default['default'](main_module['default'][typography_constants.TYPOGRAPHY_CSS_CLASSES.typography], as ? main_module['default'][typography_constants.TYPOGRAPHY_COMPONENTS_TYPES_TO_CSS_CLASSES_MAP[as]] : '', variant ? main_module['default'][typography_constants.TYPOGRAPHY_COMPONENTS_TYPES_TO_CSS_CLASSES_MAP[variant]] : '', transform ? main_module['default'][typography_constants.TYPOGRAPHY_TRANSFORM_TO_CSS_CLASSES_MAP[transform]] : '', weight ? main_module['default'][typography_constants.TYPOGRAPHY_WEIGHT_TO_CSS_CLASSES_MAP[weight]] : '', cssClasses);
|
|
17
17
|
return React__default['default'].createElement(as, {
|
|
18
18
|
className: typographyClasses
|
|
19
19
|
}, children);
|
|
@@ -33,7 +33,9 @@ const TYPOGRAPHY_COMPONENTS_TYPES_TO_CSS_CLASSES_MAP = {
|
|
|
33
33
|
[TYPOGRAPHY_COMPONENTS_TYPES.h3]: `${typographyCssBaseClass}_h3`,
|
|
34
34
|
[TYPOGRAPHY_COMPONENTS_TYPES.h4]: `${typographyCssBaseClass}_h4`,
|
|
35
35
|
[TYPOGRAPHY_COMPONENTS_TYPES.h5]: `${typographyCssBaseClass}_h5`,
|
|
36
|
-
[TYPOGRAPHY_COMPONENTS_TYPES.h6]: `${typographyCssBaseClass}_h6
|
|
36
|
+
[TYPOGRAPHY_COMPONENTS_TYPES.h6]: `${typographyCssBaseClass}_h6`,
|
|
37
|
+
[TYPOGRAPHY_COMPONENTS_TYPES.p]: `${typographyCssBaseClass}_p`,
|
|
38
|
+
[TYPOGRAPHY_COMPONENTS_TYPES.span]: `${typographyCssBaseClass}_span`
|
|
37
39
|
};
|
|
38
40
|
const TYPOGRAPHY_TRANSFORM_TO_CSS_CLASSES_MAP = {
|
|
39
41
|
[TYPOGRAPHY_TRANSFORM.uppercase]: `${typographyCssBaseClass}_uppercase`,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -4,8 +4,8 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var styleInject_es = require('../../../../../external/style-inject/dist/style-inject.es.js');
|
|
6
6
|
|
|
7
|
-
var css_248z = "/* font colors */\n/* actions */\n/* background */\n/* errors */\n/* borders */\n/* grid */\n/* scrollBar */\n/* sizes */\n.main-module_strong__3Jzt0 {\n font-weight: 700;\n}\n.main-module_small__3ODLs {\n font-size: 11px;\n font-size: 0.7857142857142857rem;\n}\n.main-module_display-1__1PNue {\n font-size: 64px;\n font-size: 4.571428571428571rem;\n font-weight: 700;\n color: #2d3748;\n}\n.main-module_head_line__3DhiP {\n font-size: 12px;\n font-size: 0.8571428571428571rem;\n color: #5c657e;\n font-weight: 400;\n display: flex;\n align-items: center;\n letter-spacing: 1.1px;\n text-transform: uppercase;\n}\n.main-module_head_line__3DhiP::after {\n content: '';\n flex: 1 1 auto;\n height: 0px;\n border-top: 1px solid #ececec;\n opacity: 1;\n margin-left: 1rem;\n}\n.main-module_head_box__2Xzof {\n text-transform: uppercase;\n letter-spacing: 1.1px;\n font-weight: 700;\n display: block;\n font-size: 12px;\n font-size: 0.8571428571428571rem;\n color: #2d3748;\n font-weight: 600;\n}\n.main-module_head_box__2Xzof:not(:last-child) {\n margin-bottom: 1rem;\n}\n";
|
|
8
|
-
var cssClasses = {"strong":"main-module_strong__3Jzt0","small":"main-module_small__3ODLs","display-1":"main-module_display-1__1PNue","head_line":"main-module_head_line__3DhiP","head_box":"main-module_head_box__2Xzof"};
|
|
7
|
+
var css_248z = "/* font colors */\n/* actions */\n/* background */\n/* errors */\n/* borders */\n/* grid */\n/* scrollBar */\n/* sizes */\n.main-module_h1__3a-Nj,\n.main-module_h2__21pDL,\n.main-module_h3__3imzT,\n.main-module_h4__2QRuk,\n.main-module_h5__1c9ae,\n.main-module_h6__3jfrk {\n display: block;\n color: #2d3748;\n font-weight: 600;\n}\n.main-module_h1__3a-Nj:not(:last-child),\n.main-module_h2__21pDL:not(:last-child) {\n margin-bottom: 2rem;\n}\n.main-module_h3__3imzT:not(:last-child),\n.main-module_h4__2QRuk:not(:last-child),\n.main-module_h5__1c9ae:not(:last-child),\n.main-module_h6__3jfrk:not(:last-child) {\n margin-bottom: 1rem;\n}\n.main-module_h1__3a-Nj {\n font-size: 36px;\n font-size: 2.5714285714285716rem;\n}\n.main-module_h2__21pDL {\n font-size: 24px;\n font-size: 1.7142857142857142rem;\n}\n.main-module_h3__3imzT {\n font-size: 18px;\n font-size: 1.2857142857142858rem;\n}\n.main-module_h4__2QRuk {\n font-size: 16px;\n font-size: 1.1428571428571428rem;\n}\n.main-module_h5__1c9ae {\n font-size: 14px;\n font-size: 1rem;\n}\n.main-module_h6__3jfrk {\n font-size: 12px;\n font-size: 0.8571428571428571rem;\n}\n.main-module_p__2sOVc {\n font-size: 14px;\n font-size: 1rem;\n}\n.main-module_p__2sOVc:not(:last-child) {\n margin-bottom: 1rem;\n}\n.main-module_strong__3Jzt0 {\n font-weight: 700;\n}\n.main-module_small__3ODLs {\n font-size: 11px;\n font-size: 0.7857142857142857rem;\n}\n.main-module_display-1__1PNue {\n font-size: 64px;\n font-size: 4.571428571428571rem;\n font-weight: 700;\n color: #2d3748;\n}\n.main-module_head_line__3DhiP {\n font-size: 12px;\n font-size: 0.8571428571428571rem;\n color: #5c657e;\n font-weight: 400;\n display: flex;\n align-items: center;\n letter-spacing: 1.1px;\n text-transform: uppercase;\n}\n.main-module_head_line__3DhiP::after {\n content: '';\n flex: 1 1 auto;\n height: 0px;\n border-top: 1px solid #ececec;\n opacity: 1;\n margin-left: 1rem;\n}\n.main-module_head_box__2Xzof {\n text-transform: uppercase;\n letter-spacing: 1.1px;\n font-weight: 700;\n display: block;\n font-size: 12px;\n font-size: 0.8571428571428571rem;\n color: #2d3748;\n font-weight: 600;\n}\n.main-module_head_box__2Xzof:not(:last-child) {\n margin-bottom: 1rem;\n}\n";
|
|
8
|
+
var cssClasses = {"h1":"main-module_h1__3a-Nj","h2":"main-module_h2__21pDL","h3":"main-module_h3__3imzT","h4":"main-module_h4__2QRuk","h5":"main-module_h5__1c9ae","h6":"main-module_h6__3jfrk","p":"main-module_p__2sOVc","strong":"main-module_strong__3Jzt0","small":"main-module_small__3ODLs","display-1":"main-module_display-1__1PNue","head_line":"main-module_head_line__3DhiP","head_box":"main-module_head_box__2Xzof"};
|
|
9
9
|
styleInject_es['default'](css_248z);
|
|
10
10
|
|
|
11
11
|
exports.default = cssClasses;
|
|
@@ -5,8 +5,8 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var styleInject_es = require('../../../../../external/style-inject/dist/style-inject.es.js');
|
|
6
6
|
|
|
7
7
|
var css_248z = "/* font colors */\n/* actions */\n/* background */\n/* errors */\n/* borders */\n/* grid */\n/* scrollBar */\n/* sizes */\n.main-module_typography_h1__3-Uq1 {\n font-size: 36px;\n font-size: 2.5714285714285716rem;\n}\n.main-module_typography_h2__2S8Us {\n font-size: 24px;\n font-size: 1.7142857142857142rem;\n}\n.main-module_typography_h3__2TNaC {\n font-size: 18px;\n font-size: 1.2857142857142858rem;\n}\n.main-module_typography_h4__2yTuP {\n font-size: 16px;\n font-size: 1.1428571428571428rem;\n}\n.main-module_typography_h5__1-Tt- {\n font-size: 14px;\n font-size: 1rem;\n}\n.main-module_typography_h6__2oHDB {\n font-size: 12px;\n font-size: 0.8571428571428571rem;\n}\n.main-module_typography_p__vWW6a {\n font-size: 14px;\n font-size: 1rem;\n}\n.main-module_typography_bold__18xiI {\n font-weight: 700;\n}\n.main-module_typography_semibold__1kr14 {\n font-weight: 600;\n}\n.main-module_typography_normal__oKS8F {\n font-weight: 400;\n}\n.main-module_typography_uppercase__PMlo5 {\n text-transform: uppercase;\n}\n.main-module_typography_lowercase__17D2L {\n text-transform: lowercase;\n}\n.main-module_typography_capitalize__3L3XA {\n text-transform: capitalize;\n}\n.main-module_typography_h1__3-Uq1,\n.main-module_typography_h2__2S8Us,\n.main-module_typography_h3__2TNaC,\n.main-module_typography_h4__2yTuP,\n.main-module_typography_h5__1-Tt-,\n.main-module_typography_h6__2oHDB {\n display: block;\n color: #2d3748;\n font-weight: 600;\n}\n.main-module_typography_h1__3-Uq1:not(:last-child),\n.main-module_typography_h2__2S8Us:not(:last-child) {\n margin-bottom: 2rem;\n}\n.main-module_typography_h3__2TNaC:not(:last-child),\n.main-module_typography_h4__2yTuP:not(:last-child),\n.main-module_typography_h5__1-Tt-:not(:last-child),\n.main-module_typography_h6__2oHDB:not(:last-child) {\n margin-bottom: 1rem;\n}\n.main-module_typography_p__vWW6a {\n font-size: 14px;\n font-size: 1rem;\n}\n.main-module_typography_p__vWW6a:not(:last-child) {\n margin-bottom: 1rem;\n}\n";
|
|
8
|
-
var
|
|
8
|
+
var typographyCssClasses = {"typography_h1":"main-module_typography_h1__3-Uq1","typography_h2":"main-module_typography_h2__2S8Us","typography_h3":"main-module_typography_h3__2TNaC","typography_h4":"main-module_typography_h4__2yTuP","typography_h5":"main-module_typography_h5__1-Tt-","typography_h6":"main-module_typography_h6__2oHDB","typography_p":"main-module_typography_p__vWW6a","typography_bold":"main-module_typography_bold__18xiI","typography_semibold":"main-module_typography_semibold__1kr14","typography_normal":"main-module_typography_normal__oKS8F","typography_uppercase":"main-module_typography_uppercase__PMlo5","typography_lowercase":"main-module_typography_lowercase__17D2L","typography_capitalize":"main-module_typography_capitalize__3L3XA"};
|
|
9
9
|
styleInject_es['default'](css_248z);
|
|
10
10
|
|
|
11
|
-
exports.default =
|
|
11
|
+
exports.default = typographyCssClasses;
|
|
12
12
|
//# sourceMappingURL=main.module.less.js.map
|
|
@@ -5,9 +5,7 @@ import cssClasses from '../../css/stack/main.module.less.js';
|
|
|
5
5
|
import { cssStack } from './css_classes.js';
|
|
6
6
|
|
|
7
7
|
const Stack = ({ children, spacing = 0, className = '', direction = STACK_DIRECTIONS.row, justify = STACK_JUSTIFICATIONS.flexStart, align = STACK_ALIGNMENTS.normal, wrap = STACK_WRAP.nowrap, as = 'div', inline = false }) => {
|
|
8
|
-
const stackClass = classnames(cssClasses[cssStack], cssClasses[STACK_DIRECTIONS_TO_CSS_CLASSES_MAP[direction]], cssClasses[STACK_ALIGNMENTS_TO_CSS_CLASSES_MAP[align]], cssClasses[STACK_JUSTIFICATIONS[justify]], cssClasses[STACK_WRAP_TO_CSS_CLASSES_MAP[wrap]],
|
|
9
|
-
[STACK_CSS_CLASSES.inline]: inline
|
|
10
|
-
});
|
|
8
|
+
const stackClass = classnames(cssClasses[cssStack], cssClasses[STACK_DIRECTIONS_TO_CSS_CLASSES_MAP[direction]], cssClasses[STACK_ALIGNMENTS_TO_CSS_CLASSES_MAP[align]], cssClasses[STACK_JUSTIFICATIONS[justify]], cssClasses[STACK_WRAP_TO_CSS_CLASSES_MAP[wrap]], STACK_CSS_CLASSES.inline ? cssClasses[STACK_CSS_CLASSES.inline] : '', className);
|
|
11
9
|
return React.createElement(as, {
|
|
12
10
|
className: `${stackClass}`,
|
|
13
11
|
style: { gap: `${spacing}px` }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import classnames from 'classnames';
|
|
3
3
|
import { TYPOGRAPHY_CSS_CLASSES, TYPOGRAPHY_COMPONENTS_TYPES_TO_CSS_CLASSES_MAP, TYPOGRAPHY_TRANSFORM_TO_CSS_CLASSES_MAP, TYPOGRAPHY_WEIGHT_TO_CSS_CLASSES_MAP } from './typography_constants.js';
|
|
4
|
-
import
|
|
4
|
+
import typographyCssClasses from '../../css/typography/main.module.less.js';
|
|
5
5
|
|
|
6
|
-
const Typography = ({ as = 'p', children, variant = 'h1', weight, transform }) => {
|
|
7
|
-
const typographyClasses = classnames(
|
|
6
|
+
const Typography = ({ as = 'p', children, variant = 'h1', weight, transform, cssClasses }) => {
|
|
7
|
+
const typographyClasses = classnames(typographyCssClasses[TYPOGRAPHY_CSS_CLASSES.typography], as ? typographyCssClasses[TYPOGRAPHY_COMPONENTS_TYPES_TO_CSS_CLASSES_MAP[as]] : '', variant ? typographyCssClasses[TYPOGRAPHY_COMPONENTS_TYPES_TO_CSS_CLASSES_MAP[variant]] : '', transform ? typographyCssClasses[TYPOGRAPHY_TRANSFORM_TO_CSS_CLASSES_MAP[transform]] : '', weight ? typographyCssClasses[TYPOGRAPHY_WEIGHT_TO_CSS_CLASSES_MAP[weight]] : '', cssClasses);
|
|
8
8
|
return React.createElement(as, {
|
|
9
9
|
className: typographyClasses
|
|
10
10
|
}, children);
|
|
@@ -29,6 +29,8 @@ export declare const TYPOGRAPHY_COMPONENTS_TYPES_TO_CSS_CLASSES_MAP: {
|
|
|
29
29
|
readonly h4: "typography_h4";
|
|
30
30
|
readonly h5: "typography_h5";
|
|
31
31
|
readonly h6: "typography_h6";
|
|
32
|
+
readonly p: "typography_p";
|
|
33
|
+
readonly span: "typography_span";
|
|
32
34
|
};
|
|
33
35
|
export declare const TYPOGRAPHY_TRANSFORM_TO_CSS_CLASSES_MAP: {
|
|
34
36
|
readonly uppercase: "typography_uppercase";
|
|
@@ -29,7 +29,9 @@ const TYPOGRAPHY_COMPONENTS_TYPES_TO_CSS_CLASSES_MAP = {
|
|
|
29
29
|
[TYPOGRAPHY_COMPONENTS_TYPES.h3]: `${typographyCssBaseClass}_h3`,
|
|
30
30
|
[TYPOGRAPHY_COMPONENTS_TYPES.h4]: `${typographyCssBaseClass}_h4`,
|
|
31
31
|
[TYPOGRAPHY_COMPONENTS_TYPES.h5]: `${typographyCssBaseClass}_h5`,
|
|
32
|
-
[TYPOGRAPHY_COMPONENTS_TYPES.h6]: `${typographyCssBaseClass}_h6
|
|
32
|
+
[TYPOGRAPHY_COMPONENTS_TYPES.h6]: `${typographyCssBaseClass}_h6`,
|
|
33
|
+
[TYPOGRAPHY_COMPONENTS_TYPES.p]: `${typographyCssBaseClass}_p`,
|
|
34
|
+
[TYPOGRAPHY_COMPONENTS_TYPES.span]: `${typographyCssBaseClass}_span`
|
|
33
35
|
};
|
|
34
36
|
const TYPOGRAPHY_TRANSFORM_TO_CSS_CLASSES_MAP = {
|
|
35
37
|
[TYPOGRAPHY_TRANSFORM.uppercase]: `${typographyCssBaseClass}_uppercase`,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
1
|
+
{"version":3,"file":null,"sources":[null],"sourcesContent":[null],"names":[],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import styleInject from '../../../../../external/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
|
-
var css_248z = "/* font colors */\n/* actions */\n/* background */\n/* errors */\n/* borders */\n/* grid */\n/* scrollBar */\n/* sizes */\n.main-module_strong__3Jzt0 {\n font-weight: 700;\n}\n.main-module_small__3ODLs {\n font-size: 11px;\n font-size: 0.7857142857142857rem;\n}\n.main-module_display-1__1PNue {\n font-size: 64px;\n font-size: 4.571428571428571rem;\n font-weight: 700;\n color: #2d3748;\n}\n.main-module_head_line__3DhiP {\n font-size: 12px;\n font-size: 0.8571428571428571rem;\n color: #5c657e;\n font-weight: 400;\n display: flex;\n align-items: center;\n letter-spacing: 1.1px;\n text-transform: uppercase;\n}\n.main-module_head_line__3DhiP::after {\n content: '';\n flex: 1 1 auto;\n height: 0px;\n border-top: 1px solid #ececec;\n opacity: 1;\n margin-left: 1rem;\n}\n.main-module_head_box__2Xzof {\n text-transform: uppercase;\n letter-spacing: 1.1px;\n font-weight: 700;\n display: block;\n font-size: 12px;\n font-size: 0.8571428571428571rem;\n color: #2d3748;\n font-weight: 600;\n}\n.main-module_head_box__2Xzof:not(:last-child) {\n margin-bottom: 1rem;\n}\n";
|
|
4
|
-
var cssClasses = {"strong":"main-module_strong__3Jzt0","small":"main-module_small__3ODLs","display-1":"main-module_display-1__1PNue","head_line":"main-module_head_line__3DhiP","head_box":"main-module_head_box__2Xzof"};
|
|
3
|
+
var css_248z = "/* font colors */\n/* actions */\n/* background */\n/* errors */\n/* borders */\n/* grid */\n/* scrollBar */\n/* sizes */\n.main-module_h1__3a-Nj,\n.main-module_h2__21pDL,\n.main-module_h3__3imzT,\n.main-module_h4__2QRuk,\n.main-module_h5__1c9ae,\n.main-module_h6__3jfrk {\n display: block;\n color: #2d3748;\n font-weight: 600;\n}\n.main-module_h1__3a-Nj:not(:last-child),\n.main-module_h2__21pDL:not(:last-child) {\n margin-bottom: 2rem;\n}\n.main-module_h3__3imzT:not(:last-child),\n.main-module_h4__2QRuk:not(:last-child),\n.main-module_h5__1c9ae:not(:last-child),\n.main-module_h6__3jfrk:not(:last-child) {\n margin-bottom: 1rem;\n}\n.main-module_h1__3a-Nj {\n font-size: 36px;\n font-size: 2.5714285714285716rem;\n}\n.main-module_h2__21pDL {\n font-size: 24px;\n font-size: 1.7142857142857142rem;\n}\n.main-module_h3__3imzT {\n font-size: 18px;\n font-size: 1.2857142857142858rem;\n}\n.main-module_h4__2QRuk {\n font-size: 16px;\n font-size: 1.1428571428571428rem;\n}\n.main-module_h5__1c9ae {\n font-size: 14px;\n font-size: 1rem;\n}\n.main-module_h6__3jfrk {\n font-size: 12px;\n font-size: 0.8571428571428571rem;\n}\n.main-module_p__2sOVc {\n font-size: 14px;\n font-size: 1rem;\n}\n.main-module_p__2sOVc:not(:last-child) {\n margin-bottom: 1rem;\n}\n.main-module_strong__3Jzt0 {\n font-weight: 700;\n}\n.main-module_small__3ODLs {\n font-size: 11px;\n font-size: 0.7857142857142857rem;\n}\n.main-module_display-1__1PNue {\n font-size: 64px;\n font-size: 4.571428571428571rem;\n font-weight: 700;\n color: #2d3748;\n}\n.main-module_head_line__3DhiP {\n font-size: 12px;\n font-size: 0.8571428571428571rem;\n color: #5c657e;\n font-weight: 400;\n display: flex;\n align-items: center;\n letter-spacing: 1.1px;\n text-transform: uppercase;\n}\n.main-module_head_line__3DhiP::after {\n content: '';\n flex: 1 1 auto;\n height: 0px;\n border-top: 1px solid #ececec;\n opacity: 1;\n margin-left: 1rem;\n}\n.main-module_head_box__2Xzof {\n text-transform: uppercase;\n letter-spacing: 1.1px;\n font-weight: 700;\n display: block;\n font-size: 12px;\n font-size: 0.8571428571428571rem;\n color: #2d3748;\n font-weight: 600;\n}\n.main-module_head_box__2Xzof:not(:last-child) {\n margin-bottom: 1rem;\n}\n";
|
|
4
|
+
var cssClasses = {"h1":"main-module_h1__3a-Nj","h2":"main-module_h2__21pDL","h3":"main-module_h3__3imzT","h4":"main-module_h4__2QRuk","h5":"main-module_h5__1c9ae","h6":"main-module_h6__3jfrk","p":"main-module_p__2sOVc","strong":"main-module_strong__3Jzt0","small":"main-module_small__3ODLs","display-1":"main-module_display-1__1PNue","head_line":"main-module_head_line__3DhiP","head_box":"main-module_head_box__2Xzof"};
|
|
5
5
|
styleInject(css_248z);
|
|
6
6
|
|
|
7
7
|
export default cssClasses;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import styleInject from '../../../../../external/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
3
|
var css_248z = "/* font colors */\n/* actions */\n/* background */\n/* errors */\n/* borders */\n/* grid */\n/* scrollBar */\n/* sizes */\n.main-module_typography_h1__3-Uq1 {\n font-size: 36px;\n font-size: 2.5714285714285716rem;\n}\n.main-module_typography_h2__2S8Us {\n font-size: 24px;\n font-size: 1.7142857142857142rem;\n}\n.main-module_typography_h3__2TNaC {\n font-size: 18px;\n font-size: 1.2857142857142858rem;\n}\n.main-module_typography_h4__2yTuP {\n font-size: 16px;\n font-size: 1.1428571428571428rem;\n}\n.main-module_typography_h5__1-Tt- {\n font-size: 14px;\n font-size: 1rem;\n}\n.main-module_typography_h6__2oHDB {\n font-size: 12px;\n font-size: 0.8571428571428571rem;\n}\n.main-module_typography_p__vWW6a {\n font-size: 14px;\n font-size: 1rem;\n}\n.main-module_typography_bold__18xiI {\n font-weight: 700;\n}\n.main-module_typography_semibold__1kr14 {\n font-weight: 600;\n}\n.main-module_typography_normal__oKS8F {\n font-weight: 400;\n}\n.main-module_typography_uppercase__PMlo5 {\n text-transform: uppercase;\n}\n.main-module_typography_lowercase__17D2L {\n text-transform: lowercase;\n}\n.main-module_typography_capitalize__3L3XA {\n text-transform: capitalize;\n}\n.main-module_typography_h1__3-Uq1,\n.main-module_typography_h2__2S8Us,\n.main-module_typography_h3__2TNaC,\n.main-module_typography_h4__2yTuP,\n.main-module_typography_h5__1-Tt-,\n.main-module_typography_h6__2oHDB {\n display: block;\n color: #2d3748;\n font-weight: 600;\n}\n.main-module_typography_h1__3-Uq1:not(:last-child),\n.main-module_typography_h2__2S8Us:not(:last-child) {\n margin-bottom: 2rem;\n}\n.main-module_typography_h3__2TNaC:not(:last-child),\n.main-module_typography_h4__2yTuP:not(:last-child),\n.main-module_typography_h5__1-Tt-:not(:last-child),\n.main-module_typography_h6__2oHDB:not(:last-child) {\n margin-bottom: 1rem;\n}\n.main-module_typography_p__vWW6a {\n font-size: 14px;\n font-size: 1rem;\n}\n.main-module_typography_p__vWW6a:not(:last-child) {\n margin-bottom: 1rem;\n}\n";
|
|
4
|
-
var
|
|
4
|
+
var typographyCssClasses = {"typography_h1":"main-module_typography_h1__3-Uq1","typography_h2":"main-module_typography_h2__2S8Us","typography_h3":"main-module_typography_h3__2TNaC","typography_h4":"main-module_typography_h4__2yTuP","typography_h5":"main-module_typography_h5__1-Tt-","typography_h6":"main-module_typography_h6__2oHDB","typography_p":"main-module_typography_p__vWW6a","typography_bold":"main-module_typography_bold__18xiI","typography_semibold":"main-module_typography_semibold__1kr14","typography_normal":"main-module_typography_normal__oKS8F","typography_uppercase":"main-module_typography_uppercase__PMlo5","typography_lowercase":"main-module_typography_lowercase__17D2L","typography_capitalize":"main-module_typography_capitalize__3L3XA"};
|
|
5
5
|
styleInject(css_248z);
|
|
6
6
|
|
|
7
|
-
export default
|
|
7
|
+
export default typographyCssClasses;
|
|
8
8
|
//# sourceMappingURL=main.module.less.js.map
|