@logora/debate 0.4.33 → 0.4.35

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.
@@ -212,7 +212,7 @@ const Ne = ce(() => import("../../input/argument_input/index.js").then((e) => ({
212
212
  Ie,
213
213
  {
214
214
  resource: e,
215
- disabled: b || e.status === "rejected" || !W && r?.actions?.disableInputForVisitor === !0 || A,
215
+ disabled: b || e.status === "rejected" || e.status === "pending" || !W && r?.actions?.disableInputForVisitor === !0 || A,
216
216
  reportType: "Message",
217
217
  softDelete: r.actions?.softDelete,
218
218
  deleteType: "messages",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@logora/debate",
3
- "version": "0.4.33",
3
+ "version": "0.4.35",
4
4
  "type": "module",
5
5
  "license": "AGPL-3.0",
6
6
  "description": "Design system of @Logora made with React",
@@ -25,11 +25,8 @@ $text-tertiary: var(--text-tertiary, #fafafa);
25
25
  $text-light: var(--text-light, white);
26
26
  $font-weight-normal: var(--font-weight-normal, 400);
27
27
  $font-weight-bold: var(--font-weight-bold, 700);
28
- $font-variation-light: var(--font-variation-light, normal);
29
28
  $font-variation-normal: var(--font-variation-normal, normal);
30
- $font-variation-medium: var(--font-variation-medium, normal);
31
29
  $font-variation-bold: var(--font-variation-bold, normal);
32
- $font-variation-extra-bold: var(--font-variation-extra-bold, normal);
33
30
  $darken-text-tertiary: var(--darken-text-tertiary, #F1EFED);
34
31
  $darkest-text-tertiary: var(--darkest-text-tertiary, #c7c7c7);
35
32
  $font-family: var(--font-family, 'Montserrat');
@@ -51,11 +51,8 @@ This SASS file contains all the variables used for defining colors, fonts, borde
51
51
  - **$font-size-extra-small**: Extra small font size (`14px`).
52
52
  - **$font-weight-normal**: Normal font weight (`400`).
53
53
  - **$font-weight-bold**: Bold font weight (`700`).
54
- - **$font-variation-light**: `font-variation-settings` value for light text, applied alongside `font-weight` (defaults to `normal`, i.e. no effect). Override for variable fonts, e.g. `"wght" 300, "opsz" 66`.
55
54
  - **$font-variation-normal**: `font-variation-settings` value for normal text (defaults to `normal`, i.e. no effect). Override for variable fonts, e.g. `"wght" 400, "opsz" 66`.
56
- - **$font-variation-medium**: `font-variation-settings` value for medium text (defaults to `normal`, i.e. no effect). Override for variable fonts, e.g. `"wght" 500, "opsz" 66`.
57
55
  - **$font-variation-bold**: `font-variation-settings` value for bold text (defaults to `normal`, i.e. no effect). Override for variable fonts, e.g. `"wght" 700, "opsz" 66`.
58
- - **$font-variation-extra-bold**: `font-variation-settings` value for extra-bold text (defaults to `normal`, i.e. no effect). Override for variable fonts, e.g. `"wght" 800, "opsz" 66`.
59
56
 
60
57
  > **Variable fonts (e.g. Clarín's `ClarinvarVF`)**: These variables let a client apply `font-variation-settings` in addition to the standard `font-weight`. By default they are `normal` and have no effect, so `font-weight` behaves as usual. When a client overrides them (via the corresponding CSS custom properties `--font-variation-*`), the `font-variation-settings` takes precedence over `font-weight` for fonts that support it.
61
58