@layers-app/shared 0.4.3 → 0.4.4

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 (57) hide show
  1. package/dist/components/AnimatedFigurePage/AnimatedFigurePage.module.css.js +13 -13
  2. package/dist/components/AppContainer/AppContainer.module.css.js +1 -1
  3. package/dist/components/AppContainer/components/menus/HelpMenu/HelpMenu.module.css.js +1 -1
  4. package/dist/components/AppShell/AppShell.module.css.js +5 -5
  5. package/dist/components/AttachmentsGalleryModal/components/ShakePlayer/ShakaPlayer.module.css.js +4 -4
  6. package/dist/components/AttachmentsGalleryModal/styles.module.css.js +7 -7
  7. package/dist/components/AttachmentsPreview/AttachmentsPreview.module.css.js +1 -1
  8. package/dist/components/BouncingLogo/BouncingLogo.module.css.js +8 -8
  9. package/dist/components/CollapsibleContainer/CollapsibleContainer.module.css.js +1 -1
  10. package/dist/components/ColorPicker/ColorPicker.module.css.js +24 -24
  11. package/dist/components/CommentComposer/CommentComposer.module.css.js +1 -1
  12. package/dist/components/CommentComposer/index.d.ts.map +1 -1
  13. package/dist/components/CommentComposer/index.js +53 -54
  14. package/dist/components/CommunitiesDialog/styles.module.css.js +1 -1
  15. package/dist/components/Copyright/Copyright.module.css.js +1 -1
  16. package/dist/components/CustomKBD/CustomKBD.module.css.js +1 -1
  17. package/dist/components/EmojiPicker/EmojiPicker.module.css.js +8 -8
  18. package/dist/components/EntityTitle/EntityTitle.module.css.js +1 -1
  19. package/dist/components/ErrorPage/components/Error404.d.ts.map +1 -1
  20. package/dist/components/FeatureProgress/FeatureProgress.module.css.js +49 -49
  21. package/dist/components/FilePicker/FilePicker.module.css.js +10 -10
  22. package/dist/components/FormViewer/FormViewer.module.css.js +20 -20
  23. package/dist/components/FormViewer/components/fields/DragOptions/DragOptions.module.css.js +1 -1
  24. package/dist/components/FormViewer/components/fields/DropdownField/DropdownField.module.css.js +1 -1
  25. package/dist/components/FormViewer/components/fields/EditableContent/EditableContent.module.css.js +1 -1
  26. package/dist/components/FormViewer/components/fields/SelectableCard/SelectableCard.module.css.js +8 -8
  27. package/dist/components/FormViewer/components/fields/UploadField/UploadFile/UploadFile.module.css.js +4 -4
  28. package/dist/components/FormViewer/store/formStore.d.ts.map +1 -1
  29. package/dist/components/ImageCropper/ImageCropper.module.css.js +38 -38
  30. package/dist/components/IntegrationFlowAnimation/IntegrationFlowAnimation.module.css.js +11 -11
  31. package/dist/components/LanguagePicker/LanguagePicker.module.css.js +1 -1
  32. package/dist/components/Loaders/styles.module.css.js +6 -6
  33. package/dist/components/MediaLibrary/MediaLibrary.module.css.js +2 -2
  34. package/dist/components/MusicPlayerBar/MusicPlayerBar.module.css.js +36 -36
  35. package/dist/components/MusicPlayerBar/components/VolumePopover.d.ts.map +1 -1
  36. package/dist/components/MusicPlayerBar/components/VolumePopover.js +22 -20
  37. package/dist/components/NavMenu/NavMenu.module.css.js +12 -12
  38. package/dist/components/NavbarResizer/NavbarResizer.module.css.js +2 -2
  39. package/dist/components/NotPublicPanel/NotPublicPanel.module.css.js +11 -11
  40. package/dist/components/Notification/Notification.module.css.js +1 -1
  41. package/dist/components/SearchFilters/SearchFilters.module.css.js +1 -1
  42. package/dist/components/SettingsSection/styles.module.css.js +1 -1
  43. package/dist/components/StorageUsageProgress/StorageUsageProgress.module.css.js +1 -1
  44. package/dist/components/TreeIndent/TreeIndent.module.css.js +4 -4
  45. package/dist/components/table/FrontTable.d.ts.map +1 -1
  46. package/dist/components/table/hooks/useColumnsResizing.d.ts.map +1 -1
  47. package/dist/helpers/showFeatureFeedback.module.css.js +4 -4
  48. package/dist/helpers/showNotifications.module.css.js +1 -1
  49. package/dist/hooks/useOfficePreviewAvailable.d.ts +2 -0
  50. package/dist/hooks/useOfficePreviewAvailable.d.ts.map +1 -0
  51. package/dist/hooks/useOfficePreviewAvailable.js +20 -0
  52. package/dist/index.css +1 -1
  53. package/dist/index.d.ts +1 -0
  54. package/dist/index.d.ts.map +1 -1
  55. package/dist/index.js +266 -264
  56. package/docs/README.md +499 -499
  57. package/package.json +75 -75
package/package.json CHANGED
@@ -1,75 +1,75 @@
1
- {
2
- "name": "@layers-app/shared",
3
- "version": "0.4.3",
4
- "description": "Shared components, hooks, and utilities for Layers application",
5
- "files": [
6
- "dist",
7
- "docs"
8
- ],
9
- "publishConfig": {
10
- "access": "public"
11
- },
12
- "type": "module",
13
- "main": "dist/index.js",
14
- "module": "dist/index.js",
15
- "types": "dist/index.d.ts",
16
- "sideEffects": [
17
- "**/*.css"
18
- ],
19
- "exports": {
20
- ".": {
21
- "import": "./dist/index.js",
22
- "types": "./dist/index.d.ts"
23
- },
24
- "./styles": "./dist/index.css",
25
- "./dist/*": "./dist/*",
26
- "./assets/*": "./src/assets/*",
27
- "./package.json": "./package.json"
28
- },
29
- "scripts": {
30
- "build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 vite build && tsc --project tsconfig.build.json",
31
- "check:ts": "tsc --noEmit",
32
- "prePublish": "vite build && npm version patch",
33
- "watch": "vite build --watch"
34
- },
35
- "peerDependencies": {
36
- "@layers-app/onboarding-tour": "^4.0.0",
37
- "@dnd-kit/core": "^6.0.0",
38
- "@dnd-kit/sortable": "^8.0.0",
39
- "@dnd-kit/utilities": "^3.2.0",
40
- "@mantine/core": ">=9.0.0",
41
- "@mantine/dates": ">=9.0.0",
42
- "@mantine/dropzone": ">=9.0.0",
43
- "@mantine/form": ">=9.0.0",
44
- "@mantine/hooks": ">=9.0.0",
45
- "@mantine/modals": ">=9.0.0",
46
- "@mantine/notifications": ">=9.0.0",
47
- "@reduxjs/toolkit": "^2.2.7",
48
- "@tabler/icons-react": "^3.7.0",
49
- "@tabler/icons-sprite": "^3.29.0",
50
- "@tanstack/react-query": "^5.52.2",
51
- "@tanstack/virtual-core": "^3.0.0",
52
- "chroma-js": "^3.1.2",
53
- "date-fns": "^4.1.0",
54
- "@layers-app/draggable-ui": "^0.0.1",
55
- "emoji-mart": "^5.6.0",
56
- "@emoji-mart/data": "^1.2.1",
57
- "exceljs": "^4.3.0",
58
- "framer-motion": "^11.3.24",
59
- "fuse.js": "^7.1.0",
60
- "i18next": "^25.5.2",
61
- "lodash-es": "^4.17.21",
62
- "query-string": "^9.1.0",
63
- "react": "^19.2.0",
64
- "react-dom": "^19.2.0",
65
- "react-helmet": "^6.1.0",
66
- "react-i18next": "^15.7.3",
67
- "react-router-dom": "^7.5.2",
68
- "react-zoom-pan-pinch": "^3.0.0",
69
- "shaka-player": "^4.0.0",
70
- "shaka-player-react": "^1.1.5",
71
- "styled-components": "^6.0.0",
72
- "zod": "^4.0.0",
73
- "zustand": "^5.0.3"
74
- }
75
- }
1
+ {
2
+ "name": "@layers-app/shared",
3
+ "version": "0.4.4",
4
+ "description": "Shared components, hooks, and utilities for Layers application",
5
+ "files": [
6
+ "dist",
7
+ "docs"
8
+ ],
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "type": "module",
13
+ "main": "dist/index.js",
14
+ "module": "dist/index.js",
15
+ "types": "dist/index.d.ts",
16
+ "sideEffects": [
17
+ "**/*.css"
18
+ ],
19
+ "exports": {
20
+ ".": {
21
+ "import": "./dist/index.js",
22
+ "types": "./dist/index.d.ts"
23
+ },
24
+ "./styles": "./dist/index.css",
25
+ "./dist/*": "./dist/*",
26
+ "./assets/*": "./src/assets/*",
27
+ "./package.json": "./package.json"
28
+ },
29
+ "scripts": {
30
+ "build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 vite build && tsc --project tsconfig.build.json",
31
+ "check:ts": "tsc --noEmit",
32
+ "prePublish": "vite build && npm version patch",
33
+ "watch": "vite build --watch"
34
+ },
35
+ "peerDependencies": {
36
+ "@layers-app/onboarding-tour": "^4.0.0",
37
+ "@dnd-kit/core": "^6.0.0",
38
+ "@dnd-kit/sortable": "^8.0.0",
39
+ "@dnd-kit/utilities": "^3.2.0",
40
+ "@mantine/core": ">=9.0.0",
41
+ "@mantine/dates": ">=9.0.0",
42
+ "@mantine/dropzone": ">=9.0.0",
43
+ "@mantine/form": ">=9.0.0",
44
+ "@mantine/hooks": ">=9.0.0",
45
+ "@mantine/modals": ">=9.0.0",
46
+ "@mantine/notifications": ">=9.0.0",
47
+ "@reduxjs/toolkit": "^2.2.7",
48
+ "@tabler/icons-react": "^3.7.0",
49
+ "@tabler/icons-sprite": "^3.29.0",
50
+ "@tanstack/react-query": "^5.52.2",
51
+ "@tanstack/virtual-core": "^3.0.0",
52
+ "chroma-js": "^3.1.2",
53
+ "date-fns": "^4.1.0",
54
+ "@layers-app/draggable-ui": "^0.0.1",
55
+ "emoji-mart": "^5.6.0",
56
+ "@emoji-mart/data": "^1.2.1",
57
+ "exceljs": "^4.3.0",
58
+ "framer-motion": "^11.3.24",
59
+ "fuse.js": "^7.1.0",
60
+ "i18next": "^25.5.2",
61
+ "lodash-es": "^4.17.21",
62
+ "query-string": "^9.1.0",
63
+ "react": "^19.2.0",
64
+ "react-dom": "^19.2.0",
65
+ "react-helmet": "^6.1.0",
66
+ "react-i18next": "^15.7.3",
67
+ "react-router-dom": "^7.5.2",
68
+ "react-zoom-pan-pinch": "^3.0.0",
69
+ "shaka-player": "^4.0.0",
70
+ "shaka-player-react": "^1.1.5",
71
+ "styled-components": "^6.0.0",
72
+ "zod": "^4.0.0",
73
+ "zustand": "^5.0.3"
74
+ }
75
+ }