obsidian-dev-utils 83.1.0 → 83.3.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 +16 -1
- package/dist/dev/main.js +287 -132
- package/dist/lib/cjs/abort-controller.cjs +2 -5
- package/dist/lib/cjs/generated-during-build.cjs +2 -2
- package/dist/lib/cjs/obsidian/async-with-notice.cjs +24 -4
- package/dist/lib/cjs/obsidian/async-with-notice.d.cts +13 -0
- package/dist/lib/cjs/obsidian/components/plugin-notice-component.cjs +161 -16
- package/dist/lib/cjs/obsidian/components/plugin-notice-component.d.cts +102 -0
- package/dist/lib/cjs/obsidian/css-class.cjs +3 -1
- package/dist/lib/cjs/obsidian/css-class.d.cts +9 -0
- package/dist/lib/esm/abort-controller.mjs +2 -5
- package/dist/lib/esm/generated-during-build.mjs +2 -2
- package/dist/lib/esm/obsidian/async-with-notice.d.mts +13 -0
- package/dist/lib/esm/obsidian/async-with-notice.mjs +25 -4
- package/dist/lib/esm/obsidian/components/plugin-notice-component.d.mts +102 -0
- package/dist/lib/esm/obsidian/components/plugin-notice-component.mjs +161 -16
- package/dist/lib/esm/obsidian/css-class.d.mts +9 -0
- package/dist/lib/esm/obsidian/css-class.mjs +3 -1
- package/dist/styles.css +6 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 83.3.0
|
|
4
|
+
|
|
5
|
+
- chore: update libs
|
|
6
|
+
- feat: showNoticeAfterDelay
|
|
7
|
+
- feat: don't close plugin notice on click on interactive els
|
|
8
|
+
|
|
9
|
+
## 83.2.0
|
|
10
|
+
|
|
11
|
+
- docs: cleanup
|
|
12
|
+
- chore: update libs
|
|
13
|
+
- feat: highlight the plugin name in notices with an accent color
|
|
14
|
+
- feat: support custom content in runWithTimeoutNotice
|
|
15
|
+
- docs: record fake-timer-controllable timing-primitive rule
|
|
16
|
+
- fix: make sleep controllable by vitest fake timers
|
|
17
|
+
|
|
3
18
|
## 83.1.0
|
|
4
19
|
|
|
5
20
|
- fix: link
|
|
@@ -1829,7 +1844,7 @@ BREAKING CHANGE: `generateMarkdownLink()` now doesn't support default options em
|
|
|
1829
1844
|
|
|
1830
1845
|
## 27.2.0
|
|
1831
1846
|
|
|
1832
|
-
- Recognize urls such mailto:foo@bar.com
|
|
1847
|
+
- Recognize urls such <mailto:foo@bar.com>
|
|
1833
1848
|
- fix <https://github.com/mnaoumov/obsidian-frontmatter-markdown-links/issues/9>
|
|
1834
1849
|
|
|
1835
1850
|
## 27.1.0
|