@navikt/ds-react 5.5.0 → 5.6.0
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/_docs.json +507 -106
- package/cjs/accordion/Accordion.js +1 -0
- package/cjs/accordion/AccordionContext.js +1 -1
- package/cjs/accordion/AccordionHeader.js +2 -2
- package/cjs/accordion/AccordionItem.js +6 -2
- package/cjs/date/datepicker/DatePicker.js +30 -34
- package/cjs/date/datepicker/DatePickerStandalone.js +23 -26
- package/cjs/date/datepicker/parts/Caption.js +28 -0
- package/cjs/date/datepicker/{DayButton.js → parts/DayButton.js} +1 -2
- package/cjs/date/datepicker/{caption → parts}/DropdownCaption.js +13 -7
- package/cjs/date/datepicker/parts/HeadRow.js +36 -0
- package/cjs/date/datepicker/parts/Row.js +23 -0
- package/cjs/date/datepicker/{TableHead.js → parts/TableHead.js} +4 -3
- package/cjs/date/datepicker/parts/WeekNumber.js +35 -0
- package/cjs/date/datepicker/parts/WeekRow.js +34 -0
- package/cjs/date/hooks/useDatepicker.js +2 -2
- package/cjs/date/hooks/useMonthPicker.js +2 -2
- package/cjs/date/hooks/useRangeDatepicker.js +3 -3
- package/cjs/date/monthpicker/MonthSelector.js +1 -1
- package/cjs/date/utils/get-month-weeks.js +46 -0
- package/cjs/date/utils/labels.js +40 -1
- package/cjs/dropdown/Toggle.js +2 -2
- package/cjs/dropdown/index.js +0 -15
- package/cjs/form/Select.js +1 -1
- package/cjs/form/checkbox/useCheckbox.js +3 -4
- package/cjs/form/combobox/Combobox.js +1 -1
- package/cjs/form/combobox/Input/Input.js +1 -1
- package/cjs/form/search/Search.js +3 -1
- package/cjs/index.js +1 -0
- package/cjs/layout/bleed/Bleed.js +69 -0
- package/cjs/layout/bleed/index.js +5 -0
- package/cjs/layout/bleed/package.json +6 -0
- package/cjs/layout/box/Box.js +1 -1
- package/cjs/layout/responsive/Responsive.js +8 -6
- package/cjs/layout/sidemal-test/AvatarPanel.js +18 -0
- package/cjs/layout/sidemal-test/Content.js +66 -0
- package/cjs/layout/sidemal-test/Filter.js +48 -0
- package/cjs/layout/sidemal-test/Header.js +48 -0
- package/cjs/layout/sidemal-test/Intro.js +36 -0
- package/cjs/layout/sidemal-test/Sidebar.js +49 -0
- package/cjs/layout/sidemal-test/content-box/ContentBox.js +65 -0
- package/cjs/layout/sidemal-test/content-box/index.js +8 -0
- package/cjs/layout/sidemal-test/content-box/package.json +6 -0
- package/cjs/layout/stack/Stack.js +2 -2
- package/cjs/layout/stack/index.js +3 -1
- package/cjs/layout/utilities/css.js +37 -14
- package/cjs/loader/Loader.js +2 -2
- package/cjs/modal/dialog-polyfill.js +2 -0
- package/cjs/popover/Popover.js +3 -2
- package/cjs/tabs/TabList.js +6 -7
- package/cjs/timeline/Pin.js +20 -20
- package/cjs/timeline/Timeline.js +4 -4
- package/cjs/timeline/period/ClickablePeriod.js +19 -19
- package/cjs/timeline/period/index.js +1 -1
- package/cjs/timeline/utils/timeline.js +3 -3
- package/cjs/toggle-group/ToggleGroup.js +1 -1
- package/cjs/tooltip/Tooltip.js +1 -1
- package/cjs/typography/Heading.js +1 -1
- package/cjs/util/RandomIcon.js +1 -0
- package/cjs/util/Slot.js +88 -0
- package/cjs/util/useId.js +2 -4
- package/esm/accordion/Accordion.js +1 -0
- package/esm/accordion/Accordion.js.map +1 -1
- package/esm/accordion/AccordionContext.d.ts +1 -0
- package/esm/accordion/AccordionContext.js +1 -1
- package/esm/accordion/AccordionContext.js.map +1 -1
- package/esm/accordion/AccordionHeader.js +2 -2
- package/esm/accordion/AccordionHeader.js.map +1 -1
- package/esm/accordion/AccordionItem.js +6 -2
- package/esm/accordion/AccordionItem.js.map +1 -1
- package/esm/date/datepicker/DatePicker.d.ts +14 -5
- package/esm/date/datepicker/DatePicker.js +29 -33
- package/esm/date/datepicker/DatePicker.js.map +1 -1
- package/esm/date/datepicker/DatePickerStandalone.d.ts +3 -2
- package/esm/date/datepicker/DatePickerStandalone.js +22 -25
- package/esm/date/datepicker/DatePickerStandalone.js.map +1 -1
- package/esm/date/datepicker/{caption → parts}/Caption.d.ts +3 -0
- package/esm/date/datepicker/parts/Caption.js +22 -0
- package/esm/date/datepicker/parts/Caption.js.map +1 -0
- package/esm/date/datepicker/parts/DayButton.d.ts +4 -0
- package/esm/date/datepicker/{DayButton.js → parts/DayButton.js} +2 -1
- package/esm/date/datepicker/parts/DayButton.js.map +1 -0
- package/esm/date/datepicker/{caption → parts}/DropdownCaption.d.ts +3 -0
- package/esm/date/datepicker/parts/DropdownCaption.js +44 -0
- package/esm/date/datepicker/parts/DropdownCaption.js.map +1 -0
- package/esm/date/datepicker/parts/HeadRow.d.ts +11 -0
- package/esm/date/datepicker/parts/HeadRow.js +29 -0
- package/esm/date/datepicker/parts/HeadRow.js.map +1 -0
- package/esm/date/datepicker/parts/Row.d.ts +17 -0
- package/esm/date/datepicker/parts/Row.js +19 -0
- package/esm/date/datepicker/parts/Row.js.map +1 -0
- package/esm/date/datepicker/parts/TableHead.d.ts +6 -0
- package/esm/date/datepicker/{TableHead.js → parts/TableHead.js} +5 -2
- package/esm/date/datepicker/parts/TableHead.js.map +1 -0
- package/esm/date/datepicker/parts/WeekNumber.d.ts +13 -0
- package/esm/date/datepicker/parts/WeekNumber.js +31 -0
- package/esm/date/datepicker/parts/WeekNumber.js.map +1 -0
- package/esm/date/datepicker/parts/WeekRow.d.ts +5 -0
- package/esm/date/datepicker/parts/WeekRow.js +30 -0
- package/esm/date/datepicker/parts/WeekRow.js.map +1 -0
- package/esm/date/hooks/useDatepicker.js +2 -2
- package/esm/date/hooks/useDatepicker.js.map +1 -1
- package/esm/date/hooks/useMonthPicker.js +2 -2
- package/esm/date/hooks/useMonthPicker.js.map +1 -1
- package/esm/date/hooks/useRangeDatepicker.js +3 -3
- package/esm/date/hooks/useRangeDatepicker.js.map +1 -1
- package/esm/date/monthpicker/MonthButton.d.ts +2 -2
- package/esm/date/monthpicker/MonthPicker.d.ts +1 -1
- package/esm/date/monthpicker/MonthSelector.js +1 -1
- package/esm/date/monthpicker/MonthSelector.js.map +1 -1
- package/esm/date/utils/get-month-weeks.d.ts +16 -0
- package/esm/date/utils/get-month-weeks.js +42 -0
- package/esm/date/utils/get-month-weeks.js.map +1 -0
- package/esm/date/utils/labels.d.ts +9 -0
- package/esm/date/utils/labels.js +36 -0
- package/esm/date/utils/labels.js.map +1 -1
- package/esm/date/utils/navigation.d.ts +1 -1
- package/esm/date/utils/navigation.js.map +1 -1
- package/esm/dropdown/Toggle.js +1 -1
- package/esm/dropdown/Toggle.js.map +1 -1
- package/esm/dropdown/index.d.ts +1 -2
- package/esm/dropdown/index.js +0 -1
- package/esm/dropdown/index.js.map +1 -1
- package/esm/form/Select.js +1 -1
- package/esm/form/Select.js.map +1 -1
- package/esm/form/checkbox/useCheckbox.d.ts +1 -1
- package/esm/form/checkbox/useCheckbox.js +3 -4
- package/esm/form/checkbox/useCheckbox.js.map +1 -1
- package/esm/form/combobox/Combobox.d.ts +1 -1
- package/esm/form/combobox/Combobox.js +1 -1
- package/esm/form/combobox/Combobox.js.map +1 -1
- package/esm/form/combobox/Input/Input.d.ts +0 -2
- package/esm/form/combobox/Input/Input.js +1 -1
- package/esm/form/combobox/Input/Input.js.map +1 -1
- package/esm/form/search/Search.js +3 -1
- package/esm/form/search/Search.js.map +1 -1
- package/esm/index.d.ts +1 -0
- package/esm/index.js +1 -0
- package/esm/index.js.map +1 -1
- package/esm/layout/bleed/Bleed.d.ts +47 -0
- package/esm/layout/bleed/Bleed.js +41 -0
- package/esm/layout/bleed/Bleed.js.map +1 -0
- package/esm/layout/bleed/index.d.ts +1 -0
- package/esm/layout/bleed/index.js +2 -0
- package/esm/layout/bleed/index.js.map +1 -0
- package/esm/layout/box/Box.d.ts +1 -2
- package/esm/layout/box/Box.js +1 -1
- package/esm/layout/box/Box.js.map +1 -1
- package/esm/layout/responsive/Responsive.d.ts +8 -4
- package/esm/layout/responsive/Responsive.js +8 -6
- package/esm/layout/responsive/Responsive.js.map +1 -1
- package/esm/layout/sidemal-test/AvatarPanel.d.ts +4 -0
- package/esm/layout/sidemal-test/AvatarPanel.js +12 -0
- package/esm/layout/sidemal-test/AvatarPanel.js.map +1 -0
- package/esm/layout/sidemal-test/Content.d.ts +2 -0
- package/esm/layout/sidemal-test/Content.js +60 -0
- package/esm/layout/sidemal-test/Content.js.map +1 -0
- package/esm/layout/sidemal-test/Filter.d.ts +2 -0
- package/esm/layout/sidemal-test/Filter.js +22 -0
- package/esm/layout/sidemal-test/Filter.js.map +1 -0
- package/esm/layout/sidemal-test/Header.d.ts +2 -0
- package/esm/layout/sidemal-test/Header.js +42 -0
- package/esm/layout/sidemal-test/Header.js.map +1 -0
- package/esm/layout/sidemal-test/Intro.d.ts +2 -0
- package/esm/layout/sidemal-test/Intro.js +30 -0
- package/esm/layout/sidemal-test/Intro.js.map +1 -0
- package/esm/layout/sidemal-test/Sidebar.d.ts +4 -0
- package/esm/layout/sidemal-test/Sidebar.js +41 -0
- package/esm/layout/sidemal-test/Sidebar.js.map +1 -0
- package/esm/layout/sidemal-test/content-box/ContentBox.d.ts +8 -0
- package/esm/layout/sidemal-test/content-box/ContentBox.js +37 -0
- package/esm/layout/sidemal-test/content-box/ContentBox.js.map +1 -0
- package/esm/layout/sidemal-test/content-box/index.d.ts +1 -0
- package/esm/layout/sidemal-test/content-box/index.js +2 -0
- package/esm/layout/sidemal-test/content-box/index.js.map +1 -0
- package/esm/layout/stack/Stack.d.ts +7 -3
- package/esm/layout/stack/Stack.js +3 -3
- package/esm/layout/stack/Stack.js.map +1 -1
- package/esm/layout/stack/index.d.ts +1 -0
- package/esm/layout/stack/index.js +1 -0
- package/esm/layout/stack/index.js.map +1 -1
- package/esm/layout/utilities/css.d.ts +1 -1
- package/esm/layout/utilities/css.js +37 -14
- package/esm/layout/utilities/css.js.map +1 -1
- package/esm/loader/Loader.js +3 -3
- package/esm/loader/Loader.js.map +1 -1
- package/esm/modal/dialog-polyfill.js +2 -0
- package/esm/modal/dialog-polyfill.js.map +1 -1
- package/esm/popover/Popover.js +3 -2
- package/esm/popover/Popover.js.map +1 -1
- package/esm/tabs/TabList.js +6 -7
- package/esm/tabs/TabList.js.map +1 -1
- package/esm/timeline/Pin.js +21 -21
- package/esm/timeline/Pin.js.map +1 -1
- package/esm/timeline/Timeline.js +4 -4
- package/esm/timeline/Timeline.js.map +1 -1
- package/esm/timeline/TimelineRow.js.map +1 -1
- package/esm/timeline/hooks/usePeriodContext.d.ts +1 -1
- package/esm/timeline/period/ClickablePeriod.js +20 -20
- package/esm/timeline/period/ClickablePeriod.js.map +1 -1
- package/esm/timeline/period/index.d.ts +2 -2
- package/esm/timeline/period/index.js +1 -1
- package/esm/timeline/period/index.js.map +1 -1
- package/esm/timeline/utils/timeline.js +3 -3
- package/esm/timeline/utils/timeline.js.map +1 -1
- package/esm/toggle-group/ToggleGroup.js +1 -1
- package/esm/toggle-group/ToggleGroup.js.map +1 -1
- package/esm/tooltip/Tooltip.js +1 -1
- package/esm/tooltip/Tooltip.js.map +1 -1
- package/esm/typography/Heading.js +1 -1
- package/esm/typography/Heading.js.map +1 -1
- package/esm/util/RandomIcon.js +1 -0
- package/esm/util/RandomIcon.js.map +1 -1
- package/esm/util/Slot.d.ts +6 -0
- package/esm/util/Slot.js +60 -0
- package/esm/util/Slot.js.map +1 -0
- package/esm/util/mergeRefs.d.ts +1 -1
- package/esm/util/useId.js +2 -4
- package/esm/util/useId.js.map +1 -1
- package/package.json +4 -4
- package/src/accordion/Accordion.tsx +1 -0
- package/src/accordion/AccordionContext.tsx +2 -1
- package/src/accordion/AccordionHeader.tsx +2 -2
- package/src/accordion/AccordionItem.tsx +7 -5
- package/src/accordion/accordion.stories.tsx +21 -34
- package/src/alert/alert.stories.tsx +2 -2
- package/src/chips/chips.stories.tsx +29 -32
- package/src/date/datepicker/DatePicker.tsx +63 -58
- package/src/date/datepicker/DatePickerStandalone.tsx +36 -39
- package/src/date/datepicker/datepicker.stories.tsx +67 -2
- package/src/date/datepicker/datepicker.test.tsx +5 -4
- package/src/date/datepicker/{caption → parts}/Caption.tsx +19 -17
- package/src/date/datepicker/{DayButton.tsx → parts/DayButton.tsx} +3 -1
- package/src/date/datepicker/parts/DropdownCaption.tsx +113 -0
- package/src/date/datepicker/parts/HeadRow.tsx +56 -0
- package/src/date/datepicker/parts/Row.tsx +47 -0
- package/src/date/datepicker/{TableHead.tsx → parts/TableHead.tsx} +6 -2
- package/src/date/datepicker/parts/WeekNumber.tsx +79 -0
- package/src/date/datepicker/parts/WeekRow.tsx +60 -0
- package/src/date/hooks/useDatepicker.tsx +2 -2
- package/src/date/hooks/useMonthPicker.tsx +2 -2
- package/src/date/hooks/useRangeDatepicker.test.tsx +11 -11
- package/src/date/hooks/useRangeDatepicker.tsx +3 -3
- package/src/date/monthpicker/MonthButton.tsx +2 -2
- package/src/date/monthpicker/MonthPicker.tsx +1 -1
- package/src/date/monthpicker/MonthSelector.tsx +3 -3
- package/src/date/monthpicker/monthpicker.stories.tsx +1 -1
- package/src/date/utils/__tests__/get-initial-year.test.ts +0 -12
- package/src/date/utils/__tests__/get-month-weeks.test.ts +113 -0
- package/src/date/utils/__tests__/is-match.test.ts +3 -3
- package/src/date/utils/__tests__/parse-dates.test.ts +4 -2
- package/src/date/utils/get-month-weeks.ts +93 -0
- package/src/date/utils/labels.ts +51 -0
- package/src/date/utils/navigation.ts +3 -3
- package/src/dropdown/Toggle.tsx +1 -1
- package/src/dropdown/dropdown.stories.tsx +25 -28
- package/src/dropdown/index.ts +1 -2
- package/src/expansion-card/expansion-card.stories.tsx +143 -161
- package/src/form/ConfirmationPanel.test.tsx +5 -5
- package/src/form/Select.tsx +1 -1
- package/src/form/checkbox/Checkbox.test.tsx +14 -26
- package/src/form/checkbox/checkbox.stories.tsx +66 -71
- package/src/form/checkbox/useCheckbox.ts +3 -4
- package/src/form/combobox/Combobox.tsx +2 -3
- package/src/form/combobox/Input/Input.tsx +1 -3
- package/src/form/combobox/combobox.stories.tsx +20 -23
- package/src/form/combobox/combobox.test.tsx +22 -20
- package/src/form/radio/radio.stories.tsx +39 -44
- package/src/form/search/Search.tsx +1 -0
- package/src/form/search/search.stories.tsx +22 -26
- package/src/form/stories/fieldset.stories.tsx +1 -1
- package/src/index.ts +1 -0
- package/src/layout/bleed/Bleed.stories.tsx +381 -0
- package/src/layout/bleed/Bleed.tsx +130 -0
- package/src/layout/bleed/index.ts +1 -0
- package/src/layout/box/Box.stories.tsx +251 -256
- package/src/layout/box/Box.tsx +2 -1
- package/src/layout/responsive/Responsive.tsx +21 -6
- package/src/layout/responsive/hide.stories.tsx +35 -0
- package/src/layout/responsive/show.stories.tsx +35 -0
- package/src/layout/sidemal-test/AvatarPanel.tsx +27 -0
- package/src/layout/sidemal-test/Content.tsx +129 -0
- package/src/layout/sidemal-test/Filter.tsx +46 -0
- package/src/layout/sidemal-test/Header.tsx +96 -0
- package/src/layout/sidemal-test/Intro.tsx +91 -0
- package/src/layout/sidemal-test/Sidebar.tsx +77 -0
- package/src/layout/sidemal-test/content-box/ContentBox.tsx +46 -0
- package/src/layout/sidemal-test/content-box/index.ts +1 -0
- package/src/layout/sidemal-test/navno-sidemal.stories.mdx +29 -0
- package/src/layout/sidemal-test/navno-sidemal.stories.tsx +65 -0
- package/src/layout/sidemal-test/styling.css +43 -0
- package/src/layout/stack/Stack.tsx +14 -8
- package/src/layout/stack/index.ts +1 -0
- package/src/layout/stack/stack.stories.tsx +23 -1
- package/src/layout/utilities/css.ts +59 -20
- package/src/loader/Loader.tsx +2 -3
- package/src/modal/dialog-polyfill.ts +2 -0
- package/src/pagination/pagination.stories.tsx +35 -42
- package/src/popover/Popover.test.tsx +21 -35
- package/src/popover/Popover.tsx +2 -2
- package/src/popover/popover.stories.tsx +25 -41
- package/src/react-css.d.ts +0 -1
- package/src/read-more/readmore.stories.tsx +35 -36
- package/src/stepper/stepper.stories.tsx +45 -52
- package/src/table/stories/table-expandable.stories.tsx +59 -63
- package/src/tabs/TabList.tsx +4 -6
- package/src/tabs/Tabs.stories.tsx +3 -3
- package/src/tag/tag.stories.tsx +4 -4
- package/src/timeline/Pin.tsx +44 -39
- package/src/timeline/Timeline.tsx +6 -6
- package/src/timeline/TimelineRow.tsx +1 -0
- package/src/timeline/hooks/usePeriodContext.tsx +1 -1
- package/src/timeline/period/ClickablePeriod.tsx +42 -38
- package/src/timeline/period/index.tsx +5 -4
- package/src/timeline/timeline.stories.tsx +11 -10
- package/src/timeline/utils/timeline.ts +3 -3
- package/src/toggle-group/ToggleGroup.stories.tsx +25 -29
- package/src/toggle-group/ToggleGroup.tsx +0 -1
- package/src/tooltip/Tooltip.test.tsx +40 -54
- package/src/tooltip/Tooltip.tsx +1 -1
- package/src/typography/Heading.tsx +1 -1
- package/src/util/RandomIcon.tsx +1 -0
- package/src/util/Slot.tsx +69 -0
- package/src/util/__tests__/Slot.test.tsx +98 -0
- package/src/util/mergeRefs.tsx +1 -1
- package/src/util/useId.ts +1 -3
- package/cjs/date/datepicker/caption/Caption.js +0 -23
- package/cjs/date/datepicker/caption/index.js +0 -10
- package/cjs/date/datepicker/caption/package.json +0 -6
- package/esm/date/datepicker/DayButton.d.ts +0 -3
- package/esm/date/datepicker/DayButton.js.map +0 -1
- package/esm/date/datepicker/TableHead.d.ts +0 -3
- package/esm/date/datepicker/TableHead.js.map +0 -1
- package/esm/date/datepicker/caption/Caption.js +0 -17
- package/esm/date/datepicker/caption/Caption.js.map +0 -1
- package/esm/date/datepicker/caption/DropdownCaption.js +0 -38
- package/esm/date/datepicker/caption/DropdownCaption.js.map +0 -1
- package/esm/date/datepicker/caption/index.d.ts +0 -2
- package/esm/date/datepicker/caption/index.js +0 -3
- package/esm/date/datepicker/caption/index.js.map +0 -1
- package/src/date/datepicker/caption/DropdownCaption.tsx +0 -108
- package/src/date/datepicker/caption/index.ts +0 -2
package/_docs.json
CHANGED
|
@@ -10719,6 +10719,50 @@
|
|
|
10719
10719
|
}
|
|
10720
10720
|
}
|
|
10721
10721
|
},
|
|
10722
|
+
{
|
|
10723
|
+
"filePath": "src/util/Slot.tsx",
|
|
10724
|
+
"displayName": "Slot",
|
|
10725
|
+
"props": {
|
|
10726
|
+
"className": {
|
|
10727
|
+
"defaultValue": null,
|
|
10728
|
+
"description": "",
|
|
10729
|
+
"name": "className",
|
|
10730
|
+
"parent": {
|
|
10731
|
+
"fileName": "aksel/node_modules/@types/react/index.d.ts",
|
|
10732
|
+
"name": "HTMLAttributes"
|
|
10733
|
+
},
|
|
10734
|
+
"declarations": [
|
|
10735
|
+
{
|
|
10736
|
+
"fileName": "aksel/node_modules/@types/react/index.d.ts",
|
|
10737
|
+
"name": "HTMLAttributes"
|
|
10738
|
+
}
|
|
10739
|
+
],
|
|
10740
|
+
"required": false,
|
|
10741
|
+
"type": {
|
|
10742
|
+
"name": "string"
|
|
10743
|
+
}
|
|
10744
|
+
},
|
|
10745
|
+
"ref": {
|
|
10746
|
+
"defaultValue": null,
|
|
10747
|
+
"description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
|
|
10748
|
+
"name": "ref",
|
|
10749
|
+
"parent": {
|
|
10750
|
+
"fileName": "aksel/node_modules/@types/react/index.d.ts",
|
|
10751
|
+
"name": "RefAttributes"
|
|
10752
|
+
},
|
|
10753
|
+
"declarations": [
|
|
10754
|
+
{
|
|
10755
|
+
"fileName": "aksel/node_modules/@types/react/index.d.ts",
|
|
10756
|
+
"name": "RefAttributes"
|
|
10757
|
+
}
|
|
10758
|
+
],
|
|
10759
|
+
"required": false,
|
|
10760
|
+
"type": {
|
|
10761
|
+
"name": "Ref<HTMLElement>"
|
|
10762
|
+
}
|
|
10763
|
+
}
|
|
10764
|
+
}
|
|
10765
|
+
},
|
|
10722
10766
|
{
|
|
10723
10767
|
"filePath": "src/util/TextareaAutoSize.tsx",
|
|
10724
10768
|
"displayName": "TextareaAutoSize",
|
|
@@ -11261,6 +11305,29 @@
|
|
|
11261
11305
|
"name": "Date | Date[] | DateRange"
|
|
11262
11306
|
}
|
|
11263
11307
|
},
|
|
11308
|
+
"onWeekNumberClick": {
|
|
11309
|
+
"defaultValue": null,
|
|
11310
|
+
"description": "Allows selecting a week at a time. Only used with mode=\"multiple\".",
|
|
11311
|
+
"name": "onWeekNumberClick",
|
|
11312
|
+
"declarations": [
|
|
11313
|
+
{
|
|
11314
|
+
"fileName": "src/date/datepicker/DatePicker.tsx",
|
|
11315
|
+
"name": "TypeLiteral"
|
|
11316
|
+
},
|
|
11317
|
+
{
|
|
11318
|
+
"fileName": "src/date/datepicker/DatePicker.tsx",
|
|
11319
|
+
"name": "TypeLiteral"
|
|
11320
|
+
},
|
|
11321
|
+
{
|
|
11322
|
+
"fileName": "src/date/datepicker/DatePicker.tsx",
|
|
11323
|
+
"name": "TypeLiteral"
|
|
11324
|
+
}
|
|
11325
|
+
],
|
|
11326
|
+
"required": false,
|
|
11327
|
+
"type": {
|
|
11328
|
+
"name": "WeekNumberClickEventHandler"
|
|
11329
|
+
}
|
|
11330
|
+
},
|
|
11264
11331
|
"min": {
|
|
11265
11332
|
"defaultValue": null,
|
|
11266
11333
|
"description": "",
|
|
@@ -11326,7 +11393,7 @@
|
|
|
11326
11393
|
},
|
|
11327
11394
|
"fixedWeeks": {
|
|
11328
11395
|
"defaultValue": {
|
|
11329
|
-
"value": "
|
|
11396
|
+
"value": "false"
|
|
11330
11397
|
},
|
|
11331
11398
|
"description": "If datepicker should be fixed to 6 weeks, regardless of actual weeks in month",
|
|
11332
11399
|
"name": "fixedWeeks",
|
|
@@ -11620,6 +11687,29 @@
|
|
|
11620
11687
|
"name": "Date | Date[] | DateRange"
|
|
11621
11688
|
}
|
|
11622
11689
|
},
|
|
11690
|
+
"onWeekNumberClick": {
|
|
11691
|
+
"defaultValue": null,
|
|
11692
|
+
"description": "Allows selecting a week at a time. Only used with mode=\"multiple\".",
|
|
11693
|
+
"name": "onWeekNumberClick",
|
|
11694
|
+
"declarations": [
|
|
11695
|
+
{
|
|
11696
|
+
"fileName": "react/src/date/datepicker/DatePicker.tsx",
|
|
11697
|
+
"name": "TypeLiteral"
|
|
11698
|
+
},
|
|
11699
|
+
{
|
|
11700
|
+
"fileName": "react/src/date/datepicker/DatePicker.tsx",
|
|
11701
|
+
"name": "TypeLiteral"
|
|
11702
|
+
},
|
|
11703
|
+
{
|
|
11704
|
+
"fileName": "react/src/date/datepicker/DatePicker.tsx",
|
|
11705
|
+
"name": "TypeLiteral"
|
|
11706
|
+
}
|
|
11707
|
+
],
|
|
11708
|
+
"required": false,
|
|
11709
|
+
"type": {
|
|
11710
|
+
"name": "WeekNumberClickEventHandler"
|
|
11711
|
+
}
|
|
11712
|
+
},
|
|
11623
11713
|
"ref": {
|
|
11624
11714
|
"defaultValue": null,
|
|
11625
11715
|
"description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
|
|
@@ -11679,16 +11769,6 @@
|
|
|
11679
11769
|
}
|
|
11680
11770
|
}
|
|
11681
11771
|
},
|
|
11682
|
-
{
|
|
11683
|
-
"filePath": "src/date/datepicker/DayButton.tsx",
|
|
11684
|
-
"displayName": "DayButton",
|
|
11685
|
-
"props": {}
|
|
11686
|
-
},
|
|
11687
|
-
{
|
|
11688
|
-
"filePath": "src/date/datepicker/TableHead.tsx",
|
|
11689
|
-
"displayName": "TableHead",
|
|
11690
|
-
"props": {}
|
|
11691
|
-
},
|
|
11692
11772
|
{
|
|
11693
11773
|
"filePath": "src/date/hooks/useDatepicker.tsx",
|
|
11694
11774
|
"displayName": "useDatepicker",
|
|
@@ -12534,7 +12614,7 @@
|
|
|
12534
12614
|
],
|
|
12535
12615
|
"required": true,
|
|
12536
12616
|
"type": {
|
|
12537
|
-
"name": "
|
|
12617
|
+
"name": "(date?: Date | undefined) => void"
|
|
12538
12618
|
}
|
|
12539
12619
|
},
|
|
12540
12620
|
"tabRoot": {
|
|
@@ -12572,7 +12652,7 @@
|
|
|
12572
12652
|
],
|
|
12573
12653
|
"required": true,
|
|
12574
12654
|
"type": {
|
|
12575
|
-
"name": "
|
|
12655
|
+
"name": "(date?: Date | undefined) => void"
|
|
12576
12656
|
}
|
|
12577
12657
|
}
|
|
12578
12658
|
}
|
|
@@ -12848,7 +12928,7 @@
|
|
|
12848
12928
|
],
|
|
12849
12929
|
"required": false,
|
|
12850
12930
|
"type": {
|
|
12851
|
-
"name": "
|
|
12931
|
+
"name": "((month?: Date) => void)"
|
|
12852
12932
|
}
|
|
12853
12933
|
},
|
|
12854
12934
|
"year": {
|
|
@@ -13130,7 +13210,7 @@
|
|
|
13130
13210
|
],
|
|
13131
13211
|
"required": false,
|
|
13132
13212
|
"type": {
|
|
13133
|
-
"name": "
|
|
13213
|
+
"name": "((month?: Date) => void)"
|
|
13134
13214
|
}
|
|
13135
13215
|
},
|
|
13136
13216
|
"year": {
|
|
@@ -14289,25 +14369,6 @@
|
|
|
14289
14369
|
"filePath": "src/form/combobox/Combobox.tsx",
|
|
14290
14370
|
"displayName": "Combobox",
|
|
14291
14371
|
"props": {
|
|
14292
|
-
"value": {
|
|
14293
|
-
"defaultValue": null,
|
|
14294
|
-
"description": "Set this to override the value of the input field.\n\nThis converts the input to a controlled input, so you have to use onChange to update the value.",
|
|
14295
|
-
"name": "value",
|
|
14296
|
-
"parent": {
|
|
14297
|
-
"fileName": "react/src/form/combobox/types.ts",
|
|
14298
|
-
"name": "ComboboxProps"
|
|
14299
|
-
},
|
|
14300
|
-
"declarations": [
|
|
14301
|
-
{
|
|
14302
|
-
"fileName": "react/src/form/combobox/types.ts",
|
|
14303
|
-
"name": "ComboboxProps"
|
|
14304
|
-
}
|
|
14305
|
-
],
|
|
14306
|
-
"required": false,
|
|
14307
|
-
"type": {
|
|
14308
|
-
"name": "string"
|
|
14309
|
-
}
|
|
14310
|
-
},
|
|
14311
14372
|
"disabled": {
|
|
14312
14373
|
"defaultValue": null,
|
|
14313
14374
|
"description": "Disables element\n@note Avoid using if possible for accessibility purposes",
|
|
@@ -14576,25 +14637,6 @@
|
|
|
14576
14637
|
"name": "boolean"
|
|
14577
14638
|
}
|
|
14578
14639
|
},
|
|
14579
|
-
"onClear": {
|
|
14580
|
-
"defaultValue": null,
|
|
14581
|
-
"description": "Callback function triggered whenever the input field is cleared\n@param event\n@returns",
|
|
14582
|
-
"name": "onClear",
|
|
14583
|
-
"parent": {
|
|
14584
|
-
"fileName": "react/src/form/combobox/types.ts",
|
|
14585
|
-
"name": "ComboboxProps"
|
|
14586
|
-
},
|
|
14587
|
-
"declarations": [
|
|
14588
|
-
{
|
|
14589
|
-
"fileName": "react/src/form/combobox/types.ts",
|
|
14590
|
-
"name": "ComboboxProps"
|
|
14591
|
-
}
|
|
14592
|
-
],
|
|
14593
|
-
"required": false,
|
|
14594
|
-
"type": {
|
|
14595
|
-
"name": "((event: PointerEvent<Element> | KeyboardEvent<Element>) => void)"
|
|
14596
|
-
}
|
|
14597
|
-
},
|
|
14598
14640
|
"onToggleSelected": {
|
|
14599
14641
|
"defaultValue": null,
|
|
14600
14642
|
"description": "Callback function triggered whenever an option is selected or de-selected\n@param option\n@param isSelected - Whether the option has been selected or unselected\n@param isCustomOption - Whether the option comes from user input, instead of from the list\n@returns",
|
|
@@ -16701,6 +16743,126 @@
|
|
|
16701
16743
|
}
|
|
16702
16744
|
}
|
|
16703
16745
|
},
|
|
16746
|
+
{
|
|
16747
|
+
"filePath": "src/layout/bleed/Bleed.tsx",
|
|
16748
|
+
"displayName": "Bleed",
|
|
16749
|
+
"props": {
|
|
16750
|
+
"marginInline": {
|
|
16751
|
+
"defaultValue": null,
|
|
16752
|
+
"description": "**Negative** horizontal margin around children.\nAccepts a spacing token or an object of spacing tokens for different breakpoints.\n@example marginInline='4'\nmarginInline='4 5'\nmarginInline={{xs: '0 32', sm: '3', md: '4 5', lg: '5', xl: '6'}}",
|
|
16753
|
+
"name": "marginInline",
|
|
16754
|
+
"parent": {
|
|
16755
|
+
"fileName": "src/layout/bleed/Bleed.tsx",
|
|
16756
|
+
"name": "BleedProps"
|
|
16757
|
+
},
|
|
16758
|
+
"declarations": [
|
|
16759
|
+
{
|
|
16760
|
+
"fileName": "src/layout/bleed/Bleed.tsx",
|
|
16761
|
+
"name": "BleedProps"
|
|
16762
|
+
}
|
|
16763
|
+
],
|
|
16764
|
+
"required": false,
|
|
16765
|
+
"type": {
|
|
16766
|
+
"name": "ResponsiveProp<BleedSpacingInline | \"full full\" | \"full px\" | \"full 0\" | \"full 05\" | \"full 1\" | \"full 2\" | \"full 3\" | \"full 4\" | \"full 5\" | \"full 6\" | \"full 7\" | \"full 8\" | ... 471 more ... | \"32 32\">"
|
|
16767
|
+
}
|
|
16768
|
+
},
|
|
16769
|
+
"marginBlock": {
|
|
16770
|
+
"defaultValue": null,
|
|
16771
|
+
"description": "**Negative** vertical margin around children.\nAccepts a spacing token or an object of spacing tokens for different breakpoints.\n@example marginBlock='4'\nmarginBlock='4 5'\nmarginBlock={{xs: '2', sm: '3', md: '4', lg: '5', xl: '6'}}",
|
|
16772
|
+
"name": "marginBlock",
|
|
16773
|
+
"parent": {
|
|
16774
|
+
"fileName": "src/layout/bleed/Bleed.tsx",
|
|
16775
|
+
"name": "BleedProps"
|
|
16776
|
+
},
|
|
16777
|
+
"declarations": [
|
|
16778
|
+
{
|
|
16779
|
+
"fileName": "src/layout/bleed/Bleed.tsx",
|
|
16780
|
+
"name": "BleedProps"
|
|
16781
|
+
}
|
|
16782
|
+
],
|
|
16783
|
+
"required": false,
|
|
16784
|
+
"type": {
|
|
16785
|
+
"name": "ResponsiveProp<\"px px\" | \"px 0\" | \"px 05\" | \"px 1\" | \"px 2\" | \"px 3\" | \"px 4\" | \"px 5\" | \"px 6\" | \"px 7\" | \"px 8\" | \"px 9\" | \"px 10\" | \"px 11\" | \"px 12\" | \"px 14\" | \"px 16\" | \"px 18\" | \"px 20\" | ... 422 more ... | BleedSpacingBlock>"
|
|
16786
|
+
}
|
|
16787
|
+
},
|
|
16788
|
+
"reflectivePadding": {
|
|
16789
|
+
"defaultValue": null,
|
|
16790
|
+
"description": "When true, set the padding to mirror the margin.\nThis maintains the apparent width of the element prior to adding Bleed.\nWhen this is used with `asChild`, it will overwrite the padding of the child.",
|
|
16791
|
+
"name": "reflectivePadding",
|
|
16792
|
+
"parent": {
|
|
16793
|
+
"fileName": "src/layout/bleed/Bleed.tsx",
|
|
16794
|
+
"name": "BleedProps"
|
|
16795
|
+
},
|
|
16796
|
+
"declarations": [
|
|
16797
|
+
{
|
|
16798
|
+
"fileName": "src/layout/bleed/Bleed.tsx",
|
|
16799
|
+
"name": "BleedProps"
|
|
16800
|
+
}
|
|
16801
|
+
],
|
|
16802
|
+
"required": false,
|
|
16803
|
+
"type": {
|
|
16804
|
+
"name": "boolean"
|
|
16805
|
+
}
|
|
16806
|
+
},
|
|
16807
|
+
"asChild": {
|
|
16808
|
+
"defaultValue": null,
|
|
16809
|
+
"description": "When true, the Bleed will render as its child. This merges classes, styles and event handlers.",
|
|
16810
|
+
"name": "asChild",
|
|
16811
|
+
"parent": {
|
|
16812
|
+
"fileName": "src/layout/bleed/Bleed.tsx",
|
|
16813
|
+
"name": "BleedProps"
|
|
16814
|
+
},
|
|
16815
|
+
"declarations": [
|
|
16816
|
+
{
|
|
16817
|
+
"fileName": "src/layout/bleed/Bleed.tsx",
|
|
16818
|
+
"name": "BleedProps"
|
|
16819
|
+
}
|
|
16820
|
+
],
|
|
16821
|
+
"required": false,
|
|
16822
|
+
"type": {
|
|
16823
|
+
"name": "boolean"
|
|
16824
|
+
}
|
|
16825
|
+
},
|
|
16826
|
+
"className": {
|
|
16827
|
+
"defaultValue": null,
|
|
16828
|
+
"description": "",
|
|
16829
|
+
"name": "className",
|
|
16830
|
+
"parent": {
|
|
16831
|
+
"fileName": "aksel/node_modules/@types/react/index.d.ts",
|
|
16832
|
+
"name": "HTMLAttributes"
|
|
16833
|
+
},
|
|
16834
|
+
"declarations": [
|
|
16835
|
+
{
|
|
16836
|
+
"fileName": "aksel/node_modules/@types/react/index.d.ts",
|
|
16837
|
+
"name": "HTMLAttributes"
|
|
16838
|
+
}
|
|
16839
|
+
],
|
|
16840
|
+
"required": false,
|
|
16841
|
+
"type": {
|
|
16842
|
+
"name": "string"
|
|
16843
|
+
}
|
|
16844
|
+
},
|
|
16845
|
+
"ref": {
|
|
16846
|
+
"defaultValue": null,
|
|
16847
|
+
"description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
|
|
16848
|
+
"name": "ref",
|
|
16849
|
+
"parent": {
|
|
16850
|
+
"fileName": "aksel/node_modules/@types/react/index.d.ts",
|
|
16851
|
+
"name": "RefAttributes"
|
|
16852
|
+
},
|
|
16853
|
+
"declarations": [
|
|
16854
|
+
{
|
|
16855
|
+
"fileName": "aksel/node_modules/@types/react/index.d.ts",
|
|
16856
|
+
"name": "RefAttributes"
|
|
16857
|
+
}
|
|
16858
|
+
],
|
|
16859
|
+
"required": false,
|
|
16860
|
+
"type": {
|
|
16861
|
+
"name": "Ref<HTMLDivElement>"
|
|
16862
|
+
}
|
|
16863
|
+
}
|
|
16864
|
+
}
|
|
16865
|
+
},
|
|
16704
16866
|
{
|
|
16705
16867
|
"filePath": "src/layout/box/Box.tsx",
|
|
16706
16868
|
"displayName": "Box",
|
|
@@ -17124,6 +17286,25 @@
|
|
|
17124
17286
|
"name": "\"div\" | \"span\""
|
|
17125
17287
|
}
|
|
17126
17288
|
},
|
|
17289
|
+
"asChild": {
|
|
17290
|
+
"defaultValue": null,
|
|
17291
|
+
"description": "When true, will render element as its child. This merges classes, styles and event handlers.",
|
|
17292
|
+
"name": "asChild",
|
|
17293
|
+
"parent": {
|
|
17294
|
+
"fileName": "src/layout/responsive/Responsive.tsx",
|
|
17295
|
+
"name": "ResponsiveProps"
|
|
17296
|
+
},
|
|
17297
|
+
"declarations": [
|
|
17298
|
+
{
|
|
17299
|
+
"fileName": "src/layout/responsive/Responsive.tsx",
|
|
17300
|
+
"name": "ResponsiveProps"
|
|
17301
|
+
}
|
|
17302
|
+
],
|
|
17303
|
+
"required": false,
|
|
17304
|
+
"type": {
|
|
17305
|
+
"name": "boolean"
|
|
17306
|
+
}
|
|
17307
|
+
},
|
|
17127
17308
|
"className": {
|
|
17128
17309
|
"defaultValue": null,
|
|
17129
17310
|
"description": "",
|
|
@@ -17227,6 +17408,25 @@
|
|
|
17227
17408
|
"name": "\"div\" | \"span\""
|
|
17228
17409
|
}
|
|
17229
17410
|
},
|
|
17411
|
+
"asChild": {
|
|
17412
|
+
"defaultValue": null,
|
|
17413
|
+
"description": "When true, will render element as its child. This merges classes, styles and event handlers.",
|
|
17414
|
+
"name": "asChild",
|
|
17415
|
+
"parent": {
|
|
17416
|
+
"fileName": "src/layout/responsive/Responsive.tsx",
|
|
17417
|
+
"name": "ResponsiveProps"
|
|
17418
|
+
},
|
|
17419
|
+
"declarations": [
|
|
17420
|
+
{
|
|
17421
|
+
"fileName": "src/layout/responsive/Responsive.tsx",
|
|
17422
|
+
"name": "ResponsiveProps"
|
|
17423
|
+
}
|
|
17424
|
+
],
|
|
17425
|
+
"required": false,
|
|
17426
|
+
"type": {
|
|
17427
|
+
"name": "boolean"
|
|
17428
|
+
}
|
|
17429
|
+
},
|
|
17230
17430
|
"className": {
|
|
17231
17431
|
"defaultValue": null,
|
|
17232
17432
|
"description": "",
|
|
@@ -17267,6 +17467,11 @@
|
|
|
17267
17467
|
}
|
|
17268
17468
|
}
|
|
17269
17469
|
},
|
|
17470
|
+
{
|
|
17471
|
+
"filePath": "src/layout/sidemal-test/AvatarPanel.tsx",
|
|
17472
|
+
"displayName": "AvatarPanel",
|
|
17473
|
+
"props": {}
|
|
17474
|
+
},
|
|
17270
17475
|
{
|
|
17271
17476
|
"filePath": "src/layout/stack/HStack.tsx",
|
|
17272
17477
|
"displayName": "HStack",
|
|
@@ -17287,7 +17492,7 @@
|
|
|
17287
17492
|
],
|
|
17288
17493
|
"required": false,
|
|
17289
17494
|
"type": {
|
|
17290
|
-
"name": "
|
|
17495
|
+
"name": "ResponsiveProp<\"start\" | \"center\" | \"end\" | \"space-around\" | \"space-between\" | \"space-evenly\">"
|
|
17291
17496
|
}
|
|
17292
17497
|
},
|
|
17293
17498
|
"align": {
|
|
@@ -17306,7 +17511,7 @@
|
|
|
17306
17511
|
],
|
|
17307
17512
|
"required": false,
|
|
17308
17513
|
"type": {
|
|
17309
|
-
"name": "
|
|
17514
|
+
"name": "ResponsiveProp<\"start\" | \"center\" | \"end\" | \"baseline\" | \"stretch\">"
|
|
17310
17515
|
}
|
|
17311
17516
|
},
|
|
17312
17517
|
"wrap": {
|
|
@@ -17412,7 +17617,7 @@
|
|
|
17412
17617
|
],
|
|
17413
17618
|
"required": false,
|
|
17414
17619
|
"type": {
|
|
17415
|
-
"name": "
|
|
17620
|
+
"name": "ResponsiveProp<\"start\" | \"center\" | \"end\" | \"space-around\" | \"space-between\" | \"space-evenly\">"
|
|
17416
17621
|
}
|
|
17417
17622
|
},
|
|
17418
17623
|
"align": {
|
|
@@ -17431,7 +17636,7 @@
|
|
|
17431
17636
|
],
|
|
17432
17637
|
"required": false,
|
|
17433
17638
|
"type": {
|
|
17434
|
-
"name": "
|
|
17639
|
+
"name": "ResponsiveProp<\"start\" | \"center\" | \"end\" | \"baseline\" | \"stretch\">"
|
|
17435
17640
|
}
|
|
17436
17641
|
},
|
|
17437
17642
|
"wrap": {
|
|
@@ -17475,8 +17680,10 @@
|
|
|
17475
17680
|
}
|
|
17476
17681
|
},
|
|
17477
17682
|
"direction": {
|
|
17478
|
-
"defaultValue":
|
|
17479
|
-
|
|
17683
|
+
"defaultValue": {
|
|
17684
|
+
"value": "row"
|
|
17685
|
+
},
|
|
17686
|
+
"description": "flex-direction",
|
|
17480
17687
|
"name": "direction",
|
|
17481
17688
|
"parent": {
|
|
17482
17689
|
"fileName": "src/layout/stack/Stack.tsx",
|
|
@@ -17488,9 +17695,9 @@
|
|
|
17488
17695
|
"name": "StackProps"
|
|
17489
17696
|
}
|
|
17490
17697
|
],
|
|
17491
|
-
"required":
|
|
17698
|
+
"required": false,
|
|
17492
17699
|
"type": {
|
|
17493
|
-
"name": "
|
|
17700
|
+
"name": "ResponsiveProp<\"row\" | \"column\">"
|
|
17494
17701
|
}
|
|
17495
17702
|
},
|
|
17496
17703
|
"className": {
|
|
@@ -17553,7 +17760,7 @@
|
|
|
17553
17760
|
],
|
|
17554
17761
|
"required": false,
|
|
17555
17762
|
"type": {
|
|
17556
|
-
"name": "
|
|
17763
|
+
"name": "ResponsiveProp<\"start\" | \"center\" | \"end\" | \"space-around\" | \"space-between\" | \"space-evenly\">"
|
|
17557
17764
|
}
|
|
17558
17765
|
},
|
|
17559
17766
|
"align": {
|
|
@@ -17572,7 +17779,7 @@
|
|
|
17572
17779
|
],
|
|
17573
17780
|
"required": false,
|
|
17574
17781
|
"type": {
|
|
17575
|
-
"name": "
|
|
17782
|
+
"name": "ResponsiveProp<\"start\" | \"center\" | \"end\" | \"baseline\" | \"stretch\">"
|
|
17576
17783
|
}
|
|
17577
17784
|
},
|
|
17578
17785
|
"gap": {
|
|
@@ -17768,7 +17975,7 @@
|
|
|
17768
17975
|
],
|
|
17769
17976
|
"required": true,
|
|
17770
17977
|
"type": {
|
|
17771
|
-
"name": "
|
|
17978
|
+
"name": "number"
|
|
17772
17979
|
}
|
|
17773
17980
|
},
|
|
17774
17981
|
"left": {
|
|
@@ -17787,7 +17994,7 @@
|
|
|
17787
17994
|
],
|
|
17788
17995
|
"required": true,
|
|
17789
17996
|
"type": {
|
|
17790
|
-
"name": "
|
|
17997
|
+
"name": "number"
|
|
17791
17998
|
}
|
|
17792
17999
|
},
|
|
17793
18000
|
"icon": {
|
|
@@ -18174,20 +18381,187 @@
|
|
|
18174
18381
|
}
|
|
18175
18382
|
},
|
|
18176
18383
|
{
|
|
18177
|
-
"filePath": "src/date/datepicker/
|
|
18384
|
+
"filePath": "src/date/datepicker/parts/Caption.tsx",
|
|
18178
18385
|
"displayName": "DatePickerCaption",
|
|
18179
18386
|
"props": {}
|
|
18180
18387
|
},
|
|
18181
18388
|
{
|
|
18182
|
-
"filePath": "src/date/datepicker/
|
|
18389
|
+
"filePath": "src/date/datepicker/parts/Caption.tsx",
|
|
18183
18390
|
"displayName": "Caption",
|
|
18184
18391
|
"props": {}
|
|
18185
18392
|
},
|
|
18186
18393
|
{
|
|
18187
|
-
"filePath": "src/date/datepicker/
|
|
18394
|
+
"filePath": "src/date/datepicker/parts/DayButton.tsx",
|
|
18395
|
+
"displayName": "DayButton",
|
|
18396
|
+
"props": {}
|
|
18397
|
+
},
|
|
18398
|
+
{
|
|
18399
|
+
"filePath": "src/date/datepicker/parts/DropdownCaption.tsx",
|
|
18188
18400
|
"displayName": "DropdownCaption",
|
|
18189
18401
|
"props": {}
|
|
18190
18402
|
},
|
|
18403
|
+
{
|
|
18404
|
+
"filePath": "src/date/datepicker/parts/HeadRow.tsx",
|
|
18405
|
+
"displayName": "HeadRow",
|
|
18406
|
+
"props": {}
|
|
18407
|
+
},
|
|
18408
|
+
{
|
|
18409
|
+
"filePath": "src/date/datepicker/parts/HeadRow.tsx",
|
|
18410
|
+
"displayName": "getWeekdays",
|
|
18411
|
+
"props": {}
|
|
18412
|
+
},
|
|
18413
|
+
{
|
|
18414
|
+
"filePath": "src/date/datepicker/parts/Row.tsx",
|
|
18415
|
+
"displayName": "Row",
|
|
18416
|
+
"props": {
|
|
18417
|
+
"displayMonth": {
|
|
18418
|
+
"defaultValue": null,
|
|
18419
|
+
"description": "The month where the row is displayed.",
|
|
18420
|
+
"name": "displayMonth",
|
|
18421
|
+
"parent": {
|
|
18422
|
+
"fileName": "src/date/datepicker/parts/Row.tsx",
|
|
18423
|
+
"name": "RowProps"
|
|
18424
|
+
},
|
|
18425
|
+
"declarations": [
|
|
18426
|
+
{
|
|
18427
|
+
"fileName": "src/date/datepicker/parts/Row.tsx",
|
|
18428
|
+
"name": "RowProps"
|
|
18429
|
+
}
|
|
18430
|
+
],
|
|
18431
|
+
"required": true,
|
|
18432
|
+
"type": {
|
|
18433
|
+
"name": "Date"
|
|
18434
|
+
}
|
|
18435
|
+
},
|
|
18436
|
+
"weekNumber": {
|
|
18437
|
+
"defaultValue": null,
|
|
18438
|
+
"description": "The number of the week to render.",
|
|
18439
|
+
"name": "weekNumber",
|
|
18440
|
+
"parent": {
|
|
18441
|
+
"fileName": "src/date/datepicker/parts/Row.tsx",
|
|
18442
|
+
"name": "RowProps"
|
|
18443
|
+
},
|
|
18444
|
+
"declarations": [
|
|
18445
|
+
{
|
|
18446
|
+
"fileName": "src/date/datepicker/parts/Row.tsx",
|
|
18447
|
+
"name": "RowProps"
|
|
18448
|
+
}
|
|
18449
|
+
],
|
|
18450
|
+
"required": true,
|
|
18451
|
+
"type": {
|
|
18452
|
+
"name": "number"
|
|
18453
|
+
}
|
|
18454
|
+
},
|
|
18455
|
+
"dates": {
|
|
18456
|
+
"defaultValue": null,
|
|
18457
|
+
"description": "The days contained in the week.",
|
|
18458
|
+
"name": "dates",
|
|
18459
|
+
"parent": {
|
|
18460
|
+
"fileName": "src/date/datepicker/parts/Row.tsx",
|
|
18461
|
+
"name": "RowProps"
|
|
18462
|
+
},
|
|
18463
|
+
"declarations": [
|
|
18464
|
+
{
|
|
18465
|
+
"fileName": "src/date/datepicker/parts/Row.tsx",
|
|
18466
|
+
"name": "RowProps"
|
|
18467
|
+
}
|
|
18468
|
+
],
|
|
18469
|
+
"required": true,
|
|
18470
|
+
"type": {
|
|
18471
|
+
"name": "Date[]"
|
|
18472
|
+
}
|
|
18473
|
+
}
|
|
18474
|
+
}
|
|
18475
|
+
},
|
|
18476
|
+
{
|
|
18477
|
+
"filePath": "src/date/datepicker/parts/TableHead.tsx",
|
|
18478
|
+
"displayName": "TableHead",
|
|
18479
|
+
"props": {}
|
|
18480
|
+
},
|
|
18481
|
+
{
|
|
18482
|
+
"filePath": "src/date/datepicker/parts/WeekNumber.tsx",
|
|
18483
|
+
"displayName": "WeekNumber",
|
|
18484
|
+
"props": {
|
|
18485
|
+
"number": {
|
|
18486
|
+
"defaultValue": null,
|
|
18487
|
+
"description": "The number of the week.",
|
|
18488
|
+
"name": "number",
|
|
18489
|
+
"parent": {
|
|
18490
|
+
"fileName": "src/date/datepicker/parts/WeekNumber.tsx",
|
|
18491
|
+
"name": "WeekNumberProps"
|
|
18492
|
+
},
|
|
18493
|
+
"declarations": [
|
|
18494
|
+
{
|
|
18495
|
+
"fileName": "src/date/datepicker/parts/WeekNumber.tsx",
|
|
18496
|
+
"name": "WeekNumberProps"
|
|
18497
|
+
}
|
|
18498
|
+
],
|
|
18499
|
+
"required": true,
|
|
18500
|
+
"type": {
|
|
18501
|
+
"name": "number"
|
|
18502
|
+
}
|
|
18503
|
+
},
|
|
18504
|
+
"dates": {
|
|
18505
|
+
"defaultValue": null,
|
|
18506
|
+
"description": "The dates in the week.",
|
|
18507
|
+
"name": "dates",
|
|
18508
|
+
"parent": {
|
|
18509
|
+
"fileName": "src/date/datepicker/parts/WeekNumber.tsx",
|
|
18510
|
+
"name": "WeekNumberProps"
|
|
18511
|
+
},
|
|
18512
|
+
"declarations": [
|
|
18513
|
+
{
|
|
18514
|
+
"fileName": "src/date/datepicker/parts/WeekNumber.tsx",
|
|
18515
|
+
"name": "WeekNumberProps"
|
|
18516
|
+
}
|
|
18517
|
+
],
|
|
18518
|
+
"required": true,
|
|
18519
|
+
"type": {
|
|
18520
|
+
"name": "Date[]"
|
|
18521
|
+
}
|
|
18522
|
+
},
|
|
18523
|
+
"headerVersion": {
|
|
18524
|
+
"defaultValue": null,
|
|
18525
|
+
"description": "",
|
|
18526
|
+
"name": "headerVersion",
|
|
18527
|
+
"parent": {
|
|
18528
|
+
"fileName": "src/date/datepicker/parts/WeekNumber.tsx",
|
|
18529
|
+
"name": "WeekNumberProps"
|
|
18530
|
+
},
|
|
18531
|
+
"declarations": [
|
|
18532
|
+
{
|
|
18533
|
+
"fileName": "src/date/datepicker/parts/WeekNumber.tsx",
|
|
18534
|
+
"name": "WeekNumberProps"
|
|
18535
|
+
}
|
|
18536
|
+
],
|
|
18537
|
+
"required": false,
|
|
18538
|
+
"type": {
|
|
18539
|
+
"name": "boolean"
|
|
18540
|
+
}
|
|
18541
|
+
}
|
|
18542
|
+
}
|
|
18543
|
+
},
|
|
18544
|
+
{
|
|
18545
|
+
"filePath": "src/date/datepicker/parts/WeekRow.tsx",
|
|
18546
|
+
"displayName": "WeekRow",
|
|
18547
|
+
"props": {
|
|
18548
|
+
"displayMonth": {
|
|
18549
|
+
"defaultValue": null,
|
|
18550
|
+
"description": "",
|
|
18551
|
+
"name": "displayMonth",
|
|
18552
|
+
"declarations": [
|
|
18553
|
+
{
|
|
18554
|
+
"fileName": "src/date/datepicker/parts/WeekRow.tsx",
|
|
18555
|
+
"name": "TypeLiteral"
|
|
18556
|
+
}
|
|
18557
|
+
],
|
|
18558
|
+
"required": true,
|
|
18559
|
+
"type": {
|
|
18560
|
+
"name": "Date"
|
|
18561
|
+
}
|
|
18562
|
+
}
|
|
18563
|
+
}
|
|
18564
|
+
},
|
|
18191
18565
|
{
|
|
18192
18566
|
"filePath": "src/dropdown/Menu/GroupedList/GroupedHeading.tsx",
|
|
18193
18567
|
"displayName": "GroupedHeading",
|
|
@@ -18579,44 +18953,6 @@
|
|
|
18579
18953
|
"name": "string"
|
|
18580
18954
|
}
|
|
18581
18955
|
},
|
|
18582
|
-
"error": {
|
|
18583
|
-
"defaultValue": null,
|
|
18584
|
-
"description": "",
|
|
18585
|
-
"name": "error",
|
|
18586
|
-
"parent": {
|
|
18587
|
-
"fileName": "src/form/combobox/Input/Input.tsx",
|
|
18588
|
-
"name": "InputProps"
|
|
18589
|
-
},
|
|
18590
|
-
"declarations": [
|
|
18591
|
-
{
|
|
18592
|
-
"fileName": "src/form/combobox/Input/Input.tsx",
|
|
18593
|
-
"name": "InputProps"
|
|
18594
|
-
}
|
|
18595
|
-
],
|
|
18596
|
-
"required": false,
|
|
18597
|
-
"type": {
|
|
18598
|
-
"name": "ReactNode"
|
|
18599
|
-
}
|
|
18600
|
-
},
|
|
18601
|
-
"errorId": {
|
|
18602
|
-
"defaultValue": null,
|
|
18603
|
-
"description": "",
|
|
18604
|
-
"name": "errorId",
|
|
18605
|
-
"parent": {
|
|
18606
|
-
"fileName": "src/form/combobox/Input/Input.tsx",
|
|
18607
|
-
"name": "InputProps"
|
|
18608
|
-
},
|
|
18609
|
-
"declarations": [
|
|
18610
|
-
{
|
|
18611
|
-
"fileName": "src/form/combobox/Input/Input.tsx",
|
|
18612
|
-
"name": "InputProps"
|
|
18613
|
-
}
|
|
18614
|
-
],
|
|
18615
|
-
"required": false,
|
|
18616
|
-
"type": {
|
|
18617
|
-
"name": "string"
|
|
18618
|
-
}
|
|
18619
|
-
},
|
|
18620
18956
|
"ref": {
|
|
18621
18957
|
"defaultValue": null,
|
|
18622
18958
|
"description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
|
|
@@ -18719,5 +19055,70 @@
|
|
|
18719
19055
|
}
|
|
18720
19056
|
}
|
|
18721
19057
|
}
|
|
19058
|
+
},
|
|
19059
|
+
{
|
|
19060
|
+
"filePath": "src/layout/sidemal-test/content-box/ContentBox.tsx",
|
|
19061
|
+
"displayName": "ContentBox",
|
|
19062
|
+
"props": {
|
|
19063
|
+
"maxWidth": {
|
|
19064
|
+
"defaultValue": {
|
|
19065
|
+
"value": "xl"
|
|
19066
|
+
},
|
|
19067
|
+
"description": "",
|
|
19068
|
+
"name": "maxWidth",
|
|
19069
|
+
"parent": {
|
|
19070
|
+
"fileName": "src/layout/sidemal-test/content-box/ContentBox.tsx",
|
|
19071
|
+
"name": "ContentBoxProps"
|
|
19072
|
+
},
|
|
19073
|
+
"declarations": [
|
|
19074
|
+
{
|
|
19075
|
+
"fileName": "src/layout/sidemal-test/content-box/ContentBox.tsx",
|
|
19076
|
+
"name": "ContentBoxProps"
|
|
19077
|
+
}
|
|
19078
|
+
],
|
|
19079
|
+
"required": false,
|
|
19080
|
+
"type": {
|
|
19081
|
+
"name": "\"3xl\" | \"2xl\" | \"xl\" | \"lg\""
|
|
19082
|
+
}
|
|
19083
|
+
},
|
|
19084
|
+
"className": {
|
|
19085
|
+
"defaultValue": null,
|
|
19086
|
+
"description": "",
|
|
19087
|
+
"name": "className",
|
|
19088
|
+
"parent": {
|
|
19089
|
+
"fileName": "aksel/node_modules/@types/react/index.d.ts",
|
|
19090
|
+
"name": "HTMLAttributes"
|
|
19091
|
+
},
|
|
19092
|
+
"declarations": [
|
|
19093
|
+
{
|
|
19094
|
+
"fileName": "aksel/node_modules/@types/react/index.d.ts",
|
|
19095
|
+
"name": "HTMLAttributes"
|
|
19096
|
+
}
|
|
19097
|
+
],
|
|
19098
|
+
"required": false,
|
|
19099
|
+
"type": {
|
|
19100
|
+
"name": "string"
|
|
19101
|
+
}
|
|
19102
|
+
},
|
|
19103
|
+
"ref": {
|
|
19104
|
+
"defaultValue": null,
|
|
19105
|
+
"description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null` (or call the ref with `null` if you passed a callback ref).\n@see https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom",
|
|
19106
|
+
"name": "ref",
|
|
19107
|
+
"parent": {
|
|
19108
|
+
"fileName": "aksel/node_modules/@types/react/index.d.ts",
|
|
19109
|
+
"name": "RefAttributes"
|
|
19110
|
+
},
|
|
19111
|
+
"declarations": [
|
|
19112
|
+
{
|
|
19113
|
+
"fileName": "aksel/node_modules/@types/react/index.d.ts",
|
|
19114
|
+
"name": "RefAttributes"
|
|
19115
|
+
}
|
|
19116
|
+
],
|
|
19117
|
+
"required": false,
|
|
19118
|
+
"type": {
|
|
19119
|
+
"name": "Ref<HTMLDivElement>"
|
|
19120
|
+
}
|
|
19121
|
+
}
|
|
19122
|
+
}
|
|
18722
19123
|
}
|
|
18723
19124
|
]
|