@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.
Files changed (60) hide show
  1. package/base-modules/admission/context/use-admission-module.js +1 -1
  2. package/base-modules/admission/filter.js +1 -1
  3. package/base-modules/admission/form.js +1 -1
  4. package/base-modules/attendance/context.js +1 -1
  5. package/base-modules/attendance/form.js +1 -1
  6. package/base-modules/attendance/more-actions.js +1 -1
  7. package/base-modules/campus/context.js +1 -1
  8. package/base-modules/class/cache.js +1 -2
  9. package/base-modules/class/context.js +1 -1
  10. package/base-modules/class/more-actions.js +1 -1
  11. package/base-modules/course/context.js +1 -1
  12. package/base-modules/course/form.js +1 -1
  13. package/base-modules/discount-code/cache.js +1 -1
  14. package/base-modules/discount-code/context.js +1 -1
  15. package/base-modules/discount-code/form.js +1 -1
  16. package/base-modules/enrollment/context.js +1 -1
  17. package/base-modules/enrollment/form.js +1 -1
  18. package/base-modules/enrollment/more-actions.js +1 -1
  19. package/base-modules/expense/context.js +1 -1
  20. package/base-modules/expense/filter.js +2 -2
  21. package/base-modules/expense/form.js +1 -1
  22. package/base-modules/expense/more-actions.js +1 -1
  23. package/base-modules/family/context.js +1 -1
  24. package/base-modules/family-member/context.js +1 -1
  25. package/base-modules/fee-structure/cache.js +1 -1
  26. package/base-modules/fee-structure/context.js +1 -1
  27. package/base-modules/fee-structure/form.js +2 -2
  28. package/base-modules/fee-structure/more-actions.js +1 -1
  29. package/base-modules/rbac/context.js +1 -1
  30. package/base-modules/school/cache.js +1 -1
  31. package/base-modules/school/context.js +1 -1
  32. package/base-modules/school/form.js +1 -1
  33. package/base-modules/section/cache.js +1 -2
  34. package/base-modules/section/context.js +1 -1
  35. package/base-modules/section/form.js +1 -1
  36. package/base-modules/section/more-actions.js +1 -1
  37. package/base-modules/student-fee/context/use-student-fee-module.js +1 -1
  38. package/base-modules/student-fee/filter.js +1 -1
  39. package/base-modules/student-fee/form.js +1 -1
  40. package/base-modules/student-fee/more-actions.js +1 -1
  41. package/base-modules/student-profile/cache.js +1 -2
  42. package/base-modules/student-profile/context/use-student-profile-module.js +1 -1
  43. package/base-modules/student-profile/filter.js +1 -1
  44. package/base-modules/student-profile/form.js +2 -2
  45. package/base-modules/subject/cache.js +1 -2
  46. package/base-modules/subject/context.js +1 -1
  47. package/base-modules/subject/more-actions.js +1 -1
  48. package/base-modules/teacher/cache.js +1 -1
  49. package/base-modules/teacher/context.js +1 -1
  50. package/base-modules/teacher/form.js +1 -1
  51. package/base-modules/teacher/more-actions.js +1 -1
  52. package/base-modules/user/cache.js +1 -2
  53. package/base-modules/user/context/use-user-module.js +1 -1
  54. package/base-modules/user/form.js +1 -1
  55. package/base-modules/workspace/cache.js +1 -1
  56. package/base-modules/workspace/context.js +1 -1
  57. package/base-modules/workspace/form.js +1 -1
  58. package/base-modules/workspace-user/context.js +1 -1
  59. package/package.json +1 -1
  60. 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 "@/constants";
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 "@/constants";
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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appcorp/fusion-storybook",
3
- "version": "0.2.54",
3
+ "version": "0.2.55",
4
4
  "scripts": {
5
5
  "build-storybook": "storybook build",
6
6
  "build:next": "next build",