obsidian-dev-utils 16.4.1 → 16.4.3
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 +8 -0
- package/dist/dprint.json +2 -0
- package/dist/lib/Library.cjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/dprint.json
CHANGED
@@ -1,7 +1,9 @@
|
|
1
1
|
{
|
2
2
|
"typescript": {
|
3
|
+
"constructSignature.spaceAfterNewKeyword": true,
|
3
4
|
"constructorType.spaceAfterNewKeyword": true,
|
4
5
|
"exportDeclaration.forceMultiLine": "whenMultiple",
|
6
|
+
"functionExpression.spaceAfterFunctionKeyword": true,
|
5
7
|
"importDeclaration.forceMultiLine": "whenMultiple",
|
6
8
|
"lineWidth": 160,
|
7
9
|
"quoteStyle": "alwaysSingle",
|
package/dist/lib/Library.cjs
CHANGED
@@ -32,7 +32,7 @@ __export(Library_exports, {
|
|
32
32
|
LIBRARY_VERSION: () => LIBRARY_VERSION
|
33
33
|
});
|
34
34
|
module.exports = __toCommonJS(Library_exports);
|
35
|
-
const LIBRARY_VERSION = "16.4.
|
35
|
+
const LIBRARY_VERSION = "16.4.3";
|
36
36
|
const LIBRARY_NAME = "obsidian-dev-utils";
|
37
37
|
const LIBRARY_STYLES = ".obsidian-dev-utils {\n /* default styles */\n}\n\n.obsidian-dev-utils.alert-modal {\n /* default styles */\n}\n\n.obsidian-dev-utils.confirm-modal {\n /* default styles */\n}\n\n.obsidian-dev-utils.plugin-settings-tab {\n /* default styles */\n}\n\n.obsidian-dev-utils.plugin-settings-tab .value-component-invalid {\n box-shadow: 0 0 0 2px var(--text-error);\n}\n\n.obsidian-dev-utils.prompt-modal {\n /* default styles */\n}\n\n.obsidian-dev-utils.select-item-modal {\n /* default styles */\n}\n";
|
38
38
|
// Annotate the CommonJS export names for ESM import in node:
|