@blocklet/constant 1.16.43-beta-20250419-231352-c78ac93d → 1.16.43-beta-20250420-132156-d732158a

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.
Files changed (3) hide show
  1. package/index.d.ts +0 -77
  2. package/index.js +0 -70
  3. package/package.json +2 -2
package/index.d.ts CHANGED
@@ -1009,82 +1009,5 @@ export declare const SIG_VERSION: {
1009
1009
  V1: string;
1010
1010
  DEFAULT: string;
1011
1011
  };
1012
- export declare const defaultTheme: {
1013
- palette: {
1014
- primary: {
1015
- main: string;
1016
- contrastText: string;
1017
- };
1018
- secondary: {
1019
- main: string;
1020
- contrastText: string;
1021
- };
1022
- storeSecondary: {
1023
- main: string;
1024
- contrastText: string;
1025
- };
1026
- divider: string;
1027
- text: {
1028
- primary: string;
1029
- secondary: string;
1030
- disabled: string;
1031
- lighter: string;
1032
- link: string;
1033
- };
1034
- };
1035
- typography: {
1036
- fontSize: number;
1037
- button: {
1038
- textTransform: string;
1039
- };
1040
- allVariants: {
1041
- textTransform: string;
1042
- };
1043
- h1: {
1044
- fontSize: number;
1045
- fontWeight: number;
1046
- lineHeight: number;
1047
- textAlign: string;
1048
- };
1049
- h2: {
1050
- fontSize: number;
1051
- fontWeight: number;
1052
- lineHeight: number;
1053
- textAlign: string;
1054
- };
1055
- h3: {
1056
- fontSize: number;
1057
- fontWeight: number;
1058
- lineHeight: number;
1059
- textAlign: string;
1060
- };
1061
- fontWeightLight: number;
1062
- fontWeightRegular: number;
1063
- fontWeightMedium: number;
1064
- fontWeightBold: number;
1065
- };
1066
- overrides: {
1067
- MuiTableRow: {
1068
- root: {
1069
- "&:nth-child(even)": {
1070
- backgroundColor: string;
1071
- };
1072
- };
1073
- head: {
1074
- backgroundColor: string;
1075
- };
1076
- };
1077
- };
1078
- breakpoints: {
1079
- values: {
1080
- xs: number;
1081
- sm: number;
1082
- md: number;
1083
- lg: number;
1084
- xl: number;
1085
- };
1086
- };
1087
- disableBlockletTheme: boolean;
1088
- };
1089
1012
 
1090
1013
  export {};
package/index.js CHANGED
@@ -95,7 +95,6 @@ __export(lib_exports, {
95
95
  SUSPENDED_REASON: () => SUSPENDED_REASON,
96
96
  TeamEvents: () => TeamEvents,
97
97
  baseLanguages: () => baseLanguages,
98
- defaultTheme: () => defaultTheme,
99
98
  fromBlockletSource: () => fromBlockletSource,
100
99
  fromBlockletStatus: () => fromBlockletStatus,
101
100
  toBlockletSource: () => toBlockletSource,
@@ -1198,74 +1197,6 @@ var SIG_VERSION = {
1198
1197
  V1: "1",
1199
1198
  DEFAULT: "1"
1200
1199
  };
1201
- var defaultTheme = {
1202
- palette: {
1203
- primary: { main: "#1DC1C7", contrastText: "#fff" },
1204
- secondary: { main: "#030712", contrastText: "#fff" },
1205
- storeSecondary: { main: "#EBFEFF", contrastText: "#fff" },
1206
- divider: "#F4F4F5",
1207
- text: {
1208
- primary: "#18181B",
1209
- secondary: "#71717B",
1210
- disabled: "#D4D4D8",
1211
- lighter: "#9ca3af",
1212
- link: "#0086FF"
1213
- }
1214
- },
1215
- typography: {
1216
- fontSize: 14,
1217
- button: {
1218
- textTransform: "none"
1219
- },
1220
- allVariants: {
1221
- textTransform: "none"
1222
- },
1223
- h1: {
1224
- fontSize: 32,
1225
- fontWeight: 700,
1226
- lineHeight: 1.375,
1227
- textAlign: "left"
1228
- },
1229
- h2: {
1230
- fontSize: 24,
1231
- fontWeight: 700,
1232
- lineHeight: 1.3333333,
1233
- textAlign: "left"
1234
- },
1235
- h3: {
1236
- fontSize: 18,
1237
- fontWeight: 600,
1238
- lineHeight: 1.5,
1239
- textAlign: "left"
1240
- },
1241
- fontWeightLight: 300,
1242
- fontWeightRegular: 400,
1243
- fontWeightMedium: 500,
1244
- fontWeightBold: 700
1245
- },
1246
- overrides: {
1247
- MuiTableRow: {
1248
- root: {
1249
- "&:nth-child(even)": {
1250
- backgroundColor: "rgba(0, 0, 0, 0.02)"
1251
- }
1252
- },
1253
- head: {
1254
- backgroundColor: "transparent"
1255
- }
1256
- }
1257
- },
1258
- breakpoints: {
1259
- values: {
1260
- xs: 0,
1261
- sm: 600,
1262
- md: 960,
1263
- lg: 1280,
1264
- xl: 1920
1265
- }
1266
- },
1267
- disableBlockletTheme: true
1268
- };
1269
1200
  // Annotate the CommonJS export names for ESM import in node:
1270
1201
  0 && (module.exports = {
1271
1202
  ALLOW_VERIFY_PROVIDERS,
@@ -1344,7 +1275,6 @@ var defaultTheme = {
1344
1275
  SUSPENDED_REASON,
1345
1276
  TeamEvents,
1346
1277
  baseLanguages,
1347
- defaultTheme,
1348
1278
  fromBlockletSource,
1349
1279
  fromBlockletStatus,
1350
1280
  toBlockletSource,
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.16.43-beta-20250419-231352-c78ac93d",
6
+ "version": "1.16.43-beta-20250420-132156-d732158a",
7
7
  "description": "Blocklet constants",
8
8
  "main": "index.js",
9
9
  "type": "commonjs",
@@ -36,5 +36,5 @@
36
36
  "ts-jest": "^29.2.5",
37
37
  "typescript": "^5.6.3"
38
38
  },
39
- "gitHead": "207acad34e8ccf318cd7539c1ac717cee7951b53"
39
+ "gitHead": "f66c266e63a7da8438133b3a4fa9a398b0bd58ed"
40
40
  }