@dbcdk/react-components 0.0.97 → 0.0.101
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/{layout-footer/LayoutFooter.d.ts → footer/Footer.d.ts} +5 -4
- 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 +2086 -1999
- package/dist/index.css +26 -89
- package/dist/index.d.ts +3 -1
- package/dist/index.js +1664 -1578
- 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 +112 -126
- package/dist/tanstack.js +32 -46
- package/package.json +1 -1
- package/dist/components/page-layout/components/page-layout-hero/PageLayoutHero.d.ts +0 -12
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%;
|
|
@@ -2084,13 +2018,13 @@
|
|
|
2084
2018
|
block-size: var(--icon-size-sm);
|
|
2085
2019
|
}
|
|
2086
2020
|
|
|
2087
|
-
/* src/components/page-layout/components/
|
|
2088
|
-
.
|
|
2021
|
+
/* src/components/page-layout/components/footer/Footer.module.css */
|
|
2022
|
+
.Footer_footer {
|
|
2089
2023
|
inline-size: 100%;
|
|
2090
2024
|
background: var(--color-bg-surface-subtle);
|
|
2091
2025
|
line-height: var(--line-height-normal);
|
|
2092
2026
|
}
|
|
2093
|
-
.
|
|
2027
|
+
.Footer_inner {
|
|
2094
2028
|
inline-size: 100%;
|
|
2095
2029
|
max-inline-size: var(--container-xl);
|
|
2096
2030
|
margin-inline: auto;
|
|
@@ -2101,22 +2035,22 @@
|
|
|
2101
2035
|
align-items: flex-start;
|
|
2102
2036
|
gap: var(--spacing-2xl);
|
|
2103
2037
|
}
|
|
2104
|
-
.
|
|
2038
|
+
.Footer_brand {
|
|
2105
2039
|
display: flex;
|
|
2106
2040
|
flex-direction: column;
|
|
2107
2041
|
gap: var(--spacing-xs);
|
|
2108
2042
|
flex-shrink: 0;
|
|
2109
2043
|
}
|
|
2110
|
-
.
|
|
2044
|
+
.Footer_logoRow {
|
|
2111
2045
|
flex-shrink: 0;
|
|
2112
2046
|
}
|
|
2113
|
-
.
|
|
2047
|
+
.Footer_logoRow svg {
|
|
2114
2048
|
height: 24px;
|
|
2115
2049
|
width: auto;
|
|
2116
2050
|
color: var(--color-brand);
|
|
2117
2051
|
display: block;
|
|
2118
2052
|
}
|
|
2119
|
-
.
|
|
2053
|
+
.Footer_meta {
|
|
2120
2054
|
font-style: normal;
|
|
2121
2055
|
margin: 0;
|
|
2122
2056
|
color: var(--color-fg-subtle);
|
|
@@ -2125,39 +2059,39 @@
|
|
|
2125
2059
|
flex-direction: column;
|
|
2126
2060
|
gap: 1px;
|
|
2127
2061
|
}
|
|
2128
|
-
.
|
|
2062
|
+
.Footer_part {
|
|
2129
2063
|
white-space: nowrap;
|
|
2130
2064
|
}
|
|
2131
|
-
.
|
|
2065
|
+
.Footer_links {
|
|
2132
2066
|
display: flex;
|
|
2133
2067
|
flex-direction: column;
|
|
2134
2068
|
align-items: flex-start;
|
|
2135
2069
|
gap: 0;
|
|
2136
2070
|
line-height: var(--line-height-normal);
|
|
2137
2071
|
}
|
|
2138
|
-
.
|
|
2072
|
+
.Footer_linkGroup {
|
|
2139
2073
|
display: flex;
|
|
2140
2074
|
flex-direction: column;
|
|
2141
2075
|
align-items: flex-start;
|
|
2142
2076
|
gap: var(--spacing-2xs);
|
|
2143
2077
|
}
|
|
2144
|
-
.
|
|
2078
|
+
.Footer_linkGroup + .Footer_linkGroup {
|
|
2145
2079
|
margin-block-start: var(--spacing-sm);
|
|
2146
2080
|
padding-inline: 0;
|
|
2147
2081
|
border-inline-start: none;
|
|
2148
2082
|
}
|
|
2149
|
-
.
|
|
2083
|
+
.Footer_linkItem {
|
|
2150
2084
|
white-space: nowrap;
|
|
2151
2085
|
}
|
|
2152
2086
|
@media (max-width: 640px) {
|
|
2153
|
-
.
|
|
2087
|
+
.Footer_inner {
|
|
2154
2088
|
flex-direction: column;
|
|
2155
2089
|
gap: var(--spacing-md);
|
|
2156
2090
|
}
|
|
2157
|
-
.
|
|
2091
|
+
.Footer_linkGroup {
|
|
2158
2092
|
padding-inline: 0;
|
|
2159
2093
|
}
|
|
2160
|
-
.
|
|
2094
|
+
.Footer_linkGroup:first-child {
|
|
2161
2095
|
padding-inline-start: 0;
|
|
2162
2096
|
}
|
|
2163
2097
|
}
|
|
@@ -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
|
}
|
|
@@ -2851,11 +2786,13 @@
|
|
|
2851
2786
|
min-width: 0;
|
|
2852
2787
|
}
|
|
2853
2788
|
.Page_content {
|
|
2854
|
-
flex: 1 1 auto;
|
|
2855
2789
|
min-height: 0;
|
|
2856
2790
|
min-width: 0;
|
|
2857
2791
|
overflow: auto;
|
|
2858
2792
|
}
|
|
2793
|
+
.Page_contentLoading {
|
|
2794
|
+
flex: 1 1 auto;
|
|
2795
|
+
}
|
|
2859
2796
|
.Page_documentScrolling .Page_content {
|
|
2860
2797
|
overflow: visible;
|
|
2861
2798
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export * from './components/tabs/Tabs';
|
|
|
11
11
|
export * from './components/headline/Headline';
|
|
12
12
|
export * from './components/headline/CollapsibleHeadline';
|
|
13
13
|
export * from './components/page-layout/PageLayout';
|
|
14
|
-
export * from './components/page-layout/components/
|
|
14
|
+
export * from './components/page-layout/components/footer/Footer';
|
|
15
15
|
export * from './components/forms/input/Input';
|
|
16
16
|
export * from './components/search-box/SearchBox';
|
|
17
17
|
export * from './hooks/useTheme';
|
|
@@ -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';
|