obsidian-typings 2.2.1-beta.21 → 2.2.1-beta.22
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/dist/obsidian-typings.api.json +10 -2
- package/dist/types.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1421,6 +1421,10 @@
|
|
|
1421
1421
|
"text": "SettingTab",
|
|
1422
1422
|
"canonicalReference": "obsidian!SettingTab:class"
|
|
1423
1423
|
},
|
|
1424
|
+
{
|
|
1425
|
+
"kind": "Content",
|
|
1426
|
+
"text": " | null"
|
|
1427
|
+
},
|
|
1424
1428
|
{
|
|
1425
1429
|
"kind": "Content",
|
|
1426
1430
|
"text": ";"
|
|
@@ -1432,7 +1436,7 @@
|
|
|
1432
1436
|
"name": "activeTab",
|
|
1433
1437
|
"propertyTypeTokenRange": {
|
|
1434
1438
|
"startIndex": 1,
|
|
1435
|
-
"endIndex":
|
|
1439
|
+
"endIndex": 3
|
|
1436
1440
|
}
|
|
1437
1441
|
},
|
|
1438
1442
|
{
|
|
@@ -1449,6 +1453,10 @@
|
|
|
1449
1453
|
"text": "CloseableComponent",
|
|
1450
1454
|
"canonicalReference": "obsidian!CloseableComponent:interface"
|
|
1451
1455
|
},
|
|
1456
|
+
{
|
|
1457
|
+
"kind": "Content",
|
|
1458
|
+
"text": " | null"
|
|
1459
|
+
},
|
|
1452
1460
|
{
|
|
1453
1461
|
"kind": "Content",
|
|
1454
1462
|
"text": ";"
|
|
@@ -1460,7 +1468,7 @@
|
|
|
1460
1468
|
"name": "activeTabCloseable",
|
|
1461
1469
|
"propertyTypeTokenRange": {
|
|
1462
1470
|
"startIndex": 1,
|
|
1463
|
-
"endIndex":
|
|
1471
|
+
"endIndex": 3
|
|
1464
1472
|
}
|
|
1465
1473
|
},
|
|
1466
1474
|
{
|
package/dist/types.d.ts
CHANGED
|
@@ -2224,11 +2224,11 @@ export interface AppSetting extends Modal {
|
|
|
2224
2224
|
/**
|
|
2225
2225
|
* Current active tab of the settings modal
|
|
2226
2226
|
*/
|
|
2227
|
-
activeTab: SettingTab;
|
|
2227
|
+
activeTab: SettingTab | null;
|
|
2228
2228
|
/**
|
|
2229
2229
|
* Closeable component for the active tab
|
|
2230
2230
|
*/
|
|
2231
|
-
activeTabCloseable: CloseableComponent;
|
|
2231
|
+
activeTabCloseable: CloseableComponent | null;
|
|
2232
2232
|
/** @internal Container element containing the community plugins */
|
|
2233
2233
|
communityPluginTabContainer: HTMLElement;
|
|
2234
2234
|
/** @internal Container element containing the community plugins header */
|