datastake-daf 0.6.315 → 0.6.317
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/index.js +3 -2
- package/package.json +1 -1
- package/src/@daf/core/components/Charts/ColumnChart/ColumnChart.stories.jsx +3 -1
- package/src/@daf/core/components/Charts/ColumnChart/index.jsx +1 -1
- package/src/@daf/core/components/Charts/style.js +1 -1
- package/.env +0 -8
- package/.vscode/settings.json +0 -13
package/dist/components/index.js
CHANGED
|
@@ -49370,7 +49370,7 @@ function Modal(_ref) {
|
|
|
49370
49370
|
|
|
49371
49371
|
const Container$1 = dt.div`
|
|
49372
49372
|
height: ${props => props.height || '300px'};
|
|
49373
|
-
width: calc(100% - 48px);
|
|
49373
|
+
width: ${props => props.isPdf ? '1000px' : 'calc(100% - 48px)'};
|
|
49374
49374
|
`;
|
|
49375
49375
|
|
|
49376
49376
|
const _excluded$7 = ["data", "xFieldKey", "yFieldKey", "renderTooltipContent", "tooltipConfig", "animated", "isStack", "isGroup", "isPercentage", "seriesField", "formattedYAxis", "formattedXAxis", "color", "height", "t", "isPdf", "extraLegendConfig"];
|
|
@@ -49869,7 +49869,8 @@ function ColumnChart(_ref) {
|
|
|
49869
49869
|
className: "flex justify-content-center",
|
|
49870
49870
|
children: /*#__PURE__*/jsxRuntime.jsx(Container$1, {
|
|
49871
49871
|
ref: containerRef,
|
|
49872
|
-
height: height
|
|
49872
|
+
height: height,
|
|
49873
|
+
isPdf: isPdf
|
|
49873
49874
|
})
|
|
49874
49875
|
})
|
|
49875
49876
|
});
|
package/package.json
CHANGED
|
@@ -459,6 +459,8 @@ export const Pdf = {
|
|
|
459
459
|
shouldSeperateLegendName: true,
|
|
460
460
|
},
|
|
461
461
|
render: (args) => {
|
|
462
|
-
return <
|
|
462
|
+
return <Widget title="Pdf Column Chart" className={"with-border-header"}>
|
|
463
|
+
<ColumnChart {...args} />
|
|
464
|
+
</Widget>;
|
|
463
465
|
},
|
|
464
466
|
}
|
|
@@ -200,7 +200,7 @@ export default function ColumnChart({
|
|
|
200
200
|
return (
|
|
201
201
|
<div className="flex flex-1 flex-column justify-content-center">
|
|
202
202
|
<div className="flex justify-content-center">
|
|
203
|
-
<Container ref={containerRef} height={height}></Container>
|
|
203
|
+
<Container ref={containerRef} height={height} isPdf={isPdf}></Container>
|
|
204
204
|
</div>
|
|
205
205
|
</div>
|
|
206
206
|
);
|
package/.env
DELETED
package/.vscode/settings.json
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"cSpell.words": ["cukura"],
|
|
3
|
-
"files.autoSave": "afterDelay",
|
|
4
|
-
"editor.wordWrap": "on",
|
|
5
|
-
"editor.autoClosingBrackets": "always",
|
|
6
|
-
"editor.autoClosingComments": "always",
|
|
7
|
-
"editor.autoClosingQuotes": "always",
|
|
8
|
-
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
9
|
-
"editor.formatOnPaste": true,
|
|
10
|
-
"editor.formatOnSave": true,
|
|
11
|
-
"notebook.defaultFormatter": "esbenp.prettier-vscode",
|
|
12
|
-
"javascript.format.semicolons": "insert"
|
|
13
|
-
}
|