obsidian-dev-utils 84.3.0 → 84.5.0
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.md +15 -0
- package/dist/dev/main.js +234 -93
- package/dist/lib/cjs/generated-during-build.cjs +2 -2
- package/dist/lib/cjs/obsidian/modals/index.cjs +6 -3
- package/dist/lib/cjs/obsidian/modals/index.d.cts +1 -0
- package/dist/lib/cjs/obsidian/modals/suggest-modal-command-builder.cjs +269 -0
- package/dist/lib/cjs/obsidian/modals/suggest-modal-command-builder.d.cts +171 -0
- package/dist/lib/esm/generated-during-build.mjs +2 -2
- package/dist/lib/esm/obsidian/modals/index.d.mts +1 -0
- package/dist/lib/esm/obsidian/modals/index.mjs +4 -2
- package/dist/lib/esm/obsidian/modals/suggest-modal-command-builder.d.mts +171 -0
- package/dist/lib/esm/obsidian/modals/suggest-modal-command-builder.mjs +164 -0
- package/dist/styles.css +2 -2
- package/obsidian/Modals/suggest-modal-command-builder/package.json +6 -0
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 84.5.0
|
|
4
|
+
|
|
5
|
+
- docs: fix markdown lint blanks around headings and lists
|
|
6
|
+
- docs: mark SuggestModalCommandBuilder dev-utils extraction done
|
|
7
|
+
- feat(obsidian): add SuggestModalCommandBuilder
|
|
8
|
+
- docs: prune shipped task sections and drop cross-scope rule refs
|
|
9
|
+
|
|
10
|
+
## 84.4.0
|
|
11
|
+
|
|
12
|
+
- chore: update libs
|
|
13
|
+
- test: guard minimized-modal bar opacity on real hover
|
|
14
|
+
- fix(test-helpers): accept optional methods in mockImplementation
|
|
15
|
+
- docs: record deferred real-hover regression test for <https://github.com/mnaoumov/obsidian-advanced-note-composer/issues/124>
|
|
16
|
+
- fix: keep minimized modal bar opaque on hover
|
|
17
|
+
|
|
3
18
|
## 84.3.0
|
|
4
19
|
|
|
5
20
|
- chore: cleanup
|