@bento-core/query-bar 1.0.1-icdc.10 → 1.0.1-icdc.11
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.
|
@@ -125,9 +125,9 @@ const QueryUrl = _ref2 => {
|
|
|
125
125
|
};
|
|
126
126
|
const styles = () => ({
|
|
127
127
|
urlContainer: {
|
|
128
|
+
display: 'flex',
|
|
128
129
|
marginTop: '10px',
|
|
129
|
-
minHeight: '10px'
|
|
130
|
-
marginBottom: '10px'
|
|
130
|
+
minHeight: '10px'
|
|
131
131
|
},
|
|
132
132
|
link: {
|
|
133
133
|
lineBreak: 'anywhere',
|
|
@@ -166,7 +166,6 @@ const styles = () => ({
|
|
|
166
166
|
},
|
|
167
167
|
viewLinkToggleBtn: {
|
|
168
168
|
height: '20px',
|
|
169
|
-
marginRight: '10px',
|
|
170
169
|
fontFamily: 'Nunito',
|
|
171
170
|
fontSize: '12px',
|
|
172
171
|
fontWeight: '500',
|
|
@@ -177,6 +176,7 @@ const styles = () => ({
|
|
|
177
176
|
textTransform: 'none',
|
|
178
177
|
color: '#fff',
|
|
179
178
|
float: 'left',
|
|
179
|
+
margin: '0px 10px 0px 0px',
|
|
180
180
|
'&:hover': {
|
|
181
181
|
backgroundColor: '#1D79A8',
|
|
182
182
|
color: '#fff'
|
|
@@ -201,6 +201,7 @@ const styles = () => ({
|
|
|
201
201
|
},
|
|
202
202
|
copyIconBtn: {
|
|
203
203
|
padding: '0px',
|
|
204
|
+
height: '20px',
|
|
204
205
|
marginLeft: '10px',
|
|
205
206
|
float: 'left'
|
|
206
207
|
}
|
|
@@ -27,12 +27,12 @@ var _default = {
|
|
|
27
27
|
* root path of bento app
|
|
28
28
|
* @var {boolean}
|
|
29
29
|
*/
|
|
30
|
-
rootPath:
|
|
30
|
+
rootPath: null,
|
|
31
31
|
/**
|
|
32
32
|
* display query URL
|
|
33
33
|
* @var {boolean}
|
|
34
34
|
*/
|
|
35
|
-
viewQueryURL:
|
|
35
|
+
viewQueryURL: false
|
|
36
36
|
},
|
|
37
37
|
/* Component Helper Functions */
|
|
38
38
|
functions: {
|
package/package.json
CHANGED
|
@@ -156,9 +156,9 @@ const QueryUrl = ({
|
|
|
156
156
|
|
|
157
157
|
const styles = () => ({
|
|
158
158
|
urlContainer: {
|
|
159
|
+
display: 'flex',
|
|
159
160
|
marginTop: '10px',
|
|
160
161
|
minHeight: '10px',
|
|
161
|
-
marginBottom: '10px',
|
|
162
162
|
},
|
|
163
163
|
link: {
|
|
164
164
|
lineBreak: 'anywhere',
|
|
@@ -197,7 +197,6 @@ const styles = () => ({
|
|
|
197
197
|
},
|
|
198
198
|
viewLinkToggleBtn: {
|
|
199
199
|
height: '20px',
|
|
200
|
-
marginRight: '10px',
|
|
201
200
|
fontFamily: 'Nunito',
|
|
202
201
|
fontSize: '12px',
|
|
203
202
|
fontWeight: '500',
|
|
@@ -208,6 +207,7 @@ const styles = () => ({
|
|
|
208
207
|
textTransform: 'none',
|
|
209
208
|
color: '#fff',
|
|
210
209
|
float: 'left',
|
|
210
|
+
margin: '0px 10px 0px 0px',
|
|
211
211
|
'&:hover': {
|
|
212
212
|
backgroundColor: '#1D79A8',
|
|
213
213
|
color: '#fff',
|
|
@@ -232,6 +232,7 @@ const styles = () => ({
|
|
|
232
232
|
},
|
|
233
233
|
copyIconBtn: {
|
|
234
234
|
padding: '0px',
|
|
235
|
+
height: '20px',
|
|
235
236
|
marginLeft: '10px',
|
|
236
237
|
float: 'left',
|
|
237
238
|
},
|
package/src/generators/config.js
CHANGED
|
@@ -21,12 +21,12 @@ export default {
|
|
|
21
21
|
* root path of bento app
|
|
22
22
|
* @var {boolean}
|
|
23
23
|
*/
|
|
24
|
-
rootPath:
|
|
24
|
+
rootPath: null,
|
|
25
25
|
/**
|
|
26
26
|
* display query URL
|
|
27
27
|
* @var {boolean}
|
|
28
28
|
*/
|
|
29
|
-
viewQueryURL:
|
|
29
|
+
viewQueryURL: false,
|
|
30
30
|
},
|
|
31
31
|
|
|
32
32
|
/* Component Helper Functions */
|