@mjhls/mjh-framework 1.0.624 → 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 CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
- # mjh-framework v. 1.0.624
2
+ # mjh-framework v. 1.0.625
3
3
 
4
4
  > Foundation Framework
5
5
 
@@ -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 });
@@ -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 });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mjhls/mjh-framework",
3
- "version": "1.0.624",
3
+ "version": "1.0.625",
4
4
  "description": "Foundation Framework",
5
5
  "author": "mjh-framework",
6
6
  "license": "MIT",