fat-design 0.0.1-beta.20250710151221 → 0.0.1-beta.20250720144540

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,3 @@
1
- /// <reference types="prop-types" />
2
1
  import React from "react";
3
2
  import { IConfigProviderProps, IGetContextProps } from "./types";
4
3
  declare class ConfigProvider extends React.Component<IConfigProviderProps, any> {
@@ -469,8 +469,11 @@ export interface SelectProps extends Omit<HTMLAttributesWeak, 'renderPreview'>,
469
469
  popupAutoFocus?: boolean;
470
470
  }
471
471
 
472
+ export class NativeSelect extends React.Component<SelectProps, any> { }
473
+
472
474
  export default class Select extends React.Component<SelectProps, any> {
473
475
  static AutoComplete: typeof AutoComplete;
474
476
  static OptionGroup: typeof OptionGroup;
475
477
  static Option: typeof Option;
478
+ static NativeSelect: typeof NativeSelect;
476
479
  }