diff --git a/src/components/breadcrumbs/breadcrumbs.js b/src/components/breadcrumbs/breadcrumbs.js index 53b2f0bbe6..dea292cb98 100644 --- a/src/components/breadcrumbs/breadcrumbs.js +++ b/src/components/breadcrumbs/breadcrumbs.js @@ -10,16 +10,22 @@ function Breadcrumbs({ pageContext, crumbLabel }) { breadcrumb: { crumbs }, } = pageContext; + const styles = "ps-lg-4 ms-lg-2"; + return (
{crumbLabel ? ( - +
+ +
) : ( - +
+ +
)}
); diff --git a/src/components/card/card.js b/src/components/card/card.js index e8d0c03605..83632d7b98 100644 --- a/src/components/card/card.js +++ b/src/components/card/card.js @@ -1,5 +1,6 @@ import * as React from "react"; import ReactMarkdown from "react-markdown"; +import classNames from "classnames"; import ImageResponsive from "../image-responsive/image-responsive"; import SimpleCta from "../simple-cta/simple-cta"; import Chip from "../chip/chip"; @@ -42,27 +43,30 @@ function Card({ rounded, buttonBottom, }) { - const styles = - "di-card d-md-flex flex-md-column w-100" + - `${fullHeight ? " fullheight" : ""}` + - `${rounded ? " rounded" : ""}` + - `${titleSmall ? " title-small" : ""}` + - `${titleBig ? " title-big" : ""}` + - `${noShadow ? " shadow-none" : ""}` + - `${textSerif ? " text-serif" : ""}` + - `${buttonBottom ? " has-button" : ""}`; + const styles = classNames("di-card d-md-flex flex-md-column w-100", { + fullheight: fullHeight, + rounded, + "title-small": titleSmall, + "title-big": titleBig, + "shadow-lg": !noShadow, + "text-serif": textSerif, + "has-button": buttonBottom, + }); - const imgStyle = - "img-wrapper ratio" + - `${imgRatio ? ` ratio-${imgRatio}` : ""}` + - `${imgPlaceholder ? " img-placeholder" : ""}` + - `${iconImg ? " icon-img" : ""}` + - `${cardEvent ? " mb-4 negative-margin" : ""}` + - `${imgRounded ? " rounded" : ""}`; + const imgStyle = classNames("img-wrapper ratio", { + [`ratio-${imgRatio}`]: imgRatio, + "img-placeholder": imgPlaceholder, + "icon-img": iconImg, + "mb-4 negative-margin": cardEvent, + rounded: imgRounded, + }); - const styleBody = - "di-card-body bg-white p-4 d-md-flex flex-md-column justify-content-between" + - `${rounded ? " rounded" : ""}`; + const styleBody = classNames( + "di-card-body bg-white p-4 d-md-flex flex-md-column justify-content-between", + { + rounded, + }, + ); // heading level let HLevel; diff --git a/src/components/card/card.scss b/src/components/card/card.scss index b9531e8c33..ab9f7e3a6e 100644 --- a/src/components/card/card.scss +++ b/src/components/card/card.scss @@ -1,16 +1,12 @@ @import "../../scss/bootstrap-breakpoints"; .di-card { - box-shadow: var(--card-box-shadow); .rounded { .gatsby-image-wrapper { border-radius: 4px; overflow: hidden; } } - &.shadow-none { - box-shadow: none; - } &.has-button { h2, h3, diff --git a/src/components/component-view/component-view.js b/src/components/component-view/component-view.js index 70c88e1d63..aab091685c 100644 --- a/src/components/component-view/component-view.js +++ b/src/components/component-view/component-view.js @@ -148,7 +148,7 @@ function ComponentView({ } const componentStyles = classNames( - "border-bottom p-xl-3 d-flex flex-column align-items-center", + "border-bottom d-flex flex-column align-items-center", { "pb-4": responsiveButtonsItems }, ); diff --git a/src/components/content-select/content-select.js b/src/components/content-select/content-select.js index 85a7909d9e..f41a86ed4b 100644 --- a/src/components/content-select/content-select.js +++ b/src/components/content-select/content-select.js @@ -48,35 +48,37 @@ function ContentSelect({ id, title, textInfo, children, selectedIdx, label }) { return (
-
-

- {title} -

-
-
-
- - +
+
+

+ {title} +

-
- {textInfo && ( -
-

- {textInfo} -

+
+
+ + +
- )} + {textInfo && ( +
+

+ {textInfo} +

+
+ )} +
{selectedChild && selectedChild.component}
diff --git a/src/components/filter-cards/filter-cards.js b/src/components/filter-cards/filter-cards.js index abb1c4dca6..aec979af03 100644 --- a/src/components/filter-cards/filter-cards.js +++ b/src/components/filter-cards/filter-cards.js @@ -1,9 +1,8 @@ import React from "react"; +import classNames from "classnames"; import Card from "../card/card"; import ListArchiveDSTags from "../list-archive-ds-tags/list-archive-ds-tags"; -import "./filter-cards.scss"; - function FilterCards({ id, background, @@ -13,14 +12,16 @@ function FilterCards({ showTags, col2, noSpace, + paddingX, }) { - const styles = - "filter-cards px-3 p-md-0" + - `${background ? ` bg-${background}` : ""}` + - `${noSpace ? "" : " py-5 py-lg-6"}` + - `${col2 ? " two-columns" : ""}`; - - const cardStyles = `col-12 col-md-6 mb-3 mb-md-4 ${col2 ? "" : " col-lg-4"}`; + const styles = classNames("filter-cards", { + [`bg-${background}`]: background, + "py-5 py-lg-6": !noSpace, + "py-2 py-lg-5": noSpace, + "px-lg-4 px-xl-5": paddingX, + }); + + const cardStyles = `col-12 col-md-6 mb-3 mb-md-4 ${col2 ? "" : " col-xl-4"}`; let cardsItems; diff --git a/src/components/filter-cards/filter-cards.scss b/src/components/filter-cards/filter-cards.scss deleted file mode 100644 index d5d4ec1f01..0000000000 --- a/src/components/filter-cards/filter-cards.scss +++ /dev/null @@ -1,43 +0,0 @@ -@import "../../scss/bootstrap-breakpoints"; - - -//mobile only ------------------------------------------------------------------------------------------ -@include media-breakpoint-down(sm) { - -} -//Small tablet ------------------------------------------------------------------------------------------ -@include media-breakpoint-up(sm) { - -} - -//Tablet portrait --------------------------------------------------------------------------------------- -@include media-breakpoint-up(md) { - -} - -//Tablet landscape -------------------------------------------------------------------------------------- -@include media-breakpoint-up(lg) { - .filter-cards { - &.two-columns { - .cards-wrapper { - width: 88.88889%; - } - } - } -} - -//Laptop ------------------------------------------------------------------------------------------------ -@include media-breakpoint-up(xl) { -} - -//Desktop ----------------------------------------------------------------------------------------------- -@include media-breakpoint-up(xxl) { -} - -//Hover states ------------------------------------------------------------------------------------------ -@media (hover: hover) { -} - -//Transitions (A11y reduced motion disabled) ------------------------------------------------------------ -@media screen and (prefers-reduced-motion: no-preference) { -} diff --git a/src/components/hero/hero.js b/src/components/hero/hero.js index a38d79cec1..da489e9b9f 100644 --- a/src/components/hero/hero.js +++ b/src/components/hero/hero.js @@ -57,17 +57,20 @@ function Hero({ const imgResponsiveStyle = "rounded"; + const breadcrumbsStyle = classNames("hero-top px-3 pt-4", { + "px-lg-4": column, + }); + const rowStyle = classNames("row g-0", { "justify-content-lg-center": centered, + "ps-lg-2": column, }); - let columnStyle = classNames("col-12 g-0 px-3", { + const columnStyle = classNames({ + "col-12 g-0 px-3": !column, + "col-12 col-md-8 px-3 ps-lg-5": column, "col-lg-7 offset-lg-0": centered, - "ps-lg-5 pe-lg-0 col-lg-7": !centered, - }); - - const breadcrumbsStyle = classNames("hero-top px-3 pt-4", { - "px-lg-5": column, + "ps-lg-5 pe-lg-0 col-lg-7": !centered && !column, }); const kangarooZoneStyle = classNames("kangaroo-zone", { @@ -75,19 +78,17 @@ function Hero({ "pb-4 pb-md-5 pb-lg-0": specialKangarooComponent, }); - let kangarooColumnStyle = classNames("col-12 g-0", { - "col-lg-7 offset-lg-0": centered, + const rightColumnStyle = classNames({ + "col-12 col-md-12 col-lg-4 offset-lg-1 d-flex flex-column px-3 pe-lg-5 pt-4": + !column, + "col-12 col-md-3 offset-md-1 d-flex flex-column px-3 pe-lg-5 pt-md-4": + column, }); - let rightColumnStyle = - "col-12 col-md-12 col-lg-4 offset-lg-1 d-flex flex-column px-3 pe-lg-5 pt-4"; - - if (column) { - columnStyle = "px-3 col-12 col-md-8"; - kangarooColumnStyle = "col-12 g-0"; - rightColumnStyle = - "col-12 col-md-3 offset-md-1 d-flex flex-column px-3 pe-lg-5 pt-md-4"; - } + const kangarooColumnStyle = classNames("col-12 g-0", { + "ps-lg-5": column && !specialKangarooComponent, + "col-lg-7 offset-lg-0": centered, + }); const shareColor = background === ("primary" || "dark") ? "white" : "primary"; @@ -143,7 +144,7 @@ function Hero({ {kangaroo && specialKangarooComponent && (
-
+
{/* rowStyle */}
@@ -156,7 +157,6 @@ function Hero({ )}
{!centered && ( - //
{img && (
diff --git a/src/components/img-full/img-full.js b/src/components/img-full/img-full.js index bbd8dcae26..33f2efe030 100644 --- a/src/components/img-full/img-full.js +++ b/src/components/img-full/img-full.js @@ -6,7 +6,7 @@ import "./img-full.scss"; function ImgFull({ img, alt, isDSPreview }) { const containerStyle = classNames("img-full", { "mb-5": !isDSPreview, - "mb-3 mt-3 border rounded": isDSPreview, + "mb-3 mt-3 border rounded design-system-preview": isDSPreview, }); const imgStyle = classNames("w-100 img-fluid", { rounded: isDSPreview, diff --git a/src/components/img-full/img-full.scss b/src/components/img-full/img-full.scss index 2ea94d5a28..a72947654e 100644 --- a/src/components/img-full/img-full.scss +++ b/src/components/img-full/img-full.scss @@ -26,11 +26,15 @@ //Tablet landscape -------------------------------------------------------------------------------------- @include media-breakpoint-up(lg) { - .content-column { + .design-system-preview { + margin-left: -3rem; + } + + // .content-column { // .img-full { // width: 75%; // } - } + // } } diff --git a/src/components/list-archive-ds-tags/list-archive-ds-tags.js b/src/components/list-archive-ds-tags/list-archive-ds-tags.js index ad31bf968c..87baa7d202 100644 --- a/src/components/list-archive-ds-tags/list-archive-ds-tags.js +++ b/src/components/list-archive-ds-tags/list-archive-ds-tags.js @@ -25,7 +25,7 @@ function ListArchiveDSTags() { return (
-
+

Esplora per utilizzo

diff --git a/src/components/nav-sidebar/nav-sidebar.scss b/src/components/nav-sidebar/nav-sidebar.scss index a579812bda..930536bc97 100644 --- a/src/components/nav-sidebar/nav-sidebar.scss +++ b/src/components/nav-sidebar/nav-sidebar.scss @@ -20,6 +20,9 @@ padding: 0 24px; color: var(--color-primary) !important; width: 100%; + span span { + text-align: left; + } .icon { transition: transform .3s; } diff --git a/src/components/section-editorial/section-editorial.js b/src/components/section-editorial/section-editorial.js index d5430c1ced..a2bbc130a4 100644 --- a/src/components/section-editorial/section-editorial.js +++ b/src/components/section-editorial/section-editorial.js @@ -24,6 +24,7 @@ function SectionEditorial({ full, centered, fullColumn, + paddingLeft, background, components, menu, @@ -59,28 +60,23 @@ function SectionEditorial({ "container-xxl": !fullColumn, }); - let row = classNames("row", { "flex-lg-row-reverse": menu }); + const row = classNames({ + row: !fullColumn, + "flex-lg-row-reverse": menu && !fullColumn, + }); - let grid; - if (full) { - grid = "col-12"; - } else { - grid = classNames("col-12 col-md-10 offset-md-1 col-lg-7 offset-lg-1", { - "m-auto": centered, - }); - } - if (full && menu) { - grid = "col-12 col-md-10 offset-md-1 col-lg-8 offset-lg-0"; - } - if (fullColumn) { - grid = ""; - row = ""; - } + const grid = classNames({ + "col-12": full && !fullColumn, + "col-md-10 offset-md-1 col-lg-8 offset-lg-0": full && menu && !fullColumn, + "col-12 col-md-10 offset-md-1 col-lg-7 offset-lg-1": !full && !fullColumn, + "m-auto": !full && centered && !fullColumn, + }); const styles = classNames("section-editorial", { [`bg-${background}`]: background, "py-0": noSpace, "text-white": background === "dark", + "ps-lg-4 ps-xl-5": paddingLeft, }); // buttons @@ -130,7 +126,7 @@ function SectionEditorial({
)}
-
+
{title && ( {title} diff --git a/src/components/section-editorial/section-editorial.scss b/src/components/section-editorial/section-editorial.scss index c52cf25476..c1af04c80a 100644 --- a/src/components/section-editorial/section-editorial.scss +++ b/src/components/section-editorial/section-editorial.scss @@ -50,6 +50,9 @@ h2, .text-container p { width: 75%; } + .content h2 { + width: inherit; + } } } diff --git a/src/components/tab/tab.js b/src/components/tab/tab.js index c531e2a3ff..c3cdfa2110 100644 --- a/src/components/tab/tab.js +++ b/src/components/tab/tab.js @@ -16,7 +16,7 @@ function Tab({ componentSource, tab01, tab02, tab03 }) { id="card-simple" role="tablist" > -
  • +
  • -
  • +
  • diff --git a/src/components/tab/tab.scss b/src/components/tab/tab.scss index a9816becc0..3787e27520 100644 --- a/src/components/tab/tab.scss +++ b/src/components/tab/tab.scss @@ -1,5 +1,10 @@ +@import "../../scss/bootstrap-breakpoints"; + .tab { font-size:1rem; + .nav-tabs.nav-tabs-cards .nav-link{ + border-bottom-width: 1px; + } .nav-link { -moz-transition: none; -o-transition:none; @@ -22,12 +27,23 @@ } .nav-item-filler { border-color: #C5C7C9!important; - // border-width:2px!important; &.flex-grow-0 { - width: 24px; + width: 16px; } } // .nav-tabs-hidescroll { // height:4rem; // } } + + +// Tablet landscape +@include media-breakpoint-up(lg) { + .tab { + .nav-item-filler { + &.flex-grow-0 { + width: 3rem; + } + } + } +} diff --git a/src/data/content/design-system/come-contribuire.yaml b/src/data/content/design-system/come-contribuire.yaml index 56aaf2cfd5..d1a4ef52bf 100644 --- a/src/data/content/design-system/come-contribuire.yaml +++ b/src/data/content/design-system/come-contribuire.yaml @@ -85,6 +85,8 @@ components: filterCards: id: esplora title: Esplora le schede + paddingX: true + noSpace: false showTags: false # idInput: fundamentCardsInput # < XXX ENABLE TO ENABLE FILTER INPUT FORM ON FRONT END col2: true @@ -147,7 +149,7 @@ components: # /////////// EDITORIAL CONTENTS FROM HERE //////////// - # sectionsEditorial : + # sectionsEditorial: # - fullColumn: true # noSpace: true # components: @@ -155,9 +157,10 @@ components: # img: /images/design-system/fondamenti.jpg # alt: "" - sectionsEditorial2 : + sectionsEditorial2: - full: true noSpace: false + paddingLeft: true components: - name: TextImageCta noSpace: true diff --git a/src/data/content/design-system/come-contribuire/modello-di-contribuzione.yaml b/src/data/content/design-system/come-contribuire/modello-di-contribuzione.yaml index 494eb8ce28..2b116c1427 100644 --- a/src/data/content/design-system/come-contribuire/modello-di-contribuzione.yaml +++ b/src/data/content/design-system/come-contribuire/modello-di-contribuzione.yaml @@ -119,10 +119,11 @@ components: color: secondary tags: [Design system,Interfaccia utente,Sviluppo interfaccia] - sectionsEditorial : + sectionsEditorial: - full: true noSpace: false + paddingLeft: true title: "L'evoluzione del design system del Paese è aperta" text: Scopri come contribuire in base alle tue competenze e al tempo che hai a disposizione. background: null @@ -147,7 +148,6 @@ components: # screenReaderText: "" url: "/design-system/fondamenti/principi-e-intenzioni/" #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -158,6 +158,7 @@ components: - full: true noSpace: true + paddingLeft: true title: Cosa puoi fare? text: Partecipare a discussioni, aprire segnalazioni e inviare contributi. background: null @@ -180,6 +181,7 @@ components: # alt: Scelgo dove, partecipo alla discussione, invio contributi. Schema del modello di contribuzione, descritto nel seguito dela pagina. - full: true noSpace: true + paddingLeft: true background: null components: @@ -194,7 +196,6 @@ components: # screenReaderText: "" url: "/community/piano-attivita/" #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -206,7 +207,6 @@ components: screenReaderText: " su GitHub" url: https://github.com/orgs/italia/projects/17/views/5 #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary @@ -250,7 +250,7 @@ components: screenReaderText: "" url: "/design-system/come-contribuire/per-la-documentazione/" #M blank: false #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -262,7 +262,7 @@ components: screenReaderText: "" url: "/design-system/come-contribuire/per-il-design/" #M blank: false #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -274,7 +274,7 @@ components: screenReaderText: "" url: "/design-system/come-contribuire/per-lo-sviluppo/" #M blank: false #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary diff --git a/src/data/content/design-system/come-contribuire/per-il-design.yaml b/src/data/content/design-system/come-contribuire/per-il-design.yaml index 2265dc7181..6912494709 100644 --- a/src/data/content/design-system/come-contribuire/per-il-design.yaml +++ b/src/data/content/design-system/come-contribuire/per-il-design.yaml @@ -120,7 +120,7 @@ components: color: secondary tags: [Design system,Interfaccia utente,Sviluppo interfaccia] - sectionsEditorial : + sectionsEditorial: # - fullColumn: true # noSpace: true @@ -131,6 +131,7 @@ components: - full: true noSpace: false + paddingLeft: true title: Contribuisci a UI Kit Italia text: | Il kit per progettare e prototipare interfacce ed esperienze di siti e servizi pubblici digitali. @@ -152,7 +153,6 @@ components: screenReaderText: "" url: "/design-system/come-contribuire/modello-di-contribuzione/" #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -177,7 +177,6 @@ components: screenReaderText: "" url: https://github.com/italia/design-ui-kit/issues #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary @@ -189,7 +188,6 @@ components: screenReaderText: "" url: https://github.com/italia/design-tokens-italia/issues #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary @@ -209,7 +207,6 @@ components: screenReaderText: "" url: https://github.com/italia/design-ui-kit/issues/new?assignees=&labels=design%20system&projects=&template=apri-una-segnalazione.it.yaml #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary @@ -221,7 +218,6 @@ components: screenReaderText: "" url: https://github.com/italia/design-tokens-italia/issues/new?assignees=&labels=design%20system&projects=&template=apri-una-segnalazione.it.yaml #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary diff --git a/src/data/content/design-system/come-contribuire/per-la-documentazione.yaml b/src/data/content/design-system/come-contribuire/per-la-documentazione.yaml index f95cfcaf22..615c512525 100644 --- a/src/data/content/design-system/come-contribuire/per-la-documentazione.yaml +++ b/src/data/content/design-system/come-contribuire/per-la-documentazione.yaml @@ -120,7 +120,7 @@ components: color: secondary tags: [Design system,Interfaccia utente,Sviluppo interfaccia] - sectionsEditorial : + sectionsEditorial: # - fullColumn: true # noSpace: true @@ -131,6 +131,7 @@ components: - full: true noSpace: false + paddingLeft: true title: Contribuisci a questa documentazione text: L'unica fonte di verità sulle risorse e sullo stato dei lavori del design system del Paese. background: null @@ -150,7 +151,6 @@ components: screenReaderText: "" url: "/design-system/come-contribuire/modello-di-contribuzione/" #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -188,7 +188,6 @@ components: # screenReaderText: " relative alla documentazione" url: https://github.com/italia/designers.italia.it/issues?q=is%3Aissue+is%3Aopen+label%3A%22design+system%22 #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary @@ -208,7 +207,6 @@ components: screenReaderText: " relativa alla documentazione" url: https://github.com/italia/designers.italia.it/issues/new?assignees=&labels=design%20system&projects=&template=apri-una-segnalazione.it.yaml #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary diff --git a/src/data/content/design-system/come-contribuire/per-lo-sviluppo.yaml b/src/data/content/design-system/come-contribuire/per-lo-sviluppo.yaml index 146a95bf8c..448959db27 100644 --- a/src/data/content/design-system/come-contribuire/per-lo-sviluppo.yaml +++ b/src/data/content/design-system/come-contribuire/per-lo-sviluppo.yaml @@ -120,17 +120,11 @@ components: color: secondary tags: [Design system,Interfaccia utente,Sviluppo interfaccia] - sectionsEditorial : - - # - fullColumn: true - # noSpace: true - # components: - # - name: ImgFull - # img: /images/design-system/uikit.jpg - # alt: Schema sintetico del modello di contribuzione descritto in pagina + sectionsEditorial: - full: true noSpace: false + paddingLeft: true title: Contribuisci a Bootstrap Italia e al suo ecosistema di risorse text: | Il kit per sviluppare interfacce ed esperienze di siti e servizi pubblici digitali. @@ -138,7 +132,6 @@ components: components: - name: TextImageCta - # title: Approfondisci le risorse per designer noSpace: false headingLevel: 3 text: | @@ -150,7 +143,6 @@ components: screenReaderText: "" url: "/design-system/come-contribuire/modello-di-contribuzione/" #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -159,11 +151,6 @@ components: size: sm addonClasses: ms-2 - # - name: TextImageCta - # title: "Come contribuire allo sviluppo di Bootstrap Italia:" - # noSpace: true - # headingLevel: 3 - - name: TextImageCta title: Esplora la lista di tutte le discussioni noSpace: true @@ -175,7 +162,6 @@ components: screenReaderText: "" url: https://github.com/italia/bootstrap-italia/issues #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary @@ -187,7 +173,6 @@ components: screenReaderText: "" url: https://github.com/italia/design-tokens-italia/issues #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary @@ -207,7 +192,6 @@ components: screenReaderText: "" url: https://github.com/italia/bootstrap-italia/issues/new #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary @@ -219,7 +203,6 @@ components: screenReaderText: "" url: https://github.com/italia/design-tokens-italia/issues/new #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary @@ -254,7 +237,6 @@ components: screenReaderText: "" url: "/design-system/fondamenti/accessibilita/" #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -280,7 +262,6 @@ components: screenReaderText: "" url: "/design-system/fondamenti/design-tokens/" #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -288,17 +269,17 @@ components: hidden: true size: sm addonClasses: ms-2 + - full: true noSpace: true + paddingLeft: true title: "Contribuisci all'evoluzione delle risorse community-driven React e Angular Kit" text: | Partecipa all'aggiornamento per renderle coerenti con Bootstrap Italia e UI Kit Italia. background: null components: - - name: TextImageCta - # title: Scopri lo stato delle lavorazioni noSpace: false headingLevel: 3 text: | @@ -310,7 +291,6 @@ components: Di seguito le informazioni su dove trovare i lavori in corso. I commenti e i contributi di tutta la community sono più che necessari! - - name: TextImageCta title: Per React Kit noSpace: true @@ -322,7 +302,6 @@ components: screenReaderText: "" url: https://github.com/italia/design-react-kit/issues #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary @@ -334,7 +313,6 @@ components: screenReaderText: "" url: https://github.com/italia/design-react-kit/issues/new #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary @@ -354,7 +332,6 @@ components: screenReaderText: "" url: https://github.com/italia/design-angular-kit/issues #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary @@ -366,7 +343,6 @@ components: screenReaderText: "" url: https://github.com/italia/design-angular-kit/issues/new #M blank: true #M #C true if new tab for external links - # disabled: true icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary diff --git a/src/data/content/design-system/come-iniziare.yaml b/src/data/content/design-system/come-iniziare.yaml index c467504ffd..620e14ec7a 100644 --- a/src/data/content/design-system/come-iniziare.yaml +++ b/src/data/content/design-system/come-iniziare.yaml @@ -62,6 +62,8 @@ components: filterCards: id: esplora title: Esplora le schede + paddingX: true + noSpace: false showTags: false # idInput: fundamentCardsInput # < XXX ENABLE TO ENABLE FILTER INPUT FORM ON FRONT END col2: true @@ -112,7 +114,7 @@ components: # /////////// EDITORIAL CONTENTS FROM HERE //////////// - # sectionsEditorial : + # sectionsEditorial: # - fullColumn: true # noSpace: true # components: @@ -120,9 +122,10 @@ components: # img: /images/design-system/fondamenti.jpg # alt: "" - sectionsEditorial2 : + sectionsEditorial2: - full: true noSpace: false + paddingLeft: true components: - name: TextImageCta noSpace: true diff --git a/src/data/content/design-system/come-iniziare/per-designer.yaml b/src/data/content/design-system/come-iniziare/per-designer.yaml index 5ae0b1b2ed..6ca30d3c58 100644 --- a/src/data/content/design-system/come-iniziare/per-designer.yaml +++ b/src/data/content/design-system/come-iniziare/per-designer.yaml @@ -98,7 +98,7 @@ components: color: secondary tags: [Design system,Interfaccia utente,Progettazione interfaccia] - sectionsEditorial : + sectionsEditorial: - fullColumn: true noSpace: true @@ -109,6 +109,7 @@ components: - full: true noSpace: true + paddingLeft: true title: Scopri e usa UI Kit Italia text: Lo strumento a disposizione dei designer per costruire e prototipare interfacce ed esperienze di siti e servizi pubblici digitali background: null @@ -123,7 +124,7 @@ components: - label: "Leggi la notizia" #C url: "/community/notizie/20230504-design-system-pubblicata-la-versione-ufficiale-dello-ui-kit-italia/" #M blank: true #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -233,6 +234,7 @@ components: - full: true noSpace: true + paddingLeft: true title: Standard, open design e partecipazione text: Processi e risorse per la gestione di UI Kit Italia e Design Tokens Italia background: null @@ -246,7 +248,7 @@ components: - label: Scopri come contribuire Per il design #C url: "/design-system/come-contribuire/per-il-design/" #M blank: false #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -263,7 +265,7 @@ components: - label: Vai al fondamento Accessibilità #C url: "/design-system/fondamenti/accessibilita/" #M blank: false #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -281,7 +283,7 @@ components: - label: Vai al fondamento Design tokens #C url: "/design-system/fondamenti/design-tokens/" #M blank: false #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary diff --git a/src/data/content/design-system/come-iniziare/per-responsabili-progetto.yaml b/src/data/content/design-system/come-iniziare/per-responsabili-progetto.yaml index c04249a722..812d6ee6b7 100644 --- a/src/data/content/design-system/come-iniziare/per-responsabili-progetto.yaml +++ b/src/data/content/design-system/come-iniziare/per-responsabili-progetto.yaml @@ -98,10 +98,11 @@ components: color: secondary tags: [Design system,Interfaccia utente] - sectionsEditorial : + sectionsEditorial: - full: true noSpace: false + paddingLeft: true title: Dalla norma all'azione text: In questa sezione di Designers Italia dedicata al design system, trovi una serie di strumenti che aiutano il tuo ente e i tuoi fornitori a dare seguito alle indicazioni normative sui servizi digitali e le loro interfacce background: null @@ -154,8 +155,8 @@ components: - full: true noSpace: true + paddingLeft: true title: Oltre la norma, per fare bene - # text: Processi e risorse per lo sviluppo background: null components: diff --git a/src/data/content/design-system/come-iniziare/per-sviluppatori.yaml b/src/data/content/design-system/come-iniziare/per-sviluppatori.yaml index 7228bc820c..ec18963738 100644 --- a/src/data/content/design-system/come-iniziare/per-sviluppatori.yaml +++ b/src/data/content/design-system/come-iniziare/per-sviluppatori.yaml @@ -98,10 +98,11 @@ components: color: secondary tags: [Design system,Interfaccia utente,Sviluppo interfaccia] - sectionsEditorial : + sectionsEditorial: - full: true noSpace: false + paddingLeft: true title: Scopri e usa Bootstrap Italia text: Lo strumento a disposizione degli sviluppatori per sviluppare interfacce ed esperienze di siti e servizi pubblici digitali background: null @@ -205,6 +206,7 @@ components: - full: true noSpace: true + paddingLeft: true title: Standard, open design e partecipazione text: Processi e risorse per lo sviluppo di Bootstrap Italia e del suo ecosistema di risorse background: null @@ -219,7 +221,7 @@ components: - label: Scopri come contribuire Per lo sviluppo #C url: "/design-system/come-contribuire/per-lo-sviluppo/" #M blank: false #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -237,7 +239,7 @@ components: - label: Vai al fondamento Accessibilità #C url: "/design-system/fondamenti/accessibilita/" #M blank: false #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -255,23 +257,11 @@ components: - label: Vai al fondamento Design tokens #C url: "/design-system/fondamenti/design-tokens/" #M blank: false #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary align: middle hidden: true size: sm - addonClasses: ms-2 - - # - name: TextImageCta - # title: Workflow di sviluppo e revisione - # noSpace: true - # text: | - # _In stesura_ - - # - name: TextImageCta - # title: Workflow di rilascio versioni - # noSpace: true - # text: | - # _In stesura_ + addonClasses: ms-2 \ No newline at end of file diff --git a/src/data/content/design-system/componenti.yaml b/src/data/content/design-system/componenti.yaml index e5759c52b3..d7e3938326 100644 --- a/src/data/content/design-system/componenti.yaml +++ b/src/data/content/design-system/componenti.yaml @@ -64,7 +64,9 @@ components: filterCards: id: esplora title: Esplora i componenti + paddingX: true showTags: true + noSpace: true # idInput: componentCardsInput col2: false # button: @@ -290,7 +292,7 @@ components: url: video-player/ # /////////// EDITORIAL CONTENTS FROM HERE //////////// - sectionsEditorial : + sectionsEditorial: - fullColumn: true noSpace: true components: @@ -298,9 +300,10 @@ components: img: /images/design-system/componenti.jpg alt: "" - sectionsEditorial2 : + sectionsEditorial2: - full: true noSpace: false + paddingLeft: true components: - name: TextImageCta # noSpace: true diff --git a/src/data/content/design-system/componenti/accordion.yaml b/src/data/content/design-system/componenti/accordion.yaml index 99bb26c298..e9cb674f27 100644 --- a/src/data/content/design-system/componenti/accordion.yaml +++ b/src/data/content/design-system/componenti/accordion.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -98,6 +100,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -109,6 +112,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: true @@ -166,6 +170,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -258,6 +263,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -268,6 +274,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -278,6 +285,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -288,6 +296,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -308,6 +317,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -479,6 +489,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/affix.yaml b/src/data/content/design-system/componenti/affix.yaml index ed8f6a49f3..edd5aea8e8 100644 --- a/src/data/content/design-system/componenti/affix.yaml +++ b/src/data/content/design-system/componenti/affix.yaml @@ -66,6 +66,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -78,6 +79,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -94,6 +96,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -104,6 +107,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -118,6 +122,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -128,6 +133,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +146,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -150,6 +157,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -182,6 +190,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/alert.yaml b/src/data/content/design-system/componenti/alert.yaml index 881ce9312b..c4c9e3bd10 100644 --- a/src/data/content/design-system/componenti/alert.yaml +++ b/src/data/content/design-system/componenti/alert.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -81,6 +82,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -100,6 +102,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -112,6 +115,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -122,6 +126,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -136,6 +141,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -153,6 +159,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -177,6 +184,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -188,6 +196,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -219,6 +228,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/autocomplete.yaml b/src/data/content/design-system/componenti/autocomplete.yaml index edf950342c..a423d1609d 100644 --- a/src/data/content/design-system/componenti/autocomplete.yaml +++ b/src/data/content/design-system/componenti/autocomplete.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/avatar.yaml b/src/data/content/design-system/componenti/avatar.yaml index fa9e0263ad..2dc0ceffc7 100644 --- a/src/data/content/design-system/componenti/avatar.yaml +++ b/src/data/content/design-system/componenti/avatar.yaml @@ -67,6 +67,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -77,6 +78,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -87,6 +89,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -97,6 +100,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -111,6 +115,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -121,6 +126,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -131,6 +137,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -142,6 +149,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -173,6 +181,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/back-to-top.yaml b/src/data/content/design-system/componenti/back-to-top.yaml index 04a6939c12..8afeaea435 100644 --- a/src/data/content/design-system/componenti/back-to-top.yaml +++ b/src/data/content/design-system/componenti/back-to-top.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/back.yaml b/src/data/content/design-system/componenti/back.yaml index c081819809..6749372682 100644 --- a/src/data/content/design-system/componenti/back.yaml +++ b/src/data/content/design-system/componenti/back.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/badge.yaml b/src/data/content/design-system/componenti/badge.yaml index 94ca469076..eb1d9a0b5e 100644 --- a/src/data/content/design-system/componenti/badge.yaml +++ b/src/data/content/design-system/componenti/badge.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/bottomnav.yaml b/src/data/content/design-system/componenti/bottomnav.yaml index 61b2030eb1..bb7ae02f9a 100644 --- a/src/data/content/design-system/componenti/bottomnav.yaml +++ b/src/data/content/design-system/componenti/bottomnav.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/breadcrumbs.yaml b/src/data/content/design-system/componenti/breadcrumbs.yaml index da802f2fff..7b7f4793dc 100644 --- a/src/data/content/design-system/componenti/breadcrumbs.yaml +++ b/src/data/content/design-system/componenti/breadcrumbs.yaml @@ -77,6 +77,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -87,6 +88,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -106,6 +108,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -116,6 +119,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: true @@ -173,6 +177,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -265,6 +270,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -282,6 +288,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -298,6 +305,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -311,6 +319,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -342,6 +351,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/buttons.yaml b/src/data/content/design-system/componenti/buttons.yaml index 5f6d56c463..7de2cf3c90 100644 --- a/src/data/content/design-system/componenti/buttons.yaml +++ b/src/data/content/design-system/componenti/buttons.yaml @@ -66,6 +66,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -76,6 +77,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -103,6 +105,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: true @@ -160,6 +163,7 @@ tabs: - full: true noSpace: true + paddingLeft: true title: Stato del componente id: ComponentStatus text: Lo stato del presente componente nelle diverse librerie di design e sviluppo del design system @@ -253,6 +257,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -271,6 +276,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -287,6 +293,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -308,6 +315,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -339,6 +347,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/callout.yaml b/src/data/content/design-system/componenti/callout.yaml index 510594578c..9416bd344c 100644 --- a/src/data/content/design-system/componenti/callout.yaml +++ b/src/data/content/design-system/componenti/callout.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/card.yaml b/src/data/content/design-system/componenti/card.yaml index c6c9a357f3..7cc53e443c 100644 --- a/src/data/content/design-system/componenti/card.yaml +++ b/src/data/content/design-system/componenti/card.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/carousel.yaml b/src/data/content/design-system/componenti/carousel.yaml index 6451dc63b1..f022a9eea6 100644 --- a/src/data/content/design-system/componenti/carousel.yaml +++ b/src/data/content/design-system/componenti/carousel.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/chips.yaml b/src/data/content/design-system/componenti/chips.yaml index 87a3bae05e..3562ba2847 100644 --- a/src/data/content/design-system/componenti/chips.yaml +++ b/src/data/content/design-system/componenti/chips.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -76,6 +77,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -97,6 +99,7 @@ tabs: - Usa etichette coerenti, definendo classificazioni puntuali per le tipologie di cui hai bisogno (argomenti, stati, o altri attributi). - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -108,6 +111,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -118,6 +122,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -132,6 +137,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -150,6 +156,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -169,6 +176,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -182,6 +190,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -213,6 +222,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/collapse.yaml b/src/data/content/design-system/componenti/collapse.yaml index 2dc6abe1d5..e65949abac 100644 --- a/src/data/content/design-system/componenti/collapse.yaml +++ b/src/data/content/design-system/componenti/collapse.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/datepicker.yaml b/src/data/content/design-system/componenti/datepicker.yaml index 0a53a1f136..3351392437 100644 --- a/src/data/content/design-system/componenti/datepicker.yaml +++ b/src/data/content/design-system/componenti/datepicker.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/dimmer.yaml b/src/data/content/design-system/componenti/dimmer.yaml index 1ee504ec02..64297a3dd4 100644 --- a/src/data/content/design-system/componenti/dimmer.yaml +++ b/src/data/content/design-system/componenti/dimmer.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/dropdown.yaml b/src/data/content/design-system/componenti/dropdown.yaml index 3b308f5a1e..322c977ecf 100644 --- a/src/data/content/design-system/componenti/dropdown.yaml +++ b/src/data/content/design-system/componenti/dropdown.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -153,6 +155,7 @@ tabs: - full: true noSpace: true + paddingLeft: true title: Stato del componente id: ComponentStatus text: Lo stato del presente componente nelle diverse librerie di design e sviluppo del design system @@ -232,6 +235,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -242,6 +246,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -252,6 +257,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -263,6 +269,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -294,6 +301,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/footer.yaml b/src/data/content/design-system/componenti/footer.yaml index 9018ab0285..8845b82d54 100644 --- a/src/data/content/design-system/componenti/footer.yaml +++ b/src/data/content/design-system/componenti/footer.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -98,6 +100,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -108,6 +111,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -123,6 +127,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: true @@ -156,6 +161,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: true @@ -177,6 +183,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -208,6 +215,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/form.yaml b/src/data/content/design-system/componenti/form.yaml index 475c11fb3a..57c3dbdb93 100644 --- a/src/data/content/design-system/componenti/form.yaml +++ b/src/data/content/design-system/componenti/form.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/forward.yaml b/src/data/content/design-system/componenti/forward.yaml index 0cc045cf68..aeab44d12f 100644 --- a/src/data/content/design-system/componenti/forward.yaml +++ b/src/data/content/design-system/componenti/forward.yaml @@ -66,6 +66,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -76,6 +77,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -86,6 +88,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -96,6 +99,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -110,6 +114,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -120,6 +125,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -130,6 +136,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -141,6 +148,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -173,6 +181,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/header.yaml b/src/data/content/design-system/componenti/header.yaml index c0dc4c7eed..29d2d3a68f 100644 --- a/src/data/content/design-system/componenti/header.yaml +++ b/src/data/content/design-system/componenti/header.yaml @@ -66,6 +66,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -78,6 +79,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -113,6 +115,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -123,6 +126,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -137,6 +141,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: true @@ -202,6 +207,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -222,6 +228,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: true @@ -249,6 +256,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -281,6 +289,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/hero.yaml b/src/data/content/design-system/componenti/hero.yaml index 175d4649be..0aab6719e8 100644 --- a/src/data/content/design-system/componenti/hero.yaml +++ b/src/data/content/design-system/componenti/hero.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -99,6 +101,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -109,6 +112,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -123,6 +127,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: true @@ -147,6 +152,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -157,6 +163,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: true @@ -174,6 +181,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -205,6 +213,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/input.yaml b/src/data/content/design-system/componenti/input.yaml index 06754eb095..c2f3077715 100644 --- a/src/data/content/design-system/componenti/input.yaml +++ b/src/data/content/design-system/componenti/input.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/list.yaml b/src/data/content/design-system/componenti/list.yaml index 97702ff23e..5b35c5b7cc 100644 --- a/src/data/content/design-system/componenti/list.yaml +++ b/src/data/content/design-system/componenti/list.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/megamenu.yaml b/src/data/content/design-system/componenti/megamenu.yaml index 08649d2eb3..0e598622f1 100644 --- a/src/data/content/design-system/componenti/megamenu.yaml +++ b/src/data/content/design-system/componenti/megamenu.yaml @@ -66,6 +66,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -76,6 +77,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -86,6 +88,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -96,6 +99,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -110,6 +114,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -120,6 +125,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -130,6 +136,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -141,6 +148,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -173,6 +181,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/modal.yaml b/src/data/content/design-system/componenti/modal.yaml index bd0cea37a9..dd38569b2a 100644 --- a/src/data/content/design-system/componenti/modal.yaml +++ b/src/data/content/design-system/componenti/modal.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/navscroll.yaml b/src/data/content/design-system/componenti/navscroll.yaml index cd13fb3d43..f9650e2245 100644 --- a/src/data/content/design-system/componenti/navscroll.yaml +++ b/src/data/content/design-system/componenti/navscroll.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/notifications.yaml b/src/data/content/design-system/componenti/notifications.yaml index 3ade1669ad..d1015af483 100644 --- a/src/data/content/design-system/componenti/notifications.yaml +++ b/src/data/content/design-system/componenti/notifications.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/number-input.yaml b/src/data/content/design-system/componenti/number-input.yaml index 34afd638fb..29045af44c 100644 --- a/src/data/content/design-system/componenti/number-input.yaml +++ b/src/data/content/design-system/componenti/number-input.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/overlay.yaml b/src/data/content/design-system/componenti/overlay.yaml index ab5d36eb04..04f4c33386 100644 --- a/src/data/content/design-system/componenti/overlay.yaml +++ b/src/data/content/design-system/componenti/overlay.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/pagination.yaml b/src/data/content/design-system/componenti/pagination.yaml index 5ec68b45af..8cb788ba86 100644 --- a/src/data/content/design-system/componenti/pagination.yaml +++ b/src/data/content/design-system/componenti/pagination.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/popover.yaml b/src/data/content/design-system/componenti/popover.yaml index 4857c91b35..6ece05395b 100644 --- a/src/data/content/design-system/componenti/popover.yaml +++ b/src/data/content/design-system/componenti/popover.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/progress-indicators.yaml b/src/data/content/design-system/componenti/progress-indicators.yaml index 00c66c8500..d64e6b6bf1 100644 --- a/src/data/content/design-system/componenti/progress-indicators.yaml +++ b/src/data/content/design-system/componenti/progress-indicators.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/radio-button.yaml b/src/data/content/design-system/componenti/radio-button.yaml index 55eb674f05..15305a197e 100644 --- a/src/data/content/design-system/componenti/radio-button.yaml +++ b/src/data/content/design-system/componenti/radio-button.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/rating.yaml b/src/data/content/design-system/componenti/rating.yaml index db7bdc4b0f..59731fa730 100644 --- a/src/data/content/design-system/componenti/rating.yaml +++ b/src/data/content/design-system/componenti/rating.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/sections.yaml b/src/data/content/design-system/componenti/sections.yaml index c598585672..dbb12a7954 100644 --- a/src/data/content/design-system/componenti/sections.yaml +++ b/src/data/content/design-system/componenti/sections.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/select.yaml b/src/data/content/design-system/componenti/select.yaml index 5dcfa431e6..0853d85f12 100644 --- a/src/data/content/design-system/componenti/select.yaml +++ b/src/data/content/design-system/componenti/select.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/sidebar.yaml b/src/data/content/design-system/componenti/sidebar.yaml index 418d70d946..f1eac30878 100644 --- a/src/data/content/design-system/componenti/sidebar.yaml +++ b/src/data/content/design-system/componenti/sidebar.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/skiplinks.yaml b/src/data/content/design-system/componenti/skiplinks.yaml index 82ce533f28..92f2472603 100644 --- a/src/data/content/design-system/componenti/skiplinks.yaml +++ b/src/data/content/design-system/componenti/skiplinks.yaml @@ -66,6 +66,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -77,6 +78,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -102,6 +104,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -112,6 +115,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -126,6 +130,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +145,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -152,6 +158,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -165,6 +172,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -197,6 +205,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/steppers.yaml b/src/data/content/design-system/componenti/steppers.yaml index 8427d722d0..1518708b5a 100644 --- a/src/data/content/design-system/componenti/steppers.yaml +++ b/src/data/content/design-system/componenti/steppers.yaml @@ -66,6 +66,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -76,6 +77,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -86,6 +88,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -96,6 +99,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -110,6 +114,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -120,6 +125,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -130,6 +136,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -141,6 +148,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -173,6 +181,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/sticky.yaml b/src/data/content/design-system/componenti/sticky.yaml index ccf1a66eb7..dd0ac090e0 100644 --- a/src/data/content/design-system/componenti/sticky.yaml +++ b/src/data/content/design-system/componenti/sticky.yaml @@ -66,6 +66,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -76,6 +77,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -86,6 +88,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -96,6 +99,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -110,6 +114,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -120,6 +125,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -130,6 +136,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -141,6 +148,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -173,6 +181,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/tab.yaml b/src/data/content/design-system/componenti/tab.yaml index b5c477ee21..47aaee87cb 100644 --- a/src/data/content/design-system/componenti/tab.yaml +++ b/src/data/content/design-system/componenti/tab.yaml @@ -66,6 +66,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -76,6 +77,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -86,6 +88,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -96,6 +99,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -110,6 +114,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -120,6 +125,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -130,6 +136,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -141,6 +148,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -173,6 +181,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/thumbnav.yaml b/src/data/content/design-system/componenti/thumbnav.yaml index 42887952d8..0375f87a5b 100644 --- a/src/data/content/design-system/componenti/thumbnav.yaml +++ b/src/data/content/design-system/componenti/thumbnav.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/timeline.yaml b/src/data/content/design-system/componenti/timeline.yaml index bdc7d711d7..6fd6140db4 100644 --- a/src/data/content/design-system/componenti/timeline.yaml +++ b/src/data/content/design-system/componenti/timeline.yaml @@ -66,6 +66,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -76,6 +77,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -90,6 +92,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -100,6 +103,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -114,6 +118,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -124,6 +129,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -134,6 +140,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -145,6 +152,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -177,6 +185,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/timepicker.yaml b/src/data/content/design-system/componenti/timepicker.yaml index 352a923b22..2f6bd93ea9 100644 --- a/src/data/content/design-system/componenti/timepicker.yaml +++ b/src/data/content/design-system/componenti/timepicker.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/toggles.yaml b/src/data/content/design-system/componenti/toggles.yaml index 3e4a661421..763d33115f 100644 --- a/src/data/content/design-system/componenti/toggles.yaml +++ b/src/data/content/design-system/componenti/toggles.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/toolbar.yaml b/src/data/content/design-system/componenti/toolbar.yaml index 98a197d7a4..f8dbd1f39b 100644 --- a/src/data/content/design-system/componenti/toolbar.yaml +++ b/src/data/content/design-system/componenti/toolbar.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/tooltip.yaml b/src/data/content/design-system/componenti/tooltip.yaml index f05ddc7c77..37b48c59e3 100644 --- a/src/data/content/design-system/componenti/tooltip.yaml +++ b/src/data/content/design-system/componenti/tooltip.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/transfer.yaml b/src/data/content/design-system/componenti/transfer.yaml index 836cb10bb1..1bf3d5952d 100644 --- a/src/data/content/design-system/componenti/transfer.yaml +++ b/src/data/content/design-system/componenti/transfer.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/upload.yaml b/src/data/content/design-system/componenti/upload.yaml index 2051bef0b1..c988fc7c44 100644 --- a/src/data/content/design-system/componenti/upload.yaml +++ b/src/data/content/design-system/componenti/upload.yaml @@ -65,6 +65,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -75,6 +76,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -85,6 +87,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -95,6 +98,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -109,6 +113,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -119,6 +124,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -129,6 +135,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -140,6 +147,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -171,6 +179,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/componenti/video-player.yaml b/src/data/content/design-system/componenti/video-player.yaml index 5ae38cb807..0db261915f 100644 --- a/src/data/content/design-system/componenti/video-player.yaml +++ b/src/data/content/design-system/componenti/video-player.yaml @@ -66,6 +66,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -78,6 +79,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -103,6 +105,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -113,6 +116,7 @@ tabs: - full: true noSpace: true + paddingLeft: true id: ComponentStatus components: - name: TextImageCta @@ -127,6 +131,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: true @@ -184,6 +189,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -196,6 +202,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta noSpace: false @@ -207,6 +214,7 @@ tabs: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare @@ -239,6 +247,7 @@ tabs: sectionsEditorial: - full: true noSpace: true + paddingLeft: true components: - name: TextImageCta title: Come iniziare diff --git a/src/data/content/design-system/fondamenti.yaml b/src/data/content/design-system/fondamenti.yaml index 4e977bd980..b8e6566495 100644 --- a/src/data/content/design-system/fondamenti.yaml +++ b/src/data/content/design-system/fondamenti.yaml @@ -64,6 +64,7 @@ components: title: Esplora i fondamenti showTags: false noSpace: true + paddingX: true # idInput: fundamentCardsInput # < XXX ENABLE TO ENABLE FILTER INPUT FORM ON FRONT END col2: true # button: @@ -185,7 +186,7 @@ components: # /////////// EDITORIAL CONTENTS FROM HERE //////////// - sectionsEditorial : + sectionsEditorial: - fullColumn: true noSpace: true components: @@ -193,9 +194,10 @@ components: img: /images/design-system/fondamenti.jpg alt: "" - sectionsEditorial2 : + sectionsEditorial2: - full: true noSpace: false + paddingLeft: true components: - name: TextImageCta noSpace: true diff --git a/src/data/content/design-system/fondamenti/accessibilita.yaml b/src/data/content/design-system/fondamenti/accessibilita.yaml index 63f9313751..f9caafbe07 100644 --- a/src/data/content/design-system/fondamenti/accessibilita.yaml +++ b/src/data/content/design-system/fondamenti/accessibilita.yaml @@ -101,7 +101,7 @@ components: color: secondary tags: [Accessibilità,Progettazione interfaccia,Sviluppo interfaccia] - sectionsEditorial : + sectionsEditorial: # - fullColumn: true # noSpace: true # components: @@ -111,6 +111,7 @@ components: - full: true noSpace: false + paddingLeft: true title: L’accessibilità al centro text: Per realizzare servizi pubblici digitali semplici, accessibili e inclusivi background: null @@ -124,7 +125,7 @@ components: - label: "Approfondimento su Medium" #C url: https://medium.com/designers-italia/progettare-con-qualita-accessibilita-al-centro-del-design-system-del-paese-5e3599170099 #M blank: true #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-medium #C #I #it-arrow-right | it-external-link for external links color: primary @@ -142,7 +143,7 @@ components: - label: "Linee guida accessibilità" #C url: "/norme-e-riferimenti/linee-guida-accessibilita/" #M blank: false #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -153,7 +154,7 @@ components: - label: "Specifica WCAG 2.1 in lingua italiana" #C url: https://www.w3.org/Translations/WCAG21-it/ #M blank: true #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-external-link #C #I #it-arrow-right | it-external-link for external links color: primary @@ -188,6 +189,7 @@ components: - full: true noSpace: true + paddingLeft: true title: Standard, open design e partecipazione text: Processi e risorse per l'evoluzione del design system e del suo ecosistema di risorse background: null @@ -259,7 +261,7 @@ components: - label: "Segnalazioni di accessibilità per Bootstrap Italia" #C url: https://github.com/italia/bootstrap-italia/issues?q=is%3Aissue+is%3Aopen+label%3Aa11y #M blank: true #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary diff --git a/src/data/content/design-system/fondamenti/design-tokens.yaml b/src/data/content/design-system/fondamenti/design-tokens.yaml index 21f39764f9..d4479a50f0 100644 --- a/src/data/content/design-system/fondamenti/design-tokens.yaml +++ b/src/data/content/design-system/fondamenti/design-tokens.yaml @@ -98,7 +98,7 @@ components: color: secondary tags: [Progettazione interfaccia,Sviluppo interfaccia,UI Kit] - sectionsEditorial : + sectionsEditorial: # - fullColumn: true # noSpace: true # components: @@ -107,6 +107,7 @@ components: # alt: Descrizione immagine grande - full: true noSpace: false + paddingLeft: true title: null text: null background: null @@ -140,7 +141,7 @@ components: - label: "Scarica foglio tassonomia (ODS, 40KB)" #C url: /files/resources/DI-design-tokens-list-and-taxonomy.ods #M blank: false #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-file-ods #C #I #it-arrow-right | it-external-link for external links color: primary @@ -230,7 +231,7 @@ components: - label: "Vai al kit UI" #C url: https://www.figma.com/file/2gaQw683ZazAPEILQtFLZF/%5BDesign-system-%E2%80%A8del-Paese%5D?node-id=986%3A122&t=9FQglVyiZQuCL7nt-1 #M blank: true #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-figma #C #I #it-arrow-right | it-external-link for external links color: primary @@ -251,7 +252,7 @@ components: - label: "Vai al repository Design Tokens Italia" #C url: https://github.com/italia/design-tokens-italia #M blank: true #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-github #C #I #it-arrow-right | it-external-link for external links color: primary diff --git a/src/data/content/design-system/fondamenti/griglia.yaml b/src/data/content/design-system/fondamenti/griglia.yaml index 51e3b6a05c..fc936cf8f3 100644 --- a/src/data/content/design-system/fondamenti/griglia.yaml +++ b/src/data/content/design-system/fondamenti/griglia.yaml @@ -99,10 +99,11 @@ components: color: secondary tags: [Progettazione interfaccia,Sviluppo interfaccia] - sectionsEditorial : + sectionsEditorial: - full: true noSpace: false + paddingLeft: true title: null text: null background: null diff --git a/src/data/content/design-system/fondamenti/linguaggio.yaml b/src/data/content/design-system/fondamenti/linguaggio.yaml index e9eb87933b..33618e866d 100644 --- a/src/data/content/design-system/fondamenti/linguaggio.yaml +++ b/src/data/content/design-system/fondamenti/linguaggio.yaml @@ -98,7 +98,7 @@ components: color: secondary tags: [Contenuti e linguaggio,Progettazione interfaccia] - sectionsEditorial : + sectionsEditorial: # - fullColumn: true # noSpace: true # components: @@ -107,6 +107,7 @@ components: # alt: Descrizione immagine grande - full: true noSpace: false + paddingLeft: true title: Scrivi per le persone text: Migliora il tuo approccio ai contenuti mettendo le persone al centro della progettazione background: null @@ -167,9 +168,9 @@ components: - usare **il maiuscolo solo per sigle e acronomi**; - scrivere **le date per esteso**, ad esempio 2 gennaio 2023. - sectionsEditorial2 : - full: true noSpace: true + paddingLeft: true title: Testa e ottimizza i contenuti text: | Fai evolvere la qualità dei contenuti in base ai riscontri delle persone diff --git a/src/data/content/design-system/fondamenti/microtesti.yaml b/src/data/content/design-system/fondamenti/microtesti.yaml index fb810d444f..dd2b47888a 100644 --- a/src/data/content/design-system/fondamenti/microtesti.yaml +++ b/src/data/content/design-system/fondamenti/microtesti.yaml @@ -98,9 +98,10 @@ components: color: secondary tags: [Contenuti e linguaggio,Progettazione interfaccia] - sectionsEditorial : + sectionsEditorial: - full: true noSpace: false + paddingLeft: true title: Scrivi per facilitare e orientare l’interazione #text: Migliora il rapporto tra utenti e interfaccia background: null @@ -126,7 +127,7 @@ components: - label: "Scopri le buone pratiche sui contenuti del componente Buttons" #C url: "/design-system/componenti/buttons/" #M blank: false #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -147,9 +148,9 @@ components: - full: true noSpace: true + paddingLeft: true title: Suggerimenti per microcopy efficaci e accessibili background: null - #text: Cose da fare e cose da non fare components: # 1st @@ -336,7 +337,7 @@ components: - label: "Scopri il fondamento dedicato al Tono di voce" #C url: "/design-system/fondamenti/tono-di-voce/" #M blank: false #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -354,7 +355,7 @@ components: - label: "Scopri il fondamento dedicato al Linguaggio" #C url: "/design-system/fondamenti/linguaggio/" #M blank: false #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-arrow-right #C #I #it-arrow-right | it-external-link for external links color: primary @@ -364,11 +365,10 @@ components: addonClasses: ms-2 - #### - full: true noSpace: false + paddingLeft: true title: - #text: Migliora il rapporto tra utenti e interfaccia background: null components: - name: TextImageCta diff --git a/src/data/content/design-system/fondamenti/principi-e-intenzioni.yaml b/src/data/content/design-system/fondamenti/principi-e-intenzioni.yaml index ac39fa19b4..19f37d52de 100644 --- a/src/data/content/design-system/fondamenti/principi-e-intenzioni.yaml +++ b/src/data/content/design-system/fondamenti/principi-e-intenzioni.yaml @@ -98,7 +98,7 @@ components: color: secondary tags: [Progettazione servizi,Accessibilità,Cultura progettuale,Progettazione interfaccia,Sviluppo interfaccia] - sectionsEditorial : + sectionsEditorial: # - fullColumn: true # noSpace: true # components: @@ -107,6 +107,7 @@ components: # alt: Descrizione immagine grande - full: true noSpace: false + paddingLeft: true title: A cosa serve .italia text: "Crediamo in una Pubblica Amministrazione vicina, semplice e utile alle persone di oggi e di domani, grazie a siti e servizi digitali progettati in modo collaborativo. Il design system del Paese è uno degli strumenti pratici creati per progettare servizi pubblici digitali migliori" background: null @@ -161,9 +162,9 @@ components: .italia nasce in ambiente open e resta un patrimonio di tutti: viene aggiornato in parte centralmente, in parte dalla community. - sectionsEditorial2 : - full: true noSpace: true + paddingLeft: true title: Manteniamo gli asset del Paese, insieme #text: | #Fai evolvere la qualità dei contenuti in base ai riscontri delle persone diff --git a/src/data/content/design-system/fondamenti/technical-template.yaml b/src/data/content/design-system/fondamenti/technical-template.yaml index 18aafe2799..7a99e2042e 100644 --- a/src/data/content/design-system/fondamenti/technical-template.yaml +++ b/src/data/content/design-system/fondamenti/technical-template.yaml @@ -99,10 +99,11 @@ components: color: secondary tags: [Accessibilità,Inclusione,Progettazione interfaccia,Sviluppo interfaccia] - sectionsEditorial : + sectionsEditorial: - full: true noSpace: false + paddingLeft: true title: Introduzione text: _In stesura_ background: null diff --git a/src/data/content/design-system/fondamenti/tipografia.yaml b/src/data/content/design-system/fondamenti/tipografia.yaml index 2efdb9a0bc..1b98a8282f 100644 --- a/src/data/content/design-system/fondamenti/tipografia.yaml +++ b/src/data/content/design-system/fondamenti/tipografia.yaml @@ -107,7 +107,7 @@ components: color: secondary tags: [Contenuti e linguaggio,Progettazione interfaccia] - sectionsEditorial : + sectionsEditorial: # - fullColumn: true # noSpace: true # components: @@ -116,6 +116,7 @@ components: # alt: Descrizione immagine grande - full: true noSpace: false + paddingLeft: true title: null text: null background: null diff --git a/src/data/content/design-system/fondamenti/tono-di-voce.yaml b/src/data/content/design-system/fondamenti/tono-di-voce.yaml index a12c66aa65..468fef2168 100644 --- a/src/data/content/design-system/fondamenti/tono-di-voce.yaml +++ b/src/data/content/design-system/fondamenti/tono-di-voce.yaml @@ -98,9 +98,10 @@ components: color: secondary tags: [Progettazione contenuti,Linguaggio] - sectionsEditorial : + sectionsEditorial: - full: true noSpace: false + paddingLeft: true title: Dai voce a una Pubblica Amministrazione “umana” text: Prima di essere “istituzione”, la PA è fatta di persone e parla alle persone con l’obiettivo di essere vicina, semplice e utile background: null @@ -113,12 +114,9 @@ components: Quando progetti i contenuti per un sito o un servizio digitale pubblico, **sii coerente nel mettere le persone al centro** della tua comunicazione: in altre parole, scrivi con l’obiettivo primario di farti capire ed essere efficace, tenendo conto degli stati d’animo di chi legge. - - #### - full: true noSpace: true - # title: - #text: Migliora il rapporto tra utenti e interfaccia + paddingLeft: true background: null components: - name: TextImageCta @@ -197,11 +195,9 @@ components: text: | **Abbi cura di non rafforzare stereotipi** di genere, razzisti o abilisti e di non discriminare in base all'età. - #### - full: true noSpace: false - title: - #text: Migliora il rapporto tra utenti e interfaccia + paddingLeft: true background: null components: diff --git a/src/data/content/design-system/fondamenti/versionamento.yaml b/src/data/content/design-system/fondamenti/versionamento.yaml index 71c93adfb8..300f377bc5 100644 --- a/src/data/content/design-system/fondamenti/versionamento.yaml +++ b/src/data/content/design-system/fondamenti/versionamento.yaml @@ -98,7 +98,7 @@ components: color: secondary tags: [UI Kit,Design system] - sectionsEditorial : + sectionsEditorial: # - fullColumn: true # noSpace: true # components: @@ -115,6 +115,7 @@ components: - full: true noSpace: false + paddingLeft: true title: Versionamento semantico text: Un insieme di regole che permettono di manutenere ed evolvere il design system e le sue risorse con trasparenza e responsabilità background: null @@ -133,7 +134,7 @@ components: - label: Scopri la guida al versionamento semantico (semver) #C url: https://semver.org/lang/it/ #M blank: true #M #C true if new tab for external links - # disabled: true + icon: icon: sprites.svg#it-external-link #C #I #it-arrow-right | it-external-link for external links color: primary @@ -144,6 +145,7 @@ components: - full: true noSpace: true + paddingLeft: true title: Stato delle risorse id: ComponentStatus text: "Le versioni correnti delle principali risorse operative" @@ -221,6 +223,7 @@ components: - full: true noSpace: false + paddingLeft: true id: changelog-documentazione title: Changelog documentazione text: Questa sezione del sito Designers Italia ospita la documentazione del design system del Paese diff --git a/src/data/dsnav.yaml b/src/data/dsnav.yaml index 9d07bd2d8b..efb52c8ec5 100644 --- a/src/data/dsnav.yaml +++ b/src/data/dsnav.yaml @@ -199,16 +199,16 @@ list: - label: "Video player" url: "/design-system/componenti/video-player/" - - label: Design pattern - url: "#" - disabled: true + # - label: Design pattern + # url: "#" + # disabled: true # subList: # - label: "..." # url: "#" # disabled: true - - label: Showcase - url: "#" - disabled: true + # - label: Showcase + # url: "#" + # disabled: true # subList: # - label: "..." # url: "#" diff --git a/src/pages/{content.relativePath}.js b/src/pages/{content.relativePath}.js index 5f0dc48abf..3f592363fb 100644 --- a/src/pages/{content.relativePath}.js +++ b/src/pages/{content.relativePath}.js @@ -549,6 +549,7 @@ export const query = graphql` sectionsEditorial { title headingLevel + paddingLeft background menu centered @@ -650,6 +651,8 @@ export const query = graphql` title col2 showTags + noSpace + paddingX cards { title imgRatio @@ -808,6 +811,7 @@ export const query = graphql` full noSpace title + paddingLeft components { name noSpace diff --git a/src/scss/custom.scss b/src/scss/custom.scss index 9d85971a03..85de69067d 100644 --- a/src/scss/custom.scss +++ b/src/scss/custom.scss @@ -4,7 +4,7 @@ $enable-smooth-scroll: false; // xxx forced to disable default BI behaviour test scroll-behavior: auto !important; } -p { +p, .content ul { max-width: 75ch; }