@cuby-ui/icons 0.0.485 → 0.0.488

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 (2) hide show
  1. package/README.md +43 -25
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,25 +1,43 @@
1
- # Icons
2
-
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 15.2.0.
4
-
5
- ## Code scaffolding
6
-
7
- Run `ng generate component component-name --project icons` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project icons`.
8
-
9
- > Note: Don't forget to add `--project icons` or else it will be added to the default project in your `angular.json` file.
10
-
11
- ## Build
12
-
13
- Run `ng build icons` to build the project. The build artifacts will be stored in the `dist/` directory.
14
-
15
- ## Publishing
16
-
17
- After building your library with `ng build icons`, go to the dist folder `cd dist/icons` and run `npm publish`.
18
-
19
- ## Running unit tests
20
-
21
- Run `ng test icons` to execute the unit tests via [Karma](https://karma-runner.github.io).
22
-
23
- ## Further help
24
-
25
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
1
+ # Cuby UI - агентская документация (RU)
2
+
3
+ Документ для кодовых агентов. Описывает публичный API пакета `@cuby-ui/icons`, а также примеры использования.
4
+
5
+ ## Оглавление
6
+ - [Icons](#icons)
7
+ - [Линт и форматирование](#линт-и-форматирование)
8
+ - [Версии и совместимость](#версии-и-совместимость)
9
+
10
+ ## Icons
11
+
12
+ ### Feature: CUI_ICONS
13
+ Описание: объект с SVG строками, ключи - имена иконок.
14
+ Публичный API:
15
+ - Тип ключей: `CuiIcon`
16
+ Пример:
17
+ ```ts
18
+ const svg = CUI_ICONS.cuiIconCheck;
19
+ ```
20
+
21
+ ### Feature: CuiIcon
22
+ Описание: union ключей `CUI_ICONS`.
23
+ Пример:
24
+ ```ts
25
+ const icon: CuiIcon = 'cuiIconCheck';
26
+ ```
27
+
28
+ ### Feature: cuiIsIcon
29
+ Описание: проверяет, что строка - известная иконка.
30
+ Пример:
31
+ ```ts
32
+ if (cuiIsIcon(value)) { ... }
33
+ ```
34
+
35
+ ## Линт и форматирование
36
+ - Явных конфигураций ESLint/Prettier в репозитории нет. Ориентируйтесь на текущий стиль файлов и типичные правила Angular/TypeScript.
37
+
38
+ ## Версии и совместимость
39
+ - Angular: `>=15.0.0`
40
+ - RxJS: `>=7.0.0`
41
+ - `@maskito/*`: `^2.5.0` (input number/time)
42
+ - `@tinkoff/ng-polymorpheus`: `^4.3.0` (dialog header)
43
+ - Пакеты `@cuby-ui/*`: версия `0.0.177` (см. `projects/*/package.json`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cuby-ui/icons",
3
- "version": "0.0.485",
3
+ "version": "0.0.488",
4
4
  "dependencies": {
5
5
  "tslib": "^2.3.0"
6
6
  },