oolib 2.177.4 → 2.178.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 (48) hide show
  1. package/dist/stories/v2/components/Tags/Tag.stories.d.ts +10 -0
  2. package/dist/stories/v2/components/Tags/Tag.stories.js +32 -0
  3. package/dist/stories/v2/components/Tags/TagClear.stories.d.ts +10 -0
  4. package/dist/stories/v2/components/Tags/TagClear.stories.js +32 -0
  5. package/dist/stories/v2/components/Tags/TagDisplay.stories.d.ts +11 -0
  6. package/dist/stories/v2/components/Tags/TagDisplay.stories.js +88 -0
  7. package/dist/stories/v2/components/Tags/TagLink.stories.d.ts +10 -0
  8. package/dist/stories/v2/components/Tags/TagLink.stories.js +31 -0
  9. package/dist/stories/v2/components/Tags/utils/GenTag.d.ts +6 -0
  10. package/dist/stories/v2/components/Tags/utils/GenTag.js +24 -0
  11. package/dist/stories/v2/components/Tags/utils/tagArgTypes.d.ts +7 -0
  12. package/dist/stories/v2/components/Tags/utils/tagArgTypes.js +107 -0
  13. package/dist/stories/v2/themes/Typo.stories.js +1 -0
  14. package/dist/v2/components/Tags/Comps/Tag/index.d.ts +14 -0
  15. package/dist/v2/components/Tags/Comps/Tag/index.js +28 -0
  16. package/dist/v2/components/Tags/Comps/Tag/styled.d.ts +14 -0
  17. package/dist/v2/components/Tags/Comps/Tag/styled.js +81 -0
  18. package/dist/v2/components/Tags/Comps/TagClear/index.d.ts +3 -19
  19. package/dist/v2/components/Tags/Comps/TagClear/index.js +7 -61
  20. package/dist/v2/components/Tags/Comps/TagDisplay/getTagDisplayStyles.d.ts +9 -0
  21. package/dist/v2/components/Tags/Comps/TagDisplay/getTagDisplayStyles.js +36 -0
  22. package/dist/v2/components/Tags/Comps/TagDisplay/index.d.ts +10 -22
  23. package/dist/v2/components/Tags/Comps/TagDisplay/index.js +21 -21
  24. package/dist/v2/components/Tags/Comps/TagLink/index.d.ts +6 -19
  25. package/dist/v2/components/Tags/Comps/TagLink/index.js +17 -64
  26. package/dist/v2/components/Tags/Comps/styled.d.ts +0 -25
  27. package/dist/v2/components/Tags/Comps/styled.js +35 -52
  28. package/dist/v2/components/Tags/index.d.ts +1 -0
  29. package/dist/v2/components/Tags/index.js +3 -1
  30. package/dist/v2/components/Typo2/index.d.ts +1 -0
  31. package/dist/v2/components/Typo2/index.js +3 -1
  32. package/dist/v2/components/Typo2/index.styled.d.ts +1 -0
  33. package/dist/v2/components/Typo2/index.styled.js +18 -17
  34. package/dist/v2/themes/typo.d.ts +1 -0
  35. package/dist/v2/themes/typo.js +20 -16
  36. package/package.json +1 -1
  37. package/dist/stories/v2/components/TagClear.stories.d.ts +0 -28
  38. package/dist/stories/v2/components/TagClear.stories.js +0 -79
  39. package/dist/stories/v2/components/TagDisplay.stories.d.ts +0 -90
  40. package/dist/stories/v2/components/TagDisplay.stories.js +0 -137
  41. package/dist/stories/v2/components/TagLink.stories.d.ts +0 -28
  42. package/dist/stories/v2/components/TagLink.stories.js +0 -79
  43. package/dist/v2/components/Tags/Comps/TagClear/styled.d.ts +0 -15
  44. package/dist/v2/components/Tags/Comps/TagClear/styled.js +0 -21
  45. package/dist/v2/components/Tags/Comps/TagDisplay/styled.d.ts +0 -5
  46. package/dist/v2/components/Tags/Comps/TagDisplay/styled.js +0 -78
  47. package/dist/v2/components/Tags/Comps/TagLink/styled.d.ts +0 -16
  48. package/dist/v2/components/Tags/Comps/TagLink/styled.js +0 -61
@@ -0,0 +1,9 @@
1
+ export function getTagDisplayStyles({ variant }: {
2
+ variant: any;
3
+ }): {
4
+ backgroundColor: string;
5
+ backdropFilter?: undefined;
6
+ } | {
7
+ backgroundColor: string;
8
+ backdropFilter: string;
9
+ };
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getTagDisplayStyles = void 0;
4
+ var themes_1 = require("../../../../themes");
5
+ var grey40 = themes_1.colors.grey40, green = themes_1.colors.green, yellow = themes_1.colors.yellow, blue = themes_1.colors.blue, error = themes_1.colors.error, purple = themes_1.colors.purple;
6
+ var getTagDisplayStyles = function (_a) {
7
+ var variant = _a.variant;
8
+ switch (variant) {
9
+ case "positive":
10
+ return {
11
+ backgroundColor: green,
12
+ };
13
+ case "inProgress":
14
+ return {
15
+ backgroundColor: blue,
16
+ };
17
+ case "warning":
18
+ return {
19
+ backgroundColor: yellow,
20
+ };
21
+ case "negative":
22
+ return {
23
+ backgroundColor: error,
24
+ };
25
+ case "special":
26
+ return {
27
+ backgroundColor: purple,
28
+ };
29
+ default:
30
+ return {
31
+ backgroundColor: grey40,
32
+ backdropFilter: "blur(10px)",
33
+ };
34
+ }
35
+ };
36
+ exports.getTagDisplayStyles = getTagDisplayStyles;
@@ -1,26 +1,14 @@
1
- import React, { FunctionComponent } from 'react';
2
- export interface TagDisplayProps {
1
+ import React from 'react';
2
+ import { TagInterface } from '../Tag';
3
+ export interface TagDisplayInterface extends Omit<TagInterface, 'variant'> {
4
+ id?: string;
3
5
  display: string;
4
- title?: string;
5
- style?: React.CSSProperties;
6
- M?: boolean;
7
- XS?: boolean;
6
+ size?: "XS" | "S" | "M";
8
7
  tagColor?: string;
9
8
  textColor?: string;
10
- variant?: 'positive' | 'inProgress' | 'warning' | 'negative' | 'special' | 'grey' | "default";
9
+ fill?: string;
10
+ icon?: string;
11
+ weight?: "bold" | "light" | "default";
12
+ variant: 'positive' | 'inProgress' | 'warning' | 'negative' | 'special' | "default";
11
13
  }
12
- /**
13
- * @component Renders a TagDisplay component with customizable text, style and variant.
14
- *
15
- * - The props object containing the following properties:
16
- * @prop {string} display: The text to be displayed inside the TagDisplay component.
17
- * @prop {React.CSSProperties} style: Additional CSS styles to apply to the TagDisplay.
18
- * @prop {boolean} [M] : A boolean indicating whether the component should render at the large size. Defaults to false.
19
- * @prop {boolean} [XS] : A boolean indicating whether the component should render at the extra small size. Defaults to false.
20
- * @prop {string} [tagColor] : A string indicating the background color of the component. Defaults to undefined.
21
- * @prop {red | green | black} [color] : A string indicating the background color of the component. Defaults to undefined.
22
- * @prop {string} [textColor] : A string indicating the text color of the component. Defaults to undefined.
23
- * @prop {('primary' | 'secondary')} [variant] : A string indicating the variant of the component. Defaults to "primary".
24
- * @return {ReactElement} The rendered TagDisplay component.
25
- */
26
- export declare const TagDisplay: FunctionComponent<TagDisplayProps>;
14
+ export declare const TagDisplay: React.FunctionComponent<TagDisplayInterface>;
@@ -1,31 +1,31 @@
1
1
  "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
2
13
  var __importDefault = (this && this.__importDefault) || function (mod) {
3
14
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
15
  };
5
16
  Object.defineProperty(exports, "__esModule", { value: true });
6
17
  exports.TagDisplay = void 0;
7
18
  var react_1 = __importDefault(require("react"));
8
- var styled_1 = require("./styled");
9
- var getTypoComp_1 = require("../../utils/getTypoComp");
10
- /**
11
- * @component Renders a TagDisplay component with customizable text, style and variant.
12
- *
13
- * - The props object containing the following properties:
14
- * @prop {string} display: The text to be displayed inside the TagDisplay component.
15
- * @prop {React.CSSProperties} style: Additional CSS styles to apply to the TagDisplay.
16
- * @prop {boolean} [M] : A boolean indicating whether the component should render at the large size. Defaults to false.
17
- * @prop {boolean} [XS] : A boolean indicating whether the component should render at the extra small size. Defaults to false.
18
- * @prop {string} [tagColor] : A string indicating the background color of the component. Defaults to undefined.
19
- * @prop {red | green | black} [color] : A string indicating the background color of the component. Defaults to undefined.
20
- * @prop {string} [textColor] : A string indicating the text color of the component. Defaults to undefined.
21
- * @prop {('primary' | 'secondary')} [variant] : A string indicating the variant of the component. Defaults to "primary".
22
- * @return {ReactElement} The rendered TagDisplay component.
23
- */
19
+ var Typo2_1 = require("../../../Typo2");
20
+ var Tag_1 = require("../Tag");
21
+ var themes_1 = require("../../../../themes");
22
+ var getTagDisplayStyles_1 = require("./getTagDisplayStyles");
23
+ var white = themes_1.colors.white;
24
24
  var TagDisplay = function (_a) {
25
- var display = _a.display, title = _a.title, style = _a.style, M = _a.M, XS = _a.XS, tagColor = _a.tagColor, textColor = _a.textColor, _b = _a.variant, variant = _b === void 0 ? 'default' : _b;
26
- var size = M ? 'M' : XS ? 'XS' : 'S';
27
- var TYPO_COMP = (0, getTypoComp_1.getTypoComp)({ typo: "tag" }); // secondary variant has a different typo - "UI_CAPTION"
28
- return (react_1.default.createElement(styled_1.StyledTagDisplay, { variant: variant, textColor: textColor, tagColor: tagColor, size: size, style: style, title: title },
29
- react_1.default.createElement(TYPO_COMP, null, display)));
25
+ var id = _a.id, display = _a.display, size = _a.size,
26
+ // tagColor,
27
+ // textColor,
28
+ fill = _a.fill, icon = _a.icon, _b = _a.variant, variant = _b === void 0 ? 'default' : _b, weight = _a.weight;
29
+ return (react_1.default.createElement(Tag_1.Tag, { weight: weight, id: id, display: display, icon: icon, size: size, fill: fill, style: __assign({ padding: "0.25rem 0.5rem", borderRadius: "4px", color: white }, (0, getTagDisplayStyles_1.getTagDisplayStyles)({ variant: variant })), typo: Typo2_1.UI_TAG_DF }));
30
30
  };
31
31
  exports.TagDisplay = TagDisplay;
@@ -1,24 +1,11 @@
1
- import { FunctionComponent } from "react";
1
+ import React, { FunctionComponent } from "react";
2
+ export declare const StyledLink: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<import("react-router-dom").NavLinkProps & React.RefAttributes<HTMLAnchorElement>>, any, {}, never>;
2
3
  export interface TagLinkProps {
3
4
  display: string;
4
5
  to: string;
5
- invert?: boolean;
6
- M?: boolean;
7
- XS?: boolean;
8
- variant?: 'primary' | 'secondary';
9
- color?: 'red' | 'green' | 'black';
6
+ id?: string;
7
+ fill: "solid" | "outline";
8
+ size?: "S" | "XS";
9
+ weight?: "bold" | "light" | "default";
10
10
  }
11
- /**
12
- * @component Renders a TagLink component with customizable text, URL, style and variant.
13
- *
14
- * - The props object containing the following properties:
15
- * @prop {string} display: The text to be displayed inside the TagLink component.
16
- * @prop {string} to: The URL to navigate to when the component is clicked.
17
- * @prop {boolean} [invert] : A boolean indicating whether to invert the colors of the component. Defaults to false.
18
- * @prop {boolean} [M] : A boolean indicating whether the component should render at the large size. Defaults to false.
19
- * @prop {boolean} [XS] : A boolean indicating whether the component should render at the extra small size. Defaults to false.
20
- * @prop {string} [variant] : A string indicating the variant of the component. Defaults to "primary".
21
- * @prop {string} [color] : A string indicating the background color of the component. Defaults to undefined.
22
- * @return {ReactElement} The rendered TagLink component.
23
- */
24
11
  export declare const TagLink: FunctionComponent<TagLinkProps>;
@@ -1,69 +1,22 @@
1
1
  "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || (function () {
19
- var ownKeys = function(o) {
20
- ownKeys = Object.getOwnPropertyNames || function (o) {
21
- var ar = [];
22
- for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
- return ar;
24
- };
25
- return ownKeys(o);
26
- };
27
- return function (mod) {
28
- if (mod && mod.__esModule) return mod;
29
- var result = {};
30
- if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
- __setModuleDefault(result, mod);
32
- return result;
33
- };
34
- })();
2
+ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
3
+ if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
4
+ return cooked;
5
+ };
6
+ var __importDefault = (this && this.__importDefault) || function (mod) {
7
+ return (mod && mod.__esModule) ? mod : { "default": mod };
8
+ };
35
9
  Object.defineProperty(exports, "__esModule", { value: true });
36
- exports.TagLink = void 0;
37
- var react_1 = __importStar(require("react"));
38
- var styled_1 = require("./styled");
39
- var icons_1 = require("../../../../../icons");
40
- var styled_components_1 = require("styled-components");
41
- var getTypoComp_1 = require("../../utils/getTypoComp");
42
- var ArrowLineUpRight = icons_1.icons.ArrowLineUpRight;
43
- /**
44
- * @component Renders a TagLink component with customizable text, URL, style and variant.
45
- *
46
- * - The props object containing the following properties:
47
- * @prop {string} display: The text to be displayed inside the TagLink component.
48
- * @prop {string} to: The URL to navigate to when the component is clicked.
49
- * @prop {boolean} [invert] : A boolean indicating whether to invert the colors of the component. Defaults to false.
50
- * @prop {boolean} [M] : A boolean indicating whether the component should render at the large size. Defaults to false.
51
- * @prop {boolean} [XS] : A boolean indicating whether the component should render at the extra small size. Defaults to false.
52
- * @prop {string} [variant] : A string indicating the variant of the component. Defaults to "primary".
53
- * @prop {string} [color] : A string indicating the background color of the component. Defaults to undefined.
54
- * @return {ReactElement} The rendered TagLink component.
55
- */
10
+ exports.TagLink = exports.StyledLink = void 0;
11
+ var react_1 = __importDefault(require("react"));
12
+ var Tag_1 = require("../Tag");
13
+ var styled_components_1 = __importDefault(require("styled-components"));
14
+ var react_router_dom_1 = require("react-router-dom");
15
+ exports.StyledLink = (0, styled_components_1.default)(react_router_dom_1.NavLink)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n text-decoration: none;\n"], ["\n text-decoration: none;\n"])));
56
16
  var TagLink = function (_a) {
57
- var display = _a.display, to = _a.to, M = _a.M, XS = _a.XS, _b = _a.variant, variant = _b === void 0 ? 'primary' : _b, color = _a.color;
58
- var size = M ? 'M' : XS ? 'XS' : 'S';
59
- var TYPO_COMP = (0, getTypoComp_1.getTypoComp)({ typo: "captionSemiBold" });
60
- var _c = (0, react_1.useState)(false), hoverTag = _c[0], setHoverOnTag = _c[1];
61
- var theme = (0, styled_components_1.useTheme)();
62
- return (react_1.default.createElement(styled_1.StyledLink, { to: to },
63
- react_1.default.createElement(styled_1.StyledTagLink, { color: color, variant: variant, size: size, onMouseEnter: function () { return setHoverOnTag(true); }, onMouseLeave: function () { return setHoverOnTag(false); } },
64
- react_1.default.createElement(TYPO_COMP, null, display),
65
- hoverTag &&
66
- react_1.default.createElement(styled_1.StyledLinkIconWrapper, { theme: theme },
67
- react_1.default.createElement(ArrowLineUpRight, { style: { marginRight: '-0.3rem' }, size: 14, weight: 'bold' })))));
17
+ var display = _a.display, to = _a.to, id = _a.id, fill = _a.fill, size = _a.size, weight = _a.weight;
18
+ return (react_1.default.createElement(exports.StyledLink, { to: to },
19
+ react_1.default.createElement(Tag_1.Tag, { id: id, display: display, icon: "ArrowLineUpRight", size: size || "S", variant: "link", fill: fill, weight: weight })));
68
20
  };
69
21
  exports.TagLink = TagLink;
22
+ var templateObject_1;
@@ -1,25 +0,0 @@
1
- import { ColorsType } from '../../../../themes/colors';
2
- interface CommonStyleProps {
3
- size: keyof typeof SIZES;
4
- }
5
- interface TextColorProps {
6
- invert?: boolean;
7
- colors?: ColorsType;
8
- }
9
- export interface HoverProps {
10
- invert?: boolean;
11
- colors: ColorsType;
12
- }
13
- export declare const SIZES: {
14
- XS: string;
15
- S: string;
16
- M: string;
17
- };
18
- export declare const commonStyle: ({ size }: CommonStyleProps) => string;
19
- export declare const textColor: ({ invert }: TextColorProps) => import("styled-components").FlattenSimpleInterpolation;
20
- export declare const blueHover: ({ invert, colors }: HoverProps) => import("styled-components").FlattenSimpleInterpolation;
21
- export declare const redHover: ({ invert }: TextColorProps) => import("styled-components").FlattenSimpleInterpolation;
22
- export declare const greenHover: ({ invert }: TextColorProps) => import("styled-components").FlattenSimpleInterpolation;
23
- export declare const blackHover: ({ invert }: TextColorProps) => import("styled-components").FlattenSimpleInterpolation;
24
- export declare const greyHover: ({ invert }: TextColorProps) => import("styled-components").FlattenSimpleInterpolation;
25
- export {};
@@ -1,52 +1,35 @@
1
- "use strict";
2
- var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
3
- if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
4
- return cooked;
5
- };
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- exports.greyHover = exports.blackHover = exports.greenHover = exports.redHover = exports.blueHover = exports.textColor = exports.commonStyle = exports.SIZES = void 0;
8
- var styled_components_1 = require("styled-components");
9
- var colors_1 = require("../../../../themes/colors");
10
- var utilsOolib_1 = require("../../../../utilsOolib");
11
- var greyColor100 = colors_1.colors.greyColor100, greyColor80 = colors_1.colors.greyColor80, greyColor10 = colors_1.colors.greyColor10, white = colors_1.colors.white, greyColor5 = colors_1.colors.greyColor5, hoverRed = colors_1.colors.hoverRed, hoverInvertRed = colors_1.colors.hoverInvertRed, hoverGreen = colors_1.colors.hoverGreen, invertHoverGreen = colors_1.colors.invertHoverGreen;
12
- exports.SIZES = {
13
- XS: '1.8rem',
14
- S: "2.5rem",
15
- M: "3rem",
16
- };
17
- var commonStyle = function (_a) {
18
- var size = _a.size;
19
- return "\n padding: ".concat(size === 'XS' ? '0.5rem' : '1rem', ";\n border-radius: 4px;\n position: relative;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n white-space: nowrap;\n max-width: 100%;\n");
20
- };
21
- exports.commonStyle = commonStyle;
22
- var textColor = function (_a) {
23
- var invert = _a.invert;
24
- return (0, styled_components_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n color: ", ";\n"], ["\n color: ", ";\n"])), invert ? greyColor100 : white);
25
- };
26
- exports.textColor = textColor;
27
- var blueHover = function (_a) {
28
- var invert = _a.invert, colors = _a.colors;
29
- return (0, styled_components_1.css)(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n @media (hover: hover) {\n &:hover {\n background-color: ", ";\n color: ", ";\n }\n }\n"], ["\n @media (hover: hover) {\n &:hover {\n background-color: ", ";\n color: ", ";\n }\n }\n"])), invert ? (0, utilsOolib_1.getPrimaryColor10)(colors) : (0, utilsOolib_1.getPrimaryColor40)(colors), invert ? greyColor100 : (0, utilsOolib_1.getPrimaryColorText)(colors));
30
- };
31
- exports.blueHover = blueHover;
32
- var redHover = function (_a) {
33
- var invert = _a.invert;
34
- return (0, styled_components_1.css)(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n @media (hover: hover) {\n &:hover {\n background-color: ", ";\n }\n }\n"], ["\n @media (hover: hover) {\n &:hover {\n background-color: ", ";\n }\n }\n"])), invert ? hoverInvertRed : hoverRed);
35
- };
36
- exports.redHover = redHover;
37
- var greenHover = function (_a) {
38
- var invert = _a.invert;
39
- return (0, styled_components_1.css)(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n @media (hover: hover) {\n &:hover {\n background-color: ", ";\n }\n }\n"], ["\n @media (hover: hover) {\n &:hover {\n background-color: ", ";\n }\n }\n"])), invert ? invertHoverGreen : hoverGreen);
40
- };
41
- exports.greenHover = greenHover;
42
- var blackHover = function (_a) {
43
- var invert = _a.invert;
44
- return (0, styled_components_1.css)(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n @media (hover: hover) {\n &:hover {\n background-color: ", ";\n }\n }\n"], ["\n @media (hover: hover) {\n &:hover {\n background-color: ", ";\n }\n }\n"])), invert ? greyColor5 : greyColor80);
45
- };
46
- exports.blackHover = blackHover;
47
- var greyHover = function (_a) {
48
- var invert = _a.invert;
49
- return (0, styled_components_1.css)(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n @media (hover: hover) {\n &:hover {\n background-color: ", ";\n }\n }\n"], ["\n @media (hover: hover) {\n &:hover {\n background-color: ", ";\n }\n }\n"])), invert ? greyColor80 : greyColor10);
50
- };
51
- exports.greyHover = greyHover;
52
- var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6;
1
+ // import { css } from 'styled-components';
2
+ // import { colors, Colors2Type } from '../../../themes/colors';
3
+ // const {
4
+ // grey10,
5
+ // white,
6
+ // } = colors;
7
+ // interface CommonStyleProps {
8
+ // size: keyof typeof SIZES;
9
+ // }
10
+ // interface TextColorProps {
11
+ // invert?: boolean;
12
+ // colors?: Colors2Type;
13
+ // }
14
+ // export interface HoverProps {
15
+ // invert?: boolean;
16
+ // colors: Colors2Type;
17
+ // }
18
+ // export const SIZES = {
19
+ // XS: '1.8rem',
20
+ // S: `2.5rem`,
21
+ // M: `3rem`,
22
+ // };
23
+ // export const commonStyle = ({ size }: CommonStyleProps) => `
24
+ // padding: ${size === 'XS' ? '0.5rem' : size === "S" ? '0.8rem' : "1rem"};
25
+ // border-radius: 4px;
26
+ // position: relative;
27
+ // display: inline-flex;
28
+ // justify-content: center;
29
+ // align-items: center;
30
+ // white-space: nowrap;
31
+ // max-width: 100%;
32
+ // `;
33
+ // export const textColor = ({ invert }: TextColorProps) => css`
34
+ // color: ${invert ? grey10 : white};
35
+ // `;
@@ -1,3 +1,4 @@
1
1
  export { TagDisplay } from './Comps/TagDisplay';
2
2
  export { TagClear } from './Comps/TagClear';
3
3
  export { TagLink } from './Comps/TagLink';
4
+ export { Tag } from './Comps/Tag';
@@ -1,9 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TagLink = exports.TagClear = exports.TagDisplay = void 0;
3
+ exports.Tag = exports.TagLink = exports.TagClear = exports.TagDisplay = void 0;
4
4
  var TagDisplay_1 = require("./Comps/TagDisplay");
5
5
  Object.defineProperty(exports, "TagDisplay", { enumerable: true, get: function () { return TagDisplay_1.TagDisplay; } });
6
6
  var TagClear_1 = require("./Comps/TagClear");
7
7
  Object.defineProperty(exports, "TagClear", { enumerable: true, get: function () { return TagClear_1.TagClear; } });
8
8
  var TagLink_1 = require("./Comps/TagLink");
9
9
  Object.defineProperty(exports, "TagLink", { enumerable: true, get: function () { return TagLink_1.TagLink; } });
10
+ var Tag_1 = require("./Comps/Tag");
11
+ Object.defineProperty(exports, "Tag", { enumerable: true, get: function () { return Tag_1.Tag; } });
@@ -51,6 +51,7 @@ export declare const UI_CAPTION_BOLD_DF: React.FunctionComponent<TypoCompProps>;
51
51
  export declare const UI_CAPTION_SEMIBOLD_DF: React.FunctionComponent<TypoCompProps>;
52
52
  export declare const UI_CAPTION_SEMIBOLD: React.FunctionComponent<TypoCompProps>;
53
53
  export declare const UI_TAG: React.FunctionComponent<TypoCompProps>;
54
+ export declare const UI_TAG_DF: React.FunctionComponent<TypoCompProps>;
54
55
  export declare const UI_HELPTEXT: React.FunctionComponent<TypoCompProps>;
55
56
  export declare const UI_STAT_LG: React.FunctionComponent<TypoCompProps>;
56
57
  export declare const UI_STAT_SM: React.FunctionComponent<TypoCompProps>;
@@ -25,7 +25,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
25
25
  return (mod && mod.__esModule) ? mod : { "default": mod };
26
26
  };
27
27
  Object.defineProperty(exports, "__esModule", { value: true });
28
- exports.TypoV2ClassesProvider = exports.CONTENT_BODY_POSTIT = exports.CONTENT_TITLE_POSTIT = exports.CONTENT_QUOTE = exports.CONTENT_BODY_BOLD_ITALIC = exports.CONTENT_BODY_ITALIC = exports.CONTENT_BODY_BOLD = exports.CONTENT_BODY_SM = exports.CONTENT_BODY = exports.CONTENT_H3 = exports.CONTENT_H2 = exports.CONTENT_H1 = exports.UI_STAT_SM = exports.UI_STAT_LG = exports.UI_HELPTEXT = exports.UI_TAG = exports.UI_CAPTION_SEMIBOLD = exports.UI_CAPTION_SEMIBOLD_DF = exports.UI_CAPTION_BOLD_DF = exports.UI_CAPTION_DF = exports.UI_CAPTION_BOLD = exports.UI_CAPTION = exports.UI_PARAGRAPH_BOLD = exports.UI_PARAGRAPH = exports.UI_BODY_BOLD_SM_DF = exports.UI_BODY_BOLD_DF = exports.UI_BODY_SEMIBOLD_SM_DF = exports.UI_BODY_SEMIBOLD_DF = exports.UI_BODY_SM_DF = exports.UI_BODY_DF = exports.UI_BODY_BOLD_SM = exports.UI_BODY_BOLD = exports.UI_BODY_SEMIBOLD_SM = exports.UI_BODY_SEMIBOLD = exports.UI_BODY_SM = exports.UI_BODY = exports.UI_TITLE_SM = exports.UI_TITLE = exports.UI_HEADLINE_SM = exports.UI_HEADLINE = exports.UI_DISPLAY_SM = exports.UI_DISPLAY = void 0;
28
+ exports.TypoV2ClassesProvider = exports.CONTENT_BODY_POSTIT = exports.CONTENT_TITLE_POSTIT = exports.CONTENT_QUOTE = exports.CONTENT_BODY_BOLD_ITALIC = exports.CONTENT_BODY_ITALIC = exports.CONTENT_BODY_BOLD = exports.CONTENT_BODY_SM = exports.CONTENT_BODY = exports.CONTENT_H3 = exports.CONTENT_H2 = exports.CONTENT_H1 = exports.UI_STAT_SM = exports.UI_STAT_LG = exports.UI_HELPTEXT = exports.UI_TAG_DF = exports.UI_TAG = exports.UI_CAPTION_SEMIBOLD = exports.UI_CAPTION_SEMIBOLD_DF = exports.UI_CAPTION_BOLD_DF = exports.UI_CAPTION_DF = exports.UI_CAPTION_BOLD = exports.UI_CAPTION = exports.UI_PARAGRAPH_BOLD = exports.UI_PARAGRAPH = exports.UI_BODY_BOLD_SM_DF = exports.UI_BODY_BOLD_DF = exports.UI_BODY_SEMIBOLD_SM_DF = exports.UI_BODY_SEMIBOLD_DF = exports.UI_BODY_SM_DF = exports.UI_BODY_DF = exports.UI_BODY_BOLD_SM = exports.UI_BODY_BOLD = exports.UI_BODY_SEMIBOLD_SM = exports.UI_BODY_SEMIBOLD = exports.UI_BODY_SM = exports.UI_BODY = exports.UI_TITLE_SM = exports.UI_TITLE = exports.UI_HEADLINE_SM = exports.UI_HEADLINE = exports.UI_DISPLAY_SM = exports.UI_DISPLAY = void 0;
29
29
  var react_1 = __importDefault(require("react"));
30
30
  var index_styled_1 = require("./index.styled");
31
31
  var utilsOolib_1 = require("../../../utilsOolib");
@@ -125,6 +125,8 @@ var UI_CAPTION_SEMIBOLD = function (props) { return react_1.default.createElemen
125
125
  exports.UI_CAPTION_SEMIBOLD = UI_CAPTION_SEMIBOLD;
126
126
  var UI_TAG = function (props) { return react_1.default.createElement(GenComp, { props: props, Comp: index_styled_1.UI_TAG_STYLED }); };
127
127
  exports.UI_TAG = UI_TAG;
128
+ var UI_TAG_DF = function (props) { return react_1.default.createElement(GenComp, { props: props, Comp: index_styled_1.UI_TAG_DF_STYLED }); };
129
+ exports.UI_TAG_DF = UI_TAG_DF;
128
130
  var UI_HELPTEXT = function (props) { return react_1.default.createElement(GenComp, { props: props, Comp: index_styled_1.UI_HELPTEXT_STYLED }); };
129
131
  exports.UI_HELPTEXT = UI_HELPTEXT;
130
132
  var UI_STAT_LG = function (props) { return react_1.default.createElement(GenComp, { props: props, Comp: index_styled_1.UI_STAT_LG_STYLED }); };
@@ -25,6 +25,7 @@ export declare const UI_CAPTION_BOLD_DF_STYLED: import("styled-components").Styl
25
25
  export declare const UI_CAPTION_SEMIBOLD_STYLED: import("styled-components").StyledComponent<"p", any, {}, never>;
26
26
  export declare const UI_CAPTION_SEMIBOLD_DF_STYLED: import("styled-components").StyledComponent<"p", any, {}, never>;
27
27
  export declare const UI_TAG_STYLED: import("styled-components").StyledComponent<"p", any, {}, never>;
28
+ export declare const UI_TAG_DF_STYLED: import("styled-components").StyledComponent<"p", any, {}, never>;
28
29
  export declare const UI_HELPTEXT_STYLED: import("styled-components").StyledComponent<"p", any, {}, never>;
29
30
  export declare const UI_STAT_LG_STYLED: import("styled-components").StyledComponent<"h2", any, {}, never>;
30
31
  export declare const UI_STAT_SM_STYLED: import("styled-components").StyledComponent<"h3", any, {}, never>;
@@ -7,7 +7,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
7
7
  return (mod && mod.__esModule) ? mod : { "default": mod };
8
8
  };
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
- exports.TYPO_V2_CLASSES = exports.CONTENT_BODY_POSTIT_STYLED = exports.CONTENT_TITLE_POSTIT_STYLED = exports.CONTENT_QUOTE_STYLED = exports.CONTENT_BODY_BOLD_ITALIC_STYLED = exports.CONTENT_BODY_ITALIC_STYLED = exports.CONTENT_BODY_BOLD_STYLED = exports.CONTENT_BODY_SM_STYLED = exports.CONTENT_BODY_STYLED = exports.CONTENT_H3_STYLED = exports.CONTENT_H2_STYLED = exports.CONTENT_H1_STYLED = exports.UI_STAT_SM_STYLED = exports.UI_STAT_LG_STYLED = exports.UI_HELPTEXT_STYLED = exports.UI_TAG_STYLED = exports.UI_CAPTION_SEMIBOLD_DF_STYLED = exports.UI_CAPTION_SEMIBOLD_STYLED = exports.UI_CAPTION_BOLD_DF_STYLED = exports.UI_CAPTION_DF_STYLED = exports.UI_CAPTION_BOLD_STYLED = exports.UI_CAPTION_STYLED = exports.UI_PARAGRAPH_BOLD_STYLED = exports.UI_PARAGRAPH_STYLED = exports.UI_BODY_BOLD_SM_DF_STYLED = exports.UI_BODY_SEMIBOLD_SM_DF_STYLED = exports.UI_BODY_SM_DF_STYLED = exports.UI_BODY_DF_STYLED = exports.UI_BODY_BOLD_DF_STYLED = exports.UI_BODY_SEMIBOLD_DF_STYLED = exports.UI_BODY_BOLD_SM_STYLED = exports.UI_BODY_BOLD_STYLED = exports.UI_BODY_SEMIBOLD_SM_STYLED = exports.UI_BODY_SEMIBOLD_STYLED = exports.UI_BODY_SM_STYLED = exports.UI_BODY_STYLED = exports.UI_TITLE_SM_STYLED = exports.UI_TITLE_STYLED = exports.UI_HEADLINE_SM_STYLED = exports.UI_HEADLINE_STYLED = exports.UI_DISPLAY_SM_STYLED = exports.UI_DISPLAY_STYLED = void 0;
10
+ exports.TYPO_V2_CLASSES = exports.CONTENT_BODY_POSTIT_STYLED = exports.CONTENT_TITLE_POSTIT_STYLED = exports.CONTENT_QUOTE_STYLED = exports.CONTENT_BODY_BOLD_ITALIC_STYLED = exports.CONTENT_BODY_ITALIC_STYLED = exports.CONTENT_BODY_BOLD_STYLED = exports.CONTENT_BODY_SM_STYLED = exports.CONTENT_BODY_STYLED = exports.CONTENT_H3_STYLED = exports.CONTENT_H2_STYLED = exports.CONTENT_H1_STYLED = exports.UI_STAT_SM_STYLED = exports.UI_STAT_LG_STYLED = exports.UI_HELPTEXT_STYLED = exports.UI_TAG_DF_STYLED = exports.UI_TAG_STYLED = exports.UI_CAPTION_SEMIBOLD_DF_STYLED = exports.UI_CAPTION_SEMIBOLD_STYLED = exports.UI_CAPTION_BOLD_DF_STYLED = exports.UI_CAPTION_DF_STYLED = exports.UI_CAPTION_BOLD_STYLED = exports.UI_CAPTION_STYLED = exports.UI_PARAGRAPH_BOLD_STYLED = exports.UI_PARAGRAPH_STYLED = exports.UI_BODY_BOLD_SM_DF_STYLED = exports.UI_BODY_SEMIBOLD_SM_DF_STYLED = exports.UI_BODY_SM_DF_STYLED = exports.UI_BODY_DF_STYLED = exports.UI_BODY_BOLD_DF_STYLED = exports.UI_BODY_SEMIBOLD_DF_STYLED = exports.UI_BODY_BOLD_SM_STYLED = exports.UI_BODY_BOLD_STYLED = exports.UI_BODY_SEMIBOLD_SM_STYLED = exports.UI_BODY_SEMIBOLD_STYLED = exports.UI_BODY_SM_STYLED = exports.UI_BODY_STYLED = exports.UI_TITLE_SM_STYLED = exports.UI_TITLE_STYLED = exports.UI_HEADLINE_SM_STYLED = exports.UI_HEADLINE_STYLED = exports.UI_DISPLAY_SM_STYLED = exports.UI_DISPLAY_STYLED = void 0;
11
11
  var styled_components_1 = __importDefault(require("styled-components"));
12
12
  var typo_1 = require("../../themes/typo");
13
13
  // UI Fonts
@@ -38,22 +38,23 @@ exports.UI_CAPTION_BOLD_DF_STYLED = styled_components_1.default.p(templateObject
38
38
  exports.UI_CAPTION_SEMIBOLD_STYLED = styled_components_1.default.p(templateObject_25 || (templateObject_25 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.UI_CAPTION_SEMIBOLD);
39
39
  exports.UI_CAPTION_SEMIBOLD_DF_STYLED = styled_components_1.default.p(templateObject_26 || (templateObject_26 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.UI_CAPTION_SEMIBOLD_DF);
40
40
  exports.UI_TAG_STYLED = styled_components_1.default.p(templateObject_27 || (templateObject_27 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.UI_TAG);
41
- exports.UI_HELPTEXT_STYLED = styled_components_1.default.p(templateObject_28 || (templateObject_28 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.UI_HELPTEXT);
42
- exports.UI_STAT_LG_STYLED = styled_components_1.default.h2(templateObject_29 || (templateObject_29 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.UI_STAT_LG);
43
- exports.UI_STAT_SM_STYLED = styled_components_1.default.h3(templateObject_30 || (templateObject_30 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"
41
+ exports.UI_TAG_DF_STYLED = styled_components_1.default.p(templateObject_28 || (templateObject_28 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.UI_TAG_DF);
42
+ exports.UI_HELPTEXT_STYLED = styled_components_1.default.p(templateObject_29 || (templateObject_29 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.UI_HELPTEXT);
43
+ exports.UI_STAT_LG_STYLED = styled_components_1.default.h2(templateObject_30 || (templateObject_30 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.UI_STAT_LG);
44
+ exports.UI_STAT_SM_STYLED = styled_components_1.default.h3(templateObject_31 || (templateObject_31 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"
44
45
  // Content Fonts
45
46
  ])), typo_1.typo.UI_STAT_SM);
46
47
  // Content Fonts
47
- exports.CONTENT_H1_STYLED = styled_components_1.default.h1(templateObject_31 || (templateObject_31 = __makeTemplateObject(["\n ", " \n "], ["\n ", " \n "])), typo_1.typo.CONTENT_H1);
48
- exports.CONTENT_H2_STYLED = styled_components_1.default.h2(templateObject_32 || (templateObject_32 = __makeTemplateObject(["\n ", " \n"], ["\n ", " \n"])), typo_1.typo.CONTENT_H2);
49
- exports.CONTENT_H3_STYLED = styled_components_1.default.h3(templateObject_33 || (templateObject_33 = __makeTemplateObject(["\n ", " \n"], ["\n ", " \n"])), typo_1.typo.CONTENT_H3);
50
- exports.CONTENT_BODY_STYLED = styled_components_1.default.p(templateObject_34 || (templateObject_34 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.CONTENT_BODY);
51
- exports.CONTENT_BODY_SM_STYLED = styled_components_1.default.p(templateObject_35 || (templateObject_35 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.CONTENT_BODY_SM);
52
- exports.CONTENT_BODY_BOLD_STYLED = styled_components_1.default.p(templateObject_36 || (templateObject_36 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.CONTENT_BODY_BOLD);
53
- exports.CONTENT_BODY_ITALIC_STYLED = styled_components_1.default.p(templateObject_37 || (templateObject_37 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.CONTENT_BODY_ITALIC);
54
- exports.CONTENT_BODY_BOLD_ITALIC_STYLED = styled_components_1.default.p(templateObject_38 || (templateObject_38 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.CONTENT_BODY_BOLD_ITALIC);
55
- exports.CONTENT_QUOTE_STYLED = styled_components_1.default.h4(templateObject_39 || (templateObject_39 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.CONTENT_QUOTE);
56
- exports.CONTENT_TITLE_POSTIT_STYLED = styled_components_1.default.p(templateObject_40 || (templateObject_40 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.CONTENT_TITLE_POSTIT);
57
- exports.CONTENT_BODY_POSTIT_STYLED = styled_components_1.default.p(templateObject_41 || (templateObject_41 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.CONTENT_BODY_POSTIT);
58
- exports.TYPO_V2_CLASSES = styled_components_1.default.div(templateObject_42 || (templateObject_42 = __makeTemplateObject(["\n .UI_DISPLAY {\n ", "\n }\n\n .UI_HEADLINE {\n ", "\n }\n\n .UI_HEADLINE_SM {\n ", "\n }\n\n .UI_TITLE {\n ", "\n }\n\n .UI_TITLE_SM {\n ", "\n }\n\n .UI_TITLE_SM {\n ", "\n }\n\n .UI_BODY {\n ", "\n }\n\n .UI_BODY_SM {\n ", "\n }\n\n .UI_BODY_SEMIBOLD {\n ", "\n }\n\n .UI_BODY_SEMIBOLD_SM {\n ", "\n } \n\n .UI_BODY_BOLD_DF {\n ", "\n }\n\n .UI_BODY_BOLD_SM_DF {\n ", "\n }\n\n .UI_BODY_DF {\n ", "\n }\n\n .UI_BODY_SM_DF {\n ", "\n }\n\n .UI_BODY_SEMIBOLD_DF {\n ", "\n }\n\n .UI_BODY_SEMIBOLD_SM_DF {\n ", "\n } \n\n .UI_BODY_BOLD_SM {\n ", "\n }\n\n .UI_PARAGRAPH {\n ", "\n }\n\n .UI_PARAGRAPH_BOLD {\n ", "\n }\n\n .UI_CAPTION {\n ", "\n }\n\n .UI_CAPTION_BOLD {\n ", "\n }\n\n .UI_CAPTION_DF {\n ", "\n }\n \n .UI_CAPTION_BOLD_DF {\n ", "\n }\n\n .UI_TAG {\n ", "\n }\n \n .UI_HELPTEXT {\n ", "\n }\n\n .UI_STAT_LG {\n ", "\n }\n\n .UI_STAT_SM {\n ", "\n }\n\n\n .CONTENT_H1 {\n ", "\n }\n .CONTENT_H2 {\n ", "\n }\n .CONTENT_H3 {\n ", "\n }\n .CONTENT_BODY {\n ", "\n }\n\n .CONTENT_BODY_BOLD {\n ", "\n }\n .CONTENT_BODY_ITALIC {\n ", "\n }\n .CONTENT_BODY_BOLD_ITALIC {\n ", "\n }\n .CONTENT_QUOTE {\n ", "\n }\n\n .CONTENT_TITLE_POSTIT {\n ", "\n }\n .CONTENT_BODY_POSTIT {\n ", "\n }\n"], ["\n .UI_DISPLAY {\n ", "\n }\n\n .UI_HEADLINE {\n ", "\n }\n\n .UI_HEADLINE_SM {\n ", "\n }\n\n .UI_TITLE {\n ", "\n }\n\n .UI_TITLE_SM {\n ", "\n }\n\n .UI_TITLE_SM {\n ", "\n }\n\n .UI_BODY {\n ", "\n }\n\n .UI_BODY_SM {\n ", "\n }\n\n .UI_BODY_SEMIBOLD {\n ", "\n }\n\n .UI_BODY_SEMIBOLD_SM {\n ", "\n } \n\n .UI_BODY_BOLD_DF {\n ", "\n }\n\n .UI_BODY_BOLD_SM_DF {\n ", "\n }\n\n .UI_BODY_DF {\n ", "\n }\n\n .UI_BODY_SM_DF {\n ", "\n }\n\n .UI_BODY_SEMIBOLD_DF {\n ", "\n }\n\n .UI_BODY_SEMIBOLD_SM_DF {\n ", "\n } \n\n .UI_BODY_BOLD_SM {\n ", "\n }\n\n .UI_PARAGRAPH {\n ", "\n }\n\n .UI_PARAGRAPH_BOLD {\n ", "\n }\n\n .UI_CAPTION {\n ", "\n }\n\n .UI_CAPTION_BOLD {\n ", "\n }\n\n .UI_CAPTION_DF {\n ", "\n }\n \n .UI_CAPTION_BOLD_DF {\n ", "\n }\n\n .UI_TAG {\n ", "\n }\n \n .UI_HELPTEXT {\n ", "\n }\n\n .UI_STAT_LG {\n ", "\n }\n\n .UI_STAT_SM {\n ", "\n }\n\n\n .CONTENT_H1 {\n ", "\n }\n .CONTENT_H2 {\n ", "\n }\n .CONTENT_H3 {\n ", "\n }\n .CONTENT_BODY {\n ", "\n }\n\n .CONTENT_BODY_BOLD {\n ", "\n }\n .CONTENT_BODY_ITALIC {\n ", "\n }\n .CONTENT_BODY_BOLD_ITALIC {\n ", "\n }\n .CONTENT_QUOTE {\n ", "\n }\n\n .CONTENT_TITLE_POSTIT {\n ", "\n }\n .CONTENT_BODY_POSTIT {\n ", "\n }\n"])), typo_1.typo.UI_DISPLAY, typo_1.typo.UI_HEADLINE, typo_1.typo.UI_HEADLINE_SM, typo_1.typo.UI_TITLE, typo_1.typo.UI_TITLE_SM, typo_1.typo.UI_TITLE_SM, typo_1.typo.UI_BODY, typo_1.typo.UI_BODY_SM, typo_1.typo.UI_BODY_SEMIBOLD, typo_1.typo.UI_BODY_SEMIBOLD_SM, typo_1.typo.UI_BODY_BOLD_DF, typo_1.typo.UI_BODY_BOLD_SM_DF, typo_1.typo.UI_BODY_DF, typo_1.typo.UI_BODY_SM_DF, typo_1.typo.UI_BODY_SEMIBOLD_DF, typo_1.typo.UI_BODY_SEMIBOLD_SM_DF, typo_1.typo.UI_BODY_BOLD_SM, typo_1.typo.UI_PARAGRAPH, typo_1.typo.UI_PARAGRAPH_BOLD, typo_1.typo.UI_CAPTION, typo_1.typo.UI_CAPTION_BOLD, typo_1.typo.UI_CAPTION_DF, typo_1.typo.UI_CAPTION_BOLD_DF, typo_1.typo.UI_TAG, typo_1.typo.UI_HELPTEXT, typo_1.typo.UI_STAT_LG, typo_1.typo.UI_STAT_SM, typo_1.typo.CONTENT_H1, typo_1.typo.CONTENT_H2, typo_1.typo.CONTENT_H3, typo_1.typo.CONTENT_BODY, typo_1.typo.CONTENT_BODY_BOLD, typo_1.typo.CONTENT_BODY_ITALIC, typo_1.typo.CONTENT_BODY_BOLD_ITALIC, typo_1.typo.CONTENT_QUOTE, typo_1.typo.CONTENT_TITLE_POSTIT, typo_1.typo.CONTENT_BODY_POSTIT);
59
- var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10, templateObject_11, templateObject_12, templateObject_13, templateObject_14, templateObject_15, templateObject_16, templateObject_17, templateObject_18, templateObject_19, templateObject_20, templateObject_21, templateObject_22, templateObject_23, templateObject_24, templateObject_25, templateObject_26, templateObject_27, templateObject_28, templateObject_29, templateObject_30, templateObject_31, templateObject_32, templateObject_33, templateObject_34, templateObject_35, templateObject_36, templateObject_37, templateObject_38, templateObject_39, templateObject_40, templateObject_41, templateObject_42;
48
+ exports.CONTENT_H1_STYLED = styled_components_1.default.h1(templateObject_32 || (templateObject_32 = __makeTemplateObject(["\n ", " \n "], ["\n ", " \n "])), typo_1.typo.CONTENT_H1);
49
+ exports.CONTENT_H2_STYLED = styled_components_1.default.h2(templateObject_33 || (templateObject_33 = __makeTemplateObject(["\n ", " \n"], ["\n ", " \n"])), typo_1.typo.CONTENT_H2);
50
+ exports.CONTENT_H3_STYLED = styled_components_1.default.h3(templateObject_34 || (templateObject_34 = __makeTemplateObject(["\n ", " \n"], ["\n ", " \n"])), typo_1.typo.CONTENT_H3);
51
+ exports.CONTENT_BODY_STYLED = styled_components_1.default.p(templateObject_35 || (templateObject_35 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.CONTENT_BODY);
52
+ exports.CONTENT_BODY_SM_STYLED = styled_components_1.default.p(templateObject_36 || (templateObject_36 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.CONTENT_BODY_SM);
53
+ exports.CONTENT_BODY_BOLD_STYLED = styled_components_1.default.p(templateObject_37 || (templateObject_37 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.CONTENT_BODY_BOLD);
54
+ exports.CONTENT_BODY_ITALIC_STYLED = styled_components_1.default.p(templateObject_38 || (templateObject_38 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.CONTENT_BODY_ITALIC);
55
+ exports.CONTENT_BODY_BOLD_ITALIC_STYLED = styled_components_1.default.p(templateObject_39 || (templateObject_39 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.CONTENT_BODY_BOLD_ITALIC);
56
+ exports.CONTENT_QUOTE_STYLED = styled_components_1.default.h4(templateObject_40 || (templateObject_40 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.CONTENT_QUOTE);
57
+ exports.CONTENT_TITLE_POSTIT_STYLED = styled_components_1.default.p(templateObject_41 || (templateObject_41 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.CONTENT_TITLE_POSTIT);
58
+ exports.CONTENT_BODY_POSTIT_STYLED = styled_components_1.default.p(templateObject_42 || (templateObject_42 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), typo_1.typo.CONTENT_BODY_POSTIT);
59
+ exports.TYPO_V2_CLASSES = styled_components_1.default.div(templateObject_43 || (templateObject_43 = __makeTemplateObject(["\n .UI_DISPLAY {\n ", "\n }\n\n .UI_HEADLINE {\n ", "\n }\n\n .UI_HEADLINE_SM {\n ", "\n }\n\n .UI_TITLE {\n ", "\n }\n\n .UI_TITLE_SM {\n ", "\n }\n\n .UI_TITLE_SM {\n ", "\n }\n\n .UI_BODY {\n ", "\n }\n\n .UI_BODY_SM {\n ", "\n }\n\n .UI_BODY_SEMIBOLD {\n ", "\n }\n\n .UI_BODY_SEMIBOLD_SM {\n ", "\n } \n\n .UI_BODY_BOLD_DF {\n ", "\n }\n\n .UI_BODY_BOLD_SM_DF {\n ", "\n }\n\n .UI_BODY_DF {\n ", "\n }\n\n .UI_BODY_SM_DF {\n ", "\n }\n\n .UI_BODY_SEMIBOLD_DF {\n ", "\n }\n\n .UI_BODY_SEMIBOLD_SM_DF {\n ", "\n } \n\n .UI_BODY_BOLD_SM {\n ", "\n }\n\n .UI_PARAGRAPH {\n ", "\n }\n\n .UI_PARAGRAPH_BOLD {\n ", "\n }\n\n .UI_CAPTION {\n ", "\n }\n\n .UI_CAPTION_BOLD {\n ", "\n }\n\n .UI_CAPTION_DF {\n ", "\n }\n \n .UI_CAPTION_BOLD_DF {\n ", "\n }\n\n .UI_TAG {\n ", "\n }\n \n .UI_TAG {\n ", "\n }\n\n .UI_HELPTEXT {\n ", "\n }\n\n .UI_STAT_LG {\n ", "\n }\n\n .UI_STAT_SM {\n ", "\n }\n\n\n .CONTENT_H1 {\n ", "\n }\n .CONTENT_H2 {\n ", "\n }\n .CONTENT_H3 {\n ", "\n }\n .CONTENT_BODY {\n ", "\n }\n\n .CONTENT_BODY_BOLD {\n ", "\n }\n .CONTENT_BODY_ITALIC {\n ", "\n }\n .CONTENT_BODY_BOLD_ITALIC {\n ", "\n }\n .CONTENT_QUOTE {\n ", "\n }\n\n .CONTENT_TITLE_POSTIT {\n ", "\n }\n .CONTENT_BODY_POSTIT {\n ", "\n }\n"], ["\n .UI_DISPLAY {\n ", "\n }\n\n .UI_HEADLINE {\n ", "\n }\n\n .UI_HEADLINE_SM {\n ", "\n }\n\n .UI_TITLE {\n ", "\n }\n\n .UI_TITLE_SM {\n ", "\n }\n\n .UI_TITLE_SM {\n ", "\n }\n\n .UI_BODY {\n ", "\n }\n\n .UI_BODY_SM {\n ", "\n }\n\n .UI_BODY_SEMIBOLD {\n ", "\n }\n\n .UI_BODY_SEMIBOLD_SM {\n ", "\n } \n\n .UI_BODY_BOLD_DF {\n ", "\n }\n\n .UI_BODY_BOLD_SM_DF {\n ", "\n }\n\n .UI_BODY_DF {\n ", "\n }\n\n .UI_BODY_SM_DF {\n ", "\n }\n\n .UI_BODY_SEMIBOLD_DF {\n ", "\n }\n\n .UI_BODY_SEMIBOLD_SM_DF {\n ", "\n } \n\n .UI_BODY_BOLD_SM {\n ", "\n }\n\n .UI_PARAGRAPH {\n ", "\n }\n\n .UI_PARAGRAPH_BOLD {\n ", "\n }\n\n .UI_CAPTION {\n ", "\n }\n\n .UI_CAPTION_BOLD {\n ", "\n }\n\n .UI_CAPTION_DF {\n ", "\n }\n \n .UI_CAPTION_BOLD_DF {\n ", "\n }\n\n .UI_TAG {\n ", "\n }\n \n .UI_TAG {\n ", "\n }\n\n .UI_HELPTEXT {\n ", "\n }\n\n .UI_STAT_LG {\n ", "\n }\n\n .UI_STAT_SM {\n ", "\n }\n\n\n .CONTENT_H1 {\n ", "\n }\n .CONTENT_H2 {\n ", "\n }\n .CONTENT_H3 {\n ", "\n }\n .CONTENT_BODY {\n ", "\n }\n\n .CONTENT_BODY_BOLD {\n ", "\n }\n .CONTENT_BODY_ITALIC {\n ", "\n }\n .CONTENT_BODY_BOLD_ITALIC {\n ", "\n }\n .CONTENT_QUOTE {\n ", "\n }\n\n .CONTENT_TITLE_POSTIT {\n ", "\n }\n .CONTENT_BODY_POSTIT {\n ", "\n }\n"])), typo_1.typo.UI_DISPLAY, typo_1.typo.UI_HEADLINE, typo_1.typo.UI_HEADLINE_SM, typo_1.typo.UI_TITLE, typo_1.typo.UI_TITLE_SM, typo_1.typo.UI_TITLE_SM, typo_1.typo.UI_BODY, typo_1.typo.UI_BODY_SM, typo_1.typo.UI_BODY_SEMIBOLD, typo_1.typo.UI_BODY_SEMIBOLD_SM, typo_1.typo.UI_BODY_BOLD_DF, typo_1.typo.UI_BODY_BOLD_SM_DF, typo_1.typo.UI_BODY_DF, typo_1.typo.UI_BODY_SM_DF, typo_1.typo.UI_BODY_SEMIBOLD_DF, typo_1.typo.UI_BODY_SEMIBOLD_SM_DF, typo_1.typo.UI_BODY_BOLD_SM, typo_1.typo.UI_PARAGRAPH, typo_1.typo.UI_PARAGRAPH_BOLD, typo_1.typo.UI_CAPTION, typo_1.typo.UI_CAPTION_BOLD, typo_1.typo.UI_CAPTION_DF, typo_1.typo.UI_CAPTION_BOLD_DF, typo_1.typo.UI_TAG, typo_1.typo.UI_TAG_DF, typo_1.typo.UI_HELPTEXT, typo_1.typo.UI_STAT_LG, typo_1.typo.UI_STAT_SM, typo_1.typo.CONTENT_H1, typo_1.typo.CONTENT_H2, typo_1.typo.CONTENT_H3, typo_1.typo.CONTENT_BODY, typo_1.typo.CONTENT_BODY_BOLD, typo_1.typo.CONTENT_BODY_ITALIC, typo_1.typo.CONTENT_BODY_BOLD_ITALIC, typo_1.typo.CONTENT_QUOTE, typo_1.typo.CONTENT_TITLE_POSTIT, typo_1.typo.CONTENT_BODY_POSTIT);
60
+ var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10, templateObject_11, templateObject_12, templateObject_13, templateObject_14, templateObject_15, templateObject_16, templateObject_17, templateObject_18, templateObject_19, templateObject_20, templateObject_21, templateObject_22, templateObject_23, templateObject_24, templateObject_25, templateObject_26, templateObject_27, templateObject_28, templateObject_29, templateObject_30, templateObject_31, templateObject_32, templateObject_33, templateObject_34, templateObject_35, templateObject_36, templateObject_37, templateObject_38, templateObject_39, templateObject_40, templateObject_41, templateObject_42, templateObject_43;
@@ -26,6 +26,7 @@ export declare const typo: {
26
26
  UI_CAPTION_SEMIBOLD: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
27
27
  UI_CAPTION_SEMIBOLD_DF: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
28
28
  UI_TAG: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
29
+ UI_TAG_DF: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
29
30
  UI_HELPTEXT: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
30
31
  UI_STAT_LG: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
31
32
  UI_STAT_SM: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;