@oxide/design-system 2.3.0 → 2.3.1--canary.fc0937b.0

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.
@@ -86,8 +86,8 @@ declare const Badge: ({ className, children, color, variant, }: BadgeProps) => r
86
86
 
87
87
  declare const buttonSizes: readonly ["sm", "icon", "base"];
88
88
  declare const variants: readonly ["primary", "secondary", "ghost", "danger"];
89
- type ButtonSize = typeof buttonSizes[number];
90
- type Variant = typeof variants[number];
89
+ type ButtonSize = (typeof buttonSizes)[number];
90
+ type Variant = (typeof variants)[number];
91
91
  type ButtonStyleProps = {
92
92
  size?: ButtonSize;
93
93
  variant?: Variant;
@@ -101,8 +101,8 @@ declare const Button: react.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> &
101
101
 
102
102
  declare const spinnerSizes: readonly ["base", "lg"];
103
103
  declare const spinnerVariants: readonly ["primary", "secondary", "ghost", "danger"];
104
- type SpinnerSize = typeof spinnerSizes[number];
105
- type SpinnerVariant = typeof spinnerVariants[number];
104
+ type SpinnerSize = (typeof spinnerSizes)[number];
105
+ type SpinnerVariant = (typeof spinnerVariants)[number];
106
106
  interface SpinnerProps {
107
107
  className?: string;
108
108
  size?: SpinnerSize;
@@ -3,7 +3,7 @@ import {
3
3
  DirectionRightIcon_default,
4
4
  Link16Icon_default,
5
5
  SelectArrows6Icon_default
6
- } from "../../chunk-ML7NK3OF.js";
6
+ } from "../../chunk-YRJL4JLL.js";
7
7
 
8
8
  // components/src/asciidoc/index.tsx
9
9
  import asciidoctor2 from "@asciidoctor/core";