@shelamkoff/rector 1.0.1 → 1.0.2
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 +25 -24
- package/dist/core/clipboard/Clipboard.d.ts +2 -0
- package/dist/core/clipboard/Clipboard.js +52 -24
- package/dist/core/index.js +195 -194
- package/dist/core/locale/en.d.ts +1 -0
- package/dist/core/locale/en.js +1 -0
- package/dist/core/locale/ru.d.ts +1 -0
- package/dist/core/locale/ru.js +1 -0
- package/dist/core/themes/light.css +1 -1
- package/dist/core/themes/variables.css +72 -10
- package/dist/locale/en.d.ts +41 -0
- package/dist/locale/ru.d.ts +41 -0
- package/dist/plugins/attaches/attaches.css +16 -14
- package/dist/plugins/attaches/index.js +997 -920
- package/dist/plugins/attaches/locale/en.d.ts +9 -0
- package/dist/plugins/attaches/locale/en.js +11 -2
- package/dist/plugins/attaches/locale/ru.d.ts +9 -0
- package/dist/plugins/attaches/locale/ru.js +11 -2
- package/dist/plugins/carousel/carousel.css +213 -49
- package/dist/plugins/carousel/index.js +918 -858
- package/dist/plugins/carousel/locale/en.d.ts +15 -0
- package/dist/plugins/carousel/locale/en.js +18 -3
- package/dist/plugins/carousel/locale/ru.d.ts +15 -0
- package/dist/plugins/carousel/locale/ru.js +18 -3
- package/dist/plugins/gallery/gallery.css +6 -1
- package/dist/plugins/gallery/index.js +375 -354
- package/dist/plugins/gallery/locale/en.d.ts +8 -0
- package/dist/plugins/gallery/locale/en.js +11 -3
- package/dist/plugins/gallery/locale/ru.d.ts +8 -0
- package/dist/plugins/gallery/locale/ru.js +11 -3
- package/dist/plugins/gallery/view-empty.d.ts +2 -0
- package/dist/plugins/gallery/view-empty.js +21 -15
- package/dist/plugins/gallery/view-filled.d.ts +2 -2
- package/dist/plugins/gallery/view-filled.js +61 -56
- package/dist/plugins/image/image.css +7 -2
- package/dist/plugins/image/index.js +365 -345
- package/dist/plugins/image/locale/en.d.ts +8 -0
- package/dist/plugins/image/locale/en.js +11 -3
- package/dist/plugins/image/locale/ru.d.ts +8 -0
- package/dist/plugins/image/locale/ru.js +11 -3
- package/dist/plugins/image/view-empty.d.ts +2 -0
- package/dist/plugins/image/view-empty.js +21 -15
- package/dist/plugins/image/view-filled.d.ts +2 -2
- package/dist/plugins/image/view-filled.js +77 -72
- package/dist/plugins/shared/dropzone.d.ts +6 -0
- package/dist/plugins/shared/dropzone.js +47 -36
- package/dist/plugins/shared/layer.d.ts +13 -0
- package/dist/plugins/shared/layer.js +45 -0
- package/dist/plugins/shared/sourceEditor.css +165 -0
- package/dist/plugins/shared/sourceEditor.d.ts +97 -0
- package/dist/plugins/shared/sourceEditor.js +260 -0
- package/dist/renderer/renderers/carousel/index.js +24 -23
- package/dist/renderer/renderers/carousel/styles.css +8 -2
- package/package.json +32 -32
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shelamkoff/rector",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Extensible browser-native block editor with atomic history, versioned JSON, and document rendering",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": [
|
|
@@ -46,14 +46,14 @@
|
|
|
46
46
|
"types": "./dist/inline-tools/*.d.ts",
|
|
47
47
|
"import": "./dist/inline-tools/*.js"
|
|
48
48
|
},
|
|
49
|
-
"./renderer": {
|
|
50
|
-
"types": "./dist/renderer/index.d.ts",
|
|
51
|
-
"import": "./dist/renderer/index.js"
|
|
52
|
-
},
|
|
53
|
-
"./renderer/types": {
|
|
54
|
-
"types": "./dist/renderer/types.d.ts"
|
|
55
|
-
},
|
|
56
|
-
"./renderer/async": {
|
|
49
|
+
"./renderer": {
|
|
50
|
+
"types": "./dist/renderer/index.d.ts",
|
|
51
|
+
"import": "./dist/renderer/index.js"
|
|
52
|
+
},
|
|
53
|
+
"./renderer/types": {
|
|
54
|
+
"types": "./dist/renderer/types.d.ts"
|
|
55
|
+
},
|
|
56
|
+
"./renderer/async": {
|
|
57
57
|
"types": "./dist/renderer/async.d.ts",
|
|
58
58
|
"import": "./dist/renderer/async.js"
|
|
59
59
|
},
|
|
@@ -78,40 +78,40 @@
|
|
|
78
78
|
"./styles/themes/*": "./dist/core/themes/*.css",
|
|
79
79
|
"./package.json": "./package.json"
|
|
80
80
|
},
|
|
81
|
-
"files": [
|
|
82
|
-
"dist",
|
|
83
|
-
"README.md",
|
|
84
|
-
"LICENSE",
|
|
85
|
-
"NOTICE",
|
|
86
|
-
"THIRD_PARTY_LICENSES.txt"
|
|
81
|
+
"files": [
|
|
82
|
+
"dist",
|
|
83
|
+
"README.md",
|
|
84
|
+
"LICENSE",
|
|
85
|
+
"NOTICE",
|
|
86
|
+
"THIRD_PARTY_LICENSES.txt"
|
|
87
87
|
],
|
|
88
88
|
"scripts": {
|
|
89
|
-
"build": "npm run docs:validate-readmes && node scripts/build-package.mjs",
|
|
89
|
+
"build": "npm run docs:validate-readmes && node scripts/build-package.mjs",
|
|
90
90
|
"build:types": "node scripts/generate-declarations.mjs --out dist",
|
|
91
91
|
"typecheck": "node node_modules/typescript/bin/tsc -p jsconfig.json",
|
|
92
|
-
"docs:validate-readmes": "node scripts/validate-extension-readmes.mjs",
|
|
93
|
-
"docs:sync": "npm run docs:validate-readmes && node scripts/sync-vitepress-readmes.mjs",
|
|
92
|
+
"docs:validate-readmes": "node scripts/validate-extension-readmes.mjs",
|
|
93
|
+
"docs:sync": "npm run docs:validate-readmes && node scripts/sync-vitepress-readmes.mjs",
|
|
94
94
|
"docs:dev": "npm run docs:sync && vitepress dev docs --host 127.0.0.1",
|
|
95
95
|
"docs:build": "npm run docs:sync && vitepress build docs",
|
|
96
96
|
"docs:preview": "vitepress preview docs --host 127.0.0.1",
|
|
97
|
-
"docs:check": "npm run docs:build && node scripts/vitepress-docs-smoke.mjs && node scripts/vitepress-browser-smoke.mjs",
|
|
98
|
-
"test": "node --test",
|
|
99
|
-
"test:browser": "node tests/browser/run.mjs && node tests/browser/physical-history.mjs && node tests/browser/heap-gate.mjs",
|
|
100
|
-
"test:plugin-source": "node scripts/plugin-source-audit.mjs",
|
|
101
|
-
"test:plugin-locales": "node scripts/plugin-locale-audit.mjs",
|
|
102
|
-
"test:docs": "npm run docs:validate-readmes && npm run test:plugin-source && npm run test:plugin-locales && node scripts/documentation-contract-audit.mjs && node scripts/readme-smoke.mjs",
|
|
97
|
+
"docs:check": "npm run docs:build && node scripts/vitepress-docs-smoke.mjs && node scripts/vitepress-browser-smoke.mjs",
|
|
98
|
+
"test": "node --test",
|
|
99
|
+
"test:browser": "node tests/browser/run.mjs && node tests/browser/physical-history.mjs && node tests/browser/heap-gate.mjs",
|
|
100
|
+
"test:plugin-source": "node scripts/plugin-source-audit.mjs",
|
|
101
|
+
"test:plugin-locales": "node scripts/plugin-locale-audit.mjs",
|
|
102
|
+
"test:docs": "npm run docs:validate-readmes && npm run test:plugin-source && npm run test:plugin-locales && node scripts/documentation-contract-audit.mjs && node scripts/readme-smoke.mjs",
|
|
103
103
|
"test:types": "node --test shared/declarationParity.test.js",
|
|
104
104
|
"test:package": "node scripts/package-consumer-gate.mjs",
|
|
105
105
|
"prepublishOnly": "npm run typecheck && npm test && npm run test:browser && npm run test:docs && npm run test:types && npm run test:package",
|
|
106
106
|
"prepack": "npm run build"
|
|
107
107
|
},
|
|
108
|
-
"dependencies": {
|
|
109
|
-
"@shelamkoff/carousel": "^1.0.0",
|
|
110
|
-
"@shelamkoff/color-picker": "^1.0.0",
|
|
111
|
-
"@shelamkoff/event-bus": "^1.0.0",
|
|
112
|
-
"@shelamkoff/cropper": "^1.0.0",
|
|
113
|
-
"@shelamkoff/expose": "^1.0.0"
|
|
114
|
-
},
|
|
108
|
+
"dependencies": {
|
|
109
|
+
"@shelamkoff/carousel": "^1.0.0",
|
|
110
|
+
"@shelamkoff/color-picker": "^1.0.0",
|
|
111
|
+
"@shelamkoff/event-bus": "^1.0.0",
|
|
112
|
+
"@shelamkoff/cropper": "^1.0.0",
|
|
113
|
+
"@shelamkoff/expose": "^1.0.0"
|
|
114
|
+
},
|
|
115
115
|
"devDependencies": {
|
|
116
116
|
"@tabler/icons-vue": "^3.41.1",
|
|
117
117
|
"typescript": "~5.9.3",
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
"type": "git",
|
|
136
136
|
"url": "git+https://github.com/Shelamkoff/editor.git"
|
|
137
137
|
},
|
|
138
|
-
"homepage": "https://shelamkoff.github.io/editor/",
|
|
138
|
+
"homepage": "https://shelamkoff.github.io/editor/",
|
|
139
139
|
"bugs": {
|
|
140
140
|
"url": "https://github.com/Shelamkoff/editor/issues"
|
|
141
141
|
},
|