plataforma-fundacao-componentes 2.25.3 → 2.25.5
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/components/textEditor/components/textEditorHeaderButton/TextEditorHeaderButton.d.ts +1 -2
- package/dist/components/title/Title.d.ts +6 -2
- package/dist/components/title/Title.stories.d.ts +44 -22
- package/dist/index.css +149 -143
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +7 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -11181,7 +11181,7 @@ TextEditorColorPicker.defaultProps = {
|
|
|
11181
11181
|
|
|
11182
11182
|
var rootClassName$2B = 'text-editor-header-button';
|
|
11183
11183
|
function TextEditorHeaderButton(props) {
|
|
11184
|
-
return /*#__PURE__*/React
|
|
11184
|
+
return /*#__PURE__*/React.createElement("button", {
|
|
11185
11185
|
className: getMergedClassNames([rootClassName$2B, props.active ? 'active' : '']),
|
|
11186
11186
|
onClick: props.onClick,
|
|
11187
11187
|
disabled: props.disabled
|
|
@@ -11621,7 +11621,11 @@ TextEditor.defaultProps = {
|
|
|
11621
11621
|
var rootClassName$2F = 'component-title';
|
|
11622
11622
|
function Title(props) {
|
|
11623
11623
|
return React$1.createElement("div", {
|
|
11624
|
-
className: rootClassName$2F
|
|
11624
|
+
className: getMergedClassNames([rootClassName$2F, props.hideRightElementXS ? 'hide-right-xs' : '']),
|
|
11625
|
+
style: {
|
|
11626
|
+
alignItems: props.align,
|
|
11627
|
+
flexWrap: props.flexWrap
|
|
11628
|
+
}
|
|
11625
11629
|
}, React$1.createElement("div", {
|
|
11626
11630
|
className: rootClassName$2F + "-wrapper"
|
|
11627
11631
|
}, props.showBackButton ? React$1.createElement("div", {
|
|
@@ -11630,7 +11634,7 @@ function Title(props) {
|
|
|
11630
11634
|
icon: React$1.createElement(ArrowLeftIcon, null),
|
|
11631
11635
|
onClick: props.onBackClick
|
|
11632
11636
|
})) : undefined, React$1.createElement("div", {
|
|
11633
|
-
className: getMergedClassNames([rootClassName$2F + "-text", props.
|
|
11637
|
+
className: getMergedClassNames([rootClassName$2F + "-text", props.oneLineTitle ? 'one-line-title' : ''])
|
|
11634
11638
|
}, props.children)), props.rightElement ? React$1.createElement("div", {
|
|
11635
11639
|
className: rootClassName$2F + "-right-element"
|
|
11636
11640
|
}, props.rightElement) : undefined);
|