@dynamic-labs/iconic 0.1.39 → 0.1.41

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ### Adding an icon
2
2
 
3
3
  1. Add the SVG file to the appropriate folder
4
- 1. Add a `createIconic` compomenent to the `index.ts` in that folder for that icon
4
+ 1. Add a `createIconic` compomenent to the `index.ts` in that folder for that icon (iconName should be lowercase)
5
5
  1. Bump the version in package.json
6
6
  1. run `nvm use`
7
7
  1. run `yarn install` if not yet
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/iconic",
3
- "version": "0.1.39",
3
+ "version": "0.1.41",
4
4
  "description": "A library of icons used by Dynamic Lab's SDK, served via CDN",
5
5
  "main": "dist/src/index.js",
6
6
  "scripts": {
@@ -19,3 +19,5 @@ export declare const AppleSocialIcon: Iconic;
19
19
  export declare const AppleDarkSocialIcon: Iconic;
20
20
  export declare const InstagramIcon: Iconic;
21
21
  export declare const YouTubeIcon: Iconic;
22
+ export declare const OnePasswordIcon: Iconic;
23
+ export declare const OnePasswordDarkIcon: Iconic;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.YouTubeIcon = exports.InstagramIcon = exports.AppleDarkSocialIcon = exports.AppleSocialIcon = exports.TwitterDarkIcon = exports.TwitterIcon = exports.TwitchDarkIcon = exports.TwitchIcon = exports.TelegramIcon = exports.SlackIcon = exports.MicrosoftIcon = exports.LinkedinIcon = exports.HelpdeskIcon = exports.GoogleIcon = exports.GitlabIcon = exports.GithubDarkIcon = exports.GithubIcon = exports.FacebookIcon = exports.DiscordIcon = exports.BitbucketIcon = void 0;
3
+ exports.OnePasswordDarkIcon = exports.OnePasswordIcon = exports.YouTubeIcon = exports.InstagramIcon = exports.AppleDarkSocialIcon = exports.AppleSocialIcon = exports.TwitterDarkIcon = exports.TwitterIcon = exports.TwitchDarkIcon = exports.TwitchIcon = exports.TelegramIcon = exports.SlackIcon = exports.MicrosoftIcon = exports.LinkedinIcon = exports.HelpdeskIcon = exports.GoogleIcon = exports.GitlabIcon = exports.GithubDarkIcon = exports.GithubIcon = exports.FacebookIcon = exports.DiscordIcon = exports.BitbucketIcon = void 0;
4
4
  const Iconic_1 = require("../../Iconic");
5
5
  exports.BitbucketIcon = (0, Iconic_1.createIconic)({
6
6
  iconName: 'bitbucket',
@@ -102,3 +102,13 @@ exports.YouTubeIcon = (0, Iconic_1.createIconic)({
102
102
  alt: 'YouTube',
103
103
  sourcePath: 'icons/social/youtube.svg'
104
104
  });
105
+ exports.OnePasswordIcon = (0, Iconic_1.createIconic)({
106
+ iconName: 'one-password',
107
+ alt: 'onePassword',
108
+ sourcePath: 'icons/social/onePassword.svg'
109
+ });
110
+ exports.OnePasswordDarkIcon = (0, Iconic_1.createIconic)({
111
+ iconName: 'one-password-dark',
112
+ alt: 'onePassword-dark',
113
+ sourcePath: 'icons/social/onePassword-dark.svg'
114
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/iconic",
3
- "version": "0.1.39",
3
+ "version": "0.1.41",
4
4
  "description": "A library of icons used by Dynamic Lab's SDK, served via CDN",
5
5
  "main": "dist/src/index.js",
6
6
  "scripts": {