Skip to content

Commit

Permalink
Update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
flaviendelangle committed Jan 8, 2024
1 parent 3e2c251 commit d2f28f9
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 236 deletions.
4 changes: 0 additions & 4 deletions docs/data/date-pickers-component-api-pages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,7 @@ export default [
{ pathname: '/x/api/date-pickers/pickers-action-bar', title: 'PickersActionBar' },
{ pathname: '/x/api/date-pickers/pickers-calendar-header', title: 'PickersCalendarHeader' },
{ pathname: '/x/api/date-pickers/pickers-day', title: 'PickersDay' },
{ pathname: '/x/api/date-pickers/pickers-filled-input', title: 'PickersFilledInput' },
{ pathname: '/x/api/date-pickers/pickers-input', title: 'PickersInput' },
{ pathname: '/x/api/date-pickers/pickers-input-base', title: 'PickersInputBase' },
{ pathname: '/x/api/date-pickers/pickers-layout', title: 'PickersLayout' },
{ pathname: '/x/api/date-pickers/pickers-outlined-input', title: 'PickersOutlinedInput' },
{ pathname: '/x/api/date-pickers/pickers-section-list', title: 'PickersSectionList' },
{ pathname: '/x/api/date-pickers/pickers-shortcuts', title: 'PickersShortcuts' },
{ pathname: '/x/api/date-pickers/pickers-text-field', title: 'PickersTextField' },
Expand Down
23 changes: 0 additions & 23 deletions docs/pages/x/api/date-pickers/pickers-filled-input.js

This file was deleted.

35 changes: 0 additions & 35 deletions docs/pages/x/api/date-pickers/pickers-filled-input.json

This file was deleted.

23 changes: 0 additions & 23 deletions docs/pages/x/api/date-pickers/pickers-input-base.js

This file was deleted.

35 changes: 0 additions & 35 deletions docs/pages/x/api/date-pickers/pickers-input-base.json

This file was deleted.

23 changes: 0 additions & 23 deletions docs/pages/x/api/date-pickers/pickers-input.js

This file was deleted.

35 changes: 0 additions & 35 deletions docs/pages/x/api/date-pickers/pickers-input.json

This file was deleted.

23 changes: 0 additions & 23 deletions docs/pages/x/api/date-pickers/pickers-outlined-input.js

This file was deleted.

35 changes: 0 additions & 35 deletions docs/pages/x/api/date-pickers/pickers-outlined-input.json

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,9 @@ interface OwnerStateType
extends FormControlState,
Omit<PickersFilledInputProps, keyof FormControlState> {}

/**
* @ignore - internal component.
*/
const PickersFilledInput = React.forwardRef(function PickersFilledInput(
inProps: PickersFilledInputProps,
ref: React.Ref<HTMLDivElement>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ interface OwnerStateType
extends FormControlState,
Omit<PickersInputProps, keyof FormControlState> {}

/**
* @ignore - internal component.
*/
const PickersInput = React.forwardRef(function PickersInput(
inProps: PickersInputProps,
ref: React.Ref<HTMLDivElement>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,9 @@ interface OwnerStateType
extends FormControlState,
Omit<PickersInputBaseProps, keyof FormControlState> {}

/**
* @ignore - internal component.
*/
const PickersInputBase = React.forwardRef(function PickersInputBase(
inProps: PickersInputBaseProps,
ref: React.Ref<HTMLDivElement>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ interface OwnerStateType
extends FormControlState,
Omit<PickersOutlinedInputProps, keyof FormControlState> {}

/**
* @ignore - internal component.
*/
const PickersOutlinedInput = React.forwardRef(function PickersOutlinedInput(
inProps: PickersOutlinedInputProps,
ref: React.Ref<HTMLDivElement>,
Expand Down

0 comments on commit d2f28f9

Please sign in to comment.