@evoke-platform/ui-components 1.0.0-dev.165 → 1.0.0-dev.167
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/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@evoke-platform/ui-components",
|
3
|
-
"version": "1.0.0-dev.
|
3
|
+
"version": "1.0.0-dev.167",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/published/index.js",
|
6
6
|
"module": "dist/published/index.js",
|
@@ -13,7 +13,8 @@
|
|
13
13
|
"exports": {
|
14
14
|
".": "./dist/published/index.js",
|
15
15
|
"./colors": "./dist/published/colors/index.js",
|
16
|
-
"./icons": "./dist/published/icons/index.js"
|
16
|
+
"./icons": "./dist/published/icons/index.js",
|
17
|
+
"./types": "./types.ts"
|
17
18
|
},
|
18
19
|
"scripts": {
|
19
20
|
"test": "jest",
|
@@ -1,81 +0,0 @@
|
|
1
|
-
.dxreControl {
|
2
|
-
font: 12px Tahoma, Geneva, sans-serif;
|
3
|
-
box-sizing: border-box;
|
4
|
-
border-width: 1px;
|
5
|
-
border-style: solid;
|
6
|
-
border-radius: 6px;
|
7
|
-
min-height: calc(100vh - 232px);
|
8
|
-
}
|
9
|
-
|
10
|
-
/* MUI-ish styles for devexpress modal */
|
11
|
-
.dx-overlay-content.dx-popup-normal {
|
12
|
-
border-radius: 8px;
|
13
|
-
font-family: 'Roboto', sans-serif;
|
14
|
-
font-size: 14px;
|
15
|
-
color: rgba(0, 0, 0, 0.87);
|
16
|
-
background-color: #ffffff;
|
17
|
-
box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14),
|
18
|
-
0px 9px 46px 8px rgba(0, 0, 0, 0.12);
|
19
|
-
transition: none !important;
|
20
|
-
}
|
21
|
-
|
22
|
-
.dx-popup-title {
|
23
|
-
border: none;
|
24
|
-
}
|
25
|
-
|
26
|
-
/* Apply Material UI-like styles to buttons */
|
27
|
-
.dx-overlay-content.dx-popup-normal .dx-toolbar-button .dx-button-content {
|
28
|
-
font-family: 'Roboto', sans-serif;
|
29
|
-
font-size: 14px;
|
30
|
-
}
|
31
|
-
|
32
|
-
.dx-overlay-content .dx-toolbar-after .dx-toolbar-button .dx-button-mode-contained {
|
33
|
-
border-radius: 0px;
|
34
|
-
border: none;
|
35
|
-
}
|
36
|
-
|
37
|
-
/* MUI-ish styles for the Ok button*/
|
38
|
-
.dx-overlay-content .dx-toolbar-after .dx-toolbar-button:nth-child(1) .dx-button-content {
|
39
|
-
border-radius: 8px;
|
40
|
-
line-height: 1.75;
|
41
|
-
letter-spacing: 0.02857em;
|
42
|
-
color: #ffffff;
|
43
|
-
background-color: #0075a7;
|
44
|
-
box-shadow: none;
|
45
|
-
}
|
46
|
-
|
47
|
-
/* MUI-ish styles for the Cancel button */
|
48
|
-
.dx-overlay-content.dx-popup-normal .dx-toolbar-button:nth-child(2) .dx-button-content {
|
49
|
-
border-radius: 8px;
|
50
|
-
line-height: 1.75;
|
51
|
-
letter-spacing: 0.02857em;
|
52
|
-
margin-right: 10px;
|
53
|
-
color: #0075a7;
|
54
|
-
background-color: transparent;
|
55
|
-
border: 1px solid #0075a7;
|
56
|
-
box-shadow: none;
|
57
|
-
}
|
58
|
-
|
59
|
-
/* Cancel button before ok button */
|
60
|
-
.dx-toolbar-after {
|
61
|
-
display: flex;
|
62
|
-
flex-direction: row-reverse;
|
63
|
-
}
|
64
|
-
|
65
|
-
/* MUI-ish styles for tabs */
|
66
|
-
.dx-tabs-wrapper .dx-tab {
|
67
|
-
font-family: 'Roboto', sans-serif;
|
68
|
-
font-size: 14px;
|
69
|
-
color: rgba(0, 0, 0, 0.6);
|
70
|
-
border-bottom: 2px solid transparent;
|
71
|
-
transition: border-bottom-color 0.2s ease-in-out;
|
72
|
-
padding-bottom: 8px;
|
73
|
-
}
|
74
|
-
|
75
|
-
.dx-tabs-wrapper .dx-tab-selected {
|
76
|
-
border-bottom-color: #1976d2;
|
77
|
-
}
|
78
|
-
/*TODO: figure out why this level of specificity doesn't remove the border on a focused tab container */
|
79
|
-
.dx-item.dx-tab.dx-tab-selected.dx-state-focused {
|
80
|
-
border: none !important;
|
81
|
-
}
|