@appcorp/shadcn 1.1.73 → 1.1.75

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appcorp/shadcn",
3
- "version": "1.1.73",
3
+ "version": "1.1.75",
4
4
  "scripts": {
5
5
  "build:next": "next build",
6
6
  "build:storybook": "mv ../.pnp.cjs ../.pnp.cjs.bak 2>/dev/null || true && storybook build -c .storybook -o .out && mv ../.pnp.cjs.bak ../.pnp.cjs 2>/dev/null || true",
@@ -189,9 +189,13 @@ export interface PolicyCategory {
189
189
  description: string;
190
190
  sections: PolicySection[];
191
191
  }
192
+ export interface PolicyPointSub {
193
+ text: string;
194
+ id: string;
195
+ }
192
196
  export interface PolicyPoint {
193
197
  text: string;
194
- sub?: string[];
198
+ sub?: PolicyPointSub[];
195
199
  id: string;
196
200
  }
197
201
  export interface PolicySection {
@@ -236,10 +240,14 @@ export interface UniformSeason {
236
240
  season: "Summer" | "Winter";
237
241
  variants: UniformVariant[];
238
242
  }
243
+ export interface UniformVairantItem {
244
+ id: string;
245
+ text: string;
246
+ }
239
247
  export interface UniformVariant {
240
248
  gender: "Boys" | "Girls";
241
249
  classes: string;
242
- items: string[];
250
+ items: UniformVairantItem[];
243
251
  }
244
252
  export type PoliciesHighlight = {
245
253
  label: string;
@@ -741,42 +741,96 @@ exports.uniformData = [
741
741
  gender: "Boys",
742
742
  classes: "Class I – V",
743
743
  items: [
744
- "White half-sleeves shirt with grey school insignia on pocket",
745
- "Grey tropical shorts / pants",
746
- "Black shoes",
747
- "Grey socks",
744
+ {
745
+ id: "1",
746
+ text: "White half-sleeves shirt with grey school insignia on pocket",
747
+ },
748
+ {
749
+ id: "2",
750
+ text: "Grey tropical shorts / pants",
751
+ },
752
+ {
753
+ id: "3",
754
+ text: "Black shoes",
755
+ },
756
+ {
757
+ id: "4",
758
+ text: "Grey socks",
759
+ },
748
760
  ],
749
761
  },
750
762
  {
751
763
  gender: "Girls",
752
764
  classes: "Class I – V",
753
765
  items: [
754
- "Red half-sleeves frock with red school insignia",
755
- "White tight / shalwar",
756
- "Black shoes",
757
- "White socks",
766
+ {
767
+ id: "1",
768
+ text: "Red half-sleeves frock with red school insignia",
769
+ },
770
+ {
771
+ id: "2",
772
+ text: "White tight / shalwar",
773
+ },
774
+ {
775
+ id: "3",
776
+ text: "Black shoes",
777
+ },
778
+ {
779
+ id: "4",
780
+ text: "White socks",
781
+ },
758
782
  ],
759
783
  },
760
784
  {
761
785
  gender: "Boys",
762
786
  classes: "Class VI onwards",
763
787
  items: [
764
- "White half-sleeves shirt with grey school insignia on pocket",
765
- "Grey tropical pants",
766
- "Grey socks",
767
- "Black shoes (no metal buckle)",
768
- "Black belt with school logo",
788
+ {
789
+ id: "1",
790
+ text: "White half-sleeves shirt with grey school insignia on pocket",
791
+ },
792
+ {
793
+ id: "2",
794
+ text: "Grey tropical pants",
795
+ },
796
+ {
797
+ id: "3",
798
+ text: "Grey socks",
799
+ },
800
+ {
801
+ id: "4",
802
+ text: "Black shoes (no metal buckle)",
803
+ },
804
+ {
805
+ id: "5",
806
+ text: "Black belt with school logo",
807
+ },
769
808
  ],
770
809
  },
771
810
  {
772
811
  gender: "Girls",
773
812
  classes: "Class VI onwards",
774
813
  items: [
775
- "Red full-sleeves kameez with collar and red logo",
776
- "Red sash",
777
- "White socks",
778
- "Black shoes",
779
- "For hijab: red scarf without lace",
814
+ {
815
+ id: "1",
816
+ text: "Red full-sleeves kameez with collar and red logo",
817
+ },
818
+ {
819
+ id: "2",
820
+ text: "Red sash",
821
+ },
822
+ {
823
+ id: "3",
824
+ text: "White socks",
825
+ },
826
+ {
827
+ id: "4",
828
+ text: "Black shoes",
829
+ },
830
+ {
831
+ id: "5",
832
+ text: "For hijab: red scarf without lace",
833
+ },
780
834
  ],
781
835
  },
782
836
  ],
@@ -788,49 +842,124 @@ exports.uniformData = [
788
842
  gender: "Boys",
789
843
  classes: "Class I – V",
790
844
  items: [
791
- "White full-sleeves shirt with grey school insignia",
792
- "Grey steel colour pocket trousers",
793
- "Grey sleeveless sweater",
794
- "Navy blue blazer with badge pocket",
795
- "Grey socks",
796
- "Black shoes without laces (no joggers, boots, or metal buckle)",
845
+ {
846
+ id: "1",
847
+ text: "White full-sleeves shirt with grey school insignia",
848
+ },
849
+ {
850
+ id: "2",
851
+ text: "Grey steel colour pocket trousers",
852
+ },
853
+ {
854
+ id: "3",
855
+ text: "Grey sleeveless sweater",
856
+ },
857
+ {
858
+ id: "4",
859
+ text: "Navy blue blazer with badge pocket",
860
+ },
861
+ {
862
+ id: "5",
863
+ text: "Grey socks",
864
+ },
865
+ {
866
+ id: "6",
867
+ text: "Black shoes without laces (no joggers, boots, or metal buckle)",
868
+ },
797
869
  ],
798
870
  },
799
871
  {
800
872
  gender: "Girls",
801
873
  classes: "Class I – V",
802
874
  items: [
803
- "Red full-sleeves frock with red school insignia",
804
- "White tight / shalwar",
805
- "Navy blue blazer with badge pocket",
806
- "White socks",
807
- "Black shoes",
875
+ {
876
+ id: "1",
877
+ text: "Red full-sleeves frock with red school insignia",
878
+ },
879
+ {
880
+ id: "2",
881
+ text: "White tight / shalwar",
882
+ },
883
+ {
884
+ id: "3",
885
+ text: "Navy blue blazer with badge pocket",
886
+ },
887
+ {
888
+ id: "4",
889
+ text: "White socks",
890
+ },
891
+ {
892
+ id: "5",
893
+ text: "Black shoes",
894
+ },
808
895
  ],
809
896
  },
810
897
  {
811
898
  gender: "Boys",
812
899
  classes: "Class VI onwards",
813
900
  items: [
814
- "White full-sleeves shirt with grey school insignia on pocket",
815
- "Grey pants with pockets",
816
- "Grey sleeveless sweater",
817
- "Navy blue blazer with badge pocket",
818
- "Grey socks",
819
- "Black shoes (without metal buckle)",
820
- "Black belt with school logo",
901
+ {
902
+ id: "1",
903
+ text: "White full-sleeves shirt with grey school insignia on pocket",
904
+ },
905
+ {
906
+ id: "2",
907
+ text: "Grey pants with pockets",
908
+ },
909
+ {
910
+ id: "3",
911
+ text: "Grey sleeveless sweater",
912
+ },
913
+ {
914
+ id: "4",
915
+ text: "Navy blue blazer with badge pocket",
916
+ },
917
+ {
918
+ id: "5",
919
+ text: "Grey socks",
920
+ },
921
+ {
922
+ id: "6",
923
+ text: "Black shoes (without metal buckle)",
924
+ },
925
+ {
926
+ id: "7",
927
+ text: "Black belt with school logo",
928
+ },
821
929
  ],
822
930
  },
823
931
  {
824
932
  gender: "Girls",
825
933
  classes: "Class VI onwards",
826
934
  items: [
827
- "Red full-sleeves kameez with collar and red logo",
828
- "Red sash",
829
- "Red sleeveless sweater",
830
- "Navy blue blazer with badge pocket",
831
- "White socks",
832
- "Black shoes",
833
- "For hijab: red scarf without lace",
935
+ {
936
+ id: "1",
937
+ text: "Red full-sleeves kameez with collar and red logo",
938
+ },
939
+ {
940
+ id: "2",
941
+ text: "Red sash",
942
+ },
943
+ {
944
+ id: "3",
945
+ text: "Red sleeveless sweater",
946
+ },
947
+ {
948
+ id: "4",
949
+ text: "Navy blue blazer with badge pocket",
950
+ },
951
+ {
952
+ id: "5",
953
+ text: "White socks",
954
+ },
955
+ {
956
+ id: "6",
957
+ text: "Black shoes",
958
+ },
959
+ {
960
+ id: "7",
961
+ text: "For hijab: red scarf without lace",
962
+ },
834
963
  ],
835
964
  },
836
965
  ],
@@ -855,18 +984,22 @@ exports.policyCategories = [
855
984
  {
856
985
  id: "preamble-1",
857
986
  text: "These rules apply to all students enrolled at LGGS, including any future branch.",
987
+ sub: [],
858
988
  },
859
989
  {
860
990
  id: "preamble-2",
861
991
  text: "Management reserves the right to modify, cancel, or amend any rules at any time.",
992
+ sub: [],
862
993
  },
863
994
  {
864
995
  id: "preamble-3",
865
996
  text: "The Managing Body is the final authority on interpretation of all rules, and its decisions are binding on all students.",
997
+ sub: [],
866
998
  },
867
999
  {
868
1000
  id: "preamble-4",
869
1001
  text: "All rules should be read in conjunction with existing and future rules applicable to the school.",
1002
+ sub: [],
870
1003
  },
871
1004
  ],
872
1005
  },
@@ -877,18 +1010,22 @@ exports.policyCategories = [
877
1010
  {
878
1011
  id: "definitions-1",
879
1012
  text: '"The School" means Lahore Garrison Grammar School or any of its branches.',
1013
+ sub: [],
880
1014
  },
881
1015
  {
882
1016
  id: "definitions-2",
883
1017
  text: '"Management" means the managing body comprising duly constituted members.',
1018
+ sub: [],
884
1019
  },
885
1020
  {
886
1021
  id: "definitions-3",
887
1022
  text: '"Competent Authority" means the Principal, Administrator, or any officer delegated relevant powers.',
1023
+ sub: [],
888
1024
  },
889
1025
  {
890
1026
  id: "definitions-4",
891
1027
  text: '"Regular Student" means a student enrolled until completion of secondary-level education (Matriculation).',
1028
+ sub: [],
892
1029
  },
893
1030
  ],
894
1031
  },
@@ -912,30 +1049,37 @@ exports.policyCategories = [
912
1049
  {
913
1050
  id: "admission-policy-1",
914
1051
  text: "Academic session commences in March each year.",
1052
+ sub: [],
915
1053
  },
916
1054
  {
917
1055
  id: "admission-policy-2",
918
1056
  text: "Admission to Class I–VIII is based on merit and a written examination in English, Maths, Urdu, and Science.",
1057
+ sub: [],
919
1058
  },
920
1059
  {
921
1060
  id: "admission-policy-3",
922
1061
  text: "Shortlisted students are called for an interview and must be accompanied by a parent / guardian.",
1062
+ sub: [],
923
1063
  },
924
1064
  {
925
1065
  id: "admission-policy-4",
926
1066
  text: "Admission schedules and interview dates are displayed on school notice boards in mid-November.",
1067
+ sub: [],
927
1068
  },
928
1069
  {
929
1070
  id: "admission-policy-5",
930
1071
  text: "A student found unsuitable for a class will not be considered for any other class without a fresh registration and test.",
1072
+ sub: [],
931
1073
  },
932
1074
  {
933
1075
  id: "admission-policy-6",
934
1076
  text: "Change of date of birth is not allowed after admission at any stage.",
1077
+ sub: [],
935
1078
  },
936
1079
  {
937
1080
  id: "admission-policy-7",
938
1081
  text: "No admission fee is payable if an application for re-admission is submitted within 30 days of withdrawal.",
1082
+ sub: [],
939
1083
  },
940
1084
  ],
941
1085
  },
@@ -946,10 +1090,23 @@ exports.policyCategories = [
946
1090
  {
947
1091
  id: "age-criteria-1",
948
1092
  text: "Montessori / Play Group: 3 to 3½ years",
1093
+ sub: [],
1094
+ },
1095
+ {
1096
+ id: "age-criteria-2",
1097
+ text: "Preparatory Classes: 4 to 4½ years",
1098
+ sub: [],
1099
+ },
1100
+ {
1101
+ id: "age-criteria-3",
1102
+ text: "Class I to V: 5 to 10½ years",
1103
+ sub: [],
1104
+ },
1105
+ {
1106
+ id: "age-criteria-4",
1107
+ text: "Class VI to VIII: 11 to 13 years",
1108
+ sub: [],
949
1109
  },
950
- { id: "age-criteria-2", text: "Preparatory Classes: 4 to 4½ years" },
951
- { id: "age-criteria-3", text: "Class I to V: 5 to 10½ years" },
952
- { id: "age-criteria-4", text: "Class VI to VIII: 11 to 13 years" },
953
1110
  ],
954
1111
  },
955
1112
  {
@@ -959,10 +1116,12 @@ exports.policyCategories = [
959
1116
  {
960
1117
  id: "transfer-1",
961
1118
  text: "No admission fee is charged when a student qualifies for an inter-branch transfer.",
1119
+ sub: [],
962
1120
  },
963
1121
  {
964
1122
  id: "transfer-2",
965
1123
  text: "Students of Class IX and X are strongly advised not to seek transfers during the final two years of schooling. The school will not be responsible for any consequences arising from such transfers.",
1124
+ sub: [],
966
1125
  },
967
1126
  ],
968
1127
  },
@@ -998,18 +1157,22 @@ exports.policyCategories = [
998
1157
  {
999
1158
  id: "exam-promotion-1",
1000
1159
  text: "30–40% of exam papers for Class III–VIII may include unseen content to assess conceptual understanding and creative writing.",
1160
+ sub: [],
1001
1161
  },
1002
1162
  {
1003
1163
  id: "exam-promotion-2",
1004
1164
  text: "Students must attain at least 50% marks in all core subjects to be eligible for promotion to the next class.",
1165
+ sub: [],
1005
1166
  },
1006
1167
  {
1007
1168
  id: "exam-promotion-3",
1008
1169
  text: "Class VIII students must achieve at least 60% marks in Urdu, English, Science, and Mathematics to opt for science subjects in Class IX.",
1170
+ sub: [],
1009
1171
  },
1010
1172
  {
1011
1173
  id: "exam-promotion-4",
1012
1174
  text: "Decisions of the Principal or Staff Council regarding results, promotion, or demotion are final and binding.",
1175
+ sub: [],
1013
1176
  },
1014
1177
  ],
1015
1178
  },
@@ -1021,15 +1184,28 @@ exports.policyCategories = [
1021
1184
  id: "exam-withhold-1",
1022
1185
  text: "The school may withhold board exam admission forms or roll number slips on any of the following grounds:",
1023
1186
  sub: [
1024
- "Non-participation or failure in school send-up tests / examinations",
1025
- "Attendance below 80% (Class IX & X may also be withheld per Lahore Board policy)",
1026
- "Non-payment of school dues",
1027
- "Overall poor or unsatisfactory academic performance",
1187
+ {
1188
+ id: "exam-withhold-1a",
1189
+ text: "Non-participation or failure in school send-up tests / examinations",
1190
+ },
1191
+ {
1192
+ id: "exam-withhold-1b",
1193
+ text: "Attendance below 80% (Class IX & X may also be withheld per Lahore Board policy)",
1194
+ },
1195
+ {
1196
+ id: "exam-withhold-1c",
1197
+ text: "Non-payment of school dues",
1198
+ },
1199
+ {
1200
+ id: "exam-withhold-1d",
1201
+ text: "Overall poor or unsatisfactory academic performance",
1202
+ },
1028
1203
  ],
1029
1204
  },
1030
1205
  {
1031
1206
  id: "exam-withhold-2",
1032
1207
  text: "The school is not liable for any loss to a student arising from such withholding due to the student's own failure or lapse.",
1208
+ sub: [],
1033
1209
  },
1034
1210
  ],
1035
1211
  },
@@ -1053,30 +1229,37 @@ exports.policyCategories = [
1053
1229
  {
1054
1230
  id: "fee-rules-1",
1055
1231
  text: "Fee is accepted from the 1st to 15th of each month, 8:00 am – 11:00 am. If the 15th falls on a holiday, fees are accepted on the 16th.",
1232
+ sub: [],
1056
1233
  },
1057
1234
  {
1058
1235
  id: "fee-rules-2",
1059
1236
  text: "A late fine of Rs. 10/day is charged after the 15th until the 15th of the following month. After that, the student's name is struck off the roll.",
1237
+ sub: [],
1060
1238
  },
1061
1239
  {
1062
1240
  id: "fee-rules-3",
1063
1241
  text: "The School reserves the right to review and increase fees by a maximum of 10% per annum without prior notice.",
1242
+ sub: [],
1064
1243
  },
1065
1244
  {
1066
1245
  id: "fee-rules-4",
1067
1246
  text: "July and August fees are payable bi-monthly: July with April, and August with May.",
1247
+ sub: [],
1068
1248
  },
1069
1249
  {
1070
1250
  id: "fee-rules-5",
1071
1251
  text: "Annual / miscellaneous charges (worksheets, photocopies, etc.) are payable at the start of each academic session and are equivalent to one month's fee.",
1252
+ sub: [],
1072
1253
  },
1073
1254
  {
1074
1255
  id: "fee-rules-6",
1075
1256
  text: "Fee concessions or stipends may be granted to deserving students. These are withdrawn if the student fails any subject or exam.",
1257
+ sub: [],
1076
1258
  },
1077
1259
  {
1078
1260
  id: "fee-rules-7",
1079
1261
  text: "Dues once paid are non-refundable and non-transferable.",
1262
+ sub: [],
1080
1263
  },
1081
1264
  ],
1082
1265
  },
@@ -1087,22 +1270,27 @@ exports.policyCategories = [
1087
1270
  {
1088
1271
  id: "withdrawal-1",
1089
1272
  text: "One month's written notice is required before withdrawing a child, or one month's fee must be paid in lieu of notice.",
1273
+ sub: [],
1090
1274
  },
1091
1275
  {
1092
1276
  id: "withdrawal-2",
1093
1277
  text: "No notice is required if withdrawal occurs within one month of the annual result announcement.",
1278
+ sub: [],
1094
1279
  },
1095
1280
  {
1096
1281
  id: "withdrawal-3",
1097
1282
  text: "A student advised to withdraw for disciplinary reasons may be removed immediately at the sole discretion of the school.",
1283
+ sub: [],
1098
1284
  },
1099
1285
  {
1100
1286
  id: "withdrawal-4",
1101
1287
  text: "A student who fails the same class for two consecutive years may be asked to withdraw.",
1288
+ sub: [],
1102
1289
  },
1103
1290
  {
1104
1291
  id: "withdrawal-5",
1105
1292
  text: "School Leaving Certificate is issued only after all dues are cleared.",
1293
+ sub: [],
1106
1294
  },
1107
1295
  ],
1108
1296
  },
@@ -1126,36 +1314,54 @@ exports.policyCategories = [
1126
1314
  {
1127
1315
  id: "leave-rules-1",
1128
1316
  text: "Minimum attendance required: 80%. Students below 80% are ineligible to sit for examinations.",
1317
+ sub: [],
1129
1318
  },
1130
1319
  {
1131
1320
  id: "leave-rules-2",
1132
1321
  text: "Leave applications must be submitted on a prescribed form, signed by the student's father / lawful guardian, on the day of absence.",
1322
+ sub: [],
1133
1323
  },
1134
1324
  {
1135
1325
  id: "leave-rules-3",
1136
1326
  text: "Leave up to 3 days is sanctioned by the class teacher; more than 3 days requires Vice Principal or Principal approval.",
1327
+ sub: [],
1137
1328
  },
1138
1329
  {
1139
1330
  id: "leave-rules-4",
1140
1331
  text: "Medical leave of 4+ days requires a certificate from a registered doctor or hospital.",
1332
+ sub: [],
1141
1333
  },
1142
1334
  {
1143
1335
  id: "leave-rules-5",
1144
1336
  text: "Absence without permission for 6 consecutive school days results in the student's name being struck off the roll. Re-admission (once only) is available within the next 6 days upon repayment of admission fee.",
1337
+ sub: [],
1145
1338
  },
1146
1339
  {
1147
1340
  id: "leave-rules-6",
1148
1341
  text: "Fines for unexcused absences:",
1149
1342
  sub: [
1150
- "Class I–VIII: Rs. 10/day up to 6 days",
1151
- "Class IX–X: Rs. 100/day up to 6 days",
1152
- "Absence from tests: up to Rs. 100 per test",
1153
- "Unauthorized absence from Send-Up / Pre-Board Exam: up to Rs. 500 per paper",
1343
+ {
1344
+ id: "leave-rules-6a",
1345
+ text: "Class I–VIII: Rs. 10/day up to 6 days",
1346
+ },
1347
+ {
1348
+ id: "leave-rules-6b",
1349
+ text: "Class IX–X: Rs. 100/day up to 6 days",
1350
+ },
1351
+ {
1352
+ id: "leave-rules-6c",
1353
+ text: "Absence from tests: up to Rs. 100 per test",
1354
+ },
1355
+ {
1356
+ id: "leave-rules-6d",
1357
+ text: "Unauthorized absence from Send-Up / Pre-Board Exam: up to Rs. 500 per paper",
1358
+ },
1154
1359
  ],
1155
1360
  },
1156
1361
  {
1157
1362
  id: "leave-rules-7",
1158
1363
  text: "A student may not leave school premises once attendance is marked, except with permission from the Principal or Vice Principal.",
1364
+ sub: [],
1159
1365
  },
1160
1366
  ],
1161
1367
  },
@@ -1167,14 +1373,38 @@ exports.policyCategories = [
1167
1373
  id: "discipline-1",
1168
1374
  text: "The following constitute misbehavior or breach of discipline:",
1169
1375
  sub: [
1170
- "Disobedience or impertinence toward any teacher, coordinator, or Principal",
1171
- "Fighting, violent behavior, or abusive language at school or school functions",
1172
- "Cheating in examinations or assessments",
1173
- "Habitual late arrival or unexplained absence",
1174
- "Disrupting the learning environment or causing distress to others",
1175
- "Possession or use of a mobile phone with camera or any objectionable material",
1176
- "Bringing dangerous objects or arms inside the school premises",
1177
- "Any other act of willful omission or commission deemed misbehavior by the Management",
1376
+ {
1377
+ id: "discipline-1a",
1378
+ text: "Disobedience or impertinence toward any teacher, coordinator, or Principal",
1379
+ },
1380
+ {
1381
+ id: "discipline-1b",
1382
+ text: "Fighting, violent behavior, or abusive language at school or school functions",
1383
+ },
1384
+ {
1385
+ id: "discipline-1c",
1386
+ text: "Cheating in examinations or assessments",
1387
+ },
1388
+ {
1389
+ id: "discipline-1d",
1390
+ text: "Habitual late arrival or unexplained absence",
1391
+ },
1392
+ {
1393
+ id: "discipline-1e",
1394
+ text: "Disrupting the learning environment or causing distress to others",
1395
+ },
1396
+ {
1397
+ id: "discipline-1f",
1398
+ text: "Possession or use of a mobile phone with camera or any objectionable material",
1399
+ },
1400
+ {
1401
+ id: "discipline-1g",
1402
+ text: "Bringing dangerous objects or arms inside the school premises",
1403
+ },
1404
+ {
1405
+ id: "discipline-1h",
1406
+ text: "Any other act of willful omission or commission deemed misbehavior by the Management",
1407
+ },
1178
1408
  ],
1179
1409
  },
1180
1410
  ],
@@ -1187,16 +1417,32 @@ exports.policyCategories = [
1187
1417
  id: "disciplinary-measures-1",
1188
1418
  text: "Depending on severity, progressive disciplinary action may include:",
1189
1419
  sub: [
1190
- "Counseling and placement under observation (parents informed)",
1191
- "Formal warning with parent signature",
1192
- "Special fine",
1193
- "Temporary ban from school premises",
1194
- "Removal from school",
1420
+ {
1421
+ id: "disciplinary-measures-1a",
1422
+ text: "Counseling and placement under observation (parents informed)",
1423
+ },
1424
+ {
1425
+ id: "disciplinary-measures-1b",
1426
+ text: "Formal warning with parent signature",
1427
+ },
1428
+ {
1429
+ id: "disciplinary-measures-1c",
1430
+ text: "Special fine",
1431
+ },
1432
+ {
1433
+ id: "disciplinary-measures-1d",
1434
+ text: "Temporary ban from school premises",
1435
+ },
1436
+ {
1437
+ id: "disciplinary-measures-1e",
1438
+ text: "Removal from school",
1439
+ },
1195
1440
  ],
1196
1441
  },
1197
1442
  {
1198
1443
  id: "disciplinary-measures-2",
1199
1444
  text: "For any dispute, a committee is constituted comprising the Vice Principal, a member nominated by the Principal, a staff member nominated by the student, and a senior staff council member. The committee's decision is final and binding.",
1445
+ sub: [],
1200
1446
  },
1201
1447
  ],
1202
1448
  },
@@ -1220,38 +1466,47 @@ exports.policyCategories = [
1220
1466
  {
1221
1467
  id: "general-rules-1",
1222
1468
  text: "Parents must familiarise themselves fully with all school procedures. Admitting a child constitutes agreement to abide by all rules; no appeal against them will be entertained.",
1469
+ sub: [],
1223
1470
  },
1224
1471
  {
1225
1472
  id: "general-rules-2",
1226
1473
  text: "Students must wear the prescribed school uniform at all times while on campus.",
1474
+ sub: [],
1227
1475
  },
1228
1476
  {
1229
1477
  id: "general-rules-3",
1230
1478
  text: "Mobile phones are strictly prohibited. A student found with a mobile phone will be fined up to Rs. 1,000.",
1479
+ sub: [],
1231
1480
  },
1232
1481
  {
1233
1482
  id: "general-rules-4",
1234
1483
  text: "Late comers are fined Rs. 10/day or may be marked absent. Persistent late-coming may lead to expulsion.",
1484
+ sub: [],
1235
1485
  },
1236
1486
  {
1237
1487
  id: "general-rules-5",
1238
1488
  text: "Private telephone calls for students are not entertained; only emergency messages may be conveyed.",
1489
+ sub: [],
1239
1490
  },
1240
1491
  {
1241
1492
  id: "general-rules-6",
1242
1493
  text: "Sections allotted to students shall not be changed without valid justification.",
1494
+ sub: [],
1243
1495
  },
1244
1496
  {
1245
1497
  id: "general-rules-7",
1246
1498
  text: "The school is not responsible for injuries sustained during sports or co-curricular activities.",
1499
+ sub: [],
1247
1500
  },
1248
1501
  {
1249
1502
  id: "general-rules-8",
1250
1503
  text: "The school is not responsible for any consequences of postal delays.",
1504
+ sub: [],
1251
1505
  },
1252
1506
  {
1253
1507
  id: "general-rules-9",
1254
1508
  text: "Students are required to enrol for the next class and pay the prescribed fee after promotion, failing which their names will not appear on the class roll.",
1509
+ sub: [],
1255
1510
  },
1256
1511
  ],
1257
1512
  },
@@ -1262,14 +1517,17 @@ exports.policyCategories = [
1262
1517
  {
1263
1518
  id: "school-management-1",
1264
1519
  text: "The school management may shift any branch premises to another location without parental consent, with advance notice.",
1520
+ sub: [],
1265
1521
  },
1266
1522
  {
1267
1523
  id: "school-management-2",
1268
1524
  text: "The management reserves the right to make, revise, amend, or introduce any rule as required.",
1525
+ sub: [],
1269
1526
  },
1270
1527
  {
1271
1528
  id: "school-management-3",
1272
1529
  text: "Academic and disciplinary rules are not open to challenge.",
1530
+ sub: [],
1273
1531
  },
1274
1532
  ],
1275
1533
  },
@@ -61,9 +61,9 @@ function AccordionItem(_a) {
61
61
  react_1.default.createElement(lucide_react_1.CheckCircle, { className: "mt-0.5 h-4 w-4 shrink-0 ".concat(colorClass) }),
62
62
  react_1.default.createElement("div", null,
63
63
  react_1.default.createElement("p", { className: "text-sm leading-relaxed text-gray-700" }, point.text),
64
- point.sub && (react_1.default.createElement("ul", { className: "mt-2 space-y-1" }, point.sub.map(function (s, j) { return (react_1.default.createElement("li", { key: j, className: "flex items-start gap-2" },
64
+ point.sub && (react_1.default.createElement("ul", { className: "mt-2 space-y-1" }, point.sub.map(function (s) { return (react_1.default.createElement("li", { key: s.id, className: "flex items-start gap-2" },
65
65
  react_1.default.createElement("span", { className: "mt-2 h-1.5 w-1.5 shrink-0 rounded-full ".concat(bulletBg) }),
66
- react_1.default.createElement("span", { className: "text-sm text-gray-600" }, s))); })))))); })))))));
66
+ react_1.default.createElement("span", { className: "text-sm text-gray-600" }, s.text))); })))))); })))))));
67
67
  }
68
68
  function UniformPanel(_a) {
69
69
  var colorClass = _a.colorClass, bgClass = _a.bgClass, borderClass = _a.borderClass, bulletBg = _a.bulletBg, uniformData = _a.uniformData;
@@ -79,9 +79,9 @@ function UniformPanel(_a) {
79
79
  react_1.default.createElement("div", { className: "mb-3 flex items-center gap-2" },
80
80
  react_1.default.createElement("span", { className: "rounded-md px-2 py-0.5 text-xs font-bold ".concat(bgClass, " ").concat(colorClass) }, variant.gender),
81
81
  react_1.default.createElement("span", { className: "text-xs text-gray-500" }, variant.classes)),
82
- react_1.default.createElement("ul", { className: "space-y-1.5" }, variant.items.map(function (item, j) { return (react_1.default.createElement("li", { key: j, className: "flex items-start gap-2" },
82
+ react_1.default.createElement("ul", { className: "space-y-1.5" }, variant.items.map(function (item) { return (react_1.default.createElement("li", { key: item.id, className: "flex items-start gap-2" },
83
83
  react_1.default.createElement("span", { className: "mt-2 h-1.5 w-1.5 shrink-0 rounded-full ".concat(bulletBg) }),
84
- react_1.default.createElement("span", { className: "text-sm leading-relaxed text-gray-600" }, item))); })))); })),
84
+ react_1.default.createElement("span", { className: "text-sm leading-relaxed text-gray-600" }, item.text))); })))); })),
85
85
  react_1.default.createElement("p", { className: "rounded-lg border border-amber-200 bg-amber-50 px-4 py-2.5 text-xs text-amber-700" }, "Uniforms for both campuses are available at each campus canteen. Playgroup children may come in private clothes.")));
86
86
  }
87
87
  var PoliciesSection = function (_a) {