@coxwave/tap-kit-types 2.9.2 → 2.9.4
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/index.d.ts +11 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -207,7 +207,17 @@ type FeatureFlagKey =
|
|
|
207
207
|
* Enable/disable PDF download button in material viewer
|
|
208
208
|
* @default true (download enabled)
|
|
209
209
|
*/
|
|
210
|
-
"material.pdf.download"
|
|
210
|
+
"material.pdf.download"
|
|
211
|
+
/**
|
|
212
|
+
* Enable/disable streak widget on home page
|
|
213
|
+
* @default false (disabled, feature in development)
|
|
214
|
+
*/
|
|
215
|
+
| "home.streak.enabled"
|
|
216
|
+
/**
|
|
217
|
+
* Enable/disable flashcard widget on home page
|
|
218
|
+
* @default false (disabled, feature in development)
|
|
219
|
+
*/
|
|
220
|
+
| "home.flashcard.enabled";
|
|
211
221
|
/**
|
|
212
222
|
* Feature flags object type
|
|
213
223
|
*
|