@apolitical/component-library 5.3.4-ac.1 → 5.3.4
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/discussion/components/form/form.type.d.ts +0 -1
- package/helpers/intl.d.ts +0 -3
- package/index.js +36 -36
- package/index.mjs +3783 -3759
- package/package.json +1 -1
- package/sections/full-width-section/full-width-section.d.ts +2 -0
- package/style.css +1 -1
- package/styles/mixins/_styles.scss +3 -0
- package/styles/variables/colors/_colors.scss +2 -0
- package/styles/variables/colors/theme/_base.scss +2 -1
- package/styles/variables/colors/theme/_layout.scss +2 -2
package/package.json
CHANGED
|
@@ -4,6 +4,8 @@ interface Props {
|
|
|
4
4
|
styling?: {
|
|
5
5
|
/** The background of the section. Defaults to `default` */
|
|
6
6
|
background?: 'default' | 'light' | 'dark';
|
|
7
|
+
/** The size of the padding. Defaults to `none` */
|
|
8
|
+
padding?: 'none' | 'medium' | 'large';
|
|
7
9
|
};
|
|
8
10
|
/** Additional classes */
|
|
9
11
|
className?: string;
|