@ds-mo/icons 6.0.1 → 6.0.2
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 +5 -5
- package/dist/meta.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ Icons are grouped into **categories** so the pipeline can treat them differently
|
|
|
28
28
|
|
|
29
29
|
| Category | Count | Themeable | Description |
|
|
30
30
|
|---|---|---|---|
|
|
31
|
-
| `system` |
|
|
31
|
+
| `system` | 397 | ✅ `currentColor` | Monochrome UI icons — respond to CSS `color` and the `color` prop |
|
|
32
32
|
| `flag` | 32 | ❌ preserved | Multi-color country flags — hex + P3 wide-gamut colors kept verbatim |
|
|
33
33
|
|
|
34
34
|
Flag component names are prefixed with `Flag` (e.g. `FlagFrance`, `FlagUnitedStates`) so every export is globally unique.
|
|
@@ -106,7 +106,7 @@ Generate a flat folder of vector PDFs — one per icon — for use in Xcode asse
|
|
|
106
106
|
|
|
107
107
|
```bash
|
|
108
108
|
npm run build # required first — generates dist/
|
|
109
|
-
npm run build:pdf # outputs dist/pdf/<Name>.pdf (
|
|
109
|
+
npm run build:pdf # outputs dist/pdf/<Name>.pdf (429 files)
|
|
110
110
|
```
|
|
111
111
|
|
|
112
112
|
**Adding to Xcode:**
|
|
@@ -138,9 +138,9 @@ Machine-readable icon list (for docs, agents, search indexes):
|
|
|
138
138
|
```ts
|
|
139
139
|
import meta from '@ds-mo/icons/meta';
|
|
140
140
|
|
|
141
|
-
meta.version // e.g. "0.
|
|
142
|
-
meta.count //
|
|
143
|
-
meta.categories // { system: {count:
|
|
141
|
+
meta.version // matches package version (e.g. "6.0.1")
|
|
142
|
+
meta.count // 429
|
|
143
|
+
meta.categories // { system: {count:397,themeable:true}, flag: {count:32,themeable:false} }
|
|
144
144
|
meta.icons // [{ name, category, kebab, aliases }, ...]
|
|
145
145
|
```
|
|
146
146
|
|
package/dist/meta.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ds-mo/icons",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.2",
|
|
4
4
|
"description": "IcoMo — 429 SVG icons (397 system icons + 32 country flags) as tree-shakeable React components, framework-agnostic SVG strings, TypeScript definitions, and SVG sprite",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"icons",
|