@apolitical/component-library 4.1.0-beta.0 → 4.1.0-beta.10
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/accessibility/visually-hidden/visually-hidden.d.ts +18 -0
- package/discussion/components/form/form.d.ts +3 -4
- package/discussion/components/likes/likes.d.ts +7 -1
- package/form/components/form/form.d.ts +1 -1
- package/form/components/form/form.types.d.ts +2 -0
- package/form/components/rich-text-editor/components/context/context.d.ts +3 -7
- package/form/components/rich-text-editor/components/toolbar/components/block-option/index.d.ts +1 -0
- package/form/components/rich-text-editor/components/toolbar/components/link-editor/link-editor.helpers.d.ts +2 -2
- package/form/components/rich-text-editor/components/toolbar/components/mark-option/mark-option.helpers.d.ts +2 -0
- package/form/components/rich-text-editor/components/toolbar/index.d.ts +1 -1
- package/form/components/rich-text-editor/helpers/ast-types/ast-types.d.ts +156 -0
- package/form/components/rich-text-editor/helpers/ast-types/index.d.ts +1 -0
- package/form/components/rich-text-editor/helpers/deserialize/deserialize.d.ts +3 -0
- package/form/components/rich-text-editor/helpers/deserialize/index.d.ts +1 -0
- package/form/components/rich-text-editor/helpers/helpers.data.d.ts +97 -0
- package/form/components/rich-text-editor/helpers/hot-keys/hot-keys.d.ts +4 -0
- package/form/components/rich-text-editor/helpers/hot-keys/index.d.ts +1 -0
- package/form/components/rich-text-editor/helpers/index.d.ts +5 -0
- package/form/components/rich-text-editor/helpers/serialize/do-serialize.d.ts +3 -0
- package/form/components/rich-text-editor/helpers/serialize/index.d.ts +2 -0
- package/form/components/rich-text-editor/helpers/serialize/serialize.d.ts +8 -0
- package/form/components/rich-text-editor/helpers/transform/index.d.ts +1 -0
- package/form/components/rich-text-editor/helpers/transform/transform.d.ts +21 -0
- package/form/components/rich-text-editor/plugins/with-linlines/with-inlines.d.ts +1 -1
- package/form/components/rich-text-editor/rich-text-editor.d.ts +1 -2
- package/general/buttons/button/button.d.ts +7 -1
- package/general/index.d.ts +1 -0
- package/general/link/link.d.ts +6 -0
- package/general/portal/index.d.ts +1 -0
- package/general/portal/portal.d.ts +5 -0
- package/general/tooltip/tooltip.d.ts +2 -0
- package/helpers/intl.d.ts +2 -0
- package/index.js +57 -60
- package/index.mjs +7211 -7057
- package/package.json +1 -2
- package/style.css +1 -1
- package/styles/base/_accessibility.scss +5 -0
- package/styles/base/_links.scss +12 -3
- package/styles/base/buttons/_icons.scss +2 -0
- package/text/markdown-text/components/span/span.d.ts +2 -1
- package/form/components/rich-text-editor/rich-text-editor.helpers.d.ts +0 -5
package/styles/base/_links.scss
CHANGED
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
@import './../mixins', './../variables';
|
|
2
2
|
|
|
3
3
|
@layer base {
|
|
4
|
-
a
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
a,
|
|
5
|
+
.url {
|
|
7
6
|
color: get-map($theme, 'link');
|
|
8
7
|
text-decoration: underline;
|
|
9
8
|
font-weight: 900;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
a {
|
|
12
|
+
@include transition(color text-decoration-color);
|
|
10
13
|
|
|
11
14
|
&:hover,
|
|
12
15
|
&:focus,
|
|
@@ -15,3 +18,9 @@
|
|
|
15
18
|
}
|
|
16
19
|
}
|
|
17
20
|
}
|
|
21
|
+
|
|
22
|
+
@layer overrides {
|
|
23
|
+
.url {
|
|
24
|
+
font-weight: 900;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -12,6 +12,8 @@ $icons: ('arrow_left', (d, d, 3, 8), (d, d, 3, 8), (d, d, 4, 7)),
|
|
|
12
12
|
('arrow_rotating', (20, 20, 2, d), (d, d, 2, d), (15, 15, d, d)),
|
|
13
13
|
('arrow_corner-down_right', (12, 12, 6, 8), (12, 12, 4, 12), (d, d, d, d)),
|
|
14
14
|
('arrow_corner-down_left', (12, 12, 6, 8), (12, 12, 4, 12), (d, d, d, d)),
|
|
15
|
+
('arrow_corner-up_right', (12, 12, 6, 8), (12, 12, 4, 12), (d, d, d, d)),
|
|
16
|
+
('arrow_corner-up_left', (12, 12, 6, 8), (12, 12, 4, 12), (d, d, d, d)),
|
|
15
17
|
('arrow-down', (d, d, 4, 10), (d, d, 3, 8), (d, d, 4, d)),
|
|
16
18
|
('check-inside-circle', (28, 28, -2, d), (d, d, 3, d), (d, d, d, d)),
|
|
17
19
|
('check-inside-circle_no-overlap', (28, 28, -2, d), (24, 24, -2, d), (d, d, 2, d)),
|