@apolitical/component-library 3.5.13-ac.5 → 3.5.13-beta.0
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/banners/banner-section/banner-section.d.ts +8 -3
- package/constants/index.d.ts +1 -1
- package/constants/{number-of-users.d.ts → stats.d.ts} +1 -0
- package/discussion/feeds/activities-feed/mocks/activities-feed.mock.d.ts +0 -56
- package/discussion/shared/interfaces/activity.interface.d.ts +0 -1
- package/index.js +19 -19
- package/index.mjs +3875 -3802
- package/navigation/logo/logo.d.ts +1 -1
- package/package.json +1 -1
- package/sections/full-width-section/full-width-section.d.ts +1 -1
- package/style.css +1 -1
- package/styles/base/_titles.scss +21 -1
- package/styles/base/buttons/_buttons.scss +70 -10
- package/styles/base/buttons/_sizes.scss +9 -0
- package/styles/variables/colors/_colors.scss +2 -0
- package/styles/variables/colors/theme/_banners.scss +3 -0
- package/styles/variables/colors/theme/_base.scss +5 -0
- package/styles/variables/colors/theme/_navigation.scss +1 -0
- package/styles/variables/colors/theme/_sections.scss +2 -0
- package/styles/variables/colors/theme/_text.scss +3 -0
- package/text/buckets/buckets.d.ts +21 -0
- package/text/buckets/index.d.ts +1 -0
- package/text/hide-show-text-box/hide-show-text-box.d.ts +1 -3
- package/text/index.d.ts +1 -0
- package/text/testimonial-block/testimonial-block.d.ts +6 -1
- package/user/member/member.d.ts +8 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
interface Props {
|
|
2
2
|
/** Style variant of the logo */
|
|
3
|
-
variant?: 'default' | 'inverted';
|
|
3
|
+
variant?: 'default' | 'inverted' | 'monochrome';
|
|
4
4
|
/** Version of the logo, defaulting to showing whatever fits into the screen size best */
|
|
5
5
|
version?: 'default' | 'small' | 'full';
|
|
6
6
|
/** Additional classes */
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@ interface Props {
|
|
|
3
3
|
/** Optional styling for the section */
|
|
4
4
|
styling?: {
|
|
5
5
|
/** The background of the section. Defaults to `default` */
|
|
6
|
-
background?: 'default' | 'light';
|
|
6
|
+
background?: 'default' | 'light' | 'dark';
|
|
7
7
|
};
|
|
8
8
|
/** Additional classes */
|
|
9
9
|
className?: string;
|