@brftech/filex-core 0.39.1 → 0.40.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/dist/filex-core.js +7167 -6884
- package/dist/filex-core.js.map +1 -1
- package/dist/filex-core.umd.cjs +49 -49
- package/dist/filex-core.umd.cjs.map +1 -1
- package/dist/index.d.ts +51 -11
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/FileExplorer.vue +30 -0
- package/src/components/ContextMenu.vue +18 -0
- package/src/components/QuickLook.vue +8 -4
- package/src/components/ShortcutSettings.vue +37 -0
- package/src/components/Toolbar.vue +19 -11
- package/src/composables/useKeyboardShortcuts.ts +122 -0
- package/src/index.ts +5 -0
- package/src/lib/themes.ts +96 -2
- package/src/locales/en.ts +19 -0
- package/src/locales/tr.ts +19 -0
- package/src/styles/base.css +26 -0
- package/src/styles/variables.css +6 -0
package/src/locales/tr.ts
CHANGED
|
@@ -306,6 +306,7 @@ export const tr: Record<string, string> = {
|
|
|
306
306
|
'theme.name.contrast': 'Yüksek Kontrast',
|
|
307
307
|
'theme.name.gray': 'Yumuşak Gri',
|
|
308
308
|
'theme.name.terminal': 'Terminal Yeşili',
|
|
309
|
+
'theme.name.drive': 'Drive',
|
|
309
310
|
/* === wiring:c2 — özelleştirilebilir kısayollar + hızlı bakış === */
|
|
310
311
|
'shortcuts.quicklook': 'Hızlı bakış',
|
|
311
312
|
'shortcuts.customize': 'Özelleştir',
|
|
@@ -395,6 +396,24 @@ export const tr: Record<string, string> = {
|
|
|
395
396
|
'shortcuts.tab_close': 'Sekmeyi kapat',
|
|
396
397
|
'shortcuts.tab_next': 'Sonraki sekme',
|
|
397
398
|
'shortcuts.tab_prev': 'Önceki sekme',
|
|
399
|
+
/* tus:t1 — menü fiilleri */
|
|
400
|
+
'shortcuts.new_folder': 'Yeni klasör',
|
|
401
|
+
'shortcuts.upload': 'Dosya yükle',
|
|
402
|
+
'shortcuts.refresh': 'Listeyi yenile',
|
|
403
|
+
'shortcuts.download': 'İndir',
|
|
404
|
+
'shortcuts.preview': 'Önizle',
|
|
405
|
+
'shortcuts.share': 'Paylaş / izinler',
|
|
406
|
+
'shortcuts.tags': 'Etiketler',
|
|
407
|
+
'shortcuts.convert': 'Dönüştür',
|
|
408
|
+
'shortcuts.open_tab': 'Yeni sekmede aç',
|
|
409
|
+
'shortcuts.copy_path': 'Yolu kopyala',
|
|
410
|
+
'shortcuts.copy_id': 'Kimliği kopyala',
|
|
411
|
+
'shortcuts.restore': 'Çöp kutusundan geri al',
|
|
412
|
+
'shortcuts.settings.reserved':
|
|
413
|
+
'tarayıcı tarafından sayfaya ulaşmadan yakalanıyor, burada hiçbir şey yapmaz. Başka bir tuş seçin.',
|
|
414
|
+
'shortcuts.settings.reserved_badge': 'Yalnız masaüstü uygulamasında',
|
|
415
|
+
'shortcuts.settings.reserved_title':
|
|
416
|
+
'Bu kombinasyonu tarayıcının kendisi işliyor. Masaüstü uygulamasında ve kurulu PWA’da çalışır, tarayıcı sekmesinde çalışmaz.',
|
|
398
417
|
'cmd.tab_new': 'Yeni sekme aç',
|
|
399
418
|
'cmd.split_toggle': 'Görünümü böl / birleştir',
|
|
400
419
|
'split.pane': 'İkincil panel',
|
package/src/styles/base.css
CHANGED
|
@@ -866,6 +866,22 @@ filex-explorer {
|
|
|
866
866
|
width: 1.2em;
|
|
867
867
|
text-align: center;
|
|
868
868
|
}
|
|
869
|
+
/* tus:t1 — the key that runs this row, pushed to the trailing edge. Muted and
|
|
870
|
+
* smaller: it is a reminder, not a second label, and it must never win the
|
|
871
|
+
* row's width from the label (hence auto margin + no shrink on the label). */
|
|
872
|
+
.fe-ctx__label {
|
|
873
|
+
flex: 1 1 auto;
|
|
874
|
+
min-width: 0;
|
|
875
|
+
}
|
|
876
|
+
.fe-ctx__key {
|
|
877
|
+
flex: 0 0 auto;
|
|
878
|
+
margin-left: auto;
|
|
879
|
+
padding-left: 16px;
|
|
880
|
+
color: var(--fe-text-muted);
|
|
881
|
+
font-size: 11px;
|
|
882
|
+
font-family: var(--fe-font-mono);
|
|
883
|
+
white-space: nowrap;
|
|
884
|
+
}
|
|
869
885
|
.fe-ctx__sep {
|
|
870
886
|
height: 1px;
|
|
871
887
|
background: var(--fe-border);
|
|
@@ -2588,6 +2604,16 @@ filex-explorer {
|
|
|
2588
2604
|
padding: 3px 9px;
|
|
2589
2605
|
font-size: 12px;
|
|
2590
2606
|
}
|
|
2607
|
+
/* tus:t1 — "Desktop app only" on a combo the browser keeps for itself. */
|
|
2608
|
+
.fe-shortset__reserved {
|
|
2609
|
+
margin-left: 6px;
|
|
2610
|
+
font-size: 10.5px;
|
|
2611
|
+
color: var(--fe-text-muted);
|
|
2612
|
+
border: 1px dashed var(--fe-border);
|
|
2613
|
+
border-radius: var(--fe-radius-sm);
|
|
2614
|
+
padding: 1px 6px;
|
|
2615
|
+
white-space: nowrap;
|
|
2616
|
+
}
|
|
2591
2617
|
.fe-shortset__fixed {
|
|
2592
2618
|
font-size: 11px;
|
|
2593
2619
|
text-transform: uppercase;
|
package/src/styles/variables.css
CHANGED
|
@@ -62,6 +62,10 @@
|
|
|
62
62
|
--fe-border-strong: #3a4453;
|
|
63
63
|
--fe-text: #e5e9f0;
|
|
64
64
|
--fe-text-muted: #8b95a7;
|
|
65
|
+
/* Dark ink on the light-blue button. White measured 2.54:1 against it —
|
|
66
|
+
* the palette's own bar for text on a primary surface is 4.5, and every
|
|
67
|
+
* other themed palette clears it. #0f1419 measures 7.28. */
|
|
68
|
+
--fe-text-on-primary: #0f1419;
|
|
65
69
|
--fe-primary: #60a5fa;
|
|
66
70
|
--fe-primary-hover: #3b82f6;
|
|
67
71
|
--fe-danger: #f87171;
|
|
@@ -83,6 +87,8 @@
|
|
|
83
87
|
--fe-border-strong: #3a4453;
|
|
84
88
|
--fe-text: #e5e9f0;
|
|
85
89
|
--fe-text-muted: #8b95a7;
|
|
90
|
+
/* See the note on the class-based dark block above. */
|
|
91
|
+
--fe-text-on-primary: #0f1419;
|
|
86
92
|
--fe-primary: #60a5fa;
|
|
87
93
|
--fe-primary-hover: #3b82f6;
|
|
88
94
|
--fe-danger: #f87171;
|