Socket
Socket
Sign inDemoInstall

@mui/base

Package Overview
Dependencies
Maintainers
8
Versions
139
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mui/base - npm Package Compare versions

Comparing version 5.0.0-alpha.62 to 5.0.0-alpha.63

6

AutocompleteUnstyled/useAutocomplete.js

@@ -517,3 +517,7 @@ import _extends from "@babel/runtime/helpers/esm/extends";

const handleValue = (event, newValue, reason, details) => {
if (value === newValue) {
if (Array.isArray(value)) {
if (value.length === newValue.length && value.every((val, i) => val === newValue[i])) {
return;
}
} else if (value === newValue) {
return;

@@ -520,0 +524,0 @@ }

@@ -0,0 +0,0 @@ export interface BackdropUnstyledClasses {

@@ -0,0 +0,0 @@ export interface BadgeUnstyledClasses {

@@ -0,0 +0,0 @@ import * as React from 'react';

@@ -0,0 +0,0 @@ import * as React from 'react';

@@ -0,0 +0,0 @@ import * as React from 'react';

@@ -0,0 +0,0 @@ export interface ButtonUnstyledClasses {

@@ -0,0 +0,0 @@ import { OverrideProps } from '@mui/types';

@@ -0,0 +0,0 @@ export { default } from './ButtonUnstyled';

@@ -0,0 +0,0 @@ import * as React from 'react';

@@ -0,0 +0,0 @@ import * as React from 'react';

@@ -0,0 +0,0 @@ import * as React from 'react';

export { default } from './ClickAwayListener';
export * from './ClickAwayListener';
export default function composeClasses<ClassKey extends string>(slots: Record<ClassKey, ReadonlyArray<string | false | undefined | null>>, getUtilityClass: (slot: string) => string, classes: Record<string, string> | undefined): Record<ClassKey, string>;
export { default } from './composeClasses';

@@ -0,0 +0,0 @@ import * as React from 'react';

@@ -0,0 +0,0 @@ import { OverridableComponent } from '@mui/types';

@@ -0,0 +0,0 @@ export interface FormControlUnstyledClasses {

@@ -0,0 +0,0 @@ import { OverrideProps } from '@mui/types';

@@ -0,0 +0,0 @@ export { default } from './FormControlUnstyled';

export default function useFormControlUnstyled(): import("./FormControlContext").FormControlUnstyledState | undefined;

@@ -0,0 +0,0 @@ declare const ClassNameGenerator: {

export declare type GlobalStateSlot = 'active' | 'checked' | 'completed' | 'disabled' | 'error' | 'expanded' | 'focused' | 'focusVisible' | 'required' | 'selected';
export default function generateUtilityClass(componentName: string, slot: string): string;
export { default } from './generateUtilityClass';
export * from './generateUtilityClass';
export { default as unstable_ClassNameGenerator } from './ClassNameGenerator';
export default function generateUtilityClasses<T extends string>(componentName: string, slots: T[]): Record<T, string>;
export { default } from './generateUtilityClasses';

2

index.js

@@ -1,2 +0,2 @@

/** @license MUI v5.0.0-alpha.62
/** @license MUI v5.0.0-alpha.63
*

@@ -3,0 +3,0 @@ * This source code is licensed under the MIT license found in the

@@ -0,0 +0,0 @@ export { default } from './InputUnstyled';

@@ -0,0 +0,0 @@ import { OverridableComponent } from '@mui/types';

@@ -0,0 +0,0 @@ export interface InputUnstyledClasses {

@@ -0,0 +0,0 @@ import React from 'react';

@@ -0,0 +0,0 @@ import * as React from 'react';

@@ -582,3 +582,9 @@ import _extends from "@babel/runtime/helpers/esm/extends";

var handleValue = function handleValue(event, newValue, reason, details) {
if (value === newValue) {
if (Array.isArray(value)) {
if (value.length === newValue.length && value.every(function (val, i) {
return val === newValue[i];
})) {
return;
}
} else if (value === newValue) {
return;

@@ -585,0 +591,0 @@ }

@@ -1,2 +0,2 @@

/** @license MUI v5.0.0-alpha.62
/** @license MUI v5.0.0-alpha.63
*

@@ -3,0 +3,0 @@ * This source code is licensed under the MIT license found in the

@@ -0,0 +0,0 @@ export interface ManagedModalProps {

@@ -0,0 +0,0 @@ export interface ModalUnstyledClasses {

@@ -513,3 +513,7 @@ import _extends from "@babel/runtime/helpers/esm/extends";

const handleValue = (event, newValue, reason, details) => {
if (value === newValue) {
if (Array.isArray(value)) {
if (value.length === newValue.length && value.every((val, i) => val === newValue[i])) {
return;
}
} else if (value === newValue) {
return;

@@ -516,0 +520,0 @@ }

@@ -1,2 +0,2 @@

/** @license MUI v5.0.0-alpha.62
/** @license MUI v5.0.0-alpha.63
*

@@ -3,0 +3,0 @@ * This source code is licensed under the MIT license found in the

@@ -535,3 +535,7 @@ "use strict";

const handleValue = (event, newValue, reason, details) => {
if (value === newValue) {
if (Array.isArray(value)) {
if (value.length === newValue.length && value.every((val, i) => val === newValue[i])) {
return;
}
} else if (value === newValue) {
return;

@@ -538,0 +542,0 @@ }

@@ -1,2 +0,2 @@

/** @license MUI v5.0.0-alpha.62
/** @license MUI v5.0.0-alpha.63
*

@@ -3,0 +3,0 @@ * This source code is licensed under the MIT license found in the

{
"name": "@mui/base",
"version": "5.0.0-alpha.62",
"version": "5.0.0-alpha.63",
"private": false,

@@ -5,0 +5,0 @@ "author": "MUI Team",

@@ -0,0 +0,0 @@ export interface SliderUnstyledClasses {

@@ -0,0 +0,0 @@ export { default } from './SwitchUnstyled';

@@ -0,0 +0,0 @@ import * as React from 'react';

@@ -0,0 +0,0 @@ export interface SwitchUnstyledClasses {

@@ -0,0 +0,0 @@ import * as React from 'react';

@@ -0,0 +0,0 @@ export { default } from './TablePaginationUnstyled';

@@ -0,0 +0,0 @@ import { OverridableComponent } from '@mui/types';

@@ -0,0 +0,0 @@ import * as React from 'react';

@@ -0,0 +0,0 @@ import { OverridableComponent } from '@mui/types';

@@ -0,0 +0,0 @@ export interface TablePaginationUnstyledClasses {

@@ -0,0 +0,0 @@ import * as React from 'react';

@@ -0,0 +0,0 @@ export { default } from './TabPanelUnstyled';

@@ -0,0 +0,0 @@ import { OverridableComponent } from '@mui/types';

@@ -0,0 +0,0 @@ export interface TabPanelUnstyledClasses {

@@ -0,0 +0,0 @@ import React from 'react';

@@ -0,0 +0,0 @@ export interface UseTabPanelProps {

@@ -0,0 +0,0 @@ export { default } from './TabsListUnstyled';

@@ -0,0 +0,0 @@ import { OverridableComponent } from '@mui/types';

@@ -0,0 +0,0 @@ export interface TabsListUnstyledClasses {

@@ -0,0 +0,0 @@ import React from 'react';

@@ -0,0 +0,0 @@ import * as React from 'react';

@@ -0,0 +0,0 @@ export { default } from './TabsUnstyled';

@@ -0,0 +0,0 @@ import * as React from 'react';

@@ -0,0 +0,0 @@ import { OverridableComponent } from '@mui/types';

@@ -0,0 +0,0 @@ export interface TabsUnstyledClasses {

@@ -0,0 +0,0 @@ import React from 'react';

@@ -0,0 +0,0 @@ import * as React from 'react';

@@ -0,0 +0,0 @@ export { default } from './TabUnstyled';

@@ -0,0 +0,0 @@ import { OverridableComponent } from '@mui/types';

@@ -0,0 +0,0 @@ export interface TabUnstyledClasses {

@@ -0,0 +0,0 @@ /// <reference types="react" />

@@ -0,0 +0,0 @@ /// <reference types="react" />

@@ -0,0 +0,0 @@ /// <reference types="react" />

export { default as appendOwnerState } from './appendOwnerState';
export { default as extractEventHandlers } from './extractEventHandlers';
export { default as isHostComponent } from './isHostComponent';

@@ -0,0 +0,0 @@ import React from 'react';

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc