@dbcdk/react-components 0.0.97 → 0.0.98
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/page/Page.d.ts +2 -1
- package/dist/components/page-layout/PageLayout.d.ts +0 -2
- package/dist/components/page-layout/components/page-layout-hero/PageLayoutHero.d.ts +1 -12
- package/dist/components/skeleton-loader/SkeletonLoader.d.ts +1 -1
- package/dist/components/tabs/Tabs.d.ts +2 -1
- package/dist/constants/chart-colors.d.ts +2 -0
- package/dist/constants/chart-colors.types.d.ts +3 -0
- package/dist/index.cjs +1609 -1529
- package/dist/index.css +8 -73
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1609 -1530
- package/dist/styles/styles.css +6 -1
- package/dist/styles/themes/dbc/colors.css +14 -6
- package/dist/styles/themes/forfatterweb/light.css +17 -0
- package/dist/styles.css +6 -1
- package/dist/tanstack.cjs +2 -16
- package/dist/tanstack.js +2 -16
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1337,6 +1337,7 @@
|
|
|
1337
1337
|
flex-direction: column;
|
|
1338
1338
|
min-width: 0;
|
|
1339
1339
|
overflow: auto;
|
|
1340
|
+
flex-grow: 1;
|
|
1340
1341
|
}
|
|
1341
1342
|
.Tabs_headerContainer {
|
|
1342
1343
|
display: flex;
|
|
@@ -1417,6 +1418,12 @@
|
|
|
1417
1418
|
min-height: 0;
|
|
1418
1419
|
overflow: auto;
|
|
1419
1420
|
}
|
|
1421
|
+
.Tabs_loadingContent {
|
|
1422
|
+
display: flex;
|
|
1423
|
+
width: 100%;
|
|
1424
|
+
min-height: 12rem;
|
|
1425
|
+
height: 100%;
|
|
1426
|
+
}
|
|
1420
1427
|
.Tabs_filled {
|
|
1421
1428
|
gap: 0;
|
|
1422
1429
|
}
|
|
@@ -1745,79 +1752,6 @@
|
|
|
1745
1752
|
}
|
|
1746
1753
|
}
|
|
1747
1754
|
|
|
1748
|
-
/* src/components/page-layout/components/page-layout-hero/PageLayoutHero.module.css */
|
|
1749
|
-
.PageLayoutHero_heroContainer {
|
|
1750
|
-
width: 100%;
|
|
1751
|
-
box-sizing: border-box;
|
|
1752
|
-
background-color: var(--color-brand);
|
|
1753
|
-
}
|
|
1754
|
-
.PageLayoutHero_splitWrapper {
|
|
1755
|
-
display: flex;
|
|
1756
|
-
width: 100%;
|
|
1757
|
-
height: clamp(260px, 60vh, 540px);
|
|
1758
|
-
overflow: hidden;
|
|
1759
|
-
}
|
|
1760
|
-
.PageLayoutHero_imageColumn {
|
|
1761
|
-
flex: 0 0 60%;
|
|
1762
|
-
position: relative;
|
|
1763
|
-
overflow: hidden;
|
|
1764
|
-
}
|
|
1765
|
-
.PageLayoutHero_imageColumn img,
|
|
1766
|
-
.PageLayoutHero_imageColumn picture,
|
|
1767
|
-
.PageLayoutHero_imageColumn video {
|
|
1768
|
-
width: 100%;
|
|
1769
|
-
height: 100%;
|
|
1770
|
-
object-fit: cover;
|
|
1771
|
-
display: block;
|
|
1772
|
-
}
|
|
1773
|
-
.PageLayoutHero_textColumn {
|
|
1774
|
-
flex: 0 0 40%;
|
|
1775
|
-
color: var(--color-fg-on-brand);
|
|
1776
|
-
display: flex;
|
|
1777
|
-
align-items: flex-end;
|
|
1778
|
-
padding: var(--spacing-lg);
|
|
1779
|
-
position: relative;
|
|
1780
|
-
}
|
|
1781
|
-
.PageLayoutHero_textInner {
|
|
1782
|
-
z-index: 1;
|
|
1783
|
-
max-width: 500px;
|
|
1784
|
-
}
|
|
1785
|
-
.PageLayoutHero_metaHeadline {
|
|
1786
|
-
text-transform: uppercase;
|
|
1787
|
-
opacity: 0.9;
|
|
1788
|
-
font-size: var(--font-size-lg);
|
|
1789
|
-
font-weight: 400;
|
|
1790
|
-
margin-bottom: var(--spacing-xs);
|
|
1791
|
-
}
|
|
1792
|
-
.PageLayoutHero_metaHeadline::after {
|
|
1793
|
-
content: "";
|
|
1794
|
-
display: block;
|
|
1795
|
-
width: 40px;
|
|
1796
|
-
height: 3px;
|
|
1797
|
-
background-color: var(--color-fg-on-brand);
|
|
1798
|
-
margin-top: 4px;
|
|
1799
|
-
border-radius: 2px;
|
|
1800
|
-
}
|
|
1801
|
-
.PageLayoutHero_headline h2 {
|
|
1802
|
-
margin: 0 0 var(--spacing-sm) 0;
|
|
1803
|
-
font-size: var(--font-size-3xl);
|
|
1804
|
-
color: var(--color-fg-on-brand);
|
|
1805
|
-
}
|
|
1806
|
-
@media (max-width: 900px) {
|
|
1807
|
-
.PageLayoutHero_splitWrapper {
|
|
1808
|
-
flex-direction: column;
|
|
1809
|
-
height: auto;
|
|
1810
|
-
}
|
|
1811
|
-
.PageLayoutHero_imageColumn,
|
|
1812
|
-
.PageLayoutHero_textColumn {
|
|
1813
|
-
flex: none;
|
|
1814
|
-
width: 100%;
|
|
1815
|
-
}
|
|
1816
|
-
.PageLayoutHero_textColumn {
|
|
1817
|
-
padding: var(--spacing-xl) var(--spacing-lg);
|
|
1818
|
-
}
|
|
1819
|
-
}
|
|
1820
|
-
|
|
1821
1755
|
/* src/components/page-layout/PageLayout.module.css */
|
|
1822
1756
|
.PageLayout_root {
|
|
1823
1757
|
width: 100%;
|
|
@@ -2803,6 +2737,7 @@
|
|
|
2803
2737
|
box-sizing: border-box;
|
|
2804
2738
|
display: flex;
|
|
2805
2739
|
flex-direction: column;
|
|
2740
|
+
flex: 1 1 auto;
|
|
2806
2741
|
min-width: 0;
|
|
2807
2742
|
min-height: 0;
|
|
2808
2743
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -26,6 +26,8 @@ export * from './components/breadcrumbs/Breadcrumbs';
|
|
|
26
26
|
export * from './components/circle/Circle';
|
|
27
27
|
export * from './components/forms/checkbox/Checkbox';
|
|
28
28
|
export * from './components/table/Table';
|
|
29
|
+
export * from './constants/chart-colors';
|
|
30
|
+
export * from './constants/chart-colors.types';
|
|
29
31
|
export * from './constants/severity.types';
|
|
30
32
|
export * from './components/forms/text-area/Textarea';
|
|
31
33
|
export * from './components/app-header/AppHeader';
|