@gen3/core 0.12.64 → 0.12.66
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/LICENSE +201 -0
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/dts/features/facets/types.d.ts +8 -0
- package/dist/dts/features/facets/types.d.ts.map +1 -1
- package/dist/dts/features/filters/filters.d.ts.map +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +8 -0
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -19748,6 +19748,14 @@ interface FacetDefinition {
|
|
|
19748
19748
|
* @defaultValue `value-dsc`
|
|
19749
19749
|
*/
|
|
19750
19750
|
readonly defaultSort?: FacetSortType;
|
|
19751
|
+
/**
|
|
19752
|
+
* Whether an enum facet lets users choose how multiple selected values are
|
|
19753
|
+
* combined: match any (`or`) or match all (`and`).
|
|
19754
|
+
*
|
|
19755
|
+
* @remarks Only meaningful when {@link FacetDefinition.type} is `enum`.
|
|
19756
|
+
* @defaultValue `false`
|
|
19757
|
+
*/
|
|
19758
|
+
readonly showMatchModeSelector?: boolean;
|
|
19751
19759
|
/**
|
|
19752
19760
|
* Overrides the per-value label rendered for this facet when set.
|
|
19753
19761
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gen3/core",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.66",
|
|
4
4
|
"author": "CTDS",
|
|
5
5
|
"description": "Core module for Gen3.2. Packages provides an interface for interacting with the gen3 API, various types, and a redux store for managing state.",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -81,5 +81,6 @@
|
|
|
81
81
|
},
|
|
82
82
|
"files": [
|
|
83
83
|
"dist"
|
|
84
|
-
]
|
|
84
|
+
],
|
|
85
|
+
"gitHead": "5e3fe2dc523de09a95e9b552be773c9f29d5ecb9"
|
|
85
86
|
}
|