jrs-react 1.2.10 → 1.2.12
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/build/index.es.js +152 -91
- package/build/index.js +152 -91
- package/package.json +1 -1
- package/src/components/JRInput/JRButton.jsx +2 -0
- package/src/components/JRWindow/TitleBar.jsx +3 -3
package/package.json
CHANGED
|
@@ -150,11 +150,11 @@ export default class TitleBar extends React.Component{
|
|
|
150
150
|
>
|
|
151
151
|
<FreeType tag='div' config={this.props.title??''} me={this.props.window} className={'title'}/>
|
|
152
152
|
<nav>
|
|
153
|
-
<JRButton />
|
|
154
|
-
<JRButton />
|
|
153
|
+
<JRButton icon={<IconMinus />}/>
|
|
154
|
+
<JRButton icon={<IconSquare />}/>
|
|
155
155
|
{
|
|
156
156
|
this.props.window.props.setOpen
|
|
157
|
-
?<JRButton
|
|
157
|
+
?<JRButton icon={<IconX />}
|
|
158
158
|
className={'danger'}
|
|
159
159
|
onClick={()=>{
|
|
160
160
|
this.props.window.props.setOpen(false)
|