dce-reactkit 4.1.6 → 4.2.0-beta-select-admin-check.1
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/cjs/index.js +7 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/constants/SELECT_ADMIN_CHECK_ROUTE.d.ts +6 -0
- package/dist/cjs/types/index.d.ts +2 -1
- package/dist/esm/index.js +7 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/constants/SELECT_ADMIN_CHECK_ROUTE.d.ts +6 -0
- package/dist/esm/types/index.d.ts +2 -1
- package/dist/index.d.ts +7 -1
- package/package.json +1 -1
- package/src/constants/SELECT_ADMIN_CHECK_ROUTE.ts +9 -0
- package/src/index.ts +2 -0
package/dist/cjs/index.js
CHANGED
|
@@ -15353,6 +15353,12 @@ const LOG_REVIEW_ROUTE_PATH_PREFIX = `/admin${ROUTE_PATH_PREFIX}/logs`;
|
|
|
15353
15353
|
*/
|
|
15354
15354
|
const LOG_REVIEW_STATUS_ROUTE = `${ROUTE_PATH_PREFIX}/logs/access_allowed`;
|
|
15355
15355
|
|
|
15356
|
+
/**
|
|
15357
|
+
* Route for checking if the current user is a select admin
|
|
15358
|
+
* @author Gabe Abrams
|
|
15359
|
+
*/
|
|
15360
|
+
const SELECT_ADMIN_CHECK_ROUTE = `${ROUTE_PATH_PREFIX}/select-admin/is-select-admin`;
|
|
15361
|
+
|
|
15356
15362
|
// True if user is on mobile or tablet
|
|
15357
15363
|
let cachedResult = undefined;
|
|
15358
15364
|
/**
|
|
@@ -16474,6 +16480,7 @@ exports.PopPendingMark = PopPendingMark;
|
|
|
16474
16480
|
exports.PopSuccessMark = PopSuccessMark;
|
|
16475
16481
|
exports.RadioButton = RadioButton;
|
|
16476
16482
|
exports.ReactKitErrorCode = ReactKitErrorCode$1;
|
|
16483
|
+
exports.SELECT_ADMIN_CHECK_ROUTE = SELECT_ADMIN_CHECK_ROUTE;
|
|
16477
16484
|
exports.SimpleDateChooser = SimpleDateChooser;
|
|
16478
16485
|
exports.SimpleTimeChooser = SimpleTimeChooser;
|
|
16479
16486
|
exports.TabBox = TabBox;
|