@salutejs/plasma-new-hope 0.330.0-canary.2072.16118137593.0 → 0.330.0-canary.2072.16143967683.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/cjs/components/TextArea/TextArea.js +26 -7
- package/cjs/components/TextArea/TextArea.js.map +1 -1
- package/cjs/components/TextArea/TextArea.styles.js +95 -54
- package/cjs/components/TextArea/TextArea.styles.js.map +1 -1
- package/cjs/components/TextArea/{TextArea.styles_157tps0.css → TextArea.styles_120rz14.css} +4 -4
- package/cjs/components/TextArea/TextArea.tokens.js +3 -1
- package/cjs/components/TextArea/TextArea.tokens.js.map +1 -1
- package/cjs/components/TextArea/TextArea_c31ipk.css +1 -0
- package/cjs/components/TextArea/ui/Hint/Hint.css +22 -22
- package/cjs/index.css +24 -24
- package/emotion/cjs/components/TextArea/TextArea.js +22 -7
- package/emotion/cjs/components/TextArea/TextArea.styles.js +64 -49
- package/emotion/cjs/components/TextArea/TextArea.tokens.js +3 -1
- package/emotion/cjs/components/TextArea/mixins/applyDynamicLabel.js +2 -2
- package/emotion/es/components/TextArea/TextArea.js +22 -7
- package/emotion/es/components/TextArea/TextArea.styles.js +64 -49
- package/emotion/es/components/TextArea/TextArea.tokens.js +3 -1
- package/emotion/es/components/TextArea/mixins/applyDynamicLabel.js +2 -2
- package/es/components/TextArea/TextArea.js +27 -8
- package/es/components/TextArea/TextArea.js.map +1 -1
- package/es/components/TextArea/TextArea.styles.js +95 -54
- package/es/components/TextArea/TextArea.styles.js.map +1 -1
- package/es/components/TextArea/{TextArea.styles_157tps0.css → TextArea.styles_120rz14.css} +4 -4
- package/es/components/TextArea/TextArea.tokens.js +3 -1
- package/es/components/TextArea/TextArea.tokens.js.map +1 -1
- package/es/components/TextArea/TextArea_c31ipk.css +1 -0
- package/es/components/TextArea/ui/Hint/Hint.css +22 -22
- package/es/index.css +24 -24
- package/package.json +2 -2
- package/styled-components/cjs/components/TextArea/TextArea.js +21 -6
- package/styled-components/cjs/components/TextArea/TextArea.styles.js +51 -32
- package/styled-components/cjs/components/TextArea/TextArea.tokens.js +3 -1
- package/styled-components/cjs/components/TextArea/mixins/applyDynamicLabel.js +2 -2
- package/styled-components/es/components/TextArea/TextArea.js +21 -6
- package/styled-components/es/components/TextArea/TextArea.styles.js +51 -32
- package/styled-components/es/components/TextArea/TextArea.tokens.js +3 -1
- package/styled-components/es/components/TextArea/mixins/applyDynamicLabel.js +2 -2
- package/types/components/TextArea/TextArea.d.ts.map +1 -1
- package/types/components/TextArea/TextArea.styles.d.ts +10 -3
- package/types/components/TextArea/TextArea.styles.d.ts.map +1 -1
- package/types/components/TextArea/TextArea.tokens.d.ts +2 -0
- package/types/components/TextArea/TextArea.tokens.d.ts.map +1 -1
- package/types/components/TextArea/TextArea.types.d.ts +11 -0
- package/types/components/TextArea/TextArea.types.d.ts.map +1 -1
- package/types/components/TextArea/mixins/applyDynamicLabel.d.ts.map +1 -1
- package/cjs/components/TextArea/TextArea_e0xkpd.css +0 -1
- package/es/components/TextArea/TextArea_e0xkpd.css +0 -1
@@ -7,13 +7,13 @@ var mergedConfig = mergeConfig(tooltipConfig);
|
|
7
7
|
var Tooltip = component(mergedConfig);
|
8
8
|
export var Hint = styled(Tooltip).withConfig({
|
9
9
|
displayName: "TextArea.styles__Hint",
|
10
|
-
componentId: "sc-
|
10
|
+
componentId: "sc-5da3c99c-0"
|
11
11
|
})([
|
12
12
|
""
|
13
13
|
]);
|
14
14
|
export var OuterLabelWrapper = styled.div.withConfig({
|
15
15
|
displayName: "TextArea.styles__OuterLabelWrapper",
|
16
|
-
componentId: "sc-
|
16
|
+
componentId: "sc-5da3c99c-1"
|
17
17
|
})([
|
18
18
|
"display:flex;align-items:center;max-width:",
|
19
19
|
";margin-bottom:",
|
@@ -27,7 +27,7 @@ export var OuterLabelWrapper = styled.div.withConfig({
|
|
27
27
|
});
|
28
28
|
export var StyledLabel = styled.div.withConfig({
|
29
29
|
displayName: "TextArea.styles__StyledLabel",
|
30
|
-
componentId: "sc-
|
30
|
+
componentId: "sc-5da3c99c-2"
|
31
31
|
})([
|
32
32
|
"position:relative;display:inline-flex;color:var(",
|
33
33
|
",var(",
|
@@ -47,7 +47,7 @@ export var StyledLabel = styled.div.withConfig({
|
|
47
47
|
], tokens.labelOuterColor, tokens.inputColor, tokens.labelOuterFontFamily, tokens.inputFontFamily, tokens.labelOuterFontSize, tokens.inputFontSize, tokens.labelOuterFontStyle, tokens.inputFontStyle, tokens.labelOuterFontWeight, tokens.inputFontWeight, tokens.labelOuterLetterSpacing, tokens.inputLetterSpacing, tokens.labelOuterLineHeight, tokens.inputLineHeight);
|
48
48
|
export var TitleCaption = styled.div.withConfig({
|
49
49
|
displayName: "TextArea.styles__TitleCaption",
|
50
|
-
componentId: "sc-
|
50
|
+
componentId: "sc-5da3c99c-3"
|
51
51
|
})([
|
52
52
|
"display:inline-block;margin-left:auto;font-family:var(",
|
53
53
|
");font-size:var(",
|
@@ -59,13 +59,13 @@ export var TitleCaption = styled.div.withConfig({
|
|
59
59
|
], tokens.titleCaptionFontFamily, tokens.titleCaptionFontSize, tokens.titleCaptionFontStyle, tokens.titleCaptionFontWeight, tokens.titleCaptionLetterSpacing, tokens.titleCaptionLineHeight);
|
60
60
|
export var StyledIndicatorWrapper = styled.div.withConfig({
|
61
61
|
displayName: "TextArea.styles__StyledIndicatorWrapper",
|
62
|
-
componentId: "sc-
|
62
|
+
componentId: "sc-5da3c99c-4"
|
63
63
|
})([
|
64
64
|
"position:relative;display:inline-flex;align-items:center;"
|
65
65
|
]);
|
66
66
|
export var StyledOptionalText = styled.span.withConfig({
|
67
67
|
displayName: "TextArea.styles__StyledOptionalText",
|
68
|
-
componentId: "sc-
|
68
|
+
componentId: "sc-5da3c99c-5"
|
69
69
|
})([
|
70
70
|
"color:var(",
|
71
71
|
");font-family:",
|
@@ -96,7 +96,7 @@ export var StyledOptionalText = styled.span.withConfig({
|
|
96
96
|
});
|
97
97
|
export var StyledHintWrapper = styled.div.withConfig({
|
98
98
|
displayName: "TextArea.styles__StyledHintWrapper",
|
99
|
-
componentId: "sc-
|
99
|
+
componentId: "sc-5da3c99c-6"
|
100
100
|
})([
|
101
101
|
"display:inline-flex;line-height:0;margin:var(",
|
102
102
|
");&.",
|
@@ -105,7 +105,7 @@ export var StyledHintWrapper = styled.div.withConfig({
|
|
105
105
|
], tokens.hintMargin, classes.innerLabelPlacement, tokens.hintInnerLabelPlacementOffset);
|
106
106
|
export var HintTargetWrapper = styled.div.withConfig({
|
107
107
|
displayName: "TextArea.styles__HintTargetWrapper",
|
108
|
-
componentId: "sc-
|
108
|
+
componentId: "sc-5da3c99c-7"
|
109
109
|
})([
|
110
110
|
"color:var(",
|
111
111
|
");width:var(",
|
@@ -114,19 +114,23 @@ export var HintTargetWrapper = styled.div.withConfig({
|
|
114
114
|
], tokens.hintIconColor, tokens.hintTargetSize, tokens.hintTargetSize);
|
115
115
|
export var HintIconWrapper = styled.div.withConfig({
|
116
116
|
displayName: "TextArea.styles__HintIconWrapper",
|
117
|
-
componentId: "sc-
|
117
|
+
componentId: "sc-5da3c99c-8"
|
118
118
|
})([
|
119
119
|
""
|
120
120
|
]);
|
121
121
|
export var StyledTextAreaWrapper = styled.div.withConfig({
|
122
122
|
displayName: "TextArea.styles__StyledTextAreaWrapper",
|
123
|
-
componentId: "sc-
|
123
|
+
componentId: "sc-5da3c99c-9"
|
124
124
|
})([
|
125
125
|
"display:flex;flex-direction:column;background-color:var(",
|
126
|
-
");padding-
|
126
|
+
");padding-top:",
|
127
|
+
";padding-bottom:",
|
127
128
|
";border-radius:",
|
128
129
|
";"
|
129
130
|
], tokens.inputBackgroundColor, function(param) {
|
131
|
+
var hasHeader = param.hasHeader;
|
132
|
+
return hasHeader ? 'unset' : "var(".concat(tokens.inputPaddingTop, ")");
|
133
|
+
}, function(param) {
|
130
134
|
var hasHelper = param.hasHelper;
|
131
135
|
return hasHelper ? "var(".concat(tokens.inputPaddingBottomWithHelpers, ")") : "var(".concat(tokens.inputPaddingBottom, ")");
|
132
136
|
}, function(param) {
|
@@ -135,44 +139,59 @@ export var StyledTextAreaWrapper = styled.div.withConfig({
|
|
135
139
|
});
|
136
140
|
export var StyledContentWrapper = styled.div.withConfig({
|
137
141
|
displayName: "TextArea.styles__StyledContentWrapper",
|
138
|
-
componentId: "sc-
|
142
|
+
componentId: "sc-5da3c99c-10"
|
139
143
|
})([
|
140
|
-
"position:relative;width:100%;height:0;
|
141
|
-
"
|
142
|
-
],
|
144
|
+
"position:relative;width:100%;height:0;padding-top:",
|
145
|
+
";"
|
146
|
+
], function(param) {
|
147
|
+
var hasHeader = param.hasHeader;
|
148
|
+
return hasHeader ? "var(".concat(tokens.inputPaddingTop, ")") : 'unset';
|
149
|
+
});
|
143
150
|
export var StyledContent = styled.div.withConfig({
|
144
151
|
displayName: "TextArea.styles__StyledContent",
|
145
|
-
componentId: "sc-
|
152
|
+
componentId: "sc-5da3c99c-11"
|
146
153
|
})([
|
147
154
|
"position:absolute;display:flex;align-items:center;z-index:1;color:var(",
|
148
155
|
",var(",
|
149
|
-
"));top
|
156
|
+
"));top:",
|
157
|
+
";right:var(",
|
150
158
|
");height:var(",
|
151
159
|
");"
|
152
|
-
], tokens.rightContentColor, tokens.inputColor,
|
160
|
+
], tokens.rightContentColor, tokens.inputColor, function(param) {
|
161
|
+
var hasHeader = param.hasHeader;
|
162
|
+
return hasHeader ? "var(".concat(tokens.inputPaddingTop, ")") : "var(".concat(tokens.rightContentTop, ")");
|
163
|
+
}, tokens.rightContentRight, tokens.rightContentHeight);
|
153
164
|
export var StyledHeaderSlot = styled.div.withConfig({
|
154
165
|
displayName: "TextArea.styles__StyledHeaderSlot",
|
155
|
-
componentId: "sc-
|
166
|
+
componentId: "sc-5da3c99c-12"
|
156
167
|
})([
|
157
|
-
"display:flex;flex-direction:column;margin-right:
|
158
|
-
|
168
|
+
"display:flex;flex-direction:column;margin-right:",
|
169
|
+
";margin-left:",
|
170
|
+
";"
|
171
|
+
], function(param) {
|
172
|
+
var applyHeaderDefaultPaddings = param.applyHeaderDefaultPaddings;
|
173
|
+
return applyHeaderDefaultPaddings ? 'var(--plasma-textarea-helpers-padding-right)' : 'unset';
|
174
|
+
}, function(param) {
|
175
|
+
var applyHeaderDefaultPaddings = param.applyHeaderDefaultPaddings;
|
176
|
+
return applyHeaderDefaultPaddings ? 'var(--plasma-textarea-helpers-padding-left)' : 'unset';
|
177
|
+
});
|
159
178
|
export var DividerWrapper = styled.div.withConfig({
|
160
179
|
displayName: "TextArea.styles__DividerWrapper",
|
161
|
-
componentId: "sc-
|
180
|
+
componentId: "sc-5da3c99c-13"
|
162
181
|
})([
|
163
182
|
"background:var(",
|
164
183
|
");"
|
165
184
|
], tokens.backgroundColor);
|
166
185
|
export var Divider = styled.div.withConfig({
|
167
186
|
displayName: "TextArea.styles__Divider",
|
168
|
-
componentId: "sc-
|
187
|
+
componentId: "sc-5da3c99c-14"
|
169
188
|
})([
|
170
189
|
"height:0.0625rem;background:var(",
|
171
190
|
");"
|
172
191
|
], tokens.dividerColor);
|
173
192
|
export var StyledContainer = styled.div.withConfig({
|
174
193
|
displayName: "TextArea.styles__StyledContainer",
|
175
|
-
componentId: "sc-
|
194
|
+
componentId: "sc-5da3c99c-15"
|
176
195
|
})([
|
177
196
|
"display:inline-flex;flex-direction:column;width:",
|
178
197
|
";position:relative;"
|
@@ -182,7 +201,7 @@ export var StyledContainer = styled.div.withConfig({
|
|
182
201
|
});
|
183
202
|
export var StyledTextArea = styled.textarea.withConfig({
|
184
203
|
displayName: "TextArea.styles__StyledTextArea",
|
185
|
-
componentId: "sc-
|
204
|
+
componentId: "sc-5da3c99c-16"
|
186
205
|
})([
|
187
206
|
"display:block;box-sizing:border-box;outline:none;border:none;-webkit-appearance:none;background-color:transparent;color:var(",
|
188
207
|
");caret-color:var(",
|
@@ -245,7 +264,7 @@ export var StyledTextArea = styled.textarea.withConfig({
|
|
245
264
|
}, tokens.inputFontFamily, tokens.inputFontSize, tokens.inputFontStyle, tokens.inputFontWeight, tokens.inputLetterSpacing, tokens.inputLineHeight, tokens.inputColorFocus, tokens.scrollbarWidth, tokens.scrollbarThumbBackgroundColor, tokens.scrollbarBorderWidth, tokens.scrollbarTrackBackgroundColor, tokens.scrollbarBorderWidth);
|
246
265
|
export var StyledHiddenTextArea = styled.textarea.withConfig({
|
247
266
|
displayName: "TextArea.styles__StyledHiddenTextArea",
|
248
|
-
componentId: "sc-
|
267
|
+
componentId: "sc-5da3c99c-17"
|
249
268
|
})([
|
250
269
|
"max-height:none !important;min-height:var(",
|
251
270
|
") !important;visibility:hidden !important;overflow:hidden !important;position:absolute !important;z-index:-1000 !important;top:0 !important;left:0 !important;right:0.0625rem !important;border-width:0;padding-right:",
|
@@ -263,7 +282,7 @@ export var StyledHiddenTextArea = styled.textarea.withConfig({
|
|
263
282
|
}, tokens.inputPaddingLeft, tokens.inputFontFamily, tokens.inputFontSize, tokens.inputFontStyle, tokens.inputFontWeight, tokens.inputLetterSpacing, tokens.inputLineHeight);
|
264
283
|
export var StyledHelpers = styled.div.withConfig({
|
265
284
|
displayName: "TextArea.styles__StyledHelpers",
|
266
|
-
componentId: "sc-
|
285
|
+
componentId: "sc-5da3c99c-18"
|
267
286
|
})([
|
268
287
|
"box-sizing:border-box;display:flex;justify-content:space-between;transition:background-color 0.1s ease-in-out;background-color:var(",
|
269
288
|
");padding-top:var(",
|
@@ -276,14 +295,14 @@ export var StyledHelpers = styled.div.withConfig({
|
|
276
295
|
], tokens.helpersBackgroundColor, tokens.helpersPaddingTop, tokens.helpersPaddingRight, tokens.helpersPaddingBottom, tokens.helpersPaddingLeft, tokens.borderRadius, tokens.borderRadius);
|
277
296
|
export var StyledOutsideHelpersWrapper = styled.div.withConfig({
|
278
297
|
displayName: "TextArea.styles__StyledOutsideHelpersWrapper",
|
279
|
-
componentId: "sc-
|
298
|
+
componentId: "sc-5da3c99c-19"
|
280
299
|
})([
|
281
300
|
"box-sizing:border-box;display:flex;justify-content:space-between;padding-top:var(",
|
282
301
|
");"
|
283
302
|
], tokens.clearHelpersPaddingTop);
|
284
303
|
export var StyledLeftHelper = styled.span.withConfig({
|
285
304
|
displayName: "TextArea.styles__StyledLeftHelper",
|
286
|
-
componentId: "sc-
|
305
|
+
componentId: "sc-5da3c99c-20"
|
287
306
|
})([
|
288
307
|
"",
|
289
308
|
";display:block;font-family:var(",
|
@@ -297,14 +316,14 @@ export var StyledLeftHelper = styled.span.withConfig({
|
|
297
316
|
], applyEllipsis(), tokens.helpersFontFamily, tokens.helpersFontSize, tokens.helpersFontStyle, tokens.helpersFontWeight, tokens.helpersLetterSpacing, tokens.helpersLineHeight, tokens.leftHelperColor);
|
298
317
|
export var StyledRightHelper = styled(StyledLeftHelper).withConfig({
|
299
318
|
displayName: "TextArea.styles__StyledRightHelper",
|
300
|
-
componentId: "sc-
|
319
|
+
componentId: "sc-5da3c99c-21"
|
301
320
|
})([
|
302
321
|
"color:var(",
|
303
322
|
");margin-left:auto;"
|
304
323
|
], tokens.rightHelperColor);
|
305
324
|
export var StyledPlaceholder = styled.label.withConfig({
|
306
325
|
displayName: "TextArea.styles__StyledPlaceholder",
|
307
|
-
componentId: "sc-
|
326
|
+
componentId: "sc-5da3c99c-22"
|
308
327
|
})([
|
309
328
|
"box-sizing:border-box;position:absolute;pointer-events:none;display:inline-flex;align-items:center;transition:all 0.1s ease-in-out;transform-origin:top left;color:var(",
|
310
329
|
");width:100%;height:auto;top:var(",
|
@@ -323,7 +342,7 @@ export var StyledPlaceholder = styled.label.withConfig({
|
|
323
342
|
}, tokens.inputFontFamily, tokens.inputFontSize, tokens.inputFontStyle, tokens.inputFontWeight, tokens.inputLetterSpacing, tokens.inputLineHeight);
|
324
343
|
export var StyledIndicator = styled.div.withConfig({
|
325
344
|
displayName: "TextArea.styles__StyledIndicator",
|
326
|
-
componentId: "sc-
|
345
|
+
componentId: "sc-5da3c99c-23"
|
327
346
|
})([
|
328
347
|
"position:absolute;border-radius:50%;background-color:var(",
|
329
348
|
");&.",
|
@@ -14,7 +14,9 @@ export var classes = {
|
|
14
14
|
hasHint: 'textarea-has-hint',
|
15
15
|
hasRightContent: 'textarea-has-right-content',
|
16
16
|
hasDivider: 'textarea-has-divider',
|
17
|
-
requiredAlignRight: 'required-align-right'
|
17
|
+
requiredAlignRight: 'required-align-right',
|
18
|
+
hasHeaderSlot: 'textarea-has-header-slot',
|
19
|
+
styledContentWrapper: 'textarea-content-wrapper'
|
18
20
|
};
|
19
21
|
export var tokens = {
|
20
22
|
/** Цвет фона для всего компонента */ backgroundColor: '--plasma-textarea-background-color',
|
@@ -1,3 +1,3 @@
|
|
1
1
|
import { classes, tokens } from "../TextArea.tokens";
|
2
|
-
var innerPlaceholderUp = classes.innerPlaceholderUp, hidePlaceHolder = classes.hidePlaceHolder, focusedOuterPlaceholderColor = classes.focusedOuterPlaceholderColor, styledTextArea = classes.styledTextArea, styledTextAreaWrapper = classes.styledTextAreaWrapper, styledPlaceholder = classes.styledPlaceholder;
|
3
|
-
export var applyDynamicLabel = "\n .".concat(innerPlaceholderUp, " {\n .").concat(styledTextArea, " {\n height: calc(var(--plasma_private-textarea-input-actual-height) - var(").concat(tokens.labelInnerTop, ") - var(").concat(tokens.labelInnerTopHelper, ", 0px));\n }\n\n .").concat(styledTextAreaWrapper, " {\n padding-top: calc(calc(var(").concat(tokens.labelInnerTop, ") + var(").concat(tokens.labelInnerFontSize, ")) + var(").concat(tokens.labelInnerMarginBottom, "));\n }\n\n .").concat(styledPlaceholder, " {\n font-family: var(").concat(tokens.labelInnerFontFamily, ");\n font-size: var(").concat(tokens.labelInnerFontSize, ");\n font-style: var(").concat(tokens.labelInnerFontStyle, ");\n font-weight: var(").concat(tokens.labelInnerFontWeight, ");\n letter-spacing: var(").concat(tokens.labelInnerLetterSpacing, ");\n line-height: var(").concat(tokens.labelInnerLineHeight, ");\n top: var(").concat(tokens.labelInnerTop, ");\n }\n }\n\n .").concat(hidePlaceHolder, " .").concat(styledPlaceholder, " {\n display: none;\n }\n\n .").concat(focusedOuterPlaceholderColor, " .").concat(styledPlaceholder, " {\n color: var(").concat(tokens.placeholderColorFocus, ");\n }\n");
|
2
|
+
var innerPlaceholderUp = classes.innerPlaceholderUp, hidePlaceHolder = classes.hidePlaceHolder, focusedOuterPlaceholderColor = classes.focusedOuterPlaceholderColor, styledTextArea = classes.styledTextArea, styledTextAreaWrapper = classes.styledTextAreaWrapper, styledPlaceholder = classes.styledPlaceholder, hasHeaderSlot = classes.hasHeaderSlot, styledContentWrapper = classes.styledContentWrapper;
|
3
|
+
export var applyDynamicLabel = "\n .".concat(innerPlaceholderUp, " {\n .").concat(styledTextArea, " {\n height: calc(var(--plasma_private-textarea-input-actual-height) - var(").concat(tokens.labelInnerTop, ") - var(").concat(tokens.labelInnerTopHelper, ", 0px));\n }\n\n .").concat(styledTextAreaWrapper, " {\n padding-top: calc(calc(var(").concat(tokens.labelInnerTop, ") + var(").concat(tokens.labelInnerFontSize, ")) + var(").concat(tokens.labelInnerMarginBottom, "));\n }\n \n .").concat(hasHeaderSlot, " {\n padding-top: unset;\n\n .").concat(styledContentWrapper, " {\n padding-top: calc(calc(var(").concat(tokens.labelInnerTop, ") + var(").concat(tokens.labelInnerFontSize, ")) + var(").concat(tokens.labelInnerMarginBottom, "));\n }\n }\n\n .").concat(styledPlaceholder, " {\n font-family: var(").concat(tokens.labelInnerFontFamily, ");\n font-size: var(").concat(tokens.labelInnerFontSize, ");\n font-style: var(").concat(tokens.labelInnerFontStyle, ");\n font-weight: var(").concat(tokens.labelInnerFontWeight, ");\n letter-spacing: var(").concat(tokens.labelInnerLetterSpacing, ");\n line-height: var(").concat(tokens.labelInnerLineHeight, ");\n top: var(").concat(tokens.labelInnerTop, ");\n }\n }\n\n .").concat(hidePlaceHolder, " .").concat(styledPlaceholder, " {\n display: none;\n }\n\n .").concat(focusedOuterPlaceholderColor, " .").concat(styledPlaceholder, " {\n color: var(").concat(tokens.placeholderColorFocus, ");\n }\n");
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"TextArea.d.ts","sourceRoot":"","sources":["../../../src/components/TextArea/TextArea.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmG,MAAM,OAAO,CAAC;AAKxH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAoCrD,OAAO,KAAK,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;
|
1
|
+
{"version":3,"file":"TextArea.d.ts","sourceRoot":"","sources":["../../../src/components/TextArea/TextArea.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmG,MAAM,OAAO,CAAC;AAKxH,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAoCrD,OAAO,KAAK,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAoCzE,eAAO,MAAM,sBAAsB,UAAW,aAAa,WAAW,OAAO,2BA2B5E,CAAC;AAEF,eAAO,MAAM,YAAY,SAAU,SAAS,CAAC,mBAAmB,EAAE,iBAAiB,CAAC,8FAiW9E,CAAC;AAEP,eAAO,MAAM,cAAc;;;mBAnWQ,SAAS,CAAC,mBAAmB,EAAE,iBAAiB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsYnF,CAAC"}
|
@@ -14,10 +14,17 @@ export declare const HintTargetWrapper: import("@linaria/react").StyledComponent
|
|
14
14
|
export declare const HintIconWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
15
15
|
export declare const StyledTextAreaWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
16
16
|
hasHelper: boolean;
|
17
|
+
hasHeader: boolean;
|
18
|
+
}>;
|
19
|
+
export declare const StyledContentWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
20
|
+
hasHeader: boolean;
|
21
|
+
}>;
|
22
|
+
export declare const StyledContent: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
23
|
+
hasHeader?: boolean;
|
24
|
+
}>;
|
25
|
+
export declare const StyledHeaderSlot: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
26
|
+
applyHeaderDefaultPaddings?: boolean;
|
17
27
|
}>;
|
18
|
-
export declare const StyledContentWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
19
|
-
export declare const StyledContent: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
20
|
-
export declare const StyledHeaderSlot: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
21
28
|
export declare const DividerWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
22
29
|
export declare const Divider: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
23
30
|
export declare const StyledContainer: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"TextArea.styles.d.ts","sourceRoot":"","sources":["../../../src/components/TextArea/TextArea.styles.ts"],"names":[],"mappings":"AAWA,eAAO,MAAM,IAAI,8OAAoB,CAAC;AAEtC,eAAO,MAAM,iBAAiB;kBAA8B,OAAO;WAAS,MAAM;EAOjF,CAAC;AAEF,eAAO,MAAM,WAAW,qKAWvB,CAAC;AAEF,eAAO,MAAM,YAAY,qKAUxB,CAAC;AAEF,eAAO,MAAM,sBAAsB,qKAIlC,CAAC;AAEF,eAAO,MAAM,kBAAkB;kBAA+B,OAAO;EAepE,CAAC;AAEF,eAAO,MAAM,iBAAiB,qKAU7B,CAAC;AAEF,eAAO,MAAM,iBAAiB,qKAQ7B,CAAC;AAEF,eAAO,MAAM,eAAe,qKAAe,CAAC;AAE5C,eAAO,MAAM,qBAAqB;eACnB,OAAO;
|
1
|
+
{"version":3,"file":"TextArea.styles.d.ts","sourceRoot":"","sources":["../../../src/components/TextArea/TextArea.styles.ts"],"names":[],"mappings":"AAWA,eAAO,MAAM,IAAI,8OAAoB,CAAC;AAEtC,eAAO,MAAM,iBAAiB;kBAA8B,OAAO;WAAS,MAAM;EAOjF,CAAC;AAEF,eAAO,MAAM,WAAW,qKAWvB,CAAC;AAEF,eAAO,MAAM,YAAY,qKAUxB,CAAC;AAEF,eAAO,MAAM,sBAAsB,qKAIlC,CAAC;AAEF,eAAO,MAAM,kBAAkB;kBAA+B,OAAO;EAepE,CAAC;AAEF,eAAO,MAAM,iBAAiB,qKAU7B,CAAC;AAEF,eAAO,MAAM,iBAAiB,qKAQ7B,CAAC;AAEF,eAAO,MAAM,eAAe,qKAAe,CAAC;AAE5C,eAAO,MAAM,qBAAqB;eACnB,OAAO;eACP,OAAO;EAYrB,CAAC;AAEF,eAAO,MAAM,oBAAoB;eAA2B,OAAO;EAKlE,CAAC;AAEF,eAAO,MAAM,aAAa;gBAA4B,OAAO;EAY5D,CAAC;AAEF,eAAO,MAAM,gBAAgB;iCAA6C,OAAO;EAOhF,CAAC;AAEF,eAAO,MAAM,cAAc,qKAE1B,CAAC;AAEF,eAAO,MAAM,OAAO,qKAGnB,CAAC;AAEF,eAAO,MAAM,eAAe;WAAuB,MAAM;EAOxD,CAAC;AAEF,eAAO,MAAM,cAAc;eACZ,OAAO;qBACD,OAAO;sBACN,OAAO;YACjB,MAAM,GAAG,MAAM;aACd,MAAM,GAAG,MAAM;aACf,MAAM;EAiGlB,CAAC;AAEF,eAAO,MAAM,oBAAoB;qBACZ,OAAO;aACf,MAAM;EA+BlB,CAAC;AAEF,eAAO,MAAM,aAAa,qKAgBzB,CAAC;AAEF,eAAO,MAAM,2BAA2B,qKAMvC,CAAC;AAEF,eAAO,MAAM,gBAAgB,uKAa5B,CAAC;AAEF,eAAO,MAAM,iBAAiB;SA5SM,MAAO,WAAW;EA+SrD,CAAC;AAEF,eAAO,MAAM,iBAAiB;qBACT,OAAO;EA2B3B,CAAC;AAEF,eAAO,MAAM,eAAe,qKA+B3B,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"TextArea.tokens.d.ts","sourceRoot":"","sources":["../../../src/components/TextArea/TextArea.tokens.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,OAAO;IAChB,6DAA6D;;IAE7D,kEAAkE;;IAElE,+CAA+C;;IAE/C,6CAA6C;;IAE7C,4CAA4C;;IAE5C,mDAAmD;;IAEnD,+CAA+C;;IAE/C,2CAA2C;;;;IAI3C,6BAA6B
|
1
|
+
{"version":3,"file":"TextArea.tokens.d.ts","sourceRoot":"","sources":["../../../src/components/TextArea/TextArea.tokens.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,OAAO;IAChB,6DAA6D;;IAE7D,kEAAkE;;IAElE,+CAA+C;;IAE/C,6CAA6C;;IAE7C,4CAA4C;;IAE5C,mDAAmD;;IAEnD,+CAA+C;;IAE/C,2CAA2C;;;;IAI3C,6BAA6B;;;;;;;;CAQhC,CAAC;AAEF,eAAO,MAAM,MAAM;IACf,qCAAqC;;IAErC,uDAAuD;;IAEvD,wDAAwD;;IAExD,uDAAuD;;IAEvD,sCAAsC;;IAEtC,wDAAwD;;IAExD,yDAAyD;;IAEzD,wDAAwD;;IAExD,0CAA0C;;IAE1C,4DAA4D;;IAE5D,6DAA6D;;IAE7D,4DAA4D;;IAE5D,yCAAyC;;IAEzC,2DAA2D;;IAE3D,4DAA4D;;IAE5D,2DAA2D;;IAE3D,wCAAwC;;;;;;IAOxC,0DAA0D;;IAE1D,yCAAyC;;IAEzC,gCAAgC;;;IAGhC,kDAAkD;;;IAGlD,6BAA6B;;IAE7B,0CAA0C;;IAE1C,2CAA2C;;IAE3C,yCAAyC;;;IAIzC,2DAA2D;;IAE3D,2DAA2D;;IAG3D,+BAA+B;;IAE/B,+BAA+B;;IAE/B,2CAA2C;;IAE3C,qCAAqC;;IAErC,+CAA+C;;IAE/C,4FAA4F;;IAE5F,0CAA0C;;IAE1C,0CAA0C;;IAE1C,qEAAqE;;;IAGrE,yCAAyC;;IAEzC,mEAAmE;;IAEnE,yCAAyC;;IAEzC,uCAAuC;;;IAGvC,uCAAuC;;IAEvC,sCAAsC;;IAEtC,sCAAsC;;IAEtC,+FAA+F;;IAE/F,wCAAwC;;IAExC,wCAAwC;;IAExC,6BAA6B;;IAE7B,2DAA2D;;IAE3D,2DAA2D;;IAE3D,mEAAmE;;IAEnE,kEAAkE;;IAElE,uEAAuE;;IAEvE,8EAA8E;;IAE9E,mEAAmE;;IAEnE,mEAAmE;;;IAGnE,2DAA2D;;IAE3D,mEAAmE;;IAEnE,kEAAkE;;IAElE,uEAAuE;;IAEvE,8EAA8E;;IAE9E,mEAAmE;;IAEnE,qDAAqD;;IAErD,8FAA8F;;IAE9F,oCAAoC;;IAEpC,kCAAkC;;IAElC,0CAA0C;;IAE1C,yCAAyC;;IAEzC,8CAA8C;;IAE9C,4DAA4D;;IAE5D,iDAAiD;;IAEjD,8CAA8C;;IAE9C,sDAAsD;;IAEtD,qDAAqD;;IAErD,0DAA0D;;IAE1D,iEAAiE;;IAEjE,sDAAsD;;IAGtD,WAAW;;;IAKX,6DAA6D;;IAE7D,6DAA6D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAwC7D,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiC5B,CAAC"}
|
@@ -164,6 +164,17 @@ export type TextAreaPropsBase = {
|
|
164
164
|
* @description не отображается, если включен `clear`
|
165
165
|
*/
|
166
166
|
headerSlot?: ReactNode;
|
167
|
+
/**
|
168
|
+
* Свойство включает отображение разделителя для `headerSlot`
|
169
|
+
* @default true
|
170
|
+
*/
|
171
|
+
enableHeaderDivider?: boolean;
|
172
|
+
/**
|
173
|
+
* Свойство применяет заданные по умолчанию боковые
|
174
|
+
* отступы для `headerSlot`
|
175
|
+
* @default true
|
176
|
+
*/
|
177
|
+
applyHeaderDefaultPaddings?: boolean;
|
167
178
|
/**
|
168
179
|
* Слот для контента справа.
|
169
180
|
*/
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"TextArea.types.d.ts","sourceRoot":"","sources":["../../../src/components/TextArea/TextArea.types.tsx"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"TextArea.types.d.ts","sourceRoot":"","sources":["../../../src/components/TextArea/TextArea.types.tsx"],"names":[],"mappings":"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"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"applyDynamicLabel.d.ts","sourceRoot":"","sources":["../../../../src/components/TextArea/mixins/applyDynamicLabel.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"applyDynamicLabel.d.ts","sourceRoot":"","sources":["../../../../src/components/TextArea/mixins/applyDynamicLabel.ts"],"names":[],"mappings":"AAaA,eAAO,MAAM,iBAAiB,QAoC7B,CAAC"}
|
@@ -1 +0,0 @@
|
|
1
|
-
.b6rykm0{position:relative;box-sizing:border-box;}.b6rykm0 .inner-placeholder-up .textarea{height:calc(var(--plasma_private-textarea-input-actual-height) - var(--plasma-textarea-label-inner-top) - var(--plasma-textarea-label-inner-top-helper,0px));}.b6rykm0 .inner-placeholder-up .textarea-wrapper{padding-top:calc(calc(var(--plasma-textarea-label-inner-top) + var(--plasma-textarea-label-inner-font-size)) + var(--plasma-textarea-label-inner-margin-bottom));}.b6rykm0 .inner-placeholder-up .textarea-placeholder{font-family:var(--plasma-textarea-label-inner-font-family);font-size:var(--plasma-textarea-label-inner-font-size);font-style:var(--plasma-textarea-label-inner-font-style);font-weight:var(--plasma-textarea-label-inner-font-weight);-webkit-letter-spacing:var(--plasma-textarea-label-inner-letter-spacing);-moz-letter-spacing:var(--plasma-textarea-label-inner-letter-spacing);-ms-letter-spacing:var(--plasma-textarea-label-inner-letter-spacing);letter-spacing:var(--plasma-textarea-label-inner-letter-spacing);line-height:var(--plasma-textarea-label-inner-line-height);top:var(--plasma-textarea-label-inner-top);}.b6rykm0 .hide-placeholder .textarea-placeholder{display:none;}.b6rykm0 .focused-outer-placeholder-color .textarea-placeholder{color:var(--plasma-textarea-placeholder-color-focus);}
|
@@ -1 +0,0 @@
|
|
1
|
-
.b6rykm0{position:relative;box-sizing:border-box;}.b6rykm0 .inner-placeholder-up .textarea{height:calc(var(--plasma_private-textarea-input-actual-height) - var(--plasma-textarea-label-inner-top) - var(--plasma-textarea-label-inner-top-helper,0px));}.b6rykm0 .inner-placeholder-up .textarea-wrapper{padding-top:calc(calc(var(--plasma-textarea-label-inner-top) + var(--plasma-textarea-label-inner-font-size)) + var(--plasma-textarea-label-inner-margin-bottom));}.b6rykm0 .inner-placeholder-up .textarea-placeholder{font-family:var(--plasma-textarea-label-inner-font-family);font-size:var(--plasma-textarea-label-inner-font-size);font-style:var(--plasma-textarea-label-inner-font-style);font-weight:var(--plasma-textarea-label-inner-font-weight);-webkit-letter-spacing:var(--plasma-textarea-label-inner-letter-spacing);-moz-letter-spacing:var(--plasma-textarea-label-inner-letter-spacing);-ms-letter-spacing:var(--plasma-textarea-label-inner-letter-spacing);letter-spacing:var(--plasma-textarea-label-inner-letter-spacing);line-height:var(--plasma-textarea-label-inner-line-height);top:var(--plasma-textarea-label-inner-top);}.b6rykm0 .hide-placeholder .textarea-placeholder{display:none;}.b6rykm0 .focused-outer-placeholder-color .textarea-placeholder{color:var(--plasma-textarea-placeholder-color-focus);}
|