@fluentui/react-input 9.0.0-beta.8 → 9.0.0-rc.3
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/CHANGELOG.json +142 -1
- package/CHANGELOG.md +45 -2
- package/README.md +32 -0
- package/dist/index.d.ts +1 -6
- package/{lib → dist}/tsdoc-metadata.json +0 -0
- package/lib/components/Input/Input.types.js.map +1 -1
- package/lib/components/Input/useInputStyles.js +36 -56
- package/lib/components/Input/useInputStyles.js.map +1 -1
- package/lib/index.js +1 -2
- package/lib/index.js.map +1 -1
- package/lib-commonjs/components/Input/useInputStyles.js +36 -56
- package/lib-commonjs/components/Input/useInputStyles.js.map +1 -1
- package/lib-commonjs/index.js +1 -8
- package/lib-commonjs/index.js.map +1 -1
- package/package.json +7 -6
- package/lib/Input.d.ts +0 -1
- package/lib/components/Input/Input.d.ts +0 -6
- package/lib/components/Input/Input.types.d.ts +0 -79
- package/lib/components/Input/index.d.ts +0 -5
- package/lib/components/Input/renderInput.d.ts +0 -5
- package/lib/components/Input/useInput.d.ts +0 -12
- package/lib/components/Input/useInputStyles.d.ts +0 -11
- package/lib/index.d.ts +0 -2
- package/lib-commonjs/Input.d.ts +0 -1
- package/lib-commonjs/components/Input/Input.d.ts +0 -6
- package/lib-commonjs/components/Input/Input.types.d.ts +0 -79
- package/lib-commonjs/components/Input/index.d.ts +0 -5
- package/lib-commonjs/components/Input/renderInput.d.ts +0 -5
- package/lib-commonjs/components/Input/useInput.d.ts +0 -12
- package/lib-commonjs/components/Input/useInputStyles.d.ts +0 -11
- package/lib-commonjs/index.d.ts +0 -2
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { InputSlots, InputState } from './Input.types';
|
|
2
|
-
import type { SlotClassNames } from '@fluentui/react-utilities';
|
|
3
|
-
/**
|
|
4
|
-
* @deprecated Use `inputClassNames.root` instead.
|
|
5
|
-
*/
|
|
6
|
-
export declare const inputClassName = "fui-Input";
|
|
7
|
-
export declare const inputClassNames: SlotClassNames<InputSlots>;
|
|
8
|
-
/**
|
|
9
|
-
* Apply styling to the Input slots based on the state
|
|
10
|
-
*/
|
|
11
|
-
export declare const useInputStyles_unstable: (state: InputState) => InputState;
|
package/lib-commonjs/index.d.ts
DELETED