@layers-app/shared 0.0.38 → 0.0.39

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 (50) hide show
  1. package/dist/KanbanLayout-k814Ysrn.js +297 -0
  2. package/dist/components/AppContainer/types.d.ts +2 -0
  3. package/dist/components/CircleColorPicker/CircleColorPicker.d.ts +7 -0
  4. package/dist/components/Copyright/index.d.ts +2 -1
  5. package/dist/components/EmojiPicker/EmojiPanel.d.ts +1 -1
  6. package/dist/components/EmojiPicker/EmojiPicker.d.ts +9 -1
  7. package/dist/components/EmojiPicker/IconsPanel.d.ts +1 -1
  8. package/dist/components/EmojiPicker/custom-icons/StatusCancel.d.ts +2 -0
  9. package/dist/components/EmojiPicker/custom-icons/StatusDone.d.ts +2 -0
  10. package/dist/components/EmojiPicker/custom-icons/StatusProgress00.d.ts +2 -0
  11. package/dist/components/EmojiPicker/custom-icons/StatusProgress10.d.ts +2 -0
  12. package/dist/components/EmojiPicker/custom-icons/StatusProgress100.d.ts +2 -0
  13. package/dist/components/EmojiPicker/custom-icons/StatusProgress20.d.ts +2 -0
  14. package/dist/components/EmojiPicker/custom-icons/StatusProgress30.d.ts +2 -0
  15. package/dist/components/EmojiPicker/custom-icons/StatusProgress40.d.ts +2 -0
  16. package/dist/components/EmojiPicker/custom-icons/StatusProgress50.d.ts +2 -0
  17. package/dist/components/EmojiPicker/custom-icons/StatusProgress60.d.ts +2 -0
  18. package/dist/components/EmojiPicker/custom-icons/StatusProgress70.d.ts +2 -0
  19. package/dist/components/EmojiPicker/custom-icons/StatusProgress80.d.ts +2 -0
  20. package/dist/components/EmojiPicker/custom-icons/StatusProgress90.d.ts +2 -0
  21. package/dist/components/EmojiPicker/custom-icons/customIcons.d.ts +12 -0
  22. package/dist/components/EntityTitle/EntityTitle.d.ts +17 -0
  23. package/dist/components/FilePicker/FilePicker.d.ts +4 -3
  24. package/dist/components/NoData/NoData.d.ts +129 -22
  25. package/dist/components/ProjectIcon/ProjectIcon.d.ts +10 -1
  26. package/dist/components/UserAvatar/index.d.ts +1 -2
  27. package/dist/constants.d.ts +1 -0
  28. package/dist/emoji-categorized-CRsMUQyD.js +4 -0
  29. package/dist/helpers/filterHierarchyByTypes.d.ts +15 -0
  30. package/dist/helpers/getRandomIconColor.d.ts +1 -0
  31. package/dist/icons.min-wo13YUY4.js +4 -0
  32. package/dist/index-BHgJVazX.js +81164 -0
  33. package/dist/index.d.ts +5 -0
  34. package/dist/index.js +183 -175
  35. package/dist/index.umd.cjs +60 -1206
  36. package/dist/store/onboarding.d.ts +2 -2
  37. package/package.json +2 -2
  38. package/dist/KanbanLayout-_hW8P-S9.js +0 -287
  39. package/dist/TimeLine-DCVt4pFB.js +0 -198
  40. package/dist/components/OnBoarding/steps/DifferentLayouts/TimeLine.d.ts +0 -2
  41. package/dist/components/TemplatesModal/components/SelectedTemplate.d.ts +0 -7
  42. package/dist/components/TemplatesModal/components/Template.d.ts +0 -9
  43. package/dist/components/TemplatesModal/components/Templates.d.ts +0 -7
  44. package/dist/components/TemplatesModal/data.d.ts +0 -13
  45. package/dist/components/TemplatesModal/index.d.ts +0 -7
  46. package/dist/components/TemplatesModal/types.d.ts +0 -16
  47. package/dist/emoji-categorized-DAOdcF53.js +0 -4
  48. package/dist/icons.min-Chyr-bjL.js +0 -4
  49. package/dist/index-B17e6b8n.js +0 -67033
  50. package/dist/index.esm-Ci1yhzNS.js +0 -6814
@@ -0,0 +1,15 @@
1
+ export interface HierarchyItem {
2
+ id: string;
3
+ icon: string | null;
4
+ title: string;
5
+ createdAt: string;
6
+ updatedAt: string;
7
+ createdBy: string;
8
+ type: string;
9
+ color: null;
10
+ parentId: null;
11
+ parentType: null | string;
12
+ roleType: string;
13
+ children: HierarchyItem[];
14
+ }
15
+ export declare const filterHierarchyByTypes: (nodes: HierarchyItem[], allowedTypes: string[]) => HierarchyItem[];
@@ -0,0 +1 @@
1
+ export declare const getRandomIconColor: () => string;