@amityco/ulta-ui-kit 1.0.0-beta.33 → 1.0.0-beta.34
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/dist/esm/index.css +1 -1
- package/dist/esm/index.js +907 -854
- package/dist/index.css +1 -1
- package/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +985 -932
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/package.json +2 -2
- package/readme.md +7 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@amityco/ulta-ui-kit",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.34",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=18"
|
|
6
6
|
},
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"react-dom": ">=17.0.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@amityco/ts-sdk": "^6.30.
|
|
32
|
+
"@amityco/ts-sdk": "^6.30.4",
|
|
33
33
|
"@eslint/js": "^9.4.0",
|
|
34
34
|
"@storybook/addon-a11y": "^7.6.7",
|
|
35
35
|
"@storybook/addon-actions": "^7.6.7",
|
package/readme.md
CHANGED
|
@@ -38,7 +38,13 @@ export default function App() {
|
|
|
38
38
|
apiKey={apiKey}
|
|
39
39
|
userId={userId}
|
|
40
40
|
apiRegion={apiRegion}
|
|
41
|
-
|
|
41
|
+
ultaConfig={{
|
|
42
|
+
newsCommunityId: 'newsCommunityId', // To configure the news communityId used to navigate from `Ulta Beuty News` banner
|
|
43
|
+
faqCommunityId: 'faqCommunityId', // To configure the FAQs communityId used to navigate from `FAQs & Best Practices` banner
|
|
44
|
+
defaultTab: 'explore', // To configure the default tab. The available default tabs are 'newfeeds', and 'explore'
|
|
45
|
+
termsAndConditionsUrl: 'https://www.ulta.com/foo', // To configure the terms and conditions link on the nickname dialog
|
|
46
|
+
privacyAndPolicyUrl: 'https://www.ulta.com/bar', // To configure the privacy and policy link on the nickname dialog
|
|
47
|
+
}}
|
|
42
48
|
>
|
|
43
49
|
<AmityUiKitSocial />
|
|
44
50
|
</AmityUiKitProvider>
|