@modusoperandi/licit 1.4.7 → 1.4.9
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/ParagraphNodeSpec.js +21 -2
- package/ParagraphNodeSpec.js.flow +22 -2
- package/TextInsertTabSpaceCommand.js +18 -0
- package/TextInsertTabSpaceCommand.js.flow +16 -0
- package/bom.xml +9149 -10365
- package/package.json +20 -23
- package/ui/czi-editor.css +1 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@modusoperandi/licit",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.9",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"subversion": "1",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"test": "jest --coverage",
|
|
17
17
|
"test:unit": "jest",
|
|
18
18
|
"test:coverage": "jest --coverage",
|
|
19
|
-
"build:bom": "cyclonedx-npm --ignore-npm-errors --short-PURLs --output-format XML --output-file dist/bom.xml",
|
|
19
|
+
"build:bom": "npx @cyclonedx/cyclonedx-npm --ignore-npm-errors --short-PURLs --output-format XML --output-file dist/bom.xml",
|
|
20
20
|
"build:clean": "rm -rf dist/ && rm -f modusoperandi-licit-*.*.*.tgz",
|
|
21
21
|
"build:css": "cp src/ui/*.css dist/ui && cp src/client/*.css dist/client && cp src/*.css dist",
|
|
22
22
|
"build:fonts": "mkdirp ./dist/fonts && cp -r src/fonts/* dist/fonts",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"build:flow": "flow-copy-source -v -i '**/__tests__/**' src dist",
|
|
25
25
|
"build:dist": "npm run build:clean && npm run build:babel && npm run build:flow && npm run build:css && npm run build:fonts && npm run build:bom && cp src/*.d.ts dist/",
|
|
26
26
|
"build:licit": "node utils/build_bin.js",
|
|
27
|
-
"ci:bom": "cyclonedx-npm --ignore-npm-errors --short-PURLs --output-format XML --output-file dist/bom.xml",
|
|
27
|
+
"ci:bom": "npx @cyclonedx/cyclonedx-npm --ignore-npm-errors --short-PURLs --output-format XML --output-file dist/bom.xml",
|
|
28
28
|
"ci:build": "npm run build:clean && npm run build:babel && npm run build:flow && npm run build:css && npm run build:fonts && npm run build:bom && copyfiles --up 1 \"src/**/*.d.ts\" dist/ && copyfiles --up 1 \"src/**/*.css\" dist && copyfiles package.json LICENSE dist",
|
|
29
29
|
"lint:css": "stylelint \"**/*.css\"",
|
|
30
30
|
"lint:js": "eslint \"src/**/*.js\"",
|
|
@@ -43,7 +43,8 @@
|
|
|
43
43
|
"@modusoperandi/color-picker": "^1.0.7",
|
|
44
44
|
"browserkeymap": "^2.0.2",
|
|
45
45
|
"flatted": "^3.3.3",
|
|
46
|
-
"
|
|
46
|
+
"prop-types": "^15.8.1",
|
|
47
|
+
"react-tooltip": "^5.30.0",
|
|
47
48
|
"resize-observer-polyfill": "^1.5.1",
|
|
48
49
|
"smooth-scroll-into-view-if-needed": "^2.0.2",
|
|
49
50
|
"url": "^0.11.4",
|
|
@@ -51,8 +52,8 @@
|
|
|
51
52
|
},
|
|
52
53
|
"devDependencies": {
|
|
53
54
|
"@babel/cli": "^7.28.3",
|
|
54
|
-
"@babel/core": "^7.28.
|
|
55
|
-
"@babel/eslint-parser": "^7.28.
|
|
55
|
+
"@babel/core": "^7.28.5",
|
|
56
|
+
"@babel/eslint-parser": "^7.28.5",
|
|
56
57
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
57
58
|
"@babel/plugin-proposal-decorators": "^7.28.0",
|
|
58
59
|
"@babel/plugin-proposal-do-expressions": "^7.28.3",
|
|
@@ -67,12 +68,11 @@
|
|
|
67
68
|
"@babel/plugin-syntax-import-meta": "^7.10.4",
|
|
68
69
|
"@babel/plugin-transform-flow-strip-types": "^7.27.1",
|
|
69
70
|
"@babel/plugin-transform-parameters": "^7.27.7",
|
|
70
|
-
"@babel/plugin-transform-runtime": "^7.28.
|
|
71
|
-
"@babel/preset-env": "^7.28.
|
|
71
|
+
"@babel/plugin-transform-runtime": "^7.28.5",
|
|
72
|
+
"@babel/preset-env": "^7.28.5",
|
|
72
73
|
"@babel/preset-flow": "^7.27.1",
|
|
73
|
-
"@babel/preset-react": "^7.
|
|
74
|
-
"
|
|
75
|
-
"babel-jest": "^30.1.2",
|
|
74
|
+
"@babel/preset-react": "^7.28.5",
|
|
75
|
+
"babel-jest": "^30.2.0",
|
|
76
76
|
"babel-loader": "^10.0.0",
|
|
77
77
|
"babel-plugin-flow-react-proptypes": "^26.0.0",
|
|
78
78
|
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"copyfiles": "^2.4.1",
|
|
83
83
|
"cors": "^2.8.5",
|
|
84
84
|
"css-loader": "^7.1.2",
|
|
85
|
-
"eslint": "^9.
|
|
85
|
+
"eslint": "^9.38.0",
|
|
86
86
|
"eslint-config-prettier": "^10.1.8",
|
|
87
87
|
"eslint-plugin-jest": "^29.0.1",
|
|
88
88
|
"eslint-plugin-prettier": "^5.5.4",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"exports-loader": "^5.0.0",
|
|
91
91
|
"express": "^5.1.0",
|
|
92
92
|
"file-loader": "^6.2.0",
|
|
93
|
-
"flow-bin": "^0.
|
|
93
|
+
"flow-bin": "^0.287.0",
|
|
94
94
|
"flow-copy-source": "^2.0.9",
|
|
95
95
|
"flow-typed": "^4.1.1",
|
|
96
96
|
"flow-webpack-plugin": "^1.2.0",
|
|
@@ -102,31 +102,28 @@
|
|
|
102
102
|
"husky": "^9.1.7",
|
|
103
103
|
"identity-obj-proxy": "^3.0.0",
|
|
104
104
|
"jest": "^29.7.0",
|
|
105
|
-
"jest-environment-jsdom": "^30.
|
|
105
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
106
106
|
"jest-junit": "^16.0.0",
|
|
107
107
|
"jest-prosemirror": "^3.0.1",
|
|
108
108
|
"jest-sonar-reporter": "^2.0.0",
|
|
109
|
-
"lint-staged": "^16.
|
|
109
|
+
"lint-staged": "^16.2.6",
|
|
110
110
|
"mkdirp": "^3.0.1",
|
|
111
111
|
"mv": "^2.1.1",
|
|
112
112
|
"prettier": "^3.6.2",
|
|
113
113
|
"style-loader": "^4.0.0",
|
|
114
|
-
"stylelint": "^16.
|
|
115
|
-
"stylelint-config-standard": "^39.0.
|
|
114
|
+
"stylelint": "^16.25.0",
|
|
115
|
+
"stylelint-config-standard": "^39.0.1",
|
|
116
116
|
"stylelint-prettier": "^5.0.3",
|
|
117
117
|
"terser-webpack-plugin": "^5.3.14",
|
|
118
|
-
"ts-jest": "^29.4.
|
|
118
|
+
"ts-jest": "^29.4.5",
|
|
119
119
|
"ts-loader": "^9.5.4",
|
|
120
120
|
"ts-node": "^10.9.2",
|
|
121
|
-
"typescript": "5.9.
|
|
122
|
-
"webpack": "^5.
|
|
121
|
+
"typescript": "5.9.3",
|
|
122
|
+
"webpack": "^5.102.1",
|
|
123
123
|
"webpack-cli": "^6.0.1",
|
|
124
124
|
"webpack-dev-server": "^5.2.2",
|
|
125
125
|
"write-file-webpack-plugin": "^4.5.1"
|
|
126
126
|
},
|
|
127
|
-
"overrides": {
|
|
128
|
-
"libxmljs2": "^1.0.0"
|
|
129
|
-
},
|
|
130
127
|
"importSort": {
|
|
131
128
|
".js": {
|
|
132
129
|
"parser": "babylon",
|
package/ui/czi-editor.css
CHANGED
|
@@ -213,13 +213,11 @@ td[fullsize='1'] .czi-font-size-mark {
|
|
|
213
213
|
.ProseMirror p[hangingindent='true'] {
|
|
214
214
|
display: flex;
|
|
215
215
|
align-items: flex-start; /* align top edges */
|
|
216
|
-
flex-wrap: wrap; /* allow wrapping if content is long */
|
|
217
|
-
margin: 0 0 1em;
|
|
218
216
|
}
|
|
219
217
|
|
|
220
218
|
/* First span (prefix=0) gets reserved width */
|
|
221
219
|
.ProseMirror p[hangingindent='true'] span[prefix='0'] {
|
|
222
|
-
min-width:
|
|
220
|
+
min-width: var(--hangingIndentMargin);
|
|
223
221
|
display: inline-block;
|
|
224
222
|
flex-shrink: 0; /* don’t shrink below 250px */
|
|
225
223
|
}
|