@aarhus-university/au-lib-react-components 10.0.2 → 10.2.0
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/umd/all.css +2 -2
- package/build/umd/all.js +1 -1
- package/build/umd/alphabox.js +1 -1
- package/build/umd/databox.js +1 -1
- package/build/umd/diagramme.js +1 -1
- package/build/umd/flowbox.js +1 -1
- package/build/umd/universe.js +1 -1
- package/package.json +6 -6
- package/src/components/AUAutoSuggestComponent.js +158 -158
- package/src/components/AUSpinnerComponent.tsx +91 -67
- package/src/components/AUToastComponent.tsx +11 -12
- package/src/components/profile/AUProfileLoginComponent.tsx +26 -26
- package/src/layout-2016/components/alphabox/AlphaBoxComponent.js +143 -143
- package/src/layout-2016/components/alphabox/AlphaBoxContentComponent.js +136 -136
- package/src/layout-2016/components/common/AUCollapsibleComponent.js +152 -152
- package/src/layout-2016/components/common/AUSpinnerComponent.js +103 -103
- package/src/layout-2016/components/databox/DataBoxAlphabetComponent.js +144 -144
- package/src/layout-2016/components/databox/DataBoxAssociationComponent.js +122 -122
- package/src/layout-2016/components/databox/DataBoxButtonComponent.js +157 -157
- package/src/layout-2016/components/databox/DataBoxComponent.js +297 -297
- package/src/layout-2016/components/databox/DataBoxGroupingComponent.js +64 -64
- package/src/layout-2016/components/databox/DataBoxSearchResultComponent.js +36 -36
- package/src/layout-2016/components/databox/DataBoxStackedAssociationComponent.js +54 -54
- package/src/layout-2016/components/databox/DataBoxSuggestionComponent.js +39 -39
- package/src/layout-2016/components/diagramme/AUDiagrammeComponent.js +309 -309
- package/src/layout-2016/components/flowbox/FlowBoxComponent.js +126 -126
- package/src/layout-2016/components/flowbox/FlowBoxPhoneComponent.js +104 -104
- package/src/layout-2016/components/profile/AUProfileAvatar2016Component.js +103 -103
- package/src/layout-2016/components/universe/StaffTopComponent.js +363 -363
- package/src/layout-2016/components/universe/StudentTopComponent.js +137 -137
- package/src/layout-2016/components/universe/UniverseContainerComponent.js +65 -65
- package/src/layout-2016/lib/all.js +3 -3
- package/src/layout-2016/lib/au-alphabox.js +100 -100
- package/src/layout-2016/lib/au-databox.js +400 -400
- package/src/layout-2016/lib/au-diagramme.js +85 -85
- package/src/layout-2016/lib/au-flowbox.js +93 -93
- package/src/layout-2016/lib/universe.js +9 -9
- package/src/lib/helpers.ts +194 -194
- package/tsconfig.json +46 -46
- package/types/common/interfaces/gui.d.ts +1 -0
- package/types/common/interfaces/model.d.ts +29 -29
- package/types/common/props.d.ts +166 -165
- package/webpack.config.js +89 -89
package/src/lib/helpers.ts
CHANGED
|
@@ -1,194 +1,194 @@
|
|
|
1
|
-
/* eslint-env browser */
|
|
2
|
-
/* NO IMPORTS! */
|
|
3
|
-
|
|
4
|
-
// eslint-disable-next-line no-control-regex
|
|
5
|
-
const emailRegex = /(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])/;
|
|
6
|
-
|
|
7
|
-
const sortAlphaObj = (a, b) => {
|
|
8
|
-
if (typeof a.name !== 'undefined' && typeof b.name !== 'undefined') {
|
|
9
|
-
return a.name.toLowerCase().localeCompare(b.name.toLowerCase(), 'da', { ignorePunctuation: true });
|
|
10
|
-
}
|
|
11
|
-
return 0;
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
const isElementInViewport = (element: HTMLElement): boolean => {
|
|
15
|
-
if (element === null) {
|
|
16
|
-
return false;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
const rect = element.getBoundingClientRect();
|
|
20
|
-
|
|
21
|
-
return rect.bottom > 0
|
|
22
|
-
&& rect.right > 0
|
|
23
|
-
&& rect.left < (window.innerWidth || document.documentElement.clientWidth)
|
|
24
|
-
&& rect.top < (window.innerHeight || document.documentElement.clientHeight);
|
|
25
|
-
};
|
|
26
|
-
|
|
27
|
-
const isElementPartlyInViewport = (element: HTMLElement): boolean => {
|
|
28
|
-
let top = element.offsetTop;
|
|
29
|
-
let left = element.offsetLeft;
|
|
30
|
-
const width = element.offsetWidth;
|
|
31
|
-
const height = element.offsetHeight;
|
|
32
|
-
|
|
33
|
-
let offsetElement = element;
|
|
34
|
-
while (offsetElement.offsetParent) {
|
|
35
|
-
offsetElement = element.offsetParent as HTMLElement;
|
|
36
|
-
top += element.offsetTop;
|
|
37
|
-
left += element.offsetLeft;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
return (
|
|
41
|
-
top < (window.pageYOffset + window.innerHeight)
|
|
42
|
-
&& left < (window.pageXOffset + window.innerWidth)
|
|
43
|
-
&& (top + height) > window.pageYOffset
|
|
44
|
-
&& (left + width) > window.pageXOffset
|
|
45
|
-
);
|
|
46
|
-
};
|
|
47
|
-
|
|
48
|
-
const setCookie = (
|
|
49
|
-
cookieName: string,
|
|
50
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
51
|
-
value: any,
|
|
52
|
-
maxAge: number | null = null,
|
|
53
|
-
exdays: number | null = null,
|
|
54
|
-
path = ';path=/;domain=au.dk',
|
|
55
|
-
): void => {
|
|
56
|
-
let cookieValue = encodeURI(value);
|
|
57
|
-
if (exdays != null) {
|
|
58
|
-
const exdate = new Date();
|
|
59
|
-
exdate.setDate(exdate.getDate() + exdays);
|
|
60
|
-
cookieValue = `${cookieValue}; expires=${exdate.toUTCString()}`;
|
|
61
|
-
} else if (maxAge != null) {
|
|
62
|
-
cookieValue = `${cookieValue}; max-age=${maxAge}`;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
document.cookie = `${cookieName}=${cookieValue}${path}`;
|
|
66
|
-
};
|
|
67
|
-
|
|
68
|
-
const getCookie = (cookieName: string): string | null => {
|
|
69
|
-
let cookieValue: string | null = document.cookie;
|
|
70
|
-
let cookieStart = cookieValue.indexOf(` ${cookieName}=`);
|
|
71
|
-
if (cookieStart === -1) {
|
|
72
|
-
cookieStart = cookieValue.indexOf(`${cookieName}=`);
|
|
73
|
-
}
|
|
74
|
-
if (cookieStart === -1) {
|
|
75
|
-
cookieValue = null;
|
|
76
|
-
} else {
|
|
77
|
-
cookieStart = cookieValue.indexOf('=', cookieStart) + 1;
|
|
78
|
-
let cookieEnd = cookieValue.indexOf(';', cookieStart);
|
|
79
|
-
if (cookieEnd === -1) {
|
|
80
|
-
cookieEnd = cookieValue.length;
|
|
81
|
-
}
|
|
82
|
-
cookieValue = decodeURI(cookieValue.substring(cookieStart, cookieEnd));
|
|
83
|
-
}
|
|
84
|
-
return cookieValue;
|
|
85
|
-
};
|
|
86
|
-
|
|
87
|
-
const addToSessionStorage = (key: string, data: unknown): unknown => {
|
|
88
|
-
if (window.sessionStorage) {
|
|
89
|
-
sessionStorage.setItem(key, JSON.stringify(data));
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
return data;
|
|
93
|
-
};
|
|
94
|
-
|
|
95
|
-
const getFromSessionStorage = (key: string): unknown | null => {
|
|
96
|
-
if (window.sessionStorage) {
|
|
97
|
-
const data = sessionStorage.getItem(key);
|
|
98
|
-
if (data) {
|
|
99
|
-
return JSON.parse(data);
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
return null;
|
|
104
|
-
};
|
|
105
|
-
|
|
106
|
-
const addToLocalStorage = (key: string, data: unknown): unknown => {
|
|
107
|
-
if (window.localStorage) {
|
|
108
|
-
localStorage.setItem(key, JSON.stringify(data));
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
return data;
|
|
112
|
-
};
|
|
113
|
-
|
|
114
|
-
const getFromLocalStorage = (key: string): unknown | null => {
|
|
115
|
-
if (window.localStorage) {
|
|
116
|
-
const data = localStorage.getItem(key);
|
|
117
|
-
if (data) {
|
|
118
|
-
return JSON.parse(data);
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
return null;
|
|
123
|
-
};
|
|
124
|
-
|
|
125
|
-
// Credits: http://blog.vishalon.net/index.php/javascript-getting-and-setting-caret-position-in-textarea/
|
|
126
|
-
const setCaretPosition = (element: HTMLInputElement, pos: number): void => {
|
|
127
|
-
// Modern browsers
|
|
128
|
-
if (element && element.setSelectionRange) {
|
|
129
|
-
element.focus();
|
|
130
|
-
element.setSelectionRange(pos, pos);
|
|
131
|
-
}
|
|
132
|
-
};
|
|
133
|
-
|
|
134
|
-
const splitPhoneNumber = (
|
|
135
|
-
countryCodes: AU.ICountryCode[],
|
|
136
|
-
phoneNumber: string,
|
|
137
|
-
): AU.IPhoneNumber => {
|
|
138
|
-
const countryCodeFound = (code: string) => countryCodes.filter(
|
|
139
|
-
(x) => x.code === parseInt(code, 10),
|
|
140
|
-
).length > 0;
|
|
141
|
-
|
|
142
|
-
const findPrefix = (): string => {
|
|
143
|
-
if (countryCodes.length > 0) {
|
|
144
|
-
const skip = '';
|
|
145
|
-
let count = 1;
|
|
146
|
-
let prefix = `${countryCodes.find((x) => x.important)?.code}`;
|
|
147
|
-
while (count < phoneNumber.length) {
|
|
148
|
-
const split = phoneNumber.substring(skip.length, skip.length + count);
|
|
149
|
-
if (countryCodeFound(split)) {
|
|
150
|
-
prefix = split;
|
|
151
|
-
}
|
|
152
|
-
count += 1;
|
|
153
|
-
}
|
|
154
|
-
return skip + prefix;
|
|
155
|
-
}
|
|
156
|
-
return '';
|
|
157
|
-
};
|
|
158
|
-
|
|
159
|
-
const prefix = findPrefix();
|
|
160
|
-
return {
|
|
161
|
-
prefix,
|
|
162
|
-
number: phoneNumber.replace(prefix, ''),
|
|
163
|
-
};
|
|
164
|
-
};
|
|
165
|
-
|
|
166
|
-
const prettyPrintPhone = (countryCodes: AU.ICountryCode[], phone: string) => {
|
|
167
|
-
if (phone) {
|
|
168
|
-
const { prefix, number } = splitPhoneNumber(countryCodes, phone);
|
|
169
|
-
if (prefix) {
|
|
170
|
-
return `${prefix} ${number?.match(/\d{1,2}/g)?.join(' ')}`;
|
|
171
|
-
}
|
|
172
|
-
return number?.match(/\d{1,2}/g)?.join(' ');
|
|
173
|
-
}
|
|
174
|
-
return '';
|
|
175
|
-
};
|
|
176
|
-
|
|
177
|
-
const scrollTo = (x = 0, y = 0) => window.scrollTo(x, y);
|
|
178
|
-
|
|
179
|
-
export {
|
|
180
|
-
emailRegex,
|
|
181
|
-
sortAlphaObj,
|
|
182
|
-
isElementInViewport,
|
|
183
|
-
isElementPartlyInViewport,
|
|
184
|
-
setCookie,
|
|
185
|
-
getCookie,
|
|
186
|
-
addToLocalStorage,
|
|
187
|
-
getFromLocalStorage,
|
|
188
|
-
addToSessionStorage,
|
|
189
|
-
getFromSessionStorage,
|
|
190
|
-
setCaretPosition,
|
|
191
|
-
splitPhoneNumber,
|
|
192
|
-
prettyPrintPhone,
|
|
193
|
-
scrollTo,
|
|
194
|
-
};
|
|
1
|
+
/* eslint-env browser */
|
|
2
|
+
/* NO IMPORTS! */
|
|
3
|
+
|
|
4
|
+
// eslint-disable-next-line no-control-regex
|
|
5
|
+
const emailRegex = /(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])/;
|
|
6
|
+
|
|
7
|
+
const sortAlphaObj = (a, b) => {
|
|
8
|
+
if (typeof a.name !== 'undefined' && typeof b.name !== 'undefined') {
|
|
9
|
+
return a.name.toLowerCase().localeCompare(b.name.toLowerCase(), 'da', { ignorePunctuation: true });
|
|
10
|
+
}
|
|
11
|
+
return 0;
|
|
12
|
+
};
|
|
13
|
+
|
|
14
|
+
const isElementInViewport = (element: HTMLElement): boolean => {
|
|
15
|
+
if (element === null) {
|
|
16
|
+
return false;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
const rect = element.getBoundingClientRect();
|
|
20
|
+
|
|
21
|
+
return rect.bottom > 0
|
|
22
|
+
&& rect.right > 0
|
|
23
|
+
&& rect.left < (window.innerWidth || document.documentElement.clientWidth)
|
|
24
|
+
&& rect.top < (window.innerHeight || document.documentElement.clientHeight);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
const isElementPartlyInViewport = (element: HTMLElement): boolean => {
|
|
28
|
+
let top = element.offsetTop;
|
|
29
|
+
let left = element.offsetLeft;
|
|
30
|
+
const width = element.offsetWidth;
|
|
31
|
+
const height = element.offsetHeight;
|
|
32
|
+
|
|
33
|
+
let offsetElement = element;
|
|
34
|
+
while (offsetElement.offsetParent) {
|
|
35
|
+
offsetElement = element.offsetParent as HTMLElement;
|
|
36
|
+
top += element.offsetTop;
|
|
37
|
+
left += element.offsetLeft;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
return (
|
|
41
|
+
top < (window.pageYOffset + window.innerHeight)
|
|
42
|
+
&& left < (window.pageXOffset + window.innerWidth)
|
|
43
|
+
&& (top + height) > window.pageYOffset
|
|
44
|
+
&& (left + width) > window.pageXOffset
|
|
45
|
+
);
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
const setCookie = (
|
|
49
|
+
cookieName: string,
|
|
50
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
51
|
+
value: any,
|
|
52
|
+
maxAge: number | null = null,
|
|
53
|
+
exdays: number | null = null,
|
|
54
|
+
path = ';path=/;domain=au.dk',
|
|
55
|
+
): void => {
|
|
56
|
+
let cookieValue = encodeURI(value);
|
|
57
|
+
if (exdays != null) {
|
|
58
|
+
const exdate = new Date();
|
|
59
|
+
exdate.setDate(exdate.getDate() + exdays);
|
|
60
|
+
cookieValue = `${cookieValue}; expires=${exdate.toUTCString()}`;
|
|
61
|
+
} else if (maxAge != null) {
|
|
62
|
+
cookieValue = `${cookieValue}; max-age=${maxAge}`;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
document.cookie = `${cookieName}=${cookieValue}${path}`;
|
|
66
|
+
};
|
|
67
|
+
|
|
68
|
+
const getCookie = (cookieName: string): string | null => {
|
|
69
|
+
let cookieValue: string | null = document.cookie;
|
|
70
|
+
let cookieStart = cookieValue.indexOf(` ${cookieName}=`);
|
|
71
|
+
if (cookieStart === -1) {
|
|
72
|
+
cookieStart = cookieValue.indexOf(`${cookieName}=`);
|
|
73
|
+
}
|
|
74
|
+
if (cookieStart === -1) {
|
|
75
|
+
cookieValue = null;
|
|
76
|
+
} else {
|
|
77
|
+
cookieStart = cookieValue.indexOf('=', cookieStart) + 1;
|
|
78
|
+
let cookieEnd = cookieValue.indexOf(';', cookieStart);
|
|
79
|
+
if (cookieEnd === -1) {
|
|
80
|
+
cookieEnd = cookieValue.length;
|
|
81
|
+
}
|
|
82
|
+
cookieValue = decodeURI(cookieValue.substring(cookieStart, cookieEnd));
|
|
83
|
+
}
|
|
84
|
+
return cookieValue;
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
const addToSessionStorage = (key: string, data: unknown): unknown => {
|
|
88
|
+
if (window.sessionStorage) {
|
|
89
|
+
sessionStorage.setItem(key, JSON.stringify(data));
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
return data;
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
const getFromSessionStorage = (key: string): unknown | null => {
|
|
96
|
+
if (window.sessionStorage) {
|
|
97
|
+
const data = sessionStorage.getItem(key);
|
|
98
|
+
if (data) {
|
|
99
|
+
return JSON.parse(data);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
return null;
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
const addToLocalStorage = (key: string, data: unknown): unknown => {
|
|
107
|
+
if (window.localStorage) {
|
|
108
|
+
localStorage.setItem(key, JSON.stringify(data));
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
return data;
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
const getFromLocalStorage = (key: string): unknown | null => {
|
|
115
|
+
if (window.localStorage) {
|
|
116
|
+
const data = localStorage.getItem(key);
|
|
117
|
+
if (data) {
|
|
118
|
+
return JSON.parse(data);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
return null;
|
|
123
|
+
};
|
|
124
|
+
|
|
125
|
+
// Credits: http://blog.vishalon.net/index.php/javascript-getting-and-setting-caret-position-in-textarea/
|
|
126
|
+
const setCaretPosition = (element: HTMLInputElement, pos: number): void => {
|
|
127
|
+
// Modern browsers
|
|
128
|
+
if (element && element.setSelectionRange) {
|
|
129
|
+
element.focus();
|
|
130
|
+
element.setSelectionRange(pos, pos);
|
|
131
|
+
}
|
|
132
|
+
};
|
|
133
|
+
|
|
134
|
+
const splitPhoneNumber = (
|
|
135
|
+
countryCodes: AU.ICountryCode[],
|
|
136
|
+
phoneNumber: string,
|
|
137
|
+
): AU.IPhoneNumber => {
|
|
138
|
+
const countryCodeFound = (code: string) => countryCodes.filter(
|
|
139
|
+
(x) => x.code === parseInt(code, 10),
|
|
140
|
+
).length > 0;
|
|
141
|
+
|
|
142
|
+
const findPrefix = (): string => {
|
|
143
|
+
if (countryCodes.length > 0) {
|
|
144
|
+
const skip = '';
|
|
145
|
+
let count = 1;
|
|
146
|
+
let prefix = `${countryCodes.find((x) => x.important)?.code}`;
|
|
147
|
+
while (count < phoneNumber.length) {
|
|
148
|
+
const split = phoneNumber.substring(skip.length, skip.length + count);
|
|
149
|
+
if (countryCodeFound(split)) {
|
|
150
|
+
prefix = split;
|
|
151
|
+
}
|
|
152
|
+
count += 1;
|
|
153
|
+
}
|
|
154
|
+
return skip + prefix;
|
|
155
|
+
}
|
|
156
|
+
return '';
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
const prefix = findPrefix();
|
|
160
|
+
return {
|
|
161
|
+
prefix,
|
|
162
|
+
number: phoneNumber.replace(prefix, ''),
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
const prettyPrintPhone = (countryCodes: AU.ICountryCode[], phone: string) => {
|
|
167
|
+
if (phone) {
|
|
168
|
+
const { prefix, number } = splitPhoneNumber(countryCodes, phone);
|
|
169
|
+
if (prefix) {
|
|
170
|
+
return `${prefix} ${number?.match(/\d{1,2}/g)?.join(' ')}`;
|
|
171
|
+
}
|
|
172
|
+
return number?.match(/\d{1,2}/g)?.join(' ');
|
|
173
|
+
}
|
|
174
|
+
return '';
|
|
175
|
+
};
|
|
176
|
+
|
|
177
|
+
const scrollTo = (x = 0, y = 0) => window.scrollTo(x, y);
|
|
178
|
+
|
|
179
|
+
export {
|
|
180
|
+
emailRegex,
|
|
181
|
+
sortAlphaObj,
|
|
182
|
+
isElementInViewport,
|
|
183
|
+
isElementPartlyInViewport,
|
|
184
|
+
setCookie,
|
|
185
|
+
getCookie,
|
|
186
|
+
addToLocalStorage,
|
|
187
|
+
getFromLocalStorage,
|
|
188
|
+
addToSessionStorage,
|
|
189
|
+
getFromSessionStorage,
|
|
190
|
+
setCaretPosition,
|
|
191
|
+
splitPhoneNumber,
|
|
192
|
+
prettyPrintPhone,
|
|
193
|
+
scrollTo,
|
|
194
|
+
};
|
package/tsconfig.json
CHANGED
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
// Target latest version of ECMAScript.
|
|
4
|
-
"target": "esnext",
|
|
5
|
-
// path to output directory
|
|
6
|
-
"outDir": "../wwwroot/js",
|
|
7
|
-
// enable strict null checks as a best practice
|
|
8
|
-
"strictNullChecks": true,
|
|
9
|
-
// Search under node_modules for non-relative imports.
|
|
10
|
-
"moduleResolution": "node",
|
|
11
|
-
// Process & infer types from .js files.
|
|
12
|
-
"allowJs": true,
|
|
13
|
-
// Don't emit; allow Babel to transform files.
|
|
14
|
-
"noEmit": true,
|
|
15
|
-
// Enable strictest settings like strictNullChecks & noImplicitAny.
|
|
16
|
-
"strict": true,
|
|
17
|
-
// Import non-ES modules as default imports.
|
|
18
|
-
"esModuleInterop": true,
|
|
19
|
-
// use typescript to transpile jsx to js
|
|
20
|
-
"jsx": "react",
|
|
21
|
-
"baseUrl": "./src",
|
|
22
|
-
"lib": [
|
|
23
|
-
"es2015",
|
|
24
|
-
"dom.iterable",
|
|
25
|
-
"es2016.array.include",
|
|
26
|
-
"es2017.object",
|
|
27
|
-
"dom"
|
|
28
|
-
],
|
|
29
|
-
"module": "es6",
|
|
30
|
-
"removeComments": true,
|
|
31
|
-
"alwaysStrict": true,
|
|
32
|
-
"allowUnreachableCode": false,
|
|
33
|
-
"noImplicitAny": false,
|
|
34
|
-
"noImplicitThis": true,
|
|
35
|
-
"noUnusedLocals": true,
|
|
36
|
-
"noUnusedParameters": true,
|
|
37
|
-
"noImplicitReturns": true,
|
|
38
|
-
"noFallthroughCasesInSwitch": true,
|
|
39
|
-
"forceConsistentCasingInFileNames": true,
|
|
40
|
-
"importHelpers": true,
|
|
41
|
-
"resolveJsonModule": true,
|
|
42
|
-
"typeRoots": [
|
|
43
|
-
"./node_modules/@types",
|
|
44
|
-
"./node_modules/@aarhus-university/au-designsystem-delphinus/types"
|
|
45
|
-
]
|
|
46
|
-
},
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
// Target latest version of ECMAScript.
|
|
4
|
+
"target": "esnext",
|
|
5
|
+
// path to output directory
|
|
6
|
+
"outDir": "../wwwroot/js",
|
|
7
|
+
// enable strict null checks as a best practice
|
|
8
|
+
"strictNullChecks": true,
|
|
9
|
+
// Search under node_modules for non-relative imports.
|
|
10
|
+
"moduleResolution": "node",
|
|
11
|
+
// Process & infer types from .js files.
|
|
12
|
+
"allowJs": true,
|
|
13
|
+
// Don't emit; allow Babel to transform files.
|
|
14
|
+
"noEmit": true,
|
|
15
|
+
// Enable strictest settings like strictNullChecks & noImplicitAny.
|
|
16
|
+
"strict": true,
|
|
17
|
+
// Import non-ES modules as default imports.
|
|
18
|
+
"esModuleInterop": true,
|
|
19
|
+
// use typescript to transpile jsx to js
|
|
20
|
+
"jsx": "react",
|
|
21
|
+
"baseUrl": "./src",
|
|
22
|
+
"lib": [
|
|
23
|
+
"es2015",
|
|
24
|
+
"dom.iterable",
|
|
25
|
+
"es2016.array.include",
|
|
26
|
+
"es2017.object",
|
|
27
|
+
"dom"
|
|
28
|
+
],
|
|
29
|
+
"module": "es6",
|
|
30
|
+
"removeComments": true,
|
|
31
|
+
"alwaysStrict": true,
|
|
32
|
+
"allowUnreachableCode": false,
|
|
33
|
+
"noImplicitAny": false,
|
|
34
|
+
"noImplicitThis": true,
|
|
35
|
+
"noUnusedLocals": true,
|
|
36
|
+
"noUnusedParameters": true,
|
|
37
|
+
"noImplicitReturns": true,
|
|
38
|
+
"noFallthroughCasesInSwitch": true,
|
|
39
|
+
"forceConsistentCasingInFileNames": true,
|
|
40
|
+
"importHelpers": true,
|
|
41
|
+
"resolveJsonModule": true,
|
|
42
|
+
"typeRoots": [
|
|
43
|
+
"./node_modules/@types",
|
|
44
|
+
"./node_modules/@aarhus-university/au-designsystem-delphinus/types"
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
47
|
}
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
declare namespace AU {
|
|
2
|
-
export interface IUserContext {
|
|
3
|
-
auId: number,
|
|
4
|
-
firstNames: string,
|
|
5
|
-
lastName: string,
|
|
6
|
-
name: string,
|
|
7
|
-
preferredLanguage: string,
|
|
8
|
-
userName: string,
|
|
9
|
-
memberOfGroups: IAdGroup[],
|
|
10
|
-
impersonatingUser: IUserContext | null,
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export interface IAdGroup {
|
|
14
|
-
id: string,
|
|
15
|
-
name: string,
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
export interface ICountryCode {
|
|
19
|
-
da: string,
|
|
20
|
-
en: string,
|
|
21
|
-
code: number,
|
|
22
|
-
important?: boolean | undefined,
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export interface IPhoneNumber {
|
|
26
|
-
prefix: string,
|
|
27
|
-
number: string,
|
|
28
|
-
}
|
|
29
|
-
}
|
|
1
|
+
declare namespace AU {
|
|
2
|
+
export interface IUserContext {
|
|
3
|
+
auId: number,
|
|
4
|
+
firstNames: string,
|
|
5
|
+
lastName: string,
|
|
6
|
+
name: string,
|
|
7
|
+
preferredLanguage: string,
|
|
8
|
+
userName: string,
|
|
9
|
+
memberOfGroups: IAdGroup[],
|
|
10
|
+
impersonatingUser: IUserContext | null,
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export interface IAdGroup {
|
|
14
|
+
id: string,
|
|
15
|
+
name: string,
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export interface ICountryCode {
|
|
19
|
+
da: string,
|
|
20
|
+
en: string,
|
|
21
|
+
code: number,
|
|
22
|
+
important?: boolean | undefined,
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export interface IPhoneNumber {
|
|
26
|
+
prefix: string,
|
|
27
|
+
number: string,
|
|
28
|
+
}
|
|
29
|
+
}
|