wenay-react2 1.0.46 → 1.0.48
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/README.md +17 -15
- package/doc/EXAMPLE_USAGE.md +969 -969
- package/doc/PROJECT_FUNCTIONALITY.md +403 -403
- package/doc/PROJECT_RULES.md +27 -27
- package/doc/WENAY_REACT2_RENAMES.md +170 -170
- package/doc/changes/v1.0.35.md +18 -18
- package/doc/changes/v1.0.38.md +37 -37
- package/doc/changes/v1.0.39.md +23 -23
- package/doc/changes/v1.0.40.md +14 -14
- package/doc/changes/v1.0.41.md +35 -35
- package/doc/changes/v1.0.42.md +26 -26
- package/doc/changes/v1.0.43.md +10 -10
- package/doc/changes/v1.0.44.md +14 -14
- package/doc/changes/v1.0.45.md +8 -8
- package/doc/changes/v1.0.46.md +11 -11
- package/doc/changes/v1.0.47.md +9 -0
- package/doc/changes/v1.0.48.md +8 -0
- package/doc/examples/README.md +4 -4
- package/doc/examples/peer-call-media.tsx +7 -7
- package/doc/examples/stand.tsx +5 -5
- package/doc/native.md +37 -0
- package/doc/progress/README.md +13 -13
- package/doc/progress/architecture-fix-queue.md +74 -74
- package/doc/progress/column-state-present-gate.md +28 -28
- package/doc/progress/common2-adoption-1.0.73.md +28 -28
- package/doc/progress/common2-adoption-1.0.74.md +24 -24
- package/doc/progress/hook-controller-opportunities.md +363 -363
- package/doc/progress/hook-extraction-audit.md +195 -195
- package/doc/progress/public-surface-normalization.md +351 -351
- package/doc/progress/qa-stand-walkthrough-2026-07-12.md +62 -0
- package/doc/progress/stand-as-examples-audit.md +20 -20
- package/doc/progress/style-system-normalization.md +121 -121
- package/doc/target/README.md +32 -32
- package/doc/target/my.md +122 -122
- package/doc/wenay-react2-rare.md +807 -807
- package/doc/wenay-react2.md +541 -541
- package/lib/common/demo/peerMedia.js +6 -1
- package/lib/common/src/logs/logsController.js +2 -2
- package/lib/common/testUseReact/qa.js +3 -3
- package/lib/native/columnDots.d.ts +41 -0
- package/lib/native/columnDots.js +104 -0
- package/lib/native/columnState.d.ts +69 -0
- package/lib/native/columnState.js +209 -0
- package/lib/native/index.d.ts +3 -0
- package/lib/native/index.js +3 -0
- package/lib/style/menuRight.css +19 -19
- package/lib/style/style.css +23 -23
- package/lib/style/tokens.css +184 -184
- package/package.json +2 -1
- package/doc/wenay-react2-1.0.8.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,19 +1,21 @@
|
|
|
1
|
-
# wenay-react2
|
|
2
|
-
|
|
3
|
-
Documentation index only.
|
|
4
|
-
|
|
5
|
-
- Brief API guide: [doc/wenay-react2.md](doc/wenay-react2.md)
|
|
6
|
-
-
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
# wenay-react2
|
|
2
|
+
|
|
3
|
+
Documentation index only.
|
|
4
|
+
|
|
5
|
+
- Brief API guide: [doc/wenay-react2.md](doc/wenay-react2.md)
|
|
6
|
+
- React Native/headless entrypoint: [doc/native.md](doc/native.md)
|
|
7
|
+
- Detailed / rare API guide: [doc/wenay-react2-rare.md](doc/wenay-react2-rare.md)
|
|
8
|
+
- Project functionality map: [doc/PROJECT_FUNCTIONALITY.md](doc/PROJECT_FUNCTIONALITY.md)
|
|
9
|
+
- Example usage standards: [doc/EXAMPLE_USAGE.md](doc/EXAMPLE_USAGE.md)
|
|
10
|
+
- wenay-react2 rename map: [doc/WENAY_REACT2_RENAMES.md](doc/WENAY_REACT2_RENAMES.md)
|
|
11
|
+
- Project rules for maintainers and AI agents: [doc/PROJECT_RULES.md](doc/PROJECT_RULES.md)
|
|
12
|
+
- Recent version changes: [doc/changes/](doc/changes/)
|
|
13
|
+
|
|
14
|
+
`wenay-common2` is an external dependency. Read its current docs from the installed module/package when needed; keep this README focused on `wenay-react2` documentation.
|
|
15
|
+
|
|
15
16
|
Feature-specific docs may also live next to their code, for example agGrid4 docs under `src/common/src/grid/agGrid4/`.
|
|
16
17
|
|
|
17
18
|
## Shipped examples
|
|
18
19
|
|
|
19
|
-
- [doc/examples/stand.tsx](doc/examples/stand.tsx) — весь интерактивный стенд (`wenay-react2/demo/stand`); Active = канон, Archive = regression/compat
|
|
20
|
+
- [doc/examples/stand.tsx](doc/examples/stand.tsx) — весь интерактивный стенд (`wenay-react2/demo/stand`); Active = канон, Archive = regression/compat.
|
|
21
|
+
- [doc/examples/peer-call-media.tsx](doc/examples/peer-call-media.tsx) — Peer calls, presence, camera and microphone relay with server-owned ACL.
|