qpp-style 9.8.6 → 9.9.0
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/components/Breadcrumb/Breadcrumb.stories.js +18 -0
- package/components/Breadcrumb/index.js +4 -4
- package/components/Header/HeaderUI.jsx +2 -0
- package/components/Header/ImpersonatorBanner.jsx +55 -0
- package/components/SideNav/Content/LevelOneContent.jsx +9 -3
- package/components/SideNav/UI/default-content.json +4 -0
- package/dist/browser.js +1 -1
- package/dist/browser.js.LICENSE.txt +17 -0
- package/dist/browser.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +17 -0
- package/dist/index.js.map +1 -1
- package/dist/react/index.js +1 -1
- package/dist/react/index.js.map +1 -1
- package/package.json +6 -6
- package/session/logout.js +11 -2
- package/styles/qppds/components/_breadcrumbs.scss +16 -5
- package/styles/qppds/components/sidebar/_sidebar.scss +2 -1
|
@@ -29,9 +29,26 @@
|
|
|
29
29
|
* MIT Licensed
|
|
30
30
|
*/
|
|
31
31
|
|
|
32
|
+
/**
|
|
33
|
+
* A better abstraction over CSS.
|
|
34
|
+
*
|
|
35
|
+
* @copyright Oleg Isonen (Slobodskoi) / Isonen 2014-present
|
|
36
|
+
* @website https://github.com/cssinjs/jss
|
|
37
|
+
* @license MIT
|
|
38
|
+
*/
|
|
39
|
+
|
|
32
40
|
/**
|
|
33
41
|
* what-input - A global utility for tracking the current input method (mouse, keyboard or touch).
|
|
34
42
|
* @version v5.2.10
|
|
35
43
|
* @link https://github.com/ten1seven/what-input
|
|
36
44
|
* @license MIT
|
|
37
45
|
*/
|
|
46
|
+
|
|
47
|
+
/** @license React v16.13.1
|
|
48
|
+
* react-is.production.min.js
|
|
49
|
+
*
|
|
50
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
51
|
+
*
|
|
52
|
+
* This source code is licensed under the MIT license found in the
|
|
53
|
+
* LICENSE file in the root directory of this source tree.
|
|
54
|
+
*/
|