@trackunit/react-core-contexts-api 0.2.105 → 0.2.107
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/index.cjs.js +6 -0
- package/index.esm.js +6 -0
- package/package.json +1 -1
- package/src/environmentContext.d.ts +1 -0
- package/src/userSubscriptionContext.d.ts +6 -0
package/index.cjs.js
CHANGED
@@ -185,6 +185,12 @@ const UserSubscriptionPackage = {
|
|
185
185
|
INSIGHT: "INSIGHT",
|
186
186
|
VIEW: "VIEW",
|
187
187
|
NONE: "NONE",
|
188
|
+
EXPLORE: "Explore",
|
189
|
+
EVOLVE: "Evolve",
|
190
|
+
EXPAND: "Expand",
|
191
|
+
LINK: "Link",
|
192
|
+
LIFT: "Lift",
|
193
|
+
LEAP: "Leap",
|
188
194
|
};
|
189
195
|
|
190
196
|
exports.SystemOfMeasurement = SystemOfMeasurement;
|
package/index.esm.js
CHANGED
@@ -181,6 +181,12 @@ const UserSubscriptionPackage = {
|
|
181
181
|
INSIGHT: "INSIGHT",
|
182
182
|
VIEW: "VIEW",
|
183
183
|
NONE: "NONE",
|
184
|
+
EXPLORE: "Explore",
|
185
|
+
EVOLVE: "Evolve",
|
186
|
+
EXPAND: "Expand",
|
187
|
+
LINK: "Link",
|
188
|
+
LIFT: "Lift",
|
189
|
+
LEAP: "Leap",
|
184
190
|
};
|
185
191
|
|
186
192
|
export { AssetSortByProperty, SiteSortByProperty, SortOrder, SystemOfMeasurement, TimeZonePreference, UserSubscriptionPackage, assetHomePageIds, createEvent, isIrisOptions, siteHomePageIds, validateStringAsAssetSortByProperty, validateStringAsSiteSortByProperty };
|
package/package.json
CHANGED
@@ -31,6 +31,12 @@ export declare const UserSubscriptionPackage: {
|
|
31
31
|
readonly INSIGHT: "INSIGHT";
|
32
32
|
readonly VIEW: "VIEW";
|
33
33
|
readonly NONE: "NONE";
|
34
|
+
readonly EXPLORE: "Explore";
|
35
|
+
readonly EVOLVE: "Evolve";
|
36
|
+
readonly EXPAND: "Expand";
|
37
|
+
readonly LINK: "Link";
|
38
|
+
readonly LIFT: "Lift";
|
39
|
+
readonly LEAP: "Leap";
|
34
40
|
};
|
35
41
|
export type UserSubscriptionPackageType = keyof typeof UserSubscriptionPackage;
|
36
42
|
export interface IFeature {
|