orgnote-api 0.0.8 → 0.0.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.
@@ -1,4 +1,4 @@
1
- import { OrgNoteApi } from 'src/api';
1
+ import { OrgNoteApi } from '../api';
2
2
  export interface ExtensionManifest {
3
3
  name: string;
4
4
  version: string;
@@ -1,3 +1,7 @@
1
+ /**
2
+ * This file is generated by the script `collect-css-variables.js`.
3
+ * Do not edit it manually.
4
+ **/
1
5
  export declare enum ThemeVariable {
2
6
  red = "red",
3
7
  orange = "orange",
@@ -13,6 +17,7 @@ export declare enum ThemeVariable {
13
17
  white = "white",
14
18
  bg = "bg",
15
19
  bgAlt = "bgAlt",
20
+ bgAlt2 = "bgAlt2",
16
21
  fg = "fg",
17
22
  fgAlt = "fgAlt",
18
23
  base0 = "base0",
@@ -23,8 +28,7 @@ export declare enum ThemeVariable {
23
28
  base5 = "base5",
24
29
  base6 = "base6",
25
30
  base7 = "base7",
26
- base8 = "base8",
27
- bgAlt2 = "bgAlt2"
31
+ base8 = "base8"
28
32
  }
29
33
  export declare enum CSSVariable {
30
34
  bg = "bg",
@@ -74,6 +78,9 @@ export declare enum CSSVariable {
74
78
  codeFontSize = "codeFontSize",
75
79
  headlineFontWeight = "headlineFontWeight",
76
80
  fontColorAction = "fontColorAction",
81
+ fontSm = "fontSm",
82
+ fontMd = "fontMd",
83
+ fontLg = "fontLg",
77
84
  ulFontSize = "ulFontSize",
78
85
  ulLineHeight = "ulLineHeight",
79
86
  ulFontFamily = "ulFontFamily",
@@ -144,7 +151,9 @@ export declare enum CSSVariable {
144
151
  modalMaxHeight = "modalMaxHeight",
145
152
  modalMaxWidth = "modalMaxWidth",
146
153
  modalPadding = "modalPadding",
154
+ blockPaddingSm = "blockPaddingSm",
147
155
  blockPaddingMd = "blockPaddingMd",
156
+ blockPaddingLg = "blockPaddingLg",
148
157
  blockMarginMd = "blockMarginMd",
149
158
  blockMarginSm = "blockMarginSm",
150
159
  blockBorderRadiusMd = "blockBorderRadiusMd",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orgnote-api",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "description": "Official API for creating extensions for OrgNote app",
5
5
  "type": "module",
6
6
  "main": "dist/index.ts",
@@ -9,8 +9,8 @@
9
9
  "build": "npm run clear && tsc --project tsconfig.json",
10
10
  "clear": "rm -rf dist",
11
11
  "codegen:api": "openapi-generator-cli generate",
12
- "codegen:css-doc": "node collect-css-variables.js --docs",
13
- "codegen:css-types": "node collect-css-variables.js --types",
12
+ "codegen:css-doc": "node collect-css-variables.cjs --docs",
13
+ "codegen:css-types": "node collect-css-variables.cjs --types",
14
14
  "prepublish": "npm run build"
15
15
  },
16
16
  "repository": {
@@ -35,6 +35,7 @@
35
35
  },
36
36
  "homepage": "https://github.com/artawower/orgnote-api#readme",
37
37
  "dependencies": {
38
+ "axios": "1.6.7",
38
39
  "codemirror": "6.0.1",
39
40
  "org-mode-ast": "0.11.2",
40
41
  "vue-router": "4.2.5"