@sikka/hawa 0.1.50 → 0.1.52
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/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/layout/AppLayout.tsx +1 -1
package/dist/index.js
CHANGED
|
@@ -7676,7 +7676,7 @@ var AppLayout = function(_param) {
|
|
|
7676
7676
|
d: "M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z",
|
|
7677
7677
|
clipRule: "evenodd"
|
|
7678
7678
|
})))) : null)), /* @__PURE__ */ import_react62.default.createElement("div", {
|
|
7679
|
-
className: "fixed overflow-y-auto",
|
|
7679
|
+
className: "fixed overflow-y-auto transition-all",
|
|
7680
7680
|
style: isRTL ? {
|
|
7681
7681
|
height: "calc(100% - ".concat(props.topBar ? "56" : "0", "px)"),
|
|
7682
7682
|
width: "calc(100% - ".concat(drawerSizeCondition, "px)"),
|
package/dist/index.mjs
CHANGED
|
@@ -7750,7 +7750,7 @@ var AppLayout = ({
|
|
|
7750
7750
|
), /* @__PURE__ */ React75.createElement(
|
|
7751
7751
|
"div",
|
|
7752
7752
|
{
|
|
7753
|
-
className: "fixed overflow-y-auto",
|
|
7753
|
+
className: "fixed overflow-y-auto transition-all",
|
|
7754
7754
|
style: isRTL ? {
|
|
7755
7755
|
height: `calc(100% - ${props.topBar ? "56" : "0"}px)`,
|
|
7756
7756
|
width: `calc(100% - ${drawerSizeCondition}px)`,
|
package/package.json
CHANGED
package/src/layout/AppLayout.tsx
CHANGED
|
@@ -424,7 +424,7 @@ export const AppLayout: React.FunctionComponent<AppLayoutTypes> = ({
|
|
|
424
424
|
* ----------------------------------------------------------------------------------------------------
|
|
425
425
|
*/}
|
|
426
426
|
<div
|
|
427
|
-
className="fixed overflow-y-auto"
|
|
427
|
+
className="fixed overflow-y-auto transition-all"
|
|
428
428
|
style={
|
|
429
429
|
isRTL
|
|
430
430
|
? {
|