@docthub.frontend/app 0.1.28 → 0.1.30
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/build/Components/DoctUserMenu/static/data.d.ts +20 -0
- package/build/Components/Filters/facets.d.ts +43 -0
- package/build/Components/ForMe/Layout/index.d.ts +1 -0
- package/build/Components/ForMe/components/OutlineChip/index.d.ts +1 -0
- package/build/Components/Form/AutoCompleteWithHighlightedSearch/assets/match.d.ts +1 -0
- package/build/Components/Hooks/useWndowSize.d.ts +4 -0
- package/build/Components/NavigationMenu/CoursePageLogo.d.ts +2 -0
- package/build/Components/NavigationMenu/EnterpriseLogo.d.ts +2 -0
- package/build/Config/country.d.ts +6 -0
- package/build/Config/dialCode.d.ts +5 -0
- package/build/Config/utils.d.ts +2 -0
- package/build/index.esm.js +19 -19
- package/build/index.esm.js.map +1 -1
- package/build/index.js +3 -3
- package/build/index.js.map +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export const listItems: ({
|
|
2
|
+
icon: string;
|
|
3
|
+
name: string;
|
|
4
|
+
url: string;
|
|
5
|
+
imgSRC?: undefined;
|
|
6
|
+
color?: undefined;
|
|
7
|
+
} | {
|
|
8
|
+
imgSRC: React.JSX.Element;
|
|
9
|
+
name: string;
|
|
10
|
+
url: string;
|
|
11
|
+
icon?: undefined;
|
|
12
|
+
color?: undefined;
|
|
13
|
+
} | {
|
|
14
|
+
icon: string;
|
|
15
|
+
name: string;
|
|
16
|
+
url: string;
|
|
17
|
+
color: string;
|
|
18
|
+
imgSRC?: undefined;
|
|
19
|
+
})[];
|
|
20
|
+
import React from "react";
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
export default facets;
|
|
2
|
+
declare namespace facets {
|
|
3
|
+
const disciplines: {
|
|
4
|
+
id: string;
|
|
5
|
+
value: string;
|
|
6
|
+
count: number;
|
|
7
|
+
}[];
|
|
8
|
+
const specialties: {
|
|
9
|
+
id: string;
|
|
10
|
+
value: string;
|
|
11
|
+
count: number;
|
|
12
|
+
}[];
|
|
13
|
+
const intakes: {
|
|
14
|
+
id: string;
|
|
15
|
+
value: string;
|
|
16
|
+
count: number;
|
|
17
|
+
}[];
|
|
18
|
+
const courseTypes: {
|
|
19
|
+
id: string;
|
|
20
|
+
value: string;
|
|
21
|
+
count: number;
|
|
22
|
+
}[];
|
|
23
|
+
const durations: {
|
|
24
|
+
id: string;
|
|
25
|
+
value: string;
|
|
26
|
+
count: number;
|
|
27
|
+
}[];
|
|
28
|
+
const countries: {
|
|
29
|
+
id: string;
|
|
30
|
+
value: string;
|
|
31
|
+
count: number;
|
|
32
|
+
}[];
|
|
33
|
+
const cities: {
|
|
34
|
+
id: string;
|
|
35
|
+
value: string;
|
|
36
|
+
count: number;
|
|
37
|
+
}[];
|
|
38
|
+
const states: {
|
|
39
|
+
id: string;
|
|
40
|
+
value: string;
|
|
41
|
+
count: number;
|
|
42
|
+
}[];
|
|
43
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as OutlineChip } from "./OutlineChip";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function match(text: any, query: any, options: any): any;
|