@bethinkpl/design-system 37.0.0 → 37.0.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/README.md +4 -4
- package/lib/js/icons/fontawesome.ts +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ If you use the review command more than once and the changes are not visible in
|
|
|
25
25
|
`?cd=123`
|
|
26
26
|
|
|
27
27
|
## Releasing
|
|
28
|
-
1.
|
|
29
|
-
2.
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
1. Wait until `Build and Deploy Dist` Github Action finishes
|
|
29
|
+
2. Publish to NPM by triggering the **Publish to NPM** action manually: Actions → Publish to NPM → Run workflow
|
|
30
|
+
|
|
31
|
+
> **Note:** `NPM_TOKEN` must be set in repository secrets. The recommended token type is a [Granular Access Token](https://docs.npmjs.com/creating-and-viewing-access-tokens#creating-granular-access-tokens-on-the-website) scoped to this package only. Avoid running `npm publish` locally.
|
|
@@ -113,6 +113,7 @@ import { faImageCircleXmark } from '@fortawesome/pro-regular-svg-icons/faImageCi
|
|
|
113
113
|
import { faImage as fasImage } from '@fortawesome/pro-solid-svg-icons/faImage';
|
|
114
114
|
import { faImages } from '@fortawesome/pro-regular-svg-icons/faImages';
|
|
115
115
|
import { faImages as fasImages } from '@fortawesome/pro-solid-svg-icons/faImages';
|
|
116
|
+
import { faInboxIn } from '@fortawesome/pro-regular-svg-icons/faInboxIn';
|
|
116
117
|
import { faKey } from '@fortawesome/pro-regular-svg-icons/faKey';
|
|
117
118
|
import { faKeyboard } from '@fortawesome/pro-regular-svg-icons/faKeyboard';
|
|
118
119
|
import { faLightbulb } from '@fortawesome/pro-regular-svg-icons/faLightbulb';
|
|
@@ -425,6 +426,7 @@ export const FONTAWESOME_ICONS = {
|
|
|
425
426
|
FA_IMAGE_SOLID: fasImage,
|
|
426
427
|
FA_IMAGES_SOLID: fasImages,
|
|
427
428
|
FA_IMAGES: faImages,
|
|
429
|
+
FA_INBOX_IN: faInboxIn,
|
|
428
430
|
FA_INFO_SOLID: fasInfo,
|
|
429
431
|
FA_INSTAGRAM: faInstagram,
|
|
430
432
|
FA_KEY: faKey,
|