@dvrd/dvr-controls 1.0.14 → 1.0.15
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/index.ts +8 -1
- package/package.json +28 -23
package/index.ts
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
5
|
import './src/style/common-icons.scss';
|
|
6
|
+
import {library} from '@fortawesome/fontawesome-svg-core';
|
|
7
|
+
import {fab} from '@fortawesome/free-brands-svg-icons';
|
|
8
|
+
import {far} from '@fortawesome/free-regular-svg-icons';
|
|
9
|
+
import {fas} from '@fortawesome/free-solid-svg-icons';
|
|
10
|
+
|
|
11
|
+
library.add(fab, far, fas);
|
|
12
|
+
|
|
6
13
|
|
|
7
14
|
import ButtonController from "./src/js/button/buttonController";
|
|
8
15
|
import CheckboxController from "./src/js/checkbox/checkboxController";
|
|
@@ -37,7 +44,7 @@ import PDFTemplateCreator from './src/js/pdf/pdfTemplateCreator';
|
|
|
37
44
|
import SidebarMenu from './src/js/sidebarMenu/sidebarMenu';
|
|
38
45
|
import Info from './src/js/info/info';
|
|
39
46
|
import Media from './src/js/media/media';
|
|
40
|
-
import DvrdButton, {
|
|
47
|
+
import DvrdButton, {DvrdButtonProps} from './src/js/button/dvrdButton';
|
|
41
48
|
import DvrdDatePicker from './src/js/date/dvrdDatePicker';
|
|
42
49
|
import DvrdInputController from './src/js/textField/dvrdInputController';
|
|
43
50
|
import DvrdNumberInput from './src/js/textField/dvrdNumberInput';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dvrd/dvr-controls",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
4
4
|
"description": "Custom web controls",
|
|
5
5
|
"main": "index.ts",
|
|
6
6
|
"scripts": {},
|
|
@@ -16,27 +16,32 @@
|
|
|
16
16
|
"2": "ie >= 11"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@types/js-cookie": "
|
|
20
|
-
"@types/lodash": "
|
|
21
|
-
"@types/node": "
|
|
22
|
-
"@types/react": "
|
|
23
|
-
"@types/react-dom": "
|
|
24
|
-
"@types/react-router-dom": "
|
|
25
|
-
"@types/uuid": "
|
|
26
|
-
"@types/react-color": "
|
|
27
|
-
"@types/dompurify": "
|
|
28
|
-
"classnames": "
|
|
29
|
-
"cross-env": "
|
|
30
|
-
"js-cookie": "
|
|
31
|
-
"lodash": "
|
|
32
|
-
"moment": "
|
|
33
|
-
"react": "
|
|
34
|
-
"react-dom": "
|
|
35
|
-
"react-color": "
|
|
36
|
-
"react-router-dom": "
|
|
37
|
-
"react-rnd": "
|
|
38
|
-
"typescript": "4.
|
|
39
|
-
"uuid": "
|
|
40
|
-
"dompurify": "
|
|
19
|
+
"@types/js-cookie": "3.0.2",
|
|
20
|
+
"@types/lodash": "4.14.189",
|
|
21
|
+
"@types/node": "18.11.9",
|
|
22
|
+
"@types/react": "18.0.25",
|
|
23
|
+
"@types/react-dom": "18.0.9",
|
|
24
|
+
"@types/react-router-dom": "5.3.3",
|
|
25
|
+
"@types/uuid": "8.3.4",
|
|
26
|
+
"@types/react-color": "3.0.6",
|
|
27
|
+
"@types/dompurify": "2.4.0",
|
|
28
|
+
"classnames": "2.3.2",
|
|
29
|
+
"cross-env": "7.0.3",
|
|
30
|
+
"js-cookie": "3.0.1",
|
|
31
|
+
"lodash": "4.17.21",
|
|
32
|
+
"moment": "2.29.4",
|
|
33
|
+
"react": "18.2.0",
|
|
34
|
+
"react-dom": "18.2.0",
|
|
35
|
+
"react-color": "2.19.3",
|
|
36
|
+
"react-router-dom": "6.4.3",
|
|
37
|
+
"react-rnd": "10.3.7",
|
|
38
|
+
"typescript": "4.9.3",
|
|
39
|
+
"uuid": "9.0.0",
|
|
40
|
+
"dompurify": "2.4.1",
|
|
41
|
+
"@fortawesome/fontawesome-svg-core": "6.2.1",
|
|
42
|
+
"@fortawesome/free-solid-svg-icons": "6.2.1",
|
|
43
|
+
"@fortawesome/free-brands-svg-icons": "^6.2.1",
|
|
44
|
+
"@fortawesome/free-regular-svg-icons": "^6.2.1",
|
|
45
|
+
"@fortawesome/react-fontawesome": "0.2.0"
|
|
41
46
|
}
|
|
42
47
|
}
|