@covalent/markdown 4.0.0 → 4.1.0-develop.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/README.md +20 -20
- package/_markdown-theme.scss +13 -1
- package/covalent-markdown.d.ts +2 -1
- package/esm2020/covalent-markdown.mjs +5 -0
- package/esm2020/lib/markdown-loader/markdown-loader.service.mjs +41 -0
- package/esm2020/lib/markdown-utils/markdown-utils.mjs +115 -0
- package/esm2020/lib/markdown.component.mjs +292 -0
- package/esm2020/lib/markdown.module.mjs +21 -0
- package/esm2020/public_api.mjs +5 -0
- package/fesm2015/covalent-markdown.mjs +467 -0
- package/fesm2015/covalent-markdown.mjs.map +1 -0
- package/fesm2020/covalent-markdown.mjs +464 -0
- package/fesm2020/covalent-markdown.mjs.map +1 -0
- package/{markdown-loader → lib/markdown-loader}/markdown-loader.service.d.ts +3 -0
- package/lib/markdown-utils/markdown-utils.d.ts +9 -0
- package/{markdown.component.d.ts → lib/markdown.component.d.ts} +9 -4
- package/lib/markdown.module.d.ts +9 -0
- package/package.json +28 -24
- package/public_api.d.ts +4 -4
- package/bundles/covalent-markdown.umd.js +0 -1055
- package/bundles/covalent-markdown.umd.js.map +0 -1
- package/bundles/covalent-markdown.umd.min.js +0 -16
- package/bundles/covalent-markdown.umd.min.js.map +0 -1
- package/covalent-markdown.metadata.json +0 -1
- package/esm2015/covalent-markdown.js +0 -10
- package/esm2015/index.js +0 -7
- package/esm2015/markdown-loader/markdown-loader.service.js +0 -69
- package/esm2015/markdown-utils/markdown-utils.js +0 -183
- package/esm2015/markdown.component.js +0 -439
- package/esm2015/markdown.module.js +0 -21
- package/esm2015/public_api.js +0 -10
- package/fesm2015/covalent-markdown.js +0 -724
- package/fesm2015/covalent-markdown.js.map +0 -1
- package/index.d.ts +0 -1
- package/markdown-utils/markdown-utils.d.ts +0 -9
- package/markdown.component.scss +0 -641
- package/markdown.module.d.ts +0 -2
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@covalent/markdown",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.1.0-develop.10",
|
|
4
4
|
"description": "Teradata UI Platform Markdown Module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
7
7
|
"components",
|
|
8
|
-
"reusable"
|
|
8
|
+
"reusable",
|
|
9
|
+
"markdown"
|
|
9
10
|
],
|
|
10
11
|
"repository": {
|
|
11
12
|
"type": "git",
|
|
@@ -16,30 +17,33 @@
|
|
|
16
17
|
},
|
|
17
18
|
"license": "MIT",
|
|
18
19
|
"author": "Teradata UX",
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
"Jeremy Smartt <jeremy.smartt@teradata.com>",
|
|
26
|
-
"Steven Ov <steven.ov@teradata.com>"
|
|
27
|
-
],
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"showdown": "^2.0.3",
|
|
22
|
+
"@angular/common": "^13.2.0",
|
|
23
|
+
"@angular/core": "^13.2.0",
|
|
24
|
+
"@angular/platform-browser": "^13.2.0"
|
|
25
|
+
},
|
|
28
26
|
"dependencies": {
|
|
29
|
-
"showdown": "^1.9.1",
|
|
30
27
|
"tslib": "^2.0.0"
|
|
31
28
|
},
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"main": "bundles/covalent-markdown.umd.js",
|
|
38
|
-
"module": "fesm2015/covalent-markdown.js",
|
|
39
|
-
"es2015": "fesm2015/covalent-markdown.js",
|
|
40
|
-
"esm2015": "esm2015/covalent-markdown.js",
|
|
41
|
-
"fesm2015": "fesm2015/covalent-markdown.js",
|
|
29
|
+
"module": "fesm2015/covalent-markdown.mjs",
|
|
30
|
+
"es2020": "fesm2020/covalent-markdown.mjs",
|
|
31
|
+
"esm2020": "esm2020/covalent-markdown.mjs",
|
|
32
|
+
"fesm2020": "fesm2020/covalent-markdown.mjs",
|
|
33
|
+
"fesm2015": "fesm2015/covalent-markdown.mjs",
|
|
42
34
|
"typings": "covalent-markdown.d.ts",
|
|
43
|
-
"
|
|
35
|
+
"exports": {
|
|
36
|
+
"./package.json": {
|
|
37
|
+
"default": "./package.json"
|
|
38
|
+
},
|
|
39
|
+
".": {
|
|
40
|
+
"types": "./covalent-markdown.d.ts",
|
|
41
|
+
"esm2020": "./esm2020/covalent-markdown.mjs",
|
|
42
|
+
"es2020": "./fesm2020/covalent-markdown.mjs",
|
|
43
|
+
"es2015": "./fesm2015/covalent-markdown.mjs",
|
|
44
|
+
"node": "./fesm2015/covalent-markdown.mjs",
|
|
45
|
+
"default": "./fesm2020/covalent-markdown.mjs"
|
|
46
|
+
}
|
|
47
|
+
},
|
|
44
48
|
"sideEffects": false
|
|
45
|
-
}
|
|
49
|
+
}
|
package/public_api.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from './markdown.module';
|
|
2
|
-
export * from './markdown.component';
|
|
3
|
-
export * from './markdown-utils/markdown-utils';
|
|
4
|
-
export * from './markdown-loader/markdown-loader.service';
|
|
1
|
+
export * from './lib/markdown.module';
|
|
2
|
+
export * from './lib/markdown.component';
|
|
3
|
+
export * from './lib/markdown-utils/markdown-utils';
|
|
4
|
+
export * from './lib/markdown-loader/markdown-loader.service';
|