Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion react/components-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
],
"dependencies": {
"@egovernments/digit-ui-css": "1.2.176",
"@egovernments/digit-ui-libraries": "1.7.10",
"@egovernments/digit-ui-libraries": "1.8.1-beta.1",

"@egovernments/digit-ui-svg-components": "0.0.8",
"@googlemaps/js-api-loader": "1.13.10",
Expand Down
2 changes: 1 addition & 1 deletion react/components-core/src/atoms/BodyContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from "prop-types";

const BodyContainer = (props) => {
return (
<div className={`digit-body ${props?.className ? props?.className : ""}`} style={props?.style}>
<div className={`body-container ${props?.className ? props?.className : ""}`} style={props?.style}>
{props.children}
</div>
);
Expand Down
4 changes: 2 additions & 2 deletions react/components-core/src/hoc/Modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ const Modal = ({
style={popupModuleActionBarStyles}
>
{actionCancelLabel ? (
<Button variation="digit-action-cancel" theme="border" label={actionCancelLabel} onClick={actionCancelOnSubmit} style={style} />
<Button textStyles={{width:"100%"}} variation="digit-action-cancel" theme="border" label={actionCancelLabel} onClick={actionCancelOnSubmit} style={style} />
) : null}
{!hideSubmit ? (
<Button label={actionSaveLabel} onClick={actionSaveOnSubmit} formId={formId} isDisabled={isDisabled} style={style} />
<Button textStyles={{width:"100%"}} label={actionSaveLabel} onClick={actionSaveOnSubmit} formId={formId} isDisabled={isDisabled} style={style} />
) : null}
</div>
</div>
Expand Down
5 changes: 0 additions & 5 deletions react/example/.babelrc

This file was deleted.

333 changes: 0 additions & 333 deletions react/example/package-lock.json

This file was deleted.

6 changes: 3 additions & 3 deletions react/example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
},
"dependencies": {
"@egovernments/digit-ui-components-core": "0.0.1",
"@egovernments/digit-ui-libraries": "1.7.10",
"@egovernments/digit-ui-libraries": "1.8.1-beta.1",
"@egovernments/digit-ui-module-core": "1.8.1-beta.6",
"@egovernments/digit-ui-module-common": "1.7.10",
"@egovernments/digit-ui-module-core": "1.7.10",
"@egovernments/digit-ui-module-project": "0.3.4",
"@egovernments/digit-ui-module-sample": "0.0.1",
"@egovernments/digit-ui-react-components": "1.7.10",
"@egovernments/digit-ui-react-components": "1.8.1-beta.4",
"@egovernments/digit-ui-svg-components": "0.0.8",
"http-proxy-middleware": "^1.0.5",
"react": "17.0.2",
Expand Down
2 changes: 1 addition & 1 deletion react/example/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<!-- <link rel="stylesheet" href="https://unpkg.com/@egovernments/digit-ui-css/dist/index.css"/> -->
<!-- <script src="https://s3.ap-south-1.amazonaws.com/egov-dev-assets/globalConfigs.js"></script> -->
<script src="%REACT_APP_GLOBAL%"></script>
<!-- <script src="%REACT_APP_GLOBAL%"></script> -->

</head>

Expand Down
Loading