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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 16.4.3
4
+
5
+ - functionExpression.spaceAfterFunctionKeyword
6
+
7
+ ## 16.4.2
8
+
9
+ - Space after new
10
+
3
11
  ## 16.4.1
4
12
 
5
13
  - Fix dir path
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",
@@ -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.1";
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:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "obsidian-dev-utils",
3
- "version": "16.4.1",
3
+ "version": "16.4.3",
4
4
  "description": "This is the collection of useful functions that you can use for your Obsidian plugin development",
5
5
  "keywords": [
6
6
  "obsidian"