richie 2.25.0b2.dev96__py2.py3-none-any.whl → 2.25.0b2.dev98__py2.py3-none-any.whl
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.
Potentially problematic release.
This version of richie might be problematic. Click here for more details.
- frontend/jest/setup.ts +7 -0
- frontend/js/components/ContractFrame/AbstractContractFrame.spec.tsx +0 -6
- frontend/js/components/DjangoCMSTemplate/index.spec.tsx +2 -2
- frontend/js/components/Modal/index.spec.tsx +0 -6
- frontend/js/components/PurchaseButton/index.spec.tsx +0 -7
- frontend/js/components/SaleTunnel/index.spec.tsx +0 -7
- frontend/js/components/SignContractButton/index.omniscientOrders.spec.tsx +0 -6
- frontend/js/components/SignContractButton/index.spec.tsx +0 -6
- frontend/js/pages/DashboardContracts/index.spec.tsx +0 -7
- frontend/js/pages/DashboardOrderLayout/index.spec.tsx +0 -6
- frontend/js/pages/TeacherDashboardContractsLayout/TeacherDashboardContracts/index.spec.tsx +0 -6
- frontend/js/pages/TeacherDashboardContractsLayout/components/ContractActionsBar/index.spec.tsx +0 -6
- frontend/js/pages/TeacherDashboardContractsLayout/components/SignOrganizationContractButton/index.spec.tsx +0 -6
- frontend/js/widgets/Dashboard/components/DashboardItem/Contract/index.spec.tsx +0 -4
- frontend/js/widgets/Dashboard/components/DashboardItem/Enrollment/ProductCertificateFooter/index.spec.tsx +0 -7
- frontend/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrder.spec.tsx +0 -6
- frontend/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrderContract.spec.tsx +0 -6
- frontend/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrderContract.useUnionResource.cache.spec.tsx +0 -6
- frontend/js/widgets/Search/components/SearchFilterGroup/index.spec.tsx +0 -5
- frontend/js/widgets/Search/components/SearchFilterGroupModal/index.spec.tsx +0 -5
- frontend/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/index.spec.tsx +0 -7
- frontend/yarn.lock +3 -3
- {richie-2.25.0b2.dev96.dist-info → richie-2.25.0b2.dev98.dist-info}/METADATA +1 -1
- {richie-2.25.0b2.dev96.dist-info → richie-2.25.0b2.dev98.dist-info}/RECORD +28 -28
- {richie-2.25.0b2.dev96.dist-info → richie-2.25.0b2.dev98.dist-info}/LICENSE +0 -0
- {richie-2.25.0b2.dev96.dist-info → richie-2.25.0b2.dev98.dist-info}/WHEEL +0 -0
- {richie-2.25.0b2.dev96.dist-info → richie-2.25.0b2.dev98.dist-info}/top_level.txt +0 -0
- {richie-2.25.0b2.dev96.dist-info → richie-2.25.0b2.dev98.dist-info}/zip-safe +0 -0
frontend/jest/setup.ts
CHANGED
|
@@ -24,6 +24,13 @@ RESET_MODULE_EXCEPTIONS.forEach((moduleName) => {
|
|
|
24
24
|
});
|
|
25
25
|
});
|
|
26
26
|
|
|
27
|
+
beforeAll(() => {
|
|
28
|
+
// As dialog is rendered through a Portal, we have to add the DOM element in which the dialog will be rendered.
|
|
29
|
+
const modalExclude = document.createElement('div');
|
|
30
|
+
modalExclude.setAttribute('id', 'modal-exclude');
|
|
31
|
+
document.body.appendChild(modalExclude);
|
|
32
|
+
});
|
|
33
|
+
|
|
27
34
|
afterEach(() => {
|
|
28
35
|
FactoryConfig.resetUniqueStore();
|
|
29
36
|
});
|
|
@@ -42,12 +42,6 @@ describe('<AbstractContractFrame />', () => {
|
|
|
42
42
|
);
|
|
43
43
|
};
|
|
44
44
|
|
|
45
|
-
beforeAll(() => {
|
|
46
|
-
const modalExclude = document.createElement('div');
|
|
47
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
48
|
-
document.body.appendChild(modalExclude);
|
|
49
|
-
});
|
|
50
|
-
|
|
51
45
|
beforeEach(() => {
|
|
52
46
|
// SessionProvider api calls
|
|
53
47
|
fetchMock.get('https://joanie.endpoint/api/v1.0/addresses/', []);
|
|
@@ -27,7 +27,7 @@ describe('DjangoCMSTemplate', () => {
|
|
|
27
27
|
|
|
28
28
|
expect(initMock).not.toHaveBeenCalled();
|
|
29
29
|
render(<Wrapper />);
|
|
30
|
-
const expected = `<div><template class="cms-plugin cms-plugin-start plugin"></template>Hello world<template class="cms-plugin cms-plugin-end plugin"></template></div>`;
|
|
30
|
+
const expected = `<div id=\"modal-exclude\"></div><div><template class="cms-plugin cms-plugin-start plugin"></template>Hello world<template class="cms-plugin cms-plugin-end plugin"></template></div>`;
|
|
31
31
|
expect(document.body.innerHTML).toEqual(expected);
|
|
32
32
|
await waitFor(() => expect(initMock).toHaveBeenCalled());
|
|
33
33
|
});
|
|
@@ -40,7 +40,7 @@ describe('DjangoCMSTemplate', () => {
|
|
|
40
40
|
};
|
|
41
41
|
|
|
42
42
|
render(<Wrapper />);
|
|
43
|
-
const expected = `<div>Hello world</div>`;
|
|
43
|
+
const expected = `<div id=\"modal-exclude\"></div><div>Hello world</div>`;
|
|
44
44
|
expect(document.body.innerHTML).toEqual(expected);
|
|
45
45
|
});
|
|
46
46
|
});
|
|
@@ -3,12 +3,6 @@ import { IntlProvider } from 'react-intl';
|
|
|
3
3
|
import { Modal } from '.';
|
|
4
4
|
|
|
5
5
|
describe('<Modal />', () => {
|
|
6
|
-
beforeEach(() => {
|
|
7
|
-
const modalExclude = document.createElement('div');
|
|
8
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
9
|
-
document.body.appendChild(modalExclude);
|
|
10
|
-
});
|
|
11
|
-
|
|
12
6
|
it('merges custom classNames of type string with the default classes', () => {
|
|
13
7
|
render(
|
|
14
8
|
<IntlProvider locale="en">
|
|
@@ -28,13 +28,6 @@ jest.mock('utils/context', () => ({
|
|
|
28
28
|
}));
|
|
29
29
|
|
|
30
30
|
describe('PurchaseButton', () => {
|
|
31
|
-
beforeAll(() => {
|
|
32
|
-
// As dialog is rendered through a Portal, we have to add the DOM element in which the dialog will be rendered.
|
|
33
|
-
const modalExclude = document.createElement('div');
|
|
34
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
35
|
-
document.body.appendChild(modalExclude);
|
|
36
|
-
});
|
|
37
|
-
|
|
38
31
|
afterEach(() => {
|
|
39
32
|
fetchMock.restore();
|
|
40
33
|
});
|
|
@@ -36,13 +36,6 @@ jest.mock('utils/context', () => ({
|
|
|
36
36
|
}));
|
|
37
37
|
|
|
38
38
|
describe('SaleTunnel', () => {
|
|
39
|
-
beforeAll(() => {
|
|
40
|
-
// As dialog is rendered through a Portal, we have to add the DOM element in which the dialog will be rendered.
|
|
41
|
-
const modalExclude = document.createElement('div');
|
|
42
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
43
|
-
document.body.appendChild(modalExclude);
|
|
44
|
-
});
|
|
45
|
-
|
|
46
39
|
afterEach(() => {
|
|
47
40
|
fetchMock.restore();
|
|
48
41
|
});
|
|
@@ -40,12 +40,6 @@ describe('<SignContractButton/>', () => {
|
|
|
40
40
|
);
|
|
41
41
|
};
|
|
42
42
|
|
|
43
|
-
beforeAll(() => {
|
|
44
|
-
const modalExclude = document.createElement('div');
|
|
45
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
46
|
-
document.body.appendChild(modalExclude);
|
|
47
|
-
});
|
|
48
|
-
|
|
49
43
|
beforeEach(() => {
|
|
50
44
|
// JoanieSession api omniscient calls
|
|
51
45
|
fetchMock.get('https://joanie.endpoint/api/v1.0/addresses/', []);
|
|
@@ -39,12 +39,6 @@ interface FromContractTestData {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
describe('<SignContractButton/>', () => {
|
|
42
|
-
beforeAll(() => {
|
|
43
|
-
const modalExclude = document.createElement('div');
|
|
44
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
45
|
-
document.body.appendChild(modalExclude);
|
|
46
|
-
});
|
|
47
|
-
|
|
48
42
|
describe.each<FromOrderTestData | FromContractTestData>([
|
|
49
43
|
{
|
|
50
44
|
testCase: TestCase.FROM_ORDER_WITH_CONTRACT,
|
|
@@ -53,13 +53,6 @@ describe('<DashboardContract/>', () => {
|
|
|
53
53
|
</QueryClientProvider>
|
|
54
54
|
);
|
|
55
55
|
|
|
56
|
-
beforeAll(() => {
|
|
57
|
-
// As dialog is rendered through a Portal, we have to add the DOM element in which the dialog will be rendered.
|
|
58
|
-
const modalExclude = document.createElement('div');
|
|
59
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
60
|
-
document.body.appendChild(modalExclude);
|
|
61
|
-
});
|
|
62
|
-
|
|
63
56
|
beforeEach(() => {
|
|
64
57
|
fetchMock.get('https://joanie.endpoint/api/v1.0/addresses/', []);
|
|
65
58
|
fetchMock.get('https://joanie.endpoint/api/v1.0/credit-cards/', []);
|
|
@@ -33,12 +33,6 @@ describe('<DashboardOrderLayout />', () => {
|
|
|
33
33
|
);
|
|
34
34
|
};
|
|
35
35
|
|
|
36
|
-
beforeAll(() => {
|
|
37
|
-
const modalExclude = document.createElement('div');
|
|
38
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
39
|
-
document.body.appendChild(modalExclude);
|
|
40
|
-
});
|
|
41
|
-
|
|
42
36
|
beforeEach(() => {
|
|
43
37
|
fetchMock.get('https://joanie.endpoint/api/v1.0/addresses/', []);
|
|
44
38
|
fetchMock.get('https://joanie.endpoint/api/v1.0/credit-cards/', []);
|
|
@@ -53,12 +53,6 @@ const Wrapper = ({ path, initialEntry }: { path: string; initialEntry: string })
|
|
|
53
53
|
};
|
|
54
54
|
|
|
55
55
|
describe('pages/TeacherDashboardContracts', () => {
|
|
56
|
-
beforeAll(() => {
|
|
57
|
-
const modalExclude = document.createElement('div');
|
|
58
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
59
|
-
document.body.appendChild(modalExclude);
|
|
60
|
-
});
|
|
61
|
-
|
|
62
56
|
beforeEach(() => {
|
|
63
57
|
// Joanie providers calls
|
|
64
58
|
fetchMock.get('https://joanie.test/api/v1.0/orders/', []);
|
frontend/js/pages/TeacherDashboardContractsLayout/components/ContractActionsBar/index.spec.tsx
CHANGED
|
@@ -58,12 +58,6 @@ describe('TeacherDashboardContractsLayout/ContractActionsBar', () => {
|
|
|
58
58
|
);
|
|
59
59
|
};
|
|
60
60
|
|
|
61
|
-
beforeAll(() => {
|
|
62
|
-
const modalExclude = document.createElement('div');
|
|
63
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
64
|
-
document.body.appendChild(modalExclude);
|
|
65
|
-
});
|
|
66
|
-
|
|
67
61
|
beforeEach(() => {
|
|
68
62
|
// useTeacherContractsToSign mocked values
|
|
69
63
|
mockCanSignContracts = true;
|
|
@@ -29,12 +29,6 @@ describe('TeacherDashboardContractsLayout/SignOrganizationContractButton', () =>
|
|
|
29
29
|
);
|
|
30
30
|
};
|
|
31
31
|
|
|
32
|
-
beforeAll(() => {
|
|
33
|
-
const modalExclude = document.createElement('div');
|
|
34
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
35
|
-
document.body.appendChild(modalExclude);
|
|
36
|
-
});
|
|
37
|
-
|
|
38
32
|
afterEach(() => {
|
|
39
33
|
fetchMock.restore();
|
|
40
34
|
});
|
|
@@ -50,10 +50,6 @@ describe.each([
|
|
|
50
50
|
beforeAll(() => {
|
|
51
51
|
// eslint-disable-next-line compat/compat
|
|
52
52
|
URL.createObjectURL = jest.fn();
|
|
53
|
-
|
|
54
|
-
const modalExclude = document.createElement('div');
|
|
55
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
56
|
-
document.body.appendChild(modalExclude);
|
|
57
53
|
});
|
|
58
54
|
|
|
59
55
|
beforeEach(() => {
|
|
@@ -67,13 +67,6 @@ describe('<ProductCertificateFooter/>', () => {
|
|
|
67
67
|
let product: CertificateProduct;
|
|
68
68
|
let course: CourseLight;
|
|
69
69
|
|
|
70
|
-
beforeAll(() => {
|
|
71
|
-
// As dialog is rendered through a Portal, we have to add the DOM element in which the dialog will be rendered.
|
|
72
|
-
const modalExclude = document.createElement('div');
|
|
73
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
74
|
-
document.body.appendChild(modalExclude);
|
|
75
|
-
});
|
|
76
|
-
|
|
77
70
|
beforeEach(() => {
|
|
78
71
|
fetchMock.get('https://joanie.endpoint.test/api/v1.0/addresses/', []);
|
|
79
72
|
fetchMock.get('https://joanie.endpoint.test/api/v1.0/credit-cards/', []);
|
|
@@ -83,12 +83,6 @@ describe('<DashboardItemOrder/>', () => {
|
|
|
83
83
|
);
|
|
84
84
|
};
|
|
85
85
|
|
|
86
|
-
beforeAll(() => {
|
|
87
|
-
const modalExclude = document.createElement('div');
|
|
88
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
89
|
-
document.body.appendChild(modalExclude);
|
|
90
|
-
});
|
|
91
|
-
|
|
92
86
|
beforeEach(() => {
|
|
93
87
|
fetchMock.get('https://joanie.endpoint/api/v1.0/addresses/', []);
|
|
94
88
|
fetchMock.get('https://joanie.endpoint/api/v1.0/credit-cards/', []);
|
frontend/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrderContract.spec.tsx
CHANGED
|
@@ -55,12 +55,6 @@ describe('<DashboardItemOrder/> Contract', () => {
|
|
|
55
55
|
);
|
|
56
56
|
};
|
|
57
57
|
|
|
58
|
-
beforeAll(() => {
|
|
59
|
-
const modalExclude = document.createElement('div');
|
|
60
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
61
|
-
document.body.appendChild(modalExclude);
|
|
62
|
-
});
|
|
63
|
-
|
|
64
58
|
beforeEach(() => {
|
|
65
59
|
fetchMock.get('https://joanie.endpoint/api/v1.0/addresses/', []);
|
|
66
60
|
fetchMock.get('https://joanie.endpoint/api/v1.0/credit-cards/', []);
|
|
@@ -47,12 +47,6 @@ describe('<DashboardItemOrder/> Contract', () => {
|
|
|
47
47
|
);
|
|
48
48
|
};
|
|
49
49
|
|
|
50
|
-
beforeAll(() => {
|
|
51
|
-
const modalExclude = document.createElement('div');
|
|
52
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
53
|
-
document.body.appendChild(modalExclude);
|
|
54
|
-
});
|
|
55
|
-
|
|
56
50
|
beforeEach(() => {
|
|
57
51
|
jest.useFakeTimers();
|
|
58
52
|
jest.clearAllTimers();
|
|
@@ -53,11 +53,6 @@ describe('widgets/Search/components/SearchFilterGroup', () => {
|
|
|
53
53
|
};
|
|
54
54
|
|
|
55
55
|
beforeEach(jest.resetAllMocks);
|
|
56
|
-
beforeEach(() => {
|
|
57
|
-
const modalExclude = document.createElement('div');
|
|
58
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
59
|
-
document.body.appendChild(modalExclude);
|
|
60
|
-
});
|
|
61
56
|
|
|
62
57
|
it('renders the name of the filter with the values as SearchFilters', () => {
|
|
63
58
|
render(
|
|
@@ -63,11 +63,6 @@ describe('<SearchFilterGroupModal />', () => {
|
|
|
63
63
|
|
|
64
64
|
beforeEach(() => fetchMock.restore());
|
|
65
65
|
beforeEach(jest.resetAllMocks);
|
|
66
|
-
beforeEach(() => {
|
|
67
|
-
const modalExclude = document.createElement('div');
|
|
68
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
69
|
-
document.body.appendChild(modalExclude);
|
|
70
|
-
});
|
|
71
66
|
|
|
72
67
|
it('renders a button with a modal to search values for a given filter', async () => {
|
|
73
68
|
{
|
|
@@ -71,13 +71,6 @@ describe('CourseProductItem', () => {
|
|
|
71
71
|
style: 'currency',
|
|
72
72
|
}).format(price);
|
|
73
73
|
|
|
74
|
-
beforeAll(() => {
|
|
75
|
-
// As dialog is rendered through a Portal, we have to add the DOM element in which the dialog will be rendered.
|
|
76
|
-
const modalExclude = document.createElement('div');
|
|
77
|
-
modalExclude.setAttribute('id', 'modal-exclude');
|
|
78
|
-
document.body.appendChild(modalExclude);
|
|
79
|
-
});
|
|
80
|
-
|
|
81
74
|
beforeEach(() => {
|
|
82
75
|
// JoanieSessionProvider requests
|
|
83
76
|
fetchMock.get('https://joanie.test/api/v1.0/addresses/', []);
|
frontend/yarn.lock
CHANGED
|
@@ -9556,9 +9556,9 @@ invariant@^2.2.4:
|
|
|
9556
9556
|
loose-envify "^1.0.0"
|
|
9557
9557
|
|
|
9558
9558
|
ip@^2.0.0:
|
|
9559
|
-
version "2.0.
|
|
9560
|
-
resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.
|
|
9561
|
-
integrity sha512-
|
|
9559
|
+
version "2.0.1"
|
|
9560
|
+
resolved "https://registry.yarnpkg.com/ip/-/ip-2.0.1.tgz#e8f3595d33a3ea66490204234b77636965307105"
|
|
9561
|
+
integrity sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==
|
|
9562
9562
|
|
|
9563
9563
|
ipaddr.js@1.9.1:
|
|
9564
9564
|
version "1.9.1"
|
|
@@ -9,7 +9,7 @@ frontend/package.json,sha256=mO4hEj2ICBHkjwn5-_y4OfH_5f5eSVLsT4vL5Qz4nfI,5406
|
|
|
9
9
|
frontend/public-path.js,sha256=TQTr9lcq9EcreYMeZiIxQf8k8pGh6tCapaR_rFiBWl8,495
|
|
10
10
|
frontend/tsconfig.json,sha256=NBXGiOcybo0jPnR5KXBV4T1abBILoWTSRWGeRrxPxVM,629
|
|
11
11
|
frontend/webpack.config.js,sha256=0F1MxO7NxwrGaojhC404YZTQ99gy3c0Tdky-iNA65iQ,4209
|
|
12
|
-
frontend/yarn.lock,sha256=
|
|
12
|
+
frontend/yarn.lock,sha256=mnyMcwcJDakaTHVedjtFh76HKhU7xyyTqCaDrU8wSpQ,662740
|
|
13
13
|
frontend/.storybook/main.js,sha256=9aDho_iBA0iAsJpwjF36__7o1ZQFM0NYPq5dikZhcOI,840
|
|
14
14
|
frontend/.storybook/preview-body.html,sha256=fultknUR_VMBdIpBD4ipiwFO4EWZO1cuSOqzaCQaDqg,53
|
|
15
15
|
frontend/.storybook/preview-head.html,sha256=kJPtJjY7dbsi15yxwAWlbokekq2VpuLHmF-FtGZEvyo,74
|
|
@@ -29,7 +29,7 @@ frontend/i18n/locales/pt-PT.json,sha256=01gz1z8D4gy_A-dunKXjbJed4liqTU_UF00YM5pF
|
|
|
29
29
|
frontend/i18n/locales/ru-RU.json,sha256=NH1g2engTLnzB5uTSf6eveesyfvKlSZl71MSDNRtggE,83844
|
|
30
30
|
frontend/i18n/locales/vi-VN.json,sha256=VpAQVbjtkDmPzK_-QwtIeY7UJh8b2N5smZSSRaNT9jQ,81205
|
|
31
31
|
frontend/jest/resolver.js,sha256=4z7-wQkCnESJaYqydt6N6YWXt9NMpU4XnmU4yjYEZ-E,1537
|
|
32
|
-
frontend/jest/setup.ts,sha256=
|
|
32
|
+
frontend/jest/setup.ts,sha256=FhR8_2BexjwBAwGU6wMD6lmU6dVtGJ76D-_-mWH-XvY,1174
|
|
33
33
|
frontend/js/index.tsx,sha256=dGLR5CGfkrNUHoVeZaIpZSG3RiiZ-xeMHldid8_3pXY,5310
|
|
34
34
|
frontend/js/mockServiceWorker.js,sha256=BY7UoAMYNurVdR_7pjvJr28sweeSS1gnqKIpNSeYAQA,8196
|
|
35
35
|
frontend/js/settings.dev.dist.ts,sha256=ogD8HXCS-1GScZwc4tJA_QO9PR-45sIGFgrz8FYEgWk,112
|
|
@@ -81,7 +81,7 @@ frontend/js/components/Badge/index.tsx,sha256=VjbN3ijNtCOhQkR3Z5r0XbgD4pCLFpVMBL
|
|
|
81
81
|
frontend/js/components/Banner/index.spec.tsx,sha256=phIllm_buSpppMpXoxz6spGeh62tSi4MRZGEwLMixvY,1113
|
|
82
82
|
frontend/js/components/Banner/index.stories.tsx,sha256=6_8yv8_WLlca2W-gRF1xyrmVXWcYK587OxErRt-QtjQ,563
|
|
83
83
|
frontend/js/components/Banner/index.tsx,sha256=k9OL3fLXVsTWT0CKSYlih-1Ahh1iHsKe1MzdbaMIrjw,812
|
|
84
|
-
frontend/js/components/ContractFrame/AbstractContractFrame.spec.tsx,sha256=
|
|
84
|
+
frontend/js/components/ContractFrame/AbstractContractFrame.spec.tsx,sha256=l9fjaJ5STEFKy5mUA6AsyH_RSbsTorzwXqntMocNJW0,11993
|
|
85
85
|
frontend/js/components/ContractFrame/AbstractContractFrame.tsx,sha256=OkVwzsMKf1mtqRfVpbGCbZUGU4e0c8H-6pWEyWrdxoU,9255
|
|
86
86
|
frontend/js/components/ContractFrame/LearnerContractFrame.spec.tsx,sha256=iQVHJCN0jgJtDNfNo3ROBAE19TF9tDvfANmjDOYbOgY,4703
|
|
87
87
|
frontend/js/components/ContractFrame/LearnerContractFrame.tsx,sha256=tC18BtdzKWqE8GMO99ijKepN2v05emrlkhrfMLtdGyQ,1341
|
|
@@ -102,7 +102,7 @@ frontend/js/components/CourseGlimpseList/index.spec.tsx,sha256=brdHhBYRE2mA6Lgl7
|
|
|
102
102
|
frontend/js/components/CourseGlimpseList/index.stories.tsx,sha256=oO2bHuZlEnRH_0NJEyIUaetmCzoJKQurbMPuJXNZVYs,593
|
|
103
103
|
frontend/js/components/CourseGlimpseList/index.tsx,sha256=a6ocNzF6OJKYa25T-gKfGrMbzij3dIyQj3Ycx9IJ-Jo,2681
|
|
104
104
|
frontend/js/components/CourseGlimpseList/utils.ts,sha256=KtEIklf4VLNQJHKi0IQTc7LkBmAvbkqEiQuExk0XMho,549
|
|
105
|
-
frontend/js/components/DjangoCMSTemplate/index.spec.tsx,sha256
|
|
105
|
+
frontend/js/components/DjangoCMSTemplate/index.spec.tsx,sha256=ivRDRHeiRQ-4NJtGO5JeNpMOdi-9z_x_GB0oxBSpucM,1543
|
|
106
106
|
frontend/js/components/DjangoCMSTemplate/index.tsx,sha256=htAjYdk2N_7kn0SeRAZu2hsykiFDRDv-oy30vs2p9HU,1400
|
|
107
107
|
frontend/js/components/DownloadCertificateButton/index.tsx,sha256=LDCSyJtUNA21NtXUorxSeKw4FJ6tcuXW5Gss2EU8nc4,1671
|
|
108
108
|
frontend/js/components/DownloadContractButton/index.spec.tsx,sha256=6JIoZ4ep_joSmUmLONE_xHNogZax0A0m61GjdNSlFDU,5496
|
|
@@ -123,7 +123,7 @@ frontend/js/components/Icon/index.spec.tsx,sha256=8c4vDeXy369o96Flk4UujsO31ovHMY
|
|
|
123
123
|
frontend/js/components/Icon/index.stories.tsx,sha256=S-IeSi14f3xlt4gvrPKo5SljMO1SnwVMZVk16ELHU6c,2809
|
|
124
124
|
frontend/js/components/Icon/index.tsx,sha256=8rg00u3sfbGbKJ3OvhzVu3foUMDnykvIET6_Km3VhPE,2370
|
|
125
125
|
frontend/js/components/Modal/_styles.scss,sha256=5h-8Iirm_WOevg_L7LNJey2-CsVHL0TzMZiarhQderc,1574
|
|
126
|
-
frontend/js/components/Modal/index.spec.tsx,sha256=
|
|
126
|
+
frontend/js/components/Modal/index.spec.tsx,sha256=AAMUX5_vXEd_ia_4UJaVnm0PLZXnHDwDUWi5bPv3oGE,2753
|
|
127
127
|
frontend/js/components/Modal/index.stories.tsx,sha256=mD7qzbTnwmToN1-jxHEl_P-Zi9wiSER_ALB4LIvGnKY,915
|
|
128
128
|
frontend/js/components/Modal/index.tsx,sha256=uugQWU-i4QHdQwL31JFp-sZ-zN1BO2biIhEuba4CaKw,3011
|
|
129
129
|
frontend/js/components/Pagination/index.spec.tsx,sha256=AwsmPYQ2dGY9hIIejPxXBWxX3XdD1FP7pgyUN7haOe8,8621
|
|
@@ -137,7 +137,7 @@ frontend/js/components/PaymentButton/components/PaymentInterfaces/index.spec.tsx
|
|
|
137
137
|
frontend/js/components/PaymentButton/components/PaymentInterfaces/index.tsx,sha256=Tbu06nMUJcsGpvhH83YuMeQ88nMXCLBqR8559Jaca2Y,1407
|
|
138
138
|
frontend/js/components/PaymentButton/components/PaymentInterfaces/__mocks__/index.tsx,sha256=yOwib4Bq2QjtApflnscDHJUvEzcM5QmA0CYjbZOUJuk,708
|
|
139
139
|
frontend/js/components/PaymentButton/hooks/useTerms.tsx,sha256=ZFxB12tXbwZvntynEc0benEiPZZP3Npgqk4faYBKs9E,2317
|
|
140
|
-
frontend/js/components/PurchaseButton/index.spec.tsx,sha256=
|
|
140
|
+
frontend/js/components/PurchaseButton/index.spec.tsx,sha256=eUmOi_xLUESQxHc7SS6kYZp5gFxmfM-GlxtHhD2fZP4,12470
|
|
141
141
|
frontend/js/components/PurchaseButton/index.stories.tsx,sha256=3RpmgeAztFP7LDZjtEsfycFKRmcmpBdaUNwrzj5GJxc,410
|
|
142
142
|
frontend/js/components/PurchaseButton/index.tsx,sha256=jPN7j-7PWW8tKO128se7qAVt-99B81FAUQk8n_iEEcg,5590
|
|
143
143
|
frontend/js/components/PurchaseButton/styles.scss,sha256=UiQjhf_faL4HELXmNax8X7cZdUVtwV2yGYClCR8AzPE,191
|
|
@@ -147,7 +147,7 @@ frontend/js/components/RegisteredAddress/index.stories.tsx,sha256=zNbtZceN642ot0
|
|
|
147
147
|
frontend/js/components/RegisteredAddress/index.tsx,sha256=VwcclF1GY4BsulD99IAIWr0kbGqQyQVYfk-ng62DVXo,3883
|
|
148
148
|
frontend/js/components/SaleTunnel/_styles.scss,sha256=ojni3VvKsNq9Tbp17bOMN_qla--bS00TRxrl9d2Hby8,176
|
|
149
149
|
frontend/js/components/SaleTunnel/context.tsx,sha256=RLJRRW7Cmhz8MqGhCe7qW7Rm5m8NKGiKBCuK-nwtkLM,1142
|
|
150
|
-
frontend/js/components/SaleTunnel/index.spec.tsx,sha256=
|
|
150
|
+
frontend/js/components/SaleTunnel/index.spec.tsx,sha256=FyBLEkz3iJLO0XgdTmFjgEQZmoK9Fx1vofBga2Pbaz4,5151
|
|
151
151
|
frontend/js/components/SaleTunnel/index.tsx,sha256=XLlEbmvQ5AQV2sZRcDEvZ-M4e13HemS4uIIF77YDXpE,6365
|
|
152
152
|
frontend/js/components/SaleTunnel/components/RegisteredCreditCard/_styles.scss,sha256=ARvb3TRxtiU8Yj9KCIYkBA7vP3D8Sgq8LyuE7GTNl50,667
|
|
153
153
|
frontend/js/components/SaleTunnel/components/RegisteredCreditCard/index.spec.tsx,sha256=Kq3M_zheKSm0Q2Fa28k_1ToixqDY2AP5SVa08N_5WeQ,2783
|
|
@@ -169,8 +169,8 @@ frontend/js/components/SaleTunnel/components/StepBreadcrumb/index.tsx,sha256=APD
|
|
|
169
169
|
frontend/js/components/SearchInput/_styles.scss,sha256=8yhJcI4ZBZGNtn_KbqnsxQsDmvInbAXc3dA485cDQv4,345
|
|
170
170
|
frontend/js/components/SearchInput/index.spec.tsx,sha256=4o_YdeWkLlaxmDHqfX26FtqDGRtV-cZOKIZp0RTGuYE,1285
|
|
171
171
|
frontend/js/components/SearchInput/index.tsx,sha256=6Pd1nFJidWGe-6nKiAkciFOMtypf4Y1n__zA4Qpuna4,1437
|
|
172
|
-
frontend/js/components/SignContractButton/index.omniscientOrders.spec.tsx,sha256=
|
|
173
|
-
frontend/js/components/SignContractButton/index.spec.tsx,sha256=
|
|
172
|
+
frontend/js/components/SignContractButton/index.omniscientOrders.spec.tsx,sha256=Wwa1pcSgYMCuF8LVoHEH2Qj4AWMhrwt9gqkF2J2Z0hw,4768
|
|
173
|
+
frontend/js/components/SignContractButton/index.spec.tsx,sha256=zGP46EeNJX6BlQYbSYEMu8oWoT3-s7ShcAkFXgaCx_k,8398
|
|
174
174
|
frontend/js/components/SignContractButton/index.tsx,sha256=bP0yuS6AIkTu7NNIgscBBgW2nQwuCXWj-4Dx4wqXeTE,3406
|
|
175
175
|
frontend/js/components/Spinner/_styles.scss,sha256=0SOyJxsNU3cGK4k3lUn3xnrLmsi_dxbXIBRKAHxtQQk,940
|
|
176
176
|
frontend/js/components/Spinner/index.stories.tsx,sha256=FYVTK1XxvKee5fVQ2alAC99yrbdlxuTonWPK_kw3U6c,436
|
|
@@ -268,7 +268,7 @@ frontend/js/pages/DashboardCertificates/_styles.scss,sha256=6kcG1-rQNEvEzpt-7A7W
|
|
|
268
268
|
frontend/js/pages/DashboardCertificates/index.spec.tsx,sha256=HwSojV0lGezqPaXmD0N5ICRRuB_CXfawfIDAqiLpONw,6360
|
|
269
269
|
frontend/js/pages/DashboardCertificates/index.tsx,sha256=X75oZCX9v4WX6lx16JIblKcBX30htvRJ9Ec8U2smMww,2568
|
|
270
270
|
frontend/js/pages/DashboardContracts/_styles.scss,sha256=jr_KUqAPad7MZrZni8X1m8WsiVI__9Dd_2W3jH7Gf-A,127
|
|
271
|
-
frontend/js/pages/DashboardContracts/index.spec.tsx,sha256=
|
|
271
|
+
frontend/js/pages/DashboardContracts/index.spec.tsx,sha256=mGyo9816J4ODJ2quZzWbQMgqHIOc0vy9TGNv0U85eeE,4958
|
|
272
272
|
frontend/js/pages/DashboardContracts/index.tsx,sha256=jOotbntCevSBShQUYZU3my3rw4U13_iKQoNz323xSr8,2594
|
|
273
273
|
frontend/js/pages/DashboardCourses/_styles.scss,sha256=8LrtjWUetvjDKp8Sq3kusXB-R53hm6b9_O1YJKbQzN4,386
|
|
274
274
|
frontend/js/pages/DashboardCourses/index.spec.tsx,sha256=6FsNpxQy1p9h1GJPa4LjSZ61Cjd7rqA0kCyJ7kSdk4M,11159
|
|
@@ -286,24 +286,24 @@ frontend/js/pages/DashboardCreditCardsManagement/index.spec.tsx,sha256=GqDeedyjK
|
|
|
286
286
|
frontend/js/pages/DashboardCreditCardsManagement/index.stories.tsx,sha256=8QXdkd1WNy0k8Bah1t8-8o-kT6BE1fjAlRHBK21G6Ww,633
|
|
287
287
|
frontend/js/pages/DashboardCreditCardsManagement/index.tsx,sha256=Vplbc14IygiNhkeisQOifvc0oUxNVlIwbyeE2a6LP_M,3048
|
|
288
288
|
frontend/js/pages/DashboardOrderLayout/_styles.scss,sha256=AcmSmDHP5sQsMmPM5_1enIj-Kz282DIllQS1rhuyXYM,75
|
|
289
|
-
frontend/js/pages/DashboardOrderLayout/index.spec.tsx,sha256=
|
|
289
|
+
frontend/js/pages/DashboardOrderLayout/index.spec.tsx,sha256=2I0z46DGx2JbvTWK7ZMni1CKdqD2B_zCAh1iQAjjZmU,2860
|
|
290
290
|
frontend/js/pages/DashboardOrderLayout/index.tsx,sha256=t_gHshUgr3lBnANLP91EsCKB-xJnLe3LqXt7jS5J0co,1895
|
|
291
291
|
frontend/js/pages/DashboardPreferences/_styles.scss,sha256=s51zjGYiSwVItgOcSc3ticyQyRldQudj2-Q0EEeAtjU,83
|
|
292
292
|
frontend/js/pages/DashboardPreferences/index.tsx,sha256=Krymqhr4LLH_E_tOTE3a02S6NDtm1ah0UlZ8rHFrDcw,1075
|
|
293
293
|
frontend/js/pages/TeacherDashboardContractsLayout/index.ts,sha256=aTOe8e4-hn5oVlCRCxjA84a0zS4dCY_4rBNReXcgrWM,206
|
|
294
294
|
frontend/js/pages/TeacherDashboardContractsLayout/styles.scss,sha256=Oj_orCo25_FGFM8Mlb6zuHfkXr6OAvxMaEvkCKzMc_E,266
|
|
295
|
-
frontend/js/pages/TeacherDashboardContractsLayout/TeacherDashboardContracts/index.spec.tsx,sha256=
|
|
295
|
+
frontend/js/pages/TeacherDashboardContractsLayout/TeacherDashboardContracts/index.spec.tsx,sha256=WAo0OpllWxuk-WUWmQFGwsoxsWWelv0PlhjHw6MPCNg,13583
|
|
296
296
|
frontend/js/pages/TeacherDashboardContractsLayout/TeacherDashboardContracts/index.tsx,sha256=EgSANYrbTX5TXnxteJCf-_GQYxM1GIL566KW9QSJedo,4536
|
|
297
297
|
frontend/js/pages/TeacherDashboardContractsLayout/TeacherDashboardCourseContractsLayout/index.tsx,sha256=B7FMfhsTnbj5a8NjkkGJk8MRqPsdcVJ7IWArXKal2CE,944
|
|
298
298
|
frontend/js/pages/TeacherDashboardContractsLayout/TeacherDashboardOrganizationContractsLayout/index.tsx,sha256=o4QA7ie02_TYLOt51lIT3K8bLhX3mhfKSF6l7C8AfOg,978
|
|
299
299
|
frontend/js/pages/TeacherDashboardContractsLayout/components/BulkDownloadContractButton/index.spec.tsx,sha256=5xwRCsN17yTSHgs79erCHzlC28qcCz0fpNAm1QL17G4,4869
|
|
300
300
|
frontend/js/pages/TeacherDashboardContractsLayout/components/BulkDownloadContractButton/index.timer.spec.tsx,sha256=vkJmsD84gcdWB7pyy0ZVj_Y7V_lGiYbLpRWLlaDpdvc,4996
|
|
301
301
|
frontend/js/pages/TeacherDashboardContractsLayout/components/BulkDownloadContractButton/index.tsx,sha256=IEbWo8wGZqyf3fjo2hOynNhh-ml0a5Eb6WfBtVs0f5s,2678
|
|
302
|
-
frontend/js/pages/TeacherDashboardContractsLayout/components/ContractActionsBar/index.spec.tsx,sha256=
|
|
302
|
+
frontend/js/pages/TeacherDashboardContractsLayout/components/ContractActionsBar/index.spec.tsx,sha256=9mmEKj8S4U06KDzWNcMnHuhRCw--W4y3Q7KhwVmSYRk,6369
|
|
303
303
|
frontend/js/pages/TeacherDashboardContractsLayout/components/ContractActionsBar/index.tsx,sha256=wcZYQvoogE1QhcWgGS05fJsMdVJpGqKjDEv0aixWhrM,2037
|
|
304
304
|
frontend/js/pages/TeacherDashboardContractsLayout/components/ContractFiltersBar/index.spec.tsx,sha256=8V5J86iL_b6WLGWnSU3B8xZeQ2ojRW-aKxiIdjLGcxI,6394
|
|
305
305
|
frontend/js/pages/TeacherDashboardContractsLayout/components/ContractFiltersBar/index.tsx,sha256=ZIElTQwTOODS-oN-tf79-Fd1tbah0yexM4VcRR2_YyY,2688
|
|
306
|
-
frontend/js/pages/TeacherDashboardContractsLayout/components/SignOrganizationContractButton/index.spec.tsx,sha256=
|
|
306
|
+
frontend/js/pages/TeacherDashboardContractsLayout/components/SignOrganizationContractButton/index.spec.tsx,sha256=LalMIqAJhW99r6g4wfCSddkk30xuMyFbV7OBo7KPjjA,3740
|
|
307
307
|
frontend/js/pages/TeacherDashboardContractsLayout/components/SignOrganizationContractButton/index.tsx,sha256=lMlHXgKEJaAcYCVUOtrdFdA2OfgPTEvJN_3adKHUnP4,1793
|
|
308
308
|
frontend/js/pages/TeacherDashboardContractsLayout/hooks/useTeacherContractsToSign.tsx,sha256=kUblppRSWCYRCYR_QRwVuuTXpjDHm4zwJ1WglScGY3w,1148
|
|
309
309
|
frontend/js/pages/TeacherDashboardContractsLayout/hooks/useCheckContractArchiveExists/index.spec.tsx,sha256=OAVFRfkQdj0dpjXe_8WuP4-l7o70zbNO89z2q-jarmM,3947
|
|
@@ -465,7 +465,7 @@ frontend/js/widgets/Dashboard/components/DashboardItem/Certificate/index.tsx,sha
|
|
|
465
465
|
frontend/js/widgets/Dashboard/components/DashboardItem/CertificateStatus/index.spec.tsx,sha256=JFLDFBO2eW4EVykVa31lxk5Mv6ohg2Xk_8Os7lm9tX0,2401
|
|
466
466
|
frontend/js/widgets/Dashboard/components/DashboardItem/CertificateStatus/index.tsx,sha256=7LNZtzh_Cnw666szxUORKwAg-cgWA-IvBHozieA-y14,2144
|
|
467
467
|
frontend/js/widgets/Dashboard/components/DashboardItem/Contract/_styles.scss,sha256=w0qZ2JARxKrr__dt6FrslU89QYwmIob9qFLFgQBrJ_c,514
|
|
468
|
-
frontend/js/widgets/Dashboard/components/DashboardItem/Contract/index.spec.tsx,sha256=
|
|
468
|
+
frontend/js/widgets/Dashboard/components/DashboardItem/Contract/index.spec.tsx,sha256=RzKTPD-UHyNz7QL1ieft4Gw2-n_zWP_PDrHjlmWOiuc,6977
|
|
469
469
|
frontend/js/widgets/Dashboard/components/DashboardItem/Contract/index.stories.tsx,sha256=pHr5--fLV2spJ3U0kkikg4DYg8GaBZitHaDTnUyJjBE,1128
|
|
470
470
|
frontend/js/widgets/Dashboard/components/DashboardItem/Contract/index.tsx,sha256=5Fbp0tcltsroQsyvfg5qtrSBmQN-5cNPo1Iq2lpIK5g,1605
|
|
471
471
|
frontend/js/widgets/Dashboard/components/DashboardItem/CourseEnrolling/index.spec.tsx,sha256=fzvkWGLDl_jfJQ2222J4firQbNDg1f5TEY8ZaSSJ3ag,5893
|
|
@@ -475,12 +475,12 @@ frontend/js/widgets/Dashboard/components/DashboardItem/CourseEnrolling/hooks/use
|
|
|
475
475
|
frontend/js/widgets/Dashboard/components/DashboardItem/Enrollment/DashboardItemEnrollment.spec.tsx,sha256=rJ4X8M3aTMdguKrv2cxi4J71LP36OrDPZ9zMW72D-7M,4072
|
|
476
476
|
frontend/js/widgets/Dashboard/components/DashboardItem/Enrollment/DashboardItemEnrollment.stories.tsx,sha256=gXWvOUMcyM4kSTJ_CCXVQ9pjhpZZhEKpDm_A0HNlJBk,776
|
|
477
477
|
frontend/js/widgets/Dashboard/components/DashboardItem/Enrollment/DashboardItemEnrollment.tsx,sha256=ju0uUObgpNVrq_s-2Eux3Ba8e47tR1qcxrmbRKLFtHc,1416
|
|
478
|
-
frontend/js/widgets/Dashboard/components/DashboardItem/Enrollment/ProductCertificateFooter/index.spec.tsx,sha256=
|
|
478
|
+
frontend/js/widgets/Dashboard/components/DashboardItem/Enrollment/ProductCertificateFooter/index.spec.tsx,sha256=B5kqlifXCoSGdRf5ru8_V8Ij876GsqctgLMQ7EItsXc,8918
|
|
479
479
|
frontend/js/widgets/Dashboard/components/DashboardItem/Enrollment/ProductCertificateFooter/index.tsx,sha256=yOKlawda2h3yRsg53VBDcWntjoYOyqGqROVyF1zJKdc,3622
|
|
480
|
-
frontend/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrder.spec.tsx,sha256=
|
|
480
|
+
frontend/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrder.spec.tsx,sha256=dq66GGQXcbO3LLp44WqSK-FnejgXCwUpx97lSpWGrnY,33178
|
|
481
481
|
frontend/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrder.tsx,sha256=kWi2E3uOsYVQkydGdrsowjqVIhki14KEQ2QFF7CntWk,7038
|
|
482
|
-
frontend/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrderContract.spec.tsx,sha256=
|
|
483
|
-
frontend/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrderContract.useUnionResource.cache.spec.tsx,sha256=
|
|
482
|
+
frontend/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrderContract.spec.tsx,sha256=WrFJ3cW1vW5I0Gupr8LWU2kcMXULw8TYMLK0AMm6dFc,11622
|
|
483
|
+
frontend/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrderContract.useUnionResource.cache.spec.tsx,sha256=64LqlgtLMekYr-EG0TpCpQRryiEzfslkW9apZGWbm1U,10961
|
|
484
484
|
frontend/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrderReadonly.stories.tsx,sha256=do7d5TsmNw2P2UqZp20QP2LUY09nsWwhSSPF9xEjwCk,2079
|
|
485
485
|
frontend/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrderWritable.stories.tsx,sha256=Dwh6J4Rd3ffJjs6o2O9YrqUwIER_x2vhUXeOatLLqeg,2196
|
|
486
486
|
frontend/js/widgets/Dashboard/components/DashboardItem/Order/_styles.scss,sha256=JpV1ZjVFUwxhdvNMdCHk_Wob58UNEld9aYgvEjnnAxs,791
|
|
@@ -561,10 +561,10 @@ frontend/js/widgets/Search/components/FiltersPaneCloseButton.tsx,sha256=hH7HB_PX
|
|
|
561
561
|
frontend/js/widgets/Search/components/PaginateCourseSearch/index.spec.tsx,sha256=2Hh82UpliOvBpwAfnlzY528Qivqg_7Z7J_ODFpr6t5A,6528
|
|
562
562
|
frontend/js/widgets/Search/components/PaginateCourseSearch/index.tsx,sha256=S7RcLMCnbacEew7-SEk4cA_GGDRMceMWBjNED1jmSoU,1375
|
|
563
563
|
frontend/js/widgets/Search/components/SearchFilterGroup/_styles.scss,sha256=yHtoKlNHDo1LfiBQ9KunTXidAmd8QNq8OMr_QJogRO8,372
|
|
564
|
-
frontend/js/widgets/Search/components/SearchFilterGroup/index.spec.tsx,sha256=
|
|
564
|
+
frontend/js/widgets/Search/components/SearchFilterGroup/index.spec.tsx,sha256=5MOalPWnuD_tkeoxbZig_kXm7-RHSdaPZdShZVCsPks,3012
|
|
565
565
|
frontend/js/widgets/Search/components/SearchFilterGroup/index.tsx,sha256=wWORb1vtHOEcsL3onAqNoF069O8ie_71GvH61mpKJF8,1194
|
|
566
566
|
frontend/js/widgets/Search/components/SearchFilterGroupModal/_styles.scss,sha256=U5bn8RN2S-fyGEujTwnAPHOKD16o32vJUaPDSmTRmx8,1478
|
|
567
|
-
frontend/js/widgets/Search/components/SearchFilterGroupModal/index.spec.tsx,sha256=
|
|
567
|
+
frontend/js/widgets/Search/components/SearchFilterGroupModal/index.spec.tsx,sha256=_yKClATZqNJiNrecwHzFgfWc5WgI8frcb4tk4euOTk0,20503
|
|
568
568
|
frontend/js/widgets/Search/components/SearchFilterGroupModal/index.tsx,sha256=1MnqtYbguWsGS8W3zqauCiSg1oM7Ob1TkZ4PmrYb30U,9695
|
|
569
569
|
frontend/js/widgets/Search/components/SearchFilterValueLeaf/index.spec.tsx,sha256=WS-gbQfjSje1n2FJbwbd1DBt_dHLGxMQMdqPvnKgku8,6491
|
|
570
570
|
frontend/js/widgets/Search/components/SearchFilterValueLeaf/index.tsx,sha256=D1r8iImzYsw7KWHqKZjYDNeQef6qbr8sANkwPMpsvLQ,1273
|
|
@@ -586,7 +586,7 @@ frontend/js/widgets/SearchSuggestField/index.tsx,sha256=mQtTuveQtBhN2SDK88WE_AD4
|
|
|
586
586
|
frontend/js/widgets/SyllabusCourseRunsList/index.spec.tsx,sha256=Bs5LwgGW71KJlXGjECnJ6cuepFdTqoaPMktJD4-rb5Y,25578
|
|
587
587
|
frontend/js/widgets/SyllabusCourseRunsList/index.tsx,sha256=-dMeLQ3byLLdVLRi0JIoG1eBpT2JFBKZDLpFcR2foyY,4094
|
|
588
588
|
frontend/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/_styles.scss,sha256=VtdcIlNGjkoqZiK5JughtXw6_7oNWmJlgHn6cJIsWzc,3256
|
|
589
|
-
frontend/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/index.spec.tsx,sha256=
|
|
589
|
+
frontend/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/index.spec.tsx,sha256=ZC_yr2-c_TwKEY8pvpL17MDJB3E3-3mkxHrvdd9mV7Q,33487
|
|
590
590
|
frontend/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/index.stories.tsx,sha256=bqVATEIPoJFoNFnVx2VqOL1tMUr5HQdwfDCA_gB87hw,2923
|
|
591
591
|
frontend/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/index.tsx,sha256=U6iUfLu_RS2V9p9V2bJ6l0Gv8kYGLRQJY3RICyk610g,8483
|
|
592
592
|
frontend/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/CourseProductItemFooter/index.tsx,sha256=-fb6NAy6KnPG23piiWJWL2OqKrq_mf38Myq_1CLeT8s,2009
|
|
@@ -2335,9 +2335,9 @@ richie/static/richie/js/build/9986.4f8226b1f37372f99368.index.js,sha256=YZTuD2Zq
|
|
|
2335
2335
|
richie/static/richie/js/build/99953.4f8226b1f37372f99368.index.js,sha256=OWoLPJnHrmvF3HBQPgXooAGo5E0yJpJ7QTFHFghJpI8,135
|
|
2336
2336
|
richie/static/richie/js/build/99962.4f8226b1f37372f99368.index.js,sha256=I84MIDhCYN2K4npCXyaDNnfTXb2xsBIzpZVnlTknM2s,8366
|
|
2337
2337
|
richie/static/richie/js/build/index.js,sha256=UVlwvREYQJJZdtYaef_euQTd0tGDIyK89eiSuwAaySU,1128515
|
|
2338
|
-
richie-2.25.0b2.
|
|
2339
|
-
richie-2.25.0b2.
|
|
2340
|
-
richie-2.25.0b2.
|
|
2341
|
-
richie-2.25.0b2.
|
|
2342
|
-
richie-2.25.0b2.
|
|
2343
|
-
richie-2.25.0b2.
|
|
2338
|
+
richie-2.25.0b2.dev98.dist-info/LICENSE,sha256=5LKjFIE1kpKzBfR2iwq_RGHhHM5XawdlfZrcHTsCLpA,1079
|
|
2339
|
+
richie-2.25.0b2.dev98.dist-info/METADATA,sha256=KgPwQssEhxsraIakF54cXaBAZdp9MIxbz4RF8vkHmls,6739
|
|
2340
|
+
richie-2.25.0b2.dev98.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
|
|
2341
|
+
richie-2.25.0b2.dev98.dist-info/top_level.txt,sha256=WJvFAAHtUQ5T5MOuG6jRynDJG9kVfl4jtuf1qxIXND8,16
|
|
2342
|
+
richie-2.25.0b2.dev98.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
2343
|
+
richie-2.25.0b2.dev98.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|