@theia/core 1.73.0-next.1 → 1.73.0-next.14
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/lib/browser/catalog.json +141 -64
- package/lib/browser/quick-input/quick-view-service.d.ts +1 -0
- package/lib/browser/quick-input/quick-view-service.d.ts.map +1 -1
- package/lib/browser/quick-input/quick-view-service.js +6 -1
- package/lib/browser/quick-input/quick-view-service.js.map +1 -1
- package/lib/browser/quick-input/quick-view-service.spec.d.ts +2 -0
- package/lib/browser/quick-input/quick-view-service.spec.d.ts.map +1 -0
- package/lib/browser/quick-input/quick-view-service.spec.js +41 -0
- package/lib/browser/quick-input/quick-view-service.spec.js.map +1 -0
- package/package.json +4 -4
- package/src/browser/quick-input/quick-view-service.spec.ts +50 -0
- package/src/browser/quick-input/quick-view-service.ts +5 -0
package/lib/browser/catalog.json
CHANGED
|
@@ -2713,23 +2713,27 @@
|
|
|
2713
2713
|
"**/src/main/resources/apis/*/*.yaml",
|
|
2714
2714
|
"**/src/main/resources/apis/*/*.yml"
|
|
2715
2715
|
],
|
|
2716
|
-
"url": "https://www.schemastore.org/enonic-xp-api-8.0.0
|
|
2716
|
+
"url": "https://www.schemastore.org/enonic-xp-api-8.0.0.json",
|
|
2717
2717
|
"versions": {
|
|
2718
|
-
"latest": "https://www.schemastore.org/enonic-xp-api-8.0.0
|
|
2719
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-api-8.0.0-B4.json"
|
|
2718
|
+
"latest": "https://www.schemastore.org/enonic-xp-api-8.0.0.json",
|
|
2719
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-api-8.0.0-B4.json",
|
|
2720
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-api-8.0.0-B5.json",
|
|
2721
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-api-8.0.0.json"
|
|
2720
2722
|
}
|
|
2721
2723
|
},
|
|
2722
2724
|
{
|
|
2723
2725
|
"name": "Enonic XP Admin Extension descriptor",
|
|
2724
2726
|
"description": "YAML descriptor for Enonic XP Admin Extensions",
|
|
2725
2727
|
"fileMatch": [
|
|
2726
|
-
"**/src/main/resources/
|
|
2727
|
-
"**/src/main/resources/
|
|
2728
|
+
"**/src/main/resources/admin/extensions/*/*.yaml",
|
|
2729
|
+
"**/src/main/resources/admin/extensions/*/*.yml"
|
|
2728
2730
|
],
|
|
2729
|
-
"url": "https://www.schemastore.org/enonic-xp-admin-extension-8.0.0
|
|
2731
|
+
"url": "https://www.schemastore.org/enonic-xp-admin-extension-8.0.0.json",
|
|
2730
2732
|
"versions": {
|
|
2731
|
-
"latest": "https://www.schemastore.org/enonic-xp-admin-extension-8.0.0
|
|
2732
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-admin-extension-8.0.0-B4.json"
|
|
2733
|
+
"latest": "https://www.schemastore.org/enonic-xp-admin-extension-8.0.0.json",
|
|
2734
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-admin-extension-8.0.0-B4.json",
|
|
2735
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-admin-extension-8.0.0-B5.json",
|
|
2736
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-admin-extension-8.0.0.json"
|
|
2733
2737
|
}
|
|
2734
2738
|
},
|
|
2735
2739
|
{
|
|
@@ -2739,23 +2743,27 @@
|
|
|
2739
2743
|
"**/src/main/resources/admin/tools/*/*.yaml",
|
|
2740
2744
|
"**/src/main/resources/admin/tools/*/*.yml"
|
|
2741
2745
|
],
|
|
2742
|
-
"url": "https://www.schemastore.org/enonic-xp-admin-tool-8.0.0
|
|
2746
|
+
"url": "https://www.schemastore.org/enonic-xp-admin-tool-8.0.0.json",
|
|
2743
2747
|
"versions": {
|
|
2744
|
-
"latest": "https://www.schemastore.org/enonic-xp-admin-tool-8.0.0
|
|
2745
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-admin-tool-8.0.0-B4.json"
|
|
2748
|
+
"latest": "https://www.schemastore.org/enonic-xp-admin-tool-8.0.0.json",
|
|
2749
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-admin-tool-8.0.0-B4.json",
|
|
2750
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-admin-tool-8.0.0-B5.json",
|
|
2751
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-admin-tool-8.0.0.json"
|
|
2746
2752
|
}
|
|
2747
2753
|
},
|
|
2748
2754
|
{
|
|
2749
2755
|
"name": "Enonic XP Application descriptor",
|
|
2750
2756
|
"description": "YAML descriptor for Enonic XP Applications",
|
|
2751
2757
|
"fileMatch": [
|
|
2752
|
-
"**/src/main/resources/
|
|
2753
|
-
"**/src/main/resources/
|
|
2758
|
+
"**/src/main/resources/enonic.yaml",
|
|
2759
|
+
"**/src/main/resources/enonic.yml"
|
|
2754
2760
|
],
|
|
2755
|
-
"url": "https://www.schemastore.org/enonic-xp-application-8.0.0
|
|
2761
|
+
"url": "https://www.schemastore.org/enonic-xp-application-8.0.0.json",
|
|
2756
2762
|
"versions": {
|
|
2757
|
-
"latest": "https://www.schemastore.org/enonic-xp-application-8.0.0
|
|
2758
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-application-8.0.0-B4.json"
|
|
2763
|
+
"latest": "https://www.schemastore.org/enonic-xp-application-8.0.0.json",
|
|
2764
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-application-8.0.0-B4.json",
|
|
2765
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-application-8.0.0-B5.json",
|
|
2766
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-application-8.0.0.json"
|
|
2759
2767
|
}
|
|
2760
2768
|
},
|
|
2761
2769
|
{
|
|
@@ -2765,10 +2773,12 @@
|
|
|
2765
2773
|
"**/src/main/resources/cms/cms.yaml",
|
|
2766
2774
|
"**/src/main/resources/cms/cms.yml"
|
|
2767
2775
|
],
|
|
2768
|
-
"url": "https://www.schemastore.org/enonic-xp-cms-8.0.0
|
|
2776
|
+
"url": "https://www.schemastore.org/enonic-xp-cms-8.0.0.json",
|
|
2769
2777
|
"versions": {
|
|
2770
|
-
"latest": "https://www.schemastore.org/enonic-xp-cms-8.0.0
|
|
2771
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-cms-8.0.0-B4.json"
|
|
2778
|
+
"latest": "https://www.schemastore.org/enonic-xp-cms-8.0.0.json",
|
|
2779
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-cms-8.0.0-B4.json",
|
|
2780
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-cms-8.0.0-B5.json",
|
|
2781
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-cms-8.0.0.json"
|
|
2772
2782
|
}
|
|
2773
2783
|
},
|
|
2774
2784
|
{
|
|
@@ -2778,10 +2788,12 @@
|
|
|
2778
2788
|
"**/src/main/resources/cms/content-types/*/*.yaml",
|
|
2779
2789
|
"**/src/main/resources/cms/content-types/*/*.yml"
|
|
2780
2790
|
],
|
|
2781
|
-
"url": "https://www.schemastore.org/enonic-xp-content-type-8.0.0
|
|
2791
|
+
"url": "https://www.schemastore.org/enonic-xp-content-type-8.0.0.json",
|
|
2782
2792
|
"versions": {
|
|
2783
|
-
"latest": "https://www.schemastore.org/enonic-xp-content-type-8.0.0
|
|
2784
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-content-type-8.0.0-B4.json"
|
|
2793
|
+
"latest": "https://www.schemastore.org/enonic-xp-content-type-8.0.0.json",
|
|
2794
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-content-type-8.0.0-B4.json",
|
|
2795
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-content-type-8.0.0-B5.json",
|
|
2796
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-content-type-8.0.0.json"
|
|
2785
2797
|
}
|
|
2786
2798
|
},
|
|
2787
2799
|
{
|
|
@@ -2791,10 +2803,12 @@
|
|
|
2791
2803
|
"**/src/main/resources/cms/form-fragments/*/*.yaml",
|
|
2792
2804
|
"**/src/main/resources/cms/form-fragments/*/*.yml"
|
|
2793
2805
|
],
|
|
2794
|
-
"url": "https://www.schemastore.org/enonic-xp-form-fragment-8.0.0
|
|
2806
|
+
"url": "https://www.schemastore.org/enonic-xp-form-fragment-8.0.0.json",
|
|
2795
2807
|
"versions": {
|
|
2796
|
-
"latest": "https://www.schemastore.org/enonic-xp-form-fragment-8.0.0
|
|
2797
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-form-fragment-8.0.0-B4.json"
|
|
2808
|
+
"latest": "https://www.schemastore.org/enonic-xp-form-fragment-8.0.0.json",
|
|
2809
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-form-fragment-8.0.0-B4.json",
|
|
2810
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-form-fragment-8.0.0-B5.json",
|
|
2811
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-form-fragment-8.0.0.json"
|
|
2798
2812
|
}
|
|
2799
2813
|
},
|
|
2800
2814
|
{
|
|
@@ -2804,10 +2818,12 @@
|
|
|
2804
2818
|
"**/src/main/resources/idprovider/idprovider.yaml",
|
|
2805
2819
|
"**/src/main/resources/idprovider/idprovider.yml"
|
|
2806
2820
|
],
|
|
2807
|
-
"url": "https://www.schemastore.org/enonic-xp-idprovider-8.0.0
|
|
2821
|
+
"url": "https://www.schemastore.org/enonic-xp-idprovider-8.0.0.json",
|
|
2808
2822
|
"versions": {
|
|
2809
|
-
"latest": "https://www.schemastore.org/enonic-xp-idprovider-8.0.0
|
|
2810
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-idprovider-8.0.0-B4.json"
|
|
2823
|
+
"latest": "https://www.schemastore.org/enonic-xp-idprovider-8.0.0.json",
|
|
2824
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-idprovider-8.0.0-B4.json",
|
|
2825
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-idprovider-8.0.0-B5.json",
|
|
2826
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-idprovider-8.0.0.json"
|
|
2811
2827
|
}
|
|
2812
2828
|
},
|
|
2813
2829
|
{
|
|
@@ -2817,10 +2833,12 @@
|
|
|
2817
2833
|
"**/src/main/resources/cms/layouts/*/*.yaml",
|
|
2818
2834
|
"**/src/main/resources/cms/layouts/*/*.yml"
|
|
2819
2835
|
],
|
|
2820
|
-
"url": "https://www.schemastore.org/enonic-xp-layout-8.0.0
|
|
2836
|
+
"url": "https://www.schemastore.org/enonic-xp-layout-8.0.0.json",
|
|
2821
2837
|
"versions": {
|
|
2822
|
-
"latest": "https://www.schemastore.org/enonic-xp-layout-8.0.0
|
|
2823
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-layout-8.0.0-B4.json"
|
|
2838
|
+
"latest": "https://www.schemastore.org/enonic-xp-layout-8.0.0.json",
|
|
2839
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-layout-8.0.0-B4.json",
|
|
2840
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-layout-8.0.0-B5.json",
|
|
2841
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-layout-8.0.0.json"
|
|
2824
2842
|
}
|
|
2825
2843
|
},
|
|
2826
2844
|
{
|
|
@@ -2830,10 +2848,12 @@
|
|
|
2830
2848
|
"**/src/main/resources/cms/macros/*/*.yaml",
|
|
2831
2849
|
"**/src/main/resources/cms/macros/*/*.yml"
|
|
2832
2850
|
],
|
|
2833
|
-
"url": "https://www.schemastore.org/enonic-xp-macro-8.0.0
|
|
2851
|
+
"url": "https://www.schemastore.org/enonic-xp-macro-8.0.0.json",
|
|
2834
2852
|
"versions": {
|
|
2835
|
-
"latest": "https://www.schemastore.org/enonic-xp-macro-8.0.0
|
|
2836
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-macro-8.0.0-B4.json"
|
|
2853
|
+
"latest": "https://www.schemastore.org/enonic-xp-macro-8.0.0.json",
|
|
2854
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-macro-8.0.0-B4.json",
|
|
2855
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-macro-8.0.0-B5.json",
|
|
2856
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-macro-8.0.0.json"
|
|
2837
2857
|
}
|
|
2838
2858
|
},
|
|
2839
2859
|
{
|
|
@@ -2843,10 +2863,12 @@
|
|
|
2843
2863
|
"**/src/main/resources/cms/mixins/*/*.yaml",
|
|
2844
2864
|
"**/src/main/resources/cms/mixins/*/*.yml"
|
|
2845
2865
|
],
|
|
2846
|
-
"url": "https://www.schemastore.org/enonic-xp-mixin-8.0.0
|
|
2866
|
+
"url": "https://www.schemastore.org/enonic-xp-mixin-8.0.0.json",
|
|
2847
2867
|
"versions": {
|
|
2848
|
-
"latest": "https://www.schemastore.org/enonic-xp-mixin-8.0.0
|
|
2849
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-mixin-8.0.0-B4.json"
|
|
2868
|
+
"latest": "https://www.schemastore.org/enonic-xp-mixin-8.0.0.json",
|
|
2869
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-mixin-8.0.0-B4.json",
|
|
2870
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-mixin-8.0.0-B5.json",
|
|
2871
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-mixin-8.0.0.json"
|
|
2850
2872
|
}
|
|
2851
2873
|
},
|
|
2852
2874
|
{
|
|
@@ -2856,10 +2878,12 @@
|
|
|
2856
2878
|
"**/src/main/resources/cms/pages/*/*.yaml",
|
|
2857
2879
|
"**/src/main/resources/cms/pages/*/*.yml"
|
|
2858
2880
|
],
|
|
2859
|
-
"url": "https://www.schemastore.org/enonic-xp-page-8.0.0
|
|
2881
|
+
"url": "https://www.schemastore.org/enonic-xp-page-8.0.0.json",
|
|
2860
2882
|
"versions": {
|
|
2861
|
-
"latest": "https://www.schemastore.org/enonic-xp-page-8.0.0
|
|
2862
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-page-8.0.0-B4.json"
|
|
2883
|
+
"latest": "https://www.schemastore.org/enonic-xp-page-8.0.0.json",
|
|
2884
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-page-8.0.0-B4.json",
|
|
2885
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-page-8.0.0-B5.json",
|
|
2886
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-page-8.0.0.json"
|
|
2863
2887
|
}
|
|
2864
2888
|
},
|
|
2865
2889
|
{
|
|
@@ -2869,10 +2893,12 @@
|
|
|
2869
2893
|
"**/src/main/resources/cms/parts/*/*.yaml",
|
|
2870
2894
|
"**/src/main/resources/cms/parts/*/*.yml"
|
|
2871
2895
|
],
|
|
2872
|
-
"url": "https://www.schemastore.org/enonic-xp-part-8.0.0
|
|
2896
|
+
"url": "https://www.schemastore.org/enonic-xp-part-8.0.0.json",
|
|
2873
2897
|
"versions": {
|
|
2874
|
-
"latest": "https://www.schemastore.org/enonic-xp-part-8.0.0
|
|
2875
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-part-8.0.0-B4.json"
|
|
2898
|
+
"latest": "https://www.schemastore.org/enonic-xp-part-8.0.0.json",
|
|
2899
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-part-8.0.0-B4.json",
|
|
2900
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-part-8.0.0-B5.json",
|
|
2901
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-part-8.0.0.json"
|
|
2876
2902
|
}
|
|
2877
2903
|
},
|
|
2878
2904
|
{
|
|
@@ -2882,10 +2908,12 @@
|
|
|
2882
2908
|
"**/src/main/resources/services/*/*.yaml",
|
|
2883
2909
|
"**/src/main/resources/services/*/*.yml"
|
|
2884
2910
|
],
|
|
2885
|
-
"url": "https://www.schemastore.org/enonic-xp-service-8.0.0
|
|
2911
|
+
"url": "https://www.schemastore.org/enonic-xp-service-8.0.0.json",
|
|
2886
2912
|
"versions": {
|
|
2887
|
-
"latest": "https://www.schemastore.org/enonic-xp-service-8.0.0
|
|
2888
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-service-8.0.0-B4.json"
|
|
2913
|
+
"latest": "https://www.schemastore.org/enonic-xp-service-8.0.0.json",
|
|
2914
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-service-8.0.0-B4.json",
|
|
2915
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-service-8.0.0-B5.json",
|
|
2916
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-service-8.0.0.json"
|
|
2889
2917
|
}
|
|
2890
2918
|
},
|
|
2891
2919
|
{
|
|
@@ -2895,10 +2923,12 @@
|
|
|
2895
2923
|
"**/src/main/resources/cms/site.yaml",
|
|
2896
2924
|
"**/src/main/resources/cms/site.yml"
|
|
2897
2925
|
],
|
|
2898
|
-
"url": "https://www.schemastore.org/enonic-xp-site-8.0.0
|
|
2926
|
+
"url": "https://www.schemastore.org/enonic-xp-site-8.0.0.json",
|
|
2899
2927
|
"versions": {
|
|
2900
|
-
"latest": "https://www.schemastore.org/enonic-xp-site-8.0.0
|
|
2901
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-site-8.0.0-B4.json"
|
|
2928
|
+
"latest": "https://www.schemastore.org/enonic-xp-site-8.0.0.json",
|
|
2929
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-site-8.0.0-B4.json",
|
|
2930
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-site-8.0.0-B5.json",
|
|
2931
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-site-8.0.0.json"
|
|
2902
2932
|
}
|
|
2903
2933
|
},
|
|
2904
2934
|
{
|
|
@@ -2908,10 +2938,12 @@
|
|
|
2908
2938
|
"**/src/main/resources/cms/style/style.yaml",
|
|
2909
2939
|
"**/src/main/resources/cms/style/style.yml"
|
|
2910
2940
|
],
|
|
2911
|
-
"url": "https://www.schemastore.org/enonic-xp-style-8.0.0
|
|
2941
|
+
"url": "https://www.schemastore.org/enonic-xp-style-8.0.0.json",
|
|
2912
2942
|
"versions": {
|
|
2913
|
-
"latest": "https://www.schemastore.org/enonic-xp-style-8.0.0
|
|
2914
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-style-8.0.0-B4.json"
|
|
2943
|
+
"latest": "https://www.schemastore.org/enonic-xp-style-8.0.0.json",
|
|
2944
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-style-8.0.0-B4.json",
|
|
2945
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-style-8.0.0-B5.json",
|
|
2946
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-style-8.0.0.json"
|
|
2915
2947
|
}
|
|
2916
2948
|
},
|
|
2917
2949
|
{
|
|
@@ -2921,10 +2953,12 @@
|
|
|
2921
2953
|
"**/src/main/resources/tasks/*/*.yaml",
|
|
2922
2954
|
"**/src/main/resources/tasks/*/*.yml"
|
|
2923
2955
|
],
|
|
2924
|
-
"url": "https://www.schemastore.org/enonic-xp-task-8.0.0
|
|
2956
|
+
"url": "https://www.schemastore.org/enonic-xp-task-8.0.0.json",
|
|
2925
2957
|
"versions": {
|
|
2926
|
-
"latest": "https://www.schemastore.org/enonic-xp-task-8.0.0
|
|
2927
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-task-8.0.0-B4.json"
|
|
2958
|
+
"latest": "https://www.schemastore.org/enonic-xp-task-8.0.0.json",
|
|
2959
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-task-8.0.0-B4.json",
|
|
2960
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-task-8.0.0-B5.json",
|
|
2961
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-task-8.0.0.json"
|
|
2928
2962
|
}
|
|
2929
2963
|
},
|
|
2930
2964
|
{
|
|
@@ -2934,10 +2968,12 @@
|
|
|
2934
2968
|
"**/src/main/resources/webapp/webapp.yaml",
|
|
2935
2969
|
"**/src/main/resources/webapp/webapp.yml"
|
|
2936
2970
|
],
|
|
2937
|
-
"url": "https://www.schemastore.org/enonic-xp-webapp-8.0.0
|
|
2971
|
+
"url": "https://www.schemastore.org/enonic-xp-webapp-8.0.0.json",
|
|
2938
2972
|
"versions": {
|
|
2939
|
-
"latest": "https://www.schemastore.org/enonic-xp-webapp-8.0.0
|
|
2940
|
-
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-webapp-8.0.0-B4.json"
|
|
2973
|
+
"latest": "https://www.schemastore.org/enonic-xp-webapp-8.0.0.json",
|
|
2974
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-webapp-8.0.0-B4.json",
|
|
2975
|
+
"8.0.0-B5": "https://www.schemastore.org/enonic-xp-webapp-8.0.0-B5.json",
|
|
2976
|
+
"8.0.0": "https://www.schemastore.org/enonic-xp-webapp-8.0.0.json"
|
|
2941
2977
|
}
|
|
2942
2978
|
},
|
|
2943
2979
|
{
|
|
@@ -3929,6 +3965,22 @@
|
|
|
3929
3965
|
"fileMatch": ["importmap.json", "import_map.json", "import-map.json"],
|
|
3930
3966
|
"url": "https://www.schemastore.org/importmap.json"
|
|
3931
3967
|
},
|
|
3968
|
+
{
|
|
3969
|
+
"name": "Infinispan Configuration",
|
|
3970
|
+
"description": "Infinispan distributed cache configuration",
|
|
3971
|
+
"fileMatch": ["infinispan.json", "infinispan.yaml", "infinispan.yml"],
|
|
3972
|
+
"url": "https://infinispan.org/schemas/infinispan-config.json"
|
|
3973
|
+
},
|
|
3974
|
+
{
|
|
3975
|
+
"name": "Infinispan Server Configuration",
|
|
3976
|
+
"description": "Infinispan Server configuration",
|
|
3977
|
+
"fileMatch": [
|
|
3978
|
+
"infinispan-server.json",
|
|
3979
|
+
"infinispan-server.yaml",
|
|
3980
|
+
"infinispan-server.yml"
|
|
3981
|
+
],
|
|
3982
|
+
"url": "https://infinispan.org/schemas/infinispan-server.json"
|
|
3983
|
+
},
|
|
3932
3984
|
{
|
|
3933
3985
|
"name": "Infrahub",
|
|
3934
3986
|
"description": "Repository config definition for Infrahub by OpsMill",
|
|
@@ -3947,6 +3999,17 @@
|
|
|
3947
3999
|
"fileMatch": ["main_structure.yml"],
|
|
3948
4000
|
"url": "https://raw.githubusercontent.com/instant-python/instant-python/main/schemas/main-structure-schema.json"
|
|
3949
4001
|
},
|
|
4002
|
+
{
|
|
4003
|
+
"name": "intlayer",
|
|
4004
|
+
"description": "Intlayer dictionary content declaration file",
|
|
4005
|
+
"fileMatch": [
|
|
4006
|
+
"*.content.json",
|
|
4007
|
+
"*.content.yaml",
|
|
4008
|
+
"*.content.yml",
|
|
4009
|
+
"*.content.toml"
|
|
4010
|
+
],
|
|
4011
|
+
"url": "https://www.schemastore.org/intlayer.json"
|
|
4012
|
+
},
|
|
3950
4013
|
{
|
|
3951
4014
|
"name": "ioBroker Configuration",
|
|
3952
4015
|
"description": "The configuration file of an ioBroker installation",
|
|
@@ -5133,8 +5196,9 @@
|
|
|
5133
5196
|
"otel*.yaml",
|
|
5134
5197
|
"otel*.yml"
|
|
5135
5198
|
],
|
|
5136
|
-
"url": "https://raw.githubusercontent.com/open-telemetry/opentelemetry-configuration/refs/tags/v1.
|
|
5199
|
+
"url": "https://raw.githubusercontent.com/open-telemetry/opentelemetry-configuration/refs/tags/v1.1.0/opentelemetry_configuration.json",
|
|
5137
5200
|
"versions": {
|
|
5201
|
+
"1.1.0": "https://raw.githubusercontent.com/open-telemetry/opentelemetry-configuration/refs/tags/v1.1.0/opentelemetry_configuration.json",
|
|
5138
5202
|
"1.0.0": "https://raw.githubusercontent.com/open-telemetry/opentelemetry-configuration/refs/tags/v1.0.0/opentelemetry_configuration.json"
|
|
5139
5203
|
}
|
|
5140
5204
|
},
|
|
@@ -5428,6 +5492,12 @@
|
|
|
5428
5492
|
"fileMatch": ["*.pactspec.json", "*.pactspec.yaml"],
|
|
5429
5493
|
"url": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/pactspec.json"
|
|
5430
5494
|
},
|
|
5495
|
+
{
|
|
5496
|
+
"name": "Panache",
|
|
5497
|
+
"description": "Configuration file for Panache, a language server, formatter, and linter for Markdown, Quarto, and R Markdown documents",
|
|
5498
|
+
"fileMatch": ["panache.toml", ".panache.toml"],
|
|
5499
|
+
"url": "https://panache.bz/panache.schema.json"
|
|
5500
|
+
},
|
|
5431
5501
|
{
|
|
5432
5502
|
"name": "Paper paper-plugin.yml",
|
|
5433
5503
|
"description": "Paper Plugins YAML",
|
|
@@ -7853,6 +7923,12 @@
|
|
|
7853
7923
|
"fileMatch": ["**/.yamllint", "**/.yamllint.yaml", "**/.yamllint.yml"],
|
|
7854
7924
|
"url": "https://www.schemastore.org/yamllint.json"
|
|
7855
7925
|
},
|
|
7926
|
+
{
|
|
7927
|
+
"name": "yap.json",
|
|
7928
|
+
"description": "YAP (Yet Another Packager) multi-package project file",
|
|
7929
|
+
"fileMatch": ["yap.json"],
|
|
7930
|
+
"url": "https://www.schemastore.org/yap.json"
|
|
7931
|
+
},
|
|
7856
7932
|
{
|
|
7857
7933
|
"name": "Yippee-Ki-JSON configuration YML",
|
|
7858
7934
|
"description": "Action and rule configuration descriptor for Yippee-Ki-JSON transformations",
|
|
@@ -8962,13 +9038,13 @@
|
|
|
8962
9038
|
"url": "https://alec016.github.io/Custom-Machinery/Json%20Schema/src/main/resources/schemas/custom_machinery_recipe.json"
|
|
8963
9039
|
},
|
|
8964
9040
|
{
|
|
8965
|
-
"name": "Nuitka
|
|
8966
|
-
"description": "Nuitka
|
|
9041
|
+
"name": "Nuitka Package Config",
|
|
9042
|
+
"description": "Nuitka Python compiler package configuration",
|
|
8967
9043
|
"fileMatch": [
|
|
8968
9044
|
"*.nuitka-package.config.yml",
|
|
8969
9045
|
"*.nuitka-package.config.yaml"
|
|
8970
9046
|
],
|
|
8971
|
-
"url": "https://raw.githubusercontent.com/Nuitka/Nuitka/develop/
|
|
9047
|
+
"url": "https://raw.githubusercontent.com/Nuitka/Nuitka/develop/nuitka/package_config/nuitka-package-config-schema.json"
|
|
8972
9048
|
},
|
|
8973
9049
|
{
|
|
8974
9050
|
"name": "bioimageio resource description",
|
|
@@ -9784,7 +9860,8 @@
|
|
|
9784
9860
|
"7.0-preview": "https://www.schemastore.org/aio-connector-metadata-7.0-preview.json",
|
|
9785
9861
|
"8.0-preview": "https://www.schemastore.org/aio-connector-metadata-8.0-preview.json",
|
|
9786
9862
|
"9.0-preview": "https://www.schemastore.org/aio-connector-metadata-9.0-preview.json",
|
|
9787
|
-
"10.0-preview": "https://www.schemastore.org/aio-connector-metadata-10.0-preview.json"
|
|
9863
|
+
"10.0-preview": "https://www.schemastore.org/aio-connector-metadata-10.0-preview.json",
|
|
9864
|
+
"11.0-preview": "https://www.schemastore.org/aio-connector-metadata-11.0-preview.json"
|
|
9788
9865
|
}
|
|
9789
9866
|
},
|
|
9790
9867
|
{
|
|
@@ -10157,7 +10234,7 @@
|
|
|
10157
10234
|
{
|
|
10158
10235
|
"name": "dacier.yml",
|
|
10159
10236
|
"description": "Dacier configuration file",
|
|
10160
|
-
"fileMatch": ["dacier.yml", "dacier.yaml"],
|
|
10237
|
+
"fileMatch": ["*.dacier.yml", "*.dacier.yaml"],
|
|
10161
10238
|
"url": "https://raw.githubusercontent.com/daciertech/SchedulerStartup/refs/heads/main/.schemas/dacier-schema-vscode.json"
|
|
10162
10239
|
},
|
|
10163
10240
|
{
|
|
@@ -4,6 +4,7 @@ import { QuickAccessContribution, QuickAccessProvider, QuickAccessRegistry } fro
|
|
|
4
4
|
import { QuickPickItem, QuickPicks } from './quick-input-service';
|
|
5
5
|
export interface QuickViewItem {
|
|
6
6
|
readonly label: string;
|
|
7
|
+
readonly description?: string;
|
|
7
8
|
readonly when?: string;
|
|
8
9
|
readonly open: () => void;
|
|
9
10
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quick-view-service.d.ts","sourceRoot":"","sources":["../../../src/browser/quick-input/quick-view-service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,iBAAiB,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC7D,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,uBAAuB,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAC;AACnG,OAAO,EAAe,aAAa,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAE/E,MAAM,WAAW,aAAa;IAC1B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,IAAI,EAAE,MAAM,IAAI,CAAC;CAC7B;AAED,qBACa,gBAAiB,YAAW,uBAAuB,EAAE,mBAAmB;IACjF,MAAM,CAAC,MAAM,SAAW;IAExB,SAAS,CAAC,QAAQ,CAAC,KAAK,EAAE,CAAC,aAAa,GAAG;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,EAAE,CAAM;IACrE,OAAO,CAAC,gBAAgB,CAAiC;IAGzD,SAAS,CAAC,QAAQ,CAAC,mBAAmB,EAAE,mBAAmB,CAAC;IAG5D,SAAS,CAAC,QAAQ,CAAC,iBAAiB,EAAE,iBAAiB,CAAC;IAExD,YAAY,CAAC,IAAI,EAAE,aAAa,GAAG,UAAU;
|
|
1
|
+
{"version":3,"file":"quick-view-service.d.ts","sourceRoot":"","sources":["../../../src/browser/quick-input/quick-view-service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAE,iBAAiB,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAC7D,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,uBAAuB,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,MAAM,gBAAgB,CAAC;AACnG,OAAO,EAAe,aAAa,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAC;AAE/E,MAAM,WAAW,aAAa;IAC1B,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,IAAI,EAAE,MAAM,IAAI,CAAC;CAC7B;AAED,qBACa,gBAAiB,YAAW,uBAAuB,EAAE,mBAAmB;IACjF,MAAM,CAAC,MAAM,SAAW;IAExB,SAAS,CAAC,QAAQ,CAAC,KAAK,EAAE,CAAC,aAAa,GAAG;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC,EAAE,CAAM;IACrE,OAAO,CAAC,gBAAgB,CAAiC;IAGzD,SAAS,CAAC,QAAQ,CAAC,mBAAmB,EAAE,mBAAmB,CAAC;IAG5D,SAAS,CAAC,QAAQ,CAAC,iBAAiB,EAAE,iBAAiB,CAAC;IAExD,YAAY,CAAC,IAAI,EAAE,aAAa,GAAG,UAAU;IAkB7C,QAAQ,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAI7B,QAAQ,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAI7B,2BAA2B,IAAI,IAAI;IASnC,QAAQ,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,iBAAiB,GAAG,UAAU;CAUjE"}
|
|
@@ -33,6 +33,7 @@ let QuickViewService = class QuickViewService {
|
|
|
33
33
|
registerItem(item) {
|
|
34
34
|
const quickOpenItem = {
|
|
35
35
|
label: item.label,
|
|
36
|
+
description: item.description,
|
|
36
37
|
execute: () => item.open(),
|
|
37
38
|
when: item.when
|
|
38
39
|
};
|
|
@@ -60,7 +61,11 @@ let QuickViewService = class QuickViewService {
|
|
|
60
61
|
});
|
|
61
62
|
}
|
|
62
63
|
getPicks(filter, token) {
|
|
63
|
-
const items = this.items.filter(item =>
|
|
64
|
+
const items = this.items.filter(item =>
|
|
65
|
+
// Some contributions register entries without a label (e.g. an empty view name);
|
|
66
|
+
// those would otherwise sort to the top and appear as a blank row.
|
|
67
|
+
item.label.trim().length > 0 &&
|
|
68
|
+
(item.when === undefined || this.contextKexService.match(item.when)) &&
|
|
64
69
|
(!this.hiddenItemLabels.has(item.label)));
|
|
65
70
|
return (0, quick_input_service_1.filterItems)(items, filter);
|
|
66
71
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quick-view-service.js","sourceRoot":"","sources":["../../../src/browser/quick-input/quick-view-service.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,oEAAoE;AACpE,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;;AAEhF,yCAA+C;AAC/C,yCAA6D;AAC7D,gEAA2D;AAC3D,iDAAmG;AACnG,+DAA+E;
|
|
1
|
+
{"version":3,"file":"quick-view-service.js","sourceRoot":"","sources":["../../../src/browser/quick-input/quick-view-service.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,oEAAoE;AACpE,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;;;;AAEhF,yCAA+C;AAC/C,yCAA6D;AAC7D,gEAA2D;AAC3D,iDAAmG;AACnG,+DAA+E;AAUxE,IAAM,gBAAgB,GAAtB,MAAM,gBAAgB;IAAtB;QAGgB,UAAK,GAA0C,EAAE,CAAC;QAC7D,qBAAgB,GAAG,IAAI,GAAG,EAAsB,CAAC;IAqD7D,CAAC;;aAxDU,WAAM,GAAG,OAAO,AAAV,CAAW;IAWxB,YAAY,CAAC,IAAmB;QAC5B,MAAM,aAAa,GAAG;YAClB,KAAK,EAAE,IAAI,CAAC,KAAK;YACjB,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,OAAO,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,IAAI,EAAE;YAC1B,IAAI,EAAE,IAAI,CAAC,IAAI;SAClB,CAAC;QACF,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;QAC/B,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,KAAM,CAAC,aAAa,CAAC,CAAC,CAAC,KAAM,CAAC,CAAC,CAAC;QAE5D,OAAO,mBAAU,CAAC,MAAM,CAAC,GAAG,EAAE;YAC1B,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC;YAChD,IAAI,KAAK,KAAK,CAAC,CAAC,EAAE,CAAC;gBACf,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC;YAChC,CAAC;QACL,CAAC,CAAC,CAAC;IACP,CAAC;IAED,QAAQ,CAAC,KAAa;QAClB,IAAI,CAAC,gBAAgB,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;IACrC,CAAC;IAED,QAAQ,CAAC,KAAa;QAClB,IAAI,CAAC,gBAAgB,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IACxC,CAAC;IAED,2BAA2B;QACvB,IAAI,CAAC,mBAAmB,CAAC,2BAA2B,CAAC;YACjD,WAAW,EAAE,GAAG,EAAE,CAAC,IAAI;YACvB,MAAM,EAAE,kBAAgB,CAAC,MAAM;YAC/B,WAAW,EAAE,EAAE;YACf,WAAW,EAAE,CAAC,EAAE,WAAW,EAAE,WAAW,EAAE,WAAW,EAAE,KAAK,EAAE,CAAC;SAClE,CAAC,CAAC;IACP,CAAC;IAED,QAAQ,CAAC,MAAc,EAAE,KAAwB;QAC7C,MAAM,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE;QACnC,iFAAiF;QACjF,mEAAmE;QACnE,IAAI,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,MAAM,GAAG,CAAC;YAC5B,CAAC,IAAI,CAAC,IAAI,KAAK,SAAS,IAAI,IAAI,CAAC,iBAAiB,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACpE,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAC3C,CAAC;QACF,OAAO,IAAA,iCAAW,EAAC,KAAK,EAAE,MAAM,CAAC,CAAC;IACtC,CAAC;;AAxDQ,4CAAgB;AAON;IADlB,IAAA,kBAAM,EAAC,kCAAmB,CAAC;;6DACgC;AAGzC;IADlB,IAAA,kBAAM,EAAC,uCAAiB,CAAC;;2DAC8B;2BAV/C,gBAAgB;IAD5B,IAAA,sBAAU,GAAE;GACA,gBAAgB,CAyD5B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quick-view-service.spec.d.ts","sourceRoot":"","sources":["../../../src/browser/quick-input/quick-view-service.spec.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *****************************************************************************
|
|
3
|
+
// Copyright (C) 2026 Safi Seid-Ahmad, K2view and others.
|
|
4
|
+
//
|
|
5
|
+
// This program and the accompanying materials are made available under the
|
|
6
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
7
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
8
|
+
//
|
|
9
|
+
// This Source Code may also be made available under the following Secondary
|
|
10
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
11
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
12
|
+
// with the GNU Classpath Exception which is available at
|
|
13
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
14
|
+
//
|
|
15
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
16
|
+
// *****************************************************************************
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
const chai = require("chai");
|
|
19
|
+
const common_1 = require("../../common");
|
|
20
|
+
const quick_view_service_1 = require("./quick-view-service");
|
|
21
|
+
const expect = chai.expect;
|
|
22
|
+
describe('quick-view-service', () => {
|
|
23
|
+
describe('#getPicks', () => {
|
|
24
|
+
function labelsOf(service) {
|
|
25
|
+
return service.getPicks('', common_1.CancellationToken.None).map(pick => pick.label);
|
|
26
|
+
}
|
|
27
|
+
it('returns registered items with a non-empty label', () => {
|
|
28
|
+
const service = new quick_view_service_1.QuickViewService();
|
|
29
|
+
service.registerItem({ label: 'Explorer', open: () => { } });
|
|
30
|
+
expect(labelsOf(service)).to.deep.equal(['Explorer']);
|
|
31
|
+
});
|
|
32
|
+
it('omits items with an empty or whitespace-only label', () => {
|
|
33
|
+
const service = new quick_view_service_1.QuickViewService();
|
|
34
|
+
service.registerItem({ label: 'Explorer', open: () => { } });
|
|
35
|
+
service.registerItem({ label: '', open: () => { } });
|
|
36
|
+
service.registerItem({ label: ' ', open: () => { } });
|
|
37
|
+
expect(labelsOf(service)).to.deep.equal(['Explorer']);
|
|
38
|
+
});
|
|
39
|
+
});
|
|
40
|
+
});
|
|
41
|
+
//# sourceMappingURL=quick-view-service.spec.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quick-view-service.spec.js","sourceRoot":"","sources":["../../../src/browser/quick-input/quick-view-service.spec.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,yDAAyD;AACzD,EAAE;AACF,2EAA2E;AAC3E,mEAAmE;AACnE,wCAAwC;AACxC,EAAE;AACF,4EAA4E;AAC5E,8EAA8E;AAC9E,6EAA6E;AAC7E,yDAAyD;AACzD,uDAAuD;AACvD,EAAE;AACF,gFAAgF;AAChF,gFAAgF;;AAEhF,6BAA6B;AAC7B,yCAAiD;AAEjD,6DAAwD;AAExD,MAAM,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;AAE3B,QAAQ,CAAC,oBAAoB,EAAE,GAAG,EAAE;IAEhC,QAAQ,CAAC,WAAW,EAAE,GAAG,EAAE;QAEvB,SAAS,QAAQ,CAAC,OAAyB;YACvC,OAAO,OAAO,CAAC,QAAQ,CAAC,EAAE,EAAE,0BAAiB,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAE,IAAsB,CAAC,KAAK,CAAC,CAAC;QACnG,CAAC;QAED,EAAE,CAAC,iDAAiD,EAAE,GAAG,EAAE;YACvD,MAAM,OAAO,GAAG,IAAI,qCAAgB,EAAE,CAAC;YACvC,OAAO,CAAC,YAAY,CAAC,EAAE,KAAK,EAAE,UAAU,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE,CAAC,CAAC;YAE7D,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC;QAC1D,CAAC,CAAC,CAAC;QAEH,EAAE,CAAC,oDAAoD,EAAE,GAAG,EAAE;YAC1D,MAAM,OAAO,GAAG,IAAI,qCAAgB,EAAE,CAAC;YACvC,OAAO,CAAC,YAAY,CAAC,EAAE,KAAK,EAAE,UAAU,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE,CAAC,CAAC;YAC7D,OAAO,CAAC,YAAY,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE,CAAC,CAAC;YACrD,OAAO,CAAC,YAAY,CAAC,EAAE,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,EAAE,CAAC,CAAC;YAExD,MAAM,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC;QAC1D,CAAC,CAAC,CAAC;IAEP,CAAC,CAAC,CAAC;AAEP,CAAC,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/core",
|
|
3
|
-
"version": "1.73.0-next.
|
|
3
|
+
"version": "1.73.0-next.14+dca320f56",
|
|
4
4
|
"description": "Theia is a cloud & desktop IDE framework implemented in TypeScript.",
|
|
5
5
|
"main": "lib/common/index.js",
|
|
6
6
|
"typings": "lib/common/index.d.ts",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"@lumino/virtualdom": "^2.0.4",
|
|
18
18
|
"@lumino/widgets": "2.7.5",
|
|
19
19
|
"@parcel/watcher": "^2.5.6",
|
|
20
|
-
"@theia/application-package": "1.73.0-next.
|
|
21
|
-
"@theia/request": "1.73.0-next.
|
|
20
|
+
"@theia/application-package": "1.73.0-next.14+dca320f56",
|
|
21
|
+
"@theia/request": "1.73.0-next.14+dca320f56",
|
|
22
22
|
"@types/body-parser": "^1.19.6",
|
|
23
23
|
"@types/express": "^4.17.25",
|
|
24
24
|
"@types/fs-extra": "^4.0.15",
|
|
@@ -221,5 +221,5 @@
|
|
|
221
221
|
"nyc": {
|
|
222
222
|
"extends": "../../configs/nyc.json"
|
|
223
223
|
},
|
|
224
|
-
"gitHead": "
|
|
224
|
+
"gitHead": "dca320f5652d66a1f213050e3aa922a971c44173"
|
|
225
225
|
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
// *****************************************************************************
|
|
2
|
+
// Copyright (C) 2026 Safi Seid-Ahmad, K2view and others.
|
|
3
|
+
//
|
|
4
|
+
// This program and the accompanying materials are made available under the
|
|
5
|
+
// terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
+
// http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
+
//
|
|
8
|
+
// This Source Code may also be made available under the following Secondary
|
|
9
|
+
// Licenses when the conditions for such availability set forth in the Eclipse
|
|
10
|
+
// Public License v. 2.0 are satisfied: GNU General Public License, version 2
|
|
11
|
+
// with the GNU Classpath Exception which is available at
|
|
12
|
+
// https://www.gnu.org/software/classpath/license.html.
|
|
13
|
+
//
|
|
14
|
+
// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
|
|
15
|
+
// *****************************************************************************
|
|
16
|
+
|
|
17
|
+
import * as chai from 'chai';
|
|
18
|
+
import { CancellationToken } from '../../common';
|
|
19
|
+
import { QuickPickItem } from './quick-input-service';
|
|
20
|
+
import { QuickViewService } from './quick-view-service';
|
|
21
|
+
|
|
22
|
+
const expect = chai.expect;
|
|
23
|
+
|
|
24
|
+
describe('quick-view-service', () => {
|
|
25
|
+
|
|
26
|
+
describe('#getPicks', () => {
|
|
27
|
+
|
|
28
|
+
function labelsOf(service: QuickViewService): (string | undefined)[] {
|
|
29
|
+
return service.getPicks('', CancellationToken.None).map(pick => (pick as QuickPickItem).label);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
it('returns registered items with a non-empty label', () => {
|
|
33
|
+
const service = new QuickViewService();
|
|
34
|
+
service.registerItem({ label: 'Explorer', open: () => { } });
|
|
35
|
+
|
|
36
|
+
expect(labelsOf(service)).to.deep.equal(['Explorer']);
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
it('omits items with an empty or whitespace-only label', () => {
|
|
40
|
+
const service = new QuickViewService();
|
|
41
|
+
service.registerItem({ label: 'Explorer', open: () => { } });
|
|
42
|
+
service.registerItem({ label: '', open: () => { } });
|
|
43
|
+
service.registerItem({ label: ' ', open: () => { } });
|
|
44
|
+
|
|
45
|
+
expect(labelsOf(service)).to.deep.equal(['Explorer']);
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
});
|
|
@@ -22,6 +22,7 @@ import { filterItems, QuickPickItem, QuickPicks } from './quick-input-service';
|
|
|
22
22
|
|
|
23
23
|
export interface QuickViewItem {
|
|
24
24
|
readonly label: string;
|
|
25
|
+
readonly description?: string;
|
|
25
26
|
readonly when?: string;
|
|
26
27
|
readonly open: () => void;
|
|
27
28
|
}
|
|
@@ -42,6 +43,7 @@ export class QuickViewService implements QuickAccessContribution, QuickAccessPro
|
|
|
42
43
|
registerItem(item: QuickViewItem): Disposable {
|
|
43
44
|
const quickOpenItem = {
|
|
44
45
|
label: item.label,
|
|
46
|
+
description: item.description,
|
|
45
47
|
execute: () => item.open(),
|
|
46
48
|
when: item.when
|
|
47
49
|
};
|
|
@@ -75,6 +77,9 @@ export class QuickViewService implements QuickAccessContribution, QuickAccessPro
|
|
|
75
77
|
|
|
76
78
|
getPicks(filter: string, token: CancellationToken): QuickPicks {
|
|
77
79
|
const items = this.items.filter(item =>
|
|
80
|
+
// Some contributions register entries without a label (e.g. an empty view name);
|
|
81
|
+
// those would otherwise sort to the top and appear as a blank row.
|
|
82
|
+
item.label.trim().length > 0 &&
|
|
78
83
|
(item.when === undefined || this.contextKexService.match(item.when)) &&
|
|
79
84
|
(!this.hiddenItemLabels.has(item.label))
|
|
80
85
|
);
|