@box/blueprint-web 12.14.0 → 12.15.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/dist/lib-esm/card/card.js +5 -0
- package/dist/lib-esm/card/card.module.js +1 -1
- package/dist/lib-esm/index.css +135 -57
- package/dist/lib-esm/text-area/text-area-autosize/text-area-autosize.js +7 -0
- package/dist/lib-esm/text-area/text-area-autosize/text-area-autosize.module.js +1 -1
- package/dist/lib-esm/text-area/text-area.js +6 -1
- package/dist/lib-esm/text-area/text-area.module.js +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
2
|
import clsx from 'clsx';
|
|
3
3
|
import { forwardRef } from 'react';
|
|
4
|
+
import { useBlueprintModernization } from '../blueprint-modernization-context/useBlueprintModernization.js';
|
|
4
5
|
import styles from './card.module.js';
|
|
5
6
|
|
|
6
7
|
/**
|
|
@@ -13,10 +14,14 @@ const Card = /*#__PURE__*/forwardRef((props, forwardedRef) => {
|
|
|
13
14
|
elevation: elevationToken,
|
|
14
15
|
...rest
|
|
15
16
|
} = props;
|
|
17
|
+
const {
|
|
18
|
+
enableModernizedComponents
|
|
19
|
+
} = useBlueprintModernization();
|
|
16
20
|
return jsx("div", {
|
|
17
21
|
...rest,
|
|
18
22
|
ref: forwardedRef,
|
|
19
23
|
className: clsx(styles.card, elevationToken && styles[elevationToken], className),
|
|
24
|
+
"data-modern": enableModernizedComponents,
|
|
20
25
|
children: children
|
|
21
26
|
});
|
|
22
27
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import '../index.css';
|
|
2
|
-
var styles = {"card":"bp_card_module_card--
|
|
2
|
+
var styles = {"card":"bp_card_module_card--c61ad","dropshadow-1":"bp_card_module_dropshadow-1--c61ad","dropshadow-3":"bp_card_module_dropshadow-3--c61ad"};
|
|
3
3
|
|
|
4
4
|
export { styles as default };
|
package/dist/lib-esm/index.css
CHANGED
|
@@ -1101,17 +1101,37 @@
|
|
|
1101
1101
|
.bp_button_wrapper_module_buttonWrapper--b0897{
|
|
1102
1102
|
all:unset;
|
|
1103
1103
|
}
|
|
1104
|
-
.bp_card_module_card--
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
padding:var(--space-
|
|
1104
|
+
.bp_card_module_card--c61ad[data-modern=true]{
|
|
1105
|
+
--bp-card-dropshadow-1:var(--dropshadow-1);
|
|
1106
|
+
--bp-card-dropshadow-3:var(--dropshadow-3);
|
|
1107
|
+
--card-radius:var(--bp-radius-10);
|
|
1108
|
+
--card-padding:var(--bp-space-060);
|
|
1109
|
+
--card-background:var(--bp-surface-card-surface);
|
|
1110
|
+
--card-border:var(--bp-border-01) solid var(--bp-border-card-border);
|
|
1111
|
+
--card-dropshadow-1:var(--bp-card-dropshadow-1);
|
|
1112
|
+
--card-dropshadow-3:var(--bp-card-dropshadow-3);
|
|
1109
1113
|
}
|
|
1110
|
-
|
|
1111
|
-
|
|
1114
|
+
|
|
1115
|
+
.bp_card_module_card--c61ad[data-modern=false]{
|
|
1116
|
+
--card-padding:var(--space-4);
|
|
1117
|
+
--card-background:var(--surface-card-surface);
|
|
1118
|
+
--card-border:var(--border-1) solid var(--border-card-border);
|
|
1119
|
+
--card-radius:var(--radius-4);
|
|
1120
|
+
--card-dropshadow-1:var(--dropshadow-1);
|
|
1121
|
+
--card-dropshadow-3:var(--dropshadow-3);
|
|
1112
1122
|
}
|
|
1113
|
-
|
|
1114
|
-
|
|
1123
|
+
|
|
1124
|
+
.bp_card_module_card--c61ad{
|
|
1125
|
+
background:var(--card-background);
|
|
1126
|
+
border:var(--card-border);
|
|
1127
|
+
border-radius:var(--card-radius);
|
|
1128
|
+
padding:var(--card-padding);
|
|
1129
|
+
}
|
|
1130
|
+
.bp_card_module_card--c61ad.bp_card_module_dropshadow-1--c61ad{
|
|
1131
|
+
box-shadow:var(--card-dropshadow-1);
|
|
1132
|
+
}
|
|
1133
|
+
.bp_card_module_card--c61ad.bp_card_module_dropshadow-3--c61ad{
|
|
1134
|
+
box-shadow:var(--card-dropshadow-3);
|
|
1115
1135
|
}
|
|
1116
1136
|
|
|
1117
1137
|
.bp_card_tooltip_module_content--efa88{
|
|
@@ -1747,76 +1767,145 @@
|
|
|
1747
1767
|
flex-grow:0;
|
|
1748
1768
|
flex-shrink:0;
|
|
1749
1769
|
}
|
|
1770
|
+
.bp_labelable_module_required--25dbc{
|
|
1771
|
+
align-items:center;
|
|
1772
|
+
display:inline-flex;
|
|
1773
|
+
gap:var(--space-1);
|
|
1774
|
+
}
|
|
1775
|
+
.bp_labelable_module_required--25dbc::before{
|
|
1776
|
+
color:var(--icon-icon-required-on-light);
|
|
1777
|
+
content:"*";
|
|
1778
|
+
font-family:monospace;
|
|
1779
|
+
transform:scale(1.2);
|
|
1780
|
+
}
|
|
1750
1781
|
|
|
1751
|
-
.bp_text_area_autosize_module_textArea--
|
|
1752
|
-
|
|
1782
|
+
.bp_text_area_autosize_module_textArea--4fa6a[data-modern=false]{
|
|
1783
|
+
--text-area-text-color:var(--text-text-on-light);
|
|
1784
|
+
--text-area-inner-shadow:var(--innershadow-1);
|
|
1785
|
+
--text-area-background-color:var(--surface-input-surface);
|
|
1786
|
+
--text-area-padding-inline:var(--space-3);
|
|
1787
|
+
--text-area-padding-block:0.625rem;
|
|
1788
|
+
--text-area-placeholder-color:var(--text-text-on-light-secondary);
|
|
1789
|
+
--text-area-error-background-color:var(--surface-input-surface-error);
|
|
1790
|
+
--text-area-error-background-focus:var(--surface-input-surface-focus);
|
|
1791
|
+
--text-area-error-background-hover:var(--surface-input-surface-hover);
|
|
1792
|
+
--text-area-icon-padding:1.875rem;
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
.bp_text_area_autosize_module_textArea--4fa6a[data-modern=true]{
|
|
1796
|
+
--text-area-inner-shadow:var(--innershadow-1);
|
|
1797
|
+
--text-area-text-color:var(--bp-text-text-on-light);
|
|
1798
|
+
--text-area-background-color:var(--bp-surface-input-surface);
|
|
1799
|
+
--text-area-padding-inline:var(--bp-size-030);
|
|
1800
|
+
--text-area-padding-block:0.625rem;
|
|
1801
|
+
--text-area-placeholder-color:var(--bp-text-text-on-light-secondary);
|
|
1802
|
+
--text-area-error-background-color:var(--bp-surface-input-surface-error);
|
|
1803
|
+
--text-area-error-background-focus:var(--bp-surface-input-surface-focus);
|
|
1804
|
+
--text-area-error-background-hover:var(--bp-surface-input-surface-hover);
|
|
1805
|
+
--text-area-icon-padding:1.875rem;
|
|
1806
|
+
}
|
|
1807
|
+
|
|
1808
|
+
.bp_text_area_autosize_module_textArea--4fa6a{
|
|
1809
|
+
background:var(--text-area-background-color);
|
|
1753
1810
|
border:none;
|
|
1754
|
-
box-shadow:var(--
|
|
1755
|
-
color:var(--text-text-
|
|
1811
|
+
box-shadow:var(--text-area-inner-shadow);
|
|
1812
|
+
color:var(--text-area-text-color);
|
|
1756
1813
|
font-family:var(--body-default-font-family);
|
|
1757
1814
|
font-size:var(--body-default-font-size);
|
|
1758
1815
|
font-weight:var(--body-default-font-weight);
|
|
1759
1816
|
letter-spacing:var(--body-default-letter-spacing);
|
|
1760
1817
|
line-height:var(--body-default-line-height);
|
|
1761
1818
|
margin:0;
|
|
1762
|
-
padding-block
|
|
1763
|
-
padding-inline:var(--
|
|
1819
|
+
padding-block:var(--text-area-padding-block);
|
|
1820
|
+
padding-inline:var(--text-area-padding-inline);
|
|
1764
1821
|
resize:none;
|
|
1765
1822
|
-webkit-text-decoration:var(--body-default-text-decoration);
|
|
1766
1823
|
text-decoration:var(--body-default-text-decoration);
|
|
1767
1824
|
text-transform:var(--body-default-text-case);
|
|
1768
1825
|
width:100%;
|
|
1769
1826
|
}
|
|
1770
|
-
.bp_text_area_autosize_module_textArea--
|
|
1771
|
-
color:var(--text-
|
|
1827
|
+
.bp_text_area_autosize_module_textArea--4fa6a::placeholder{
|
|
1828
|
+
color:var(--text-area-placeholder-color);
|
|
1772
1829
|
opacity:1;
|
|
1773
1830
|
}
|
|
1774
|
-
.bp_text_area_autosize_module_textArea--
|
|
1775
|
-
background:var(--
|
|
1831
|
+
.bp_text_area_autosize_module_textArea--4fa6a.bp_text_area_autosize_module_error--4fa6a{
|
|
1832
|
+
background:var(--text-area-error-background-color);
|
|
1776
1833
|
outline:0;
|
|
1777
1834
|
}
|
|
1778
|
-
.bp_text_area_autosize_module_textArea--
|
|
1835
|
+
.bp_text_area_autosize_module_textArea--4fa6a:focus{
|
|
1779
1836
|
border:none;
|
|
1780
1837
|
}
|
|
1781
|
-
.bp_text_area_autosize_module_textArea--
|
|
1782
|
-
box-shadow:var(--
|
|
1838
|
+
.bp_text_area_autosize_module_textArea--4fa6a:hover{
|
|
1839
|
+
box-shadow:var(--text-area-inner-shadow);
|
|
1783
1840
|
}
|
|
1784
|
-
.bp_text_area_autosize_module_textArea--
|
|
1785
|
-
background:var(--
|
|
1841
|
+
.bp_text_area_autosize_module_textArea--4fa6a:focus-visible{
|
|
1842
|
+
background:var(--text-area-error-background-focus);
|
|
1786
1843
|
outline:0;
|
|
1787
1844
|
}
|
|
1788
|
-
.bp_text_area_autosize_module_textArea--
|
|
1789
|
-
background:var(--
|
|
1845
|
+
.bp_text_area_autosize_module_textArea--4fa6a:disabled{
|
|
1846
|
+
background:var(--text-area-background-color);
|
|
1790
1847
|
border:none;
|
|
1791
|
-
box-shadow:var(--
|
|
1792
|
-
color:var(--text-text-
|
|
1848
|
+
box-shadow:var(--text-area-inner-shadow);
|
|
1849
|
+
color:var(--text-area-text-color);
|
|
1793
1850
|
}
|
|
1794
|
-
.bp_text_area_autosize_module_textArea--
|
|
1795
|
-
background:var(--
|
|
1851
|
+
.bp_text_area_autosize_module_textArea--4fa6a:not(:disabled):not(:focus-visible):not(.bp_text_area_autosize_module_error--4fa6a):hover{
|
|
1852
|
+
background:var(--text-area-error-background-hover);
|
|
1796
1853
|
}
|
|
1797
|
-
.bp_text_area_autosize_module_textArea--
|
|
1798
|
-
padding-inline-end:
|
|
1854
|
+
.bp_text_area_autosize_module_textArea--4fa6a.bp_text_area_autosize_module_loading--4fa6a{
|
|
1855
|
+
padding-inline-end:var(--text-area-icon-padding);
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
.bp_text_area_autosize_module_loadingIndicator--4fa6a[data-modern=false]{
|
|
1859
|
+
--text-area-loading-indicator-width:var(--size-6);
|
|
1860
|
+
--text-area-loading-indicator-height:var(--size-6);
|
|
1799
1861
|
}
|
|
1800
1862
|
|
|
1801
|
-
.bp_text_area_autosize_module_loadingIndicator--
|
|
1863
|
+
.bp_text_area_autosize_module_loadingIndicator--4fa6a[data-modern=true]{
|
|
1864
|
+
--text-area-loading-indicator-width:var(--bp-size-060);
|
|
1865
|
+
--text-area-loading-indicator-height:var(--bp-size-060);
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
.bp_text_area_autosize_module_loadingIndicator--4fa6a{
|
|
1802
1869
|
bottom:.375rem;
|
|
1803
1870
|
display:inline-block;
|
|
1804
|
-
height:var(--
|
|
1871
|
+
height:var(--text-area-loading-indicator-height);
|
|
1805
1872
|
left:unset;
|
|
1806
1873
|
position:absolute;
|
|
1807
1874
|
right:0;
|
|
1808
|
-
width:var(--
|
|
1875
|
+
width:var(--text-area-loading-indicator-width);
|
|
1809
1876
|
}
|
|
1810
1877
|
|
|
1811
|
-
.bp_text_area_autosize_module_border--
|
|
1812
|
-
|
|
1813
|
-
|
|
1878
|
+
.bp_text_area_autosize_module_border--4fa6a[data-modern=false]{
|
|
1879
|
+
--text-area-radius:var(--radius-2);
|
|
1880
|
+
--text-area-border-width:var(--border-1);
|
|
1881
|
+
--text-area-shadow-color:var(--border-input-border);
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1884
|
+
.bp_text_area_autosize_module_border--4fa6a[data-modern=true]{
|
|
1885
|
+
--text-area-radius:var(--bp-radius-06);
|
|
1886
|
+
--text-area-border-width:var(--bp-border-01);
|
|
1887
|
+
--text-area-shadow-color:var(--bp-border-input-border);
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
.bp_text_area_autosize_module_border--4fa6a{
|
|
1891
|
+
border-radius:var(--text-area-radius);
|
|
1892
|
+
box-shadow:0 0 0 var(--text-area-border-width) var(--text-area-shadow-color);
|
|
1814
1893
|
display:flex;
|
|
1815
1894
|
overflow:hidden;
|
|
1816
1895
|
transform:translateZ(0);
|
|
1817
1896
|
}
|
|
1818
1897
|
|
|
1819
|
-
.bp_text_area_module_textAreaContainer--
|
|
1898
|
+
.bp_text_area_module_textAreaContainer--bf753[data-modern=false]{
|
|
1899
|
+
--text-area-container-row-gap:var(--space-2);
|
|
1900
|
+
--text-area-container-label-color:var(--text-text-on-light);
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
.bp_text_area_module_textAreaContainer--bf753[data-modern=true]{
|
|
1904
|
+
--text-area-container-row-gap:var(--bp-size-020);
|
|
1905
|
+
--text-area-container-label-color:var(--bp-text-text-on-light);
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1908
|
+
.bp_text_area_module_textAreaContainer--bf753{
|
|
1820
1909
|
display:flex;
|
|
1821
1910
|
flex-direction:column;
|
|
1822
1911
|
font-family:var(--body-default-font-family);
|
|
@@ -1829,8 +1918,8 @@
|
|
|
1829
1918
|
text-decoration:var(--body-default-text-decoration);
|
|
1830
1919
|
text-transform:var(--body-default-text-case);
|
|
1831
1920
|
}
|
|
1832
|
-
.bp_text_area_module_textAreaContainer--
|
|
1833
|
-
color:var(--text-
|
|
1921
|
+
.bp_text_area_module_textAreaContainer--bf753 .bp_text_area_module_label--bf753{
|
|
1922
|
+
color:var(--text-area-container-label-color);
|
|
1834
1923
|
flex:0 0 fit-content;
|
|
1835
1924
|
font-family:var(--body-default-bold-font-family);
|
|
1836
1925
|
font-size:var(--body-default-bold-font-size);
|
|
@@ -1843,25 +1932,14 @@
|
|
|
1843
1932
|
width:-moz-fit-content;
|
|
1844
1933
|
width:fit-content;
|
|
1845
1934
|
}
|
|
1846
|
-
.bp_text_area_module_textAreaContainer--
|
|
1847
|
-
margin-block-end:var(--
|
|
1935
|
+
.bp_text_area_module_textAreaContainer--bf753 .bp_text_area_module_label--bf753:not(.bp_text_area_module_hidden--bf753){
|
|
1936
|
+
margin-block-end:var(--text-area-container-row-gap);
|
|
1848
1937
|
}
|
|
1849
|
-
.bp_text_area_module_textAreaContainer--
|
|
1938
|
+
.bp_text_area_module_textAreaContainer--bf753.bp_text_area_module_disabled--bf753{
|
|
1850
1939
|
opacity:60%;
|
|
1851
1940
|
}
|
|
1852
|
-
.bp_text_area_module_textAreaContainer--
|
|
1853
|
-
margin-block-start:var(--
|
|
1854
|
-
}
|
|
1855
|
-
.bp_labelable_module_required--25dbc{
|
|
1856
|
-
align-items:center;
|
|
1857
|
-
display:inline-flex;
|
|
1858
|
-
gap:var(--space-1);
|
|
1859
|
-
}
|
|
1860
|
-
.bp_labelable_module_required--25dbc::before{
|
|
1861
|
-
color:var(--icon-icon-required-on-light);
|
|
1862
|
-
content:"*";
|
|
1863
|
-
font-family:monospace;
|
|
1864
|
-
transform:scale(1.2);
|
|
1941
|
+
.bp_text_area_module_textAreaContainer--bf753 .bp_text_area_module_inlineError--bf753{
|
|
1942
|
+
margin-block-start:var(--text-area-container-row-gap);
|
|
1865
1943
|
}
|
|
1866
1944
|
|
|
1867
1945
|
.bp_combobox_module_container--d598b{
|
|
@@ -3,6 +3,7 @@ import { BorderInputBorderHover, Border1, BorderInputBorderFocus, Border2, Borde
|
|
|
3
3
|
import clsx from 'clsx';
|
|
4
4
|
import { forwardRef, useRef, useState, useCallback, useEffect } from 'react';
|
|
5
5
|
import { flushSync } from 'react-dom';
|
|
6
|
+
import { useBlueprintModernization } from '../../blueprint-modernization-context/useBlueprintModernization.js';
|
|
6
7
|
import { LoadingIndicator } from '../../loading-indicator/loading-indicator.js';
|
|
7
8
|
import { debounce } from '../../utils/debounce.js';
|
|
8
9
|
import { ownerWindow } from '../../utils/ownerWindow.js';
|
|
@@ -62,6 +63,9 @@ const TextAreaAutosize = /*#__PURE__*/forwardRef(function TextAreaAutosize(props
|
|
|
62
63
|
onBlur,
|
|
63
64
|
...rest
|
|
64
65
|
} = props;
|
|
66
|
+
const {
|
|
67
|
+
enableModernizedComponents
|
|
68
|
+
} = useBlueprintModernization();
|
|
65
69
|
const {
|
|
66
70
|
current: isControlled
|
|
67
71
|
} = useRef(value != null);
|
|
@@ -274,6 +278,7 @@ const TextAreaAutosize = /*#__PURE__*/forwardRef(function TextAreaAutosize(props
|
|
|
274
278
|
const shouldCompensateScrollbar = !state.overflow && !isScrollbarVisible && (hasError || isLoading);
|
|
275
279
|
return jsxs("div", {
|
|
276
280
|
className: styles.border,
|
|
281
|
+
"data-modern": enableModernizedComponents,
|
|
277
282
|
onMouseEnter: handleHover,
|
|
278
283
|
onMouseLeave: handleOnMouseOut,
|
|
279
284
|
style: borderInlineStyle,
|
|
@@ -281,6 +286,7 @@ const TextAreaAutosize = /*#__PURE__*/forwardRef(function TextAreaAutosize(props
|
|
|
281
286
|
...rest,
|
|
282
287
|
ref: handleRef,
|
|
283
288
|
className: classNames,
|
|
289
|
+
"data-modern": enableModernizedComponents,
|
|
284
290
|
onBlur: handleBlur,
|
|
285
291
|
onChange: handleChange,
|
|
286
292
|
onFocus: handleFocus,
|
|
@@ -311,6 +317,7 @@ const TextAreaAutosize = /*#__PURE__*/forwardRef(function TextAreaAutosize(props
|
|
|
311
317
|
}), isLoading && jsx(LoadingIndicator, {
|
|
312
318
|
"aria-label": loadingAriaLabel,
|
|
313
319
|
className: styles.loadingIndicator,
|
|
320
|
+
"data-modern": enableModernizedComponents,
|
|
314
321
|
onClick: focusTextArea,
|
|
315
322
|
style: !state.overflow ? {
|
|
316
323
|
right: '0.75rem'
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import '../../index.css';
|
|
2
|
-
var styles = {"textArea":"bp_text_area_autosize_module_textArea--
|
|
2
|
+
var styles = {"textArea":"bp_text_area_autosize_module_textArea--4fa6a","error":"bp_text_area_autosize_module_error--4fa6a","loading":"bp_text_area_autosize_module_loading--4fa6a","loadingIndicator":"bp_text_area_autosize_module_loadingIndicator--4fa6a","border":"bp_text_area_autosize_module_border--4fa6a"};
|
|
3
3
|
|
|
4
4
|
export { styles as default };
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
2
|
import clsx from 'clsx';
|
|
3
3
|
import { forwardRef } from 'react';
|
|
4
|
+
import { useBlueprintModernization } from '../blueprint-modernization-context/useBlueprintModernization.js';
|
|
4
5
|
import { InlineError } from '../primitives/inline-error/inline-error.js';
|
|
6
|
+
import { useLabelable } from '../util-components/labelable/useLabelable.js';
|
|
5
7
|
import { useUniqueId } from '../utils/useUniqueId.js';
|
|
6
8
|
import { TextAreaAutosize } from './text-area-autosize/text-area-autosize.js';
|
|
7
9
|
import styles from './text-area.module.js';
|
|
8
|
-
import { useLabelable } from '../util-components/labelable/useLabelable.js';
|
|
9
10
|
|
|
10
11
|
const TextArea = /*#__PURE__*/forwardRef((props, forwardedRef) => {
|
|
11
12
|
const {
|
|
@@ -20,6 +21,9 @@ const TextArea = /*#__PURE__*/forwardRef((props, forwardedRef) => {
|
|
|
20
21
|
maxRows,
|
|
21
22
|
...rest
|
|
22
23
|
} = props;
|
|
24
|
+
const {
|
|
25
|
+
enableModernizedComponents
|
|
26
|
+
} = useBlueprintModernization();
|
|
23
27
|
const textAreaId = useUniqueId('text-area-');
|
|
24
28
|
const inlineErrorId = useUniqueId('inline-error-');
|
|
25
29
|
const hasError = !!error && !disabled;
|
|
@@ -32,6 +36,7 @@ const TextArea = /*#__PURE__*/forwardRef((props, forwardedRef) => {
|
|
|
32
36
|
[styles.disabled]: disabled,
|
|
33
37
|
[styles.error]: hasError
|
|
34
38
|
}, className),
|
|
39
|
+
"data-modern": enableModernizedComponents,
|
|
35
40
|
children: [jsx(Label, {
|
|
36
41
|
className: clsx([styles.label], {
|
|
37
42
|
[styles.hidden]: hideLabel
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import '../index.css';
|
|
2
|
-
var styles = {"textAreaContainer":"bp_text_area_module_textAreaContainer--
|
|
2
|
+
var styles = {"textAreaContainer":"bp_text_area_module_textAreaContainer--bf753","label":"bp_text_area_module_label--bf753","hidden":"bp_text_area_module_hidden--bf753","disabled":"bp_text_area_module_disabled--bf753","inlineError":"bp_text_area_module_inlineError--bf753"};
|
|
3
3
|
|
|
4
4
|
export { styles as default };
|