@mjhls/mjh-framework 1.0.623 → 1.0.625
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/README.md +1 -1
- package/dist/cjs/NavNative.js +15 -0
- package/dist/esm/NavNative.js +15 -0
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/cjs/NavNative.js
CHANGED
|
@@ -331,6 +331,21 @@ var NavNative = function NavNative(props) {
|
|
|
331
331
|
React__default.createElement(
|
|
332
332
|
NavDropdown,
|
|
333
333
|
{ title: row.name, id: 'basic-nav-dropdown' },
|
|
334
|
+
row.url && React__default.createElement(
|
|
335
|
+
'a',
|
|
336
|
+
{
|
|
337
|
+
className: 'dropdownlist-expand-btn',
|
|
338
|
+
href: row.url,
|
|
339
|
+
style: {
|
|
340
|
+
position: 'absolute',
|
|
341
|
+
top: '0px',
|
|
342
|
+
right: '0px',
|
|
343
|
+
cursor: 'pointer',
|
|
344
|
+
color: socialIconVariant === 'dark' ? '#000' : '#ffffff',
|
|
345
|
+
padding: '5px 10px'
|
|
346
|
+
} },
|
|
347
|
+
'View More'
|
|
348
|
+
),
|
|
334
349
|
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
335
350
|
if (ddRow.type === 'divider') {
|
|
336
351
|
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|
package/dist/esm/NavNative.js
CHANGED
|
@@ -324,6 +324,21 @@ var NavNative = function NavNative(props) {
|
|
|
324
324
|
React__default.createElement(
|
|
325
325
|
NavDropdown,
|
|
326
326
|
{ title: row.name, id: 'basic-nav-dropdown' },
|
|
327
|
+
row.url && React__default.createElement(
|
|
328
|
+
'a',
|
|
329
|
+
{
|
|
330
|
+
className: 'dropdownlist-expand-btn',
|
|
331
|
+
href: row.url,
|
|
332
|
+
style: {
|
|
333
|
+
position: 'absolute',
|
|
334
|
+
top: '0px',
|
|
335
|
+
right: '0px',
|
|
336
|
+
cursor: 'pointer',
|
|
337
|
+
color: socialIconVariant === 'dark' ? '#000' : '#ffffff',
|
|
338
|
+
padding: '5px 10px'
|
|
339
|
+
} },
|
|
340
|
+
'View More'
|
|
341
|
+
),
|
|
327
342
|
row.subQuery && row.subQuery.map(function (ddRow, subIndex) {
|
|
328
343
|
if (ddRow.type === 'divider') {
|
|
329
344
|
return React__default.createElement(NavDropdown.Divider, { key: subIndex });
|