@empathyco/x-components 3.0.0-alpha.366 → 3.0.0-alpha.367
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/CHANGELOG.md +35 -0
- package/design-system/deprecated-full-theme.css +78 -78
- package/docs/API-reference/api/x-components.basecurrency.md +20 -11
- package/docs/API-reference/api/x-components.basesuggestion.md +48 -23
- package/docs/API-reference/api/x-components.md +2 -2
- package/js/components/currency/base-currency.vue.js.map +1 -1
- package/js/components/currency/base-currency.vue_rollup-plugin-vue_script.vue.js +51 -38
- package/js/components/currency/base-currency.vue_rollup-plugin-vue_script.vue.js.map +1 -1
- package/js/components/result/base-result-image.vue.js +1 -1
- package/js/components/result/base-result-image.vue.js.map +1 -1
- package/js/components/result/base-result-image.vue_rollup-plugin-vue_script.vue.js +6 -1
- package/js/components/result/base-result-image.vue_rollup-plugin-vue_script.vue.js.map +1 -1
- package/js/components/result/base-result-image.vue_rollup-plugin-vue_styles.0.vue.js +1 -1
- package/js/components/suggestions/base-suggestion.vue.js +6 -2
- package/js/components/suggestions/base-suggestion.vue.js.map +1 -1
- package/js/components/suggestions/base-suggestion.vue_rollup-plugin-vue_script.vue.js +124 -94
- package/js/components/suggestions/base-suggestion.vue_rollup-plugin-vue_script.vue.js.map +1 -1
- package/package.json +2 -2
- package/report/x-components.api.json +345 -409
- package/report/x-components.api.md +67 -23
- package/types/components/currency/base-currency.vue.d.ts +26 -20
- package/types/components/currency/base-currency.vue.d.ts.map +1 -1
- package/types/components/result/base-result-image.vue.d.ts.map +1 -1
- package/types/components/suggestions/base-suggestion.vue.d.ts +55 -36
- package/types/components/suggestions/base-suggestion.vue.d.ts.map +1 -1
- package/docs/API-reference/api/x-components.basecurrency.format.md +0 -13
- package/docs/API-reference/api/x-components.basecurrency.injectedformat.md +0 -13
- package/docs/API-reference/api/x-components.basecurrency.value.md +0 -18
- package/docs/API-reference/api/x-components.basesuggestion.dynamiccssclasses.md +0 -18
- package/docs/API-reference/api/x-components.basesuggestion.emitevents.md +0 -17
- package/docs/API-reference/api/x-components.basesuggestion.events.md +0 -18
- package/docs/API-reference/api/x-components.basesuggestion.feature.md +0 -13
- package/docs/API-reference/api/x-components.basesuggestion.filter.md +0 -13
- package/docs/API-reference/api/x-components.basesuggestion.highlightcurated.md +0 -13
- package/docs/API-reference/api/x-components.basesuggestion.query.md +0 -13
- package/docs/API-reference/api/x-components.basesuggestion.suggestion.md +0 -13
- package/docs/API-reference/api/x-components.basesuggestion.suggestionselectedevents.md +0 -13
|
@@ -2689,126 +2689,117 @@
|
|
|
2689
2689
|
"implementsTokenRanges": []
|
|
2690
2690
|
},
|
|
2691
2691
|
{
|
|
2692
|
-
"kind": "
|
|
2693
|
-
"canonicalReference": "@empathyco/x-components!BaseCurrency:
|
|
2692
|
+
"kind": "Variable",
|
|
2693
|
+
"canonicalReference": "@empathyco/x-components!BaseCurrency:var",
|
|
2694
2694
|
"docComment": "/**\n * Renders the value received as a property which always must be a JavaScript number, with the proper format provided as a string property or by injection. The rendered tag is a span in order to render a default inline HTML element.\n *\n * Regarding the format or mask to be defined as string: - Use 'i' to define integer numbers. - Use 'd' to define decimal numbers. You can define the length of the decimal part. If the format doesn't include decimals, it is filled with zeros until reach the length defined with 'd's. - Integer separator must be defined between the 3rd and the 4th integer 'i' of a group. - Decimal separator must be defined between the last 'i' and the first 'd'. It can be more than one character. - If you want to hide the decimal part if it's zero, you can add the `?` symbol after the decimal characters (e.g. 'i.iii,dd?', for `1234` you would get `1.234` instead of `1.234,00`). - Set whatever you need around the integers and decimals marks. - Default mask: 'i.iii,dd' which returns '1.345,67'.\n *\n * @remarks\n *\n * The number of 'd', which is the maximum decimal length, MUST matches with the length of decimals provided from the adapter. Otherwise, when the component truncate the decimal part, it deletes significant digits.\n *\n * @example\n *\n * Basic example:\n * ```vue\n * <BaseCurrency\n * :value=\"123456.789\"\n * format=\"i.iiii,dddd €\"\n * />\n * ```\n *\n * It will render: `123.456,7890 €`.\n *\n * See docs below for more examples.\n *\n * @public\n */\n",
|
|
2695
2695
|
"excerptTokens": [
|
|
2696
2696
|
{
|
|
2697
2697
|
"kind": "Content",
|
|
2698
|
-
"text": "
|
|
2698
|
+
"text": "_default: "
|
|
2699
|
+
},
|
|
2700
|
+
{
|
|
2701
|
+
"kind": "Content",
|
|
2702
|
+
"text": "import(\"vue\")."
|
|
2699
2703
|
},
|
|
2700
2704
|
{
|
|
2701
2705
|
"kind": "Reference",
|
|
2702
|
-
"text": "
|
|
2703
|
-
"canonicalReference": "vue!
|
|
2706
|
+
"text": "DefineComponent",
|
|
2707
|
+
"canonicalReference": "vue!DefineComponent:type"
|
|
2704
2708
|
},
|
|
2705
2709
|
{
|
|
2706
2710
|
"kind": "Content",
|
|
2707
|
-
"text": " "
|
|
2708
|
-
}
|
|
2709
|
-
],
|
|
2710
|
-
"fileUrlPath": "dist/types/components/currency/base-currency.vue.d.ts",
|
|
2711
|
-
"releaseTag": "Public",
|
|
2712
|
-
"isAbstract": false,
|
|
2713
|
-
"name": "BaseCurrency",
|
|
2714
|
-
"preserveMemberOrder": false,
|
|
2715
|
-
"members": [
|
|
2711
|
+
"text": "<{\n value: {\n type: "
|
|
2712
|
+
},
|
|
2716
2713
|
{
|
|
2717
|
-
"kind": "
|
|
2718
|
-
"
|
|
2719
|
-
"
|
|
2720
|
-
"excerptTokens": [
|
|
2721
|
-
{
|
|
2722
|
-
"kind": "Content",
|
|
2723
|
-
"text": "protected format?: "
|
|
2724
|
-
},
|
|
2725
|
-
{
|
|
2726
|
-
"kind": "Content",
|
|
2727
|
-
"text": "string"
|
|
2728
|
-
},
|
|
2729
|
-
{
|
|
2730
|
-
"kind": "Content",
|
|
2731
|
-
"text": ";"
|
|
2732
|
-
}
|
|
2733
|
-
],
|
|
2734
|
-
"isReadonly": false,
|
|
2735
|
-
"isOptional": true,
|
|
2736
|
-
"releaseTag": "Public",
|
|
2737
|
-
"name": "format",
|
|
2738
|
-
"propertyTypeTokenRange": {
|
|
2739
|
-
"startIndex": 1,
|
|
2740
|
-
"endIndex": 2
|
|
2741
|
-
},
|
|
2742
|
-
"isStatic": false,
|
|
2743
|
-
"isProtected": true,
|
|
2744
|
-
"isAbstract": false
|
|
2714
|
+
"kind": "Reference",
|
|
2715
|
+
"text": "NumberConstructor",
|
|
2716
|
+
"canonicalReference": "!NumberConstructor:interface"
|
|
2745
2717
|
},
|
|
2746
2718
|
{
|
|
2747
|
-
"kind": "
|
|
2748
|
-
"
|
|
2749
|
-
"docComment": "/**\n * The injected format as string.\n *\n * @public\n */\n",
|
|
2750
|
-
"excerptTokens": [
|
|
2751
|
-
{
|
|
2752
|
-
"kind": "Content",
|
|
2753
|
-
"text": "injectedFormat: "
|
|
2754
|
-
},
|
|
2755
|
-
{
|
|
2756
|
-
"kind": "Content",
|
|
2757
|
-
"text": "string"
|
|
2758
|
-
},
|
|
2759
|
-
{
|
|
2760
|
-
"kind": "Content",
|
|
2761
|
-
"text": ";"
|
|
2762
|
-
}
|
|
2763
|
-
],
|
|
2764
|
-
"isReadonly": false,
|
|
2765
|
-
"isOptional": false,
|
|
2766
|
-
"releaseTag": "Public",
|
|
2767
|
-
"name": "injectedFormat",
|
|
2768
|
-
"propertyTypeTokenRange": {
|
|
2769
|
-
"startIndex": 1,
|
|
2770
|
-
"endIndex": 2
|
|
2771
|
-
},
|
|
2772
|
-
"isStatic": false,
|
|
2773
|
-
"isProtected": false,
|
|
2774
|
-
"isAbstract": false
|
|
2719
|
+
"kind": "Content",
|
|
2720
|
+
"text": ";\n required: true;\n };\n format: {\n type: "
|
|
2775
2721
|
},
|
|
2776
2722
|
{
|
|
2777
|
-
"kind": "
|
|
2778
|
-
"
|
|
2779
|
-
"
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
"
|
|
2796
|
-
"
|
|
2797
|
-
"
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
"
|
|
2723
|
+
"kind": "Reference",
|
|
2724
|
+
"text": "StringConstructor",
|
|
2725
|
+
"canonicalReference": "!StringConstructor:interface"
|
|
2726
|
+
},
|
|
2727
|
+
{
|
|
2728
|
+
"kind": "Content",
|
|
2729
|
+
"text": ";\n };\n}, {\n currency: import(\"vue\")."
|
|
2730
|
+
},
|
|
2731
|
+
{
|
|
2732
|
+
"kind": "Reference",
|
|
2733
|
+
"text": "ComputedRef",
|
|
2734
|
+
"canonicalReference": "vue!ComputedRef:interface"
|
|
2735
|
+
},
|
|
2736
|
+
{
|
|
2737
|
+
"kind": "Content",
|
|
2738
|
+
"text": "<string>;\n}, {}, {}, {}, import(\"vue/types/v3-component-options\")."
|
|
2739
|
+
},
|
|
2740
|
+
{
|
|
2741
|
+
"kind": "Reference",
|
|
2742
|
+
"text": "ComponentOptionsMixin",
|
|
2743
|
+
"canonicalReference": "vue!ComponentOptionsMixin:type"
|
|
2744
|
+
},
|
|
2745
|
+
{
|
|
2746
|
+
"kind": "Content",
|
|
2747
|
+
"text": ", import(\"vue/types/v3-component-options\")."
|
|
2748
|
+
},
|
|
2749
|
+
{
|
|
2750
|
+
"kind": "Reference",
|
|
2751
|
+
"text": "ComponentOptionsMixin",
|
|
2752
|
+
"canonicalReference": "vue!ComponentOptionsMixin:type"
|
|
2753
|
+
},
|
|
2754
|
+
{
|
|
2755
|
+
"kind": "Content",
|
|
2756
|
+
"text": ", {}, string, "
|
|
2757
|
+
},
|
|
2758
|
+
{
|
|
2759
|
+
"kind": "Reference",
|
|
2760
|
+
"text": "Readonly",
|
|
2761
|
+
"canonicalReference": "!Readonly:type"
|
|
2762
|
+
},
|
|
2763
|
+
{
|
|
2764
|
+
"kind": "Content",
|
|
2765
|
+
"text": "<import(\"vue\")."
|
|
2766
|
+
},
|
|
2767
|
+
{
|
|
2768
|
+
"kind": "Reference",
|
|
2769
|
+
"text": "ExtractPropTypes",
|
|
2770
|
+
"canonicalReference": "vue!ExtractPropTypes:type"
|
|
2771
|
+
},
|
|
2772
|
+
{
|
|
2773
|
+
"kind": "Content",
|
|
2774
|
+
"text": "<{\n value: {\n type: "
|
|
2775
|
+
},
|
|
2776
|
+
{
|
|
2777
|
+
"kind": "Reference",
|
|
2778
|
+
"text": "NumberConstructor",
|
|
2779
|
+
"canonicalReference": "!NumberConstructor:interface"
|
|
2780
|
+
},
|
|
2781
|
+
{
|
|
2782
|
+
"kind": "Content",
|
|
2783
|
+
"text": ";\n required: true;\n };\n format: {\n type: "
|
|
2784
|
+
},
|
|
2785
|
+
{
|
|
2786
|
+
"kind": "Reference",
|
|
2787
|
+
"text": "StringConstructor",
|
|
2788
|
+
"canonicalReference": "!StringConstructor:interface"
|
|
2789
|
+
},
|
|
2790
|
+
{
|
|
2791
|
+
"kind": "Content",
|
|
2792
|
+
"text": ";\n };\n}>>, {}>"
|
|
2805
2793
|
}
|
|
2806
2794
|
],
|
|
2807
|
-
"
|
|
2795
|
+
"fileUrlPath": "dist/types/components/currency/base-currency.vue.d.ts",
|
|
2796
|
+
"isReadonly": true,
|
|
2797
|
+
"releaseTag": "Public",
|
|
2798
|
+
"name": "BaseCurrency",
|
|
2799
|
+
"variableTypeTokenRange": {
|
|
2808
2800
|
"startIndex": 1,
|
|
2809
|
-
"endIndex":
|
|
2810
|
-
}
|
|
2811
|
-
"implementsTokenRanges": []
|
|
2801
|
+
"endIndex": 22
|
|
2802
|
+
}
|
|
2812
2803
|
},
|
|
2813
2804
|
{
|
|
2814
2805
|
"kind": "Class",
|
|
@@ -7659,343 +7650,288 @@
|
|
|
7659
7650
|
"implementsTokenRanges": []
|
|
7660
7651
|
},
|
|
7661
7652
|
{
|
|
7662
|
-
"kind": "
|
|
7663
|
-
"canonicalReference": "@empathyco/x-components!BaseSuggestion:
|
|
7653
|
+
"kind": "Variable",
|
|
7654
|
+
"canonicalReference": "@empathyco/x-components!BaseSuggestion:var",
|
|
7664
7655
|
"docComment": "/**\n * Renders a button with a default slot. It receives a query, which should be the query of the module using this component, a suggestion, the {@link XEvent | XEvents} that will be emitted on click with a given feature.\n *\n * The default slot receives the suggestion and the matched query has props.\n *\n * @public\n */\n",
|
|
7665
7656
|
"excerptTokens": [
|
|
7666
7657
|
{
|
|
7667
7658
|
"kind": "Content",
|
|
7668
|
-
"text": "
|
|
7659
|
+
"text": "_default: "
|
|
7660
|
+
},
|
|
7661
|
+
{
|
|
7662
|
+
"kind": "Content",
|
|
7663
|
+
"text": "import(\"vue\")."
|
|
7669
7664
|
},
|
|
7670
7665
|
{
|
|
7671
7666
|
"kind": "Reference",
|
|
7672
|
-
"text": "
|
|
7673
|
-
"canonicalReference": "vue!
|
|
7667
|
+
"text": "DefineComponent",
|
|
7668
|
+
"canonicalReference": "vue!DefineComponent:type"
|
|
7674
7669
|
},
|
|
7675
7670
|
{
|
|
7676
7671
|
"kind": "Content",
|
|
7677
|
-
"text": " "
|
|
7678
|
-
}
|
|
7679
|
-
],
|
|
7680
|
-
"fileUrlPath": "dist/types/components/suggestions/base-suggestion.vue.d.ts",
|
|
7681
|
-
"releaseTag": "Public",
|
|
7682
|
-
"isAbstract": false,
|
|
7683
|
-
"name": "BaseSuggestion",
|
|
7684
|
-
"preserveMemberOrder": false,
|
|
7685
|
-
"members": [
|
|
7672
|
+
"text": "<{\n query: {\n type: "
|
|
7673
|
+
},
|
|
7686
7674
|
{
|
|
7687
|
-
"kind": "
|
|
7688
|
-
"
|
|
7689
|
-
"
|
|
7690
|
-
"excerptTokens": [
|
|
7691
|
-
{
|
|
7692
|
-
"kind": "Content",
|
|
7693
|
-
"text": "protected get dynamicCSSClasses(): "
|
|
7694
|
-
},
|
|
7695
|
-
{
|
|
7696
|
-
"kind": "Reference",
|
|
7697
|
-
"text": "VueCSSClasses",
|
|
7698
|
-
"canonicalReference": "@empathyco/x-components!VueCSSClasses:type"
|
|
7699
|
-
},
|
|
7700
|
-
{
|
|
7701
|
-
"kind": "Content",
|
|
7702
|
-
"text": ";"
|
|
7703
|
-
}
|
|
7704
|
-
],
|
|
7705
|
-
"isReadonly": true,
|
|
7706
|
-
"isOptional": false,
|
|
7707
|
-
"releaseTag": "Public",
|
|
7708
|
-
"name": "dynamicCSSClasses",
|
|
7709
|
-
"propertyTypeTokenRange": {
|
|
7710
|
-
"startIndex": 1,
|
|
7711
|
-
"endIndex": 2
|
|
7712
|
-
},
|
|
7713
|
-
"isStatic": false,
|
|
7714
|
-
"isProtected": true,
|
|
7715
|
-
"isAbstract": false
|
|
7675
|
+
"kind": "Reference",
|
|
7676
|
+
"text": "StringConstructor",
|
|
7677
|
+
"canonicalReference": "!StringConstructor:interface"
|
|
7716
7678
|
},
|
|
7717
7679
|
{
|
|
7718
|
-
"kind": "
|
|
7719
|
-
"
|
|
7720
|
-
"docComment": "/**\n * Emits the events when the button is clicked.\n *\n * @public\n */\n",
|
|
7721
|
-
"excerptTokens": [
|
|
7722
|
-
{
|
|
7723
|
-
"kind": "Content",
|
|
7724
|
-
"text": "protected emitEvents(): "
|
|
7725
|
-
},
|
|
7726
|
-
{
|
|
7727
|
-
"kind": "Content",
|
|
7728
|
-
"text": "void"
|
|
7729
|
-
},
|
|
7730
|
-
{
|
|
7731
|
-
"kind": "Content",
|
|
7732
|
-
"text": ";"
|
|
7733
|
-
}
|
|
7734
|
-
],
|
|
7735
|
-
"isStatic": false,
|
|
7736
|
-
"returnTypeTokenRange": {
|
|
7737
|
-
"startIndex": 1,
|
|
7738
|
-
"endIndex": 2
|
|
7739
|
-
},
|
|
7740
|
-
"releaseTag": "Public",
|
|
7741
|
-
"isProtected": true,
|
|
7742
|
-
"overloadIndex": 1,
|
|
7743
|
-
"parameters": [],
|
|
7744
|
-
"isOptional": false,
|
|
7745
|
-
"isAbstract": false,
|
|
7746
|
-
"name": "emitEvents"
|
|
7680
|
+
"kind": "Content",
|
|
7681
|
+
"text": ";\n default: string;\n };\n suggestion: {\n type: "
|
|
7747
7682
|
},
|
|
7748
7683
|
{
|
|
7749
|
-
"kind": "
|
|
7750
|
-
"
|
|
7751
|
-
"
|
|
7752
|
-
"excerptTokens": [
|
|
7753
|
-
{
|
|
7754
|
-
"kind": "Content",
|
|
7755
|
-
"text": "protected get events(): "
|
|
7756
|
-
},
|
|
7757
|
-
{
|
|
7758
|
-
"kind": "Reference",
|
|
7759
|
-
"text": "Partial",
|
|
7760
|
-
"canonicalReference": "!Partial:type"
|
|
7761
|
-
},
|
|
7762
|
-
{
|
|
7763
|
-
"kind": "Content",
|
|
7764
|
-
"text": "<"
|
|
7765
|
-
},
|
|
7766
|
-
{
|
|
7767
|
-
"kind": "Reference",
|
|
7768
|
-
"text": "XEventsTypes",
|
|
7769
|
-
"canonicalReference": "@empathyco/x-components!XEventsTypes:interface"
|
|
7770
|
-
},
|
|
7771
|
-
{
|
|
7772
|
-
"kind": "Content",
|
|
7773
|
-
"text": ">"
|
|
7774
|
-
},
|
|
7775
|
-
{
|
|
7776
|
-
"kind": "Content",
|
|
7777
|
-
"text": ";"
|
|
7778
|
-
}
|
|
7779
|
-
],
|
|
7780
|
-
"isReadonly": true,
|
|
7781
|
-
"isOptional": false,
|
|
7782
|
-
"releaseTag": "Public",
|
|
7783
|
-
"name": "events",
|
|
7784
|
-
"propertyTypeTokenRange": {
|
|
7785
|
-
"startIndex": 1,
|
|
7786
|
-
"endIndex": 5
|
|
7787
|
-
},
|
|
7788
|
-
"isStatic": false,
|
|
7789
|
-
"isProtected": true,
|
|
7790
|
-
"isAbstract": false
|
|
7684
|
+
"kind": "Reference",
|
|
7685
|
+
"text": "PropType",
|
|
7686
|
+
"canonicalReference": "vue!PropType:type"
|
|
7791
7687
|
},
|
|
7792
7688
|
{
|
|
7793
|
-
"kind": "
|
|
7794
|
-
"
|
|
7795
|
-
"docComment": "/**\n * The feature from which the events will be emitted.\n *\n * @public\n */\n",
|
|
7796
|
-
"excerptTokens": [
|
|
7797
|
-
{
|
|
7798
|
-
"kind": "Content",
|
|
7799
|
-
"text": "protected feature?: "
|
|
7800
|
-
},
|
|
7801
|
-
{
|
|
7802
|
-
"kind": "Reference",
|
|
7803
|
-
"text": "QueryFeature",
|
|
7804
|
-
"canonicalReference": "@empathyco/x-components!QueryFeature:type"
|
|
7805
|
-
},
|
|
7806
|
-
{
|
|
7807
|
-
"kind": "Content",
|
|
7808
|
-
"text": ";"
|
|
7809
|
-
}
|
|
7810
|
-
],
|
|
7811
|
-
"isReadonly": false,
|
|
7812
|
-
"isOptional": true,
|
|
7813
|
-
"releaseTag": "Public",
|
|
7814
|
-
"name": "feature",
|
|
7815
|
-
"propertyTypeTokenRange": {
|
|
7816
|
-
"startIndex": 1,
|
|
7817
|
-
"endIndex": 2
|
|
7818
|
-
},
|
|
7819
|
-
"isStatic": false,
|
|
7820
|
-
"isProtected": true,
|
|
7821
|
-
"isAbstract": false
|
|
7689
|
+
"kind": "Content",
|
|
7690
|
+
"text": "<"
|
|
7822
7691
|
},
|
|
7823
7692
|
{
|
|
7824
|
-
"kind": "
|
|
7825
|
-
"
|
|
7826
|
-
"
|
|
7827
|
-
"excerptTokens": [
|
|
7828
|
-
{
|
|
7829
|
-
"kind": "Content",
|
|
7830
|
-
"text": "protected get filter(): "
|
|
7831
|
-
},
|
|
7832
|
-
{
|
|
7833
|
-
"kind": "Reference",
|
|
7834
|
-
"text": "BooleanFilter",
|
|
7835
|
-
"canonicalReference": "@empathyco/x-components!BooleanFilter:interface"
|
|
7836
|
-
},
|
|
7837
|
-
{
|
|
7838
|
-
"kind": "Content",
|
|
7839
|
-
"text": " | undefined"
|
|
7840
|
-
},
|
|
7841
|
-
{
|
|
7842
|
-
"kind": "Content",
|
|
7843
|
-
"text": ";"
|
|
7844
|
-
}
|
|
7845
|
-
],
|
|
7846
|
-
"isReadonly": true,
|
|
7847
|
-
"isOptional": false,
|
|
7848
|
-
"releaseTag": "Public",
|
|
7849
|
-
"name": "filter",
|
|
7850
|
-
"propertyTypeTokenRange": {
|
|
7851
|
-
"startIndex": 1,
|
|
7852
|
-
"endIndex": 3
|
|
7853
|
-
},
|
|
7854
|
-
"isStatic": false,
|
|
7855
|
-
"isProtected": true,
|
|
7856
|
-
"isAbstract": false
|
|
7693
|
+
"kind": "Reference",
|
|
7694
|
+
"text": "Suggestion",
|
|
7695
|
+
"canonicalReference": "@empathyco/x-components!Suggestion:interface"
|
|
7857
7696
|
},
|
|
7858
7697
|
{
|
|
7859
|
-
"kind": "
|
|
7860
|
-
"
|
|
7861
|
-
"docComment": "/**\n * Indicates if the curated suggestion should be highlighted.\n *\n * @public\n */\n",
|
|
7862
|
-
"excerptTokens": [
|
|
7863
|
-
{
|
|
7864
|
-
"kind": "Content",
|
|
7865
|
-
"text": "protected highlightCurated: "
|
|
7866
|
-
},
|
|
7867
|
-
{
|
|
7868
|
-
"kind": "Content",
|
|
7869
|
-
"text": "boolean"
|
|
7870
|
-
},
|
|
7871
|
-
{
|
|
7872
|
-
"kind": "Content",
|
|
7873
|
-
"text": ";"
|
|
7874
|
-
}
|
|
7875
|
-
],
|
|
7876
|
-
"isReadonly": false,
|
|
7877
|
-
"isOptional": false,
|
|
7878
|
-
"releaseTag": "Public",
|
|
7879
|
-
"name": "highlightCurated",
|
|
7880
|
-
"propertyTypeTokenRange": {
|
|
7881
|
-
"startIndex": 1,
|
|
7882
|
-
"endIndex": 2
|
|
7883
|
-
},
|
|
7884
|
-
"isStatic": false,
|
|
7885
|
-
"isProtected": true,
|
|
7886
|
-
"isAbstract": false
|
|
7698
|
+
"kind": "Content",
|
|
7699
|
+
"text": ">;\n required: true;\n };\n feature: {\n type: "
|
|
7887
7700
|
},
|
|
7888
7701
|
{
|
|
7889
|
-
"kind": "
|
|
7890
|
-
"
|
|
7891
|
-
"
|
|
7892
|
-
"excerptTokens": [
|
|
7893
|
-
{
|
|
7894
|
-
"kind": "Content",
|
|
7895
|
-
"text": "protected query: "
|
|
7896
|
-
},
|
|
7897
|
-
{
|
|
7898
|
-
"kind": "Content",
|
|
7899
|
-
"text": "string"
|
|
7900
|
-
},
|
|
7901
|
-
{
|
|
7902
|
-
"kind": "Content",
|
|
7903
|
-
"text": ";"
|
|
7904
|
-
}
|
|
7905
|
-
],
|
|
7906
|
-
"isReadonly": false,
|
|
7907
|
-
"isOptional": false,
|
|
7908
|
-
"releaseTag": "Public",
|
|
7909
|
-
"name": "query",
|
|
7910
|
-
"propertyTypeTokenRange": {
|
|
7911
|
-
"startIndex": 1,
|
|
7912
|
-
"endIndex": 2
|
|
7913
|
-
},
|
|
7914
|
-
"isStatic": false,
|
|
7915
|
-
"isProtected": true,
|
|
7916
|
-
"isAbstract": false
|
|
7702
|
+
"kind": "Reference",
|
|
7703
|
+
"text": "PropType",
|
|
7704
|
+
"canonicalReference": "vue!PropType:type"
|
|
7917
7705
|
},
|
|
7918
7706
|
{
|
|
7919
|
-
"kind": "
|
|
7920
|
-
"
|
|
7921
|
-
"docComment": "/**\n * The suggestion to render and use in the default slot.\n *\n * @public\n */\n",
|
|
7922
|
-
"excerptTokens": [
|
|
7923
|
-
{
|
|
7924
|
-
"kind": "Content",
|
|
7925
|
-
"text": "protected suggestion: "
|
|
7926
|
-
},
|
|
7927
|
-
{
|
|
7928
|
-
"kind": "Reference",
|
|
7929
|
-
"text": "Suggestion",
|
|
7930
|
-
"canonicalReference": "@empathyco/x-components!Suggestion:interface"
|
|
7931
|
-
},
|
|
7932
|
-
{
|
|
7933
|
-
"kind": "Content",
|
|
7934
|
-
"text": ";"
|
|
7935
|
-
}
|
|
7936
|
-
],
|
|
7937
|
-
"isReadonly": false,
|
|
7938
|
-
"isOptional": false,
|
|
7939
|
-
"releaseTag": "Public",
|
|
7940
|
-
"name": "suggestion",
|
|
7941
|
-
"propertyTypeTokenRange": {
|
|
7942
|
-
"startIndex": 1,
|
|
7943
|
-
"endIndex": 2
|
|
7944
|
-
},
|
|
7945
|
-
"isStatic": false,
|
|
7946
|
-
"isProtected": true,
|
|
7947
|
-
"isAbstract": false
|
|
7707
|
+
"kind": "Content",
|
|
7708
|
+
"text": "<"
|
|
7948
7709
|
},
|
|
7949
7710
|
{
|
|
7950
|
-
"kind": "
|
|
7951
|
-
"
|
|
7952
|
-
"
|
|
7953
|
-
|
|
7954
|
-
|
|
7955
|
-
|
|
7956
|
-
|
|
7957
|
-
|
|
7958
|
-
|
|
7959
|
-
|
|
7960
|
-
|
|
7961
|
-
|
|
7962
|
-
|
|
7963
|
-
|
|
7964
|
-
|
|
7965
|
-
|
|
7966
|
-
|
|
7967
|
-
|
|
7968
|
-
|
|
7969
|
-
|
|
7970
|
-
|
|
7971
|
-
|
|
7972
|
-
|
|
7973
|
-
|
|
7974
|
-
|
|
7975
|
-
|
|
7976
|
-
|
|
7977
|
-
|
|
7978
|
-
|
|
7979
|
-
|
|
7980
|
-
|
|
7981
|
-
|
|
7982
|
-
"
|
|
7983
|
-
"
|
|
7984
|
-
|
|
7985
|
-
|
|
7986
|
-
|
|
7987
|
-
|
|
7988
|
-
|
|
7989
|
-
|
|
7990
|
-
|
|
7991
|
-
"
|
|
7711
|
+
"kind": "Reference",
|
|
7712
|
+
"text": "QueryFeature",
|
|
7713
|
+
"canonicalReference": "@empathyco/x-components!QueryFeature:type"
|
|
7714
|
+
},
|
|
7715
|
+
{
|
|
7716
|
+
"kind": "Content",
|
|
7717
|
+
"text": ">;\n };\n suggestionSelectedEvents: {\n type: "
|
|
7718
|
+
},
|
|
7719
|
+
{
|
|
7720
|
+
"kind": "Reference",
|
|
7721
|
+
"text": "PropType",
|
|
7722
|
+
"canonicalReference": "vue!PropType:type"
|
|
7723
|
+
},
|
|
7724
|
+
{
|
|
7725
|
+
"kind": "Content",
|
|
7726
|
+
"text": "<"
|
|
7727
|
+
},
|
|
7728
|
+
{
|
|
7729
|
+
"kind": "Reference",
|
|
7730
|
+
"text": "Partial",
|
|
7731
|
+
"canonicalReference": "!Partial:type"
|
|
7732
|
+
},
|
|
7733
|
+
{
|
|
7734
|
+
"kind": "Content",
|
|
7735
|
+
"text": "<"
|
|
7736
|
+
},
|
|
7737
|
+
{
|
|
7738
|
+
"kind": "Reference",
|
|
7739
|
+
"text": "XEventsTypes",
|
|
7740
|
+
"canonicalReference": "@empathyco/x-components!XEventsTypes:interface"
|
|
7741
|
+
},
|
|
7742
|
+
{
|
|
7743
|
+
"kind": "Content",
|
|
7744
|
+
"text": ">>;\n required: true;\n };\n highlightCurated: {\n type: "
|
|
7745
|
+
},
|
|
7746
|
+
{
|
|
7747
|
+
"kind": "Reference",
|
|
7748
|
+
"text": "BooleanConstructor",
|
|
7749
|
+
"canonicalReference": "!BooleanConstructor:interface"
|
|
7750
|
+
},
|
|
7751
|
+
{
|
|
7752
|
+
"kind": "Content",
|
|
7753
|
+
"text": ";\n };\n}, {\n el: import(\"vue\")."
|
|
7754
|
+
},
|
|
7755
|
+
{
|
|
7756
|
+
"kind": "Reference",
|
|
7757
|
+
"text": "Ref",
|
|
7758
|
+
"canonicalReference": "vue!Ref:interface"
|
|
7759
|
+
},
|
|
7760
|
+
{
|
|
7761
|
+
"kind": "Content",
|
|
7762
|
+
"text": "<"
|
|
7763
|
+
},
|
|
7764
|
+
{
|
|
7765
|
+
"kind": "Reference",
|
|
7766
|
+
"text": "HTMLElement",
|
|
7767
|
+
"canonicalReference": "!HTMLElement:interface"
|
|
7768
|
+
},
|
|
7769
|
+
{
|
|
7770
|
+
"kind": "Content",
|
|
7771
|
+
"text": " | null>;\n filter: import(\"vue\")."
|
|
7772
|
+
},
|
|
7773
|
+
{
|
|
7774
|
+
"kind": "Reference",
|
|
7775
|
+
"text": "ComputedRef",
|
|
7776
|
+
"canonicalReference": "vue!ComputedRef:interface"
|
|
7777
|
+
},
|
|
7778
|
+
{
|
|
7779
|
+
"kind": "Content",
|
|
7780
|
+
"text": "<"
|
|
7781
|
+
},
|
|
7782
|
+
{
|
|
7783
|
+
"kind": "Reference",
|
|
7784
|
+
"text": "BooleanFilter",
|
|
7785
|
+
"canonicalReference": "@empathyco/x-components!BooleanFilter:interface"
|
|
7786
|
+
},
|
|
7787
|
+
{
|
|
7788
|
+
"kind": "Content",
|
|
7789
|
+
"text": " | undefined>;\n emitEvents: () => void;\n dynamicCSSClasses: import(\"vue\")."
|
|
7790
|
+
},
|
|
7791
|
+
{
|
|
7792
|
+
"kind": "Reference",
|
|
7793
|
+
"text": "ComputedRef",
|
|
7794
|
+
"canonicalReference": "vue!ComputedRef:interface"
|
|
7795
|
+
},
|
|
7796
|
+
{
|
|
7797
|
+
"kind": "Content",
|
|
7798
|
+
"text": "<"
|
|
7799
|
+
},
|
|
7800
|
+
{
|
|
7801
|
+
"kind": "Reference",
|
|
7802
|
+
"text": "VueCSSClasses",
|
|
7803
|
+
"canonicalReference": "@empathyco/x-components!VueCSSClasses:type"
|
|
7804
|
+
},
|
|
7805
|
+
{
|
|
7806
|
+
"kind": "Content",
|
|
7807
|
+
"text": ">;\n}, {}, {}, {}, import(\"vue/types/v3-component-options\")."
|
|
7808
|
+
},
|
|
7809
|
+
{
|
|
7810
|
+
"kind": "Reference",
|
|
7811
|
+
"text": "ComponentOptionsMixin",
|
|
7812
|
+
"canonicalReference": "vue!ComponentOptionsMixin:type"
|
|
7813
|
+
},
|
|
7814
|
+
{
|
|
7815
|
+
"kind": "Content",
|
|
7816
|
+
"text": ", import(\"vue/types/v3-component-options\")."
|
|
7817
|
+
},
|
|
7818
|
+
{
|
|
7819
|
+
"kind": "Reference",
|
|
7820
|
+
"text": "ComponentOptionsMixin",
|
|
7821
|
+
"canonicalReference": "vue!ComponentOptionsMixin:type"
|
|
7822
|
+
},
|
|
7823
|
+
{
|
|
7824
|
+
"kind": "Content",
|
|
7825
|
+
"text": ", {}, string, "
|
|
7826
|
+
},
|
|
7827
|
+
{
|
|
7828
|
+
"kind": "Reference",
|
|
7829
|
+
"text": "Readonly",
|
|
7830
|
+
"canonicalReference": "!Readonly:type"
|
|
7831
|
+
},
|
|
7832
|
+
{
|
|
7833
|
+
"kind": "Content",
|
|
7834
|
+
"text": "<import(\"vue\")."
|
|
7835
|
+
},
|
|
7836
|
+
{
|
|
7837
|
+
"kind": "Reference",
|
|
7838
|
+
"text": "ExtractPropTypes",
|
|
7839
|
+
"canonicalReference": "vue!ExtractPropTypes:type"
|
|
7840
|
+
},
|
|
7841
|
+
{
|
|
7842
|
+
"kind": "Content",
|
|
7843
|
+
"text": "<{\n query: {\n type: "
|
|
7844
|
+
},
|
|
7845
|
+
{
|
|
7846
|
+
"kind": "Reference",
|
|
7847
|
+
"text": "StringConstructor",
|
|
7848
|
+
"canonicalReference": "!StringConstructor:interface"
|
|
7849
|
+
},
|
|
7850
|
+
{
|
|
7851
|
+
"kind": "Content",
|
|
7852
|
+
"text": ";\n default: string;\n };\n suggestion: {\n type: "
|
|
7853
|
+
},
|
|
7854
|
+
{
|
|
7855
|
+
"kind": "Reference",
|
|
7856
|
+
"text": "PropType",
|
|
7857
|
+
"canonicalReference": "vue!PropType:type"
|
|
7858
|
+
},
|
|
7859
|
+
{
|
|
7860
|
+
"kind": "Content",
|
|
7861
|
+
"text": "<"
|
|
7862
|
+
},
|
|
7863
|
+
{
|
|
7864
|
+
"kind": "Reference",
|
|
7865
|
+
"text": "Suggestion",
|
|
7866
|
+
"canonicalReference": "@empathyco/x-components!Suggestion:interface"
|
|
7867
|
+
},
|
|
7868
|
+
{
|
|
7869
|
+
"kind": "Content",
|
|
7870
|
+
"text": ">;\n required: true;\n };\n feature: {\n type: "
|
|
7871
|
+
},
|
|
7872
|
+
{
|
|
7873
|
+
"kind": "Reference",
|
|
7874
|
+
"text": "PropType",
|
|
7875
|
+
"canonicalReference": "vue!PropType:type"
|
|
7876
|
+
},
|
|
7877
|
+
{
|
|
7878
|
+
"kind": "Content",
|
|
7879
|
+
"text": "<"
|
|
7880
|
+
},
|
|
7881
|
+
{
|
|
7882
|
+
"kind": "Reference",
|
|
7883
|
+
"text": "QueryFeature",
|
|
7884
|
+
"canonicalReference": "@empathyco/x-components!QueryFeature:type"
|
|
7885
|
+
},
|
|
7886
|
+
{
|
|
7887
|
+
"kind": "Content",
|
|
7888
|
+
"text": ">;\n };\n suggestionSelectedEvents: {\n type: "
|
|
7889
|
+
},
|
|
7890
|
+
{
|
|
7891
|
+
"kind": "Reference",
|
|
7892
|
+
"text": "PropType",
|
|
7893
|
+
"canonicalReference": "vue!PropType:type"
|
|
7894
|
+
},
|
|
7895
|
+
{
|
|
7896
|
+
"kind": "Content",
|
|
7897
|
+
"text": "<"
|
|
7898
|
+
},
|
|
7899
|
+
{
|
|
7900
|
+
"kind": "Reference",
|
|
7901
|
+
"text": "Partial",
|
|
7902
|
+
"canonicalReference": "!Partial:type"
|
|
7903
|
+
},
|
|
7904
|
+
{
|
|
7905
|
+
"kind": "Content",
|
|
7906
|
+
"text": "<"
|
|
7907
|
+
},
|
|
7908
|
+
{
|
|
7909
|
+
"kind": "Reference",
|
|
7910
|
+
"text": "XEventsTypes",
|
|
7911
|
+
"canonicalReference": "@empathyco/x-components!XEventsTypes:interface"
|
|
7912
|
+
},
|
|
7913
|
+
{
|
|
7914
|
+
"kind": "Content",
|
|
7915
|
+
"text": ">>;\n required: true;\n };\n highlightCurated: {\n type: "
|
|
7916
|
+
},
|
|
7917
|
+
{
|
|
7918
|
+
"kind": "Reference",
|
|
7919
|
+
"text": "BooleanConstructor",
|
|
7920
|
+
"canonicalReference": "!BooleanConstructor:interface"
|
|
7921
|
+
},
|
|
7922
|
+
{
|
|
7923
|
+
"kind": "Content",
|
|
7924
|
+
"text": ";\n };\n}>>, {\n query: string;\n highlightCurated: boolean;\n}>"
|
|
7992
7925
|
}
|
|
7993
7926
|
],
|
|
7994
|
-
"
|
|
7927
|
+
"fileUrlPath": "dist/types/components/suggestions/base-suggestion.vue.d.ts",
|
|
7928
|
+
"isReadonly": true,
|
|
7929
|
+
"releaseTag": "Public",
|
|
7930
|
+
"name": "BaseSuggestion",
|
|
7931
|
+
"variableTypeTokenRange": {
|
|
7995
7932
|
"startIndex": 1,
|
|
7996
|
-
"endIndex":
|
|
7997
|
-
}
|
|
7998
|
-
"implementsTokenRanges": []
|
|
7933
|
+
"endIndex": 60
|
|
7934
|
+
}
|
|
7999
7935
|
},
|
|
8000
7936
|
{
|
|
8001
7937
|
"kind": "Class",
|