@brftech/filex-core 0.30.1 → 0.32.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/README.md +37 -2
- package/dist/filex-core.js +10571 -8278
- package/dist/filex-core.js.map +1 -1
- package/dist/filex-core.umd.cjs +95 -87
- package/dist/filex-core.umd.cjs.map +1 -1
- package/dist/index.d.ts +548 -66
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/FileExplorer.vue +1104 -26
- package/src/components/Breadcrumb.vue +4 -2
- package/src/components/CommandPalette.vue +18 -2
- package/src/components/E2eRecoveryUnlockModal.vue +193 -0
- package/src/components/EncryptedFolderModal.vue +10 -0
- package/src/components/FilterBar.vue +244 -0
- package/src/components/GalleryView.vue +48 -0
- package/src/components/GridView.vue +85 -3
- package/src/components/InspectorPanel.vue +231 -8
- package/src/components/ListView.vue +11 -1
- package/src/components/RecoveryKeyModal.vue +133 -0
- package/src/components/SecondaryPane.vue +15 -1
- package/src/components/SideNav.vue +329 -6
- package/src/components/StarButton.vue +27 -15
- package/src/components/Toolbar.vue +235 -49
- package/src/components/ViewSwitcher.vue +81 -0
- package/src/composables/useFileApi.ts +83 -0
- package/src/composables/useKeyboardShortcuts.ts +7 -0
- package/src/index.ts +33 -1
- package/src/lib/e2ecrypto.ts +716 -70
- package/src/lib/fileFilters.ts +143 -0
- package/src/lib/listing.ts +103 -1
- package/src/lib/star.ts +42 -0
- package/src/lib/tags.ts +105 -0
- package/src/locales/en.ts +154 -2
- package/src/locales/tr.ts +154 -2
- package/src/modals/PermissionsModal.vue +18 -2
- package/src/styles/base.css +743 -0
- package/src/types/ExplorerConfig.ts +53 -1
- package/src/types/FileNode.ts +23 -0
package/src/index.ts
CHANGED
|
@@ -155,21 +155,53 @@ export {
|
|
|
155
155
|
E2E_MARKER_NAME,
|
|
156
156
|
E2E_MAGIC,
|
|
157
157
|
E2E_VERSION,
|
|
158
|
+
E2E_MARKER_VERSION,
|
|
158
159
|
E2E_DEFAULT_ITERATIONS,
|
|
159
160
|
E2E_MAX_FILE_BYTES,
|
|
160
161
|
E2E_MIN_PASSWORD_LEN,
|
|
162
|
+
E2E_RECOVERY_KEY_BYTES,
|
|
163
|
+
E2E_ESCROW_ALG,
|
|
161
164
|
E2eDecryptError,
|
|
162
165
|
deriveKek,
|
|
163
166
|
createMarker,
|
|
167
|
+
createEncryptedFolder,
|
|
168
|
+
upgradeMarkerV1,
|
|
164
169
|
parseMarker,
|
|
165
170
|
verifyPassword,
|
|
171
|
+
unlockWithPassword,
|
|
172
|
+
unlockWithRecoveryKey,
|
|
173
|
+
unlockWithEscrowKey,
|
|
174
|
+
markerHasRecovery,
|
|
175
|
+
markerHasEscrow,
|
|
176
|
+
escrowAvailability,
|
|
177
|
+
escrowOfferState,
|
|
178
|
+
addEscrowSlot,
|
|
179
|
+
declineEscrowSlot,
|
|
180
|
+
generateRecoveryKey,
|
|
181
|
+
formatRecoveryKey,
|
|
182
|
+
parseRecoveryKey,
|
|
183
|
+
importEscrowPublicKey,
|
|
184
|
+
importEscrowPrivateKey,
|
|
185
|
+
escrowKeyId,
|
|
166
186
|
hasMagic,
|
|
167
187
|
encryptFile,
|
|
168
188
|
decryptFile,
|
|
169
189
|
createKeyRing,
|
|
170
190
|
} from './lib/e2ecrypto';
|
|
171
|
-
export type {
|
|
191
|
+
export type {
|
|
192
|
+
E2eMarker,
|
|
193
|
+
E2eKeyRing,
|
|
194
|
+
E2eFmkMode,
|
|
195
|
+
E2eRecoverySlot,
|
|
196
|
+
E2eEscrowSlot,
|
|
197
|
+
EscrowAvailability,
|
|
198
|
+
EscrowOfferState,
|
|
199
|
+
CreateFolderOptions,
|
|
200
|
+
CreatedFolder,
|
|
201
|
+
} from './lib/e2ecrypto';
|
|
172
202
|
export { default as EncryptedFolderModal } from './components/EncryptedFolderModal.vue';
|
|
203
|
+
export { default as RecoveryKeyModal } from './components/RecoveryKeyModal.vue';
|
|
204
|
+
export { default as E2eRecoveryUnlockModal } from './components/E2eRecoveryUnlockModal.vue';
|
|
173
205
|
/* /wiring:e2 */
|
|
174
206
|
|
|
175
207
|
/* ── connections ────────────────────────────────────────────────────
|