@indigoai/indigo-icons 0.2.0 → 0.2.1
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 +4 -1
- package/dist/solid/collapse.d.ts +3 -0
- package/dist/solid/expand.d.ts +3 -0
- package/dist/solid/solid.d.ts +2 -0
- package/dist/solid.cjs +1 -1
- package/dist/solid.cjs.map +1 -1
- package/dist/solid.js +4706 -4660
- package/dist/solid.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,7 +22,10 @@ docker compose run --rm frontend ./publish_local.sh
|
|
|
22
22
|
|
|
23
23
|
## Publishing the package to NPM
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
You should have an NPM account and be logged in to publish the package.
|
|
26
|
+
|
|
27
|
+
Bump the package version, manually or using one of the npm commands: npm version patch, npm version minor, npm
|
|
28
|
+
version major. Then run:
|
|
26
29
|
|
|
27
30
|
```
|
|
28
31
|
docker compose run --rm frontend ./publish.sh
|
package/dist/solid/solid.d.ts
CHANGED
|
@@ -334,6 +334,7 @@ export { default as CoinDollar00 } from './coin-dollar-00';
|
|
|
334
334
|
export { default as CoinEuro00 } from './coin-euro-00';
|
|
335
335
|
export { default as CoinPound00 } from './coin-pound-00';
|
|
336
336
|
export { default as CoinYen00 } from './coin-yen-00';
|
|
337
|
+
export { default as Collapse } from './collapse';
|
|
337
338
|
export { default as Collection } from './collection';
|
|
338
339
|
export { default as ColorInversionSolid } from './color-inversion-solid';
|
|
339
340
|
export { default as CompassEdu } from './compass-edu';
|
|
@@ -415,6 +416,7 @@ export { default as Euro00 } from './euro-00';
|
|
|
415
416
|
export { default as ExamEdu } from './exam-edu';
|
|
416
417
|
export { default as ExchangeRectangle } from './exchange-rectangle';
|
|
417
418
|
export { default as Exchange } from './exchange';
|
|
419
|
+
export { default as Expand } from './expand';
|
|
418
420
|
export { default as EyeDropperHealth } from './eye-dropper-health';
|
|
419
421
|
export { default as EyeScannerSmart } from './eye-scanner-smart';
|
|
420
422
|
export { default as EyeDisable } from './eye-disable';
|