@agregio-solutions/design-system 1.21.2 → 1.21.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/design-system.cjs
CHANGED
|
@@ -291,9 +291,10 @@ See https://s-c.sh/2BAXzed for more info.`),window[Wn]+=1);const ev={sky:{100:{$
|
|
|
291
291
|
list-style: none;
|
|
292
292
|
column-gap: var(--spacing-xxs);
|
|
293
293
|
row-gap: var(--spacing-xxs);
|
|
294
|
+
padding: 0;
|
|
294
295
|
`,ia=V.li`
|
|
295
296
|
display: flex;
|
|
296
|
-
align-items:
|
|
297
|
+
align-items: end;
|
|
297
298
|
column-gap: var(--spacing-xxs);
|
|
298
299
|
font-size: ${Q.extraSmall};
|
|
299
300
|
line-height: ${ne.extraSmall};
|
|
@@ -322,6 +323,7 @@ See https://s-c.sh/2BAXzed for more info.`),window[Wn]+=1);const ev={sky:{100:{$
|
|
|
322
323
|
a,
|
|
323
324
|
button {
|
|
324
325
|
text-decoration: none;
|
|
326
|
+
border-bottom: 1px solid transparent;
|
|
325
327
|
color: var(--color-content-neutral-tertiary);
|
|
326
328
|
cursor: none;
|
|
327
329
|
pointer-events: none;
|
package/dist/design-system.js
CHANGED
|
@@ -16858,9 +16858,10 @@ const z$ = L.ol`
|
|
|
16858
16858
|
list-style: none;
|
|
16859
16859
|
column-gap: var(--spacing-xxs);
|
|
16860
16860
|
row-gap: var(--spacing-xxs);
|
|
16861
|
+
padding: 0;
|
|
16861
16862
|
`, pa = L.li`
|
|
16862
16863
|
display: flex;
|
|
16863
|
-
align-items:
|
|
16864
|
+
align-items: end;
|
|
16864
16865
|
column-gap: var(--spacing-xxs);
|
|
16865
16866
|
font-size: ${oe.extraSmall};
|
|
16866
16867
|
line-height: ${me.extraSmall};
|
|
@@ -16889,6 +16890,7 @@ const z$ = L.ol`
|
|
|
16889
16890
|
a,
|
|
16890
16891
|
button {
|
|
16891
16892
|
text-decoration: none;
|
|
16893
|
+
border-bottom: 1px solid transparent;
|
|
16892
16894
|
color: var(--color-content-neutral-tertiary);
|
|
16893
16895
|
cursor: none;
|
|
16894
16896
|
pointer-events: none;
|
|
@@ -2,7 +2,7 @@ import { default as React } from 'react';
|
|
|
2
2
|
|
|
3
3
|
type BreadcrumbsProps = {
|
|
4
4
|
/**
|
|
5
|
-
* Array of
|
|
5
|
+
* Array of link objects.
|
|
6
6
|
* Please note that the first link will automatically have the text "Home" (or a translation of it) and will not use the value of `children`.
|
|
7
7
|
* Also, at least 2 links are required to display the Breadcrumbs
|
|
8
8
|
*/
|
package/package.json
CHANGED