@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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apolitical/component-library",
|
|
3
|
-
"version": "4.1.0-beta.
|
|
3
|
+
"version": "4.1.0-beta.10",
|
|
4
4
|
"main": "./index.js",
|
|
5
5
|
"types": "./index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -33,7 +33,6 @@
|
|
|
33
33
|
"react-multi-email": "1.0.18",
|
|
34
34
|
"react-textarea-autosize": "8.5.3",
|
|
35
35
|
"remark-parse": "11.0.0",
|
|
36
|
-
"remark-slate": "1.8.6",
|
|
37
36
|
"sass": "1.69.5",
|
|
38
37
|
"slate": "0.102.0",
|
|
39
38
|
"slate-history": "0.100.0",
|