@salutejs/plasma-asdk 0.358.0-canary.2402.20454508584.0 → 0.358.0-canary.2403.20455152253.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.
- package/components/Typography/Heading.config.d.ts +10 -0
- package/components/Typography/Heading.config.js +12 -2
- package/components/Typography/Typography.d.ts +17 -0
- package/components/Typography/Typography.js +4 -1
- package/components/Typography/index.d.ts +1 -1
- package/components/Typography/index.js +6 -0
- package/es/components/Typography/Heading.config.js +11 -1
- package/es/components/Typography/Typography.js +4 -1
- package/es/components/Typography/index.js +1 -1
- package/es/tokens/typography.js +1 -1
- package/package.json +7 -7
- package/tokens/typography.d.ts +1 -1
- package/tokens/typography.js +12 -0
|
@@ -48,3 +48,13 @@ export declare const configH5: {
|
|
|
48
48
|
};
|
|
49
49
|
};
|
|
50
50
|
};
|
|
51
|
+
export declare const configH6: {
|
|
52
|
+
defaults: {
|
|
53
|
+
size: string;
|
|
54
|
+
};
|
|
55
|
+
variations: {
|
|
56
|
+
size: {
|
|
57
|
+
h6: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
};
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.configH5 = exports.configH4 = exports.configH3 = exports.configH2 = exports.configH1 = void 0;
|
|
6
|
+
exports.configH6 = exports.configH5 = exports.configH4 = exports.configH3 = exports.configH2 = exports.configH1 = void 0;
|
|
7
7
|
var _styledComponents = /*#__PURE__*/require("@salutejs/plasma-new-hope/styled-components");
|
|
8
|
-
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5;
|
|
8
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6;
|
|
9
9
|
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
10
10
|
var configH1 = exports.configH1 = {
|
|
11
11
|
defaults: {
|
|
@@ -56,4 +56,14 @@ var configH5 = exports.configH5 = {
|
|
|
56
56
|
h5: /*#__PURE__*/(0, _styledComponents.css)(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-typo-h5-font-family);\n ", ": var(--plasma-typo-h5-font-size);\n ", ": var(--plasma-typo-h5-font-style);\n ", ": var(--plasma-typo-h5-font-weight);\n ", ": var(--plasma-typo-h5-bold-font-weight);\n ", ": var(--plasma-typo-h5-medium-font-weight);\n ", ": var(--plasma-typo-h5-letter-spacing);\n ", ": var(--plasma-typo-h5-line-height);\n "])), _styledComponents.typographyTokens.typoFontFamily, _styledComponents.typographyTokens.typoFontSize, _styledComponents.typographyTokens.typoFontStyle, _styledComponents.typographyTokens.typoFontWeight, _styledComponents.typographyTokens.typoFontWeightBold, _styledComponents.typographyTokens.typoFontWeightMedium, _styledComponents.typographyTokens.typoFontLetterSpacing, _styledComponents.typographyTokens.typoFontLineHeight)
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
|
+
};
|
|
60
|
+
var configH6 = exports.configH6 = {
|
|
61
|
+
defaults: {
|
|
62
|
+
size: 'h6'
|
|
63
|
+
},
|
|
64
|
+
variations: {
|
|
65
|
+
size: {
|
|
66
|
+
h6: /*#__PURE__*/(0, _styledComponents.css)(_templateObject6 || (_templateObject6 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-typo-h6-font-family);\n ", ": var(--plasma-typo-h6-font-size);\n ", ": var(--plasma-typo-h6-font-style);\n ", ": var(--plasma-typo-h6-font-weight);\n ", ": var(--plasma-typo-h6-bold-font-weight);\n ", ": var(--plasma-typo-h6-medium-font-weight);\n ", ": var(--plasma-typo-h6-letter-spacing);\n ", ": var(--plasma-typo-h6-line-height);\n "])), _styledComponents.typographyTokens.typoFontFamily, _styledComponents.typographyTokens.typoFontSize, _styledComponents.typographyTokens.typoFontStyle, _styledComponents.typographyTokens.typoFontWeight, _styledComponents.typographyTokens.typoFontWeightBold, _styledComponents.typographyTokens.typoFontWeightMedium, _styledComponents.typographyTokens.typoFontLetterSpacing, _styledComponents.typographyTokens.typoFontLineHeight)
|
|
67
|
+
}
|
|
68
|
+
}
|
|
59
69
|
};
|
|
@@ -219,6 +219,23 @@ export declare const H5: import("react").FunctionComponent<import("@salutejs/pla
|
|
|
219
219
|
size?: string;
|
|
220
220
|
isNumeric?: boolean;
|
|
221
221
|
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types.js").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
|
222
|
+
export declare const H6: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
|
|
223
|
+
size: {
|
|
224
|
+
h6: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
|
|
225
|
+
};
|
|
226
|
+
}> & (({
|
|
227
|
+
noWrap?: boolean;
|
|
228
|
+
breakWord?: boolean;
|
|
229
|
+
color?: string;
|
|
230
|
+
size?: string;
|
|
231
|
+
isNumeric?: boolean;
|
|
232
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types.js").BoldProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
|
|
233
|
+
noWrap?: boolean;
|
|
234
|
+
breakWord?: boolean;
|
|
235
|
+
color?: string;
|
|
236
|
+
size?: string;
|
|
237
|
+
isNumeric?: boolean;
|
|
238
|
+
} & import("@salutejs/plasma-new-hope/styled-components").SpacingProps & import("@salutejs/plasma-new-hope/types/components/Typography/Typography.types.js").MediumProps & import("@salutejs/plasma-new-hope/styled-components").AsProps & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
|
|
222
239
|
export declare const TextM: import("react").FunctionComponent<import("@salutejs/plasma-new-hope/types/engines/types.js").PropsType<{
|
|
223
240
|
size: {
|
|
224
241
|
m: import("@salutejs/plasma-new-hope/types/engines/types.js").PolymorphicClassName;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.TextXS = exports.TextS = exports.TextM = exports.TextL = exports.H5 = exports.H4 = exports.H3 = exports.H2 = exports.H1 = exports.DsplS = exports.DsplM = exports.DsplL = exports.BodyXXS = exports.BodyXS = exports.BodyS = exports.BodyM = exports.BodyL = void 0;
|
|
6
|
+
exports.TextXS = exports.TextS = exports.TextM = exports.TextL = exports.H6 = exports.H5 = exports.H4 = exports.H3 = exports.H2 = exports.H1 = exports.DsplS = exports.DsplM = exports.DsplL = exports.BodyXXS = exports.BodyXS = exports.BodyS = exports.BodyM = exports.BodyL = void 0;
|
|
7
7
|
var _styledComponents = /*#__PURE__*/require("@salutejs/plasma-new-hope/styled-components");
|
|
8
8
|
var _Body = /*#__PURE__*/require("./Body.config");
|
|
9
9
|
var _Dspl = /*#__PURE__*/require("./Dspl.config");
|
|
@@ -35,6 +35,8 @@ var heading4Config = /*#__PURE__*/(0, _styledComponents.mergeConfig)(_styledComp
|
|
|
35
35
|
var Heading4Component = /*#__PURE__*/(0, _styledComponents.component)(heading4Config);
|
|
36
36
|
var heading5Config = /*#__PURE__*/(0, _styledComponents.mergeConfig)(_styledComponents.headingConfig, _Heading.configH5);
|
|
37
37
|
var Heading5Component = /*#__PURE__*/(0, _styledComponents.component)(heading5Config);
|
|
38
|
+
var heading6Config = /*#__PURE__*/(0, _styledComponents.mergeConfig)(_styledComponents.headingConfig, _Heading.configH6);
|
|
39
|
+
var Heading6Component = /*#__PURE__*/(0, _styledComponents.component)(heading6Config);
|
|
38
40
|
var textMConfig = /*#__PURE__*/(0, _styledComponents.mergeConfig)(_styledComponents.textConfig, _Text.configM);
|
|
39
41
|
var TextMComponent = /*#__PURE__*/(0, _styledComponents.component)(textMConfig);
|
|
40
42
|
var textLConfig = /*#__PURE__*/(0, _styledComponents.mergeConfig)(_styledComponents.textConfig, _Text.configL);
|
|
@@ -56,6 +58,7 @@ var H2 = exports.H2 = Heading2Component;
|
|
|
56
58
|
var H3 = exports.H3 = Heading3Component;
|
|
57
59
|
var H4 = exports.H4 = Heading4Component;
|
|
58
60
|
var H5 = exports.H5 = Heading5Component;
|
|
61
|
+
var H6 = exports.H6 = Heading6Component;
|
|
59
62
|
var TextM = exports.TextM = TextMComponent;
|
|
60
63
|
var TextL = exports.TextL = TextLComponent;
|
|
61
64
|
var TextS = exports.TextS = TextSComponent;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { BodyL, BodyM, BodyS, BodyXS, BodyXXS, DsplL, DsplM, DsplS, H1, H2, H3, H4, H5, TextL, TextM, TextS, TextXS, } from './Typography';
|
|
1
|
+
export { BodyL, BodyM, BodyS, BodyXS, BodyXXS, DsplL, DsplM, DsplS, H1, H2, H3, H4, H5, H6, TextL, TextM, TextS, TextXS, } from './Typography';
|
|
2
2
|
export { Body1, Body2, Button1, Button2, Caption, Footnote1, Footnote2, Headline1, Headline2, Headline3, Headline4, Headline5, P1, P2, Subtitle, Underline, } from './Old';
|
|
@@ -123,6 +123,12 @@ Object.defineProperty(exports, "H5", {
|
|
|
123
123
|
return _Typography.H5;
|
|
124
124
|
}
|
|
125
125
|
});
|
|
126
|
+
Object.defineProperty(exports, "H6", {
|
|
127
|
+
enumerable: true,
|
|
128
|
+
get: function get() {
|
|
129
|
+
return _Typography.H6;
|
|
130
|
+
}
|
|
131
|
+
});
|
|
126
132
|
Object.defineProperty(exports, "Headline1", {
|
|
127
133
|
enumerable: true,
|
|
128
134
|
get: function get() {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5;
|
|
1
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6;
|
|
2
2
|
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
|
|
3
3
|
import { css, typographyTokens } from '@salutejs/plasma-new-hope/styled-components';
|
|
4
4
|
export var configH1 = {
|
|
@@ -50,4 +50,14 @@ export var configH5 = {
|
|
|
50
50
|
h5: /*#__PURE__*/css(_templateObject5 || (_templateObject5 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-typo-h5-font-family);\n ", ": var(--plasma-typo-h5-font-size);\n ", ": var(--plasma-typo-h5-font-style);\n ", ": var(--plasma-typo-h5-font-weight);\n ", ": var(--plasma-typo-h5-bold-font-weight);\n ", ": var(--plasma-typo-h5-medium-font-weight);\n ", ": var(--plasma-typo-h5-letter-spacing);\n ", ": var(--plasma-typo-h5-line-height);\n "])), typographyTokens.typoFontFamily, typographyTokens.typoFontSize, typographyTokens.typoFontStyle, typographyTokens.typoFontWeight, typographyTokens.typoFontWeightBold, typographyTokens.typoFontWeightMedium, typographyTokens.typoFontLetterSpacing, typographyTokens.typoFontLineHeight)
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
|
+
};
|
|
54
|
+
export var configH6 = {
|
|
55
|
+
defaults: {
|
|
56
|
+
size: 'h6'
|
|
57
|
+
},
|
|
58
|
+
variations: {
|
|
59
|
+
size: {
|
|
60
|
+
h6: /*#__PURE__*/css(_templateObject6 || (_templateObject6 = /*#__PURE__*/_taggedTemplateLiteral(["\n ", ": var(--plasma-typo-h6-font-family);\n ", ": var(--plasma-typo-h6-font-size);\n ", ": var(--plasma-typo-h6-font-style);\n ", ": var(--plasma-typo-h6-font-weight);\n ", ": var(--plasma-typo-h6-bold-font-weight);\n ", ": var(--plasma-typo-h6-medium-font-weight);\n ", ": var(--plasma-typo-h6-letter-spacing);\n ", ": var(--plasma-typo-h6-line-height);\n "])), typographyTokens.typoFontFamily, typographyTokens.typoFontSize, typographyTokens.typoFontStyle, typographyTokens.typoFontWeight, typographyTokens.typoFontWeightBold, typographyTokens.typoFontWeightMedium, typographyTokens.typoFontLetterSpacing, typographyTokens.typoFontLineHeight)
|
|
61
|
+
}
|
|
62
|
+
}
|
|
53
63
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { bodyConfig, dsplConfig, headingConfig, textConfig, component, mergeConfig } from '@salutejs/plasma-new-hope/styled-components';
|
|
2
2
|
import { configL as bodyConfigLCustom, configM as bodyConfigMCustom, configS as bodyConfigSCustom, configXS as bodyConfigXSCustom, configXXS as bodyConfigXXSCustom } from './Body.config';
|
|
3
3
|
import { configL as dsplConfigLCustom, configM as dsplConfigMCustom, configS as dsplConfigSCustom } from './Dspl.config';
|
|
4
|
-
import { configH1 as headingConfigH1Custom, configH2 as headingConfigH2Custom, configH3 as headingConfigH3Custom, configH4 as headingConfigH4Custom, configH5 as headingConfigH5Custom } from './Heading.config';
|
|
4
|
+
import { configH1 as headingConfigH1Custom, configH2 as headingConfigH2Custom, configH3 as headingConfigH3Custom, configH4 as headingConfigH4Custom, configH5 as headingConfigH5Custom, configH6 as headingConfigH6Custom } from './Heading.config';
|
|
5
5
|
import { configL as textConfigLCustom, configM as textConfigMCustom, configS as textConfigSCustom, configXS as textConfigXSCustom } from './Text.config';
|
|
6
6
|
var bodyMConfig = /*#__PURE__*/mergeConfig(bodyConfig, bodyConfigMCustom);
|
|
7
7
|
var BodyMComponent = /*#__PURE__*/component(bodyMConfig);
|
|
@@ -29,6 +29,8 @@ var heading4Config = /*#__PURE__*/mergeConfig(headingConfig, headingConfigH4Cust
|
|
|
29
29
|
var Heading4Component = /*#__PURE__*/component(heading4Config);
|
|
30
30
|
var heading5Config = /*#__PURE__*/mergeConfig(headingConfig, headingConfigH5Custom);
|
|
31
31
|
var Heading5Component = /*#__PURE__*/component(heading5Config);
|
|
32
|
+
var heading6Config = /*#__PURE__*/mergeConfig(headingConfig, headingConfigH6Custom);
|
|
33
|
+
var Heading6Component = /*#__PURE__*/component(heading6Config);
|
|
32
34
|
var textMConfig = /*#__PURE__*/mergeConfig(textConfig, textConfigMCustom);
|
|
33
35
|
var TextMComponent = /*#__PURE__*/component(textMConfig);
|
|
34
36
|
var textLConfig = /*#__PURE__*/mergeConfig(textConfig, textConfigLCustom);
|
|
@@ -50,6 +52,7 @@ export var H2 = Heading2Component;
|
|
|
50
52
|
export var H3 = Heading3Component;
|
|
51
53
|
export var H4 = Heading4Component;
|
|
52
54
|
export var H5 = Heading5Component;
|
|
55
|
+
export var H6 = Heading6Component;
|
|
53
56
|
export var TextM = TextMComponent;
|
|
54
57
|
export var TextL = TextLComponent;
|
|
55
58
|
export var TextS = TextSComponent;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { BodyL, BodyM, BodyS, BodyXS, BodyXXS, DsplL, DsplM, DsplS, H1, H2, H3, H4, H5, TextL, TextM, TextS, TextXS } from './Typography';
|
|
1
|
+
export { BodyL, BodyM, BodyS, BodyXS, BodyXXS, DsplL, DsplM, DsplS, H1, H2, H3, H4, H5, H6, TextL, TextM, TextS, TextXS } from './Typography';
|
|
2
2
|
export { Body1, Body2, Button1, Button2, Caption, Footnote1, Footnote2, Headline1, Headline2, Headline3, Headline4, Headline5, P1, P2, Subtitle, Underline } from './Old';
|
package/es/tokens/typography.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { dsplL, dsplLBold, dsplM, dsplMBold, dsplS, dsplSBold, h1, h1Bold, h2, h2Bold, h3, h3Bold, h4, h4Bold, h5, h5Bold, bodyL, bodyLBold, bodyM, bodyMBold, bodyS, bodySBold, bodyXS, bodyXSBold, bodyXXS, bodyXXSBold, textL, textLBold, textM, textMBold, textS, textSBold, textXS, textXSBold, body1, body2, body3, button1, button2, caption, display1, display2, display3, footnote1, footnote2, headline1, headline2, headline3, headline4, paragraph1, paragraph2, underline } from '@salutejs/plasma-new-hope';
|
|
1
|
+
export { dsplL, dsplLBold, dsplM, dsplMBold, dsplS, dsplSBold, h1, h1Bold, h2, h2Bold, h3, h3Bold, h4, h4Bold, h5, h5Bold, h6, h6Bold, bodyL, bodyLBold, bodyM, bodyMBold, bodyS, bodySBold, bodyXS, bodyXSBold, bodyXXS, bodyXXSBold, textL, textLBold, textM, textMBold, textS, textSBold, textXS, textXSBold, body1, body2, body3, button1, button2, caption, display1, display2, display3, footnote1, footnote2, headline1, headline2, headline3, headline4, paragraph1, paragraph2, underline } from '@salutejs/plasma-new-hope';
|
|
2
2
|
export var fieldTypo = {
|
|
3
3
|
fontFamily: 'var(--plasma-field-font-family)',
|
|
4
4
|
fontSize: 'var(--plasma-field-font-size)',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salutejs/plasma-asdk",
|
|
3
|
-
"version": "0.358.0-canary.
|
|
3
|
+
"version": "0.358.0-canary.2403.20455152253.0",
|
|
4
4
|
"description": "Salute Design System / React UI kit for Assistant web applications",
|
|
5
5
|
"author": "Salute Frontend Team <salute.developers@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"directory": "packages/plasma-asdk"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@salutejs/plasma-new-hope": "0.344.0-canary.
|
|
23
|
-
"@salutejs/plasma-tokens": "1.126.0-canary.
|
|
22
|
+
"@salutejs/plasma-new-hope": "0.344.0-canary.2403.20455152253.0",
|
|
23
|
+
"@salutejs/plasma-tokens": "1.126.0-canary.2403.20455152253.0",
|
|
24
24
|
"@salutejs/plasma-tokens-b2b": "1.54.0",
|
|
25
25
|
"@salutejs/plasma-typo": "0.42.0"
|
|
26
26
|
},
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"@babel/preset-typescript": "7.24.1",
|
|
40
40
|
"@microsoft/api-extractor": "7.38.3",
|
|
41
41
|
"@salutejs/plasma-colors": "0.16.0",
|
|
42
|
-
"@salutejs/plasma-core": "1.212.0-canary.
|
|
43
|
-
"@salutejs/plasma-cy-utils": "0.142.0-canary.
|
|
42
|
+
"@salutejs/plasma-core": "1.212.0-canary.2403.20455152253.0",
|
|
43
|
+
"@salutejs/plasma-cy-utils": "0.142.0-canary.2403.20455152253.0",
|
|
44
44
|
"@salutejs/plasma-icons": "1.228.0",
|
|
45
|
-
"@salutejs/plasma-sb-utils": "0.212.0-canary.
|
|
45
|
+
"@salutejs/plasma-sb-utils": "0.212.0-canary.2403.20455152253.0",
|
|
46
46
|
"@storybook/addon-docs": "8.6.14",
|
|
47
47
|
"@storybook/addon-essentials": "8.6.14",
|
|
48
48
|
"@storybook/manager-api": "8.6.14",
|
|
@@ -97,5 +97,5 @@
|
|
|
97
97
|
"Fanil Zubairov"
|
|
98
98
|
],
|
|
99
99
|
"sideEffects": false,
|
|
100
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "b498c67df31be46cdc667eb4c446cfbe634c36a8"
|
|
101
101
|
}
|
package/tokens/typography.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { CSSObject } from 'styled-components';
|
|
2
|
-
export { dsplL, dsplLBold, dsplM, dsplMBold, dsplS, dsplSBold, h1, h1Bold, h2, h2Bold, h3, h3Bold, h4, h4Bold, h5, h5Bold, bodyL, bodyLBold, bodyM, bodyMBold, bodyS, bodySBold, bodyXS, bodyXSBold, bodyXXS, bodyXXSBold, textL, textLBold, textM, textMBold, textS, textSBold, textXS, textXSBold, body1, body2, body3, button1, button2, caption, display1, display2, display3, footnote1, footnote2, headline1, headline2, headline3, headline4, paragraph1, paragraph2, underline, } from '@salutejs/plasma-new-hope';
|
|
2
|
+
export { dsplL, dsplLBold, dsplM, dsplMBold, dsplS, dsplSBold, h1, h1Bold, h2, h2Bold, h3, h3Bold, h4, h4Bold, h5, h5Bold, h6, h6Bold, bodyL, bodyLBold, bodyM, bodyMBold, bodyS, bodySBold, bodyXS, bodyXSBold, bodyXXS, bodyXXSBold, textL, textLBold, textM, textMBold, textS, textSBold, textXS, textXSBold, body1, body2, body3, button1, button2, caption, display1, display2, display3, footnote1, footnote2, headline1, headline2, headline3, headline4, paragraph1, paragraph2, underline, } from '@salutejs/plasma-new-hope';
|
|
3
3
|
export declare const fieldTypo: CSSObject;
|
|
4
4
|
export declare const fieldHelperTextTypo: CSSObject;
|
|
5
5
|
export declare const inputTypo: CSSObject;
|
package/tokens/typography.js
CHANGED
|
@@ -226,6 +226,18 @@ Object.defineProperty(exports, "h5Bold", {
|
|
|
226
226
|
return _plasmaNewHope.h5Bold;
|
|
227
227
|
}
|
|
228
228
|
});
|
|
229
|
+
Object.defineProperty(exports, "h6", {
|
|
230
|
+
enumerable: true,
|
|
231
|
+
get: function get() {
|
|
232
|
+
return _plasmaNewHope.h6;
|
|
233
|
+
}
|
|
234
|
+
});
|
|
235
|
+
Object.defineProperty(exports, "h6Bold", {
|
|
236
|
+
enumerable: true,
|
|
237
|
+
get: function get() {
|
|
238
|
+
return _plasmaNewHope.h6Bold;
|
|
239
|
+
}
|
|
240
|
+
});
|
|
229
241
|
Object.defineProperty(exports, "headline1", {
|
|
230
242
|
enumerable: true,
|
|
231
243
|
get: function get() {
|