@veritone-ce/design-system 2.0.0-next.3 → 2.0.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.
@@ -1,4 +1,5 @@
1
1
  'use strict';
2
+ 'use client';
2
3
  import { jsx } from 'react/jsx-runtime';
3
4
  import { createTheme, ThemeProvider, CircularProgress as CircularProgress$1 } from '@mui/material';
4
5
  import modules_efc4e723 from './styles.module.scss.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veritone-ce/design-system",
3
- "version": "2.0.0-next.3",
3
+ "version": "2.0.0",
4
4
  "private": false,
5
5
  "description": "Design System for Veritone CE",
6
6
  "keywords": [
@@ -1,20 +0,0 @@
1
- import * as React from 'react';
2
- export type MenuGroupItemProps = {
3
- children?: React.ReactNode;
4
- };
5
- export declare const MenuGroupItem: React.ForwardRefExoticComponent<MenuGroupItemProps & React.RefAttributes<HTMLButtonElement>>;
6
- export type MenuItemProps = {
7
- label: string;
8
- disabled?: boolean;
9
- };
10
- export declare const MenuItem: React.ForwardRefExoticComponent<MenuItemProps & React.ButtonHTMLAttributes<HTMLButtonElement> & React.RefAttributes<HTMLButtonElement>>;
11
- export type RootMenuProps = {
12
- portalEl?: HTMLElement | null | React.MutableRefObject<HTMLElement | null>;
13
- children?: React.ReactNode;
14
- };
15
- export declare const RootMenu: React.ForwardRefExoticComponent<RootMenuProps & React.RefAttributes<HTMLButtonElement>>;
16
- export type MenuProps = {
17
- children?: React.ReactNode;
18
- };
19
- export declare const Menu: React.ForwardRefExoticComponent<MenuProps & React.RefAttributes<HTMLButtonElement>>;
20
- export default Menu;