@accelint/design-toolkit 8.1.1 → 8.1.2

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/catalog-info.yaml CHANGED
@@ -11,16 +11,16 @@ metadata:
11
11
 
12
12
  Dependencies:
13
13
 
14
- accelint_biome-config@1.0.2, accelint_bus@3.0.0,
15
- accelint_constellation-tracker@1.0.1, accelint_core@0.5.0,
16
- accelint_design-foundation@1.0.1, accelint_geo@0.4.0, accelint_icons@2.1.0,
17
- accelint_logger@0.1.2, accelint_postcss-tailwind-css-modules@1.0.0,
18
- accelint_prettier-config@0.2.0, accelint_temporal@0.1.2,
14
+ accelint_biome-config@1.0.2, accelint_bus@3.0.1,
15
+ accelint_constellation-tracker@1.0.1, accelint_core@0.5.1,
16
+ accelint_design-foundation@1.0.2, accelint_geo@0.4.1, accelint_icons@2.1.1,
17
+ accelint_logger@0.1.3, accelint_postcss-tailwind-css-modules@1.0.0,
18
+ accelint_prettier-config@0.2.0, accelint_temporal@0.1.3,
19
19
  accelint_typescript-config@0.1.4, accelint_vitest-config@0.1.5
20
20
  annotations:
21
21
  backstage.io/edit-url: https://github.com/gohypergiant/standard-toolkit/blob/main/packages/design-toolkit/catalog-info.yaml
22
22
  backstage.io/techdocs-ref: dir:.
23
- package/version: 8.1.1
23
+ package/version: 8.1.2
24
24
  github.com/project-slug: gohypergiant/standard-toolkit
25
25
  links:
26
26
  - url: https://github.com/gohypergiant/standard-toolkit/tree/main/packages/design-toolkit
@@ -381,7 +381,7 @@
381
381
  }
382
382
  }
383
383
 
384
- @variant color-serious {
384
+ @variant color-critical {
385
385
  @apply fg-primary-bold outline-critical-bold bg-transparent outline;
386
386
 
387
387
  @variant hover {
@@ -1,4 +1,4 @@
1
- import { RefAttributes } from 'react';
1
+ import { RefAttributes, ReactElement } from 'react';
2
2
  import { MenuProps as MenuProps$1, PopoverProps, MenuItemProps as MenuItemProps$1, TextProps, MenuSectionProps as MenuSectionProps$1 } from 'react-aria-components';
3
3
  import { IconProps } from '../icon/types.js';
4
4
 
@@ -25,7 +25,7 @@ type MenuSectionProps<T> = Omit<MenuSectionProps$1<T>, 'className'> & {
25
25
  section?: MenuSectionProps$1<T>['className'];
26
26
  header?: string;
27
27
  };
28
- title?: string;
28
+ title?: string | ReactElement;
29
29
  };
30
30
 
31
31
  export type { MenuItemProps, MenuProps, MenuSectionProps };