@abhir9/pd-design-system 0.1.11 → 0.1.13

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/styles.css CHANGED
@@ -870,12 +870,30 @@ button {
870
870
  .mb-6 {
871
871
  margin-bottom: 0.6rem;
872
872
  }
873
+ .ml-10 {
874
+ margin-left: 1rem;
875
+ }
876
+ .ml-12 {
877
+ margin-left: 1.2rem;
878
+ }
873
879
  .ml-2 {
874
880
  margin-left: 0.2rem;
875
881
  }
882
+ .ml-8 {
883
+ margin-left: 0.8rem;
884
+ }
885
+ .mr-10 {
886
+ margin-right: 1rem;
887
+ }
888
+ .mr-12 {
889
+ margin-right: 1.2rem;
890
+ }
876
891
  .mr-2 {
877
892
  margin-right: 0.2rem;
878
893
  }
894
+ .mr-8 {
895
+ margin-right: 0.8rem;
896
+ }
879
897
  .inline {
880
898
  display: inline;
881
899
  }
@@ -906,15 +924,24 @@ button {
906
924
  .h-2 {
907
925
  height: 0.2rem;
908
926
  }
927
+ .h-20 {
928
+ height: 2rem;
929
+ }
909
930
  .h-28 {
910
931
  height: 2.8rem;
911
932
  }
912
933
  .h-3 {
913
934
  height: 0.3rem;
914
935
  }
936
+ .h-36 {
937
+ height: 3.6rem;
938
+ }
915
939
  .h-4 {
916
940
  height: 0.4rem;
917
941
  }
942
+ .h-40 {
943
+ height: 4rem;
944
+ }
918
945
  .h-5 {
919
946
  height: 0.5rem;
920
947
  }
@@ -927,6 +954,12 @@ button {
927
954
  .min-h-screen {
928
955
  min-height: 100vh;
929
956
  }
957
+ .w-12 {
958
+ width: 1.2rem;
959
+ }
960
+ .w-16 {
961
+ width: 1.6rem;
962
+ }
930
963
  .w-2 {
931
964
  width: 0.2rem;
932
965
  }
@@ -1183,17 +1216,21 @@ button {
1183
1216
  padding-left: 0.1rem;
1184
1217
  padding-right: 0.1rem;
1185
1218
  }
1219
+ .px-12 {
1220
+ padding-left: 1.2rem;
1221
+ padding-right: 1.2rem;
1222
+ }
1223
+ .px-16 {
1224
+ padding-left: 1.6rem;
1225
+ padding-right: 1.6rem;
1226
+ }
1186
1227
  .px-3 {
1187
1228
  padding-left: 0.3rem;
1188
1229
  padding-right: 0.3rem;
1189
1230
  }
1190
- .px-4 {
1191
- padding-left: 0.4rem;
1192
- padding-right: 0.4rem;
1193
- }
1194
- .px-6 {
1195
- padding-left: 0.6rem;
1196
- padding-right: 0.6rem;
1231
+ .px-32 {
1232
+ padding-left: 3.2rem;
1233
+ padding-right: 3.2rem;
1197
1234
  }
1198
1235
  .pt-2 {
1199
1236
  padding-top: 0.2rem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abhir9/pd-design-system",
3
- "version": "0.1.11",
3
+ "version": "0.1.13",
4
4
  "description": "Production-grade design system with adapter layer support",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -33,7 +33,7 @@
33
33
  "build-storybook": "storybook build",
34
34
  "build": "npm run generate:css-variables && tsup && npm run build:css && rm -f dist/*.css.map",
35
35
  "generate:css-variables": "tsx scripts/generate-css-variables.ts",
36
- "build:css": "cp src/styles.css dist/index.css",
36
+ "build:css": "postcss src/styles.css -o dist/index.css",
37
37
  "dev": "tsup --watch",
38
38
  "type-check": "tsc --noEmit",
39
39
  "lint": "eslint src --ext .ts,.tsx",