revdev-components 0.129.0 → 0.131.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/build/styles.css CHANGED
@@ -490,53 +490,6 @@ body {
490
490
  .index-module_link__fptGw {
491
491
  text-decoration: none;
492
492
  }
493
- .index-module_root__pGOaD {
494
- display: flex;
495
- flex-direction: column;
496
- height: var(--frontFooterHeight);
497
- border-top: 1px solid var(--borderColor);
498
- gap: var(--spacing);
499
- padding: var(--spacing);
500
- }
501
-
502
- .index-module_children__HtJ53 {
503
- gap: var(--spacing);
504
- }
505
-
506
- .index-module_inner__yBaNK {
507
- min-height: var(--frontFooterHeight);
508
- font-size: 10px;
509
- display: flex;
510
- flex-direction: row;
511
- justify-content: space-between;
512
- align-items: center;
513
- gap: var(--spacing);
514
- }
515
- @media all and (max-width: 800px) {
516
- .index-module_inner__yBaNK {
517
- flex-direction: column;
518
- justify-content: flex-start;
519
- gap: 10px;
520
- }
521
- }
522
- .index-module_inner__yBaNK > * {
523
- display: flex;
524
- flex-flow: row wrap;
525
- align-items: center;
526
- gap: 10px;
527
- }
528
- .index-module_inner__yBaNK > *:last-child {
529
- justify-content: flex-end;
530
- }
531
- @media all and (max-width: 800px) {
532
- .index-module_inner__yBaNK > *:last-child {
533
- justify-content: flex-start;
534
- }
535
- }
536
-
537
- .index-module_email__c66u4 {
538
- font-size: 14px;
539
- }
540
493
  .index-module_root__Fwjge {
541
494
  display: block;
542
495
  padding-top: var(--frontHeaderHeight);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev-components",
3
- "version": "0.129.0",
3
+ "version": "0.131.0",
4
4
  "main": "build/index.js",
5
5
  "module": "build/index.esm.js",
6
6
  "scripts": {
@@ -1,14 +0,0 @@
1
- import React from "react";
2
- export interface FrontFooterProps {
3
- children?: React.ReactNode;
4
- className?: string;
5
- privacyHref: string;
6
- termsHref: string;
7
- infoMail: string;
8
- text: {
9
- privacy: string;
10
- terms: string;
11
- copyright: string;
12
- };
13
- }
14
- export declare const FrontFooter: React.FC<FrontFooterProps>;