qpp-style 9.43.2 → 9.44.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/Footer/FooterUI.jsx +1 -1
- package/components/Header/HeaderUI.jsx +2 -0
- package/components/Header/PreviewBanner.jsx +24 -0
- package/dist/browser.js +1 -1
- package/dist/browser.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/react/index.js +1 -1
- package/dist/react/index.js.map +1 -1
- package/lib/SvgComponents.jsx +11 -11
- package/package.json +1 -1
package/lib/SvgComponents.jsx
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React from
|
|
2
|
-
import PropTypes from
|
|
1
|
+
import React from "react";
|
|
2
|
+
import PropTypes from "prop-types";
|
|
3
3
|
|
|
4
4
|
export const MyApplicationsIcon = () => (
|
|
5
5
|
<svg className="my-applications" viewBox="0 0 25 25">
|
|
@@ -601,10 +601,10 @@ OpenInNewIcon.propTypes = {
|
|
|
601
601
|
};
|
|
602
602
|
|
|
603
603
|
OpenInNewIcon.defaultProps = {
|
|
604
|
-
className:
|
|
604
|
+
className: "",
|
|
605
605
|
};
|
|
606
606
|
|
|
607
|
-
export const SearchIcon = ({ className, viewBox =
|
|
607
|
+
export const SearchIcon = ({ className, viewBox = "0 0 24 24", ...rest }) => (
|
|
608
608
|
<svg
|
|
609
609
|
className={`qpp-icon-mat ${className}`}
|
|
610
610
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -621,10 +621,10 @@ SearchIcon.propTypes = {
|
|
|
621
621
|
};
|
|
622
622
|
|
|
623
623
|
SearchIcon.defaultProps = {
|
|
624
|
-
className:
|
|
624
|
+
className: "",
|
|
625
625
|
};
|
|
626
626
|
|
|
627
|
-
export const DownloadIcon = ({ className, viewBox =
|
|
627
|
+
export const DownloadIcon = ({ className, viewBox = "0 0 24 24", ...rest }) => (
|
|
628
628
|
<svg
|
|
629
629
|
className={`qpp-icon-mat ${className}`}
|
|
630
630
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -641,12 +641,12 @@ DownloadIcon.propTypes = {
|
|
|
641
641
|
};
|
|
642
642
|
|
|
643
643
|
DownloadIcon.defaultProps = {
|
|
644
|
-
className:
|
|
644
|
+
className: "",
|
|
645
645
|
};
|
|
646
646
|
|
|
647
647
|
export const CloseIcon = ({ className, ...rest }) => (
|
|
648
648
|
<svg
|
|
649
|
-
className={
|
|
649
|
+
className={`${className}`}
|
|
650
650
|
xmlns="http://www.w3.org/2000/svg"
|
|
651
651
|
viewBox="0 0 24 24"
|
|
652
652
|
{...rest}
|
|
@@ -661,7 +661,7 @@ CloseIcon.propTypes = {
|
|
|
661
661
|
};
|
|
662
662
|
|
|
663
663
|
CloseIcon.defaultProps = {
|
|
664
|
-
className:
|
|
664
|
+
className: "",
|
|
665
665
|
};
|
|
666
666
|
|
|
667
667
|
export const ExpandMoreIcon = ({ className, ...rest }) => (
|
|
@@ -681,7 +681,7 @@ ExpandMoreIcon.propTypes = {
|
|
|
681
681
|
};
|
|
682
682
|
|
|
683
683
|
ExpandMoreIcon.defaultProps = {
|
|
684
|
-
className:
|
|
684
|
+
className: "",
|
|
685
685
|
};
|
|
686
686
|
|
|
687
687
|
export const ExpandLessIcon = ({ className, ...rest }) => (
|
|
@@ -701,5 +701,5 @@ ExpandLessIcon.propTypes = {
|
|
|
701
701
|
};
|
|
702
702
|
|
|
703
703
|
ExpandLessIcon.defaultProps = {
|
|
704
|
-
className:
|
|
704
|
+
className: "",
|
|
705
705
|
};
|