@orcestr/ui 0.2.1 → 0.2.3
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/LICENSE +21 -0
- package/README.md +13 -0
- package/README.ru.md +13 -0
- package/package.json +3 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Artasov
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -10,6 +10,9 @@
|
|
|
10
10
|
|
|
11
11
|
# Orcestr UI
|
|
12
12
|
|
|
13
|
+
[](https://www.npmjs.com/package/@orcestr/ui)
|
|
14
|
+
[](./LICENSE)
|
|
15
|
+
|
|
13
16
|
## [Demo](https://orcestr.com/ui)
|
|
14
17
|
|
|
15
18
|
Open the live example page to inspect Orcestr UI components and patterns in context.
|
|
@@ -142,6 +145,16 @@ For the first `0.0.1` release, commit the prepared package and push tag `ui-v0.0
|
|
|
142
145
|
|
|
143
146
|
The workflow runs typecheck, tests, build and `npm pack --dry-run` before publishing `@orcestr/ui` to NPM.
|
|
144
147
|
|
|
148
|
+
## Contributing
|
|
149
|
+
|
|
150
|
+
Read [CONTRIBUTING.md](./CONTRIBUTING.md) before opening a pull request.
|
|
151
|
+
|
|
152
|
+
Security issues should be reported privately according to [SECURITY.md](./SECURITY.md).
|
|
153
|
+
|
|
154
|
+
## License
|
|
155
|
+
|
|
156
|
+
MIT. See [LICENSE](./LICENSE).
|
|
157
|
+
|
|
145
158
|
## Ecosystem
|
|
146
159
|
|
|
147
160
|
Orcestr UI is one of the first public pieces of the Orcestr ecosystem.
|
package/README.ru.md
CHANGED
|
@@ -10,6 +10,9 @@
|
|
|
10
10
|
|
|
11
11
|
# Orcestr UI
|
|
12
12
|
|
|
13
|
+
[](https://www.npmjs.com/package/@orcestr/ui)
|
|
14
|
+
[](./LICENSE)
|
|
15
|
+
|
|
13
16
|
## [Demo](https://orcestr.com/ui)
|
|
14
17
|
|
|
15
18
|
Открой live example page, чтобы посмотреть компоненты и паттерны Orcestr UI в контексте.
|
|
@@ -142,6 +145,16 @@ git push origin ui-v0.0.2
|
|
|
142
145
|
|
|
143
146
|
Workflow перед публикацией `@orcestr/ui` в NPM запускает typecheck, tests, build и `npm pack --dry-run`.
|
|
144
147
|
|
|
148
|
+
## Contributing
|
|
149
|
+
|
|
150
|
+
Перед pull request прочитай [CONTRIBUTING.md](./CONTRIBUTING.md).
|
|
151
|
+
|
|
152
|
+
Security issues нужно отправлять приватно по правилам из [SECURITY.md](./SECURITY.md).
|
|
153
|
+
|
|
154
|
+
## License
|
|
155
|
+
|
|
156
|
+
MIT. См. [LICENSE](./LICENSE).
|
|
157
|
+
|
|
145
158
|
## Экосистема
|
|
146
159
|
|
|
147
160
|
Orcestr UI - одна из первых публичных частей экосистемы Orcestr.
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orcestr/ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Shared React UI package for Orcestr products.",
|
|
5
|
-
"license": "
|
|
5
|
+
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"dist",
|
|
21
21
|
"README.md",
|
|
22
22
|
"README.ru.md",
|
|
23
|
+
"LICENSE",
|
|
23
24
|
"assets"
|
|
24
25
|
],
|
|
25
26
|
"publishConfig": {
|