Skip to content

Commit e4cdf95

Browse files
bugfix/RZB-250099 – Full State Name Support and Popup UI Enhancement (#135)
Added pages ;fix issues
2 parents 9fbe86c + b6eefae commit e4cdf95

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+2561
-850
lines changed

.vscode/dictionaries/project-words.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Deepavali
2323
dhaga
2424
Dhaivat
2525
dogri
26+
DPDP
2627
Dussehra
2728
ensurepip
2829
fontsource
@@ -40,6 +41,7 @@ Jaati
4041
Jayanti
4142
jsonify
4243
Jyeshtha
44+
Karnataka
4345
Kartika
4446
kmeans
4547
Kolkata

abcd.code-workspace

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@
146146
"prettier.trailingComma": "none",
147147
"scss.lint.emptyRules": "ignore",
148148
"search.exclude": {
149+
".github/**": true,
149150
"dist/**": true,
150151
"package-lock.json": true
151152
},

package-lock.json

Lines changed: 1121 additions & 356 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 37 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,43 +27,69 @@
2727
"contributors": [
2828
{
2929
"name": "Keshav Mohta",
30-
"email": "[email protected]"
30+
"email": "[email protected]",
31+
"github": "xkeshav",
32+
"role": "UI Engineer"
3133
},
3234
{
3335
"name": "Aditya Kumar Singh",
34-
"email": "[email protected]"
36+
"email": "[email protected]",
37+
"github": "adityasingh-7",
38+
"role": "UI Engineer"
3539
},
3640
{
3741
"name": "Vansh Raj",
38-
"email": "[email protected]"
42+
"email": "[email protected]",
43+
"github": "ciphrox",
44+
"role": "UI Engineer"
3945
},
4046
{
4147
"name": "Vamil Porwal",
42-
"email": "[email protected]"
48+
"email": "[email protected]",
49+
"github": "vamilP",
50+
"role": "UI Engineer"
4351
},
4452
{
4553
"name": "Ayush Tyagi",
46-
"email": "[email protected]"
54+
"email": "[email protected]",
55+
"github": "ayu-ty",
56+
"role": "UI Engineer"
4757
},
4858
{
4959
"name": "Azmat Raza",
50-
"email": "[email protected]"
60+
"email": "[email protected]",
61+
"github": "azmat01",
62+
"role": "UI Engineer"
5163
},
5264
{
5365
"name": "Chhavi Sharma",
54-
"email": "[email protected]"
66+
"email": "[email protected]",
67+
"github": "chhaviS04",
68+
"role": "UI Engineer"
5569
},
5670
{
5771
"name": "Prakash Raj",
58-
"email": "[email protected]"
72+
"email": "[email protected]",
73+
"github": "1046prt",
74+
"role": "UI Engineer"
5975
},
6076
{
61-
"name": "Rupesh",
62-
"email": "[email protected]"
77+
"name": "Rupesh Rathore",
78+
"email": "[email protected]",
79+
"github": "rupesh-rathore",
80+
"role": "UI Engineer"
6381
},
6482
{
6583
"name": "Suresh Chelani",
66-
"email": "[email protected]"
84+
"email": "[email protected]",
85+
"github": "suresh-chelani",
86+
"role": "UI Engineer"
87+
},
88+
{
89+
"name": "Harsh Saini",
90+
"email": "[email protected]",
91+
"github": "harsh01234s",
92+
"role": "UX Engineer"
6793
}
6894
],
6995
"keywords": [
5.33 MB
Loading
5.44 MB
Loading
3.82 MB
Loading
4.62 MB
Loading
2.45 MB
Loading

public/data/zodiacs.json

Lines changed: 30 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,27 @@
11
[
2-
{},
2+
{
3+
"name": {
4+
"english": "Mesha (Aries)",
5+
"hindi": "मेष"
6+
},
7+
"dates": {
8+
"english": "April 14 - May 14",
9+
"hindi": "14 अप्रैल - 14 मई"
10+
},
11+
"image": "1.jpeg",
12+
"description": {
13+
"english": "Mesha is symbolized by the Ram. Individuals born under this sign are known for their courage, determination, and leadership qualities.",
14+
"hindi": "मेष को मेढ़े द्वारा दर्शाया जाता है। इस राशि के जातक अपने साहस, दृढ़ संकल्प और नेतृत्व गुणों के लिए जाने जाते हैं।"
15+
},
16+
"points": {
17+
"english": ["Corresponding Letters: A,L,E", "Ruled by Mars (Mangal) - planet of energy", "Fire sign - passionate and dynamic personality", "Natural leaders with a competitive spirit", "Can be impulsive and impatient", "Best suited for entrepreneurship, sports and military", "Health concerns: Headaches and fevers", "Compatible with Leo and Sagittarius"],
18+
"hindi": ["संबंधित अक्षर: अ, ल, ई", "मंगल ग्रह द्वारा शासित - ऊर्जा का ग्रह", "अग्नि तत्व - भावुक और गतिशील व्यक्तित्व", "प्रतिस्पर्धी भावना के साथ प्राकृतिक नेता", "आवेगी और अधीर हो सकते हैं", "उद्यमिता, खेल और सेना के लिए सबसे उपयुक्त", "स्वास्थ्य संबंधी चिंताएँ: सिरदर्द और बुखार", "सिंह और धनु राशि के साथ अच्छी संगतता"]
19+
}
20+
},
321
{
422
"name": {
523
"english": "Vrishabha (Taurus)",
6-
"hindi": "वृषभ (वृषभ राशि)"
24+
"hindi": "वृषभ"
725
},
826
"dates": {
927
"english": "May 15 - June 14",
@@ -22,7 +40,7 @@
2240
{
2341
"name": {
2442
"english": "Mithuna (Gemini)",
25-
"hindi": "मिथुन (मिथुन राशि)"
43+
"hindi": "मिथुन"
2644
},
2745
"dates": {
2846
"english": "June 15 - July 14",
@@ -41,7 +59,7 @@
4159
{
4260
"name": {
4361
"english": "Karka (Cancer)",
44-
"hindi": "कर्क (कर्क राशि)"
62+
"hindi": "कर्क"
4563
},
4664
"dates": {
4765
"english": "July 15 - August 14",
@@ -60,7 +78,7 @@
6078
{
6179
"name": {
6280
"english": "Simha (Leo)",
63-
"hindi": "सिंह (सिंह राशि)"
81+
"hindi": "सिंह"
6482
},
6583
"dates": {
6684
"english": "August 15 - September 15",
@@ -79,7 +97,7 @@
7997
{
8098
"name": {
8199
"english": "Kanya (Virgo)",
82-
"hindi": "कन्या (कन्या राशि)"
100+
"hindi": "कन्या"
83101
},
84102
"dates": {
85103
"english": "September 16 - October 15",
@@ -98,7 +116,7 @@
98116
{
99117
"name": {
100118
"english": "Tula (Libra)",
101-
"hindi": "तुला (तुला राशि)"
119+
"hindi": "तुला"
102120
},
103121
"dates": {
104122
"english": "October 16 - November 14",
@@ -117,7 +135,7 @@
117135
{
118136
"name": {
119137
"english": "Vrishchika (Scorpio)",
120-
"hindi": "वृश्चिक (वृश्चिक राशि)"
138+
"hindi": "वृश्चिक"
121139
},
122140
"dates": {
123141
"english": "November 15 - December 14",
@@ -136,7 +154,7 @@
136154
{
137155
"name": {
138156
"english": "Dhanu (Sagittarius)",
139-
"hindi": "धनु (धनु राशि)"
157+
"hindi": "धनु"
140158
},
141159
"dates": {
142160
"english": "December 15 - January 13",
@@ -155,7 +173,7 @@
155173
{
156174
"name": {
157175
"english": "Makara (Capricorn)",
158-
"hindi": "मकर (मकर राशि)"
176+
"hindi": "मकर"
159177
},
160178
"dates": {
161179
"english": "January 14 - February 11",
@@ -174,7 +192,7 @@
174192
{
175193
"name": {
176194
"english": "Kumbha (Aquarius)",
177-
"hindi": "कुंभ (कुंभ राशि)"
195+
"hindi": "कुंभ"
178196
},
179197
"dates": {
180198
"english": "February 12 - March 12",
@@ -193,7 +211,7 @@
193211
{
194212
"name": {
195213
"english": "Meena (Pisces)",
196-
"hindi": "मीन (मीन राशि)"
214+
"hindi": "मीन"
197215
},
198216
"dates": {
199217
"english": "March 13 - April 13",

0 commit comments

Comments
 (0)