@appcorp/fusion-storybook 0.2.54 → 0.2.55
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/base-modules/admission/context/use-admission-module.js +1 -1
- package/base-modules/admission/filter.js +1 -1
- package/base-modules/admission/form.js +1 -1
- package/base-modules/attendance/context.js +1 -1
- package/base-modules/attendance/form.js +1 -1
- package/base-modules/attendance/more-actions.js +1 -1
- package/base-modules/campus/context.js +1 -1
- package/base-modules/class/cache.js +1 -2
- package/base-modules/class/context.js +1 -1
- package/base-modules/class/more-actions.js +1 -1
- package/base-modules/course/context.js +1 -1
- package/base-modules/course/form.js +1 -1
- package/base-modules/discount-code/cache.js +1 -1
- package/base-modules/discount-code/context.js +1 -1
- package/base-modules/discount-code/form.js +1 -1
- package/base-modules/enrollment/context.js +1 -1
- package/base-modules/enrollment/form.js +1 -1
- package/base-modules/enrollment/more-actions.js +1 -1
- package/base-modules/expense/context.js +1 -1
- package/base-modules/expense/filter.js +2 -2
- package/base-modules/expense/form.js +1 -1
- package/base-modules/expense/more-actions.js +1 -1
- package/base-modules/family/context.js +1 -1
- package/base-modules/family-member/context.js +1 -1
- package/base-modules/fee-structure/cache.js +1 -1
- package/base-modules/fee-structure/context.js +1 -1
- package/base-modules/fee-structure/form.js +2 -2
- package/base-modules/fee-structure/more-actions.js +1 -1
- package/base-modules/rbac/context.js +1 -1
- package/base-modules/school/cache.js +1 -1
- package/base-modules/school/context.js +1 -1
- package/base-modules/school/form.js +1 -1
- package/base-modules/section/cache.js +1 -2
- package/base-modules/section/context.js +1 -1
- package/base-modules/section/form.js +1 -1
- package/base-modules/section/more-actions.js +1 -1
- package/base-modules/student-fee/context/use-student-fee-module.js +1 -1
- package/base-modules/student-fee/filter.js +1 -1
- package/base-modules/student-fee/form.js +1 -1
- package/base-modules/student-fee/more-actions.js +1 -1
- package/base-modules/student-profile/cache.js +1 -2
- package/base-modules/student-profile/context/use-student-profile-module.js +1 -1
- package/base-modules/student-profile/filter.js +1 -1
- package/base-modules/student-profile/form.js +2 -2
- package/base-modules/subject/cache.js +1 -2
- package/base-modules/subject/context.js +1 -1
- package/base-modules/subject/more-actions.js +1 -1
- package/base-modules/teacher/cache.js +1 -1
- package/base-modules/teacher/context.js +1 -1
- package/base-modules/teacher/form.js +1 -1
- package/base-modules/teacher/more-actions.js +1 -1
- package/base-modules/user/cache.js +1 -2
- package/base-modules/user/context/use-user-module.js +1 -1
- package/base-modules/user/form.js +1 -1
- package/base-modules/workspace/cache.js +1 -1
- package/base-modules/workspace/context.js +1 -1
- package/base-modules/workspace/form.js +1 -1
- package/base-modules/workspace-user/context.js +1 -1
- package/package.json +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
|
@@ -13,7 +13,7 @@ import { EnhancedTextarea } from "@appcorp/shadcn/components/enhanced-textarea";
|
|
|
13
13
|
import { useEnhancedCombobox } from "@appcorp/shadcn/hooks/use-enhanced-combobox";
|
|
14
14
|
import { Shield, Eye, EyeOff } from "lucide-react";
|
|
15
15
|
import { secretKeys } from "./constants";
|
|
16
|
-
import { WORKSPACE_API_ROUTES } from "
|
|
16
|
+
import { WORKSPACE_API_ROUTES } from "../../constants";
|
|
17
17
|
const SecretsEditor = ({ secrets, errors, onChange, secretPlaceholder, }) => {
|
|
18
18
|
const [visibleMap, setVisibleMap] = useState(() => Object.fromEntries(secretKeys.map((k) => [k, false])));
|
|
19
19
|
const toggle = (key) => setVisibleMap((s) => (Object.assign(Object.assign({}, s), { [key]: !s[key] })));
|
|
@@ -26,7 +26,7 @@ import { useDebounce } from "@react-pakistan/util-functions/hooks/use-debounce";
|
|
|
26
26
|
import { createGenericModule } from "@react-pakistan/util-functions/factory/generic-module-factory";
|
|
27
27
|
import { DRAWER_TYPES } from "@react-pakistan/util-functions/factory/generic-component-factory";
|
|
28
28
|
import { pageLimit } from "./constants";
|
|
29
|
-
import { WORKSPACE_USER_API_ROUTES } from "
|
|
29
|
+
import { WORKSPACE_USER_API_ROUTES } from "../../constants";
|
|
30
30
|
import { workspaceUserFormValidation } from "./validate";
|
|
31
31
|
import { generateThemeToast, TOAST_VARIANT, } from "@appcorp/shadcn/lib/toast-utils";
|
|
32
32
|
import { useTranslations } from "next-intl";
|