@atom-learning/components 2.66.12 → 2.66.13
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/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
## [2.66.
|
|
1
|
+
## [2.66.13](https://github.com/Atom-Learning/components/compare/v2.66.12...v2.66.13) (2023-09-06)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
7
|
-
* snapshots ([2a1accb](https://github.com/Atom-Learning/components/commit/2a1accbb8d739a97aedab39d52eb76ae06486da7))
|
|
8
|
-
* update to ([e9211a2](https://github.com/Atom-Learning/components/commit/e9211a2d297628a880a7c5c3991d99853d851060))
|
|
6
|
+
* list item display in one line ([e10fece](https://github.com/Atom-Learning/components/commit/e10fece5c1237609fc5e61f63ee131e18daa854f))
|
|
9
7
|
|
|
10
8
|
# [1.4.0](https://github.com/Atom-Learning/components/compare/v1.3.0...v1.4.0) (2022-04-11)
|
|
11
9
|
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import*as
|
|
1
|
+
import*as n from"react";import{List as i}from"../../list/List.js";const t=({node:e,handleNode:o,css:d})=>{var r;return n.createElement(i,{css:{"& p":{display:"inline"},"& p:before, & p:after":{display:"none"},...d},ordered:e.ordered||void 0},(r=e.children)==null?void 0:r.map(o))};export{t as MarkdownList};
|
|
2
2
|
//# sourceMappingURL=MarkdownList.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MarkdownList.js","sources":["../../../../src/components/markdown-content/components/MarkdownList.tsx"],"sourcesContent":["import { Content, List as ListType } from 'mdast'\nimport * as React from 'react'\n\nimport { CSS } from '~/stitches'\n\nimport { List } from '../../list'\n\ntype MarkdownListProps = {\n node: ListType\n handleNode: (node: Content) => React.ReactElement\n css?: CSS\n}\n\nexport const MarkdownList: React.FC<MarkdownListProps> = ({\n node,\n handleNode,\n css\n}) => (\n <List\n css={{ '& p:before, & p:after': { display: 'none' }
|
|
1
|
+
{"version":3,"file":"MarkdownList.js","sources":["../../../../src/components/markdown-content/components/MarkdownList.tsx"],"sourcesContent":["import { Content, List as ListType } from 'mdast'\nimport * as React from 'react'\n\nimport { CSS } from '~/stitches'\n\nimport { List } from '../../list'\n\ntype MarkdownListProps = {\n node: ListType\n handleNode: (node: Content) => React.ReactElement\n css?: CSS\n}\n\nexport const MarkdownList: React.FC<MarkdownListProps> = ({\n node,\n handleNode,\n css\n}) => (\n <List\n css={\n {\n '& p': { display: 'inline' },\n '& p:before, & p:after': { display: 'none' },\n ...css\n } as CSS\n }\n ordered={node.ordered || undefined}\n >\n {node.children?.map(handleNode)}\n </List>\n)\n"],"names":["MarkdownList","node","handleNode","css","_a","React","List"],"mappings":"kEAaO,MAAMA,EAA4C,CAAC,CACxD,KAAAC,EACA,WAAAC,EACA,IAAAC,CACF,IAAG,CAjBH,IAAAC,EAkBE,OAAAC,EAAA,cAACC,EAAA,CACC,IACE,CACE,MAAO,CAAE,QAAS,QAAS,EAC3B,wBAAyB,CAAE,QAAS,MAAO,EAC3C,GAAGH,CACL,EAEF,QAASF,EAAK,SAAW,MAExBG,GAAAA,EAAAH,EAAK,WAAL,KAAA,OAAAG,EAAe,IAAIF,CACtB,CAAA,CAAA"}
|