react-gldn-kit 0.1.135 → 0.1.136
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 +23 -9
- package/dist/index.js +1 -1
- package/dist/lib/components/Banners/index.js +1 -1
- package/dist/lib/components/Modals/Alert/components/Auth/Others/Olympus/index.js +1 -0
- package/dist/lib/components/ui/Buttons/CasinoCategoryButton/index.js +5 -3
- package/dist/lib/components/ui/Buttons/CasinoCategoryButton/types.d.ts +4 -3
- package/dist/lib/components/ui/Docs/types.d.ts +1 -2
- package/dist/lib/components/ui/Footer/{index.js → ElJbFs/index.js} +2 -2
- package/dist/lib/components/ui/Footer/{types.d.ts → ElJbFs/types.d.ts} +2 -2
- package/dist/lib/components/ui/Footer/XxxAzCawa/components/License/index.d.ts +3 -0
- package/dist/lib/components/ui/Footer/XxxAzCawa/components/License/index.js +66 -0
- package/dist/lib/components/ui/Footer/XxxAzCawa/components/License/types.d.ts +7 -0
- package/dist/lib/components/ui/Footer/XxxAzCawa/components/License/types.js +2 -0
- package/dist/lib/components/ui/Footer/XxxAzCawa/components/Links/index.d.ts +6 -0
- package/dist/lib/components/ui/Footer/XxxAzCawa/components/Links/index.js +45 -0
- package/dist/lib/components/ui/Footer/XxxAzCawa/components/SocialButtons/index.d.ts +3 -0
- package/dist/lib/components/ui/Footer/XxxAzCawa/components/SocialButtons/index.js +64 -0
- package/dist/lib/components/ui/Footer/XxxAzCawa/components/SocialButtons/types.d.ts +6 -0
- package/dist/lib/components/ui/Footer/XxxAzCawa/components/SocialButtons/types.js +2 -0
- package/dist/lib/components/ui/Footer/XxxAzCawa/index.d.ts +2 -0
- package/dist/lib/components/ui/Footer/XxxAzCawa/index.js +102 -0
- package/dist/lib/components/ui/Footer/XxxAzCawa/types.d.ts +17 -0
- package/dist/lib/components/ui/Footer/XxxAzCawa/types.js +2 -0
- package/dist/lib/components/ui/Icons/Categories/index.d.ts +4 -3
- package/dist/lib/components/ui/Icons/Categories/index.js +16 -15
- package/dist/lib/components/ui/Icons/Footer/MailSvg.d.ts +2 -0
- package/dist/lib/components/ui/Icons/Footer/MailSvg.js +20 -0
- package/dist/lib/components/ui/Icons/SocialMedia/TwitterSvg.d.ts +2 -0
- package/dist/lib/components/ui/Icons/SocialMedia/TwitterSvg.js +20 -0
- package/dist/lib/components/ui/Logos/index.js +17 -8
- package/dist/lib/index.d.ts +3 -2
- package/dist/lib/index.js +10 -8
- package/dist/lib/utils/localstorage.d.ts +3 -0
- package/dist/lib/utils/localstorage.js +13 -0
- package/dist/lib/zustandStore/forms/signUp/types.d.ts +1 -0
- package/dist/lib/zustandStore/forms/signUp/types.js +1 -0
- package/dist/main.css +469 -58
- package/package.json +4 -4
- /package/dist/lib/components/ui/Footer/{index.d.ts → ElJbFs/index.d.ts} +0 -0
- /package/dist/lib/components/ui/Footer/{types.js → ElJbFs/types.js} +0 -0
package/README.md
CHANGED
|
@@ -1,12 +1,26 @@
|
|
|
1
|
-
|
|
2
|
-
- install elon dependencies
|
|
3
|
-
- go to component-kit
|
|
4
|
-
- run command
|
|
5
|
-
npm run dev:ui - linux
|
|
1
|
+
## 🚀 Project Launch Guide
|
|
6
2
|
|
|
7
|
-
|
|
8
|
-
- go back to elon and run command
|
|
9
|
-
dev:ui
|
|
3
|
+
### Step 1. Install and run the UI in `component-kit`
|
|
10
4
|
|
|
5
|
+
1. Go to the **elon** directory and install dependencies:
|
|
6
|
+
npm install
|
|
11
7
|
|
|
12
|
-
|
|
8
|
+
2. Navigate to the **component-kit** directory:
|
|
9
|
+
cd component-kit
|
|
10
|
+
|
|
11
|
+
3. Run the UI (for Linux):
|
|
12
|
+
npm run dev:ui - linux
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
### Step 2. Run the UI in `elon`
|
|
17
|
+
|
|
18
|
+
1. Go back to the **elon** directory:
|
|
19
|
+
cd ..
|
|
20
|
+
|
|
21
|
+
2. Start the command:
|
|
22
|
+
npm run dev:ui
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
✅ After completing these steps, the projects will be **linked** and ready to work.
|