@mappedin/viewer 0.58.1 → 0.58.2-167f06f.0
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/CLAUDE.md +12 -0
- package/dist/index.js +10181 -10171
- package/dist/types/src/lib/theme/index.d.ts +2 -1
- package/dist/types/src/lib/theme/utils.d.ts +5 -1
- package/dist/types/src/lib/types/options.d.ts +4 -0
- package/package.json +1 -1
package/CLAUDE.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Viewer Package
|
|
2
|
+
|
|
3
|
+
## Folder Structure
|
|
4
|
+
|
|
5
|
+
New code should almost always live in one the following `src/` folders.
|
|
6
|
+
|
|
7
|
+
- `components/` Re-usable react components.
|
|
8
|
+
- `lib/` Hooks, small re-usable functions, self-contained custom packages.
|
|
9
|
+
- `locales/` Translation files for i18n.
|
|
10
|
+
- `states/` Window level entry-points to the entire UI.
|
|
11
|
+
- `stores/` MobX stores managing application state.
|
|
12
|
+
- `test-utils/` Unit testing utilities.
|