@transcend-io/privacy-types 5.2.3 → 5.2.5
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/index.d.mts +1084 -25
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1703 -696
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1717,6 +1717,252 @@ declare const ConsentManagerMetricBin: {
|
|
|
1717
1717
|
/** Type override */
|
|
1718
1718
|
type ConsentManagerMetricBin = (typeof ConsentManagerMetricBin)[keyof typeof ConsentManagerMetricBin];
|
|
1719
1719
|
//#endregion
|
|
1720
|
+
//#region src/consentUiInventory.d.ts
|
|
1721
|
+
/** Status of a consent UI variant */
|
|
1722
|
+
declare const UiVariantStatus: {
|
|
1723
|
+
/** Variant is in draft */Draft: "DRAFT"; /** Variant is active */
|
|
1724
|
+
Active: "ACTIVE"; /** Variant is published */
|
|
1725
|
+
Published: "PUBLISHED";
|
|
1726
|
+
};
|
|
1727
|
+
/** Type override */
|
|
1728
|
+
type UiVariantStatus = (typeof UiVariantStatus)[keyof typeof UiVariantStatus];
|
|
1729
|
+
/** User flow for a consent UI variant */
|
|
1730
|
+
declare const ConsentUiUserFlow: {
|
|
1731
|
+
/** Banner-only flow */Banner: "BANNER"; /** Modal-only flow */
|
|
1732
|
+
Modal: "MODAL"; /** Banner and modal flow */
|
|
1733
|
+
BannerAndModal: "BANNER_AND_MODAL";
|
|
1734
|
+
};
|
|
1735
|
+
/** Type override */
|
|
1736
|
+
type ConsentUiUserFlow = (typeof ConsentUiUserFlow)[keyof typeof ConsentUiUserFlow];
|
|
1737
|
+
/** Consent UI variant input from transcend.yml */
|
|
1738
|
+
declare const ConsentVariantInput: t.IntersectionC<[t.TypeC<{
|
|
1739
|
+
/** ID of consent variant */id: t.StringC; /** Name of consent variant */
|
|
1740
|
+
name: t.StringC; /** Slug of consent variant */
|
|
1741
|
+
slug: t.StringC; /** Status of variant */
|
|
1742
|
+
status: t.KeyofC<{
|
|
1743
|
+
DRAFT: unknown;
|
|
1744
|
+
ACTIVE: unknown;
|
|
1745
|
+
PUBLISHED: unknown;
|
|
1746
|
+
}>; /** Locales of variant */
|
|
1747
|
+
locales: t.ArrayC<t.KeyofC<{
|
|
1748
|
+
no: unknown;
|
|
1749
|
+
en: unknown;
|
|
1750
|
+
ar: unknown;
|
|
1751
|
+
fr: unknown;
|
|
1752
|
+
es: unknown;
|
|
1753
|
+
de: unknown;
|
|
1754
|
+
it: unknown;
|
|
1755
|
+
ja: unknown;
|
|
1756
|
+
ru: unknown;
|
|
1757
|
+
af: unknown;
|
|
1758
|
+
bg: unknown;
|
|
1759
|
+
zh: unknown;
|
|
1760
|
+
hr: unknown;
|
|
1761
|
+
cs: unknown;
|
|
1762
|
+
da: unknown;
|
|
1763
|
+
fi: unknown;
|
|
1764
|
+
el: unknown;
|
|
1765
|
+
hi: unknown;
|
|
1766
|
+
hu: unknown;
|
|
1767
|
+
ko: unknown;
|
|
1768
|
+
lt: unknown;
|
|
1769
|
+
ms: unknown;
|
|
1770
|
+
mr: unknown;
|
|
1771
|
+
nb: unknown;
|
|
1772
|
+
pl: unknown;
|
|
1773
|
+
pt: unknown;
|
|
1774
|
+
ro: unknown;
|
|
1775
|
+
sr: unknown;
|
|
1776
|
+
sv: unknown;
|
|
1777
|
+
ta: unknown;
|
|
1778
|
+
th: unknown;
|
|
1779
|
+
tr: unknown;
|
|
1780
|
+
uk: unknown;
|
|
1781
|
+
vi: unknown;
|
|
1782
|
+
zu: unknown;
|
|
1783
|
+
he: unknown;
|
|
1784
|
+
iw: unknown;
|
|
1785
|
+
nl: unknown;
|
|
1786
|
+
et: unknown;
|
|
1787
|
+
is: unknown;
|
|
1788
|
+
lv: unknown;
|
|
1789
|
+
mt: unknown;
|
|
1790
|
+
sk: unknown;
|
|
1791
|
+
sl: unknown;
|
|
1792
|
+
fil: unknown;
|
|
1793
|
+
bs: unknown;
|
|
1794
|
+
ca: unknown;
|
|
1795
|
+
eu: unknown;
|
|
1796
|
+
gl: unknown;
|
|
1797
|
+
dv: unknown;
|
|
1798
|
+
ur: unknown;
|
|
1799
|
+
sq: unknown;
|
|
1800
|
+
am: unknown;
|
|
1801
|
+
hy: unknown;
|
|
1802
|
+
az: unknown;
|
|
1803
|
+
bn: unknown;
|
|
1804
|
+
"fa-AF": unknown;
|
|
1805
|
+
fa: unknown;
|
|
1806
|
+
tl: unknown;
|
|
1807
|
+
ka: unknown;
|
|
1808
|
+
gu: unknown;
|
|
1809
|
+
ht: unknown;
|
|
1810
|
+
ha: unknown;
|
|
1811
|
+
ga: unknown;
|
|
1812
|
+
kn: unknown;
|
|
1813
|
+
kk: unknown;
|
|
1814
|
+
mk: unknown;
|
|
1815
|
+
ml: unknown;
|
|
1816
|
+
mn: unknown;
|
|
1817
|
+
ps: unknown;
|
|
1818
|
+
pa: unknown;
|
|
1819
|
+
si: unknown;
|
|
1820
|
+
so: unknown;
|
|
1821
|
+
sw: unknown;
|
|
1822
|
+
te: unknown;
|
|
1823
|
+
uz: unknown;
|
|
1824
|
+
cy: unknown;
|
|
1825
|
+
"ar-AE": unknown;
|
|
1826
|
+
"fr-FR": unknown;
|
|
1827
|
+
"de-DE": unknown;
|
|
1828
|
+
"de-AT": unknown;
|
|
1829
|
+
"de-CH": unknown;
|
|
1830
|
+
"it-IT": unknown;
|
|
1831
|
+
"it-CH": unknown;
|
|
1832
|
+
"af-ZA": unknown;
|
|
1833
|
+
"bg-BG": unknown;
|
|
1834
|
+
"zh-CN": unknown;
|
|
1835
|
+
"zh-TW": unknown;
|
|
1836
|
+
"zh-Hans": unknown;
|
|
1837
|
+
"hr-HR": unknown;
|
|
1838
|
+
"cs-CZ": unknown;
|
|
1839
|
+
"da-DK": unknown;
|
|
1840
|
+
"en-GB": unknown;
|
|
1841
|
+
"en-CA": unknown;
|
|
1842
|
+
"en-AE": unknown;
|
|
1843
|
+
"fi-FI": unknown;
|
|
1844
|
+
"el-GR": unknown;
|
|
1845
|
+
"hi-IN": unknown;
|
|
1846
|
+
"hu-HU": unknown;
|
|
1847
|
+
"id-ID": unknown;
|
|
1848
|
+
"ja-JP": unknown;
|
|
1849
|
+
"ko-KR": unknown;
|
|
1850
|
+
"lt-LT": unknown;
|
|
1851
|
+
"ms-MY": unknown;
|
|
1852
|
+
"ms-SG": unknown;
|
|
1853
|
+
"mr-IN": unknown;
|
|
1854
|
+
"no-NO": unknown;
|
|
1855
|
+
"nb-NO": unknown;
|
|
1856
|
+
"pl-PL": unknown;
|
|
1857
|
+
"pt-BR": unknown;
|
|
1858
|
+
"pt-PT": unknown;
|
|
1859
|
+
"ro-RO": unknown;
|
|
1860
|
+
"ru-RU": unknown;
|
|
1861
|
+
"sr-Latn-RS": unknown;
|
|
1862
|
+
"sr-Cyrl-RS": unknown;
|
|
1863
|
+
"sv-SE": unknown;
|
|
1864
|
+
"ta-IN": unknown;
|
|
1865
|
+
"th-TH": unknown;
|
|
1866
|
+
"tr-TR": unknown;
|
|
1867
|
+
"uk-UA": unknown;
|
|
1868
|
+
"vi-VN": unknown;
|
|
1869
|
+
"zu-ZA": unknown;
|
|
1870
|
+
"en-US": unknown;
|
|
1871
|
+
"en-AU": unknown;
|
|
1872
|
+
"fr-BE": unknown;
|
|
1873
|
+
"fr-CA": unknown;
|
|
1874
|
+
"fr-CH": unknown;
|
|
1875
|
+
"en-IE": unknown;
|
|
1876
|
+
"nl-NL": unknown;
|
|
1877
|
+
"nl-BE": unknown;
|
|
1878
|
+
"es-ES": unknown;
|
|
1879
|
+
"es-AR": unknown;
|
|
1880
|
+
"es-CR": unknown;
|
|
1881
|
+
"es-CL": unknown;
|
|
1882
|
+
"es-CO": unknown;
|
|
1883
|
+
"es-MX": unknown;
|
|
1884
|
+
"es-419": unknown;
|
|
1885
|
+
"zh-HK": unknown;
|
|
1886
|
+
"he-IL": unknown;
|
|
1887
|
+
"iw-IL": unknown;
|
|
1888
|
+
"en-NZ": unknown;
|
|
1889
|
+
"et-EE": unknown;
|
|
1890
|
+
"is-IS": unknown;
|
|
1891
|
+
"lv-LV": unknown;
|
|
1892
|
+
"mt-MT": unknown;
|
|
1893
|
+
"sk-SK": unknown;
|
|
1894
|
+
"sl-SL": unknown;
|
|
1895
|
+
"fil-PH": unknown;
|
|
1896
|
+
"sq-AL": unknown;
|
|
1897
|
+
"sq-MK": unknown;
|
|
1898
|
+
"sq-XK": unknown;
|
|
1899
|
+
"am-ET": unknown;
|
|
1900
|
+
"hy-AM": unknown;
|
|
1901
|
+
"az-AZ": unknown;
|
|
1902
|
+
"bn-BD": unknown;
|
|
1903
|
+
"bn-IN": unknown;
|
|
1904
|
+
"bs-BA": unknown;
|
|
1905
|
+
"bs-Cyrl-BA": unknown;
|
|
1906
|
+
"bs-Latn-BA": unknown;
|
|
1907
|
+
"ca-ES": unknown;
|
|
1908
|
+
"ca-AD": unknown;
|
|
1909
|
+
"ca-FR": unknown;
|
|
1910
|
+
"ca-IT": unknown;
|
|
1911
|
+
"tl-PH": unknown;
|
|
1912
|
+
"ka-GE": unknown;
|
|
1913
|
+
"gu-IN": unknown;
|
|
1914
|
+
"ht-HT": unknown;
|
|
1915
|
+
"ha-NG": unknown;
|
|
1916
|
+
"ha-NE": unknown;
|
|
1917
|
+
"ha-GH": unknown;
|
|
1918
|
+
"ga-IE": unknown;
|
|
1919
|
+
"kn-IN": unknown;
|
|
1920
|
+
"kk-KZ": unknown;
|
|
1921
|
+
"mk-MK": unknown;
|
|
1922
|
+
"ml-IN": unknown;
|
|
1923
|
+
"mn-MN": unknown;
|
|
1924
|
+
"ps-AF": unknown;
|
|
1925
|
+
"pa-Guru-IN": unknown;
|
|
1926
|
+
"pa-Arab-PK": unknown;
|
|
1927
|
+
"si-LK": unknown;
|
|
1928
|
+
"so-SO": unknown;
|
|
1929
|
+
"so-DJ": unknown;
|
|
1930
|
+
"so-ET": unknown;
|
|
1931
|
+
"so-KE": unknown;
|
|
1932
|
+
"sw-KE": unknown;
|
|
1933
|
+
"sw-TZ": unknown;
|
|
1934
|
+
"sw-UG": unknown;
|
|
1935
|
+
"sw-CD": unknown;
|
|
1936
|
+
"te-IN": unknown;
|
|
1937
|
+
"ur-PK": unknown;
|
|
1938
|
+
"ur-IN": unknown;
|
|
1939
|
+
"uz-UZ": unknown;
|
|
1940
|
+
"cy-GB": unknown;
|
|
1941
|
+
"eu-ES": unknown;
|
|
1942
|
+
"gl-ES": unknown;
|
|
1943
|
+
}>>; /** Configuration of variant */
|
|
1944
|
+
configuration: t.StringC;
|
|
1945
|
+
}>, t.PartialC<{
|
|
1946
|
+
/** Description of variant */description: t.StringC; /** User flow of variant */
|
|
1947
|
+
userFlow: t.KeyofC<{
|
|
1948
|
+
BANNER: unknown;
|
|
1949
|
+
MODAL: unknown;
|
|
1950
|
+
BANNER_AND_MODAL: unknown;
|
|
1951
|
+
}>; /** Slug of the consent UI theme associated with this variant */
|
|
1952
|
+
themeSlug: t.StringC;
|
|
1953
|
+
}>]>;
|
|
1954
|
+
/** Type override */
|
|
1955
|
+
type ConsentVariantInput = t.TypeOf<typeof ConsentVariantInput>;
|
|
1956
|
+
/** Consent UI theme input from transcend.yml */
|
|
1957
|
+
declare const ConsentThemeInput: t.TypeC<{
|
|
1958
|
+
/** ID of consent theme */id: t.StringC; /** Name of consent theme */
|
|
1959
|
+
name: t.StringC; /** Slug of consent theme */
|
|
1960
|
+
slug: t.StringC; /** Configuration of theme */
|
|
1961
|
+
configuration: t.StringC;
|
|
1962
|
+
}>;
|
|
1963
|
+
/** Type override */
|
|
1964
|
+
type ConsentThemeInput = t.TypeOf<typeof ConsentThemeInput>;
|
|
1965
|
+
//#endregion
|
|
1720
1966
|
//#region src/consentUi.d.ts
|
|
1721
1967
|
/**
|
|
1722
1968
|
* Types representing the top-level consent UI configuration
|
|
@@ -3173,6 +3419,477 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
|
|
|
3173
3419
|
}>]>;
|
|
3174
3420
|
}>]>]>>;
|
|
3175
3421
|
variantThemeMap: t.RecordC<t.StringC, t.StringC>;
|
|
3422
|
+
themeConfigMap: t.RecordC<t.StringC, t.UnionC<[t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
3423
|
+
buttonThemes: t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
3424
|
+
backgroundColor: t.StringC;
|
|
3425
|
+
}>, t.TypeC<{
|
|
3426
|
+
borderRadius: t.StringC;
|
|
3427
|
+
borderColor: t.StringC;
|
|
3428
|
+
}>, t.TypeC<{
|
|
3429
|
+
textColor: t.StringC;
|
|
3430
|
+
}>]>, t.TypeC<{
|
|
3431
|
+
linkColor: t.StringC;
|
|
3432
|
+
linkUnderline: t.BooleanC;
|
|
3433
|
+
}>]>>;
|
|
3434
|
+
}>, t.TypeC<{
|
|
3435
|
+
firstLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3436
|
+
buttons: t.TupleC<[t.NumberC, t.UnionC<[t.NumberC, t.UndefinedC]>, t.UnionC<[t.NumberC, t.UndefinedC]>]>;
|
|
3437
|
+
container: t.IntersectionC<[t.TypeC<{
|
|
3438
|
+
backgroundColor: t.StringC;
|
|
3439
|
+
}>, t.TypeC<{
|
|
3440
|
+
borderRadius: t.StringC;
|
|
3441
|
+
borderColor: t.StringC;
|
|
3442
|
+
}>]>;
|
|
3443
|
+
description: t.IntersectionC<[t.TypeC<{
|
|
3444
|
+
textColor: t.StringC;
|
|
3445
|
+
}>, t.TypeC<{
|
|
3446
|
+
linkColor: t.StringC;
|
|
3447
|
+
linkUnderline: t.BooleanC;
|
|
3448
|
+
}>]>;
|
|
3449
|
+
footer: t.IntersectionC<[t.TypeC<{
|
|
3450
|
+
backgroundColor: t.StringC;
|
|
3451
|
+
}>, t.TypeC<{
|
|
3452
|
+
localePickerColor: t.StringC;
|
|
3453
|
+
}>]>;
|
|
3454
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
3455
|
+
horizontalAlign: t.KeyofC<{
|
|
3456
|
+
right: unknown;
|
|
3457
|
+
left: unknown;
|
|
3458
|
+
center: unknown;
|
|
3459
|
+
}>;
|
|
3460
|
+
cookieAndPrivacyPolicy: t.PartialC<{
|
|
3461
|
+
linkColor: t.StringC;
|
|
3462
|
+
linkUnderline: t.BooleanC;
|
|
3463
|
+
}>;
|
|
3464
|
+
}>, t.PartialC<{
|
|
3465
|
+
background: t.TypeC<{
|
|
3466
|
+
backgroundColor: t.StringC;
|
|
3467
|
+
}>;
|
|
3468
|
+
header: t.IntersectionC<[t.TypeC<{
|
|
3469
|
+
textColor: t.StringC;
|
|
3470
|
+
}>, t.TypeC<{
|
|
3471
|
+
logoPosition: t.KeyofC<{
|
|
3472
|
+
left: unknown;
|
|
3473
|
+
above: unknown;
|
|
3474
|
+
}>;
|
|
3475
|
+
}>]>;
|
|
3476
|
+
closeButton: t.IntersectionC<[t.TypeC<{
|
|
3477
|
+
backgroundColor: t.StringC;
|
|
3478
|
+
}>, t.TypeC<{
|
|
3479
|
+
borderRadius: t.StringC;
|
|
3480
|
+
borderColor: t.StringC;
|
|
3481
|
+
}>, t.TypeC<{
|
|
3482
|
+
iconColor: t.StringC;
|
|
3483
|
+
}>]>;
|
|
3484
|
+
}>]>, t.TypeC<{
|
|
3485
|
+
contentFlow: t.KeyofC<{
|
|
3486
|
+
vertical: unknown;
|
|
3487
|
+
"horizontal-stacked": unknown;
|
|
3488
|
+
"horizontal-flat": unknown;
|
|
3489
|
+
}>;
|
|
3490
|
+
verticalAlign: t.KeyofC<{
|
|
3491
|
+
center: unknown;
|
|
3492
|
+
top: unknown;
|
|
3493
|
+
bottom: unknown;
|
|
3494
|
+
}>;
|
|
3495
|
+
}>, t.PartialC<{
|
|
3496
|
+
contentLayout: t.UnionC<[t.TypeC<{
|
|
3497
|
+
breakpoint: t.TypeC<{
|
|
3498
|
+
value: t.NumberC;
|
|
3499
|
+
unit: t.KeyofC<{
|
|
3500
|
+
px: unknown;
|
|
3501
|
+
percent: unknown;
|
|
3502
|
+
}>;
|
|
3503
|
+
}>;
|
|
3504
|
+
maxWidths: t.RecordC<t.KeyofC<{
|
|
3505
|
+
vertical: unknown;
|
|
3506
|
+
"horizontal-stacked": unknown;
|
|
3507
|
+
"horizontal-flat": unknown;
|
|
3508
|
+
}>, t.StringC>;
|
|
3509
|
+
}>, t.TypeC<{
|
|
3510
|
+
fullWidth: t.LiteralC<true>;
|
|
3511
|
+
}>]>;
|
|
3512
|
+
}>]>;
|
|
3513
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
3514
|
+
buttonThemes: t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
3515
|
+
backgroundColor: t.StringC;
|
|
3516
|
+
}>, t.TypeC<{
|
|
3517
|
+
borderRadius: t.StringC;
|
|
3518
|
+
borderColor: t.StringC;
|
|
3519
|
+
}>, t.TypeC<{
|
|
3520
|
+
textColor: t.StringC;
|
|
3521
|
+
}>]>, t.TypeC<{
|
|
3522
|
+
linkColor: t.StringC;
|
|
3523
|
+
linkUnderline: t.BooleanC;
|
|
3524
|
+
}>]>>;
|
|
3525
|
+
}>, t.TypeC<{
|
|
3526
|
+
secondLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3527
|
+
buttons: t.TupleC<[t.NumberC, t.UnionC<[t.NumberC, t.UndefinedC]>, t.UnionC<[t.NumberC, t.UndefinedC]>]>;
|
|
3528
|
+
container: t.IntersectionC<[t.TypeC<{
|
|
3529
|
+
backgroundColor: t.StringC;
|
|
3530
|
+
}>, t.TypeC<{
|
|
3531
|
+
borderRadius: t.StringC;
|
|
3532
|
+
borderColor: t.StringC;
|
|
3533
|
+
}>]>;
|
|
3534
|
+
description: t.IntersectionC<[t.TypeC<{
|
|
3535
|
+
textColor: t.StringC;
|
|
3536
|
+
}>, t.TypeC<{
|
|
3537
|
+
linkColor: t.StringC;
|
|
3538
|
+
linkUnderline: t.BooleanC;
|
|
3539
|
+
}>]>;
|
|
3540
|
+
footer: t.IntersectionC<[t.TypeC<{
|
|
3541
|
+
backgroundColor: t.StringC;
|
|
3542
|
+
}>, t.TypeC<{
|
|
3543
|
+
localePickerColor: t.StringC;
|
|
3544
|
+
}>]>;
|
|
3545
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
3546
|
+
horizontalAlign: t.KeyofC<{
|
|
3547
|
+
right: unknown;
|
|
3548
|
+
left: unknown;
|
|
3549
|
+
center: unknown;
|
|
3550
|
+
}>;
|
|
3551
|
+
cookieAndPrivacyPolicy: t.PartialC<{
|
|
3552
|
+
linkColor: t.StringC;
|
|
3553
|
+
linkUnderline: t.BooleanC;
|
|
3554
|
+
}>;
|
|
3555
|
+
}>, t.PartialC<{
|
|
3556
|
+
background: t.TypeC<{
|
|
3557
|
+
backgroundColor: t.StringC;
|
|
3558
|
+
}>;
|
|
3559
|
+
header: t.IntersectionC<[t.TypeC<{
|
|
3560
|
+
textColor: t.StringC;
|
|
3561
|
+
}>, t.TypeC<{
|
|
3562
|
+
logoPosition: t.KeyofC<{
|
|
3563
|
+
left: unknown;
|
|
3564
|
+
above: unknown;
|
|
3565
|
+
}>;
|
|
3566
|
+
}>]>;
|
|
3567
|
+
closeButton: t.IntersectionC<[t.TypeC<{
|
|
3568
|
+
backgroundColor: t.StringC;
|
|
3569
|
+
}>, t.TypeC<{
|
|
3570
|
+
borderRadius: t.StringC;
|
|
3571
|
+
borderColor: t.StringC;
|
|
3572
|
+
}>, t.TypeC<{
|
|
3573
|
+
iconColor: t.StringC;
|
|
3574
|
+
}>]>;
|
|
3575
|
+
}>]>, t.TypeC<{
|
|
3576
|
+
modalTitle: t.TypeC<{
|
|
3577
|
+
textColor: t.StringC;
|
|
3578
|
+
}>;
|
|
3579
|
+
modalSubtitle: t.TypeC<{
|
|
3580
|
+
textColor: t.StringC;
|
|
3581
|
+
}>;
|
|
3582
|
+
purposeListTitle: t.TypeC<{
|
|
3583
|
+
textColor: t.StringC;
|
|
3584
|
+
}>;
|
|
3585
|
+
caretIcon: t.TypeC<{
|
|
3586
|
+
iconColor: t.StringC;
|
|
3587
|
+
}>;
|
|
3588
|
+
cardTitle: t.TypeC<{
|
|
3589
|
+
textColor: t.StringC;
|
|
3590
|
+
}>;
|
|
3591
|
+
alwaysOnText: t.TypeC<{
|
|
3592
|
+
textColor: t.StringC;
|
|
3593
|
+
}>;
|
|
3594
|
+
purposeDescription: t.IntersectionC<[t.TypeC<{
|
|
3595
|
+
textColor: t.StringC;
|
|
3596
|
+
}>, t.TypeC<{
|
|
3597
|
+
linkColor: t.StringC;
|
|
3598
|
+
linkUnderline: t.BooleanC;
|
|
3599
|
+
}>]>;
|
|
3600
|
+
purposeCard: t.IntersectionC<[t.TypeC<{
|
|
3601
|
+
backgroundColor: t.StringC;
|
|
3602
|
+
}>, t.TypeC<{
|
|
3603
|
+
borderRadius: t.StringC;
|
|
3604
|
+
borderColor: t.StringC;
|
|
3605
|
+
}>]>;
|
|
3606
|
+
toggle: t.IntersectionC<[t.TypeC<{
|
|
3607
|
+
textColor: t.StringC;
|
|
3608
|
+
}>, t.TypeC<{
|
|
3609
|
+
iconColor: t.StringC;
|
|
3610
|
+
}>, t.TypeC<{
|
|
3611
|
+
enabledColor: t.StringC;
|
|
3612
|
+
disabledColor: t.StringC;
|
|
3613
|
+
knobColor: t.StringC;
|
|
3614
|
+
}>]>;
|
|
3615
|
+
lockToEdges: t.BooleanC;
|
|
3616
|
+
maxWidth: t.StringC;
|
|
3617
|
+
}>, t.PartialC<{
|
|
3618
|
+
bulkActionButtons: t.TupleC<[t.NumberC, t.NumberC]>;
|
|
3619
|
+
shrinkToFullWidth: t.StringC;
|
|
3620
|
+
}>]>;
|
|
3621
|
+
}>]>, t.IntersectionC<[t.TypeC<{
|
|
3622
|
+
buttonThemes: t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
3623
|
+
backgroundColor: t.StringC;
|
|
3624
|
+
}>, t.TypeC<{
|
|
3625
|
+
borderRadius: t.StringC;
|
|
3626
|
+
borderColor: t.StringC;
|
|
3627
|
+
}>, t.TypeC<{
|
|
3628
|
+
textColor: t.StringC;
|
|
3629
|
+
}>]>, t.TypeC<{
|
|
3630
|
+
linkColor: t.StringC;
|
|
3631
|
+
linkUnderline: t.BooleanC;
|
|
3632
|
+
}>]>>;
|
|
3633
|
+
}>, t.TypeC<{
|
|
3634
|
+
firstLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3635
|
+
buttons: t.TupleC<[t.NumberC, t.UnionC<[t.NumberC, t.UndefinedC]>, t.UnionC<[t.NumberC, t.UndefinedC]>]>;
|
|
3636
|
+
container: t.IntersectionC<[t.TypeC<{
|
|
3637
|
+
backgroundColor: t.StringC;
|
|
3638
|
+
}>, t.TypeC<{
|
|
3639
|
+
borderRadius: t.StringC;
|
|
3640
|
+
borderColor: t.StringC;
|
|
3641
|
+
}>]>;
|
|
3642
|
+
description: t.IntersectionC<[t.TypeC<{
|
|
3643
|
+
textColor: t.StringC;
|
|
3644
|
+
}>, t.TypeC<{
|
|
3645
|
+
linkColor: t.StringC;
|
|
3646
|
+
linkUnderline: t.BooleanC;
|
|
3647
|
+
}>]>;
|
|
3648
|
+
footer: t.IntersectionC<[t.TypeC<{
|
|
3649
|
+
backgroundColor: t.StringC;
|
|
3650
|
+
}>, t.TypeC<{
|
|
3651
|
+
localePickerColor: t.StringC;
|
|
3652
|
+
}>]>;
|
|
3653
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
3654
|
+
horizontalAlign: t.KeyofC<{
|
|
3655
|
+
right: unknown;
|
|
3656
|
+
left: unknown;
|
|
3657
|
+
center: unknown;
|
|
3658
|
+
}>;
|
|
3659
|
+
cookieAndPrivacyPolicy: t.PartialC<{
|
|
3660
|
+
linkColor: t.StringC;
|
|
3661
|
+
linkUnderline: t.BooleanC;
|
|
3662
|
+
}>;
|
|
3663
|
+
}>, t.PartialC<{
|
|
3664
|
+
background: t.TypeC<{
|
|
3665
|
+
backgroundColor: t.StringC;
|
|
3666
|
+
}>;
|
|
3667
|
+
header: t.IntersectionC<[t.TypeC<{
|
|
3668
|
+
textColor: t.StringC;
|
|
3669
|
+
}>, t.TypeC<{
|
|
3670
|
+
logoPosition: t.KeyofC<{
|
|
3671
|
+
left: unknown;
|
|
3672
|
+
above: unknown;
|
|
3673
|
+
}>;
|
|
3674
|
+
}>]>;
|
|
3675
|
+
closeButton: t.IntersectionC<[t.TypeC<{
|
|
3676
|
+
backgroundColor: t.StringC;
|
|
3677
|
+
}>, t.TypeC<{
|
|
3678
|
+
borderRadius: t.StringC;
|
|
3679
|
+
borderColor: t.StringC;
|
|
3680
|
+
}>, t.TypeC<{
|
|
3681
|
+
iconColor: t.StringC;
|
|
3682
|
+
}>]>;
|
|
3683
|
+
}>]>, t.TypeC<{
|
|
3684
|
+
contentFlow: t.KeyofC<{
|
|
3685
|
+
vertical: unknown;
|
|
3686
|
+
"horizontal-stacked": unknown;
|
|
3687
|
+
"horizontal-flat": unknown;
|
|
3688
|
+
}>;
|
|
3689
|
+
verticalAlign: t.KeyofC<{
|
|
3690
|
+
center: unknown;
|
|
3691
|
+
top: unknown;
|
|
3692
|
+
bottom: unknown;
|
|
3693
|
+
}>;
|
|
3694
|
+
}>, t.PartialC<{
|
|
3695
|
+
contentLayout: t.UnionC<[t.TypeC<{
|
|
3696
|
+
breakpoint: t.TypeC<{
|
|
3697
|
+
value: t.NumberC;
|
|
3698
|
+
unit: t.KeyofC<{
|
|
3699
|
+
px: unknown;
|
|
3700
|
+
percent: unknown;
|
|
3701
|
+
}>;
|
|
3702
|
+
}>;
|
|
3703
|
+
maxWidths: t.RecordC<t.KeyofC<{
|
|
3704
|
+
vertical: unknown;
|
|
3705
|
+
"horizontal-stacked": unknown;
|
|
3706
|
+
"horizontal-flat": unknown;
|
|
3707
|
+
}>, t.StringC>;
|
|
3708
|
+
}>, t.TypeC<{
|
|
3709
|
+
fullWidth: t.LiteralC<true>;
|
|
3710
|
+
}>]>;
|
|
3711
|
+
}>]>;
|
|
3712
|
+
secondLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3713
|
+
buttons: t.TupleC<[t.NumberC, t.UnionC<[t.NumberC, t.UndefinedC]>, t.UnionC<[t.NumberC, t.UndefinedC]>]>;
|
|
3714
|
+
container: t.IntersectionC<[t.TypeC<{
|
|
3715
|
+
backgroundColor: t.StringC;
|
|
3716
|
+
}>, t.TypeC<{
|
|
3717
|
+
borderRadius: t.StringC;
|
|
3718
|
+
borderColor: t.StringC;
|
|
3719
|
+
}>]>;
|
|
3720
|
+
description: t.IntersectionC<[t.TypeC<{
|
|
3721
|
+
textColor: t.StringC;
|
|
3722
|
+
}>, t.TypeC<{
|
|
3723
|
+
linkColor: t.StringC;
|
|
3724
|
+
linkUnderline: t.BooleanC;
|
|
3725
|
+
}>]>;
|
|
3726
|
+
footer: t.IntersectionC<[t.TypeC<{
|
|
3727
|
+
backgroundColor: t.StringC;
|
|
3728
|
+
}>, t.TypeC<{
|
|
3729
|
+
localePickerColor: t.StringC;
|
|
3730
|
+
}>]>;
|
|
3731
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
3732
|
+
horizontalAlign: t.KeyofC<{
|
|
3733
|
+
right: unknown;
|
|
3734
|
+
left: unknown;
|
|
3735
|
+
center: unknown;
|
|
3736
|
+
}>;
|
|
3737
|
+
cookieAndPrivacyPolicy: t.PartialC<{
|
|
3738
|
+
linkColor: t.StringC;
|
|
3739
|
+
linkUnderline: t.BooleanC;
|
|
3740
|
+
}>;
|
|
3741
|
+
}>, t.PartialC<{
|
|
3742
|
+
background: t.TypeC<{
|
|
3743
|
+
backgroundColor: t.StringC;
|
|
3744
|
+
}>;
|
|
3745
|
+
header: t.IntersectionC<[t.TypeC<{
|
|
3746
|
+
textColor: t.StringC;
|
|
3747
|
+
}>, t.TypeC<{
|
|
3748
|
+
logoPosition: t.KeyofC<{
|
|
3749
|
+
left: unknown;
|
|
3750
|
+
above: unknown;
|
|
3751
|
+
}>;
|
|
3752
|
+
}>]>;
|
|
3753
|
+
closeButton: t.IntersectionC<[t.TypeC<{
|
|
3754
|
+
backgroundColor: t.StringC;
|
|
3755
|
+
}>, t.TypeC<{
|
|
3756
|
+
borderRadius: t.StringC;
|
|
3757
|
+
borderColor: t.StringC;
|
|
3758
|
+
}>, t.TypeC<{
|
|
3759
|
+
iconColor: t.StringC;
|
|
3760
|
+
}>]>;
|
|
3761
|
+
}>]>, t.TypeC<{
|
|
3762
|
+
modalTitle: t.TypeC<{
|
|
3763
|
+
textColor: t.StringC;
|
|
3764
|
+
}>;
|
|
3765
|
+
modalSubtitle: t.TypeC<{
|
|
3766
|
+
textColor: t.StringC;
|
|
3767
|
+
}>;
|
|
3768
|
+
purposeListTitle: t.TypeC<{
|
|
3769
|
+
textColor: t.StringC;
|
|
3770
|
+
}>;
|
|
3771
|
+
caretIcon: t.TypeC<{
|
|
3772
|
+
iconColor: t.StringC;
|
|
3773
|
+
}>;
|
|
3774
|
+
cardTitle: t.TypeC<{
|
|
3775
|
+
textColor: t.StringC;
|
|
3776
|
+
}>;
|
|
3777
|
+
alwaysOnText: t.TypeC<{
|
|
3778
|
+
textColor: t.StringC;
|
|
3779
|
+
}>;
|
|
3780
|
+
purposeDescription: t.IntersectionC<[t.TypeC<{
|
|
3781
|
+
textColor: t.StringC;
|
|
3782
|
+
}>, t.TypeC<{
|
|
3783
|
+
linkColor: t.StringC;
|
|
3784
|
+
linkUnderline: t.BooleanC;
|
|
3785
|
+
}>]>;
|
|
3786
|
+
purposeCard: t.IntersectionC<[t.TypeC<{
|
|
3787
|
+
backgroundColor: t.StringC;
|
|
3788
|
+
}>, t.TypeC<{
|
|
3789
|
+
borderRadius: t.StringC;
|
|
3790
|
+
borderColor: t.StringC;
|
|
3791
|
+
}>]>;
|
|
3792
|
+
toggle: t.IntersectionC<[t.TypeC<{
|
|
3793
|
+
textColor: t.StringC;
|
|
3794
|
+
}>, t.TypeC<{
|
|
3795
|
+
iconColor: t.StringC;
|
|
3796
|
+
}>, t.TypeC<{
|
|
3797
|
+
enabledColor: t.StringC;
|
|
3798
|
+
disabledColor: t.StringC;
|
|
3799
|
+
knobColor: t.StringC;
|
|
3800
|
+
}>]>;
|
|
3801
|
+
lockToEdges: t.BooleanC;
|
|
3802
|
+
maxWidth: t.StringC;
|
|
3803
|
+
}>, t.PartialC<{
|
|
3804
|
+
bulkActionButtons: t.TupleC<[t.NumberC, t.NumberC]>;
|
|
3805
|
+
shrinkToFullWidth: t.StringC;
|
|
3806
|
+
}>]>;
|
|
3807
|
+
}>]>]>, t.UnionC<[t.TypeC<{
|
|
3808
|
+
firstLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3809
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
3810
|
+
}>, t.PartialC<{
|
|
3811
|
+
header: t.TypeC<{
|
|
3812
|
+
logoPosition: t.KeyofC<{
|
|
3813
|
+
left: unknown;
|
|
3814
|
+
above: unknown;
|
|
3815
|
+
}>;
|
|
3816
|
+
logoImageUrl: t.StringC;
|
|
3817
|
+
}>;
|
|
3818
|
+
}>]>, t.TypeC<{
|
|
3819
|
+
contentLayout: t.UnionC<[t.TypeC<{
|
|
3820
|
+
breakpoint: t.TypeC<{
|
|
3821
|
+
value: t.NumberC;
|
|
3822
|
+
unit: t.KeyofC<{
|
|
3823
|
+
px: unknown;
|
|
3824
|
+
percent: unknown;
|
|
3825
|
+
}>;
|
|
3826
|
+
}>;
|
|
3827
|
+
maxWidths: t.RecordC<t.KeyofC<{
|
|
3828
|
+
vertical: unknown;
|
|
3829
|
+
"horizontal-stacked": unknown;
|
|
3830
|
+
"horizontal-flat": unknown;
|
|
3831
|
+
}>, t.StringC>;
|
|
3832
|
+
}>, t.TypeC<{
|
|
3833
|
+
fullWidth: t.LiteralC<true>;
|
|
3834
|
+
}>]>;
|
|
3835
|
+
}>]>;
|
|
3836
|
+
}>, t.TypeC<{
|
|
3837
|
+
secondLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3838
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
3839
|
+
}>, t.PartialC<{
|
|
3840
|
+
header: t.TypeC<{
|
|
3841
|
+
logoPosition: t.KeyofC<{
|
|
3842
|
+
left: unknown;
|
|
3843
|
+
above: unknown;
|
|
3844
|
+
}>;
|
|
3845
|
+
logoImageUrl: t.StringC;
|
|
3846
|
+
}>;
|
|
3847
|
+
}>]>, t.TypeC<{
|
|
3848
|
+
lockToEdges: t.BooleanC;
|
|
3849
|
+
}>]>;
|
|
3850
|
+
}>, t.TypeC<{
|
|
3851
|
+
firstLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3852
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
3853
|
+
}>, t.PartialC<{
|
|
3854
|
+
header: t.TypeC<{
|
|
3855
|
+
logoPosition: t.KeyofC<{
|
|
3856
|
+
left: unknown;
|
|
3857
|
+
above: unknown;
|
|
3858
|
+
}>;
|
|
3859
|
+
logoImageUrl: t.StringC;
|
|
3860
|
+
}>;
|
|
3861
|
+
}>]>, t.TypeC<{
|
|
3862
|
+
contentLayout: t.UnionC<[t.TypeC<{
|
|
3863
|
+
breakpoint: t.TypeC<{
|
|
3864
|
+
value: t.NumberC;
|
|
3865
|
+
unit: t.KeyofC<{
|
|
3866
|
+
px: unknown;
|
|
3867
|
+
percent: unknown;
|
|
3868
|
+
}>;
|
|
3869
|
+
}>;
|
|
3870
|
+
maxWidths: t.RecordC<t.KeyofC<{
|
|
3871
|
+
vertical: unknown;
|
|
3872
|
+
"horizontal-stacked": unknown;
|
|
3873
|
+
"horizontal-flat": unknown;
|
|
3874
|
+
}>, t.StringC>;
|
|
3875
|
+
}>, t.TypeC<{
|
|
3876
|
+
fullWidth: t.LiteralC<true>;
|
|
3877
|
+
}>]>;
|
|
3878
|
+
}>]>;
|
|
3879
|
+
secondLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3880
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
3881
|
+
}>, t.PartialC<{
|
|
3882
|
+
header: t.TypeC<{
|
|
3883
|
+
logoPosition: t.KeyofC<{
|
|
3884
|
+
left: unknown;
|
|
3885
|
+
above: unknown;
|
|
3886
|
+
}>;
|
|
3887
|
+
logoImageUrl: t.StringC;
|
|
3888
|
+
}>;
|
|
3889
|
+
}>]>, t.TypeC<{
|
|
3890
|
+
lockToEdges: t.BooleanC;
|
|
3891
|
+
}>]>;
|
|
3892
|
+
}>]>]>>;
|
|
3176
3893
|
autofocus: t.UnionC<[t.KeyofC<{
|
|
3177
3894
|
on: unknown;
|
|
3178
3895
|
off: unknown;
|
|
@@ -3526,7 +4243,17 @@ declare const ContainerTheme: t.IntersectionC<[t.TypeC<{
|
|
|
3526
4243
|
}>]>;
|
|
3527
4244
|
/** Override type */
|
|
3528
4245
|
type ContainerTheme = t.TypeOf<typeof ContainerTheme>;
|
|
3529
|
-
/** Represents the header theme configuration */
|
|
4246
|
+
/** Represents the header theme configuration (reduced scope) */
|
|
4247
|
+
declare const HeaderThemeMinimal: t.TypeC<{
|
|
4248
|
+
logoPosition: t.KeyofC<{
|
|
4249
|
+
left: unknown;
|
|
4250
|
+
above: unknown;
|
|
4251
|
+
}>;
|
|
4252
|
+
logoImageUrl: t.StringC;
|
|
4253
|
+
}>;
|
|
4254
|
+
/** Override type */
|
|
4255
|
+
type HeaderThemeMinimal = t.TypeOf<typeof HeaderThemeMinimal>;
|
|
4256
|
+
/** Represents the header theme configuration (full scope) */
|
|
3530
4257
|
declare const HeaderTheme: t.IntersectionC<[t.TypeC<{
|
|
3531
4258
|
textColor: t.StringC;
|
|
3532
4259
|
}>, t.TypeC<{
|
|
@@ -3619,7 +4346,21 @@ declare const ToggleTheme: t.IntersectionC<[t.TypeC<{
|
|
|
3619
4346
|
}>]>;
|
|
3620
4347
|
/** Override type */
|
|
3621
4348
|
type ToggleTheme = t.TypeOf<typeof ToggleTheme>;
|
|
3622
|
-
/** Theme configuration shared between both First (banner) and Second Layers (modal) */
|
|
4349
|
+
/** Theme configuration shared between both First (banner) and Second Layers (modal) (reduced scope) */
|
|
4350
|
+
declare const CommonLayerThemeMinimal: t.IntersectionC<[t.TypeC<{
|
|
4351
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
4352
|
+
}>, t.PartialC<{
|
|
4353
|
+
header: t.TypeC<{
|
|
4354
|
+
logoPosition: t.KeyofC<{
|
|
4355
|
+
left: unknown;
|
|
4356
|
+
above: unknown;
|
|
4357
|
+
}>;
|
|
4358
|
+
logoImageUrl: t.StringC;
|
|
4359
|
+
}>;
|
|
4360
|
+
}>]>;
|
|
4361
|
+
/** Override type */
|
|
4362
|
+
type CommonLayerThemeMinimal = t.TypeOf<typeof CommonLayerThemeMinimal>;
|
|
4363
|
+
/** Theme configuration shared between both First (banner) and Second Layers (modal) (full scope) */
|
|
3623
4364
|
declare const CommonLayerTheme: t.IntersectionC<[t.TypeC<{
|
|
3624
4365
|
buttons: t.TupleC<[t.NumberC, t.UnionC<[t.NumberC, t.UndefinedC]>, t.UnionC<[t.NumberC, t.UndefinedC]>]>;
|
|
3625
4366
|
container: t.IntersectionC<[t.TypeC<{
|
|
@@ -3642,8 +4383,8 @@ declare const CommonLayerTheme: t.IntersectionC<[t.TypeC<{
|
|
|
3642
4383
|
alwaysShowScrollbar: t.BooleanC;
|
|
3643
4384
|
horizontalAlign: t.KeyofC<{
|
|
3644
4385
|
right: unknown;
|
|
3645
|
-
center: unknown;
|
|
3646
4386
|
left: unknown;
|
|
4387
|
+
center: unknown;
|
|
3647
4388
|
}>;
|
|
3648
4389
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
3649
4390
|
linkColor: t.StringC;
|
|
@@ -3672,7 +4413,38 @@ declare const CommonLayerTheme: t.IntersectionC<[t.TypeC<{
|
|
|
3672
4413
|
}>]>;
|
|
3673
4414
|
/** Override type */
|
|
3674
4415
|
type CommonLayerTheme = t.TypeOf<typeof CommonLayerTheme>;
|
|
3675
|
-
/** Theme configuration for the First Layer (banner) */
|
|
4416
|
+
/** Theme configuration for the First Layer (banner) (reduced scope) */
|
|
4417
|
+
declare const FirstLayerThemeMinimal: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
4418
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
4419
|
+
}>, t.PartialC<{
|
|
4420
|
+
header: t.TypeC<{
|
|
4421
|
+
logoPosition: t.KeyofC<{
|
|
4422
|
+
left: unknown;
|
|
4423
|
+
above: unknown;
|
|
4424
|
+
}>;
|
|
4425
|
+
logoImageUrl: t.StringC;
|
|
4426
|
+
}>;
|
|
4427
|
+
}>]>, t.TypeC<{
|
|
4428
|
+
contentLayout: t.UnionC<[t.TypeC<{
|
|
4429
|
+
breakpoint: t.TypeC<{
|
|
4430
|
+
/** The numeric value of the breakpoint */value: t.NumberC; /** The unit of the breakpoint (px or percent) */
|
|
4431
|
+
unit: t.KeyofC<{
|
|
4432
|
+
px: unknown;
|
|
4433
|
+
percent: unknown;
|
|
4434
|
+
}>;
|
|
4435
|
+
}>;
|
|
4436
|
+
maxWidths: t.RecordC<t.KeyofC<{
|
|
4437
|
+
vertical: unknown;
|
|
4438
|
+
"horizontal-stacked": unknown;
|
|
4439
|
+
"horizontal-flat": unknown;
|
|
4440
|
+
}>, t.StringC>;
|
|
4441
|
+
}>, t.TypeC<{
|
|
4442
|
+
fullWidth: t.LiteralC<true>;
|
|
4443
|
+
}>]>;
|
|
4444
|
+
}>]>;
|
|
4445
|
+
/** Override type */
|
|
4446
|
+
type FirstLayerThemeMinimal = t.TypeOf<typeof FirstLayerThemeMinimal>;
|
|
4447
|
+
/** Theme configuration for the First Layer (banner) (full scope) */
|
|
3676
4448
|
declare const FirstLayerTheme: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3677
4449
|
buttons: t.TupleC<[t.NumberC, t.UnionC<[t.NumberC, t.UndefinedC]>, t.UnionC<[t.NumberC, t.UndefinedC]>]>;
|
|
3678
4450
|
container: t.IntersectionC<[t.TypeC<{
|
|
@@ -3695,8 +4467,8 @@ declare const FirstLayerTheme: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
|
3695
4467
|
alwaysShowScrollbar: t.BooleanC;
|
|
3696
4468
|
horizontalAlign: t.KeyofC<{
|
|
3697
4469
|
right: unknown;
|
|
3698
|
-
center: unknown;
|
|
3699
4470
|
left: unknown;
|
|
4471
|
+
center: unknown;
|
|
3700
4472
|
}>;
|
|
3701
4473
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
3702
4474
|
linkColor: t.StringC;
|
|
@@ -3729,14 +4501,47 @@ declare const FirstLayerTheme: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
|
3729
4501
|
"horizontal-flat": unknown;
|
|
3730
4502
|
}>;
|
|
3731
4503
|
verticalAlign: t.KeyofC<{
|
|
4504
|
+
center: unknown;
|
|
3732
4505
|
top: unknown;
|
|
3733
4506
|
bottom: unknown;
|
|
3734
|
-
center: unknown;
|
|
3735
4507
|
}>;
|
|
4508
|
+
}>, t.PartialC<{
|
|
4509
|
+
contentLayout: t.UnionC<[t.TypeC<{
|
|
4510
|
+
breakpoint: t.TypeC<{
|
|
4511
|
+
/** The numeric value of the breakpoint */value: t.NumberC; /** The unit of the breakpoint (px or percent) */
|
|
4512
|
+
unit: t.KeyofC<{
|
|
4513
|
+
px: unknown;
|
|
4514
|
+
percent: unknown;
|
|
4515
|
+
}>;
|
|
4516
|
+
}>;
|
|
4517
|
+
maxWidths: t.RecordC<t.KeyofC<{
|
|
4518
|
+
vertical: unknown;
|
|
4519
|
+
"horizontal-stacked": unknown;
|
|
4520
|
+
"horizontal-flat": unknown;
|
|
4521
|
+
}>, t.StringC>;
|
|
4522
|
+
}>, t.TypeC<{
|
|
4523
|
+
fullWidth: t.LiteralC<true>;
|
|
4524
|
+
}>]>;
|
|
3736
4525
|
}>]>;
|
|
3737
4526
|
/** Override type */
|
|
3738
4527
|
type FirstLayerTheme = t.TypeOf<typeof FirstLayerTheme>;
|
|
3739
|
-
/** Theme configuration for the Second Layer (modal) */
|
|
4528
|
+
/** Theme configuration for the Second Layer (modal) (reduced scope) */
|
|
4529
|
+
declare const SecondLayerThemeMinimal: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
4530
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
4531
|
+
}>, t.PartialC<{
|
|
4532
|
+
header: t.TypeC<{
|
|
4533
|
+
logoPosition: t.KeyofC<{
|
|
4534
|
+
left: unknown;
|
|
4535
|
+
above: unknown;
|
|
4536
|
+
}>;
|
|
4537
|
+
logoImageUrl: t.StringC;
|
|
4538
|
+
}>;
|
|
4539
|
+
}>]>, t.TypeC<{
|
|
4540
|
+
lockToEdges: t.BooleanC;
|
|
4541
|
+
}>]>;
|
|
4542
|
+
/** Override type */
|
|
4543
|
+
type SecondLayerThemeMinimal = t.TypeOf<typeof SecondLayerThemeMinimal>;
|
|
4544
|
+
/** Theme configuration for the Second Layer (modal) (full scope) */
|
|
3740
4545
|
declare const SecondLayerTheme: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
3741
4546
|
buttons: t.TupleC<[t.NumberC, t.UnionC<[t.NumberC, t.UndefinedC]>, t.UnionC<[t.NumberC, t.UndefinedC]>]>;
|
|
3742
4547
|
container: t.IntersectionC<[t.TypeC<{
|
|
@@ -3759,8 +4564,8 @@ declare const SecondLayerTheme: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
|
3759
4564
|
alwaysShowScrollbar: t.BooleanC;
|
|
3760
4565
|
horizontalAlign: t.KeyofC<{
|
|
3761
4566
|
right: unknown;
|
|
3762
|
-
center: unknown;
|
|
3763
4567
|
left: unknown;
|
|
4568
|
+
center: unknown;
|
|
3764
4569
|
}>;
|
|
3765
4570
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
3766
4571
|
linkColor: t.StringC;
|
|
@@ -3864,7 +4669,40 @@ declare const SharedTopLevelTheme: t.TypeC<{
|
|
|
3864
4669
|
}>;
|
|
3865
4670
|
/** Override type */
|
|
3866
4671
|
type SharedTopLevelTheme = t.TypeOf<typeof SharedTopLevelTheme>;
|
|
3867
|
-
/** Banner-only theme configuration */
|
|
4672
|
+
/** Banner-only theme configuration (reduced scope) */
|
|
4673
|
+
declare const ThemeConfigurationBannerOnlyMinimal: t.TypeC<{
|
|
4674
|
+
firstLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
4675
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
4676
|
+
}>, t.PartialC<{
|
|
4677
|
+
header: t.TypeC<{
|
|
4678
|
+
logoPosition: t.KeyofC<{
|
|
4679
|
+
left: unknown;
|
|
4680
|
+
above: unknown;
|
|
4681
|
+
}>;
|
|
4682
|
+
logoImageUrl: t.StringC;
|
|
4683
|
+
}>;
|
|
4684
|
+
}>]>, t.TypeC<{
|
|
4685
|
+
contentLayout: t.UnionC<[t.TypeC<{
|
|
4686
|
+
breakpoint: t.TypeC<{
|
|
4687
|
+
/** The numeric value of the breakpoint */value: t.NumberC; /** The unit of the breakpoint (px or percent) */
|
|
4688
|
+
unit: t.KeyofC<{
|
|
4689
|
+
px: unknown;
|
|
4690
|
+
percent: unknown;
|
|
4691
|
+
}>;
|
|
4692
|
+
}>;
|
|
4693
|
+
maxWidths: t.RecordC<t.KeyofC<{
|
|
4694
|
+
vertical: unknown;
|
|
4695
|
+
"horizontal-stacked": unknown;
|
|
4696
|
+
"horizontal-flat": unknown;
|
|
4697
|
+
}>, t.StringC>;
|
|
4698
|
+
}>, t.TypeC<{
|
|
4699
|
+
fullWidth: t.LiteralC<true>;
|
|
4700
|
+
}>]>;
|
|
4701
|
+
}>]>;
|
|
4702
|
+
}>;
|
|
4703
|
+
/** Override type */
|
|
4704
|
+
type ThemeConfigurationBannerOnlyMinimal = t.TypeOf<typeof ThemeConfigurationBannerOnlyMinimal>;
|
|
4705
|
+
/** Banner-only theme configuration (full scope) */
|
|
3868
4706
|
declare const ThemeConfigurationBannerOnly: t.IntersectionC<[t.TypeC<{
|
|
3869
4707
|
buttonThemes: t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
3870
4708
|
/** Background color as an RGBA hex string */backgroundColor: t.StringC;
|
|
@@ -3900,8 +4738,8 @@ declare const ThemeConfigurationBannerOnly: t.IntersectionC<[t.TypeC<{
|
|
|
3900
4738
|
alwaysShowScrollbar: t.BooleanC;
|
|
3901
4739
|
horizontalAlign: t.KeyofC<{
|
|
3902
4740
|
right: unknown;
|
|
3903
|
-
center: unknown;
|
|
3904
4741
|
left: unknown;
|
|
4742
|
+
center: unknown;
|
|
3905
4743
|
}>;
|
|
3906
4744
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
3907
4745
|
linkColor: t.StringC;
|
|
@@ -3934,15 +4772,50 @@ declare const ThemeConfigurationBannerOnly: t.IntersectionC<[t.TypeC<{
|
|
|
3934
4772
|
"horizontal-flat": unknown;
|
|
3935
4773
|
}>;
|
|
3936
4774
|
verticalAlign: t.KeyofC<{
|
|
4775
|
+
center: unknown;
|
|
3937
4776
|
top: unknown;
|
|
3938
4777
|
bottom: unknown;
|
|
3939
|
-
center: unknown;
|
|
3940
4778
|
}>;
|
|
4779
|
+
}>, t.PartialC<{
|
|
4780
|
+
contentLayout: t.UnionC<[t.TypeC<{
|
|
4781
|
+
breakpoint: t.TypeC<{
|
|
4782
|
+
/** The numeric value of the breakpoint */value: t.NumberC; /** The unit of the breakpoint (px or percent) */
|
|
4783
|
+
unit: t.KeyofC<{
|
|
4784
|
+
px: unknown;
|
|
4785
|
+
percent: unknown;
|
|
4786
|
+
}>;
|
|
4787
|
+
}>;
|
|
4788
|
+
maxWidths: t.RecordC<t.KeyofC<{
|
|
4789
|
+
vertical: unknown;
|
|
4790
|
+
"horizontal-stacked": unknown;
|
|
4791
|
+
"horizontal-flat": unknown;
|
|
4792
|
+
}>, t.StringC>;
|
|
4793
|
+
}>, t.TypeC<{
|
|
4794
|
+
fullWidth: t.LiteralC<true>;
|
|
4795
|
+
}>]>;
|
|
3941
4796
|
}>]>;
|
|
3942
4797
|
}>]>;
|
|
3943
4798
|
/** Override type */
|
|
3944
4799
|
type ThemeConfigurationBannerOnly = t.TypeOf<typeof ThemeConfigurationBannerOnly>;
|
|
3945
|
-
/** Modal-only theme configuration */
|
|
4800
|
+
/** Modal-only theme configuration (reduced scope) */
|
|
4801
|
+
declare const ThemeConfigurationModalOnlyMinimal: t.TypeC<{
|
|
4802
|
+
secondLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
4803
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
4804
|
+
}>, t.PartialC<{
|
|
4805
|
+
header: t.TypeC<{
|
|
4806
|
+
logoPosition: t.KeyofC<{
|
|
4807
|
+
left: unknown;
|
|
4808
|
+
above: unknown;
|
|
4809
|
+
}>;
|
|
4810
|
+
logoImageUrl: t.StringC;
|
|
4811
|
+
}>;
|
|
4812
|
+
}>]>, t.TypeC<{
|
|
4813
|
+
lockToEdges: t.BooleanC;
|
|
4814
|
+
}>]>;
|
|
4815
|
+
}>;
|
|
4816
|
+
/** Override type */
|
|
4817
|
+
type ThemeConfigurationModalOnlyMinimal = t.TypeOf<typeof ThemeConfigurationModalOnlyMinimal>;
|
|
4818
|
+
/** Modal-only theme configuration (full scope) */
|
|
3946
4819
|
declare const ThemeConfigurationModalOnly: t.IntersectionC<[t.TypeC<{
|
|
3947
4820
|
buttonThemes: t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
3948
4821
|
/** Background color as an RGBA hex string */backgroundColor: t.StringC;
|
|
@@ -3978,8 +4851,8 @@ declare const ThemeConfigurationModalOnly: t.IntersectionC<[t.TypeC<{
|
|
|
3978
4851
|
alwaysShowScrollbar: t.BooleanC;
|
|
3979
4852
|
horizontalAlign: t.KeyofC<{
|
|
3980
4853
|
right: unknown;
|
|
3981
|
-
center: unknown;
|
|
3982
4854
|
left: unknown;
|
|
4855
|
+
center: unknown;
|
|
3983
4856
|
}>;
|
|
3984
4857
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
3985
4858
|
linkColor: t.StringC;
|
|
@@ -4054,7 +4927,53 @@ declare const ThemeConfigurationModalOnly: t.IntersectionC<[t.TypeC<{
|
|
|
4054
4927
|
}>]>;
|
|
4055
4928
|
/** Override type */
|
|
4056
4929
|
type ThemeConfigurationModalOnly = t.TypeOf<typeof ThemeConfigurationModalOnly>;
|
|
4057
|
-
/** Banner into modal theme configuration */
|
|
4930
|
+
/** Banner into modal theme configuration (reduced scope) */
|
|
4931
|
+
declare const ThemeConfigurationBannerIntoModalMinimal: t.TypeC<{
|
|
4932
|
+
firstLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
4933
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
4934
|
+
}>, t.PartialC<{
|
|
4935
|
+
header: t.TypeC<{
|
|
4936
|
+
logoPosition: t.KeyofC<{
|
|
4937
|
+
left: unknown;
|
|
4938
|
+
above: unknown;
|
|
4939
|
+
}>;
|
|
4940
|
+
logoImageUrl: t.StringC;
|
|
4941
|
+
}>;
|
|
4942
|
+
}>]>, t.TypeC<{
|
|
4943
|
+
contentLayout: t.UnionC<[t.TypeC<{
|
|
4944
|
+
breakpoint: t.TypeC<{
|
|
4945
|
+
/** The numeric value of the breakpoint */value: t.NumberC; /** The unit of the breakpoint (px or percent) */
|
|
4946
|
+
unit: t.KeyofC<{
|
|
4947
|
+
px: unknown;
|
|
4948
|
+
percent: unknown;
|
|
4949
|
+
}>;
|
|
4950
|
+
}>;
|
|
4951
|
+
maxWidths: t.RecordC<t.KeyofC<{
|
|
4952
|
+
vertical: unknown;
|
|
4953
|
+
"horizontal-stacked": unknown;
|
|
4954
|
+
"horizontal-flat": unknown;
|
|
4955
|
+
}>, t.StringC>;
|
|
4956
|
+
}>, t.TypeC<{
|
|
4957
|
+
fullWidth: t.LiteralC<true>;
|
|
4958
|
+
}>]>;
|
|
4959
|
+
}>]>;
|
|
4960
|
+
secondLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
4961
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
4962
|
+
}>, t.PartialC<{
|
|
4963
|
+
header: t.TypeC<{
|
|
4964
|
+
logoPosition: t.KeyofC<{
|
|
4965
|
+
left: unknown;
|
|
4966
|
+
above: unknown;
|
|
4967
|
+
}>;
|
|
4968
|
+
logoImageUrl: t.StringC;
|
|
4969
|
+
}>;
|
|
4970
|
+
}>]>, t.TypeC<{
|
|
4971
|
+
lockToEdges: t.BooleanC;
|
|
4972
|
+
}>]>;
|
|
4973
|
+
}>;
|
|
4974
|
+
/** Override type */
|
|
4975
|
+
type ThemeConfigurationBannerIntoModalMinimal = t.TypeOf<typeof ThemeConfigurationBannerIntoModalMinimal>;
|
|
4976
|
+
/** Banner into modal theme configuration (full scope) */
|
|
4058
4977
|
declare const ThemeConfigurationBannerIntoModal: t.IntersectionC<[t.TypeC<{
|
|
4059
4978
|
buttonThemes: t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
4060
4979
|
/** Background color as an RGBA hex string */backgroundColor: t.StringC;
|
|
@@ -4090,8 +5009,8 @@ declare const ThemeConfigurationBannerIntoModal: t.IntersectionC<[t.TypeC<{
|
|
|
4090
5009
|
alwaysShowScrollbar: t.BooleanC;
|
|
4091
5010
|
horizontalAlign: t.KeyofC<{
|
|
4092
5011
|
right: unknown;
|
|
4093
|
-
center: unknown;
|
|
4094
5012
|
left: unknown;
|
|
5013
|
+
center: unknown;
|
|
4095
5014
|
}>;
|
|
4096
5015
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
4097
5016
|
linkColor: t.StringC;
|
|
@@ -4124,10 +5043,27 @@ declare const ThemeConfigurationBannerIntoModal: t.IntersectionC<[t.TypeC<{
|
|
|
4124
5043
|
"horizontal-flat": unknown;
|
|
4125
5044
|
}>;
|
|
4126
5045
|
verticalAlign: t.KeyofC<{
|
|
5046
|
+
center: unknown;
|
|
4127
5047
|
top: unknown;
|
|
4128
5048
|
bottom: unknown;
|
|
4129
|
-
center: unknown;
|
|
4130
5049
|
}>;
|
|
5050
|
+
}>, t.PartialC<{
|
|
5051
|
+
contentLayout: t.UnionC<[t.TypeC<{
|
|
5052
|
+
breakpoint: t.TypeC<{
|
|
5053
|
+
/** The numeric value of the breakpoint */value: t.NumberC; /** The unit of the breakpoint (px or percent) */
|
|
5054
|
+
unit: t.KeyofC<{
|
|
5055
|
+
px: unknown;
|
|
5056
|
+
percent: unknown;
|
|
5057
|
+
}>;
|
|
5058
|
+
}>;
|
|
5059
|
+
maxWidths: t.RecordC<t.KeyofC<{
|
|
5060
|
+
vertical: unknown;
|
|
5061
|
+
"horizontal-stacked": unknown;
|
|
5062
|
+
"horizontal-flat": unknown;
|
|
5063
|
+
}>, t.StringC>;
|
|
5064
|
+
}>, t.TypeC<{
|
|
5065
|
+
fullWidth: t.LiteralC<true>;
|
|
5066
|
+
}>]>;
|
|
4131
5067
|
}>]>;
|
|
4132
5068
|
secondLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
4133
5069
|
buttons: t.TupleC<[t.NumberC, t.UnionC<[t.NumberC, t.UndefinedC]>, t.UnionC<[t.NumberC, t.UndefinedC]>]>;
|
|
@@ -4151,8 +5087,8 @@ declare const ThemeConfigurationBannerIntoModal: t.IntersectionC<[t.TypeC<{
|
|
|
4151
5087
|
alwaysShowScrollbar: t.BooleanC;
|
|
4152
5088
|
horizontalAlign: t.KeyofC<{
|
|
4153
5089
|
right: unknown;
|
|
4154
|
-
center: unknown;
|
|
4155
5090
|
left: unknown;
|
|
5091
|
+
center: unknown;
|
|
4156
5092
|
}>;
|
|
4157
5093
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
4158
5094
|
linkColor: t.StringC;
|
|
@@ -4227,7 +5163,96 @@ declare const ThemeConfigurationBannerIntoModal: t.IntersectionC<[t.TypeC<{
|
|
|
4227
5163
|
}>]>;
|
|
4228
5164
|
/** Override type */
|
|
4229
5165
|
type ThemeConfigurationBannerIntoModal = t.TypeOf<typeof ThemeConfigurationBannerIntoModal>;
|
|
4230
|
-
/** Union of all theme configurations */
|
|
5166
|
+
/** Union of all reduced-scope theme configurations */
|
|
5167
|
+
declare const ThemeConfigurationMinimal: t.UnionC<[t.TypeC<{
|
|
5168
|
+
firstLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
5169
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
5170
|
+
}>, t.PartialC<{
|
|
5171
|
+
header: t.TypeC<{
|
|
5172
|
+
logoPosition: t.KeyofC<{
|
|
5173
|
+
left: unknown;
|
|
5174
|
+
above: unknown;
|
|
5175
|
+
}>;
|
|
5176
|
+
logoImageUrl: t.StringC;
|
|
5177
|
+
}>;
|
|
5178
|
+
}>]>, t.TypeC<{
|
|
5179
|
+
contentLayout: t.UnionC<[t.TypeC<{
|
|
5180
|
+
breakpoint: t.TypeC<{
|
|
5181
|
+
/** The numeric value of the breakpoint */value: t.NumberC; /** The unit of the breakpoint (px or percent) */
|
|
5182
|
+
unit: t.KeyofC<{
|
|
5183
|
+
px: unknown;
|
|
5184
|
+
percent: unknown;
|
|
5185
|
+
}>;
|
|
5186
|
+
}>;
|
|
5187
|
+
maxWidths: t.RecordC<t.KeyofC<{
|
|
5188
|
+
vertical: unknown;
|
|
5189
|
+
"horizontal-stacked": unknown;
|
|
5190
|
+
"horizontal-flat": unknown;
|
|
5191
|
+
}>, t.StringC>;
|
|
5192
|
+
}>, t.TypeC<{
|
|
5193
|
+
fullWidth: t.LiteralC<true>;
|
|
5194
|
+
}>]>;
|
|
5195
|
+
}>]>;
|
|
5196
|
+
}>, t.TypeC<{
|
|
5197
|
+
secondLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
5198
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
5199
|
+
}>, t.PartialC<{
|
|
5200
|
+
header: t.TypeC<{
|
|
5201
|
+
logoPosition: t.KeyofC<{
|
|
5202
|
+
left: unknown;
|
|
5203
|
+
above: unknown;
|
|
5204
|
+
}>;
|
|
5205
|
+
logoImageUrl: t.StringC;
|
|
5206
|
+
}>;
|
|
5207
|
+
}>]>, t.TypeC<{
|
|
5208
|
+
lockToEdges: t.BooleanC;
|
|
5209
|
+
}>]>;
|
|
5210
|
+
}>, t.TypeC<{
|
|
5211
|
+
firstLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
5212
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
5213
|
+
}>, t.PartialC<{
|
|
5214
|
+
header: t.TypeC<{
|
|
5215
|
+
logoPosition: t.KeyofC<{
|
|
5216
|
+
left: unknown;
|
|
5217
|
+
above: unknown;
|
|
5218
|
+
}>;
|
|
5219
|
+
logoImageUrl: t.StringC;
|
|
5220
|
+
}>;
|
|
5221
|
+
}>]>, t.TypeC<{
|
|
5222
|
+
contentLayout: t.UnionC<[t.TypeC<{
|
|
5223
|
+
breakpoint: t.TypeC<{
|
|
5224
|
+
/** The numeric value of the breakpoint */value: t.NumberC; /** The unit of the breakpoint (px or percent) */
|
|
5225
|
+
unit: t.KeyofC<{
|
|
5226
|
+
px: unknown;
|
|
5227
|
+
percent: unknown;
|
|
5228
|
+
}>;
|
|
5229
|
+
}>;
|
|
5230
|
+
maxWidths: t.RecordC<t.KeyofC<{
|
|
5231
|
+
vertical: unknown;
|
|
5232
|
+
"horizontal-stacked": unknown;
|
|
5233
|
+
"horizontal-flat": unknown;
|
|
5234
|
+
}>, t.StringC>;
|
|
5235
|
+
}>, t.TypeC<{
|
|
5236
|
+
fullWidth: t.LiteralC<true>;
|
|
5237
|
+
}>]>;
|
|
5238
|
+
}>]>;
|
|
5239
|
+
secondLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
5240
|
+
alwaysShowScrollbar: t.BooleanC;
|
|
5241
|
+
}>, t.PartialC<{
|
|
5242
|
+
header: t.TypeC<{
|
|
5243
|
+
logoPosition: t.KeyofC<{
|
|
5244
|
+
left: unknown;
|
|
5245
|
+
above: unknown;
|
|
5246
|
+
}>;
|
|
5247
|
+
logoImageUrl: t.StringC;
|
|
5248
|
+
}>;
|
|
5249
|
+
}>]>, t.TypeC<{
|
|
5250
|
+
lockToEdges: t.BooleanC;
|
|
5251
|
+
}>]>;
|
|
5252
|
+
}>]>;
|
|
5253
|
+
/** Override type */
|
|
5254
|
+
type ThemeConfigurationMinimal = t.TypeOf<typeof ThemeConfigurationMinimal>;
|
|
5255
|
+
/** Union of all full-scope theme configurations */
|
|
4231
5256
|
declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
4232
5257
|
buttonThemes: t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
4233
5258
|
/** Background color as an RGBA hex string */backgroundColor: t.StringC;
|
|
@@ -4263,8 +5288,8 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
|
4263
5288
|
alwaysShowScrollbar: t.BooleanC;
|
|
4264
5289
|
horizontalAlign: t.KeyofC<{
|
|
4265
5290
|
right: unknown;
|
|
4266
|
-
center: unknown;
|
|
4267
5291
|
left: unknown;
|
|
5292
|
+
center: unknown;
|
|
4268
5293
|
}>;
|
|
4269
5294
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
4270
5295
|
linkColor: t.StringC;
|
|
@@ -4297,10 +5322,27 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
|
4297
5322
|
"horizontal-flat": unknown;
|
|
4298
5323
|
}>;
|
|
4299
5324
|
verticalAlign: t.KeyofC<{
|
|
5325
|
+
center: unknown;
|
|
4300
5326
|
top: unknown;
|
|
4301
5327
|
bottom: unknown;
|
|
4302
|
-
center: unknown;
|
|
4303
5328
|
}>;
|
|
5329
|
+
}>, t.PartialC<{
|
|
5330
|
+
contentLayout: t.UnionC<[t.TypeC<{
|
|
5331
|
+
breakpoint: t.TypeC<{
|
|
5332
|
+
/** The numeric value of the breakpoint */value: t.NumberC; /** The unit of the breakpoint (px or percent) */
|
|
5333
|
+
unit: t.KeyofC<{
|
|
5334
|
+
px: unknown;
|
|
5335
|
+
percent: unknown;
|
|
5336
|
+
}>;
|
|
5337
|
+
}>;
|
|
5338
|
+
maxWidths: t.RecordC<t.KeyofC<{
|
|
5339
|
+
vertical: unknown;
|
|
5340
|
+
"horizontal-stacked": unknown;
|
|
5341
|
+
"horizontal-flat": unknown;
|
|
5342
|
+
}>, t.StringC>;
|
|
5343
|
+
}>, t.TypeC<{
|
|
5344
|
+
fullWidth: t.LiteralC<true>;
|
|
5345
|
+
}>]>;
|
|
4304
5346
|
}>]>;
|
|
4305
5347
|
}>]>, t.IntersectionC<[t.TypeC<{
|
|
4306
5348
|
buttonThemes: t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
@@ -4337,8 +5379,8 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
|
4337
5379
|
alwaysShowScrollbar: t.BooleanC;
|
|
4338
5380
|
horizontalAlign: t.KeyofC<{
|
|
4339
5381
|
right: unknown;
|
|
4340
|
-
center: unknown;
|
|
4341
5382
|
left: unknown;
|
|
5383
|
+
center: unknown;
|
|
4342
5384
|
}>;
|
|
4343
5385
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
4344
5386
|
linkColor: t.StringC;
|
|
@@ -4445,8 +5487,8 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
|
4445
5487
|
alwaysShowScrollbar: t.BooleanC;
|
|
4446
5488
|
horizontalAlign: t.KeyofC<{
|
|
4447
5489
|
right: unknown;
|
|
4448
|
-
center: unknown;
|
|
4449
5490
|
left: unknown;
|
|
5491
|
+
center: unknown;
|
|
4450
5492
|
}>;
|
|
4451
5493
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
4452
5494
|
linkColor: t.StringC;
|
|
@@ -4479,10 +5521,27 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
|
4479
5521
|
"horizontal-flat": unknown;
|
|
4480
5522
|
}>;
|
|
4481
5523
|
verticalAlign: t.KeyofC<{
|
|
5524
|
+
center: unknown;
|
|
4482
5525
|
top: unknown;
|
|
4483
5526
|
bottom: unknown;
|
|
4484
|
-
center: unknown;
|
|
4485
5527
|
}>;
|
|
5528
|
+
}>, t.PartialC<{
|
|
5529
|
+
contentLayout: t.UnionC<[t.TypeC<{
|
|
5530
|
+
breakpoint: t.TypeC<{
|
|
5531
|
+
/** The numeric value of the breakpoint */value: t.NumberC; /** The unit of the breakpoint (px or percent) */
|
|
5532
|
+
unit: t.KeyofC<{
|
|
5533
|
+
px: unknown;
|
|
5534
|
+
percent: unknown;
|
|
5535
|
+
}>;
|
|
5536
|
+
}>;
|
|
5537
|
+
maxWidths: t.RecordC<t.KeyofC<{
|
|
5538
|
+
vertical: unknown;
|
|
5539
|
+
"horizontal-stacked": unknown;
|
|
5540
|
+
"horizontal-flat": unknown;
|
|
5541
|
+
}>, t.StringC>;
|
|
5542
|
+
}>, t.TypeC<{
|
|
5543
|
+
fullWidth: t.LiteralC<true>;
|
|
5544
|
+
}>]>;
|
|
4486
5545
|
}>]>;
|
|
4487
5546
|
secondLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
4488
5547
|
buttons: t.TupleC<[t.NumberC, t.UnionC<[t.NumberC, t.UndefinedC]>, t.UnionC<[t.NumberC, t.UndefinedC]>]>;
|
|
@@ -4506,8 +5565,8 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
|
4506
5565
|
alwaysShowScrollbar: t.BooleanC;
|
|
4507
5566
|
horizontalAlign: t.KeyofC<{
|
|
4508
5567
|
right: unknown;
|
|
4509
|
-
center: unknown;
|
|
4510
5568
|
left: unknown;
|
|
5569
|
+
center: unknown;
|
|
4511
5570
|
}>;
|
|
4512
5571
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
4513
5572
|
linkColor: t.StringC;
|
|
@@ -61749,5 +62808,5 @@ declare const PrivacyCenterThemePartial: t.IntersectionC<[t.TypeC<{
|
|
|
61749
62808
|
/** Type override */
|
|
61750
62809
|
type PrivacyCenterThemePartial = t.TypeOf<typeof PrivacyCenterThemePartial>;
|
|
61751
62810
|
//#endregion
|
|
61752
|
-
export { AbsoluteUrlString, ActionItemCode, ActionItemPriorityOverride, AirgapBundleAnalyticsBinInterval, AirgapBundleAnalyticsDimension, AirgapBundleAnalyticsMetric, AssessmentFormStatus, AssessmentFormTemplateSource, AssessmentFormTemplateStatus, AssessmentQuestionSubType, AssessmentQuestionType, AssessmentSyncColumn, AssessmentSyncColumnAttribute, AssessmentSyncColumnImmutable, AssessmentSyncModel, AssessmentsDisplayLogicAction, AttributeKeyType, AttributeSupportedResourceType, AutofocusToggle, AutofocusValues, BackendSyncOption, Background, Border, Breakpoint, BreakpointType, BrowserTimeZone, BusinessEntityAttribute, BusinessEntityAttributeSyncColumn, ButtonAction, ButtonConfig, ButtonTheme, ButtonThemeIndex, ButtonType, CODE_PACKAGE_TYPE_TO_LINK, COUNTRIES, COUNTRY_LOOKUP, ChatCompletionMessage, ChatCompletionRole, CloseButtonTheme, CodePackageType, CommonLayerConfig, CommonLayerTheme, CommunicationIdentifierType, ComparisonOperator, CompletedRequestStatus, ConfidenceLabel, ConfigurableColorPaletteColor, ConsentBundleType, ConsentManagerAnalyticsDataSource, ConsentManagerMetricBin, ConsentPrecedenceOption, ConsentTrackerSource, ConsentTrackerStatus, ConsentTrackerType, ContainerTheme, ContentFlows, ContentLayout, Controllership, CookieOrderField, CspOption, CssUnitString, CustomEnricherType, CustomFieldApiInput, CustomizableComponent, CustomizableText, DEFAULT_MACROREGIONS_MAP, DOMElementId, DataCategoryType, DataFlowOrderField, DataFlowScope, DataFlowType, DataProtectionImpactAssessmentStatus, DataSiloAttribute, DataSiloAttributeSyncColumn, DataSubCategoryAttribute, DataSubCategoryAttributeSyncColumn, DatabaseDriver, DatabaseIntegration, DatabaseSqlVariablesForPrivacyRequest, DatabaseVariables, DecryptionStatus, DefaultConsentOption, DefaultDataSubCategoryType, DefaultPurposeSubCategoryType, DescriptionTextTheme, EXCEPTIONAL_RESERVATIONS, EXCEPTIONAL_RESERVATION_LOOKUP, EnricherType, FirstLayerConfig, FirstLayerTheme, FooterConfig, FooterTheme, FullWidthContentLayout, HeaderTheme, HorizontalAlign, ISO_31661, ISO_31662, Icon, IdentifierType, InitEnricherType, IntegerString, InternalDataSiloObjectResolver, IsoCountryCode, IsoCountrySubdivisionCode, LargeLanguageModelClient, Link, LoadOptions, LocalSyncOption, LogicOperator, LogoPosition, MacroRegion, ModalButtonActions, ModalButtonConfig, NORMALIZE_PHONE_NUMBER, OneTrustApprover, OneTrustAssessment, OneTrustAssessmentCreatedBy, OneTrustAssessmentCsvHeader, OneTrustAssessmentCsvRecord, OneTrustAssessmentNestedQuestion, OneTrustAssessmentQuestion, OneTrustAssessmentQuestionOption, OneTrustAssessmentQuestionResponses, OneTrustAssessmentQuestionRisk, OneTrustAssessmentResponses, OneTrustAssessmentSection, OneTrustAssessmentSectionHeader, OneTrustAssessmentSectionHeaderRiskStatistics, OneTrustAssessmentSectionSubmittedBy, OneTrustAssessmentStatus, OneTrustEnrichedAssessment, OneTrustEnrichedAssessmentQuestion, OneTrustEnrichedAssessmentResponse, OneTrustEnrichedAssessmentSection, OneTrustEnrichedAssessments, OneTrustEnrichedRisk, OneTrustEnrichedRisks, OneTrustEnrichedUser, OneTrustGetAssessmentResponse, OneTrustGetListOfAssessmentsResponse, OneTrustGetRiskResponse, OneTrustGetUserResponse, OneTrustPrimaryEntityDetails, OneTrustQuestionComment, OneTrustQuestionComments, OneTrustRiskCategories, OneTrustRiskReference, OneTrustRiskReferences, OneTrustRiskTemplate, OneTrustUserDetails, OneTrustUserEmail, OneTrustUserEmails, OneTrustUserGroup, OneTrustUserGroups, OneTrustUserMetadata, OneTrustUserName, OptionalConfigurableColorPaletteColor, OrderDirection, PROMPT_FILE_PURPOSE_TO_OPEN_AI, PaddedContentLayout, Preference, PreferenceQueryResponseItem, PreferenceStoreAuthLevel, PreferenceStoreConsentFields, PreferenceStoreIdentifier, PreferenceStoreKeyConditionals, PreferenceStorePurposeResponse, PreferenceStorePurposeUpdate, PreferenceStoreSystemAttributes, PreferenceStoreWorkflowSettings, PreferenceTopicType, PreferenceUpdateItem, PreflightRequestStatus, PrivacyCenterComponentStyles, PrivacyCenterConfigurableColorPalette, PrivacyCenterFont, PrivacyCenterFontBasic, PrivacyCenterTextStyles, PrivacyCenterThemePartial, ProcessingActivityAttribute, ProcessingActivityAttributeSyncColumn, ProcessingPurpose, ProcessingPurposeSubCategoryAttribute, ProcessingPurposeSubCategoryAttributeSyncColumn, PromptAVendorEmailCompletionLinkType, PromptAVendorEmailSendType, PromptFilePurpose, PromptResponseFormat, PromptRunProductArea, PromptStatus, QueueStatus, REQUEST_ACTION_OPT_IN_TO_OPT_OUT, REQUEST_ACTION_OPT_OUT_TO_OPT_IN, RegimeKey, RegionDetectionMethod, RegionsOperator, RequestAction, RequestActionObjectResolver, RequestActionOptIn, RequestActionOptOut, RequestDataSiloStatus, RequestEnricherStatus, RequestOrigin, RequestStatus, RequiredConfigurableColorPaletteColor, RetentionScheduleOperation, RetentionScheduleType, RetentionType, RgbHexString, RgbaHexString, SQLDriverWithDataMapping, ScopeDefinition, ScopeName, ScopeType, SecondLayerConfig, SecondLayerTheme, SemicolonDelimitedRegimeKeyString, ShadowRootOptions, SharedTopLevelConfig, SharedTopLevelTheme, SignedIabAgreementOption, SombraStandardScope, StaticTeamType, SubDataPointAttribute, SubDataPointAttributeSyncColumn, SubDataPointDataSubCategoryGuessStatus, TRANSCEND_SCOPES, TableEncryptionType, TelemetryPartitionStrategy, TemplateVariableModelName, Text, ThemeConfiguration, ThemeConfigurationBannerIntoModal, ThemeConfigurationBannerOnly, ThemeConfigurationModalOnly, ThemeKey, ToggleTheme, TranscendProduct, TriageAction, UIConfiguration, UIConfigurationBannerIntoModal, UIConfigurationBannerOnly, UIConfigurationModalOnly, UnknownRequestPolicy, UnstructuredSubDataPointRecommendationStatus, UspapiOption, VariantKey, VendorAttribute, VendorAttributeSyncColumn, VerticalAlign, getRegistryLink };
|
|
62811
|
+
export { AbsoluteUrlString, ActionItemCode, ActionItemPriorityOverride, AirgapBundleAnalyticsBinInterval, AirgapBundleAnalyticsDimension, AirgapBundleAnalyticsMetric, AssessmentFormStatus, AssessmentFormTemplateSource, AssessmentFormTemplateStatus, AssessmentQuestionSubType, AssessmentQuestionType, AssessmentSyncColumn, AssessmentSyncColumnAttribute, AssessmentSyncColumnImmutable, AssessmentSyncModel, AssessmentsDisplayLogicAction, AttributeKeyType, AttributeSupportedResourceType, AutofocusToggle, AutofocusValues, BackendSyncOption, Background, Border, Breakpoint, BreakpointType, BrowserTimeZone, BusinessEntityAttribute, BusinessEntityAttributeSyncColumn, ButtonAction, ButtonConfig, ButtonTheme, ButtonThemeIndex, ButtonType, CODE_PACKAGE_TYPE_TO_LINK, COUNTRIES, COUNTRY_LOOKUP, ChatCompletionMessage, ChatCompletionRole, CloseButtonTheme, CodePackageType, CommonLayerConfig, CommonLayerTheme, CommonLayerThemeMinimal, CommunicationIdentifierType, ComparisonOperator, CompletedRequestStatus, ConfidenceLabel, ConfigurableColorPaletteColor, ConsentBundleType, ConsentManagerAnalyticsDataSource, ConsentManagerMetricBin, ConsentPrecedenceOption, ConsentThemeInput, ConsentTrackerSource, ConsentTrackerStatus, ConsentTrackerType, ConsentUiUserFlow, ConsentVariantInput, ContainerTheme, ContentFlows, ContentLayout, Controllership, CookieOrderField, CspOption, CssUnitString, CustomEnricherType, CustomFieldApiInput, CustomizableComponent, CustomizableText, DEFAULT_MACROREGIONS_MAP, DOMElementId, DataCategoryType, DataFlowOrderField, DataFlowScope, DataFlowType, DataProtectionImpactAssessmentStatus, DataSiloAttribute, DataSiloAttributeSyncColumn, DataSubCategoryAttribute, DataSubCategoryAttributeSyncColumn, DatabaseDriver, DatabaseIntegration, DatabaseSqlVariablesForPrivacyRequest, DatabaseVariables, DecryptionStatus, DefaultConsentOption, DefaultDataSubCategoryType, DefaultPurposeSubCategoryType, DescriptionTextTheme, EXCEPTIONAL_RESERVATIONS, EXCEPTIONAL_RESERVATION_LOOKUP, EnricherType, FirstLayerConfig, FirstLayerTheme, FirstLayerThemeMinimal, FooterConfig, FooterTheme, FullWidthContentLayout, HeaderTheme, HeaderThemeMinimal, HorizontalAlign, ISO_31661, ISO_31662, Icon, IdentifierType, InitEnricherType, IntegerString, InternalDataSiloObjectResolver, IsoCountryCode, IsoCountrySubdivisionCode, LargeLanguageModelClient, Link, LoadOptions, LocalSyncOption, LogicOperator, LogoPosition, MacroRegion, ModalButtonActions, ModalButtonConfig, NORMALIZE_PHONE_NUMBER, OneTrustApprover, OneTrustAssessment, OneTrustAssessmentCreatedBy, OneTrustAssessmentCsvHeader, OneTrustAssessmentCsvRecord, OneTrustAssessmentNestedQuestion, OneTrustAssessmentQuestion, OneTrustAssessmentQuestionOption, OneTrustAssessmentQuestionResponses, OneTrustAssessmentQuestionRisk, OneTrustAssessmentResponses, OneTrustAssessmentSection, OneTrustAssessmentSectionHeader, OneTrustAssessmentSectionHeaderRiskStatistics, OneTrustAssessmentSectionSubmittedBy, OneTrustAssessmentStatus, OneTrustEnrichedAssessment, OneTrustEnrichedAssessmentQuestion, OneTrustEnrichedAssessmentResponse, OneTrustEnrichedAssessmentSection, OneTrustEnrichedAssessments, OneTrustEnrichedRisk, OneTrustEnrichedRisks, OneTrustEnrichedUser, OneTrustGetAssessmentResponse, OneTrustGetListOfAssessmentsResponse, OneTrustGetRiskResponse, OneTrustGetUserResponse, OneTrustPrimaryEntityDetails, OneTrustQuestionComment, OneTrustQuestionComments, OneTrustRiskCategories, OneTrustRiskReference, OneTrustRiskReferences, OneTrustRiskTemplate, OneTrustUserDetails, OneTrustUserEmail, OneTrustUserEmails, OneTrustUserGroup, OneTrustUserGroups, OneTrustUserMetadata, OneTrustUserName, OptionalConfigurableColorPaletteColor, OrderDirection, PROMPT_FILE_PURPOSE_TO_OPEN_AI, PaddedContentLayout, Preference, PreferenceQueryResponseItem, PreferenceStoreAuthLevel, PreferenceStoreConsentFields, PreferenceStoreIdentifier, PreferenceStoreKeyConditionals, PreferenceStorePurposeResponse, PreferenceStorePurposeUpdate, PreferenceStoreSystemAttributes, PreferenceStoreWorkflowSettings, PreferenceTopicType, PreferenceUpdateItem, PreflightRequestStatus, PrivacyCenterComponentStyles, PrivacyCenterConfigurableColorPalette, PrivacyCenterFont, PrivacyCenterFontBasic, PrivacyCenterTextStyles, PrivacyCenterThemePartial, ProcessingActivityAttribute, ProcessingActivityAttributeSyncColumn, ProcessingPurpose, ProcessingPurposeSubCategoryAttribute, ProcessingPurposeSubCategoryAttributeSyncColumn, PromptAVendorEmailCompletionLinkType, PromptAVendorEmailSendType, PromptFilePurpose, PromptResponseFormat, PromptRunProductArea, PromptStatus, QueueStatus, REQUEST_ACTION_OPT_IN_TO_OPT_OUT, REQUEST_ACTION_OPT_OUT_TO_OPT_IN, RegimeKey, RegionDetectionMethod, RegionsOperator, RequestAction, RequestActionObjectResolver, RequestActionOptIn, RequestActionOptOut, RequestDataSiloStatus, RequestEnricherStatus, RequestOrigin, RequestStatus, RequiredConfigurableColorPaletteColor, RetentionScheduleOperation, RetentionScheduleType, RetentionType, RgbHexString, RgbaHexString, SQLDriverWithDataMapping, ScopeDefinition, ScopeName, ScopeType, SecondLayerConfig, SecondLayerTheme, SecondLayerThemeMinimal, SemicolonDelimitedRegimeKeyString, ShadowRootOptions, SharedTopLevelConfig, SharedTopLevelTheme, SignedIabAgreementOption, SombraStandardScope, StaticTeamType, SubDataPointAttribute, SubDataPointAttributeSyncColumn, SubDataPointDataSubCategoryGuessStatus, TRANSCEND_SCOPES, TableEncryptionType, TelemetryPartitionStrategy, TemplateVariableModelName, Text, ThemeConfiguration, ThemeConfigurationBannerIntoModal, ThemeConfigurationBannerIntoModalMinimal, ThemeConfigurationBannerOnly, ThemeConfigurationBannerOnlyMinimal, ThemeConfigurationMinimal, ThemeConfigurationModalOnly, ThemeConfigurationModalOnlyMinimal, ThemeKey, ToggleTheme, TranscendProduct, TriageAction, UIConfiguration, UIConfigurationBannerIntoModal, UIConfigurationBannerOnly, UIConfigurationModalOnly, UiVariantStatus, UnknownRequestPolicy, UnstructuredSubDataPointRecommendationStatus, UspapiOption, VariantKey, VendorAttribute, VendorAttributeSyncColumn, VerticalAlign, getRegistryLink };
|
|
61753
62812
|
//# sourceMappingURL=index.d.mts.map
|