@podlite/editor-react 0.0.59 → 0.0.61
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.podlite +4 -0
- package/esm/index.d.ts +0 -2
- package/esm/index.js +0 -2
- package/esm/index.js.map +1 -1
- package/lib/index.d.ts +0 -2
- package/lib/index.js +0 -2
- package/lib/index.js.map +1 -1
- package/package.json +6 -2
package/CHANGELOG.podlite
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
=head1 Upcoming
|
|
4
4
|
|
|
5
|
+
=head1 0.0.61
|
|
6
|
+
|
|
7
|
+
=item stop importing global css from the entry — import C<@podlite/editor-react/Editor.css> and C<@podlite/editor-react/podlite-vars.css> in your app
|
|
8
|
+
|
|
5
9
|
=head1 0.0.58
|
|
6
10
|
|
|
7
11
|
=item add a C<language> prop (C<podlite> | C<markdown>) that selects editor syntax highlighting; C<markdown> highlights Markdown source and fenced code by language
|
package/esm/index.d.ts
CHANGED
package/esm/index.js
CHANGED
package/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,UAAU,CAAA;AAC9B,OAAO,aAAa,MAAM,WAAW,CAAA;AACrC,OAAO,eAAe,MAAM,mBAAmB,CAAA;AAC/C,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,CAAA;AAC7B,OAAO,EAAE,aAAa,IAAI,aAAa,EAAE,CAAA;AACzC,OAAO,EAAE,eAAe,IAAI,eAAe,EAAE,CAAA;AAI7C,eAAe,OAAO,CAAA"}
|
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.HighlightedCode = exports.WindowWrapper = exports.Editor2 = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
|
-
require("./Editor.css");
|
|
6
|
-
require("./podlite-vars.css");
|
|
7
5
|
const Editor_1 = tslib_1.__importDefault(require("./Editor"));
|
|
8
6
|
exports.Editor2 = Editor_1.default;
|
|
9
7
|
const Wrapper_1 = tslib_1.__importDefault(require("./Wrapper"));
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":";;;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":";;;;AAAA,8DAA8B;AAGV,kBAHb,gBAAO,CAGa;AAF3B,gEAAqC;AAGX,wBAHnB,iBAAa,CAGmB;AAFvC,gFAA+C;AAGnB,0BAHrB,yBAAe,CAGqB;AAI3C,kBAAe,gBAAO,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@podlite/editor-react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.61",
|
|
4
4
|
"description": "Rich text editor React component for Podlite — syntax highlighting, live preview, CodeMirror 6",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -20,7 +20,11 @@
|
|
|
20
20
|
"./lib/podlite-vars.css": "./lib/podlite-vars.css",
|
|
21
21
|
"./lib/Editor.old.css": "./lib/Editor.old.css",
|
|
22
22
|
"./demo/Components": "./demo/Components",
|
|
23
|
-
"./package.json": "./package.json"
|
|
23
|
+
"./package.json": "./package.json",
|
|
24
|
+
"./lib/*": {
|
|
25
|
+
"types": "./lib/*.d.ts",
|
|
26
|
+
"default": "./lib/*.js"
|
|
27
|
+
}
|
|
24
28
|
},
|
|
25
29
|
"homepage": "https://podlite.org",
|
|
26
30
|
"bugs": {
|