@onpe/ui 1.2.104 → 1.3.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/dist/components/Footer/Footer.d.ts +2 -2
- package/dist/components.css +6 -1
- package/dist/components.esm.css +6 -1
- package/dist/components.esm.js +1 -1
- package/dist/components.js +1 -1
- package/dist/icons/OperatingSystems/IconHuawei/IconHuawei.d.ts +3 -0
- package/dist/icons/OperatingSystems/IconHuawei/index.d.ts +2 -0
- package/dist/icons/OperatingSystems/index.d.ts +1 -0
- package/dist/icons/Redes/FaceBookIcon.d.ts +1 -2
- package/dist/icons/Redes/InstagramIcon.d.ts +1 -2
- package/dist/icons/Redes/TikTokIcon.d.ts +1 -2
- package/dist/icons/Redes/WhatsappIcon.d.ts +1 -2
- package/dist/icons/Redes/XIcon.d.ts +1 -2
- package/dist/icons/Redes/YoutubeIcon.d.ts +1 -2
- package/dist/icons/Redes/index.d.ts +7 -0
- package/dist/icons/index.d.ts +1 -0
- package/dist/icons-os.d.ts +3 -1
- package/dist/icons-os.esm.js +1 -1
- package/dist/icons-os.js +1 -1
- package/dist/icons-redes.d.ts +16 -0
- package/dist/icons-redes.esm.js +2 -0
- package/dist/icons-redes.js +2 -0
- package/dist/icons.d.ts +15 -1
- package/dist/icons.esm.js +1 -1
- package/dist/icons.js +1 -1
- package/dist/index.css +6 -1
- package/dist/index.d.ts +15 -1
- package/dist/index.esm.css +6 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +6 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import React, { ReactNode } from
|
|
2
|
-
import
|
|
1
|
+
import React, { ReactNode } from "react";
|
|
2
|
+
import "./Footer.css";
|
|
3
3
|
export interface FooterProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
4
4
|
showBrowserInfo?: boolean;
|
|
5
5
|
showContactInfo?: boolean;
|
package/dist/components.css
CHANGED
|
@@ -938,10 +938,15 @@ body.onpe-modal-open {
|
|
|
938
938
|
max-width: 1460px;
|
|
939
939
|
}
|
|
940
940
|
|
|
941
|
-
.onpe-footer-contact-item
|
|
941
|
+
.onpe-footer-contact-item {
|
|
942
942
|
/* List item styles */
|
|
943
943
|
}
|
|
944
944
|
|
|
945
|
+
.onpe-footer-contact-item-color {
|
|
946
|
+
/* List item styles */
|
|
947
|
+
color : var(--onpe-ui-blue-dark);
|
|
948
|
+
}
|
|
949
|
+
|
|
945
950
|
.onpe-footer-contact-title {
|
|
946
951
|
font-weight: 600;
|
|
947
952
|
color: var(--onpe-ui-yellow);
|
package/dist/components.esm.css
CHANGED
|
@@ -938,10 +938,15 @@ body.onpe-modal-open {
|
|
|
938
938
|
max-width: 1460px;
|
|
939
939
|
}
|
|
940
940
|
|
|
941
|
-
.onpe-footer-contact-item
|
|
941
|
+
.onpe-footer-contact-item {
|
|
942
942
|
/* List item styles */
|
|
943
943
|
}
|
|
944
944
|
|
|
945
|
+
.onpe-footer-contact-item-color {
|
|
946
|
+
/* List item styles */
|
|
947
|
+
color : var(--onpe-ui-blue-dark);
|
|
948
|
+
}
|
|
949
|
+
|
|
945
950
|
.onpe-footer-contact-title {
|
|
946
951
|
font-weight: 600;
|
|
947
952
|
color: var(--onpe-ui-yellow);
|