Skip to content

Commit 92797a8

Browse files
author
ts-tech-repo
authored
Merge pull request #2 from ts-tech-repo/master-bootstrap
Bootstrap version change
2 parents ebaeca7 + bb7908b commit 92797a8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+3122
-292
lines changed

package-lock.json

Lines changed: 3052 additions & 227 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"@fortawesome/react-fontawesome": "^0.2.0",
3636
"@redux-beacon/segment": "^1.1.0",
3737
"@reduxjs/toolkit": "^1.6.1",
38+
"@testing-library/dom": "^10.4.0",
3839
"@testing-library/user-event": "^14.0.0",
3940
"@zip.js/zip.js": "^2.4.6",
4041
"axios": "^0.27.0",
@@ -49,8 +50,10 @@
4950
"font-awesome": "4.7.0",
5051
"history": "5.3.0",
5152
"html-react-parser": "^1.3.0",
53+
"jquery": "^3.7.1",
5254
"lodash": "^4.17.21",
5355
"moment": "^2.29.3",
56+
"popper.js": "^1.16.1",
5457
"prop-types": "15.8.1",
5558
"query-string": "7.1.3",
5659
"react": "^17.0.2",
@@ -69,6 +72,8 @@
6972
"redux-thunk": "2.4.2",
7073
"regenerator-runtime": "^0.14.0",
7174
"reselect": "^4.0.0",
75+
"ts-paragon": "^20.18.13",
76+
"typescript": "^4.9.5",
7277
"util": "^0.12.4",
7378
"whatwg-fetch": "^3.6.2"
7479
},

src/App.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// frontend-app-*/src/index.scss
22
@import "~@edx/brand/paragon/fonts";
33
@import "~@edx/brand/paragon/variables";
4-
@import "~@edx/paragon/scss/core/core";
4+
@import "~ts-paragon/styles/scss/core/core";
55
@import "~@edx/brand/paragon/overrides";
66

77
$fa-font-path: "~font-awesome/fonts";

src/components/ConfirmModal.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33

4-
import { AlertModal, ActionRow, Button } from '@edx/paragon';
4+
import { AlertModal, ActionRow, Button } from 'ts-paragon';
55
import { nullMethod } from 'hooks';
66

77
export const ConfirmModal = ({

src/components/DemoAlert/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
ActionRow,
77
AlertModal,
88
Button,
9-
} from '@edx/paragon';
9+
} from 'ts-paragon';
1010

1111
import messages from './messages';
1212

src/components/FilePreview/Banners/ErrorBanner.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33

4-
import { Alert, Button } from '@edx/paragon';
5-
import { Info } from '@edx/paragon/icons';
4+
import { Alert, Button } from 'ts-paragon';
5+
import { Info } from 'ts-paragon/icons';
66
import { FormattedMessage } from '@edx/frontend-platform/i18n';
77

88
const messageShape = PropTypes.shape({

src/components/FilePreview/Banners/LoadingBanner.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22

3-
import { Alert, Spinner } from '@edx/paragon';
3+
import { Alert, Spinner } from 'ts-paragon';
44

55
export const LoadingBanner = () => (
66
<Alert variant="info">

src/components/FilePreview/BaseRenderers/PDFRenderer.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import PropTypes from 'prop-types';
44
import { pdfjs, Document, Page } from 'react-pdf';
55
import {
66
Icon, Form, ActionRow, IconButton,
7-
} from '@edx/paragon';
8-
import { ChevronLeft, ChevronRight } from '@edx/paragon/icons';
7+
} from 'ts-paragon';
8+
import { ChevronLeft, ChevronRight } from 'ts-paragon/icons';
99
import pdfjsWorker from 'react-pdf/dist/esm/pdf.worker.entry';
1010

1111
import 'react-pdf/dist/esm/Page/AnnotationLayer.css';

src/components/FilePreview/FileCard.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import PropTypes from 'prop-types';
33

4-
import { Card, Collapsible } from '@edx/paragon';
4+
import { Card, Collapsible } from 'ts-paragon';
55
import FilePopoverContent from 'components/FilePopoverContent';
66
import FileInfo from './FileInfo';
77

src/components/FilePreview/FileCard.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import "@edx/paragon/scss/core/core";
1+
@import "ts-paragon/styles/scss/core/core";
22

33
.file-card {
44
margin: map-get($spacers, 1) 0;

0 commit comments

Comments
 (0)