fansunited-frontend-components 0.0.2-RC1 → 0.0.3

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/README.md +18 -2
  2. package/components.js +6303 -6255
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -169,7 +169,7 @@ const themeOptions: CustomThemeOptions = {
169
169
  secondaryContainer: "#757575",
170
170
  },
171
171
  },
172
- breakpoints: {
172
+ customBreakpoints: {
173
173
  values: {
174
174
  xs: 0,
175
175
  sm: 444,
@@ -232,6 +232,22 @@ const themeOptions: CustomThemeOptions = {
232
232
  size: "2px",
233
233
  },
234
234
  },
235
+ defaultCustomGradient: {
236
+ light: {
237
+ standard:
238
+ "linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(18, 18, 18, 0.8) 100%)",
239
+ split:
240
+ "linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(18, 18, 18, 0.8) 100%)",
241
+ },
242
+ dark: {
243
+ standard:
244
+ "linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(18, 18, 18, 0.8) 100%)",
245
+ split:
246
+ "linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(18, 18, 18, 0.8) 100%)",
247
+ overlay:
248
+ "linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(18, 18, 18, 0.8) 100%)",
249
+ },
250
+ },
235
251
  };
236
252
 
237
253
  <ClassicQuizPlay {...otherProps} themeOptions={themeOptions} />;
@@ -263,7 +279,7 @@ This package is built with TypeScript and provides full type definitions. Import
263
279
  import {
264
280
  ClassicQuizPlayProps,
265
281
  WidgetTemplate,
266
- WidgetProps,
282
+ MainProps,
267
283
  CustomThemeOptions,
268
284
  LeadsOptions,
269
285
  AnalyticsEvent,