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.
- package/index.browser.js +16 -16
- package/index.js +2377 -2329
- package/index.umd.cjs +15 -15
- package/index.umd.js +15 -15
- package/package.json +2 -2
- package/style.css +1 -1
- package/types/0buildTypes/config-provider/v2/index.d.ts +0 -1
- package/types/select/index.d.ts +3 -0
package/types/select/index.d.ts
CHANGED
|
@@ -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
|
}
|