KEYCLOAK-10193: Upgrade PatternFly and PatternFly React
This commit is contained in:
parent
fa1667311c
commit
c37c4d2a82
5 changed files with 80 additions and 53 deletions
|
@ -153,13 +153,13 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="pf-c-page__header-tools">
|
<div class="pf-c-page__header-tools">
|
||||||
<#if referrer?has_content && referrer_uri?has_content>
|
<#if referrer?has_content && referrer_uri?has_content>
|
||||||
<div class="pf-c-page__header-tools-group pf-m-icons pf-screen-reader">
|
<div class="pf-c-page__header-tools-group pf-m-icons">
|
||||||
<a href="${referrer_uri}" id="referrer" tabindex="0"><span class="pf-icon pf-icon-arrow"></span>${msg("backTo",referrerName)}</a>
|
<a href="${referrer_uri}" id="referrer" tabindex="0"><span class="pf-icon pf-icon-arrow"></span>${msg("backTo",referrerName)}</a>
|
||||||
</div>
|
</div>
|
||||||
</#if>
|
</#if>
|
||||||
|
|
||||||
<#if realm.internationalizationEnabled && supportedLocales?size gt 1>
|
<#if realm.internationalizationEnabled && supportedLocales?size gt 1>
|
||||||
<div class="pf-c-page__header-tools-group pf-screen-reader pf-m-icons">
|
<div class="pf-c-page__header-tools-group pf-m-icons">
|
||||||
<div id="landing-locale-dropdown" class="pf-c-dropdown">
|
<div id="landing-locale-dropdown" class="pf-c-dropdown">
|
||||||
<button onclick="toggleLocaleDropdown();" class="pf-c-dropdown__toggle pf-m-plain" id="landing-locale-dropdown-button" aria-expanded="false" aria-haspopup="true">
|
<button onclick="toggleLocaleDropdown();" class="pf-c-dropdown__toggle pf-m-plain" id="landing-locale-dropdown-button" aria-expanded="false" aria-haspopup="true">
|
||||||
<span class="pf-c-dropdown__toggle-text">
|
<span class="pf-c-dropdown__toggle-text">
|
||||||
|
@ -180,7 +180,7 @@
|
||||||
</div>
|
</div>
|
||||||
</#if>
|
</#if>
|
||||||
|
|
||||||
<div class="pf-c-page__header-tools-group pf-m-icons pf-screen-reader">
|
<div class="pf-c-page__header-tools-group pf-m-icons">
|
||||||
<button id="signInButton" tabindex="0" style="display:none" onclick="keycloak.login();" class="pf-c-button pf-m-primary" type="button">${msg("doLogIn")}</button>
|
<button id="signInButton" tabindex="0" style="display:none" onclick="keycloak.login();" class="pf-c-button pf-m-primary" type="button">${msg("doLogIn")}</button>
|
||||||
<button id="signOutButton" tabindex="0" style="display:none" onclick="keycloak.logout();" class="pf-c-button pf-m-primary" type="button">${msg("doSignOut")}</button>
|
<button id="signOutButton" tabindex="0" style="display:none" onclick="keycloak.logout();" class="pf-c-button pf-m-primary" type="button">${msg("doSignOut")}</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -64,7 +64,7 @@ export class PageToolbar extends React.Component<PageToolbarProps, PageToolbarSt
|
||||||
<Toolbar>
|
<Toolbar>
|
||||||
{this.hasReferrer &&
|
{this.hasReferrer &&
|
||||||
<ToolbarGroup key='referrerGroup'>
|
<ToolbarGroup key='referrerGroup'>
|
||||||
<ToolbarItem className="pf-m-icons pf-screen-reader" key='referrer'>
|
<ToolbarItem className="pf-m-icons" key='referrer'>
|
||||||
<ReferrerLink/>
|
<ReferrerLink/>
|
||||||
</ToolbarItem>
|
</ToolbarItem>
|
||||||
</ToolbarGroup>
|
</ToolbarGroup>
|
||||||
|
@ -72,12 +72,12 @@ export class PageToolbar extends React.Component<PageToolbarProps, PageToolbarSt
|
||||||
|
|
||||||
<ToolbarGroup key='secondGroup'>
|
<ToolbarGroup key='secondGroup'>
|
||||||
{features.isInternationalizationEnabled &&
|
{features.isInternationalizationEnabled &&
|
||||||
<ToolbarItem className="pf-m-icons pf-screen-reader" key='locale'>
|
<ToolbarItem className="pf-m-icons" key='locale'>
|
||||||
<LocaleDropdown/>
|
<LocaleDropdown/>
|
||||||
</ToolbarItem>
|
</ToolbarItem>
|
||||||
}
|
}
|
||||||
|
|
||||||
<ToolbarItem className="pf-m-icons pf-screen-reader" key='logout'>
|
<ToolbarItem className="pf-m-icons" key='logout'>
|
||||||
<LogoutButton/>
|
<LogoutButton/>
|
||||||
</ToolbarItem>
|
</ToolbarItem>
|
||||||
|
|
||||||
|
|
|
@ -85,6 +85,14 @@
|
||||||
"integrity": "sha512-tXZCqWtlOOP4wgCp6RjRvLmfuhnqTLy9VHwRochJBCP2nDm27JnnuFEnXFASVyQNHk36jD1tAammsCEEqgscIQ==",
|
"integrity": "sha512-tXZCqWtlOOP4wgCp6RjRvLmfuhnqTLy9VHwRochJBCP2nDm27JnnuFEnXFASVyQNHk36jD1tAammsCEEqgscIQ==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
|
"@babel/runtime": {
|
||||||
|
"version": "7.4.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.4.4.tgz",
|
||||||
|
"integrity": "sha512-w0+uT71b6Yi7i5SE0co4NioIpSYS6lLiXvCzWzGSKvpK5vdQtCbICHMj+gbAKAOtxiV6HsVh/MBdaF9EQ6faSg==",
|
||||||
|
"requires": {
|
||||||
|
"regenerator-runtime": "^0.13.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
"@babel/template": {
|
"@babel/template": {
|
||||||
"version": "7.2.2",
|
"version": "7.2.2",
|
||||||
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.2.2.tgz",
|
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.2.2.tgz",
|
||||||
|
@ -197,18 +205,18 @@
|
||||||
"integrity": "sha512-rLu3wcBWH4P5q1CGoSSH/i9hrXs7SlbRLkoq9IGuoPYNGQvDJ3pt/wmOM+XgYjIDRMVIdkUWt0RsfzF50JfnCw=="
|
"integrity": "sha512-rLu3wcBWH4P5q1CGoSSH/i9hrXs7SlbRLkoq9IGuoPYNGQvDJ3pt/wmOM+XgYjIDRMVIdkUWt0RsfzF50JfnCw=="
|
||||||
},
|
},
|
||||||
"@patternfly/patternfly": {
|
"@patternfly/patternfly": {
|
||||||
"version": "1.0.248",
|
"version": "2.6.6",
|
||||||
"resolved": "https://registry.npmjs.org/@patternfly/patternfly/-/patternfly-1.0.248.tgz",
|
"resolved": "https://registry.npmjs.org/@patternfly/patternfly/-/patternfly-2.6.6.tgz",
|
||||||
"integrity": "sha512-x+fz3cP0nyFsK0ZRt1H58ESZxoy4wKqqb2uhyaNIg5jC3x5KC0PCr0gfUmBvNOiHnOePmc+ZC5nWcAOKN9tGBA=="
|
"integrity": "sha512-lKbsTE/VlU1BiVzeo0BhfDe/qeqIqheejBz0qAm3CYuHyfUXd4+Uu+/9lfEB2EMb+wXpK4Np74OHtYCC82fP0Q=="
|
||||||
},
|
},
|
||||||
"@patternfly/react-core": {
|
"@patternfly/react-core": {
|
||||||
"version": "2.9.2",
|
"version": "3.16.10",
|
||||||
"resolved": "https://registry.npmjs.org/@patternfly/react-core/-/react-core-2.9.2.tgz",
|
"resolved": "https://registry.npmjs.org/@patternfly/react-core/-/react-core-3.16.10.tgz",
|
||||||
"integrity": "sha512-v93pAA9dXTzsgFeR8W4+fg0kC0joB4BISFoSqzb22+/cNvSnEypC/DjBN4pOUEoBvsFC/JI8FotQoj9ZAx3GAw==",
|
"integrity": "sha512-ASoNNuC+S2UjUeT2aR7LsAuDJpvXzMHYCjRc9WmXD9S52nvqA5p4SS9cXV60RCTvRpUbXJ7/55gnxi4Dt9u6/A==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@patternfly/react-icons": "^3.6.1",
|
"@patternfly/react-icons": "^3.8.1",
|
||||||
"@patternfly/react-styles": "^2.4.0",
|
"@patternfly/react-styles": "^3.2.0",
|
||||||
"@patternfly/react-tokens": "^2.2.1",
|
"@patternfly/react-tokens": "^2.5.1",
|
||||||
"@tippy.js/react": "^1.1.1",
|
"@tippy.js/react": "^1.1.1",
|
||||||
"emotion": "^9.2.9",
|
"emotion": "^9.2.9",
|
||||||
"exenv": "^1.2.2",
|
"exenv": "^1.2.2",
|
||||||
|
@ -216,14 +224,14 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@patternfly/react-icons": {
|
"@patternfly/react-icons": {
|
||||||
"version": "3.6.1",
|
"version": "3.8.1",
|
||||||
"resolved": "https://registry.npmjs.org/@patternfly/react-icons/-/react-icons-3.6.1.tgz",
|
"resolved": "https://registry.npmjs.org/@patternfly/react-icons/-/react-icons-3.8.1.tgz",
|
||||||
"integrity": "sha512-7PkP7NC3sDmsFAnQIGl+9p14vgx7gj0TZSwtL1ABkAEV9tXcEjWsyyZP2fahfTKVE9aPrOZ/YINsr8+iGCOTnA=="
|
"integrity": "sha512-0LCuW4qdDQdiRcnmDBhTdnJZIk1ZlP0mn9VcnnUQ5qkLlJPFtiipcgr+RoQl56ht3xt6pXDKy6Gvv7Wwz/BVkw=="
|
||||||
},
|
},
|
||||||
"@patternfly/react-styles": {
|
"@patternfly/react-styles": {
|
||||||
"version": "2.4.0",
|
"version": "3.2.0",
|
||||||
"resolved": "https://registry.npmjs.org/@patternfly/react-styles/-/react-styles-2.4.0.tgz",
|
"resolved": "https://registry.npmjs.org/@patternfly/react-styles/-/react-styles-3.2.0.tgz",
|
||||||
"integrity": "sha512-BJQtg4zjj5Gw6OixHu2MGiT2T3vFTvyiGSXPQ+wk+vqR/wl0Y7/OOGNqI3fGYm1ON4q2ySOlGuJdHF+1NLbVyA==",
|
"integrity": "sha512-8M7bo4kPvypHlbzuynV53xjk5176EktfEgZ283sfHmvUlU3Yvq2+m8hS9ERHE9gd91Ip4HiyucAVVACd2gtHNQ==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@babel/helper-plugin-utils": "^7.0.0-beta.48",
|
"@babel/helper-plugin-utils": "^7.0.0-beta.48",
|
||||||
"camel-case": "^3.0.0",
|
"camel-case": "^3.0.0",
|
||||||
|
@ -240,9 +248,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@patternfly/react-tokens": {
|
"@patternfly/react-tokens": {
|
||||||
"version": "2.2.1",
|
"version": "2.5.1",
|
||||||
"resolved": "https://registry.npmjs.org/@patternfly/react-tokens/-/react-tokens-2.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/@patternfly/react-tokens/-/react-tokens-2.5.1.tgz",
|
||||||
"integrity": "sha512-DVGrHRPpNvIhS9ekn7lqvXdHHAbkCawwfc8hRCuGvGS2Z6O45u1JFTyKWTyvW9b94pigaDTArtMlp++k5o1Xpw=="
|
"integrity": "sha512-ZykUfWT4yCELXhGGwQxcNqnXwe3sqfSuoL6IlQRV6wtUKk+/et7NkVvrRwvci926+Usemr4IQVc8V9gbHqRN/A=="
|
||||||
},
|
},
|
||||||
"@tippy.js/react": {
|
"@tippy.js/react": {
|
||||||
"version": "1.1.1",
|
"version": "1.1.1",
|
||||||
|
@ -360,9 +368,9 @@
|
||||||
"integrity": "sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA=="
|
"integrity": "sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA=="
|
||||||
},
|
},
|
||||||
"acorn-globals": {
|
"acorn-globals": {
|
||||||
"version": "4.3.0",
|
"version": "4.3.2",
|
||||||
"resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.2.tgz",
|
||||||
"integrity": "sha512-hMtHj3s5RnuhvHPowpBYvJVj3rAar82JiDQHvGs1zO0l10ocX/xEdBShNHTJaboucJUsScghp74pH3s7EnHHQw==",
|
"integrity": "sha512-BbzvZhVtZP+Bs1J1HcwrQe8ycfO0wStkSGxuul3He3GkHOIZ6eTqOkPuw9IP1X3+IkOo4wiJmwkobzXYz4wewQ==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"acorn": "^6.0.1",
|
"acorn": "^6.0.1",
|
||||||
"acorn-walk": "^6.0.1"
|
"acorn-walk": "^6.0.1"
|
||||||
|
@ -838,12 +846,13 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"babel-plugin-macros": {
|
"babel-plugin-macros": {
|
||||||
"version": "2.5.0",
|
"version": "2.5.1",
|
||||||
"resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.5.0.tgz",
|
"resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.5.1.tgz",
|
||||||
"integrity": "sha512-BWw0lD0kVZAXRD3Od1kMrdmfudqzDzYv2qrN3l2ISR1HVp1EgLKfbOrYV9xmY5k3qx3RIu5uPAUZZZHpo0o5Iw==",
|
"integrity": "sha512-xN3KhAxPzsJ6OQTktCanNpIFnnMsCV+t8OloKxIL72D6+SUZYFn9qfklPgef5HyyDtzYZqqb+fs1S12+gQY82Q==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"cosmiconfig": "^5.0.5",
|
"@babel/runtime": "^7.4.2",
|
||||||
"resolve": "^1.8.1"
|
"cosmiconfig": "^5.2.0",
|
||||||
|
"resolve": "^1.10.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"babel-plugin-syntax-class-properties": {
|
"babel-plugin-syntax-class-properties": {
|
||||||
|
@ -1144,6 +1153,13 @@
|
||||||
"requires": {
|
"requires": {
|
||||||
"core-js": "^2.4.0",
|
"core-js": "^2.4.0",
|
||||||
"regenerator-runtime": "^0.11.0"
|
"regenerator-runtime": "^0.11.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"regenerator-runtime": {
|
||||||
|
"version": "0.11.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
|
||||||
|
"integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"babel-template": {
|
"babel-template": {
|
||||||
|
@ -2660,9 +2676,9 @@
|
||||||
"integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw=="
|
"integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw=="
|
||||||
},
|
},
|
||||||
"cssstyle": {
|
"cssstyle": {
|
||||||
"version": "1.2.1",
|
"version": "1.2.2",
|
||||||
"resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.2.2.tgz",
|
||||||
"integrity": "sha512-7DYm8qe+gPx/h77QlCyFmX80+fGaE/6A/Ekl0zaszYOubvySO2saYFdQ78P29D0UsULxFKCetDGNaNRUdSF+2A==",
|
"integrity": "sha512-43wY3kl1CVQSvL7wUY1qXkxVGkStjpkDmVjiIKX8R97uhajy8Bybay78uOtqvh7Q5GK75dNPfW0geWjE6qQQow==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"cssom": "0.3.x"
|
"cssom": "0.3.x"
|
||||||
}
|
}
|
||||||
|
@ -2814,16 +2830,16 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mime-db": {
|
"mime-db": {
|
||||||
"version": "1.38.0",
|
"version": "1.40.0",
|
||||||
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz",
|
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz",
|
||||||
"integrity": "sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg=="
|
"integrity": "sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA=="
|
||||||
},
|
},
|
||||||
"mime-types": {
|
"mime-types": {
|
||||||
"version": "2.1.22",
|
"version": "2.1.24",
|
||||||
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz",
|
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz",
|
||||||
"integrity": "sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog==",
|
"integrity": "sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"mime-db": "~1.38.0"
|
"mime-db": "1.40.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"mimic-fn": {
|
"mimic-fn": {
|
||||||
|
@ -2924,9 +2940,9 @@
|
||||||
"integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0="
|
"integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0="
|
||||||
},
|
},
|
||||||
"nwsapi": {
|
"nwsapi": {
|
||||||
"version": "2.1.1",
|
"version": "2.1.4",
|
||||||
"resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.1.1.tgz",
|
"resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.1.4.tgz",
|
||||||
"integrity": "sha512-T5GaA1J/d34AC8mkrFD2O0DR17kwJ702ZOtJOsS8RpbsQZVOC2/xYFb1i/cw+xdM54JIlMuojjDOYct8GIWtwg=="
|
"integrity": "sha512-iGfd9Y6SFdTNldEy2L0GUhcarIutFmk+MPWIn9dmj8NMIup03G08uUF2KGbbmv/Ux4RT0VZJoP/sVbWA6d/VIw=="
|
||||||
},
|
},
|
||||||
"oauth-sign": {
|
"oauth-sign": {
|
||||||
"version": "0.9.0",
|
"version": "0.9.0",
|
||||||
|
@ -3132,9 +3148,9 @@
|
||||||
"integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA=="
|
"integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA=="
|
||||||
},
|
},
|
||||||
"popper.js": {
|
"popper.js": {
|
||||||
"version": "1.14.7",
|
"version": "1.15.0",
|
||||||
"resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.14.7.tgz",
|
"resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.15.0.tgz",
|
||||||
"integrity": "sha512-4q1hNvoUre/8srWsH7hnoSJ5xVmIL4qgz+s4qf2TnJIMyZFUFMGH+9vE7mXynAlHSZ/NdTmmow86muD0myUkVQ=="
|
"integrity": "sha512-w010cY1oCUmI+9KwwlWki+r5jxKfTFDVoadl7MSrIujHU5MJ5OR6HTDj6Xo8aoR/QsA56x8jKjA59qGH4ELtrA=="
|
||||||
},
|
},
|
||||||
"prelude-ls": {
|
"prelude-ls": {
|
||||||
"version": "1.1.2",
|
"version": "1.1.2",
|
||||||
|
@ -3268,9 +3284,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"regenerator-runtime": {
|
"regenerator-runtime": {
|
||||||
"version": "0.11.1",
|
"version": "0.13.2",
|
||||||
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
|
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.2.tgz",
|
||||||
"integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="
|
"integrity": "sha512-S/TQAZJO+D3m9xeN1WTI8dLKBBiRgXBlTJvbWjCThHWZj9EvHK70Ff50/tYj2J/fvBY6JtFVwRuazHN2E7M9BA=="
|
||||||
},
|
},
|
||||||
"regexpp": {
|
"regexpp": {
|
||||||
"version": "2.0.1",
|
"version": "2.0.1",
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
"author": "Stan Silvert",
|
"author": "Stan Silvert",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@patternfly/patternfly": "^1.0.248",
|
"@patternfly/patternfly": "^2.6.6",
|
||||||
"@patternfly/react-core": "^2.9.2",
|
"@patternfly/react-core": "^3.16.10",
|
||||||
"axios": "^0.18.0",
|
"axios": "^0.18.0",
|
||||||
"moment": "^2.22.2",
|
"moment": "^2.22.2",
|
||||||
"react": "^16.8.5",
|
"react": "^16.8.5",
|
||||||
|
|
|
@ -72,6 +72,7 @@
|
||||||
main: './index.js',
|
main: './index.js',
|
||||||
defaultExtension: 'js',
|
defaultExtension: 'js',
|
||||||
map: {
|
map: {
|
||||||
|
'./Accordion': '@empty', //'./Accordion/index.js,
|
||||||
'./Alert': '@empty', //'./Alert/index.js',
|
'./Alert': '@empty', //'./Alert/index.js',
|
||||||
'./AboutModal': '@empty', //'./AboutModal/index.js',
|
'./AboutModal': '@empty', //'./AboutModal/index.js',
|
||||||
'./ApplicationLauncher': '@empty', //'./ApplicationLauncher/index.js',
|
'./ApplicationLauncher': '@empty', //'./ApplicationLauncher/index.js',
|
||||||
|
@ -88,10 +89,12 @@
|
||||||
'./Card/CardFooter': '@empty',
|
'./Card/CardFooter': '@empty',
|
||||||
'./Checkbox': '@empty', //'./Checkbox/index.js',
|
'./Checkbox': '@empty', //'./Checkbox/index.js',
|
||||||
'./ChipGroup': '@empty', //'./ChipGroup/index.js',
|
'./ChipGroup': '@empty', //'./ChipGroup/index.js',
|
||||||
|
'./ClipboardCopy': '@empty', //'./ClipboardCopy/index.js,
|
||||||
'./ContextSelector': '@empty', //'./ContextSelector/index.js',
|
'./ContextSelector': '@empty', //'./ContextSelector/index.js',
|
||||||
'./DataList': '@empty', //'./DataList/index.js',
|
'./DataList': '@empty', //'./DataList/index.js',
|
||||||
'./Dropdown': './Dropdown/index.js',
|
'./Dropdown': './Dropdown/index.js',
|
||||||
'./EmptyState': '@empty', //'./EmptyState/index.js',
|
'./EmptyState': '@empty', //'./EmptyState/index.js',
|
||||||
|
'./Expandable': '@empty', //'./Expandable/index.js',
|
||||||
'./Form': '@empty', //'./Form/index.js',
|
'./Form': '@empty', //'./Form/index.js',
|
||||||
'./FormSelect': '@empty', //'./FormSelect/index.js',
|
'./FormSelect': '@empty', //'./FormSelect/index.js',
|
||||||
'./InputGroup': '@empty', //'./InputGroup/index.js',
|
'./InputGroup': '@empty', //'./InputGroup/index.js',
|
||||||
|
@ -100,12 +103,14 @@
|
||||||
'./LoginPage': '@empty', //'./LoginPage/index.js',
|
'./LoginPage': '@empty', //'./LoginPage/index.js',
|
||||||
'./Modal': '@empty', //'./Modal/index.js',
|
'./Modal': '@empty', //'./Modal/index.js',
|
||||||
'./Nav': './Nav/index.js',
|
'./Nav': './Nav/index.js',
|
||||||
|
'./OptionsMenu': '@empty', //./OptionsMenu/index.js',
|
||||||
'./Page': './Page/index.js',
|
'./Page': './Page/index.js',
|
||||||
'./Popover': '@empty', //'./Popover/index.js',
|
'./Popover': '@empty', //'./Popover/index.js',
|
||||||
'./Progress': '@empty', //'./Progress/index.js',
|
'./Progress': '@empty', //'./Progress/index.js',
|
||||||
'./Pagination': '@empty', //'./Pagination/index.js',
|
'./Pagination': '@empty', //'./Pagination/index.js',
|
||||||
'./Radio': '@empty', //'./Radio/index.js',
|
'./Radio': '@empty', //'./Radio/index.js',
|
||||||
'./Select': '@empty', //'./Select/index.js',
|
'./Select': '@empty', //'./Select/index.js',
|
||||||
|
'./SkipToContent': '@empty', //'./SkipToContent/index.js',
|
||||||
'./Switch': '@empty', //'./Switch/index.js',
|
'./Switch': '@empty', //'./Switch/index.js',
|
||||||
'./Tabs': '@empty', //'./Tabs/index.js',
|
'./Tabs': '@empty', //'./Tabs/index.js',
|
||||||
'./Text': '@empty', //'./Text/index.js',
|
'./Text': '@empty', //'./Text/index.js',
|
||||||
|
@ -133,6 +138,10 @@
|
||||||
defaultExtension: 'js',
|
defaultExtension: 'js',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
'npm:@patternfly/react-core/dist/umd/@patternfly/patternfly': {
|
||||||
|
defaultExtension: 'js',
|
||||||
|
},
|
||||||
|
|
||||||
// Layouts that map to @empty will not be loaded.
|
// Layouts that map to @empty will not be loaded.
|
||||||
// To load a layout, replace @empty with its commented path.
|
// To load a layout, replace @empty with its commented path.
|
||||||
'npm:@patternfly/react-core/dist/umd/layouts': {
|
'npm:@patternfly/react-core/dist/umd/layouts': {
|
||||||
|
@ -747,6 +756,7 @@
|
||||||
'./icons/om-icon.js': '@empty',
|
'./icons/om-icon.js': '@empty',
|
||||||
'./icons/otter-icon.js': '@empty',
|
'./icons/otter-icon.js': '@empty',
|
||||||
'./icons/outdent-icon.js': '@empty',
|
'./icons/outdent-icon.js': '@empty',
|
||||||
|
'./icons/paperPlaneAlt-icon': '@empty',
|
||||||
'./icons/pager-icon.js': '@empty',
|
'./icons/pager-icon.js': '@empty',
|
||||||
'./icons/paint-brush-icon.js': '@empty',
|
'./icons/paint-brush-icon.js': '@empty',
|
||||||
'./icons/paint-roller-icon.js': '@empty',
|
'./icons/paint-roller-icon.js': '@empty',
|
||||||
|
@ -1086,6 +1096,7 @@
|
||||||
'./icons/wallet-icon.js': '@empty',
|
'./icons/wallet-icon.js': '@empty',
|
||||||
'./icons/warehouse-icon.js': '@empty',
|
'./icons/warehouse-icon.js': '@empty',
|
||||||
'./icons/water-icon.js': '@empty',
|
'./icons/water-icon.js': '@empty',
|
||||||
|
'./icons/wave-square-icon.js': '@empty',
|
||||||
'./icons/weight-icon.js': '@empty',
|
'./icons/weight-icon.js': '@empty',
|
||||||
'./icons/weight-hanging-icon.js': '@empty',
|
'./icons/weight-hanging-icon.js': '@empty',
|
||||||
'./icons/wheelchair-icon.js': '@empty',
|
'./icons/wheelchair-icon.js': '@empty',
|
||||||
|
|
Loading…
Reference in a new issue