@selfcommunity/react-theme-default 0.4.2-alpha.3 → 0.4.2-alpha.5
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/lib/cjs/assets/social/contained/facebook.d.ts +2 -0
- package/lib/cjs/assets/social/contained/facebook.js +3 -0
- package/lib/cjs/assets/social/contained/google.d.ts +2 -0
- package/lib/cjs/assets/social/contained/google.js +3 -0
- package/lib/cjs/assets/social/contained/linkedin.d.ts +2 -0
- package/lib/cjs/assets/social/contained/linkedin.js +3 -0
- package/lib/cjs/assets/social/contained/twitter.d.ts +2 -0
- package/lib/cjs/assets/social/contained/twitter.js +3 -0
- package/lib/cjs/assets/social/outlined/facebook.d.ts +2 -0
- package/lib/cjs/assets/social/outlined/facebook.js +3 -0
- package/lib/cjs/assets/social/outlined/google.d.ts +2 -0
- package/lib/cjs/assets/social/outlined/google.js +3 -0
- package/lib/cjs/assets/social/outlined/linkedin.d.ts +2 -0
- package/lib/cjs/assets/social/outlined/linkedin.js +3 -0
- package/lib/cjs/assets/social/outlined/twitter.d.ts +2 -0
- package/lib/cjs/assets/social/outlined/twitter.js +3 -0
- package/lib/cjs/components/SCUserProfileEdit.d.ts +15 -0
- package/lib/cjs/components/SCUserProfileEdit.js +15 -0
- package/lib/cjs/index.d.ts +36 -0
- package/lib/cjs/index.js +26 -0
- package/lib/esm/assets/social/contained/facebook.d.ts +2 -0
- package/lib/esm/assets/social/contained/facebook.js +1 -0
- package/lib/esm/assets/social/contained/google.d.ts +2 -0
- package/lib/esm/assets/social/contained/google.js +1 -0
- package/lib/esm/assets/social/contained/linkedin.d.ts +2 -0
- package/lib/esm/assets/social/contained/linkedin.js +1 -0
- package/lib/esm/assets/social/contained/twitter.d.ts +2 -0
- package/lib/esm/assets/social/contained/twitter.js +1 -0
- package/lib/esm/assets/social/outlined/facebook.d.ts +2 -0
- package/lib/esm/assets/social/outlined/facebook.js +1 -0
- package/lib/esm/assets/social/outlined/google.d.ts +2 -0
- package/lib/esm/assets/social/outlined/google.js +1 -0
- package/lib/esm/assets/social/outlined/linkedin.d.ts +2 -0
- package/lib/esm/assets/social/outlined/linkedin.js +1 -0
- package/lib/esm/assets/social/outlined/twitter.d.ts +2 -0
- package/lib/esm/assets/social/outlined/twitter.js +1 -0
- package/lib/esm/components/SCUserProfileEdit.d.ts +15 -0
- package/lib/esm/components/SCUserProfileEdit.js +15 -0
- package/lib/esm/index.d.ts +36 -0
- package/lib/esm/index.js +21 -0
- package/lib/umd/react-theme-default.js +2 -2
- package/package.json +4 -4
package/lib/esm/index.js
CHANGED
|
@@ -165,6 +165,20 @@ import SCWidget from './components/SCWidget';
|
|
|
165
165
|
/**
|
|
166
166
|
* Style fragments - Imports - End
|
|
167
167
|
*/
|
|
168
|
+
/**
|
|
169
|
+
* Style assets - Imports - Start
|
|
170
|
+
*/
|
|
171
|
+
import GoogleIconContained from './assets/social/contained/google';
|
|
172
|
+
import FacebookIconContained from './assets/social/contained/facebook';
|
|
173
|
+
import TwitterIconContained from './assets/social/contained/twitter';
|
|
174
|
+
import LinkedinIconContained from './assets/social/contained/linkedin';
|
|
175
|
+
import GoogleIconOutlined from './assets/social/outlined/google';
|
|
176
|
+
import FacebookIconOutlined from './assets/social/outlined/facebook';
|
|
177
|
+
import TwitterIconOutlined from './assets/social/outlined/twitter';
|
|
178
|
+
import LinkedinIconOutlined from './assets/social/outlined/linkedin';
|
|
179
|
+
/**
|
|
180
|
+
* Style assets - Imports - End
|
|
181
|
+
*/
|
|
168
182
|
/**
|
|
169
183
|
* Export default theme
|
|
170
184
|
*/
|
|
@@ -417,3 +431,10 @@ const theme = {
|
|
|
417
431
|
}
|
|
418
432
|
};
|
|
419
433
|
export default theme;
|
|
434
|
+
/**
|
|
435
|
+
* Style assets - Exports - Start
|
|
436
|
+
*/
|
|
437
|
+
export { GoogleIconContained, FacebookIconContained, LinkedinIconContained, TwitterIconContained, GoogleIconOutlined, FacebookIconOutlined, LinkedinIconOutlined, TwitterIconOutlined };
|
|
438
|
+
/**
|
|
439
|
+
* Style assets - Exports - End
|
|
440
|
+
*/
|