@covalent/flavored-markdown 4.0.0-beta.4 → 4.1.0-develop.11

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.
Files changed (27) hide show
  1. package/README.md +36 -43
  2. package/covalent-flavored-markdown.d.ts +1 -1
  3. package/esm2020/covalent-flavored-markdown.mjs +2 -2
  4. package/esm2020/lib/cfm-list/cfm-list.component.mjs +60 -0
  5. package/esm2020/lib/flavored-markdown-loader/flavored-markdown-loader.component.mjs +104 -0
  6. package/esm2020/lib/flavored-markdown.component.mjs +501 -0
  7. package/esm2020/lib/flavored-markdown.module.mjs +69 -0
  8. package/esm2020/public_api.mjs +4 -4
  9. package/fesm2015/covalent-flavored-markdown.mjs +80 -49
  10. package/fesm2015/covalent-flavored-markdown.mjs.map +1 -1
  11. package/fesm2020/covalent-flavored-markdown.mjs +76 -49
  12. package/fesm2020/covalent-flavored-markdown.mjs.map +1 -1
  13. package/{cfm-list → lib/cfm-list}/cfm-list.component.d.ts +1 -1
  14. package/{flavored-markdown-loader → lib/flavored-markdown-loader}/flavored-markdown-loader.component.d.ts +5 -5
  15. package/{flavored-markdown.component.d.ts → lib/flavored-markdown.component.d.ts} +2 -2
  16. package/{flavored-markdown.module.d.ts → lib/flavored-markdown.module.d.ts} +0 -0
  17. package/package.json +20 -23
  18. package/public_api.d.ts +3 -3
  19. package/cfm-list/cfm-list.component.scss +0 -0
  20. package/esm2020/cfm-list/cfm-list.component.mjs +0 -60
  21. package/esm2020/flavored-markdown-loader/flavored-markdown-loader.component.mjs +0 -102
  22. package/esm2020/flavored-markdown.component.mjs +0 -476
  23. package/esm2020/flavored-markdown.module.mjs +0 -69
  24. package/esm2020/index.mjs +0 -2
  25. package/flavored-markdown-loader/flavored-markdown-loader.component.scss +0 -28
  26. package/flavored-markdown.component.scss +0 -33
  27. package/index.d.ts +0 -1
@@ -1,28 +0,0 @@
1
- :host {
2
- display: block;
3
- }
4
-
5
- .sticky {
6
- position: absolute;
7
- top: 0;
8
- }
9
-
10
- // Delay loader .6s to prevent flicker if response is faster
11
- .delay {
12
- animation: delay-animation;
13
- animation-duration: 0.6s;
14
- }
15
-
16
- @keyframes delay-animation {
17
- 0% {
18
- opacity: 0;
19
- }
20
-
21
- 99% {
22
- opacity: 0;
23
- }
24
-
25
- 100% {
26
- opacity: 1;
27
- }
28
- }
@@ -1,33 +0,0 @@
1
- $code-font: 'Menlo', 'Monaco', 'Andale Mono', 'lucida console', 'Courier New', monospace;
2
-
3
- :host ::ng-deep {
4
- td-markdown:first-of-type > div:first-of-type {
5
- & > h1:first-of-type,
6
- & > h2:first-of-type {
7
- margin-top: 0;
8
- }
9
- }
10
-
11
- td-data-table,
12
- mat-checkbox {
13
- display: block;
14
- }
15
-
16
- td-data-table,
17
- td-highlight,
18
- mat-checkbox:last-of-type {
19
- margin-bottom: 16px;
20
- }
21
-
22
- :not(pre) > code {
23
- font-family: $code-font;
24
- padding-left: 2px;
25
- padding-right: 2px;
26
- }
27
-
28
- td-highlight {
29
- display: flex;
30
- flex-direction: row;
31
- justify-content: space-between;
32
- }
33
- }
package/index.d.ts DELETED
@@ -1 +0,0 @@
1
- export * from './public_api';