chore: upgrade snjs (#985)
This commit is contained in:
@@ -119,7 +119,11 @@ export const ComponentView: FunctionalComponent<IProps> = observer(
|
|||||||
const contentWindow = iframe.contentWindow as Window
|
const contentWindow = iframe.contentWindow as Window
|
||||||
excessiveLoadingTimeout.current && clearTimeout(excessiveLoadingTimeout.current)
|
excessiveLoadingTimeout.current && clearTimeout(excessiveLoadingTimeout.current)
|
||||||
|
|
||||||
componentViewer.setWindow(contentWindow).catch(console.error)
|
try {
|
||||||
|
componentViewer.setWindow(contentWindow)
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error)
|
||||||
|
}
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
setIsLoading(false)
|
setIsLoading(false)
|
||||||
|
|||||||
@@ -10,12 +10,12 @@ import {
|
|||||||
ComponentArea,
|
ComponentArea,
|
||||||
PrefKey,
|
PrefKey,
|
||||||
ComponentMutator,
|
ComponentMutator,
|
||||||
PayloadSource,
|
|
||||||
ComponentViewer,
|
ComponentViewer,
|
||||||
TransactionalMutation,
|
TransactionalMutation,
|
||||||
ItemMutator,
|
ItemMutator,
|
||||||
ProposedSecondsToDeferUILevelSessionExpirationDuringActiveInteraction,
|
ProposedSecondsToDeferUILevelSessionExpirationDuringActiveInteraction,
|
||||||
NoteViewController,
|
NoteViewController,
|
||||||
|
PayloadEmitSource,
|
||||||
} from '@standardnotes/snjs'
|
} from '@standardnotes/snjs'
|
||||||
import { debounce, isDesktopApplication } from '@/Utils'
|
import { debounce, isDesktopApplication } from '@/Utils'
|
||||||
import { KeyboardModifier, KeyboardKey } from '@/Services/IOService'
|
import { KeyboardModifier, KeyboardKey } from '@/Services/IOService'
|
||||||
@@ -245,7 +245,7 @@ export class NoteView extends PureComponent<Props, State> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private onNoteInnerChange(note: SNNote, source: PayloadSource): void {
|
private onNoteInnerChange(note: SNNote, source: PayloadEmitSource): void {
|
||||||
if (note.uuid !== this.note.uuid) {
|
if (note.uuid !== this.note.uuid) {
|
||||||
throw Error('Editor received changes for non-current note')
|
throw Error('Editor received changes for non-current note')
|
||||||
}
|
}
|
||||||
@@ -282,7 +282,7 @@ export class NoteView extends PureComponent<Props, State> {
|
|||||||
this.reloadSpellcheck().catch(console.error)
|
this.reloadSpellcheck().catch(console.error)
|
||||||
|
|
||||||
const isTemplateNoteInsertedToBeInteractableWithEditor =
|
const isTemplateNoteInsertedToBeInteractableWithEditor =
|
||||||
source === PayloadSource.Constructor && note.dirty
|
source === PayloadEmitSource.LocalInserted && note.dirty
|
||||||
if (isTemplateNoteInsertedToBeInteractableWithEditor) {
|
if (isTemplateNoteInsertedToBeInteractableWithEditor) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -411,7 +411,7 @@ export class NoteView extends PureComponent<Props, State> {
|
|||||||
async ({ source }) => {
|
async ({ source }) => {
|
||||||
if (
|
if (
|
||||||
isPayloadSourceInternalChange(source) ||
|
isPayloadSourceInternalChange(source) ||
|
||||||
source === PayloadSource.InitialObserverRegistrationPush
|
source === PayloadEmitSource.InitialObserverRegistrationPush
|
||||||
) {
|
) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import {
|
|||||||
ButtonType,
|
ButtonType,
|
||||||
ContentType,
|
ContentType,
|
||||||
HistoryEntry,
|
HistoryEntry,
|
||||||
PayloadSource,
|
PayloadEmitSource,
|
||||||
RevisionListEntry,
|
RevisionListEntry,
|
||||||
SNNote,
|
SNNote,
|
||||||
} from '@standardnotes/snjs'
|
} from '@standardnotes/snjs'
|
||||||
@@ -124,10 +124,10 @@ export const RevisionHistoryModal: FunctionComponent<RevisionHistoryModalProps>
|
|||||||
.changeAndSaveItem(
|
.changeAndSaveItem(
|
||||||
originalNote,
|
originalNote,
|
||||||
(mutator) => {
|
(mutator) => {
|
||||||
mutator.unsafe_setCustomContent(selectedRevision.payload.content)
|
mutator.setCustomContent(selectedRevision.payload.content)
|
||||||
},
|
},
|
||||||
true,
|
true,
|
||||||
PayloadSource.RemoteActionRetrieved,
|
PayloadEmitSource.RemoteRetrieved,
|
||||||
)
|
)
|
||||||
.catch(console.error)
|
.catch(console.error)
|
||||||
dismissModal()
|
dismissModal()
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ import {
|
|||||||
ApplicationEvent,
|
ApplicationEvent,
|
||||||
removeFromArray,
|
removeFromArray,
|
||||||
DesktopManagerInterface,
|
DesktopManagerInterface,
|
||||||
PayloadSource,
|
|
||||||
InternalEventBus,
|
InternalEventBus,
|
||||||
} from '@standardnotes/snjs'
|
} from '@standardnotes/snjs'
|
||||||
import { WebAppEvent, WebApplication } from '@/UIModels/Application'
|
import { WebAppEvent, WebApplication } from '@/UIModels/Application'
|
||||||
@@ -140,7 +139,6 @@ export class DesktopManager
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
undefined,
|
undefined,
|
||||||
PayloadSource.DesktopInstalled,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
for (const observer of this.updateObservers) {
|
for (const observer of this.updateObservers) {
|
||||||
|
|||||||
@@ -8,10 +8,11 @@ import {
|
|||||||
ContentType,
|
ContentType,
|
||||||
UuidString,
|
UuidString,
|
||||||
FeatureStatus,
|
FeatureStatus,
|
||||||
PayloadSource,
|
|
||||||
PrefKey,
|
PrefKey,
|
||||||
CreateDecryptedLocalStorageContextPayload,
|
CreateDecryptedLocalStorageContextPayload,
|
||||||
InternalEventBus,
|
InternalEventBus,
|
||||||
|
PayloadEmitSource,
|
||||||
|
LocalStorageDecryptedContextualPayload,
|
||||||
} from '@standardnotes/snjs'
|
} from '@standardnotes/snjs'
|
||||||
import { dismissToast, ToastType, addTimedToast } from '@standardnotes/stylekit'
|
import { dismissToast, ToastType, addTimedToast } from '@standardnotes/stylekit'
|
||||||
|
|
||||||
@@ -233,7 +234,7 @@ export class ThemeManager extends ApplicationService {
|
|||||||
this.deactivateTheme(theme.uuid)
|
this.deactivateTheme(theme.uuid)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (source !== PayloadSource.LocalRetrieved) {
|
if (source !== PayloadEmitSource.LocalRetrieved) {
|
||||||
this.cacheThemeState().catch(console.error)
|
this.cacheThemeState().catch(console.error)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -300,7 +301,8 @@ export class ThemeManager extends ApplicationService {
|
|||||||
const cachedThemes = (await this.application.getValue(
|
const cachedThemes = (await this.application.getValue(
|
||||||
CachedThemesKey,
|
CachedThemesKey,
|
||||||
StorageValueModes.Nonwrapped,
|
StorageValueModes.Nonwrapped,
|
||||||
)) as SNTheme[]
|
)) as LocalStorageDecryptedContextualPayload[]
|
||||||
|
|
||||||
if (cachedThemes) {
|
if (cachedThemes) {
|
||||||
const themes = []
|
const themes = []
|
||||||
for (const cachedTheme of cachedThemes) {
|
for (const cachedTheme of cachedThemes) {
|
||||||
|
|||||||
@@ -14,8 +14,8 @@ import {
|
|||||||
SNTag,
|
SNTag,
|
||||||
SystemViewId,
|
SystemViewId,
|
||||||
removeFromArray,
|
removeFromArray,
|
||||||
PayloadSource,
|
|
||||||
Uuid,
|
Uuid,
|
||||||
|
PayloadEmitSource,
|
||||||
} from '@standardnotes/snjs'
|
} from '@standardnotes/snjs'
|
||||||
import { action, computed, IReactionDisposer, makeObservable, observable, reaction } from 'mobx'
|
import { action, computed, IReactionDisposer, makeObservable, observable, reaction } from 'mobx'
|
||||||
import { ActionsMenuState } from './ActionsMenuState'
|
import { ActionsMenuState } from './ActionsMenuState'
|
||||||
@@ -293,7 +293,7 @@ export class AppState {
|
|||||||
this.application.streamItems<SNNote | SNTag>(
|
this.application.streamItems<SNNote | SNTag>(
|
||||||
[ContentType.Note, ContentType.Tag],
|
[ContentType.Note, ContentType.Tag],
|
||||||
async ({ changed, inserted, removed, source }) => {
|
async ({ changed, inserted, removed, source }) => {
|
||||||
if (![PayloadSource.PreSyncSave, PayloadSource.RemoteRetrieved].includes(source)) {
|
if (![PayloadEmitSource.PreSyncSave, PayloadEmitSource.RemoteRetrieved].includes(source)) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
12
package.json
12
package.json
@@ -26,7 +26,7 @@
|
|||||||
"@babel/plugin-transform-react-jsx": "^7.17.3",
|
"@babel/plugin-transform-react-jsx": "^7.17.3",
|
||||||
"@babel/preset-env": "^7.16.11",
|
"@babel/preset-env": "^7.16.11",
|
||||||
"@babel/preset-typescript": "^7.16.7",
|
"@babel/preset-typescript": "^7.16.7",
|
||||||
"@standardnotes/config": "^2.3.1",
|
"@standardnotes/config": "^2.4.0",
|
||||||
"@svgr/webpack": "^6.2.1",
|
"@svgr/webpack": "^6.2.1",
|
||||||
"@types/jest": "^27.4.1",
|
"@types/jest": "^27.4.1",
|
||||||
"@types/react": "^17.0.42",
|
"@types/react": "^17.0.42",
|
||||||
@@ -69,11 +69,11 @@
|
|||||||
"@reach/listbox": "^0.16.2",
|
"@reach/listbox": "^0.16.2",
|
||||||
"@reach/tooltip": "^0.16.2",
|
"@reach/tooltip": "^0.16.2",
|
||||||
"@reach/visually-hidden": "^0.16.0",
|
"@reach/visually-hidden": "^0.16.0",
|
||||||
"@standardnotes/components": "1.7.14",
|
"@standardnotes/components": "1.7.15",
|
||||||
"@standardnotes/filepicker": "1.10.5",
|
"@standardnotes/filepicker": "1.11.0",
|
||||||
"@standardnotes/sncrypto-web": "1.8.2",
|
"@standardnotes/sncrypto-web": "1.8.3",
|
||||||
"@standardnotes/snjs": "2.94.3",
|
"@standardnotes/snjs": "2.96.2",
|
||||||
"@standardnotes/stylekit": "5.22.1",
|
"@standardnotes/stylekit": "5.23.0",
|
||||||
"@zip.js/zip.js": "^2.4.7",
|
"@zip.js/zip.js": "^2.4.7",
|
||||||
"mobx": "^6.5.0",
|
"mobx": "^6.5.0",
|
||||||
"mobx-react-lite": "^3.3.0",
|
"mobx-react-lite": "^3.3.0",
|
||||||
|
|||||||
198
yarn.lock
198
yarn.lock
@@ -2388,130 +2388,130 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@sinonjs/commons" "^1.7.0"
|
"@sinonjs/commons" "^1.7.0"
|
||||||
|
|
||||||
"@standardnotes/auth@^3.18.5":
|
"@standardnotes/auth@^3.18.7":
|
||||||
version "3.18.5"
|
version "3.18.7"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/auth/-/auth-3.18.5.tgz#11087e0bc31c42e489a7f546d317bbbcbd48d573"
|
resolved "https://registry.yarnpkg.com/@standardnotes/auth/-/auth-3.18.7.tgz#54544e102ff734a38f8e7425dcfbf8f833679d86"
|
||||||
integrity sha512-NSeU3A9iDyZFLLfv6jOyaweykMbjUUe0XoZo6lVifQucsRW0VJ4R6m3aeXqx6/zDwmHIBqVVzrX2bqQ7r2s9SA==
|
integrity sha512-43t462vS2qMnypqcVjwLOkiWc9eb2dxDWy6663UqPbaQ1fmwK868WTNd+yHdeNKPUGAOD1uETMma+CFF8FqKBQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@standardnotes/common" "^1.19.3"
|
"@standardnotes/common" "^1.19.4"
|
||||||
jsonwebtoken "^8.5.1"
|
jsonwebtoken "^8.5.1"
|
||||||
|
|
||||||
"@standardnotes/common@^1.19.3":
|
"@standardnotes/common@^1.19.4":
|
||||||
version "1.19.3"
|
version "1.19.4"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/common/-/common-1.19.3.tgz#ae2ca493492eb5e0d9663abf736a9d7a26365c52"
|
resolved "https://registry.yarnpkg.com/@standardnotes/common/-/common-1.19.4.tgz#6ee634dd7a4c21f63d79c8ec86d483f27f11d65b"
|
||||||
integrity sha512-nMqH+grkIgnODr5EncbG9yHqIxSBHLVTiAb+NZ2EvkhLBiuVhP2UEDNs8KcZKfgNVGGDIHQbjEXZKGog9J6gZw==
|
integrity sha512-nLy7sdewf9wzHuHWBfPBGMi90Lrmy3eMnIUNzyS3DbsuoJVb6VQ3Hss5f5EG7Du59keDtmfgvx+b0wAs9EoMqA==
|
||||||
|
|
||||||
"@standardnotes/components@1.7.14":
|
"@standardnotes/components@1.7.15":
|
||||||
version "1.7.14"
|
version "1.7.15"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/components/-/components-1.7.14.tgz#ddd5b4d5787d3f90a4e1a88cfd95995f9267b1d1"
|
resolved "https://registry.yarnpkg.com/@standardnotes/components/-/components-1.7.15.tgz#3d57dd21cd4bf1f95eea7521fce7dd62e8f99455"
|
||||||
integrity sha512-NDzP8/lmzgFBjxfmaE3OSOjPfozs3vednFfrjmjri5kCXlfClEISL6b/kh6B6wv/x9DIFveOsRj2Lrov+5IXdw==
|
integrity sha512-fZOaqi62BDhVkqH6Bd9NQhVPyPR3KARob8xm/JhMLWt1d8G1ZFEQ/IOLTMFpYQCt9IroLG/pl6GD0Xj46ISgkw==
|
||||||
|
|
||||||
"@standardnotes/config@^2.3.1":
|
"@standardnotes/config@^2.4.0":
|
||||||
version "2.3.1"
|
version "2.4.0"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/config/-/config-2.3.1.tgz#7d299748911a0703742727fd6fa592ac56136998"
|
resolved "https://registry.yarnpkg.com/@standardnotes/config/-/config-2.4.0.tgz#4ca7ccd857f23850a154911d274f0aa6bf6b7b05"
|
||||||
integrity sha512-G5UeKgB3R862KBSIFtfs60C0NKGkxqDFdVUcArYE0+BmiIYZKVcaykjtycTQGhF18cPLtlCcIfta04+4CfFM1w==
|
integrity sha512-iCdGcC4cRB9+gJAjmA1tJr+dgTUDStG0OSleAOVqvaZmtj94rOzX/v8GmiqnsDajyZZXAmD+Ftse3Z3kOAPhTQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@typescript-eslint/eslint-plugin" "^5.12.1"
|
"@typescript-eslint/eslint-plugin" "^5.12.1"
|
||||||
"@typescript-eslint/parser" "^5.12.1"
|
"@typescript-eslint/parser" "^5.12.1"
|
||||||
|
|
||||||
"@standardnotes/domain-events@^2.26.9":
|
"@standardnotes/domain-events@^2.27.6":
|
||||||
version "2.26.9"
|
version "2.27.6"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/domain-events/-/domain-events-2.26.9.tgz#09d3ac547e263ff957a9a645a6c1f0039aa85ccd"
|
resolved "https://registry.yarnpkg.com/@standardnotes/domain-events/-/domain-events-2.27.6.tgz#663353fdbcd4d6c5e9af35dced549196a792d370"
|
||||||
integrity sha512-iQCiCdLpMw3Yp3Z9q7GU9Z48tK2jAMI32VjsQtbyqOmjR+aVmo4e2oGyshm/2+5ymKUiG7xlx3Hl63RlQbGf1A==
|
integrity sha512-4UnUDmDI5z/RRFUpd0owvDFCOZDVVNFhELkCJYn6HFpHmBKlvbIgARQoH1cXqUt0mi9SzvoSFFoOLCjvCFkUog==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@standardnotes/auth" "^3.18.5"
|
"@standardnotes/auth" "^3.18.7"
|
||||||
"@standardnotes/features" "^1.37.2"
|
"@standardnotes/features" "^1.37.5"
|
||||||
|
|
||||||
"@standardnotes/encryption@^1.2.2":
|
"@standardnotes/encryption@^1.4.1":
|
||||||
version "1.2.2"
|
version "1.4.1"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/encryption/-/encryption-1.2.2.tgz#27325dff46875871c26e208d77651532573a7afc"
|
resolved "https://registry.yarnpkg.com/@standardnotes/encryption/-/encryption-1.4.1.tgz#955b246674c912a6b051b3575c22b124a05860f7"
|
||||||
integrity sha512-B9RjWltLuURg6qUdFTQZeQRKX2DoP6VL/6kS2Ay3ZkrEEcCNvxeuqr9yvXbZn2kKS0dUDfzfbYWOvoVxyyUwYA==
|
integrity sha512-j+gwiPJkqYyQjMk97Eycr6zX+MKJ1L/tAIw/6B2hW85OU5vZg6l4RsgxH6hkK1UOhWmaZuLWoum1DJS44wR5dg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@standardnotes/models" "^1.2.2"
|
"@standardnotes/models" "^1.4.1"
|
||||||
"@standardnotes/responses" "^1.6.2"
|
"@standardnotes/responses" "^1.6.6"
|
||||||
"@standardnotes/services" "^1.8.2"
|
"@standardnotes/services" "^1.9.2"
|
||||||
|
|
||||||
"@standardnotes/features@^1.37.2":
|
"@standardnotes/features@^1.37.5":
|
||||||
version "1.37.2"
|
version "1.37.5"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/features/-/features-1.37.2.tgz#bedae2935a5659aa1fd30849e47ed167d45a7d3a"
|
resolved "https://registry.yarnpkg.com/@standardnotes/features/-/features-1.37.5.tgz#f2c90baf2fb53177f25fccc840982dc1761833c0"
|
||||||
integrity sha512-kNUCRMuLPmjjxWvE/OjHAewGZzv5/NAsqw/cHj+O4sbhRBWSv1dq+UzLzUxnj2kUsKObPjKqYeqo6WrXOnl3BQ==
|
integrity sha512-mBj4Cdi2cZvQ4z8jNubWTzO310qT1wbubcubsewfim9PUUd5pRq4psJKOBVjlbV8y87LiA3im5lL88lluXSv3g==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@standardnotes/auth" "^3.18.5"
|
"@standardnotes/auth" "^3.18.7"
|
||||||
"@standardnotes/common" "^1.19.3"
|
"@standardnotes/common" "^1.19.4"
|
||||||
|
|
||||||
"@standardnotes/filepicker@1.10.5":
|
"@standardnotes/filepicker@1.11.0":
|
||||||
version "1.10.5"
|
version "1.11.0"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/filepicker/-/filepicker-1.10.5.tgz#28c7cc68cb3337940a52e19b1dea76af343f2852"
|
resolved "https://registry.yarnpkg.com/@standardnotes/filepicker/-/filepicker-1.11.0.tgz#2a49d78e409529ccb96f17f0575851952e7247d1"
|
||||||
integrity sha512-Tl9mCW/qAzupOtQAYlbPHgZU16ljtRGV0awOHT7+uulPYoyKJJ4cqlKRzFaaONTAN6GpICEeSqidcB/lb5e5uQ==
|
integrity sha512-aa9g9k/BxjWuQSf+Tj+l4nKJUniagzz/YRHiVngwWIKM7wnRrvbg4z5yVT71rBb259MMU1OAaWx5EsSDSEsVVg==
|
||||||
|
|
||||||
"@standardnotes/models@^1.2.2":
|
"@standardnotes/models@^1.4.1":
|
||||||
version "1.2.2"
|
version "1.4.1"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/models/-/models-1.2.2.tgz#d67086319ad12ec5f6d267f77d353a0bd3740983"
|
resolved "https://registry.yarnpkg.com/@standardnotes/models/-/models-1.4.1.tgz#78e3b52455c3e42fdabf5b10aa8170e5450c52aa"
|
||||||
integrity sha512-o762wf4pOobk4GcHJR0+lFVJeP/TifiP4OCM9ko23wkE6d6tWpM5SyvOUyZga2NNp5He8Pkm06Oo1ObxBYaWIw==
|
integrity sha512-xB/eFcQoAXSmNNe1M0FB+7oqEV7G4I+T/3vjSVpOIzisgi7pLjbAyPTQmL7RY/3ybP8JBsjWE9Zk/yb0zAKAiw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@standardnotes/features" "^1.37.2"
|
"@standardnotes/features" "^1.37.5"
|
||||||
"@standardnotes/responses" "^1.6.2"
|
"@standardnotes/responses" "^1.6.6"
|
||||||
"@standardnotes/utils" "^1.4.8"
|
"@standardnotes/utils" "^1.6.0"
|
||||||
|
|
||||||
"@standardnotes/responses@^1.6.2":
|
"@standardnotes/responses@^1.6.6":
|
||||||
version "1.6.2"
|
version "1.6.6"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/responses/-/responses-1.6.2.tgz#665702c01bd25f10763ef0230fe9df775996c424"
|
resolved "https://registry.yarnpkg.com/@standardnotes/responses/-/responses-1.6.6.tgz#fe909bf99f9d443290ecf1af4ad6ffc983dd7e76"
|
||||||
integrity sha512-w/SNFITk7aipmN1nahH456xe/xKGPp+/dqpKF+LDoSl6C+UZ17NOtSVP/Q4nVIvGy57QOD8OvN7inCpSrLCEyw==
|
integrity sha512-nSV/nbIrlcM5Flo6OpDBkAvtz6ApagH3n6wYLA26Q7vzWLgjPsTQxocC8WWN7/FnWIgRmotCzCCMULHR16E/UA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@standardnotes/auth" "^3.18.5"
|
"@standardnotes/auth" "^3.18.7"
|
||||||
"@standardnotes/common" "^1.19.3"
|
"@standardnotes/common" "^1.19.4"
|
||||||
"@standardnotes/features" "^1.37.2"
|
"@standardnotes/features" "^1.37.5"
|
||||||
|
|
||||||
"@standardnotes/services@^1.8.2":
|
"@standardnotes/services@^1.9.2":
|
||||||
version "1.8.2"
|
version "1.9.2"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/services/-/services-1.8.2.tgz#3a95af1573636dc288dc4efd52de8568c2cd68fe"
|
resolved "https://registry.yarnpkg.com/@standardnotes/services/-/services-1.9.2.tgz#50a22b436ef220a7c914c2d9de7fa5b29d14e5f0"
|
||||||
integrity sha512-+iLVngtw0avyoUM4Sn0Kpmh99KTWYbhX/HiJLbnFoW5LJrqA2FarZRPUqYpiKuEcfcdZ4brmm5ipts45n1DXXw==
|
integrity sha512-1GvMH2W8mR+66fd92D7qW7o24lYQAiedrT92PINy6pbFYZRXBtcw+jJp0UhsBTle66lZnk/sV3gmRv8SUcTOAw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@standardnotes/common" "^1.19.3"
|
"@standardnotes/common" "^1.19.4"
|
||||||
"@standardnotes/models" "^1.2.2"
|
"@standardnotes/models" "^1.4.1"
|
||||||
"@standardnotes/responses" "^1.6.2"
|
"@standardnotes/responses" "^1.6.6"
|
||||||
"@standardnotes/utils" "^1.4.8"
|
"@standardnotes/utils" "^1.6.0"
|
||||||
|
|
||||||
"@standardnotes/settings@^1.13.3":
|
"@standardnotes/settings@^1.13.4":
|
||||||
version "1.13.3"
|
version "1.13.4"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/settings/-/settings-1.13.3.tgz#6f46927f5cb85e3070ccd2bc6a91deadf1b9ef9f"
|
resolved "https://registry.yarnpkg.com/@standardnotes/settings/-/settings-1.13.4.tgz#16826c3236ae614ef7c0e17e5b536e56dd11e303"
|
||||||
integrity sha512-hLb5ba8qFgKdhSYqJLX+7L5K2ZPwoqGlMrDDQTph+rQe08FnDoupCzz+uFOO1EJITI3XzrbvSW79GQYV0/5AkA==
|
integrity sha512-rF6jpSdWF/6nfOZIX5g6PUc8bM9gh81sJj7ISGGjkbfIl2OUWOptsP5aRXHpJWe62GIhNaFdfmXi549kCyFMow==
|
||||||
|
|
||||||
"@standardnotes/sncrypto-common@^1.7.5":
|
"@standardnotes/sncrypto-common@^1.7.6":
|
||||||
version "1.7.5"
|
version "1.7.6"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/sncrypto-common/-/sncrypto-common-1.7.5.tgz#2c4ca3923970f5360f8ae01d40e2eaa957b75c12"
|
resolved "https://registry.yarnpkg.com/@standardnotes/sncrypto-common/-/sncrypto-common-1.7.6.tgz#8ff57f4eb8803d5631983d2f17f3c9ec2ec22011"
|
||||||
integrity sha512-VfGNDAlju4h7Ai7Z7shds41Lvl7JQruYc4pemkAzcmYgrXLHy/wHMUA0kanGTW7fVr3AYmbYCqO6lycldAmrwQ==
|
integrity sha512-jzS4dIIsIVCEw4e6AdoOm0L71NHbc/RcYktiFbVDrr2teQn8z7777PdzHVXUEX5vcmtaZ0VADnev39wm0K5Rvw==
|
||||||
|
|
||||||
"@standardnotes/sncrypto-web@1.8.2":
|
"@standardnotes/sncrypto-web@1.8.3":
|
||||||
version "1.8.2"
|
version "1.8.3"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/sncrypto-web/-/sncrypto-web-1.8.2.tgz#cf60a2ad85240e3ef56ccd5d1b45c29d16300966"
|
resolved "https://registry.yarnpkg.com/@standardnotes/sncrypto-web/-/sncrypto-web-1.8.3.tgz#788ddf484d4170d6ab69859067f4404085dda380"
|
||||||
integrity sha512-C/2EkZrYBKTgnW4uluhJ3+GOnbbOL6ixg/c9pa2LZ9zT1vBRaS3vFIHC5hIMwrOsPE1QmIaJyiGtdzMA7A3VMw==
|
integrity sha512-PoFOwqxkEnKp0Rw0qJJzt/Bk0+DPKXJIQl2jBjmqa3quqllVkGdL/5ot8JKXP01kf8RZqdg1hqBxmjIiJOJcbw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@standardnotes/sncrypto-common" "^1.7.5"
|
"@standardnotes/sncrypto-common" "^1.7.6"
|
||||||
buffer "^6.0.3"
|
buffer "^6.0.3"
|
||||||
libsodium-wrappers "^0.7.9"
|
libsodium-wrappers "^0.7.9"
|
||||||
|
|
||||||
"@standardnotes/snjs@2.94.3":
|
"@standardnotes/snjs@2.96.2":
|
||||||
version "2.94.3"
|
version "2.96.2"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/snjs/-/snjs-2.94.3.tgz#93918769025f4883f80555df61c88a838de1c4c3"
|
resolved "https://registry.yarnpkg.com/@standardnotes/snjs/-/snjs-2.96.2.tgz#322fb5f648215d8600156a5aaf1fb4d91513fd41"
|
||||||
integrity sha512-wfJg8n/p1QisPlxWSyW9dYqN79/Zr16lugryHG0Tc1vXRyLcDNbaYxvo5XR3gGjsml8zARn5NdXJEkBBdPN2xA==
|
integrity sha512-liFo7nmCHZc7+6ZIAQcPcMWlv++eRt1IPYC6QTj6hT3TYe8G6BneA/ZNqN6/4x5mPsfmCIPThprxPGEvDyFnMg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@standardnotes/auth" "^3.18.5"
|
"@standardnotes/auth" "^3.18.7"
|
||||||
"@standardnotes/common" "^1.19.3"
|
"@standardnotes/common" "^1.19.4"
|
||||||
"@standardnotes/domain-events" "^2.26.9"
|
"@standardnotes/domain-events" "^2.27.6"
|
||||||
"@standardnotes/encryption" "^1.2.2"
|
"@standardnotes/encryption" "^1.4.1"
|
||||||
"@standardnotes/features" "^1.37.2"
|
"@standardnotes/features" "^1.37.5"
|
||||||
"@standardnotes/models" "^1.2.2"
|
"@standardnotes/models" "^1.4.1"
|
||||||
"@standardnotes/responses" "^1.6.2"
|
"@standardnotes/responses" "^1.6.6"
|
||||||
"@standardnotes/services" "^1.8.2"
|
"@standardnotes/services" "^1.9.2"
|
||||||
"@standardnotes/settings" "^1.13.3"
|
"@standardnotes/settings" "^1.13.4"
|
||||||
"@standardnotes/sncrypto-common" "^1.7.5"
|
"@standardnotes/sncrypto-common" "^1.7.6"
|
||||||
"@standardnotes/utils" "^1.4.8"
|
"@standardnotes/utils" "^1.6.0"
|
||||||
|
|
||||||
"@standardnotes/stylekit@5.22.1":
|
"@standardnotes/stylekit@5.23.0":
|
||||||
version "5.22.1"
|
version "5.23.0"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/stylekit/-/stylekit-5.22.1.tgz#1e92b1e6428b0891047f9b7d91799203f12156aa"
|
resolved "https://registry.yarnpkg.com/@standardnotes/stylekit/-/stylekit-5.23.0.tgz#13da411b3b8903dd1f5cfda67ae86383b1a6a519"
|
||||||
integrity sha512-JDdO7o7Ik+tfdKoi/VsF7bR+ZTMO/f6dVSyxjbtIb/NCS7KM4apFMBVoZ+ARBXhbhpoBnwyVJHpZBkiB1p2Cjw==
|
integrity sha512-mU0dO83jMfl+IOO8QXZjA/woieqpL27RfsR7P2VOwqFVS3T+tlwr06VQLix0pF24inkZ0JdfGdYRhu4M71mFPg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@nanostores/preact" "^0.1.3"
|
"@nanostores/preact" "^0.1.3"
|
||||||
"@reach/listbox" "^0.16.2"
|
"@reach/listbox" "^0.16.2"
|
||||||
@@ -2521,12 +2521,12 @@
|
|||||||
nanostores "^0.5.10"
|
nanostores "^0.5.10"
|
||||||
prop-types "^15.8.1"
|
prop-types "^15.8.1"
|
||||||
|
|
||||||
"@standardnotes/utils@^1.4.8":
|
"@standardnotes/utils@^1.6.0":
|
||||||
version "1.4.8"
|
version "1.6.0"
|
||||||
resolved "https://registry.yarnpkg.com/@standardnotes/utils/-/utils-1.4.8.tgz#4c984220903bf64733961c50633de6adf62cb78f"
|
resolved "https://registry.yarnpkg.com/@standardnotes/utils/-/utils-1.6.0.tgz#b511040d9abfc3b9efb209f0f197002f56409624"
|
||||||
integrity sha512-sGROUIUdDncSyAb4w1O+qadJOTp18+9XO8MX08jOEPEMTfmVNFV1xYu6ZWe/0Ae4wCghBr8XeCCfVeE1XNyjTg==
|
integrity sha512-HtD7IxLEq0QnBb0dddTTXDvaO91KDQghnhR+qSdJtUN0IpP9Ilk035ZfOhjKPyTdJzUFgaA8t2XOlsl/7dFn8A==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@standardnotes/common" "^1.19.3"
|
"@standardnotes/common" "^1.19.4"
|
||||||
dompurify "^2.3.6"
|
dompurify "^2.3.6"
|
||||||
lodash "^4.17.21"
|
lodash "^4.17.21"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user