sass-template-common 0.9.181 → 0.9.182

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.
@@ -192,6 +192,14 @@ declare interface CarruselCardProps extends Omit<CarrouselProps, 'slot_id'> {
192
192
 
193
193
  export declare const CarruselOpinion: FC<SectionCardCarouselProps>;
194
194
 
195
+ /**
196
+ * Recorre recursivamente un schema (objeto o array) y elimina toda entry
197
+ * que quede sin valor. Si una propiedad de un objeto queda sin valor, la
198
+ * propiedad se elimina del objeto; si un item de un array queda sin valor,
199
+ * se quita del array.
200
+ */
201
+ export declare const cleanSchema: <T>(value: T) => T;
202
+
195
203
  export declare const coloringByStrokeSVGs: string[];
196
204
 
197
205
  /** Textos del popup anónimo (AnonimusPopUp.tsx) */
@@ -2831,6 +2839,7 @@ declare interface SectionProps {
2831
2839
  isOpinion?: boolean;
2832
2840
  children: ReactNode;
2833
2841
  isTitle?: boolean;
2842
+ noHeading?: boolean;
2834
2843
  }
2835
2844
 
2836
2845
  export declare const SectionServerComponent: FC<Props_8>;