@algorithm-shift/design-system 1.2.951 → 1.2.952

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/dist/index.d.mts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as React$1 from 'react';
3
3
  import React__default from 'react';
4
- import * as axios from 'axios';
4
+ import axios from 'axios';
5
5
  import { ToasterProps } from 'sonner';
6
6
  import { ClassValue } from 'clsx';
7
7
 
@@ -92,7 +92,7 @@ interface SelectDropdownInputProps extends ElementProps, InputProperties, InputS
92
92
  pageSize?: number;
93
93
  value?: string | any;
94
94
  onChange?: (value: string, name: string) => void;
95
- axiosInstance?: typeof axios.default;
95
+ axiosInstance?: typeof axios;
96
96
  }
97
97
  interface SwitchToggleInputProps extends ElementProps, InputProperties {
98
98
  value?: boolean | any;
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as React$1 from 'react';
3
3
  import React__default from 'react';
4
- import * as axios from 'axios';
4
+ import axios from 'axios';
5
5
  import { ToasterProps } from 'sonner';
6
6
  import { ClassValue } from 'clsx';
7
7
 
@@ -92,7 +92,7 @@ interface SelectDropdownInputProps extends ElementProps, InputProperties, InputS
92
92
  pageSize?: number;
93
93
  value?: string | any;
94
94
  onChange?: (value: string, name: string) => void;
95
- axiosInstance?: typeof axios.default;
95
+ axiosInstance?: typeof axios;
96
96
  }
97
97
  interface SwitchToggleInputProps extends ElementProps, InputProperties {
98
98
  value?: boolean | any;
package/dist/index.js CHANGED
@@ -152,7 +152,6 @@ function Modal({
152
152
  {
153
153
  className: cn(
154
154
  "bg-white dark:bg-gray-800 rounded-lg shadow-xl w-full max-h-[90vh] overflow-hidden",
155
- `bg-white dark:bg-gray-800 rounded-lg shadow-xl w-full max-h-[90vh] overflow-hidden`,
156
155
  className,
157
156
  `${sizeClasses[size]}`
158
157
  ),