@apolitical/component-library 5.3.2 → 5.3.4-SW.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/cards/cards.types.d.ts +19 -0
- package/cards/index.d.ts +1 -0
- package/cards/mocks/index.d.ts +1 -0
- package/cards/mocks/narrow-card.d.ts +30 -0
- package/cards/narrow-card/index.d.ts +1 -0
- package/cards/narrow-card/narrow-card.d.ts +3 -0
- package/discussion/components/add-post/add-post.d.ts +3 -0
- package/discussion/components/form/form.type.d.ts +5 -0
- package/discussion/components/post/post.d.ts +6 -1
- package/discussion/feeds/activities-feed/activities-feed.d.ts +5 -0
- package/discussion/feeds/activities-feed/cache/hooks/list/list.hook.d.ts +5 -2
- package/discussion/feeds/activities-feed/mocks/activities-feed.mock.d.ts +4 -0
- package/discussion/sections/activity-section/activity-section.d.ts +4 -0
- package/discussion/sections/activity-section/mocks/activity-section.mock.d.ts +1 -0
- package/discussion/shared/helpers/activity.helper.d.ts +3 -1
- package/discussion/shared/interfaces/activity.interface.d.ts +1 -0
- package/discussion/shared/interfaces/community.category.interface.d.ts +4 -0
- package/discussion/shared/interfaces/discussion.interface.d.ts +2 -0
- package/discussion/shared/interfaces/index.d.ts +1 -0
- package/form/components/form/components/fields/checkbox/checkbox.d.ts +2 -2
- package/form/components/form/components/fields/input/input.d.ts +5 -0
- package/form/components/form/components/fields/multiple-options/multiple-options.d.ts +1 -1
- package/form/components/form/form.types.d.ts +8 -0
- package/helpers/intl.d.ts +2 -0
- package/index.js +59 -59
- package/index.mjs +6344 -6211
- package/navigation/filters/filters.d.ts +5 -1
- package/package.json +1 -1
- package/style.css +1 -1
- package/styles/base/_accessibility.scss +1 -0
- package/styles/base/_text.scss +1 -1
- package/styles/variables/colors/theme/_cards.scss +4 -0
- package/styles/variables/colors/theme/_navigation.scss +4 -4
package/styles/base/_text.scss
CHANGED
|
@@ -21,4 +21,8 @@ $cards: (
|
|
|
21
21
|
carousel_pagination_bg: get-map($c, 'n100'),
|
|
22
22
|
carousel_pagination_hover_bg: get-map($c, 'b200'),
|
|
23
23
|
carousel_pagination_selected_bg: get-map($c, 'b500'),
|
|
24
|
+
narrow-card: get-map($c, 'n600'),
|
|
25
|
+
narrow-card_border: get-map($c, 'n100'),
|
|
26
|
+
narrow-card_icon: get-map($c, 'white'),
|
|
27
|
+
narrow-card_icon_bg: get-map($c, 'n900'),
|
|
24
28
|
);
|
|
@@ -12,14 +12,14 @@ $navigation: (
|
|
|
12
12
|
enriched-url_img_bg: get-map($c, 'n100'),
|
|
13
13
|
enriched-url_icon: get-map($c, 'n700'),
|
|
14
14
|
filters: get-map($c, 'n700'),
|
|
15
|
-
filters_selected: get-map($c, '
|
|
15
|
+
filters_selected: get-map($c, 'white'),
|
|
16
16
|
filters_active: get-map($c, 'n700'),
|
|
17
17
|
filters_bg: get-map($c, 'n50'),
|
|
18
|
-
filters_selected_bg: get-map($c, '
|
|
18
|
+
filters_selected_bg: get-map($c, 'n900'),
|
|
19
19
|
filters_hover_bg: get-map($c, 'n100'),
|
|
20
|
-
filters_active_bg: get-map($c, '
|
|
20
|
+
filters_active_bg: get-map($c, 'n100'),
|
|
21
21
|
filters_outline: get-map($c, 'n200'),
|
|
22
|
-
filters_selected_outline: get-map($c, '
|
|
22
|
+
filters_selected_outline: get-map($c, 'n800'),
|
|
23
23
|
language-switcher_bg: get-map($c, 'n50'),
|
|
24
24
|
language-switcher_a: get-map($c, 'n900'),
|
|
25
25
|
language-switcher_a_selected: get-map($c, 'b700'),
|