react-dialogger 1.1.5 → 1.1.7
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/DialogBase.js +1 -1
- package/package.json +5 -2
- package/styles/dialog.css +3 -1
package/components/DialogBase.js
CHANGED
@@ -419,7 +419,7 @@ var DialogBase = /** @class */ (function (_super) {
|
|
419
419
|
inProcess: _this.isInProcess()
|
420
420
|
});
|
421
421
|
}
|
422
|
-
console.log('FooterSlot_props_Y', footerProps, staticProps);
|
422
|
+
console.log('FooterSlot_props_Y', footerProps, staticProps, 'V6 ya hazirlik');
|
423
423
|
return React.createElement("div", { className: 'dialog-footer', style: (_c = (_b = _this._dialogOptions.base) === null || _b === void 0 ? void 0 : _b.footer) === null || _c === void 0 ? void 0 : _c.style },
|
424
424
|
React.createElement("div", null,
|
425
425
|
React.createElement(WithHeaderFooterContext, __assign({}, staticProps, { dialog: _this }), _this._dialogOptions.slot.footer ?
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "react-dialogger",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.7",
|
4
4
|
"description": "This package is a continuation of the react-araci package. Due to an error, react-araci was removed, and it has been decided to continue under the new package name react-dialogger",
|
5
5
|
"main": "index.js",
|
6
6
|
"author": "Sueleyman Topaloglu",
|
@@ -20,6 +20,9 @@
|
|
20
20
|
"email": "developer@appinsource.eu"
|
21
21
|
}
|
22
22
|
],
|
23
|
+
"scripts": {
|
24
|
+
"pb": "npm version patch && npm publish"
|
25
|
+
},
|
23
26
|
"keywords": [
|
24
27
|
"react",
|
25
28
|
"dialog",
|
@@ -28,4 +31,4 @@
|
|
28
31
|
"ui",
|
29
32
|
"react-component"
|
30
33
|
]
|
31
|
-
}
|
34
|
+
}
|
package/styles/dialog.css
CHANGED
@@ -213,7 +213,7 @@
|
|
213
213
|
min-height: 64px;
|
214
214
|
padding: 10px 20px 10px 20px;
|
215
215
|
display: flex;
|
216
|
-
flex:
|
216
|
+
flex: 0;
|
217
217
|
justify-content: space-between;
|
218
218
|
align-items: center;
|
219
219
|
border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
|
@@ -244,6 +244,7 @@
|
|
244
244
|
}
|
245
245
|
.dialog-main .dialog-body {
|
246
246
|
display: flex;
|
247
|
+
flex: 1;
|
247
248
|
position: relative;
|
248
249
|
padding: 10px 20px 10px 20px;
|
249
250
|
overflow: auto;
|
@@ -270,6 +271,7 @@
|
|
270
271
|
column-gap: 10px;
|
271
272
|
align-items: center;
|
272
273
|
justify-content: space-between;
|
274
|
+
flex: 0;
|
273
275
|
}
|
274
276
|
.dialog-main .resizable-handle {
|
275
277
|
position: absolute;
|