@steroidsjs/bootstrap 3.0.0-beta.103 → 3.0.0-beta.105
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.
|
@@ -33,10 +33,10 @@ function TooltipView(props) {
|
|
|
33
33
|
props.calculatePosition(tooltipRef.current.getBoundingClientRect(), arrowRef.current.getBoundingClientRect());
|
|
34
34
|
}, [props.calculatePosition]);
|
|
35
35
|
var bem = (0, hooks_1.useBem)('TooltipView');
|
|
36
|
-
return (React.createElement("div", { ref: tooltipRef, className: bem.block({
|
|
36
|
+
return (React.createElement("div", { ref: tooltipRef, className: bem(bem.block({
|
|
37
37
|
show: props.isTooltipVisible,
|
|
38
38
|
position: props.position
|
|
39
|
-
}), style: props.style },
|
|
39
|
+
}), props.className), style: props.style },
|
|
40
40
|
React.createElement("div", { ref: arrowRef, className: bem.element('arrow', { position: props.position }), style: props.arrowPosition }),
|
|
41
41
|
React.createElement("div", { className: bem.element('content') },
|
|
42
42
|
React.createElement("span", null, props.content))));
|
package/list/Grid/GridView.scss
CHANGED
|
@@ -23,7 +23,6 @@ $grid-td-background-color: var(--grid-td-background-color);
|
|
|
23
23
|
$grid-td-alternating-color: var(--grid-td-alternating-color);
|
|
24
24
|
|
|
25
25
|
.GridView {
|
|
26
|
-
overflow-x: auto;
|
|
27
26
|
$root: &;
|
|
28
27
|
|
|
29
28
|
text-align: left;
|
|
@@ -32,7 +31,6 @@ $grid-td-alternating-color: var(--grid-td-alternating-color);
|
|
|
32
31
|
|
|
33
32
|
&__table {
|
|
34
33
|
width: 100%;
|
|
35
|
-
border: none;
|
|
36
34
|
border-spacing: 0;
|
|
37
35
|
border-collapse: separate;
|
|
38
36
|
border: 1px solid $grid-border-color;
|
|
@@ -83,7 +81,7 @@ $grid-td-alternating-color: var(--grid-td-alternating-color);
|
|
|
83
81
|
}
|
|
84
82
|
|
|
85
83
|
&_alternatingColors{
|
|
86
|
-
#{$root}__table tbody tr:nth-child(even) td {
|
|
84
|
+
#{$root}__table tbody tr:nth-child(even) td {
|
|
87
85
|
background-color: $grid-td-alternating-color;
|
|
88
86
|
}
|
|
89
87
|
}
|
|
@@ -129,7 +127,7 @@ $grid-td-alternating-color: var(--grid-td-alternating-color);
|
|
|
129
127
|
|
|
130
128
|
&__column {
|
|
131
129
|
|
|
132
|
-
.IconView {
|
|
130
|
+
.IconView {
|
|
133
131
|
display: inline-block;
|
|
134
132
|
width: 24px;
|
|
135
133
|
height: 24px;
|
|
@@ -140,16 +138,16 @@ $grid-td-alternating-color: var(--grid-td-alternating-color);
|
|
|
140
138
|
}
|
|
141
139
|
}
|
|
142
140
|
|
|
143
|
-
&_hasIcon {
|
|
144
|
-
display: flex;
|
|
141
|
+
&_hasIcon {
|
|
142
|
+
display: flex;
|
|
145
143
|
flex-flow: row nowrap;
|
|
146
144
|
align-items: center;
|
|
147
145
|
|
|
148
|
-
.IconView {
|
|
149
|
-
margin-left: 8px;
|
|
146
|
+
.IconView {
|
|
147
|
+
margin-left: 8px;
|
|
150
148
|
}
|
|
151
149
|
|
|
152
|
-
&-left {
|
|
150
|
+
&-left {
|
|
153
151
|
span {
|
|
154
152
|
&:nth-child(1) {
|
|
155
153
|
order: 2;
|
|
@@ -160,7 +158,7 @@ $grid-td-alternating-color: var(--grid-td-alternating-color);
|
|
|
160
158
|
}
|
|
161
159
|
}
|
|
162
160
|
|
|
163
|
-
.IconView {
|
|
161
|
+
.IconView {
|
|
164
162
|
margin-left: 0;
|
|
165
163
|
margin-right: 8px;
|
|
166
164
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steroidsjs/bootstrap",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.105",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "Vladimir Kozhin <hello@kozhindev.com>",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"react-use": "^17.4.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@steroidsjs/core": "^3.0 || >=3.0.0-beta.
|
|
40
|
+
"@steroidsjs/core": "^3.0 || >=3.0.0-beta.90",
|
|
41
41
|
"@steroidsjs/eslint-config": "^2.1.4",
|
|
42
42
|
"@types/enzyme": "^3.10.8",
|
|
43
43
|
"@types/googlemaps": "^3.43.3",
|