From 5339b2571e6d73ca6efe2acd34d88669419db9f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D5=A1=D3=84=D5=A1?= Date: Thu, 14 Nov 2024 03:30:17 +0800 Subject: [PATCH 01/28] fix: support inert value with boolean type for react 19 (#4039) --- .changeset/moody-rabbits-shop.md | 7 +++++ .../calendar/src/calendar-month.tsx | 5 ++-- .../calendar/src/calendar-picker.tsx | 4 +-- packages/components/tabs/src/tab-panel.tsx | 5 ++-- .../utilities/shared-utils/src/functions.ts | 29 +++++++++++++++++++ 5 files changed, 42 insertions(+), 8 deletions(-) create mode 100644 .changeset/moody-rabbits-shop.md diff --git a/.changeset/moody-rabbits-shop.md b/.changeset/moody-rabbits-shop.md new file mode 100644 index 0000000000..8fec710f2e --- /dev/null +++ b/.changeset/moody-rabbits-shop.md @@ -0,0 +1,7 @@ +--- +"@nextui-org/calendar": patch +"@nextui-org/tabs": patch +"@nextui-org/shared-utils": patch +--- + +support inert value with boolean type for react 19 (#4038) diff --git a/packages/components/calendar/src/calendar-month.tsx b/packages/components/calendar/src/calendar-month.tsx index e17fca20d9..8972f10bd6 100644 --- a/packages/components/calendar/src/calendar-month.tsx +++ b/packages/components/calendar/src/calendar-month.tsx @@ -4,7 +4,7 @@ import {HTMLNextUIProps} from "@nextui-org/system"; import {useLocale} from "@react-aria/i18n"; import {useCalendarGrid} from "@react-aria/calendar"; import {m} from "framer-motion"; -import {dataAttr} from "@nextui-org/shared-utils"; +import {dataAttr, getInertValue} from "@nextui-org/shared-utils"; import {CalendarCell} from "./calendar-cell"; import {slideVariants} from "./calendar-transitions"; @@ -40,9 +40,8 @@ export function CalendarMonth(props: CalendarMonthProps) { className={slots?.gridBodyRow({class: classNames?.gridBodyRow})} data-slot="grid-body-row" // makes the browser ignore the element and its children when tabbing - // TODO: invert inert when switching to React 19 (ref: https://github.com/facebook/react/issues/17157) // @ts-ignore - inert={isHeaderExpanded ? "" : undefined} + inert={getInertValue(!!isHeaderExpanded)} > {state .getDatesInWeek(weekIndex, startDate) diff --git a/packages/components/calendar/src/calendar-picker.tsx b/packages/components/calendar/src/calendar-picker.tsx index 76e4cf07e5..c75194aa2a 100644 --- a/packages/components/calendar/src/calendar-picker.tsx +++ b/packages/components/calendar/src/calendar-picker.tsx @@ -2,6 +2,7 @@ import type {CalendarPickerProps} from "./use-calendar-picker"; import {HTMLNextUIProps} from "@nextui-org/system"; import {useCallback} from "react"; +import {getInertValue} from "@nextui-org/shared-utils"; import {CalendarPickerItem} from "./calendar-picker-item"; import {useCalendarPicker} from "./use-calendar-picker"; @@ -66,9 +67,8 @@ export function CalendarPicker(props: CalendarPickerProps) { })} data-slot="picker-wrapper" // makes the browser ignore the element and its children when tabbing - // TODO: invert inert when switching to React 19 (ref: https://github.com/facebook/react/issues/17157) // @ts-ignore - inert={isHeaderExpanded ? undefined : ""} + inert={getInertValue(!isHeaderExpanded)} >
((props, ref) => { data-focus-visible={isFocusVisible} data-inert={!isSelected ? "true" : undefined} // makes the browser ignore the element and its children when tabbing - // TODO: invert inert when switching to React 19 (ref: https://github.com/facebook/react/issues/17157) // @ts-ignore - inert={!isSelected ? "" : undefined} + inert={getInertValue(!isSelected)} {...(isSelected && mergeProps(tabPanelProps, focusProps, otherProps))} className={slots.panel?.({class: tabPanelStyles})} data-slot="panel" diff --git a/packages/utilities/shared-utils/src/functions.ts b/packages/utilities/shared-utils/src/functions.ts index 2eece226c6..bdbcec3db4 100644 --- a/packages/utilities/shared-utils/src/functions.ts +++ b/packages/utilities/shared-utils/src/functions.ts @@ -1,3 +1,5 @@ +import React from "react"; + type Args = T extends (...args: infer R) => any ? R : never; type AnyFunction = (...args: T[]) => any; @@ -389,3 +391,30 @@ export const intersectionBy = (...args: [...arrays: T[][], iteratee: Iteratee return res; }; + +/** + * Checks if the current React version is 19.x.x + * + * @returns {boolean} - Returns `true` if the React major version is 19, otherwise returns `false`. + */ +export const isReact19 = (): boolean => { + return React.version.split(".")[0] === "19"; +}; + +/** + * Returns an appropriate value for the `inert` attribute based on the React version. + * + * In React 19, the attribute `inert` is a boolean. In versions prior to 19, the attribute + * behaves differently: setting `inert=""` will make it `true`, and `inert=undefined` will make it `false`. + * + * @param {boolean} v - The desired boolean state for the `inert` attribute. + * @returns {boolean | string | undefined} - Depending on the React version: + * - Returns `boolean` if React version is 19 (the input value `v` directly). + * - Returns `string` (empty string) if `v` is `true` in older React versions. + * - Returns `undefined` if `v` is `false` in older React versions. + * + * @see {@link https://github.com/facebook/react/issues/17157} for more details on the behavior in older React versions. + */ +export const getInertValue = (v: boolean): boolean | string | undefined => { + return isReact19() ? v : v ? "" : undefined; +}; From 27ebcbe252ef4b8f78e41ac8646dcace2aef1d91 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Nov 2024 16:48:05 -0300 Subject: [PATCH 02/28] ci(changesets): version packages (beta) (#4041) Co-authored-by: github-actions[bot] --- .changeset/pre.json | 1 + packages/components/accordion/CHANGELOG.md | 11 ++++ packages/components/accordion/package.json | 2 +- packages/components/alert/CHANGELOG.md | 9 ++++ packages/components/alert/package.json | 2 +- packages/components/autocomplete/CHANGELOG.md | 15 ++++++ packages/components/autocomplete/package.json | 2 +- packages/components/avatar/CHANGELOG.md | 8 +++ packages/components/avatar/package.json | 2 +- packages/components/badge/CHANGELOG.md | 8 +++ packages/components/badge/package.json | 2 +- packages/components/breadcrumbs/CHANGELOG.md | 8 +++ packages/components/breadcrumbs/package.json | 2 +- packages/components/button/CHANGELOG.md | 10 ++++ packages/components/button/package.json | 2 +- packages/components/calendar/CHANGELOG.md | 12 +++++ packages/components/calendar/package.json | 2 +- packages/components/card/CHANGELOG.md | 9 ++++ packages/components/card/package.json | 2 +- packages/components/checkbox/CHANGELOG.md | 8 +++ packages/components/checkbox/package.json | 2 +- packages/components/chip/CHANGELOG.md | 8 +++ packages/components/chip/package.json | 2 +- packages/components/code/CHANGELOG.md | 9 ++++ packages/components/code/package.json | 2 +- packages/components/date-input/CHANGELOG.md | 8 +++ packages/components/date-input/package.json | 2 +- packages/components/date-picker/CHANGELOG.md | 13 +++++ packages/components/date-picker/package.json | 2 +- packages/components/divider/CHANGELOG.md | 8 +++ packages/components/divider/package.json | 2 +- packages/components/drawer/CHANGELOG.md | 10 ++++ packages/components/drawer/package.json | 2 +- packages/components/dropdown/CHANGELOG.md | 11 ++++ packages/components/dropdown/package.json | 2 +- packages/components/image/CHANGELOG.md | 8 +++ packages/components/image/package.json | 2 +- packages/components/input/CHANGELOG.md | 8 +++ packages/components/input/package.json | 2 +- packages/components/kbd/CHANGELOG.md | 9 ++++ packages/components/kbd/package.json | 2 +- packages/components/link/CHANGELOG.md | 8 +++ packages/components/link/package.json | 2 +- packages/components/listbox/CHANGELOG.md | 10 ++++ packages/components/listbox/package.json | 2 +- packages/components/menu/CHANGELOG.md | 10 ++++ packages/components/menu/package.json | 2 +- packages/components/modal/CHANGELOG.md | 9 ++++ packages/components/modal/package.json | 2 +- packages/components/navbar/CHANGELOG.md | 9 ++++ packages/components/navbar/package.json | 2 +- packages/components/pagination/CHANGELOG.md | 9 ++++ packages/components/pagination/package.json | 2 +- packages/components/popover/CHANGELOG.md | 11 ++++ packages/components/popover/package.json | 2 +- packages/components/progress/CHANGELOG.md | 8 +++ packages/components/progress/package.json | 2 +- packages/components/radio/CHANGELOG.md | 8 +++ packages/components/radio/package.json | 2 +- packages/components/ripple/CHANGELOG.md | 8 +++ packages/components/ripple/package.json | 2 +- .../components/scroll-shadow/CHANGELOG.md | 9 ++++ .../components/scroll-shadow/package.json | 2 +- packages/components/select/CHANGELOG.md | 13 +++++ packages/components/select/package.json | 2 +- packages/components/skeleton/CHANGELOG.md | 8 +++ packages/components/skeleton/package.json | 2 +- packages/components/slider/CHANGELOG.md | 9 ++++ packages/components/slider/package.json | 2 +- packages/components/snippet/CHANGELOG.md | 10 ++++ packages/components/snippet/package.json | 2 +- packages/components/spacer/CHANGELOG.md | 9 ++++ packages/components/spacer/package.json | 2 +- packages/components/spinner/CHANGELOG.md | 9 ++++ packages/components/spinner/package.json | 2 +- packages/components/switch/CHANGELOG.md | 8 +++ packages/components/switch/package.json | 2 +- packages/components/table/CHANGELOG.md | 10 ++++ packages/components/table/package.json | 2 +- packages/components/tabs/CHANGELOG.md | 12 +++++ packages/components/tabs/package.json | 2 +- packages/components/tooltip/CHANGELOG.md | 10 ++++ packages/components/tooltip/package.json | 2 +- packages/components/user/CHANGELOG.md | 9 ++++ packages/components/user/package.json | 2 +- packages/core/react/CHANGELOG.md | 51 +++++++++++++++++++ packages/core/react/package.json | 2 +- packages/core/system/CHANGELOG.md | 8 +++ packages/core/system/package.json | 2 +- packages/core/theme/CHANGELOG.md | 7 +++ packages/core/theme/package.json | 2 +- .../use-data-scroll-overflow/CHANGELOG.md | 7 +++ .../use-data-scroll-overflow/package.json | 2 +- .../hooks/use-infinite-scroll/CHANGELOG.md | 7 +++ .../hooks/use-infinite-scroll/package.json | 2 +- packages/hooks/use-pagination/CHANGELOG.md | 7 +++ packages/hooks/use-pagination/package.json | 2 +- packages/hooks/use-real-shape/CHANGELOG.md | 7 +++ packages/hooks/use-real-shape/package.json | 2 +- packages/utilities/aria-utils/CHANGELOG.md | 8 +++ packages/utilities/aria-utils/package.json | 2 +- packages/utilities/framer-utils/CHANGELOG.md | 8 +++ packages/utilities/framer-utils/package.json | 2 +- packages/utilities/react-utils/CHANGELOG.md | 7 +++ packages/utilities/react-utils/package.json | 2 +- packages/utilities/shared-utils/CHANGELOG.md | 6 +++ packages/utilities/shared-utils/package.json | 2 +- 107 files changed, 573 insertions(+), 53 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 78538907fd..9c467f4272 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -107,6 +107,7 @@ "light-needles-behave", "mean-mangos-occur", "mighty-birds-deny", + "moody-rabbits-shop", "neat-donkeys-accept", "pink-beans-sit", "plenty-scissors-love", diff --git a/packages/components/accordion/CHANGELOG.md b/packages/components/accordion/CHANGELOG.md index c39e3a7260..eb4d4c9bdd 100644 --- a/packages/components/accordion/CHANGELOG.md +++ b/packages/components/accordion/CHANGELOG.md @@ -1,5 +1,16 @@ # @nextui-org/accordion +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/divider@2.1.0-beta.4 + - @nextui-org/aria-utils@2.1.0-beta.4 + - @nextui-org/framer-utils@2.0.26-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/accordion/package.json b/packages/components/accordion/package.json index c0ad665b4c..409d2c4b35 100644 --- a/packages/components/accordion/package.json +++ b/packages/components/accordion/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/accordion", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Collapse display a list of high-level options that can expand/collapse to reveal more information.", "keywords": [ "react", diff --git a/packages/components/alert/CHANGELOG.md b/packages/components/alert/CHANGELOG.md index 5e15b27b1d..8b95ecabe6 100644 --- a/packages/components/alert/CHANGELOG.md +++ b/packages/components/alert/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/alert +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/button@2.1.0-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/alert/package.json b/packages/components/alert/package.json index 0fc140de82..b6363f79dc 100644 --- a/packages/components/alert/package.json +++ b/packages/components/alert/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/alert", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Alerts are temporary notifications that provide concise feedback about an action or event.", "keywords": [ "alert" diff --git a/packages/components/autocomplete/CHANGELOG.md b/packages/components/autocomplete/CHANGELOG.md index 1e3f592581..cfb82873f0 100644 --- a/packages/components/autocomplete/CHANGELOG.md +++ b/packages/components/autocomplete/CHANGELOG.md @@ -1,5 +1,20 @@ # @nextui-org/autocomplete +## 2.2.0-beta.6 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/button@2.1.0-beta.4 + - @nextui-org/input@2.3.0-beta.5 + - @nextui-org/listbox@2.2.0-beta.4 + - @nextui-org/popover@2.2.0-beta.5 + - @nextui-org/scroll-shadow@2.2.0-beta.4 + - @nextui-org/spinner@2.1.0-beta.4 + - @nextui-org/aria-utils@2.1.0-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.2.0-beta.5 ### Patch Changes diff --git a/packages/components/autocomplete/package.json b/packages/components/autocomplete/package.json index 8c9c79ecd9..0885bb64f9 100644 --- a/packages/components/autocomplete/package.json +++ b/packages/components/autocomplete/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/autocomplete", - "version": "2.2.0-beta.5", + "version": "2.2.0-beta.6", "description": "An autocomplete combines a text input with a listbox, allowing users to filter a list of options to items matching a query.", "keywords": [ "autocomplete" diff --git a/packages/components/avatar/CHANGELOG.md b/packages/components/avatar/CHANGELOG.md index 5be37a2bc9..12fceb056d 100644 --- a/packages/components/avatar/CHANGELOG.md +++ b/packages/components/avatar/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/avatar +## 2.1.0-beta.7 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.6 ### Patch Changes diff --git a/packages/components/avatar/package.json b/packages/components/avatar/package.json index 8ab42b9bbd..c2f38e26d5 100644 --- a/packages/components/avatar/package.json +++ b/packages/components/avatar/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/avatar", - "version": "2.1.0-beta.6", + "version": "2.1.0-beta.7", "description": "The Avatar component is used to represent a user, and displays the profile picture, initials or fallback icon.", "keywords": [ "avatar" diff --git a/packages/components/badge/CHANGELOG.md b/packages/components/badge/CHANGELOG.md index 87a2af6f46..75a1b434b8 100644 --- a/packages/components/badge/CHANGELOG.md +++ b/packages/components/badge/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/badge +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/badge/package.json b/packages/components/badge/package.json index b16cea917e..bc80b91ba9 100644 --- a/packages/components/badge/package.json +++ b/packages/components/badge/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/badge", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Badges are used as a small numerical value or status descriptor for UI elements.", "keywords": [ "badge" diff --git a/packages/components/breadcrumbs/CHANGELOG.md b/packages/components/breadcrumbs/CHANGELOG.md index 5ceeb821d5..73401a9037 100644 --- a/packages/components/breadcrumbs/CHANGELOG.md +++ b/packages/components/breadcrumbs/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/breadcrumbs +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/breadcrumbs/package.json b/packages/components/breadcrumbs/package.json index 3981e506cc..08337b3e4a 100644 --- a/packages/components/breadcrumbs/package.json +++ b/packages/components/breadcrumbs/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/breadcrumbs", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Breadcrumbs display a hierarchy of links to the current page or resource in an application.", "keywords": [ "breadcrumbs" diff --git a/packages/components/button/CHANGELOG.md b/packages/components/button/CHANGELOG.md index 91786870a8..2483bdb3dd 100644 --- a/packages/components/button/CHANGELOG.md +++ b/packages/components/button/CHANGELOG.md @@ -1,5 +1,15 @@ # @nextui-org/button +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/ripple@2.1.0-beta.4 + - @nextui-org/spinner@2.1.0-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/button/package.json b/packages/components/button/package.json index a88fb52e11..d2da00a480 100644 --- a/packages/components/button/package.json +++ b/packages/components/button/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/button", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Buttons allow users to perform actions and choose with a single tap.", "keywords": [ "button" diff --git a/packages/components/calendar/CHANGELOG.md b/packages/components/calendar/CHANGELOG.md index b47f80e7ab..cd5022ccf5 100644 --- a/packages/components/calendar/CHANGELOG.md +++ b/packages/components/calendar/CHANGELOG.md @@ -1,5 +1,17 @@ # @nextui-org/calendar +## 2.1.0-beta.4 + +### Patch Changes + +- [#4039](https://github.com/nextui-org/nextui/pull/4039) [`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7) Thanks [@wingkwong](https://github.com/wingkwong)! - support inert value with boolean type for react 19 (#4038) + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/button@2.1.0-beta.4 + - @nextui-org/framer-utils@2.0.26-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/calendar/package.json b/packages/components/calendar/package.json index 604c384810..6aef4652f5 100644 --- a/packages/components/calendar/package.json +++ b/packages/components/calendar/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/calendar", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "A calendar displays one or more date grids and allows users to select a single date.", "keywords": [ "calendar" diff --git a/packages/components/card/CHANGELOG.md b/packages/components/card/CHANGELOG.md index 7e20e89887..a90836c5c0 100644 --- a/packages/components/card/CHANGELOG.md +++ b/packages/components/card/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/card +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/ripple@2.1.0-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/card/package.json b/packages/components/card/package.json index d7537b58fb..9ef4b1d240 100644 --- a/packages/components/card/package.json +++ b/packages/components/card/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/card", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Card is a container for text, photos, and actions in the context of a single subject.", "keywords": [ "card" diff --git a/packages/components/checkbox/CHANGELOG.md b/packages/components/checkbox/CHANGELOG.md index 2b0fcf918c..8cf27a75e4 100644 --- a/packages/components/checkbox/CHANGELOG.md +++ b/packages/components/checkbox/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/checkbox +## 2.2.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.2.0-beta.3 ### Patch Changes diff --git a/packages/components/checkbox/package.json b/packages/components/checkbox/package.json index 167673e0b5..8e3958ac48 100644 --- a/packages/components/checkbox/package.json +++ b/packages/components/checkbox/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/checkbox", - "version": "2.2.0-beta.3", + "version": "2.2.0-beta.4", "description": "Checkboxes allow users to select multiple items from a list of individual items, or to mark one individual item as selected.", "keywords": [ "checkbox" diff --git a/packages/components/chip/CHANGELOG.md b/packages/components/chip/CHANGELOG.md index a18e6661ac..328c02fa19 100644 --- a/packages/components/chip/CHANGELOG.md +++ b/packages/components/chip/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/chip +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/chip/package.json b/packages/components/chip/package.json index 3682624801..67a9fe6961 100644 --- a/packages/components/chip/package.json +++ b/packages/components/chip/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/chip", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Chips help people enter information, make selections, filter content, or trigger actions.", "keywords": [ "chip" diff --git a/packages/components/code/CHANGELOG.md b/packages/components/code/CHANGELOG.md index a5940d4b2a..1b4c5415f9 100644 --- a/packages/components/code/CHANGELOG.md +++ b/packages/components/code/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/code +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/system-rsc@2.2.0-beta.3 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/code/package.json b/packages/components/code/package.json index 54aa834e69..86cf89a04e 100644 --- a/packages/components/code/package.json +++ b/packages/components/code/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/code", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Code is a component used to display inline code.", "keywords": [ "code" diff --git a/packages/components/date-input/CHANGELOG.md b/packages/components/date-input/CHANGELOG.md index a7f71a01b6..66bd0aa5f6 100644 --- a/packages/components/date-input/CHANGELOG.md +++ b/packages/components/date-input/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/date-input +## 2.2.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.2.0-beta.3 ### Patch Changes diff --git a/packages/components/date-input/package.json b/packages/components/date-input/package.json index b5d10d3efa..b8347121c3 100644 --- a/packages/components/date-input/package.json +++ b/packages/components/date-input/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/date-input", - "version": "2.2.0-beta.3", + "version": "2.2.0-beta.4", "description": "A date input allows users to enter and edit date and time values using a keyboard.", "keywords": [ "date-field" diff --git a/packages/components/date-picker/CHANGELOG.md b/packages/components/date-picker/CHANGELOG.md index adbb89ee3d..3cb53b1f9e 100644 --- a/packages/components/date-picker/CHANGELOG.md +++ b/packages/components/date-picker/CHANGELOG.md @@ -1,5 +1,18 @@ # @nextui-org/date-picker +## 2.2.0-beta.5 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/calendar@2.1.0-beta.4 + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/button@2.1.0-beta.4 + - @nextui-org/date-input@2.2.0-beta.4 + - @nextui-org/popover@2.2.0-beta.5 + - @nextui-org/aria-utils@2.1.0-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.2.0-beta.4 ### Patch Changes diff --git a/packages/components/date-picker/package.json b/packages/components/date-picker/package.json index 1f236d657f..708bc4becc 100644 --- a/packages/components/date-picker/package.json +++ b/packages/components/date-picker/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/date-picker", - "version": "2.2.0-beta.4", + "version": "2.2.0-beta.5", "description": "A date picker combines a DateInput and a Calendar popover to allow users to enter or select a date and time value.", "keywords": [ "date-picker" diff --git a/packages/components/divider/CHANGELOG.md b/packages/components/divider/CHANGELOG.md index e5aa847fea..de59f05fd3 100644 --- a/packages/components/divider/CHANGELOG.md +++ b/packages/components/divider/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/divider +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/system-rsc@2.2.0-beta.3 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/divider/package.json b/packages/components/divider/package.json index 30d470b321..52b24a6040 100644 --- a/packages/components/divider/package.json +++ b/packages/components/divider/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/divider", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": ". A separator is a visual divider between two groups of content", "keywords": [ "divider" diff --git a/packages/components/drawer/CHANGELOG.md b/packages/components/drawer/CHANGELOG.md index 70e0cb3ea1..0d05df6387 100644 --- a/packages/components/drawer/CHANGELOG.md +++ b/packages/components/drawer/CHANGELOG.md @@ -1,5 +1,15 @@ # @nextui-org/drawer +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/modal@2.1.0-beta.4 + - @nextui-org/framer-utils@2.0.26-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/drawer/package.json b/packages/components/drawer/package.json index 1002c128c9..47e169c06f 100644 --- a/packages/components/drawer/package.json +++ b/packages/components/drawer/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/drawer", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Used to render a content that slides in from the side of the screen.", "keywords": [ "drawer" diff --git a/packages/components/dropdown/CHANGELOG.md b/packages/components/dropdown/CHANGELOG.md index 0c77c4ee06..b658cd1531 100644 --- a/packages/components/dropdown/CHANGELOG.md +++ b/packages/components/dropdown/CHANGELOG.md @@ -1,5 +1,16 @@ # @nextui-org/dropdown +## 2.2.0-beta.5 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/menu@2.1.0-beta.4 + - @nextui-org/popover@2.2.0-beta.5 + - @nextui-org/aria-utils@2.1.0-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.2.0-beta.4 ### Patch Changes diff --git a/packages/components/dropdown/package.json b/packages/components/dropdown/package.json index 1c4780b7a5..7a2b40cd41 100644 --- a/packages/components/dropdown/package.json +++ b/packages/components/dropdown/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/dropdown", - "version": "2.2.0-beta.4", + "version": "2.2.0-beta.5", "description": "A dropdown displays a list of actions or options that a user can choose.", "keywords": [ "dropdown" diff --git a/packages/components/image/CHANGELOG.md b/packages/components/image/CHANGELOG.md index 22d5fabbc2..6759874e02 100644 --- a/packages/components/image/CHANGELOG.md +++ b/packages/components/image/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/image +## 2.1.0-beta.7 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.6 ### Patch Changes diff --git a/packages/components/image/package.json b/packages/components/image/package.json index 0f0a5b010d..428a90d47b 100644 --- a/packages/components/image/package.json +++ b/packages/components/image/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/image", - "version": "2.1.0-beta.6", + "version": "2.1.0-beta.7", "description": "A simple image component", "keywords": [ "image" diff --git a/packages/components/input/CHANGELOG.md b/packages/components/input/CHANGELOG.md index b27564e7b8..86961c215d 100644 --- a/packages/components/input/CHANGELOG.md +++ b/packages/components/input/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/input +## 2.3.0-beta.5 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.3.0-beta.4 ### Patch Changes diff --git a/packages/components/input/package.json b/packages/components/input/package.json index b4400dc3f3..8c06d87eae 100644 --- a/packages/components/input/package.json +++ b/packages/components/input/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/input", - "version": "2.3.0-beta.4", + "version": "2.3.0-beta.5", "description": "The input component is designed for capturing user input within a text field.", "keywords": [ "input" diff --git a/packages/components/kbd/CHANGELOG.md b/packages/components/kbd/CHANGELOG.md index 9b3a7972bf..d03d94f25c 100644 --- a/packages/components/kbd/CHANGELOG.md +++ b/packages/components/kbd/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/kbd +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/system-rsc@2.2.0-beta.3 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/kbd/package.json b/packages/components/kbd/package.json index e75caba16b..620410efc6 100644 --- a/packages/components/kbd/package.json +++ b/packages/components/kbd/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/kbd", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "The keyboard key components indicates which key or set of keys used to execute a specificv action", "keywords": [ "kbd" diff --git a/packages/components/link/CHANGELOG.md b/packages/components/link/CHANGELOG.md index 982f0ae8e0..f79cc0bf8d 100644 --- a/packages/components/link/CHANGELOG.md +++ b/packages/components/link/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/link +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/link/package.json b/packages/components/link/package.json index c6c5eff2c1..e2d404d428 100644 --- a/packages/components/link/package.json +++ b/packages/components/link/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/link", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Links allow users to click their way from page to page. This component is styled to resemble a hyperlink and semantically renders an <a>", "keywords": [ "link" diff --git a/packages/components/listbox/CHANGELOG.md b/packages/components/listbox/CHANGELOG.md index f5d543881f..0856ac69d0 100644 --- a/packages/components/listbox/CHANGELOG.md +++ b/packages/components/listbox/CHANGELOG.md @@ -1,5 +1,15 @@ # @nextui-org/listbox +## 2.2.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/divider@2.1.0-beta.4 + - @nextui-org/aria-utils@2.1.0-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.2.0-beta.3 ### Patch Changes diff --git a/packages/components/listbox/package.json b/packages/components/listbox/package.json index ca0d05568b..3396d7b60e 100644 --- a/packages/components/listbox/package.json +++ b/packages/components/listbox/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/listbox", - "version": "2.2.0-beta.3", + "version": "2.2.0-beta.4", "description": "A listbox displays a list of options and allows a user to select one or more of them.", "keywords": [ "listbox" diff --git a/packages/components/menu/CHANGELOG.md b/packages/components/menu/CHANGELOG.md index 2219a7f092..4e96db1d95 100644 --- a/packages/components/menu/CHANGELOG.md +++ b/packages/components/menu/CHANGELOG.md @@ -1,5 +1,15 @@ # @nextui-org/menu +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/divider@2.1.0-beta.4 + - @nextui-org/aria-utils@2.1.0-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/menu/package.json b/packages/components/menu/package.json index d4d30163f4..690b1ae479 100644 --- a/packages/components/menu/package.json +++ b/packages/components/menu/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/menu", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "A menu displays a list of options and allows a user to select one or more of them.", "keywords": [ "menu" diff --git a/packages/components/modal/CHANGELOG.md b/packages/components/modal/CHANGELOG.md index 77d798ae22..af42a52d31 100644 --- a/packages/components/modal/CHANGELOG.md +++ b/packages/components/modal/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/modal +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/framer-utils@2.0.26-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/modal/package.json b/packages/components/modal/package.json index 17dfbac63a..53e1ef186c 100644 --- a/packages/components/modal/package.json +++ b/packages/components/modal/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/modal", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Displays a dialog with a custom content that requires attention or provides additional information.", "keywords": [ "modal" diff --git a/packages/components/navbar/CHANGELOG.md b/packages/components/navbar/CHANGELOG.md index 25fb9c5f97..b4a1c32d6a 100644 --- a/packages/components/navbar/CHANGELOG.md +++ b/packages/components/navbar/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/navbar +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/framer-utils@2.0.26-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/navbar/package.json b/packages/components/navbar/package.json index 4c0240897e..3bd1b8b24c 100644 --- a/packages/components/navbar/package.json +++ b/packages/components/navbar/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/navbar", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "A responsive navigation header positioned on top side of your page that includes support for branding, links, navigation, collapse and more.", "keywords": [ "navbar" diff --git a/packages/components/pagination/CHANGELOG.md b/packages/components/pagination/CHANGELOG.md index 5e5e9f6a30..f088833b76 100644 --- a/packages/components/pagination/CHANGELOG.md +++ b/packages/components/pagination/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/pagination +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/use-pagination@2.1.0-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/pagination/package.json b/packages/components/pagination/package.json index 083d4194e6..50af075cfb 100644 --- a/packages/components/pagination/package.json +++ b/packages/components/pagination/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/pagination", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "The Pagination component allows you to display active page and navigate between multiple pages.", "keywords": [ "pagination" diff --git a/packages/components/popover/CHANGELOG.md b/packages/components/popover/CHANGELOG.md index 6a3c07e42b..eee35f9430 100644 --- a/packages/components/popover/CHANGELOG.md +++ b/packages/components/popover/CHANGELOG.md @@ -1,5 +1,16 @@ # @nextui-org/popover +## 2.2.0-beta.5 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/button@2.1.0-beta.4 + - @nextui-org/aria-utils@2.1.0-beta.4 + - @nextui-org/framer-utils@2.0.26-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.2.0-beta.4 ### Patch Changes diff --git a/packages/components/popover/package.json b/packages/components/popover/package.json index 9cf1078f0f..b1d76f3f6a 100644 --- a/packages/components/popover/package.json +++ b/packages/components/popover/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/popover", - "version": "2.2.0-beta.4", + "version": "2.2.0-beta.5", "description": "A popover is an overlay element positioned relative to a trigger.", "keywords": [ "popover" diff --git a/packages/components/progress/CHANGELOG.md b/packages/components/progress/CHANGELOG.md index 9534e7c4a7..149a141f0e 100644 --- a/packages/components/progress/CHANGELOG.md +++ b/packages/components/progress/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/progress +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/progress/package.json b/packages/components/progress/package.json index 04e6909c0d..923ca234bd 100644 --- a/packages/components/progress/package.json +++ b/packages/components/progress/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/progress", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Progress bars show either determinate or indeterminate progress of an operation over time.", "keywords": [ "progress" diff --git a/packages/components/radio/CHANGELOG.md b/packages/components/radio/CHANGELOG.md index 0bdb9c8129..795df09cb2 100644 --- a/packages/components/radio/CHANGELOG.md +++ b/packages/components/radio/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/radio +## 2.2.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.2.0-beta.3 ### Patch Changes diff --git a/packages/components/radio/package.json b/packages/components/radio/package.json index 4ae713e4ce..066ea959f6 100644 --- a/packages/components/radio/package.json +++ b/packages/components/radio/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/radio", - "version": "2.2.0-beta.3", + "version": "2.2.0-beta.4", "description": "Radios allow users to select a single option from a list of mutually exclusive options.", "keywords": [ "radio" diff --git a/packages/components/ripple/CHANGELOG.md b/packages/components/ripple/CHANGELOG.md index 55edc3ede1..b10faa5208 100644 --- a/packages/components/ripple/CHANGELOG.md +++ b/packages/components/ripple/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/ripple +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/ripple/package.json b/packages/components/ripple/package.json index eb86c86b12..fd2c6bb648 100644 --- a/packages/components/ripple/package.json +++ b/packages/components/ripple/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/ripple", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "A simple implementation to display a ripple animation when the source component is clicked", "keywords": [ "ripple" diff --git a/packages/components/scroll-shadow/CHANGELOG.md b/packages/components/scroll-shadow/CHANGELOG.md index fc568582c4..665d1b6417 100644 --- a/packages/components/scroll-shadow/CHANGELOG.md +++ b/packages/components/scroll-shadow/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/scroll-shadow +## 2.2.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/use-data-scroll-overflow@2.1.8-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.2.0-beta.3 ### Patch Changes diff --git a/packages/components/scroll-shadow/package.json b/packages/components/scroll-shadow/package.json index 29cc6e5c67..a3bea1ed59 100644 --- a/packages/components/scroll-shadow/package.json +++ b/packages/components/scroll-shadow/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/scroll-shadow", - "version": "2.2.0-beta.3", + "version": "2.2.0-beta.4", "description": "A component that applies top and bottom shadows when content overflows on scroll.", "keywords": [ "scroll-shadow" diff --git a/packages/components/select/CHANGELOG.md b/packages/components/select/CHANGELOG.md index 1992a62afb..bba7844609 100644 --- a/packages/components/select/CHANGELOG.md +++ b/packages/components/select/CHANGELOG.md @@ -1,5 +1,18 @@ # @nextui-org/select +## 2.3.0-beta.6 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/listbox@2.2.0-beta.4 + - @nextui-org/popover@2.2.0-beta.5 + - @nextui-org/scroll-shadow@2.2.0-beta.4 + - @nextui-org/spinner@2.1.0-beta.4 + - @nextui-org/aria-utils@2.1.0-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.3.0-beta.5 ### Patch Changes diff --git a/packages/components/select/package.json b/packages/components/select/package.json index 289914a2f9..7ef91227e5 100644 --- a/packages/components/select/package.json +++ b/packages/components/select/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/select", - "version": "2.3.0-beta.5", + "version": "2.3.0-beta.6", "description": "A select displays a collapsible list of options and allows a user to select one of them.", "keywords": [ "select" diff --git a/packages/components/skeleton/CHANGELOG.md b/packages/components/skeleton/CHANGELOG.md index c7411a0957..f4d5a1c5e2 100644 --- a/packages/components/skeleton/CHANGELOG.md +++ b/packages/components/skeleton/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/skeleton +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/skeleton/package.json b/packages/components/skeleton/package.json index 8b412cdac0..ea0581ef15 100644 --- a/packages/components/skeleton/package.json +++ b/packages/components/skeleton/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/skeleton", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Skeleton is used to display the loading state of some component.", "keywords": [ "skeleton" diff --git a/packages/components/slider/CHANGELOG.md b/packages/components/slider/CHANGELOG.md index 786bd12356..bd8cb67722 100644 --- a/packages/components/slider/CHANGELOG.md +++ b/packages/components/slider/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/slider +## 2.3.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/tooltip@2.1.0-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.3.0-beta.3 ### Patch Changes diff --git a/packages/components/slider/package.json b/packages/components/slider/package.json index cd1f0a7653..7b5e2ec1c6 100644 --- a/packages/components/slider/package.json +++ b/packages/components/slider/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/slider", - "version": "2.3.0-beta.3", + "version": "2.3.0-beta.4", "description": "A slider allows a user to select one or more values within a range.", "keywords": [ "slider" diff --git a/packages/components/snippet/CHANGELOG.md b/packages/components/snippet/CHANGELOG.md index 0cd16546eb..2cae11af4d 100644 --- a/packages/components/snippet/CHANGELOG.md +++ b/packages/components/snippet/CHANGELOG.md @@ -1,5 +1,15 @@ # @nextui-org/snippet +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/button@2.1.0-beta.4 + - @nextui-org/tooltip@2.1.0-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/snippet/package.json b/packages/components/snippet/package.json index 634702ab15..e451d87d7d 100644 --- a/packages/components/snippet/package.json +++ b/packages/components/snippet/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/snippet", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Display a snippet of copyable code for the command line.", "keywords": [ "snippet" diff --git a/packages/components/spacer/CHANGELOG.md b/packages/components/spacer/CHANGELOG.md index c400313195..011503f290 100644 --- a/packages/components/spacer/CHANGELOG.md +++ b/packages/components/spacer/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/spacer +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/system-rsc@2.2.0-beta.3 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/spacer/package.json b/packages/components/spacer/package.json index 10ef167be0..1ff6bafd2b 100644 --- a/packages/components/spacer/package.json +++ b/packages/components/spacer/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/spacer", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "A flexible spacer component designed to create consistent spacing and maintain alignment in your layout.", "keywords": [ "spacer" diff --git a/packages/components/spinner/CHANGELOG.md b/packages/components/spinner/CHANGELOG.md index f35ab39b34..6e0851dd96 100644 --- a/packages/components/spinner/CHANGELOG.md +++ b/packages/components/spinner/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/spinner +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/system-rsc@2.2.0-beta.3 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/spinner/package.json b/packages/components/spinner/package.json index fb3fa7c99d..4b33af252a 100644 --- a/packages/components/spinner/package.json +++ b/packages/components/spinner/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/spinner", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Loaders express an unspecified wait time or display the length of a process.", "keywords": [ "loading", diff --git a/packages/components/switch/CHANGELOG.md b/packages/components/switch/CHANGELOG.md index e97360330a..5a8935c77b 100644 --- a/packages/components/switch/CHANGELOG.md +++ b/packages/components/switch/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/switch +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/switch/package.json b/packages/components/switch/package.json index bed2703fa8..494649afe9 100644 --- a/packages/components/switch/package.json +++ b/packages/components/switch/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/switch", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "A switch is similar to a checkbox, but represents on/off values as opposed to selection.", "keywords": [ "switch" diff --git a/packages/components/table/CHANGELOG.md b/packages/components/table/CHANGELOG.md index eb05d42d73..54adf5bdeb 100644 --- a/packages/components/table/CHANGELOG.md +++ b/packages/components/table/CHANGELOG.md @@ -1,5 +1,15 @@ # @nextui-org/table +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/checkbox@2.2.0-beta.4 + - @nextui-org/spacer@2.1.0-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/table/package.json b/packages/components/table/package.json index b0d93c04b5..7a7be79dd5 100644 --- a/packages/components/table/package.json +++ b/packages/components/table/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/table", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Tables are used to display tabular data using rows and columns. ", "keywords": [ "table" diff --git a/packages/components/tabs/CHANGELOG.md b/packages/components/tabs/CHANGELOG.md index d0b619b2e8..71a808c16d 100644 --- a/packages/components/tabs/CHANGELOG.md +++ b/packages/components/tabs/CHANGELOG.md @@ -1,5 +1,17 @@ # @nextui-org/tabs +## 2.1.0-beta.4 + +### Patch Changes + +- [#4039](https://github.com/nextui-org/nextui/pull/4039) [`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7) Thanks [@wingkwong](https://github.com/wingkwong)! - support inert value with boolean type for react 19 (#4038) + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/aria-utils@2.1.0-beta.4 + - @nextui-org/framer-utils@2.0.26-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/tabs/package.json b/packages/components/tabs/package.json index 28bbd83665..b62d2708a2 100644 --- a/packages/components/tabs/package.json +++ b/packages/components/tabs/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/tabs", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "Tabs organize content into multiple sections and allow users to navigate between them.", "keywords": [ "tabs" diff --git a/packages/components/tooltip/CHANGELOG.md b/packages/components/tooltip/CHANGELOG.md index f2d1faac7e..e7ff70c220 100644 --- a/packages/components/tooltip/CHANGELOG.md +++ b/packages/components/tooltip/CHANGELOG.md @@ -1,5 +1,15 @@ # @nextui-org/tooltip +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/aria-utils@2.1.0-beta.4 + - @nextui-org/framer-utils@2.0.26-beta.4 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/components/tooltip/package.json b/packages/components/tooltip/package.json index d1a1ee4f1a..f9703979df 100644 --- a/packages/components/tooltip/package.json +++ b/packages/components/tooltip/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/tooltip", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "A React Component for rendering dynamically positioned Tooltips", "keywords": [ "tooltip" diff --git a/packages/components/user/CHANGELOG.md b/packages/components/user/CHANGELOG.md index c31b9dafcc..55e134604b 100644 --- a/packages/components/user/CHANGELOG.md +++ b/packages/components/user/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/user +## 2.1.0-beta.7 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/avatar@2.1.0-beta.7 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.1.0-beta.6 ### Patch Changes diff --git a/packages/components/user/package.json b/packages/components/user/package.json index 5eeb3d2db7..15f0d42da8 100644 --- a/packages/components/user/package.json +++ b/packages/components/user/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/user", - "version": "2.1.0-beta.6", + "version": "2.1.0-beta.7", "description": "Flexible User Profile Component.", "keywords": [ "user" diff --git a/packages/core/react/CHANGELOG.md b/packages/core/react/CHANGELOG.md index 15364a4b22..a1bae1de7a 100644 --- a/packages/core/react/CHANGELOG.md +++ b/packages/core/react/CHANGELOG.md @@ -1,5 +1,56 @@ # @nextui-org/react +## 2.5.0-beta.9 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/calendar@2.1.0-beta.4 + - @nextui-org/tabs@2.1.0-beta.4 + - @nextui-org/date-picker@2.2.0-beta.5 + - @nextui-org/accordion@2.1.0-beta.4 + - @nextui-org/alert@2.1.0-beta.4 + - @nextui-org/autocomplete@2.2.0-beta.6 + - @nextui-org/avatar@2.1.0-beta.7 + - @nextui-org/badge@2.1.0-beta.4 + - @nextui-org/breadcrumbs@2.1.0-beta.4 + - @nextui-org/button@2.1.0-beta.4 + - @nextui-org/card@2.1.0-beta.4 + - @nextui-org/checkbox@2.2.0-beta.4 + - @nextui-org/chip@2.1.0-beta.4 + - @nextui-org/code@2.1.0-beta.4 + - @nextui-org/date-input@2.2.0-beta.4 + - @nextui-org/divider@2.1.0-beta.4 + - @nextui-org/drawer@2.1.0-beta.4 + - @nextui-org/dropdown@2.2.0-beta.5 + - @nextui-org/image@2.1.0-beta.7 + - @nextui-org/input@2.3.0-beta.5 + - @nextui-org/kbd@2.1.0-beta.4 + - @nextui-org/link@2.1.0-beta.4 + - @nextui-org/listbox@2.2.0-beta.4 + - @nextui-org/menu@2.1.0-beta.4 + - @nextui-org/modal@2.1.0-beta.4 + - @nextui-org/navbar@2.1.0-beta.4 + - @nextui-org/pagination@2.1.0-beta.4 + - @nextui-org/popover@2.2.0-beta.5 + - @nextui-org/progress@2.1.0-beta.4 + - @nextui-org/radio@2.2.0-beta.4 + - @nextui-org/ripple@2.1.0-beta.4 + - @nextui-org/scroll-shadow@2.2.0-beta.4 + - @nextui-org/select@2.3.0-beta.6 + - @nextui-org/skeleton@2.1.0-beta.4 + - @nextui-org/slider@2.3.0-beta.4 + - @nextui-org/snippet@2.1.0-beta.4 + - @nextui-org/spacer@2.1.0-beta.4 + - @nextui-org/spinner@2.1.0-beta.4 + - @nextui-org/switch@2.1.0-beta.4 + - @nextui-org/table@2.1.0-beta.4 + - @nextui-org/tooltip@2.1.0-beta.4 + - @nextui-org/user@2.1.0-beta.7 + - @nextui-org/theme@2.3.0-beta.5 + - @nextui-org/framer-utils@2.0.26-beta.4 + - @nextui-org/system@2.3.0-beta.4 + ## 2.5.0-beta.8 ### Patch Changes diff --git a/packages/core/react/package.json b/packages/core/react/package.json index 72f6293ba8..1024eeb0f0 100644 --- a/packages/core/react/package.json +++ b/packages/core/react/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/react", - "version": "2.5.0-beta.8", + "version": "2.5.0-beta.9", "description": "๐Ÿš€ Beautiful and modern React UI library.", "author": "Junior Garcia ", "homepage": "https://nextui.org", diff --git a/packages/core/system/CHANGELOG.md b/packages/core/system/CHANGELOG.md index 47e9e0aae6..41afeff0f8 100644 --- a/packages/core/system/CHANGELOG.md +++ b/packages/core/system/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/system +## 2.3.0-beta.4 + +### Patch Changes + +- Updated dependencies []: + - @nextui-org/system-rsc@2.2.0-beta.3 + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.3.0-beta.3 ### Patch Changes diff --git a/packages/core/system/package.json b/packages/core/system/package.json index 1bacd471db..498b3dff99 100644 --- a/packages/core/system/package.json +++ b/packages/core/system/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/system", - "version": "2.3.0-beta.3", + "version": "2.3.0-beta.4", "description": "NextUI system primitives", "keywords": [ "system" diff --git a/packages/core/theme/CHANGELOG.md b/packages/core/theme/CHANGELOG.md index 4af7ef545f..2cdc1a62f8 100644 --- a/packages/core/theme/CHANGELOG.md +++ b/packages/core/theme/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/theme +## 2.3.0-beta.5 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + ## 2.3.0-beta.4 ### Patch Changes diff --git a/packages/core/theme/package.json b/packages/core/theme/package.json index 381563ffac..1e2536272f 100644 --- a/packages/core/theme/package.json +++ b/packages/core/theme/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/theme", - "version": "2.3.0-beta.4", + "version": "2.3.0-beta.5", "description": "The default theme for NextUI components", "keywords": [ "theme", diff --git a/packages/hooks/use-data-scroll-overflow/CHANGELOG.md b/packages/hooks/use-data-scroll-overflow/CHANGELOG.md index 2b08c7659f..1ddc69b46c 100644 --- a/packages/hooks/use-data-scroll-overflow/CHANGELOG.md +++ b/packages/hooks/use-data-scroll-overflow/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/use-data-scroll-overflow +## 2.1.8-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + ## 2.1.8-beta.3 ### Patch Changes diff --git a/packages/hooks/use-data-scroll-overflow/package.json b/packages/hooks/use-data-scroll-overflow/package.json index 2f77c6c6a4..92a8790fde 100644 --- a/packages/hooks/use-data-scroll-overflow/package.json +++ b/packages/hooks/use-data-scroll-overflow/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-data-scroll-overflow", - "version": "2.1.8-beta.3", + "version": "2.1.8-beta.4", "description": "A hook to add data attributes when the element has top or bottom scroll.", "keywords": [ "use-data-scroll-overflow" diff --git a/packages/hooks/use-infinite-scroll/CHANGELOG.md b/packages/hooks/use-infinite-scroll/CHANGELOG.md index f2f57ddbc1..9a5c97e1b1 100644 --- a/packages/hooks/use-infinite-scroll/CHANGELOG.md +++ b/packages/hooks/use-infinite-scroll/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/use-infinite-scroll +## 2.1.6-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + ## 2.1.6-beta.3 ### Patch Changes diff --git a/packages/hooks/use-infinite-scroll/package.json b/packages/hooks/use-infinite-scroll/package.json index becee7c6d2..194d35ba2f 100644 --- a/packages/hooks/use-infinite-scroll/package.json +++ b/packages/hooks/use-infinite-scroll/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-infinite-scroll", - "version": "2.1.6-beta.3", + "version": "2.1.6-beta.4", "description": "A hook for handling infinite scroll based on the IntersectionObserver API", "keywords": [ "use-infinite-scroll" diff --git a/packages/hooks/use-pagination/CHANGELOG.md b/packages/hooks/use-pagination/CHANGELOG.md index 144d9fa9d0..eb36de7027 100644 --- a/packages/hooks/use-pagination/CHANGELOG.md +++ b/packages/hooks/use-pagination/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/use-pagination +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/hooks/use-pagination/package.json b/packages/hooks/use-pagination/package.json index 6e94b8e155..aada59b64e 100644 --- a/packages/hooks/use-pagination/package.json +++ b/packages/hooks/use-pagination/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-pagination", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "State management hook for Pagination component, it lets you manage pagination with controlled and uncontrolled state", "keywords": [ "use-pagination" diff --git a/packages/hooks/use-real-shape/CHANGELOG.md b/packages/hooks/use-real-shape/CHANGELOG.md index c016cb0242..2dcbcba2ea 100644 --- a/packages/hooks/use-real-shape/CHANGELOG.md +++ b/packages/hooks/use-real-shape/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/use-real-shape +## 2.0.18-beta.4 + +### Patch Changes + +- Updated dependencies []: + - @nextui-org/react-utils@2.0.18-beta.4 + ## 2.0.18-beta.3 ### Patch Changes diff --git a/packages/hooks/use-real-shape/package.json b/packages/hooks/use-real-shape/package.json index 616a20337d..8f7eb2ba89 100644 --- a/packages/hooks/use-real-shape/package.json +++ b/packages/hooks/use-real-shape/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/use-real-shape", - "version": "2.0.18-beta.3", + "version": "2.0.18-beta.4", "description": "Hook that returns the real dimensions of an element", "keywords": [ "use-real-shape" diff --git a/packages/utilities/aria-utils/CHANGELOG.md b/packages/utilities/aria-utils/CHANGELOG.md index af6197eb16..c530c46742 100644 --- a/packages/utilities/aria-utils/CHANGELOG.md +++ b/packages/utilities/aria-utils/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/aria-utils +## 2.1.0-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/system@2.3.0-beta.4 + ## 2.1.0-beta.3 ### Patch Changes diff --git a/packages/utilities/aria-utils/package.json b/packages/utilities/aria-utils/package.json index ea1bdc5c5c..4116fb3c81 100644 --- a/packages/utilities/aria-utils/package.json +++ b/packages/utilities/aria-utils/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/aria-utils", - "version": "2.1.0-beta.3", + "version": "2.1.0-beta.4", "description": "A package for managing @react-aria nextui utils.", "keywords": [ "aria-utils" diff --git a/packages/utilities/framer-utils/CHANGELOG.md b/packages/utilities/framer-utils/CHANGELOG.md index 84cd55b9d3..dd99443df6 100644 --- a/packages/utilities/framer-utils/CHANGELOG.md +++ b/packages/utilities/framer-utils/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/framer-utils +## 2.0.26-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + - @nextui-org/system@2.3.0-beta.4 + ## 2.0.26-beta.3 ### Patch Changes diff --git a/packages/utilities/framer-utils/package.json b/packages/utilities/framer-utils/package.json index 0870d14241..5419e93d1f 100644 --- a/packages/utilities/framer-utils/package.json +++ b/packages/utilities/framer-utils/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/framer-utils", - "version": "2.0.26-beta.3", + "version": "2.0.26-beta.4", "description": "A set of framer motion transitions for react", "keywords": [ "framer-utils" diff --git a/packages/utilities/react-utils/CHANGELOG.md b/packages/utilities/react-utils/CHANGELOG.md index cb5e455b10..42b411dbae 100644 --- a/packages/utilities/react-utils/CHANGELOG.md +++ b/packages/utilities/react-utils/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/react-utils +## 2.0.18-beta.4 + +### Patch Changes + +- Updated dependencies [[`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7)]: + - @nextui-org/shared-utils@2.0.9-beta.4 + ## 2.0.18-beta.3 ### Patch Changes diff --git a/packages/utilities/react-utils/package.json b/packages/utilities/react-utils/package.json index 57a1c54f42..bcfdb359f9 100644 --- a/packages/utilities/react-utils/package.json +++ b/packages/utilities/react-utils/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/react-utils", - "version": "2.0.18-beta.3", + "version": "2.0.18-beta.4", "description": "A set of utilities for react on client side", "keywords": [ "react-utils" diff --git a/packages/utilities/shared-utils/CHANGELOG.md b/packages/utilities/shared-utils/CHANGELOG.md index aa009e00e8..9f31265d96 100644 --- a/packages/utilities/shared-utils/CHANGELOG.md +++ b/packages/utilities/shared-utils/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/shared-utils +## 2.0.9-beta.4 + +### Patch Changes + +- [#4039](https://github.com/nextui-org/nextui/pull/4039) [`5339b2571`](https://github.com/nextui-org/nextui/commit/5339b2571e6d73ca6efe2acd34d88669419db9f7) Thanks [@wingkwong](https://github.com/wingkwong)! - support inert value with boolean type for react 19 (#4038) + ## 2.0.9-beta.3 ### Patch Changes diff --git a/packages/utilities/shared-utils/package.json b/packages/utilities/shared-utils/package.json index ec1bc02960..b8998b2720 100644 --- a/packages/utilities/shared-utils/package.json +++ b/packages/utilities/shared-utils/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/shared-utils", - "version": "2.0.9-beta.3", + "version": "2.0.9-beta.4", "description": "A set of NextUI utilities", "keywords": [ "system" From 0f55c491b73da8944f9b38f2ad7486d1b89f8b7a Mon Sep 17 00:00:00 2001 From: Junior Garcia Date: Thu, 14 Nov 2024 16:59:59 -0300 Subject: [PATCH 03/28] feat: alert design improved (#4054) --- .changeset/selfish-baboons-know.md | 7 + apps/docs/config/routes.json | 2 +- apps/docs/content/docs/components/alert.mdx | 4 +- packages/components/alert/src/alert.tsx | 5 +- packages/components/alert/src/use-alert.ts | 8 + .../alert/stories/alert.stories.tsx | 2 +- packages/core/theme/src/components/alert.ts | 143 +++++++++++++++--- .../utilities/shared-icons/src/warning.tsx | 7 +- 8 files changed, 156 insertions(+), 22 deletions(-) create mode 100644 .changeset/selfish-baboons-know.md diff --git a/.changeset/selfish-baboons-know.md b/.changeset/selfish-baboons-know.md new file mode 100644 index 0000000000..38ceb57b9c --- /dev/null +++ b/.changeset/selfish-baboons-know.md @@ -0,0 +1,7 @@ +--- +"@nextui-org/alert": patch +"@nextui-org/theme": patch +"@nextui-org/shared-icons": patch +--- + +Alert design improved diff --git a/apps/docs/config/routes.json b/apps/docs/config/routes.json index 1d5500f469..5f4f00f72b 100644 --- a/apps/docs/config/routes.json +++ b/apps/docs/config/routes.json @@ -150,7 +150,7 @@ "title": "Alert", "keywords": "alert, notification, message", "path": "/docs/components/alert.mdx", - "isNew": true + "newPost": true }, { "key": "avatar", diff --git a/apps/docs/content/docs/components/alert.mdx b/apps/docs/content/docs/components/alert.mdx index 15f49b31c9..3d2b30bc8f 100644 --- a/apps/docs/content/docs/components/alert.mdx +++ b/apps/docs/content/docs/components/alert.mdx @@ -110,10 +110,12 @@ Alert has the following attributes on the `base` element: | icon | `ReactNode` | The alert icon - overrides the default icon | - | | description | `ReactNode` | The alert description | - | | color | `default` \| `primary` \| `secondary` \| `success` \| `warning` \| `danger` | The alert color theme | `default` | -| variant | `solid` \| `bordered` \| `flat` | The alert variant | `flat` | +| variant | `solid` \| `bordered` \| `flat` \| `faded` | The alert variant | `flat` | | radius | `none` \| `sm` \| `md` \| `lg` \| `full` | The alert border radius | `md` | | isVisible | `boolean` | Whether the alert is visible | - | | isClosable | `boolean` | Whether the alert can be closed | `false` | +| hideIcon | `boolean` | Whether the icon is hidden | `false` | +| hideIconWrapper | `boolean` | Whether the icon wrapper is hidden | `false` | | closeButtonProps | `ButtonProps` | Props for the close button | - | ### Alert Events diff --git a/packages/components/alert/src/alert.tsx b/packages/components/alert/src/alert.tsx index 3cac310475..d6460aa45d 100644 --- a/packages/components/alert/src/alert.tsx +++ b/packages/components/alert/src/alert.tsx @@ -45,6 +45,7 @@ const Alert = forwardRef<"div", AlertProps>((props, ref) => { isVisible, onClose, getAlertIconProps, + getIconWrapperProps, } = useAlert({...props, ref}); if (!isVisible) return null; @@ -55,7 +56,9 @@ const Alert = forwardRef<"div", AlertProps>((props, ref) => { return (
- {customIcon || } +
+ {customIcon || } +
{title &&
{title}
} {!isEmpty(description) &&
{description}
} diff --git a/packages/components/alert/src/use-alert.ts b/packages/components/alert/src/use-alert.ts index 290c4b99c2..8e75163770 100644 --- a/packages/components/alert/src/use-alert.ts +++ b/packages/components/alert/src/use-alert.ts @@ -168,6 +168,13 @@ export function useAlert(originalProps: UseAlertProps) { [slots, classNames?.alertIcon], ); + const getIconWrapperProps = useCallback( + () => ({ + className: slots.iconWrapper({class: classNames?.iconWrapper}), + }), + [slots, classNames?.iconWrapper], + ); + return { title, icon, @@ -184,5 +191,6 @@ export function useAlert(originalProps: UseAlertProps) { isVisible, onClose, getAlertIconProps, + getIconWrapperProps, }; } diff --git a/packages/components/alert/stories/alert.stories.tsx b/packages/components/alert/stories/alert.stories.tsx index 8e2daebcf5..8392066927 100644 --- a/packages/components/alert/stories/alert.stories.tsx +++ b/packages/components/alert/stories/alert.stories.tsx @@ -19,7 +19,7 @@ export default { control: { type: "select", }, - options: ["solid", "flat", "bordered"], + options: ["solid", "flat", "bordered", "faded"], }, radius: { control: { diff --git a/packages/core/theme/src/components/alert.ts b/packages/core/theme/src/components/alert.ts index c7713f9729..3af4e45dfd 100644 --- a/packages/core/theme/src/components/alert.ts +++ b/packages/core/theme/src/components/alert.ts @@ -24,13 +24,12 @@ import {colorVariants} from "../utils"; */ const alert = tv({ slots: { - base: "flex flex-row w-full flex-grow min-h-17 max-h-full py-3 px-4", - mainWrapper: [ - "flex-grow min-h-11 max-h-full ms-2 flex flex-col box-border items-start text-inherit", - ], - title: "w-full text-medium font-normal block min-h-6 max-h-full text-inherit", - description: "text-small font-normal min-h-5 max-h-full text-inherit", + base: "flex flex-grow flex-row w-full items-start py-3 px-4 gap-x-1", + mainWrapper: "h-full flex-grow min-h-10 ms-2 flex flex-col box-border items-start text-inherit", + title: "w-full font-medium block text-inherit leading-5", + description: "pl-[1px] text-small font-normal text-inherit", closeButton: "relative text-inherit", + iconWrapper: "flex items-center justify-center w-9 h-9 rounded-full", alertIcon: "fill-current w-6", }, variants: { @@ -45,8 +44,11 @@ const alert = tv({ variant: { solid: {}, flat: {}, + faded: { + base: "border-small", + }, bordered: { - base: "border-medium bg-transparent", + base: "border-small bg-transparent", }, }, radius: { @@ -66,10 +68,18 @@ const alert = tv({ base: "rounded-full", }, }, - hasDescription: { + hideIcon: { + true: { + iconWrapper: "hidden", + }, + }, + hideIconWrapper: { true: { - alertIcon: "mt-0.5", + base: "gap-x-0", + iconWrapper: "!bg-transparent !shadow-none", }, + }, + hasDescription: { false: { base: "items-center", mainWrapper: "justify-center", @@ -80,6 +90,8 @@ const alert = tv({ color: "default", variant: "flat", radius: "md", + hideIcon: false, + hideIconWrapper: false, }, compoundVariants: [ // solid / color @@ -127,58 +139,105 @@ const alert = tv({ base: colorVariants.solid.danger, }, }, - // flat / color { - variant: "flat", + variant: ["flat", "faded"], color: "default", class: { base: [colorVariants.flat.default, "text-default-foreground"], description: "text-default-600", closeButton: "text-default-400", + iconWrapper: "bg-default-50 dark:bg-default-100", }, }, { - variant: "flat", + variant: ["flat", "faded"], color: "primary", class: { base: colorVariants.flat.primary, closeButton: "text-primary-400 data-[hover]:bg-primary-100", + iconWrapper: "bg-primary-50 dark:bg-primary-100", }, }, { - variant: "flat", + variant: ["flat", "faded"], color: "secondary", class: { base: colorVariants.flat.secondary, closeButton: "text-secondary-400 data-[hover]:bg-secondary-100", + iconWrapper: "bg-secondary-50 dark:bg-secondary-100", }, }, { - variant: "flat", + variant: ["flat", "faded"], color: "success", class: { base: colorVariants.flat.success, closeButton: "text-success-400 data-[hover]:bg-success-100", + iconWrapper: "bg-success-50 dark:bg-success-100", }, }, { - variant: "flat", + variant: ["flat", "faded"], color: "warning", class: { base: colorVariants.flat.warning, closeButton: "text-warning-500 data-[hover]:bg-warning-200", + iconWrapper: "bg-warning-50 dark:bg-warning-100", }, }, { - variant: "flat", + variant: ["flat", "faded"], color: "danger", class: { base: colorVariants.flat.danger, closeButton: "text-danger-400 data-[hover]:bg-danger-100", + iconWrapper: "bg-danger-50 dark:bg-danger-100", + }, + }, + // faded / color + { + variant: "faded", + color: "default", + class: { + base: "border-default", + }, + }, + { + variant: "faded", + color: "primary", + class: { + base: "border-primary", + }, + }, + { + variant: "faded", + color: "secondary", + class: { + base: "border-secondary", + }, + }, + { + variant: "faded", + color: "success", + class: { + base: "border-success", + }, + }, + { + variant: "faded", + color: "warning", + class: { + base: "border-warning", + }, + }, + { + variant: "faded", + color: "danger", + class: { + base: "border-danger", }, }, - // bordered / color { variant: "bordered", @@ -229,6 +288,56 @@ const alert = tv({ closeButton: "data-[hover]:bg-danger-50", }, }, + // flat & bordered + { + variant: ["flat", "bordered", "faded"], + class: { + iconWrapper: "shadow-small", + }, + }, + // bordered & color + { + variant: "bordered", + color: "default", + class: { + iconWrapper: "bg-default-200 dark:bg-default-100", + }, + }, + { + variant: "bordered", + color: "primary", + class: { + iconWrapper: "bg-primary-100 dark:bg-primary-50", + }, + }, + { + variant: "bordered", + color: "secondary", + class: { + iconWrapper: "bg-secondary-100 dark:bg-secondary-50", + }, + }, + { + variant: "bordered", + color: "success", + class: { + iconWrapper: "bg-success-100 dark:bg-success-50", + }, + }, + { + variant: "bordered", + color: "warning", + class: { + iconWrapper: "bg-warning-100 dark:bg-warning-50", + }, + }, + { + variant: "bordered", + color: "danger", + class: { + iconWrapper: "bg-danger-100 dark:bg-danger-50", + }, + }, ], }); diff --git a/packages/utilities/shared-icons/src/warning.tsx b/packages/utilities/shared-icons/src/warning.tsx index a647c6b04e..fd4d4d3133 100644 --- a/packages/utilities/shared-icons/src/warning.tsx +++ b/packages/utilities/shared-icons/src/warning.tsx @@ -14,7 +14,12 @@ export const WarningIcon = ( xmlns="http://www.w3.org/2000/svg" {...props} > - + ); }; From 08f1f1ed82232fb5a65375170299cde189e6f6ae Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 17:02:07 -0300 Subject: [PATCH 04/28] ci(changesets): version packages (beta) (#4056) Co-authored-by: github-actions[bot] --- .changeset/pre.json | 1 + packages/components/accordion/CHANGELOG.md | 8 +++ packages/components/accordion/package.json | 2 +- packages/components/alert/CHANGELOG.md | 10 ++++ packages/components/alert/package.json | 2 +- packages/components/autocomplete/CHANGELOG.md | 13 +++++ packages/components/autocomplete/package.json | 2 +- packages/components/breadcrumbs/CHANGELOG.md | 7 +++ packages/components/breadcrumbs/package.json | 2 +- packages/components/calendar/CHANGELOG.md | 8 +++ packages/components/calendar/package.json | 2 +- packages/components/chip/CHANGELOG.md | 7 +++ packages/components/chip/package.json | 2 +- packages/components/date-picker/CHANGELOG.md | 11 +++++ packages/components/date-picker/package.json | 2 +- packages/components/drawer/CHANGELOG.md | 7 +++ packages/components/drawer/package.json | 2 +- packages/components/input/CHANGELOG.md | 7 +++ packages/components/input/package.json | 2 +- packages/components/link/CHANGELOG.md | 7 +++ packages/components/link/package.json | 2 +- packages/components/modal/CHANGELOG.md | 7 +++ packages/components/modal/package.json | 2 +- packages/components/pagination/CHANGELOG.md | 7 +++ packages/components/pagination/package.json | 2 +- packages/components/select/CHANGELOG.md | 11 +++++ packages/components/select/package.json | 2 +- packages/components/snippet/CHANGELOG.md | 9 ++++ packages/components/snippet/package.json | 2 +- packages/components/table/CHANGELOG.md | 9 ++++ packages/components/table/package.json | 2 +- packages/core/react/CHANGELOG.md | 49 +++++++++++++++++++ packages/core/react/package.json | 2 +- packages/core/theme/CHANGELOG.md | 6 +++ packages/core/theme/package.json | 2 +- packages/utilities/shared-icons/CHANGELOG.md | 6 +++ packages/utilities/shared-icons/package.json | 2 +- 37 files changed, 208 insertions(+), 18 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 9c467f4272..bb31710ae2 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -116,6 +116,7 @@ "popular-pigs-begin", "quick-geckos-punch", "red-camels-build", + "selfish-baboons-know", "shy-mails-live", "silly-candles-wonder", "slimy-cats-brush", diff --git a/packages/components/accordion/CHANGELOG.md b/packages/components/accordion/CHANGELOG.md index eb4d4c9bdd..8c4e11a244 100644 --- a/packages/components/accordion/CHANGELOG.md +++ b/packages/components/accordion/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/accordion +## 2.1.0-beta.5 + +### Patch Changes + +- Updated dependencies [[`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a)]: + - @nextui-org/shared-icons@2.0.10-beta.3 + - @nextui-org/divider@2.1.0-beta.4 + ## 2.1.0-beta.4 ### Patch Changes diff --git a/packages/components/accordion/package.json b/packages/components/accordion/package.json index 409d2c4b35..ae81b70c7a 100644 --- a/packages/components/accordion/package.json +++ b/packages/components/accordion/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/accordion", - "version": "2.1.0-beta.4", + "version": "2.1.0-beta.5", "description": "Collapse display a list of high-level options that can expand/collapse to reveal more information.", "keywords": [ "react", diff --git a/packages/components/alert/CHANGELOG.md b/packages/components/alert/CHANGELOG.md index 8b95ecabe6..024a780db5 100644 --- a/packages/components/alert/CHANGELOG.md +++ b/packages/components/alert/CHANGELOG.md @@ -1,5 +1,15 @@ # @nextui-org/alert +## 2.1.0-beta.5 + +### Patch Changes + +- [#4054](https://github.com/nextui-org/nextui/pull/4054) [`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Alert design improved + +- Updated dependencies [[`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a)]: + - @nextui-org/shared-icons@2.0.10-beta.3 + - @nextui-org/button@2.1.0-beta.4 + ## 2.1.0-beta.4 ### Patch Changes diff --git a/packages/components/alert/package.json b/packages/components/alert/package.json index b6363f79dc..7dec7b453c 100644 --- a/packages/components/alert/package.json +++ b/packages/components/alert/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/alert", - "version": "2.1.0-beta.4", + "version": "2.1.0-beta.5", "description": "Alerts are temporary notifications that provide concise feedback about an action or event.", "keywords": [ "alert" diff --git a/packages/components/autocomplete/CHANGELOG.md b/packages/components/autocomplete/CHANGELOG.md index cfb82873f0..62df5e1bfc 100644 --- a/packages/components/autocomplete/CHANGELOG.md +++ b/packages/components/autocomplete/CHANGELOG.md @@ -1,5 +1,18 @@ # @nextui-org/autocomplete +## 2.2.0-beta.7 + +### Patch Changes + +- Updated dependencies [[`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a)]: + - @nextui-org/shared-icons@2.0.10-beta.3 + - @nextui-org/button@2.1.0-beta.4 + - @nextui-org/input@2.3.0-beta.6 + - @nextui-org/listbox@2.2.0-beta.4 + - @nextui-org/popover@2.2.0-beta.5 + - @nextui-org/scroll-shadow@2.2.0-beta.4 + - @nextui-org/spinner@2.1.0-beta.4 + ## 2.2.0-beta.6 ### Patch Changes diff --git a/packages/components/autocomplete/package.json b/packages/components/autocomplete/package.json index 0885bb64f9..d51d55a446 100644 --- a/packages/components/autocomplete/package.json +++ b/packages/components/autocomplete/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/autocomplete", - "version": "2.2.0-beta.6", + "version": "2.2.0-beta.7", "description": "An autocomplete combines a text input with a listbox, allowing users to filter a list of options to items matching a query.", "keywords": [ "autocomplete" diff --git a/packages/components/breadcrumbs/CHANGELOG.md b/packages/components/breadcrumbs/CHANGELOG.md index 73401a9037..88606d4220 100644 --- a/packages/components/breadcrumbs/CHANGELOG.md +++ b/packages/components/breadcrumbs/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/breadcrumbs +## 2.1.0-beta.5 + +### Patch Changes + +- Updated dependencies [[`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a)]: + - @nextui-org/shared-icons@2.0.10-beta.3 + ## 2.1.0-beta.4 ### Patch Changes diff --git a/packages/components/breadcrumbs/package.json b/packages/components/breadcrumbs/package.json index 08337b3e4a..8ad3d467ed 100644 --- a/packages/components/breadcrumbs/package.json +++ b/packages/components/breadcrumbs/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/breadcrumbs", - "version": "2.1.0-beta.4", + "version": "2.1.0-beta.5", "description": "Breadcrumbs display a hierarchy of links to the current page or resource in an application.", "keywords": [ "breadcrumbs" diff --git a/packages/components/calendar/CHANGELOG.md b/packages/components/calendar/CHANGELOG.md index cd5022ccf5..6bb5013231 100644 --- a/packages/components/calendar/CHANGELOG.md +++ b/packages/components/calendar/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/calendar +## 2.1.0-beta.5 + +### Patch Changes + +- Updated dependencies [[`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a)]: + - @nextui-org/shared-icons@2.0.10-beta.3 + - @nextui-org/button@2.1.0-beta.4 + ## 2.1.0-beta.4 ### Patch Changes diff --git a/packages/components/calendar/package.json b/packages/components/calendar/package.json index 6aef4652f5..efe43039da 100644 --- a/packages/components/calendar/package.json +++ b/packages/components/calendar/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/calendar", - "version": "2.1.0-beta.4", + "version": "2.1.0-beta.5", "description": "A calendar displays one or more date grids and allows users to select a single date.", "keywords": [ "calendar" diff --git a/packages/components/chip/CHANGELOG.md b/packages/components/chip/CHANGELOG.md index 328c02fa19..7976b790d8 100644 --- a/packages/components/chip/CHANGELOG.md +++ b/packages/components/chip/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/chip +## 2.1.0-beta.5 + +### Patch Changes + +- Updated dependencies [[`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a)]: + - @nextui-org/shared-icons@2.0.10-beta.3 + ## 2.1.0-beta.4 ### Patch Changes diff --git a/packages/components/chip/package.json b/packages/components/chip/package.json index 67a9fe6961..cb1804cbe5 100644 --- a/packages/components/chip/package.json +++ b/packages/components/chip/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/chip", - "version": "2.1.0-beta.4", + "version": "2.1.0-beta.5", "description": "Chips help people enter information, make selections, filter content, or trigger actions.", "keywords": [ "chip" diff --git a/packages/components/date-picker/CHANGELOG.md b/packages/components/date-picker/CHANGELOG.md index 3cb53b1f9e..55e3653de3 100644 --- a/packages/components/date-picker/CHANGELOG.md +++ b/packages/components/date-picker/CHANGELOG.md @@ -1,5 +1,16 @@ # @nextui-org/date-picker +## 2.2.0-beta.6 + +### Patch Changes + +- Updated dependencies [[`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a)]: + - @nextui-org/shared-icons@2.0.10-beta.3 + - @nextui-org/button@2.1.0-beta.4 + - @nextui-org/calendar@2.1.0-beta.5 + - @nextui-org/date-input@2.2.0-beta.4 + - @nextui-org/popover@2.2.0-beta.5 + ## 2.2.0-beta.5 ### Patch Changes diff --git a/packages/components/date-picker/package.json b/packages/components/date-picker/package.json index 708bc4becc..391008fcfc 100644 --- a/packages/components/date-picker/package.json +++ b/packages/components/date-picker/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/date-picker", - "version": "2.2.0-beta.5", + "version": "2.2.0-beta.6", "description": "A date picker combines a DateInput and a Calendar popover to allow users to enter or select a date and time value.", "keywords": [ "date-picker" diff --git a/packages/components/drawer/CHANGELOG.md b/packages/components/drawer/CHANGELOG.md index 0d05df6387..391d635039 100644 --- a/packages/components/drawer/CHANGELOG.md +++ b/packages/components/drawer/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/drawer +## 2.1.0-beta.5 + +### Patch Changes + +- Updated dependencies []: + - @nextui-org/modal@2.1.0-beta.5 + ## 2.1.0-beta.4 ### Patch Changes diff --git a/packages/components/drawer/package.json b/packages/components/drawer/package.json index 47e169c06f..57719f9c34 100644 --- a/packages/components/drawer/package.json +++ b/packages/components/drawer/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/drawer", - "version": "2.1.0-beta.4", + "version": "2.1.0-beta.5", "description": "Used to render a content that slides in from the side of the screen.", "keywords": [ "drawer" diff --git a/packages/components/input/CHANGELOG.md b/packages/components/input/CHANGELOG.md index 86961c215d..4f2bdd5c64 100644 --- a/packages/components/input/CHANGELOG.md +++ b/packages/components/input/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/input +## 2.3.0-beta.6 + +### Patch Changes + +- Updated dependencies [[`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a)]: + - @nextui-org/shared-icons@2.0.10-beta.3 + ## 2.3.0-beta.5 ### Patch Changes diff --git a/packages/components/input/package.json b/packages/components/input/package.json index 8c06d87eae..79f9c266e0 100644 --- a/packages/components/input/package.json +++ b/packages/components/input/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/input", - "version": "2.3.0-beta.5", + "version": "2.3.0-beta.6", "description": "The input component is designed for capturing user input within a text field.", "keywords": [ "input" diff --git a/packages/components/link/CHANGELOG.md b/packages/components/link/CHANGELOG.md index f79cc0bf8d..0ae76ce3ac 100644 --- a/packages/components/link/CHANGELOG.md +++ b/packages/components/link/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/link +## 2.1.0-beta.5 + +### Patch Changes + +- Updated dependencies [[`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a)]: + - @nextui-org/shared-icons@2.0.10-beta.3 + ## 2.1.0-beta.4 ### Patch Changes diff --git a/packages/components/link/package.json b/packages/components/link/package.json index e2d404d428..f20021ee57 100644 --- a/packages/components/link/package.json +++ b/packages/components/link/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/link", - "version": "2.1.0-beta.4", + "version": "2.1.0-beta.5", "description": "Links allow users to click their way from page to page. This component is styled to resemble a hyperlink and semantically renders an <a>", "keywords": [ "link" diff --git a/packages/components/modal/CHANGELOG.md b/packages/components/modal/CHANGELOG.md index af42a52d31..0e2d9c75bc 100644 --- a/packages/components/modal/CHANGELOG.md +++ b/packages/components/modal/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/modal +## 2.1.0-beta.5 + +### Patch Changes + +- Updated dependencies [[`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a)]: + - @nextui-org/shared-icons@2.0.10-beta.3 + ## 2.1.0-beta.4 ### Patch Changes diff --git a/packages/components/modal/package.json b/packages/components/modal/package.json index 53e1ef186c..2af95970d0 100644 --- a/packages/components/modal/package.json +++ b/packages/components/modal/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/modal", - "version": "2.1.0-beta.4", + "version": "2.1.0-beta.5", "description": "Displays a dialog with a custom content that requires attention or provides additional information.", "keywords": [ "modal" diff --git a/packages/components/pagination/CHANGELOG.md b/packages/components/pagination/CHANGELOG.md index f088833b76..5555818416 100644 --- a/packages/components/pagination/CHANGELOG.md +++ b/packages/components/pagination/CHANGELOG.md @@ -1,5 +1,12 @@ # @nextui-org/pagination +## 2.1.0-beta.5 + +### Patch Changes + +- Updated dependencies [[`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a)]: + - @nextui-org/shared-icons@2.0.10-beta.3 + ## 2.1.0-beta.4 ### Patch Changes diff --git a/packages/components/pagination/package.json b/packages/components/pagination/package.json index 50af075cfb..81e9cb880f 100644 --- a/packages/components/pagination/package.json +++ b/packages/components/pagination/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/pagination", - "version": "2.1.0-beta.4", + "version": "2.1.0-beta.5", "description": "The Pagination component allows you to display active page and navigate between multiple pages.", "keywords": [ "pagination" diff --git a/packages/components/select/CHANGELOG.md b/packages/components/select/CHANGELOG.md index bba7844609..73050d0bcc 100644 --- a/packages/components/select/CHANGELOG.md +++ b/packages/components/select/CHANGELOG.md @@ -1,5 +1,16 @@ # @nextui-org/select +## 2.3.0-beta.7 + +### Patch Changes + +- Updated dependencies [[`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a)]: + - @nextui-org/shared-icons@2.0.10-beta.3 + - @nextui-org/listbox@2.2.0-beta.4 + - @nextui-org/popover@2.2.0-beta.5 + - @nextui-org/scroll-shadow@2.2.0-beta.4 + - @nextui-org/spinner@2.1.0-beta.4 + ## 2.3.0-beta.6 ### Patch Changes diff --git a/packages/components/select/package.json b/packages/components/select/package.json index 7ef91227e5..7e14bb1189 100644 --- a/packages/components/select/package.json +++ b/packages/components/select/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/select", - "version": "2.3.0-beta.6", + "version": "2.3.0-beta.7", "description": "A select displays a collapsible list of options and allows a user to select one of them.", "keywords": [ "select" diff --git a/packages/components/snippet/CHANGELOG.md b/packages/components/snippet/CHANGELOG.md index 2cae11af4d..c338a4c7df 100644 --- a/packages/components/snippet/CHANGELOG.md +++ b/packages/components/snippet/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/snippet +## 2.1.0-beta.5 + +### Patch Changes + +- Updated dependencies [[`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a)]: + - @nextui-org/shared-icons@2.0.10-beta.3 + - @nextui-org/button@2.1.0-beta.4 + - @nextui-org/tooltip@2.1.0-beta.4 + ## 2.1.0-beta.4 ### Patch Changes diff --git a/packages/components/snippet/package.json b/packages/components/snippet/package.json index e451d87d7d..b2cda10082 100644 --- a/packages/components/snippet/package.json +++ b/packages/components/snippet/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/snippet", - "version": "2.1.0-beta.4", + "version": "2.1.0-beta.5", "description": "Display a snippet of copyable code for the command line.", "keywords": [ "snippet" diff --git a/packages/components/table/CHANGELOG.md b/packages/components/table/CHANGELOG.md index 54adf5bdeb..460f70deb6 100644 --- a/packages/components/table/CHANGELOG.md +++ b/packages/components/table/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/table +## 2.1.0-beta.5 + +### Patch Changes + +- Updated dependencies [[`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a)]: + - @nextui-org/shared-icons@2.0.10-beta.3 + - @nextui-org/checkbox@2.2.0-beta.4 + - @nextui-org/spacer@2.1.0-beta.4 + ## 2.1.0-beta.4 ### Patch Changes diff --git a/packages/components/table/package.json b/packages/components/table/package.json index 7a7be79dd5..4fa5fd8c3a 100644 --- a/packages/components/table/package.json +++ b/packages/components/table/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/table", - "version": "2.1.0-beta.4", + "version": "2.1.0-beta.5", "description": "Tables are used to display tabular data using rows and columns. ", "keywords": [ "table" diff --git a/packages/core/react/CHANGELOG.md b/packages/core/react/CHANGELOG.md index a1bae1de7a..574ec70a36 100644 --- a/packages/core/react/CHANGELOG.md +++ b/packages/core/react/CHANGELOG.md @@ -1,5 +1,54 @@ # @nextui-org/react +## 2.5.0-beta.10 + +### Patch Changes + +- Updated dependencies [[`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a)]: + - @nextui-org/alert@2.1.0-beta.5 + - @nextui-org/theme@2.3.0-beta.6 + - @nextui-org/accordion@2.1.0-beta.5 + - @nextui-org/autocomplete@2.2.0-beta.7 + - @nextui-org/avatar@2.1.0-beta.7 + - @nextui-org/badge@2.1.0-beta.4 + - @nextui-org/breadcrumbs@2.1.0-beta.5 + - @nextui-org/button@2.1.0-beta.4 + - @nextui-org/calendar@2.1.0-beta.5 + - @nextui-org/card@2.1.0-beta.4 + - @nextui-org/checkbox@2.2.0-beta.4 + - @nextui-org/chip@2.1.0-beta.5 + - @nextui-org/code@2.1.0-beta.4 + - @nextui-org/date-input@2.2.0-beta.4 + - @nextui-org/date-picker@2.2.0-beta.6 + - @nextui-org/divider@2.1.0-beta.4 + - @nextui-org/drawer@2.1.0-beta.5 + - @nextui-org/dropdown@2.2.0-beta.5 + - @nextui-org/image@2.1.0-beta.7 + - @nextui-org/input@2.3.0-beta.6 + - @nextui-org/kbd@2.1.0-beta.4 + - @nextui-org/link@2.1.0-beta.5 + - @nextui-org/listbox@2.2.0-beta.4 + - @nextui-org/menu@2.1.0-beta.4 + - @nextui-org/modal@2.1.0-beta.5 + - @nextui-org/navbar@2.1.0-beta.4 + - @nextui-org/pagination@2.1.0-beta.5 + - @nextui-org/popover@2.2.0-beta.5 + - @nextui-org/progress@2.1.0-beta.4 + - @nextui-org/radio@2.2.0-beta.4 + - @nextui-org/ripple@2.1.0-beta.4 + - @nextui-org/scroll-shadow@2.2.0-beta.4 + - @nextui-org/select@2.3.0-beta.7 + - @nextui-org/skeleton@2.1.0-beta.4 + - @nextui-org/slider@2.3.0-beta.4 + - @nextui-org/snippet@2.1.0-beta.5 + - @nextui-org/spacer@2.1.0-beta.4 + - @nextui-org/spinner@2.1.0-beta.4 + - @nextui-org/switch@2.1.0-beta.4 + - @nextui-org/table@2.1.0-beta.5 + - @nextui-org/tabs@2.1.0-beta.4 + - @nextui-org/tooltip@2.1.0-beta.4 + - @nextui-org/user@2.1.0-beta.7 + ## 2.5.0-beta.9 ### Patch Changes diff --git a/packages/core/react/package.json b/packages/core/react/package.json index 1024eeb0f0..c4c672f236 100644 --- a/packages/core/react/package.json +++ b/packages/core/react/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/react", - "version": "2.5.0-beta.9", + "version": "2.5.0-beta.10", "description": "๐Ÿš€ Beautiful and modern React UI library.", "author": "Junior Garcia ", "homepage": "https://nextui.org", diff --git a/packages/core/theme/CHANGELOG.md b/packages/core/theme/CHANGELOG.md index 2cdc1a62f8..33fc55001e 100644 --- a/packages/core/theme/CHANGELOG.md +++ b/packages/core/theme/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/theme +## 2.3.0-beta.6 + +### Patch Changes + +- [#4054](https://github.com/nextui-org/nextui/pull/4054) [`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Alert design improved + ## 2.3.0-beta.5 ### Patch Changes diff --git a/packages/core/theme/package.json b/packages/core/theme/package.json index 1e2536272f..49f2f726c9 100644 --- a/packages/core/theme/package.json +++ b/packages/core/theme/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/theme", - "version": "2.3.0-beta.5", + "version": "2.3.0-beta.6", "description": "The default theme for NextUI components", "keywords": [ "theme", diff --git a/packages/utilities/shared-icons/CHANGELOG.md b/packages/utilities/shared-icons/CHANGELOG.md index 9cbb1669c6..8386414cb2 100644 --- a/packages/utilities/shared-icons/CHANGELOG.md +++ b/packages/utilities/shared-icons/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/shared-icons +## 2.0.10-beta.3 + +### Patch Changes + +- [#4054](https://github.com/nextui-org/nextui/pull/4054) [`0f55c491b`](https://github.com/nextui-org/nextui/commit/0f55c491b73da8944f9b38f2ad7486d1b89f8b7a) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Alert design improved + ## 2.0.10-beta.2 ### Patch Changes diff --git a/packages/utilities/shared-icons/package.json b/packages/utilities/shared-icons/package.json index af7864c132..ef82e260d0 100644 --- a/packages/utilities/shared-icons/package.json +++ b/packages/utilities/shared-icons/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/shared-icons", - "version": "2.0.10-beta.2", + "version": "2.0.10-beta.3", "description": "Internal icons set, commonly used in the components stories", "keywords": [ "icons-utils" From d947b92833c8e4abc16dae72466cdb922313e9c8 Mon Sep 17 00:00:00 2001 From: Junior Garcia Date: Thu, 14 Nov 2024 19:31:38 -0300 Subject: [PATCH 05/28] feat: drawer improvements (#4057) --- .changeset/cold-dolls-vanish.md | 6 + .../components/drawer/custom-styles.ts | 337 +++++++++++++++++ apps/docs/content/components/drawer/index.ts | 2 + apps/docs/content/docs/components/drawer.mdx | 4 + packages/components/drawer/package.json | 3 + packages/components/drawer/src/use-drawer.ts | 14 +- .../drawer/stories/drawer.stories.tsx | 339 ++++++++++++++++++ packages/components/modal/src/use-modal.ts | 2 +- pnpm-lock.yaml | 9 + 9 files changed, 707 insertions(+), 9 deletions(-) create mode 100644 .changeset/cold-dolls-vanish.md create mode 100644 apps/docs/content/components/drawer/custom-styles.ts diff --git a/.changeset/cold-dolls-vanish.md b/.changeset/cold-dolls-vanish.md new file mode 100644 index 0000000000..eba5f406b5 --- /dev/null +++ b/.changeset/cold-dolls-vanish.md @@ -0,0 +1,6 @@ +--- +"@nextui-org/drawer": patch +"@nextui-org/modal": patch +--- + +Drawer styles and transition improved diff --git a/apps/docs/content/components/drawer/custom-styles.ts b/apps/docs/content/components/drawer/custom-styles.ts new file mode 100644 index 0000000000..68f5939550 --- /dev/null +++ b/apps/docs/content/components/drawer/custom-styles.ts @@ -0,0 +1,337 @@ +const App = `import {Drawer, DrawerContent, DrawerHeader, DrawerBody, DrawerFooter, Button, useDisclosure, Image, Link, Tooltip, Avatar, AvatarGroup} from "@nextui-org/react"; + +export default function App() { + const {isOpen, onOpen, onOpenChange} = useDisclosure(); + + return ( + <> + + + + {(onClose) => ( + <> + + + + +
+ + +
+
+ + + + + + +
+
+ +
+ Event image +
+
+

SF Bay Area Meetup in November

+

+ 555 California St, San Francisco, CA 94103 +

+
+
+
+
Nov
+
+ 19 +
+
+
+

+ Tuesday, November 19 +

+

5:00 PM - 9:00 PM PST

+
+
+
+
+ + + + + + +
+
+ + + + } + className="group gap-x-0.5 text-medium text-foreground font-medium" + href="https://www.google.com/maps/place/555+California+St,+San+Francisco,+CA+94103" + rel="noreferrer noopener" + > + 555 California St suite 500 + +

San Francisco, California

+
+
+
+ About the event +
+

+ Hey Bay Area! We are excited to announce our next meetup on Tuesday, + November 19th. +

+

+ Join us for an evening of insightful discussions and hands-on workshops + focused on the latest developments in web development and design. Our + featured speakers will share their experiences with modern frontend + frameworks, responsive design patterns, and emerging web technologies. + You'll have the opportunity to network with fellow developers and + designers while enjoying refreshments and snacks. +

+

+ During the main session, we'll dive deep into practical examples of + building scalable applications, exploring best practices for component + architecture, and understanding advanced state management techniques. Our + interactive workshop portion will let you apply these concepts directly, + with experienced mentors available to provide guidance and answer your + questions. Whether you're a seasoned developer or just starting your + journey, you'll find valuable takeaways from this session. +

+ +

+ Brought to you by the{" "} + + NextUI team + + . +

+
+
+
+ Hosted By +
+ + NextUI Team +
+
+
+ 105 Going +
+ + + + + + + + + + + + + + +
+
+
+
+
+ + + Contact the host + + + Report event + + + + )} +
+
+ + ); +}`; + +const react = { + "/App.jsx": App, +}; + +export default { + ...react, +}; diff --git a/apps/docs/content/components/drawer/index.ts b/apps/docs/content/components/drawer/index.ts index e9fa1947c1..d04c3bf31b 100644 --- a/apps/docs/content/components/drawer/index.ts +++ b/apps/docs/content/components/drawer/index.ts @@ -5,6 +5,7 @@ import placement from "./placement"; import form from "./form"; import backdrop from "./backdrop"; import customMotion from "./custom-motion"; +import customStyles from "./custom-styles"; export const drawerContent = { usage, @@ -14,4 +15,5 @@ export const drawerContent = { form, backdrop, customMotion, + customStyles, }; diff --git a/apps/docs/content/docs/components/drawer.mdx b/apps/docs/content/docs/components/drawer.mdx index 464f057588..0b0b5a82bc 100644 --- a/apps/docs/content/docs/components/drawer.mdx +++ b/apps/docs/content/docs/components/drawer.mdx @@ -115,6 +115,10 @@ Drawer offers a `motionProps` property to customize the `enter` / `exit` animati > Learn more about Framer motion variants [here](https://www.framer.com/motion/animation/#variants). +### Custom Styles + + + ## Slots - **wrapper**: The wrapper slot of the drawer. It wraps the `base` and the `backdrop` slots. diff --git a/packages/components/drawer/package.json b/packages/components/drawer/package.json index 57719f9c34..e135064c55 100644 --- a/packages/components/drawer/package.json +++ b/packages/components/drawer/package.json @@ -50,7 +50,10 @@ "@nextui-org/system": "workspace:*", "@nextui-org/input": "workspace:*", "@nextui-org/checkbox": "workspace:*", + "@nextui-org/tooltip": "workspace:*", + "@nextui-org/image": "workspace:*", "@nextui-org/button": "workspace:*", + "@nextui-org/avatar": "workspace:*", "@nextui-org/link": "workspace:*", "@nextui-org/switch": "workspace:*", "@nextui-org/shared-icons": "workspace:*", diff --git a/packages/components/drawer/src/use-drawer.ts b/packages/components/drawer/src/use-drawer.ts index b7d0478816..3a820bb467 100644 --- a/packages/components/drawer/src/use-drawer.ts +++ b/packages/components/drawer/src/use-drawer.ts @@ -4,7 +4,7 @@ import {drawer} from "@nextui-org/theme"; import {ReactRef, useDOMRef} from "@nextui-org/react-utils"; import {useCallback, useMemo} from "react"; import {TRANSITION_EASINGS} from "@nextui-org/framer-utils"; -import {clsx} from "@nextui-org/shared-utils"; +import {clsx, isEmpty} from "@nextui-org/shared-utils"; import {PropGetter} from "@nextui-org/system"; interface Props extends Omit { @@ -39,7 +39,7 @@ export function useDrawer(originalProps: UseDrawerProps) { const domRef = useDOMRef(ref); const motionProps = useMemo(() => { - if (drawerMotionProps !== void 0) return drawerMotionProps; + if (!isEmpty(drawerMotionProps)) return drawerMotionProps; const key = placement === "left" || placement === "right" ? "x" : "y"; @@ -49,9 +49,8 @@ export function useDrawer(originalProps: UseDrawerProps) { [key]: 0, transition: { [key]: { - bounce: 0, - duration: 0.3, - ease: TRANSITION_EASINGS.ease, + duration: 0.2, + ease: TRANSITION_EASINGS.easeOut, }, }, }, @@ -59,9 +58,8 @@ export function useDrawer(originalProps: UseDrawerProps) { [key]: placement === "top" || placement === "left" ? "-100%" : "100%", transition: { [key]: { - bounce: 0, - duration: 0.6, - ease: TRANSITION_EASINGS.ease, + duration: 0.1, + ease: TRANSITION_EASINGS.easeIn, }, }, }, diff --git a/packages/components/drawer/stories/drawer.stories.tsx b/packages/components/drawer/stories/drawer.stories.tsx index 259c2449fc..92be13f41f 100644 --- a/packages/components/drawer/stories/drawer.stories.tsx +++ b/packages/components/drawer/stories/drawer.stories.tsx @@ -6,6 +6,9 @@ import {Button} from "@nextui-org/button"; import {Input} from "@nextui-org/input"; import {Checkbox} from "@nextui-org/checkbox"; import {Link} from "@nextui-org/link"; +import {Tooltip} from "@nextui-org/tooltip"; +import {Image} from "@nextui-org/image"; +import {Avatar, AvatarGroup} from "@nextui-org/avatar"; import {MailFilledIcon, LockFilledIcon} from "@nextui-org/shared-icons"; import {useDisclosure} from "@nextui-org/use-disclosure"; @@ -165,6 +168,335 @@ const PlacementTemplate = (args: DrawerProps) => { ); }; +const CustomStylesTemplate = (args: DrawerProps) => { + const {isOpen, onOpen, onOpenChange} = useDisclosure({defaultOpen: args.defaultOpen}); + + return ( + <> + + + + {(onClose) => ( + <> + + + + +
+ + +
+
+ + + + + + +
+
+ +
+ Event image +
+
+

SF Bay Area Meetup in November

+

+ 555 California St, San Francisco, CA 94103 +

+
+
+
+
Nov
+
+ 19 +
+
+
+

+ Tuesday, November 19 +

+

5:00 PM - 9:00 PM PST

+
+
+
+
+ + + + + + +
+
+ + + + } + className="group gap-x-0.5 text-medium text-foreground font-medium" + href="https://www.google.com/maps/place/555+California+St,+San+Francisco,+CA+94103" + rel="noreferrer noopener" + > + 555 California St suite 500 + +

San Francisco, California

+
+
+
+ About the event +
+

+ Hey Bay Area! We are excited to announce our next meetup on Tuesday, + November 19th. +

+

+ Join us for an evening of insightful discussions and hands-on workshops + focused on the latest developments in web development and design. Our + featured speakers will share their experiences with modern frontend + frameworks, responsive design patterns, and emerging web technologies. + You'll have the opportunity to network with fellow developers and + designers while enjoying refreshments and snacks. +

+

+ During the main session, we'll dive deep into practical examples of + building scalable applications, exploring best practices for component + architecture, and understanding advanced state management techniques. Our + interactive workshop portion will let you apply these concepts directly, + with experienced mentors available to provide guidance and answer your + questions. Whether you're a seasoned developer or just starting your + journey, you'll find valuable takeaways from this session. +

+ +

+ Brought to you by the{" "} + + NextUI team + + . +

+
+
+
+ Hosted By +
+ + NextUI Team +
+
+
+ 105 Going +
+ + + + + + + + + + + + + + +
+
+
+
+
+ + + Contact the host + + + Report event + + + + )} +
+
+ + ); +}; + export const Default = { render: Template, args: { @@ -216,3 +548,10 @@ export const CustomMotion = { }, }, }; + +export const CustomStyles = { + render: CustomStylesTemplate, + args: { + ...defaultProps, + }, +}; diff --git a/packages/components/modal/src/use-modal.ts b/packages/components/modal/src/use-modal.ts index 66b6f7be63..9e041ce54d 100644 --- a/packages/components/modal/src/use-modal.ts +++ b/packages/components/modal/src/use-modal.ts @@ -88,7 +88,6 @@ export function useModal(originalProps: UseModalProps) { as, className, classNames, - isOpen, defaultOpen, onOpenChange, @@ -162,6 +161,7 @@ export function useModal(originalProps: UseModalProps) { "data-open": dataAttr(state.isOpen), "data-dismissable": dataAttr(isDismissable), "aria-modal": dataAttr(true), + "data-placement": originalProps?.placement ?? "right", "aria-labelledby": headerMounted ? headerId : undefined, "aria-describedby": bodyMounted ? bodyId : undefined, }); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ed2ef046f9..ef886d7058 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1466,12 +1466,18 @@ importers: specifier: workspace:* version: link:../../utilities/shared-utils devDependencies: + '@nextui-org/avatar': + specifier: workspace:* + version: link:../avatar '@nextui-org/button': specifier: workspace:* version: link:../button '@nextui-org/checkbox': specifier: workspace:* version: link:../checkbox + '@nextui-org/image': + specifier: workspace:* + version: link:../image '@nextui-org/input': specifier: workspace:* version: link:../input @@ -1490,6 +1496,9 @@ importers: '@nextui-org/theme': specifier: workspace:* version: link:../../core/theme + '@nextui-org/tooltip': + specifier: workspace:* + version: link:../tooltip '@nextui-org/use-disclosure': specifier: workspace:* version: link:../../hooks/use-disclosure From 6b341eb2e18832ffc779fde034dc26fff29ee311 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 19:33:44 -0300 Subject: [PATCH 06/28] ci(changesets): version packages (beta) (#4058) --- .changeset/pre.json | 1 + packages/components/drawer/CHANGELOG.md | 9 +++++++++ packages/components/drawer/package.json | 2 +- packages/components/modal/CHANGELOG.md | 6 ++++++ packages/components/modal/package.json | 2 +- packages/core/react/CHANGELOG.md | 8 ++++++++ packages/core/react/package.json | 2 +- 7 files changed, 27 insertions(+), 3 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index bb31710ae2..69e0d36ef2 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -90,6 +90,7 @@ }, "changesets": [ "calm-trees-serve", + "cold-dolls-vanish", "curly-zoos-thank", "dirty-moles-refuse", "dull-bags-divide", diff --git a/packages/components/drawer/CHANGELOG.md b/packages/components/drawer/CHANGELOG.md index 391d635039..1f8304a4f6 100644 --- a/packages/components/drawer/CHANGELOG.md +++ b/packages/components/drawer/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/drawer +## 2.1.0-beta.6 + +### Patch Changes + +- [#4057](https://github.com/nextui-org/nextui/pull/4057) [`d947b9283`](https://github.com/nextui-org/nextui/commit/d947b92833c8e4abc16dae72466cdb922313e9c8) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Drawer styles and transition improved + +- Updated dependencies [[`d947b9283`](https://github.com/nextui-org/nextui/commit/d947b92833c8e4abc16dae72466cdb922313e9c8)]: + - @nextui-org/modal@2.1.0-beta.6 + ## 2.1.0-beta.5 ### Patch Changes diff --git a/packages/components/drawer/package.json b/packages/components/drawer/package.json index e135064c55..5a6e571bdd 100644 --- a/packages/components/drawer/package.json +++ b/packages/components/drawer/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/drawer", - "version": "2.1.0-beta.5", + "version": "2.1.0-beta.6", "description": "Used to render a content that slides in from the side of the screen.", "keywords": [ "drawer" diff --git a/packages/components/modal/CHANGELOG.md b/packages/components/modal/CHANGELOG.md index 0e2d9c75bc..e9b07a0404 100644 --- a/packages/components/modal/CHANGELOG.md +++ b/packages/components/modal/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/modal +## 2.1.0-beta.6 + +### Patch Changes + +- [#4057](https://github.com/nextui-org/nextui/pull/4057) [`d947b9283`](https://github.com/nextui-org/nextui/commit/d947b92833c8e4abc16dae72466cdb922313e9c8) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Drawer styles and transition improved + ## 2.1.0-beta.5 ### Patch Changes diff --git a/packages/components/modal/package.json b/packages/components/modal/package.json index 2af95970d0..89b711a442 100644 --- a/packages/components/modal/package.json +++ b/packages/components/modal/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/modal", - "version": "2.1.0-beta.5", + "version": "2.1.0-beta.6", "description": "Displays a dialog with a custom content that requires attention or provides additional information.", "keywords": [ "modal" diff --git a/packages/core/react/CHANGELOG.md b/packages/core/react/CHANGELOG.md index 574ec70a36..8fd7bf8c1c 100644 --- a/packages/core/react/CHANGELOG.md +++ b/packages/core/react/CHANGELOG.md @@ -1,5 +1,13 @@ # @nextui-org/react +## 2.5.0-beta.11 + +### Patch Changes + +- Updated dependencies [[`d947b9283`](https://github.com/nextui-org/nextui/commit/d947b92833c8e4abc16dae72466cdb922313e9c8)]: + - @nextui-org/drawer@2.1.0-beta.6 + - @nextui-org/modal@2.1.0-beta.6 + ## 2.5.0-beta.10 ### Patch Changes diff --git a/packages/core/react/package.json b/packages/core/react/package.json index c4c672f236..ce1d59e2ef 100644 --- a/packages/core/react/package.json +++ b/packages/core/react/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/react", - "version": "2.5.0-beta.10", + "version": "2.5.0-beta.11", "description": "๐Ÿš€ Beautiful and modern React UI library.", "author": "Junior Garcia ", "homepage": "https://nextui.org", From 31349c178b9b2bd0be9856bc09126a37be68901a Mon Sep 17 00:00:00 2001 From: Junior Garcia Date: Fri, 15 Nov 2024 16:55:51 -0300 Subject: [PATCH 07/28] feat: alert styles improved (#4071) --- .changeset/new-cougars-collect.md | 6 ++ .../content/components/alert/controlled.ts | 2 + .../content/components/alert/custom-styles.ts | 59 ++++++++--- apps/docs/content/components/alert/index.ts | 2 + .../docs/content/components/alert/variants.ts | 12 +-- .../content/components/alert/with-action.ts | 29 ++++++ apps/docs/content/docs/components/alert.mdx | 20 +++- packages/components/alert/package.json | 4 +- packages/components/alert/src/alert.tsx | 7 +- packages/components/alert/src/use-alert.ts | 21 +++- .../alert/stories/alert.stories.tsx | 97 ++++++++++++++++--- packages/core/theme/src/components/alert.ts | 69 +++++++------ 12 files changed, 251 insertions(+), 77 deletions(-) create mode 100644 .changeset/new-cougars-collect.md create mode 100644 apps/docs/content/components/alert/with-action.ts diff --git a/.changeset/new-cougars-collect.md b/.changeset/new-cougars-collect.md new file mode 100644 index 0000000000..292c420571 --- /dev/null +++ b/.changeset/new-cougars-collect.md @@ -0,0 +1,6 @@ +--- +"@nextui-org/alert": patch +"@nextui-org/theme": patch +--- + +Alert styles improved diff --git a/apps/docs/content/components/alert/controlled.ts b/apps/docs/content/components/alert/controlled.ts index 3a4780f3e2..33af02947f 100644 --- a/apps/docs/content/components/alert/controlled.ts +++ b/apps/docs/content/components/alert/controlled.ts @@ -13,6 +13,8 @@ export default function App() { title={title} description={description} isVisible={isVisible} + variant="faded" + color="success" onClose={() => setIsVisible(false)} /> ) : ( diff --git a/apps/docs/content/components/alert/custom-styles.ts b/apps/docs/content/components/alert/custom-styles.ts index b2c5fb17d3..5a9aeb1af0 100644 --- a/apps/docs/content/components/alert/custom-styles.ts +++ b/apps/docs/content/components/alert/custom-styles.ts @@ -1,27 +1,54 @@ -const App = `import {Alert} from "@nextui-org/react"; +const App = `import {Alert, Button} from "@nextui-org/react"; export default function App() { - const title = "Success"; - const description = "Thanks for subscribing to our newsletter!"; - + const [isVisible, setIsVisible] = React.useState(true); + return (
+ {!isVisible && ( + + )} + isVisible={isVisible} + title="The documents you requested are ready to be viewed" + variant="faded" + onClose={() => setIsVisible(false)} + > +
+ + +
+
); }`; diff --git a/apps/docs/content/components/alert/index.ts b/apps/docs/content/components/alert/index.ts index 1be9439d70..7fc0ee5ca4 100644 --- a/apps/docs/content/components/alert/index.ts +++ b/apps/docs/content/components/alert/index.ts @@ -5,6 +5,7 @@ import customImpl from "./custom-impl"; import customStyles from "./custom-styles"; import variants from "./variants"; import withIcon from "./with-icon"; +import withAction from "./with-action"; import controlled from "./controlled"; export const alertContent = { @@ -15,5 +16,6 @@ export const alertContent = { customStyles, variants, withIcon, + withAction, controlled, }; diff --git a/apps/docs/content/components/alert/variants.ts b/apps/docs/content/components/alert/variants.ts index 637553b085..48f57385c7 100644 --- a/apps/docs/content/components/alert/variants.ts +++ b/apps/docs/content/components/alert/variants.ts @@ -3,15 +3,9 @@ const App = `import {Alert} from "@nextui-org/react"; export default function App() { return (
- - A solid variant alert - - - A bordered variant alert - - - A flat variant alert - + {["solid", "bordered", "flat", "faded"].map((variant) => ( + + ))}
); }`; diff --git a/apps/docs/content/components/alert/with-action.ts b/apps/docs/content/components/alert/with-action.ts new file mode 100644 index 0000000000..b4f9665f62 --- /dev/null +++ b/apps/docs/content/components/alert/with-action.ts @@ -0,0 +1,29 @@ +const App = `import {Alert, Button} from "@nextui-org/react"; + +export default function App() { + const [isVisible, setIsVisible] = React.useState(true); + + return ( +
+ + Upgrade + + } + title="You have no credits left" + variant="faded" + /> +
+ ); +}`; + +const react = { + "/App.jsx": App, +}; + +export default { + ...react, +}; diff --git a/apps/docs/content/docs/components/alert.mdx b/apps/docs/content/docs/components/alert.mdx index 3d2b30bc8f..08d7bd3bbe 100644 --- a/apps/docs/content/docs/components/alert.mdx +++ b/apps/docs/content/docs/components/alert.mdx @@ -59,7 +59,11 @@ Alert comes with 6 color variants to convey different meanings. By default, Alert displays an appropriate icon based on the `color` prop. You can override this by providing a custom icon using the `icon` prop. - +### With Action + +Alert supports an `endContent` prop for additional actions. + + ### Controlled Visibility @@ -92,6 +96,18 @@ Alert has the following attributes on the `base` element: +### Slots + +Alert has the following slots: + +- `base`: The main alert container element +- `title`: The title element +- `description`: The description element +- `mainWrapper`: The wrapper for the title and description content +- `closeButton`: The close button element +- `iconWrapper`: The wrapper for the alert icon +- `alertIcon`: The alert icon element + ## Accessibility - Alert has role of `alert` @@ -112,6 +128,8 @@ Alert has the following attributes on the `base` element: | color | `default` \| `primary` \| `secondary` \| `success` \| `warning` \| `danger` | The alert color theme | `default` | | variant | `solid` \| `bordered` \| `flat` \| `faded` | The alert variant | `flat` | | radius | `none` \| `sm` \| `md` \| `lg` \| `full` | The alert border radius | `md` | +| startContent | `ReactNode` | The alert start content | - | +| endContent | `ReactNode` | The alert end content | - | | isVisible | `boolean` | Whether the alert is visible | - | | isClosable | `boolean` | Whether the alert can be closed | `false` | | hideIcon | `boolean` | Whether the icon is hidden | `false` | diff --git a/packages/components/alert/package.json b/packages/components/alert/package.json index 7dec7b453c..0e4283c81b 100644 --- a/packages/components/alert/package.json +++ b/packages/components/alert/package.json @@ -47,9 +47,9 @@ "@nextui-org/react-utils": "workspace:*", "@nextui-org/shared-icons": "workspace:*", "@nextui-org/shared-utils": "workspace:*", + "@nextui-org/button": "workspace:*", "@react-stately/utils": "3.10.1", - "@react-aria/utils": "3.24.1", - "@nextui-org/button": "workspace:*" + "@react-aria/utils": "3.24.1" }, "devDependencies": { "@nextui-org/system": "workspace:*", diff --git a/packages/components/alert/src/alert.tsx b/packages/components/alert/src/alert.tsx index d6460aa45d..384ed1d0fb 100644 --- a/packages/components/alert/src/alert.tsx +++ b/packages/components/alert/src/alert.tsx @@ -32,7 +32,10 @@ const Alert = forwardRef<"div", AlertProps>((props, ref) => { const { title, icon, + children, description, + endContent, + startContent, isClosable, domRef, handleClose, @@ -56,14 +59,16 @@ const Alert = forwardRef<"div", AlertProps>((props, ref) => { return (
+ {startContent}
{customIcon || }
{title &&
{title}
} {!isEmpty(description) &&
{description}
} + {children}
- + {endContent} {(isClosable || onClose) && ( + } + title="You have no credits left" + variant="faded" + /> + ); +}; + +export const CustomStylesTemplate = (args) => { + const [isVisible, setIsVisible] = React.useState(true); + + return ( + <> + {!isVisible && ( + + )} + setIsVisible(false)} + > +
+ + +
+
+ + ); +}; + export const Default = { render: Template, args: { @@ -122,6 +193,7 @@ export const Color = { render: ColorTemplate, args: { ...defaultProps, + variant: "faded", }, }; @@ -172,21 +244,16 @@ export const Closable = { }, }; -export const CustomWithClassNames = { - render: Template, +export const WithEndContent = { + render: WithEndContentTemplate, + args: { + ...defaultProps, + }, +}; + +export const CustomStyles = { + render: CustomStylesTemplate, args: { ...defaultProps, - classNames: { - base: [ - "bg-background", - "border", - "border-foreground-400", - "shadow", - "hover:bg-slate-200", - "cursor-pointer", - ], - title: ["text-base", "text-foreground", "font-semibold"], - description: ["text-base", "text-foreground-600"], - }, }, }; diff --git a/packages/core/theme/src/components/alert.ts b/packages/core/theme/src/components/alert.ts index 3af4e45dfd..bc76f4dd23 100644 --- a/packages/core/theme/src/components/alert.ts +++ b/packages/core/theme/src/components/alert.ts @@ -26,11 +26,11 @@ const alert = tv({ slots: { base: "flex flex-grow flex-row w-full items-start py-3 px-4 gap-x-1", mainWrapper: "h-full flex-grow min-h-10 ms-2 flex flex-col box-border items-start text-inherit", - title: "w-full font-medium block text-inherit leading-5", + title: "text-small w-full font-medium block text-inherit leading-5", description: "pl-[1px] text-small font-normal text-inherit", - closeButton: "relative text-inherit", - iconWrapper: "flex items-center justify-center w-9 h-9 rounded-full", - alertIcon: "fill-current w-6", + closeButton: "relative text-inherit translate-x-1 -translate-y-1", + iconWrapper: "flex-none relative w-9 h-9 rounded-full", + alertIcon: "fill-current w-6 absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2", }, variants: { color: { @@ -81,7 +81,7 @@ const alert = tv({ }, hasDescription: { false: { - base: "items-center", + base: "items-start", mainWrapper: "justify-center", }, }, @@ -139,60 +139,64 @@ const alert = tv({ base: colorVariants.solid.danger, }, }, - // flat / color + // flat & faded / color { variant: ["flat", "faded"], color: "default", class: { - base: [colorVariants.flat.default, "text-default-foreground"], + base: [ + colorVariants.flat.default, + "bg-default-100 dark:bg-default-50", + "text-default-foreground", + ], description: "text-default-600", closeButton: "text-default-400", - iconWrapper: "bg-default-50 dark:bg-default-100", + iconWrapper: "bg-default-50 dark:bg-default-100 border-default-200", }, }, { variant: ["flat", "faded"], color: "primary", class: { - base: colorVariants.flat.primary, - closeButton: "text-primary-400 data-[hover]:bg-primary-100", - iconWrapper: "bg-primary-50 dark:bg-primary-100", + base: [colorVariants.flat.primary, "bg-primary-50"], + closeButton: "text-primary-500 data-[hover]:bg-primary-200", + iconWrapper: "bg-primary-50 dark:bg-primary-100 border-primary-100", }, }, { variant: ["flat", "faded"], color: "secondary", class: { - base: colorVariants.flat.secondary, - closeButton: "text-secondary-400 data-[hover]:bg-secondary-100", - iconWrapper: "bg-secondary-50 dark:bg-secondary-100", + base: [colorVariants.flat.secondary, "bg-secondary-50"], + closeButton: "text-secondary-500 data-[hover]:bg-secondary-200", + iconWrapper: "bg-secondary-50 dark:bg-secondary-100 border-secondary-100", }, }, { variant: ["flat", "faded"], color: "success", class: { - base: colorVariants.flat.success, - closeButton: "text-success-400 data-[hover]:bg-success-100", - iconWrapper: "bg-success-50 dark:bg-success-100", + base: [colorVariants.flat.success, "bg-success-50"], + closeButton: "text-success-500 data-[hover]:bg-success-200", + iconWrapper: "bg-success-50 dark:bg-success-100 border-success-100", }, }, { variant: ["flat", "faded"], color: "warning", class: { - base: colorVariants.flat.warning, + base: [colorVariants.flat.warning, "bg-warning-50"], closeButton: "text-warning-500 data-[hover]:bg-warning-200", - iconWrapper: "bg-warning-50 dark:bg-warning-100", + iconWrapper: "bg-warning-50 dark:bg-warning-100 border-warning-100", }, }, { variant: ["flat", "faded"], color: "danger", class: { - base: colorVariants.flat.danger, - closeButton: "text-danger-400 data-[hover]:bg-danger-100", - iconWrapper: "bg-danger-50 dark:bg-danger-100", + base: [colorVariants.flat.danger, "bg-danger-50"], + closeButton: "text-danger-500 data-[hover]:bg-danger-200", + iconWrapper: "bg-danger-50 dark:bg-danger-100 border-danger-100", }, }, // faded / color @@ -200,42 +204,42 @@ const alert = tv({ variant: "faded", color: "default", class: { - base: "border-default", + base: "border-default-300 dark:border-default-200", }, }, { variant: "faded", color: "primary", class: { - base: "border-primary", + base: "border-primary-200", }, }, { variant: "faded", color: "secondary", class: { - base: "border-secondary", + base: "border-secondary-200", }, }, { variant: "faded", color: "success", class: { - base: "border-success", + base: "border-success-200 dark:border-success-100", }, }, { variant: "faded", color: "warning", class: { - base: "border-warning", + base: "border-warning-200 dark:border-warning-100", }, }, { variant: "faded", color: "danger", class: { - base: "border-danger", + base: "border-danger-200 dark:border-danger-100", }, }, // bordered / color @@ -288,13 +292,20 @@ const alert = tv({ closeButton: "data-[hover]:bg-danger-50", }, }, - // flat & bordered + // flat & bordered & faded { variant: ["flat", "bordered", "faded"], class: { iconWrapper: "shadow-small", }, }, + // flat & faded + { + variant: ["flat", "faded"], + class: { + iconWrapper: "shadow-small border-1", + }, + }, // bordered & color { variant: "bordered", From b2e8d9bc91b1535b47901264e9c3db80698837a1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 16:57:48 -0300 Subject: [PATCH 08/28] ci(changesets): version packages (beta) (#4072) Co-authored-by: github-actions[bot] --- .changeset/pre.json | 1 + packages/components/alert/CHANGELOG.md | 9 +++++ packages/components/alert/package.json | 2 +- packages/core/react/CHANGELOG.md | 49 ++++++++++++++++++++++++++ packages/core/react/package.json | 2 +- packages/core/theme/CHANGELOG.md | 6 ++++ packages/core/theme/package.json | 2 +- 7 files changed, 68 insertions(+), 3 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 69e0d36ef2..9701f1625b 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -110,6 +110,7 @@ "mighty-birds-deny", "moody-rabbits-shop", "neat-donkeys-accept", + "new-cougars-collect", "pink-beans-sit", "plenty-scissors-love", "poor-moose-double", diff --git a/packages/components/alert/CHANGELOG.md b/packages/components/alert/CHANGELOG.md index 024a780db5..67691728c2 100644 --- a/packages/components/alert/CHANGELOG.md +++ b/packages/components/alert/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/alert +## 2.1.0-beta.6 + +### Patch Changes + +- [#4071](https://github.com/nextui-org/nextui/pull/4071) [`31349c178`](https://github.com/nextui-org/nextui/commit/31349c178b9b2bd0be9856bc09126a37be68901a) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Alert styles improved + +- Updated dependencies []: + - @nextui-org/button@2.1.0-beta.4 + ## 2.1.0-beta.5 ### Patch Changes diff --git a/packages/components/alert/package.json b/packages/components/alert/package.json index 0e4283c81b..569ce4a658 100644 --- a/packages/components/alert/package.json +++ b/packages/components/alert/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/alert", - "version": "2.1.0-beta.5", + "version": "2.1.0-beta.6", "description": "Alerts are temporary notifications that provide concise feedback about an action or event.", "keywords": [ "alert" diff --git a/packages/core/react/CHANGELOG.md b/packages/core/react/CHANGELOG.md index 8fd7bf8c1c..7d16fe2e8b 100644 --- a/packages/core/react/CHANGELOG.md +++ b/packages/core/react/CHANGELOG.md @@ -1,5 +1,54 @@ # @nextui-org/react +## 2.5.0-beta.12 + +### Patch Changes + +- Updated dependencies [[`31349c178`](https://github.com/nextui-org/nextui/commit/31349c178b9b2bd0be9856bc09126a37be68901a)]: + - @nextui-org/alert@2.1.0-beta.6 + - @nextui-org/theme@2.3.0-beta.7 + - @nextui-org/accordion@2.1.0-beta.5 + - @nextui-org/autocomplete@2.2.0-beta.7 + - @nextui-org/avatar@2.1.0-beta.7 + - @nextui-org/badge@2.1.0-beta.4 + - @nextui-org/breadcrumbs@2.1.0-beta.5 + - @nextui-org/button@2.1.0-beta.4 + - @nextui-org/calendar@2.1.0-beta.5 + - @nextui-org/card@2.1.0-beta.4 + - @nextui-org/checkbox@2.2.0-beta.4 + - @nextui-org/chip@2.1.0-beta.5 + - @nextui-org/code@2.1.0-beta.4 + - @nextui-org/date-input@2.2.0-beta.4 + - @nextui-org/date-picker@2.2.0-beta.6 + - @nextui-org/divider@2.1.0-beta.4 + - @nextui-org/drawer@2.1.0-beta.6 + - @nextui-org/dropdown@2.2.0-beta.5 + - @nextui-org/image@2.1.0-beta.7 + - @nextui-org/input@2.3.0-beta.6 + - @nextui-org/kbd@2.1.0-beta.4 + - @nextui-org/link@2.1.0-beta.5 + - @nextui-org/listbox@2.2.0-beta.4 + - @nextui-org/menu@2.1.0-beta.4 + - @nextui-org/modal@2.1.0-beta.6 + - @nextui-org/navbar@2.1.0-beta.4 + - @nextui-org/pagination@2.1.0-beta.5 + - @nextui-org/popover@2.2.0-beta.5 + - @nextui-org/progress@2.1.0-beta.4 + - @nextui-org/radio@2.2.0-beta.4 + - @nextui-org/ripple@2.1.0-beta.4 + - @nextui-org/scroll-shadow@2.2.0-beta.4 + - @nextui-org/select@2.3.0-beta.7 + - @nextui-org/skeleton@2.1.0-beta.4 + - @nextui-org/slider@2.3.0-beta.4 + - @nextui-org/snippet@2.1.0-beta.5 + - @nextui-org/spacer@2.1.0-beta.4 + - @nextui-org/spinner@2.1.0-beta.4 + - @nextui-org/switch@2.1.0-beta.4 + - @nextui-org/table@2.1.0-beta.5 + - @nextui-org/tabs@2.1.0-beta.4 + - @nextui-org/tooltip@2.1.0-beta.4 + - @nextui-org/user@2.1.0-beta.7 + ## 2.5.0-beta.11 ### Patch Changes diff --git a/packages/core/react/package.json b/packages/core/react/package.json index ce1d59e2ef..70e59f3c98 100644 --- a/packages/core/react/package.json +++ b/packages/core/react/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/react", - "version": "2.5.0-beta.11", + "version": "2.5.0-beta.12", "description": "๐Ÿš€ Beautiful and modern React UI library.", "author": "Junior Garcia ", "homepage": "https://nextui.org", diff --git a/packages/core/theme/CHANGELOG.md b/packages/core/theme/CHANGELOG.md index 33fc55001e..92c5933081 100644 --- a/packages/core/theme/CHANGELOG.md +++ b/packages/core/theme/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/theme +## 2.3.0-beta.7 + +### Patch Changes + +- [#4071](https://github.com/nextui-org/nextui/pull/4071) [`31349c178`](https://github.com/nextui-org/nextui/commit/31349c178b9b2bd0be9856bc09126a37be68901a) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Alert styles improved + ## 2.3.0-beta.6 ### Patch Changes diff --git a/packages/core/theme/package.json b/packages/core/theme/package.json index 49f2f726c9..a7e77cece0 100644 --- a/packages/core/theme/package.json +++ b/packages/core/theme/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/theme", - "version": "2.3.0-beta.6", + "version": "2.3.0-beta.7", "description": "The default theme for NextUI components", "keywords": [ "theme", From 70dc7598388022fca04255c3c1623468a38a3803 Mon Sep 17 00:00:00 2001 From: Junior Garcia Date: Fri, 15 Nov 2024 21:30:46 -0300 Subject: [PATCH 09/28] feat: alert styles improved (#4073) --- .changeset/sixty-ties-knock.md | 6 + .../content/components/alert/custom-styles.ts | 212 ++++++++++++++---- .../docs/content/components/alert/variants.ts | 2 +- packages/components/alert/src/alert.tsx | 4 +- .../alert/stories/alert.stories.tsx | 131 +++++++---- packages/core/theme/src/components/alert.ts | 18 +- 6 files changed, 272 insertions(+), 101 deletions(-) create mode 100644 .changeset/sixty-ties-knock.md diff --git a/.changeset/sixty-ties-knock.md b/.changeset/sixty-ties-knock.md new file mode 100644 index 0000000000..e8046181a1 --- /dev/null +++ b/.changeset/sixty-ties-knock.md @@ -0,0 +1,6 @@ +--- +"@nextui-org/alert": patch +"@nextui-org/theme": patch +--- + +Alert compoentn styles improved diff --git a/apps/docs/content/components/alert/custom-styles.ts b/apps/docs/content/components/alert/custom-styles.ts index 5a9aeb1af0..437c8f35ee 100644 --- a/apps/docs/content/components/alert/custom-styles.ts +++ b/apps/docs/content/components/alert/custom-styles.ts @@ -1,60 +1,190 @@ -const App = `import {Alert, Button} from "@nextui-org/react"; +const AppTs = `import {Alert, Button} from "@nextui-org/react"; + +const CustomAlert = React.forwardRef( + ( + {title, children, variant = "faded", color = "secondary", className, classNames, ...props}, + ref, + ) => { + const colorClass = React.useMemo(() => { + switch (color) { + case "default": + return "before:bg-default-300"; + case "primary": + return "before:bg-primary"; + case "secondary": + return "before:bg-secondary"; + case "success": + return "before:bg-success"; + case "warning": + return "before:bg-warning"; + case "danger": + return "before:bg-danger"; + default: + return "before:bg-default-200"; + } + }, []); + + return ( + + {children} + + ); + }, +); + +CustomAlert.displayName = "CustomAlert"; export default function App() { - const [isVisible, setIsVisible] = React.useState(true); + const colors = ["default", "primary", "secondary", "success", "warning", "danger"]; return ( -
- {!isVisible && ( - - )} +
+ + +
+ + ))} +
+ ); +}`; + +const App = `import {Alert, Button} from "@nextui-org/react"; + +const CustomAlert = React.forwardRef( + ( + {title, children, variant = "faded", color = "secondary", className, classNames = {}, ...props}, + ref, + ) => { + const colorClass = React.useMemo(() => { + switch (color) { + case "default": + return "before:bg-default-300"; + case "primary": + return "before:bg-primary"; + case "secondary": + return "before:bg-secondary"; + case "success": + return "before:bg-success"; + case "warning": + return "before:bg-warning"; + case "danger": + return "before:bg-danger"; + default: + return "before:bg-default-200"; + } + }, []); + + return ( setIsVisible(false)} + color={color} + title={title} + variant={variant} + {...props} > -
- - -
+ {children}
+ ); + }, +); + +CustomAlert.displayName = "CustomAlert"; + +export default function App() { + const colors = ["default", "primary", "secondary", "success", "warning", "danger"]; + + return ( +
+ {colors.map((color) => ( + +
+ + +
+
+ ))}
); }`; const react = { "/App.jsx": App, + "/App.tsx": AppTs, }; export default { diff --git a/apps/docs/content/components/alert/variants.ts b/apps/docs/content/components/alert/variants.ts index 48f57385c7..07238ee96f 100644 --- a/apps/docs/content/components/alert/variants.ts +++ b/apps/docs/content/components/alert/variants.ts @@ -4,7 +4,7 @@ export default function App() { return (
{["solid", "bordered", "flat", "faded"].map((variant) => ( - + ))}
); diff --git a/packages/components/alert/src/alert.tsx b/packages/components/alert/src/alert.tsx index 384ed1d0fb..cc8c9a691d 100644 --- a/packages/components/alert/src/alert.tsx +++ b/packages/components/alert/src/alert.tsx @@ -24,9 +24,7 @@ const iconMap = { export type AlertColor = keyof typeof iconMap; -export interface AlertProps extends Omit { - color: AlertColor; -} +export interface AlertProps extends Omit {} const Alert = forwardRef<"div", AlertProps>((props, ref) => { const { diff --git a/packages/components/alert/stories/alert.stories.tsx b/packages/components/alert/stories/alert.stories.tsx index 581a1cf236..cbdac9aa6b 100644 --- a/packages/components/alert/stories/alert.stories.tsx +++ b/packages/components/alert/stories/alert.stories.tsx @@ -1,9 +1,9 @@ import React from "react"; import {Meta} from "@storybook/react"; -import {alert} from "@nextui-org/theme"; +import {alert, cn} from "@nextui-org/theme"; import {Button} from "@nextui-org/button"; -import {Alert} from "../src"; +import {Alert, AlertProps} from "../src"; export default { title: "Components/Alert", @@ -120,57 +120,94 @@ const WithEndContentTemplate = (args) => { ); }; -export const CustomStylesTemplate = (args) => { - const [isVisible, setIsVisible] = React.useState(true); +const CustomAlert = React.forwardRef( + ( + {title, children, variant = "faded", color = "secondary", className, classNames, ...props}, + ref, + ) => { + const colorClass = React.useMemo(() => { + switch (color) { + case "default": + return "before:bg-default-300"; + case "primary": + return "before:bg-primary"; + case "secondary": + return "before:bg-secondary"; + case "success": + return "before:bg-success"; + case "warning": + return "before:bg-warning"; + case "danger": + return "before:bg-danger"; + default: + return `before:bg-default-200`; + } + }, []); - return ( - <> - {!isVisible && ( - - )} + return ( setIsVisible(false)} + color={color} + title={title} + variant={variant} + {...props} > -
- - -
+
{children}
- + ); + }, +); + +CustomAlert.displayName = "CustomAlert"; + +const CustomStylesTemplate = (args) => { + const colors = ["default", "primary", "secondary", "success", "warning", "danger"]; + + return ( +
+ {colors.map((color) => ( + +
+ + +
+
+ ))} +
); }; diff --git a/packages/core/theme/src/components/alert.ts b/packages/core/theme/src/components/alert.ts index bc76f4dd23..6ec5039767 100644 --- a/packages/core/theme/src/components/alert.ts +++ b/packages/core/theme/src/components/alert.ts @@ -146,7 +146,7 @@ const alert = tv({ class: { base: [ colorVariants.flat.default, - "bg-default-100 dark:bg-default-50", + "bg-default-100 dark:bg-default-50/50", "text-default-foreground", ], description: "text-default-600", @@ -158,7 +158,7 @@ const alert = tv({ variant: ["flat", "faded"], color: "primary", class: { - base: [colorVariants.flat.primary, "bg-primary-50"], + base: [colorVariants.flat.primary, "bg-primary-50 dark:bg-primary-50/50"], closeButton: "text-primary-500 data-[hover]:bg-primary-200", iconWrapper: "bg-primary-50 dark:bg-primary-100 border-primary-100", }, @@ -167,7 +167,7 @@ const alert = tv({ variant: ["flat", "faded"], color: "secondary", class: { - base: [colorVariants.flat.secondary, "bg-secondary-50"], + base: [colorVariants.flat.secondary, "bg-secondary-50 dark:bg-secondary-50/50"], closeButton: "text-secondary-500 data-[hover]:bg-secondary-200", iconWrapper: "bg-secondary-50 dark:bg-secondary-100 border-secondary-100", }, @@ -176,7 +176,7 @@ const alert = tv({ variant: ["flat", "faded"], color: "success", class: { - base: [colorVariants.flat.success, "bg-success-50"], + base: [colorVariants.flat.success, "bg-success-50 dark:bg-success-50/50"], closeButton: "text-success-500 data-[hover]:bg-success-200", iconWrapper: "bg-success-50 dark:bg-success-100 border-success-100", }, @@ -185,7 +185,7 @@ const alert = tv({ variant: ["flat", "faded"], color: "warning", class: { - base: [colorVariants.flat.warning, "bg-warning-50"], + base: [colorVariants.flat.warning, "bg-warning-50 dark:bg-warning-50/50"], closeButton: "text-warning-500 data-[hover]:bg-warning-200", iconWrapper: "bg-warning-50 dark:bg-warning-100 border-warning-100", }, @@ -194,7 +194,7 @@ const alert = tv({ variant: ["flat", "faded"], color: "danger", class: { - base: [colorVariants.flat.danger, "bg-danger-50"], + base: [colorVariants.flat.danger, "bg-danger-50 dark:bg-danger-50/50"], closeButton: "text-danger-500 data-[hover]:bg-danger-200", iconWrapper: "bg-danger-50 dark:bg-danger-100 border-danger-100", }, @@ -211,7 +211,7 @@ const alert = tv({ variant: "faded", color: "primary", class: { - base: "border-primary-200", + base: "border-primary-200 dark:border-primary-100", }, }, { @@ -225,14 +225,14 @@ const alert = tv({ variant: "faded", color: "success", class: { - base: "border-success-200 dark:border-success-100", + base: "border-success-300 dark:border-success-100", }, }, { variant: "faded", color: "warning", class: { - base: "border-warning-200 dark:border-warning-100", + base: "border-warning-300 dark:border-warning-100", }, }, { From f0520d48dbd2e27740673ee7237fe6412584ec2a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 21:34:53 -0300 Subject: [PATCH 10/28] ci(changesets): version packages (beta) (#4074) Co-authored-by: github-actions[bot] --- .changeset/pre.json | 1 + packages/components/alert/CHANGELOG.md | 9 +++++ packages/components/alert/package.json | 2 +- packages/core/react/CHANGELOG.md | 49 ++++++++++++++++++++++++++ packages/core/react/package.json | 2 +- packages/core/theme/CHANGELOG.md | 6 ++++ packages/core/theme/package.json | 2 +- 7 files changed, 68 insertions(+), 3 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 9701f1625b..d2c38c90b5 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -121,6 +121,7 @@ "selfish-baboons-know", "shy-mails-live", "silly-candles-wonder", + "sixty-ties-knock", "slimy-cats-brush", "slow-paws-punch", "smooth-mayflies-wonder", diff --git a/packages/components/alert/CHANGELOG.md b/packages/components/alert/CHANGELOG.md index 67691728c2..314d343ac4 100644 --- a/packages/components/alert/CHANGELOG.md +++ b/packages/components/alert/CHANGELOG.md @@ -1,5 +1,14 @@ # @nextui-org/alert +## 2.1.0-beta.7 + +### Patch Changes + +- [#4073](https://github.com/nextui-org/nextui/pull/4073) [`70dc75983`](https://github.com/nextui-org/nextui/commit/70dc7598388022fca04255c3c1623468a38a3803) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Alert compoentn styles improved + +- Updated dependencies []: + - @nextui-org/button@2.1.0-beta.4 + ## 2.1.0-beta.6 ### Patch Changes diff --git a/packages/components/alert/package.json b/packages/components/alert/package.json index 569ce4a658..955185253c 100644 --- a/packages/components/alert/package.json +++ b/packages/components/alert/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/alert", - "version": "2.1.0-beta.6", + "version": "2.1.0-beta.7", "description": "Alerts are temporary notifications that provide concise feedback about an action or event.", "keywords": [ "alert" diff --git a/packages/core/react/CHANGELOG.md b/packages/core/react/CHANGELOG.md index 7d16fe2e8b..9ee8bd3c6f 100644 --- a/packages/core/react/CHANGELOG.md +++ b/packages/core/react/CHANGELOG.md @@ -1,5 +1,54 @@ # @nextui-org/react +## 2.5.0-beta.13 + +### Patch Changes + +- Updated dependencies [[`70dc75983`](https://github.com/nextui-org/nextui/commit/70dc7598388022fca04255c3c1623468a38a3803)]: + - @nextui-org/alert@2.1.0-beta.7 + - @nextui-org/theme@2.3.0-beta.8 + - @nextui-org/accordion@2.1.0-beta.5 + - @nextui-org/autocomplete@2.2.0-beta.7 + - @nextui-org/avatar@2.1.0-beta.7 + - @nextui-org/badge@2.1.0-beta.4 + - @nextui-org/breadcrumbs@2.1.0-beta.5 + - @nextui-org/button@2.1.0-beta.4 + - @nextui-org/calendar@2.1.0-beta.5 + - @nextui-org/card@2.1.0-beta.4 + - @nextui-org/checkbox@2.2.0-beta.4 + - @nextui-org/chip@2.1.0-beta.5 + - @nextui-org/code@2.1.0-beta.4 + - @nextui-org/date-input@2.2.0-beta.4 + - @nextui-org/date-picker@2.2.0-beta.6 + - @nextui-org/divider@2.1.0-beta.4 + - @nextui-org/drawer@2.1.0-beta.6 + - @nextui-org/dropdown@2.2.0-beta.5 + - @nextui-org/image@2.1.0-beta.7 + - @nextui-org/input@2.3.0-beta.6 + - @nextui-org/kbd@2.1.0-beta.4 + - @nextui-org/link@2.1.0-beta.5 + - @nextui-org/listbox@2.2.0-beta.4 + - @nextui-org/menu@2.1.0-beta.4 + - @nextui-org/modal@2.1.0-beta.6 + - @nextui-org/navbar@2.1.0-beta.4 + - @nextui-org/pagination@2.1.0-beta.5 + - @nextui-org/popover@2.2.0-beta.5 + - @nextui-org/progress@2.1.0-beta.4 + - @nextui-org/radio@2.2.0-beta.4 + - @nextui-org/ripple@2.1.0-beta.4 + - @nextui-org/scroll-shadow@2.2.0-beta.4 + - @nextui-org/select@2.3.0-beta.7 + - @nextui-org/skeleton@2.1.0-beta.4 + - @nextui-org/slider@2.3.0-beta.4 + - @nextui-org/snippet@2.1.0-beta.5 + - @nextui-org/spacer@2.1.0-beta.4 + - @nextui-org/spinner@2.1.0-beta.4 + - @nextui-org/switch@2.1.0-beta.4 + - @nextui-org/table@2.1.0-beta.5 + - @nextui-org/tabs@2.1.0-beta.4 + - @nextui-org/tooltip@2.1.0-beta.4 + - @nextui-org/user@2.1.0-beta.7 + ## 2.5.0-beta.12 ### Patch Changes diff --git a/packages/core/react/package.json b/packages/core/react/package.json index 70e59f3c98..ee9426fe3c 100644 --- a/packages/core/react/package.json +++ b/packages/core/react/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/react", - "version": "2.5.0-beta.12", + "version": "2.5.0-beta.13", "description": "๐Ÿš€ Beautiful and modern React UI library.", "author": "Junior Garcia ", "homepage": "https://nextui.org", diff --git a/packages/core/theme/CHANGELOG.md b/packages/core/theme/CHANGELOG.md index 92c5933081..f34ceb7dbc 100644 --- a/packages/core/theme/CHANGELOG.md +++ b/packages/core/theme/CHANGELOG.md @@ -1,5 +1,11 @@ # @nextui-org/theme +## 2.3.0-beta.8 + +### Patch Changes + +- [#4073](https://github.com/nextui-org/nextui/pull/4073) [`70dc75983`](https://github.com/nextui-org/nextui/commit/70dc7598388022fca04255c3c1623468a38a3803) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Alert compoentn styles improved + ## 2.3.0-beta.7 ### Patch Changes diff --git a/packages/core/theme/package.json b/packages/core/theme/package.json index a7e77cece0..b55469f8c2 100644 --- a/packages/core/theme/package.json +++ b/packages/core/theme/package.json @@ -1,6 +1,6 @@ { "name": "@nextui-org/theme", - "version": "2.3.0-beta.7", + "version": "2.3.0-beta.8", "description": "The default theme for NextUI components", "keywords": [ "theme", From f25782d4b9712c55e29f10845463d36a1d52a9b6 Mon Sep 17 00:00:00 2001 From: Junior Garcia Date: Sat, 16 Nov 2024 09:38:24 -0300 Subject: [PATCH 11/28] feat: add number of stars and credits --- apps/docs/components/footer.tsx | 36 + apps/docs/components/icons/moon.tsx | 2 +- apps/docs/components/icons/sun.tsx | 26 + apps/docs/components/navbar.tsx | 74 +- apps/docs/components/theme-switch.tsx | 6 +- apps/docs/config/github-info.json | 6 + apps/docs/config/search-meta.json | 3409 ++++++++++-------- apps/docs/content/docs/components/drawer.mdx | 5 + apps/docs/package.json | 3 +- apps/docs/public/sitemap-0.xml | 137 +- apps/docs/scripts/update-github-info.ts | 61 + apps/docs/utils/number.ts | 25 + 12 files changed, 2215 insertions(+), 1575 deletions(-) create mode 100644 apps/docs/config/github-info.json create mode 100644 apps/docs/scripts/update-github-info.ts create mode 100644 apps/docs/utils/number.ts diff --git a/apps/docs/components/footer.tsx b/apps/docs/components/footer.tsx index 35cdc519bd..6b5e9b6300 100644 --- a/apps/docs/components/footer.tsx +++ b/apps/docs/components/footer.tsx @@ -1,8 +1,11 @@ "use client"; import {usePathname} from "next/navigation"; +import {Link} from "@nextui-org/react"; import {getCurrentYear} from "@/utils/time"; +import {XIcon, GithubIcon, DiscordIcon} from "@/components/icons"; +import {siteConfig} from "@/config/site"; export const Footer = () => { const pathname = usePathname(); @@ -11,12 +14,45 @@ export const Footer = () => { return null; } + const isDocs = pathname.includes("/docs"); + return (

ยฉ {getCurrentYear()} NextUI Inc. All rights reserved.

+ {isDocs ? ( +
+ + + + + + + + + +
+ ) : null}
); diff --git a/apps/docs/components/icons/moon.tsx b/apps/docs/components/icons/moon.tsx index b2ea9d37de..5e0c7a80ca 100644 --- a/apps/docs/components/icons/moon.tsx +++ b/apps/docs/components/icons/moon.tsx @@ -11,7 +11,7 @@ export const MoonIcon = ({size = 24, width, height, ...props}: IconSvgProps) => {...props} > diff --git a/apps/docs/components/icons/sun.tsx b/apps/docs/components/icons/sun.tsx index 886aa13441..f1d7446c6b 100644 --- a/apps/docs/components/icons/sun.tsx +++ b/apps/docs/components/icons/sun.tsx @@ -16,3 +16,29 @@ export const SunFilledIcon = ({size = 24, width, height, ...props}: IconSvgProps ); + +export const SunLinearIcon = ({size = 24, width, height, ...props}: IconSvgProps) => ( + +); diff --git a/apps/docs/components/navbar.tsx b/apps/docs/components/navbar.tsx index 816f0cbc0a..741e48507d 100644 --- a/apps/docs/components/navbar.tsx +++ b/apps/docs/components/navbar.tsx @@ -33,12 +33,13 @@ import {currentVersion} from "@/utils/version"; import {siteConfig} from "@/config/site"; import {Route} from "@/libs/docs/page"; import {LargeLogo, SmallLogo, ThemeSwitch} from "@/components"; -import {XIcon, GithubIcon, DiscordIcon, SearchLinearIcon} from "@/components/icons"; +import {GithubIcon, SearchLinearIcon} from "@/components/icons"; import {useIsMounted} from "@/hooks/use-is-mounted"; import {DocsSidebar} from "@/components/docs/sidebar"; import {useCmdkStore} from "@/components/cmdk"; import {FbRoadmapLink} from "@/components/featurebase/fb-roadmap-link"; import {trackEvent} from "@/utils/va"; +import githubInfo from "@/config/github-info.json"; export interface NavbarProps { routes: Route[]; @@ -92,22 +93,26 @@ export const Navbar: FC = ({children, routes, mobileRoutes = [], sl const searchButton = ( ); @@ -236,35 +241,9 @@ export const Navbar: FC = ({children, routes, mobileRoutes = [], sl Figma - {/* hide feedback and changelog at this moment */} - {/* - - - - - - - - - */} - {/* - handlePressNavbarItem("Introducing v2.2.0", "/blog/v2.2.0")} - > - Introducing v2.2.0  - - ๐Ÿš€ - - - */} @@ -274,8 +253,8 @@ export const Navbar: FC = ({children, routes, mobileRoutes = [], sl isExternal aria-label="Github" className="p-1" - href="https://github.com/nextui-org/nextui" - onClick={() => handlePressNavbarItem("Github", "https://github.com/nextui-org/nextui")} + href={siteConfig.links.github} + onPress={() => handlePressNavbarItem("Github", siteConfig.links.github)} > @@ -321,37 +300,20 @@ export const Navbar: FC = ({children, routes, mobileRoutes = [], sl - - handlePressNavbarItem("Twitter", siteConfig.links.twitter)} - > - - - handlePressNavbarItem("Discord", siteConfig.links.discord)} - > - - + + {searchButton} handlePressNavbarItem("Github", siteConfig.links.github)} > - + + {githubInfo.stars.formatted} - + - {searchButton} {/*
); diff --git a/apps/docs/config/github-info.json b/apps/docs/config/github-info.json new file mode 100644 index 0000000000..9539971adf --- /dev/null +++ b/apps/docs/config/github-info.json @@ -0,0 +1,6 @@ +{ + "stars": { "raw": 22002, "formatted": "22K" }, + "forks": 1536, + "subscribers": 85, + "openIssues": 432 +} diff --git a/apps/docs/config/search-meta.json b/apps/docs/config/search-meta.json index 26bb62f6f1..26654c5809 100644 --- a/apps/docs/config/search-meta.json +++ b/apps/docs/config/search-meta.json @@ -1,276 +1,235 @@ [ { "content": "NextUI CLI", - "objectID": "e496f6b7-e82c-42af-88d0-5e528ec7bc71", + "objectID": "f5c88a7b-cdc7-4516-a7d3-c7dd30f13614", "type": "lvl1", "url": "/docs/api-references/cli-api", "hierarchy": { "lvl1": "NextUI CLI" } }, { "content": "init", - "objectID": "c11c9112-be1f-4f9a-88a1-d75d11a772e8", + "objectID": "34ed63cd-b83a-4640-aa62-f2f82b233316", "type": "lvl2", "url": "/docs/api-references/cli-api#init", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "init", "lvl3": null } }, { "content": "Options", - "objectID": "daef8085-7dd6-4ab4-aa1d-a47b85c06391", + "objectID": "69a326a8-31db-46dc-9cb7-b20f0bd878f4", "type": "lvl3", "url": "/docs/api-references/cli-api#options", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "init", "lvl3": "Options" } }, { "content": "Example", - "objectID": "043bafe4-97d0-4747-b28d-1d8d8dd1ba0a", + "objectID": "f5d361b6-13b2-473d-bd4d-fe79acccef82", "type": "lvl3", "url": "/docs/api-references/cli-api#example", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "Options", "lvl3": "Example" } }, { "content": "add", - "objectID": "4c7e4e23-4cae-410f-bb66-941741ca793d", + "objectID": "ccf45203-0a70-48f0-88d3-2fc152f9a607", "type": "lvl2", "url": "/docs/api-references/cli-api#add", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "add", "lvl3": null } }, { "content": "Options", - "objectID": "099f14f5-63b7-4303-acf6-09747e555f5e", + "objectID": "00bf53c1-2d8a-467c-bda6-6a6c96f62e01", "type": "lvl3", "url": "/docs/api-references/cli-api#options-1", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "add", "lvl3": "Options" } }, { "content": "Example", - "objectID": "80df6ba1-999e-4190-8253-486a3cc92192", + "objectID": "ef7acf4f-4af8-49ab-828e-349cf0610d92", "type": "lvl3", "url": "/docs/api-references/cli-api#example-1", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "Options", "lvl3": "Example" } }, { "content": "upgrade", - "objectID": "7179cb51-eeda-45d6-bf5d-840d3e7480ee", + "objectID": "67b71e7a-9f80-44c7-95e8-1e044e85330c", "type": "lvl2", "url": "/docs/api-references/cli-api#upgrade", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "upgrade", "lvl3": null } }, { "content": "Options", - "objectID": "69b44c5f-6e9d-409b-b9f1-f7df39dde20d", + "objectID": "1198d55c-a9d6-4c23-a440-a323ba143923", "type": "lvl3", "url": "/docs/api-references/cli-api#options-2", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "upgrade", "lvl3": "Options" } }, { "content": "Example", - "objectID": "b5a9b381-6d4d-4d5f-96b9-e34fcfeb0bf1", + "objectID": "52a93b76-d1d7-4bb6-a05c-1fd3ba358840", "type": "lvl3", "url": "/docs/api-references/cli-api#example-2", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "Options", "lvl3": "Example" } }, { "content": "remove", - "objectID": "63ee5d85-d176-41c3-8613-c816a9f971c9", + "objectID": "2293a205-e988-4be9-8cfe-322aee0250cc", "type": "lvl2", "url": "/docs/api-references/cli-api#remove", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "remove", "lvl3": null } }, { "content": "Options", - "objectID": "958fc744-dd61-4103-b8d4-000dedd01975", + "objectID": "0d3f3685-742e-4620-91e5-01d5ff2bf087", "type": "lvl3", "url": "/docs/api-references/cli-api#options-3", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "remove", "lvl3": "Options" } }, { "content": "Example", - "objectID": "d3c7c402-0f1b-439f-9c91-a071579f685d", + "objectID": "59fd2333-0604-4413-9c1c-ac720746a71c", "type": "lvl3", "url": "/docs/api-references/cli-api#example-3", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "Options", "lvl3": "Example" } }, { "content": "list", - "objectID": "921c7c6d-3c11-4e96-a074-16e79c1d6f80", + "objectID": "b1c4020f-e464-4753-b8a3-e5be06183b6d", "type": "lvl2", "url": "/docs/api-references/cli-api#list", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "list", "lvl3": null } }, { "content": "Options", - "objectID": "7c395592-6c9b-4b93-a07a-039b4132527a", + "objectID": "725ab681-f866-486e-af12-327b3826f6ff", "type": "lvl3", "url": "/docs/api-references/cli-api#options-4", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "list", "lvl3": "Options" } }, { "content": "Example", - "objectID": "99e17560-4d9c-4b7f-850a-da58f22d9397", + "objectID": "0d9281d8-4049-4d9e-aef0-6be040f84cd0", "type": "lvl3", "url": "/docs/api-references/cli-api#example-4", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "Options", "lvl3": "Example" } }, { "content": "doctor", - "objectID": "5a0406ce-ed0f-46fd-9cfd-088a7067d713", + "objectID": "a2f5c8c9-a824-4051-b970-5a7f198c85d0", "type": "lvl2", "url": "/docs/api-references/cli-api#doctor", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "doctor", "lvl3": null } }, { "content": "Options", - "objectID": "14d04805-edd0-488b-b519-7e25e406fc3b", + "objectID": "48a98178-3c74-4e7e-8b22-4ee75dc3b6c1", "type": "lvl3", "url": "/docs/api-references/cli-api#options-5", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "doctor", "lvl3": "Options" } }, { "content": "Example", - "objectID": "5c8339e9-7328-4db4-baf1-a8ffa0c07e3e", + "objectID": "04683ddf-f0ec-4539-b88e-516a07d8a3ff", "type": "lvl3", "url": "/docs/api-references/cli-api#example-5", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "Options", "lvl3": "Example" } }, { "content": "env", - "objectID": "e00f8465-5ed6-4a1c-b4cf-88fd4b9a72e0", + "objectID": "8ea7d711-57cd-4a24-b67e-440d190dcfc8", "type": "lvl2", "url": "/docs/api-references/cli-api#env", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "env", "lvl3": null } }, { "content": "Options", - "objectID": "52e1ceee-7848-4ef6-99ea-3b8aea2a9b72", + "objectID": "550f316a-346e-498d-b2d7-8ca11b3dc885", "type": "lvl3", "url": "/docs/api-references/cli-api#options-6", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "env", "lvl3": "Options" } }, { "content": "Example", - "objectID": "2fa0f558-10f0-4408-aa27-facfd62a4582", + "objectID": "cbfea057-5404-490f-8674-80f923299cf1", "type": "lvl3", "url": "/docs/api-references/cli-api#example-6", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "Options", "lvl3": "Example" } }, { "content": "NextUI Provider", - "objectID": "c951ffe5-921a-4662-9bea-b10c848b1b25", + "objectID": "d12c927f-d76a-4c19-ad37-e4a47c355c67", "type": "lvl1", "url": "/docs/api-references/nextui-provider", "hierarchy": { "lvl1": "NextUI Provider" } }, { - "content": "Props", - "objectID": "43f70803-76eb-457c-89f7-c2a70eb23b2c", + "content": "Import", + "objectID": "82a80c34-0a39-453c-a4a5-98e29493b5d0", "type": "lvl2", - "url": "/docs/api-references/nextui-provider#props", - "hierarchy": { "lvl1": "NextUI Provider", "lvl2": "Props", "lvl3": null } - }, - { - "content": "navigate", - "objectID": "fffabecd-658a-4973-aaf1-103fa4b89b67", - "type": "lvl3", - "url": "/docs/api-references/nextui-provider#navigate", - "hierarchy": { - "lvl1": "NextUI Provider", - "lvl2": "Props", - "lvl3": "navigate" - } - }, - { - "content": "locale", - "objectID": "1aeb10df-e1f5-49c9-b5dd-5996cf566361", - "type": "lvl3", - "url": "/docs/api-references/nextui-provider#locale", - "hierarchy": { - "lvl1": "NextUI Provider", - "lvl2": "navigate", - "lvl3": "locale" - } + "url": "/docs/api-references/nextui-provider#import", + "hierarchy": { "lvl1": "NextUI Provider", "lvl2": "Import", "lvl3": null } }, { - "content": "defaultDates", - "objectID": "f3e72d3f-fe27-4d99-8c28-db8dbf3a86a2", - "type": "lvl3", - "url": "/docs/api-references/nextui-provider#defaultdates", - "hierarchy": { - "lvl1": "NextUI Provider", - "lvl2": "locale", - "lvl3": "defaultDates" - } + "content": "Usage", + "objectID": "8065e809-64e6-4a7f-a8dd-e1a08ae8ed46", + "type": "lvl2", + "url": "/docs/api-references/nextui-provider#usage", + "hierarchy": { "lvl1": "NextUI Provider", "lvl2": "Usage", "lvl3": null } }, { - "content": "createCalendar", - "objectID": "9418d25d-55de-447e-96c8-9a4366d31b95", - "type": "lvl3", - "url": "/docs/api-references/nextui-provider#createcalendar", - "hierarchy": { - "lvl1": "NextUI Provider", - "lvl2": "defaultDates", - "lvl3": "createCalendar" - } + "content": "Props", + "objectID": "81e9e1c4-179a-4aed-acac-c8466ccf4cc6", + "type": "lvl2", + "url": "/docs/api-references/nextui-provider#props", + "hierarchy": { "lvl1": "NextUI Provider", "lvl2": "Props", "lvl3": null } }, { "content": "Types", - "objectID": "19f0447b-0f55-4030-ada2-2285d2da5573", + "objectID": "e55fa65e-bcbd-4657-9e8c-40d43321405a", "type": "lvl2", "url": "/docs/api-references/nextui-provider#types", "hierarchy": { "lvl1": "NextUI Provider", "lvl2": "Types", "lvl3": null } }, - { - "content": "CalendarDate", - "objectID": "f8a3e3e1-07c2-41ec-be47-96eb441258e0", - "type": "lvl3", - "url": "/docs/api-references/nextui-provider#calendardate", - "hierarchy": { - "lvl1": "NextUI Provider", - "lvl2": "Types", - "lvl3": "CalendarDate" - } - }, { "content": "SupportedCalendars", - "objectID": "fb9e685a-8680-4fe1-9876-23d1d129aaac", + "objectID": "1ec6a919-60b7-4ef9-8a3e-942ed9f4b391", "type": "lvl3", "url": "/docs/api-references/nextui-provider#supportedcalendars", "hierarchy": { "lvl1": "NextUI Provider", - "lvl2": "CalendarDate", + "lvl2": "Types", "lvl3": "SupportedCalendars" } }, { "content": "Accordion", - "objectID": "86be0b63-96e6-4b54-a052-9b204eabf4f2", + "objectID": "4f4ea5d5-32de-407c-8be3-b2802bc802f0", "type": "lvl1", "url": "/docs/components/accordion", "hierarchy": { "lvl1": "Accordion" } }, { "content": "Installation", - "objectID": "cd6e357d-6ff0-48da-af5e-91b1ac7b6fbb", + "objectID": "a75756eb-747c-4edc-9735-20130810d878", "type": "lvl2", "url": "/docs/components/accordion#installation", "hierarchy": { "lvl1": "Accordion", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "07ac69c7-c1a5-4e79-8c79-95c1361349cc", + "objectID": "83457174-a171-411a-8e35-04dffed6f427", "type": "lvl2", "url": "/docs/components/accordion#import", "hierarchy": { "lvl1": "Accordion", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "21450940-ebc0-4ece-a50f-b944298392a9", + "objectID": "10b25620-3c45-4981-8a8f-acb3f958ecdc", "type": "lvl2", "url": "/docs/components/accordion#usage", "hierarchy": { "lvl1": "Accordion", "lvl2": "Usage", "lvl3": null } }, { "content": "With Subtitle", - "objectID": "5a757a24-2d44-4973-9424-9bd5d83abc44", + "objectID": "ee8b8ea1-cb1c-4097-ab1f-8973b01b205e", "type": "lvl3", "url": "/docs/components/accordion#with-subtitle", "hierarchy": { @@ -281,7 +240,7 @@ }, { "content": "Expand multiple items", - "objectID": "f125892e-96eb-4363-bb86-b8356deaf68d", + "objectID": "33c969e3-3819-43ad-a3bc-e6a5c0ba3f90", "type": "lvl3", "url": "/docs/components/accordion#expand-multiple-items", "hierarchy": { @@ -292,7 +251,7 @@ }, { "content": "Compact", - "objectID": "8b274b03-924d-403f-a2fa-7f165bd2749c", + "objectID": "259d7def-e818-4c27-9008-db96b06141ee", "type": "lvl3", "url": "/docs/components/accordion#compact", "hierarchy": { @@ -303,35 +262,35 @@ }, { "content": "Variants", - "objectID": "027a8f0a-8213-41f4-b4ab-dc95f18477af", + "objectID": "ea91f955-2c08-4a5d-a8f2-255a24b11124", "type": "lvl3", "url": "/docs/components/accordion#variants", "hierarchy": { "lvl1": "Accordion", "lvl2": "Compact", "lvl3": "Variants" } }, { "content": "Light variant", - "objectID": "888c3b26-c866-4427-86de-14906a371348", + "objectID": "65d3b7a9-af3a-47c8-b228-747f0215808e", "type": "lvl4", "url": "/docs/components/accordion#light-variant", "hierarchy": { "lvl1": "Accordion", "lvl2": "Variants", "lvl3": null } }, { "content": "Shadow variant", - "objectID": "e409cbaf-a7a3-4369-b4ed-d1971bf6b3aa", + "objectID": "75e494c4-c02d-4d9a-ae48-84b44a699e77", "type": "lvl4", "url": "/docs/components/accordion#shadow-variant", "hierarchy": { "lvl1": "Accordion", "lvl2": "Light variant", "lvl3": null } }, { "content": "Bordered variant", - "objectID": "fd1726b1-50f8-4d5a-b1c2-0bc98b3ada4d", + "objectID": "566e6275-72a7-4e5a-b271-75f7884a52fb", "type": "lvl4", "url": "/docs/components/accordion#bordered-variant", "hierarchy": { "lvl1": "Accordion", "lvl2": "Shadow variant", "lvl3": null } }, { "content": "Splitted variant", - "objectID": "d6e6ddb6-f6eb-46c0-bac4-34d8e5d54b2b", + "objectID": "55c32949-47eb-4747-b1d9-36a52c26b380", "type": "lvl4", "url": "/docs/components/accordion#splitted-variant", "hierarchy": { @@ -342,7 +301,7 @@ }, { "content": "Default expanded keys", - "objectID": "6ff232b4-7d41-4615-bea2-6565213905da", + "objectID": "e74a7ed3-d501-4a14-a03d-5109dcdda373", "type": "lvl3", "url": "/docs/components/accordion#default-expanded-keys", "hierarchy": { @@ -353,7 +312,7 @@ }, { "content": "Disabled keys", - "objectID": "9816e00a-a992-4686-a5ce-e1677afb27df", + "objectID": "56a5f540-8b6f-4bad-9702-0f6caf2fe9ec", "type": "lvl3", "url": "/docs/components/accordion#disabled-keys", "hierarchy": { @@ -364,7 +323,7 @@ }, { "content": "Start content", - "objectID": "0ef7b942-efb5-40bc-a1c7-c55781d43047", + "objectID": "0938e768-39dc-4cbb-8b06-432a19738ab6", "type": "lvl3", "url": "/docs/components/accordion#start-content", "hierarchy": { @@ -375,7 +334,7 @@ }, { "content": "Custom Indicator", - "objectID": "461a0f16-7401-4401-b08f-391271a92365", + "objectID": "935e6bf6-91a7-46c1-92e6-77f0962c6d1c", "type": "lvl3", "url": "/docs/components/accordion#custom-indicator", "hierarchy": { @@ -386,7 +345,7 @@ }, { "content": "Custom Motion", - "objectID": "2a5dc7d5-7355-4902-998b-e5de1639e78d", + "objectID": "c1e03732-5fc2-44ff-ad3e-ebf8e2a3e6fe", "type": "lvl3", "url": "/docs/components/accordion#custom-motion", "hierarchy": { @@ -397,7 +356,7 @@ }, { "content": "Controlled", - "objectID": "c335e125-2356-4b59-8f07-af00a861af1c", + "objectID": "cf7dda25-e195-496a-a125-ede3c73c46cc", "type": "lvl3", "url": "/docs/components/accordion#controlled", "hierarchy": { @@ -408,7 +367,7 @@ }, { "content": "Accordion Item Slots", - "objectID": "f7f95af2-a4a6-4802-9823-c28dd933952c", + "objectID": "fff52dc0-123a-4f0a-aec1-62691238af4f", "type": "lvl2", "url": "/docs/components/accordion#accordion-item-slots", "hierarchy": { @@ -419,7 +378,7 @@ }, { "content": "Custom Accordion Styles", - "objectID": "b2dbef14-c2ca-4a3b-93df-d839c2afee20", + "objectID": "bc90fa68-e2d9-47e5-a0e8-b78bbd7e9546", "type": "lvl3", "url": "/docs/components/accordion#custom-accordion-styles", "hierarchy": { @@ -430,7 +389,7 @@ }, { "content": "Data Attributes", - "objectID": "7318af55-3ea0-4312-9cc1-522c98b8b91f", + "objectID": "5f72f588-3e04-4d01-ae5d-d478773456a4", "type": "lvl2", "url": "/docs/components/accordion#data-attributes", "hierarchy": { @@ -441,21 +400,21 @@ }, { "content": "Accessibility", - "objectID": "a348fc15-f115-42c1-98ca-0c0015cfc575", + "objectID": "b2927313-09ac-47a2-aa65-2122d6f64439", "type": "lvl2", "url": "/docs/components/accordion#accessibility", "hierarchy": { "lvl1": "Accordion", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "e44c37be-6396-4eb6-ab23-468e1063a358", + "objectID": "4f09a1a3-b59c-4a4d-b460-50142d3ca0ad", "type": "lvl2", "url": "/docs/components/accordion#api", "hierarchy": { "lvl1": "Accordion", "lvl2": "API", "lvl3": null } }, { "content": "Accordion Props", - "objectID": "ef63d82f-4813-4466-a881-4d101a901d7e", + "objectID": "7f5798bc-efe3-4c2c-97da-ac70b000667a", "type": "lvl3", "url": "/docs/components/accordion#accordion-props", "hierarchy": { @@ -466,7 +425,7 @@ }, { "content": "Accordion Events", - "objectID": "61ebf045-128f-4937-8662-8b356a260b77", + "objectID": "8e43caad-1732-4509-afda-b11e6e63a897", "type": "lvl3", "url": "/docs/components/accordion#accordion-events", "hierarchy": { @@ -477,7 +436,7 @@ }, { "content": "Accordion Item Props", - "objectID": "ecf19416-89d9-449f-ad11-8920a0bcaa5f", + "objectID": "a36f0d27-761b-401a-884f-471e93720c9a", "type": "lvl3", "url": "/docs/components/accordion#accordion-item-props", "hierarchy": { @@ -488,7 +447,7 @@ }, { "content": "Accordion Item Events", - "objectID": "9cb509cf-e360-4974-a1e0-dcdb54edcf7a", + "objectID": "4f436dc7-783f-4a39-88ee-a4ff4acfa017", "type": "lvl3", "url": "/docs/components/accordion#accordion-item-events", "hierarchy": { @@ -499,7 +458,7 @@ }, { "content": "Types", - "objectID": "8109dccf-4008-4070-a769-49a5cc1b7d7f", + "objectID": "f7f6c413-dddd-40d9-bed1-53676d9bd7c2", "type": "lvl3", "url": "/docs/components/accordion#types", "hierarchy": { @@ -510,14 +469,14 @@ }, { "content": "Accordion Item Indicator Props", - "objectID": "8aacc034-5480-493f-b562-5fc19f276815", + "objectID": "68527c3a-85fc-42da-be2b-fc6b46cb4904", "type": "lvl4", "url": "/docs/components/accordion#accordion-item-indicator-props", "hierarchy": { "lvl1": "Accordion", "lvl2": "Types", "lvl3": null } }, { "content": "Accordion Item classNames", - "objectID": "5fba150b-5b6b-41ac-a7aa-b5695905649f", + "objectID": "7ecf1844-1657-4a64-ba56-78a14cefb45b", "type": "lvl3", "url": "/docs/components/accordion#accordion-item-classnames", "hierarchy": { @@ -528,7 +487,7 @@ }, { "content": "Motion Props", - "objectID": "8e361e09-ceda-4494-9215-18465038946b", + "objectID": "6a92f1c7-4bbb-4ffb-a1ae-8c58a6d726a2", "type": "lvl4", "url": "/docs/components/accordion#motion-props", "hierarchy": { @@ -537,16 +496,158 @@ "lvl3": null } }, + { + "content": "Alert", + "objectID": "60ee9745-d3c5-4772-9c59-84497d1811d3", + "type": "lvl1", + "url": "/docs/components/alert", + "hierarchy": { "lvl1": "Alert" } + }, + { + "content": "Installation", + "objectID": "96d7c3c6-6f2e-4c5d-bae5-8416c31e28a5", + "type": "lvl2", + "url": "/docs/components/alert#installation", + "hierarchy": { "lvl1": "Alert", "lvl2": "Installation", "lvl3": null } + }, + { + "content": "Import", + "objectID": "5f202a3b-f5a5-431d-b735-3a112d3d4cd9", + "type": "lvl2", + "url": "/docs/components/alert#import", + "hierarchy": { "lvl1": "Alert", "lvl2": "Import", "lvl3": null } + }, + { + "content": "Usage", + "objectID": "1defe855-caaa-4d87-9a85-56fe061e5c88", + "type": "lvl2", + "url": "/docs/components/alert#usage", + "hierarchy": { "lvl1": "Alert", "lvl2": "Usage", "lvl3": null } + }, + { + "content": "Colors", + "objectID": "019508b1-4d8b-41f2-92c5-aad5c5e7f617", + "type": "lvl3", + "url": "/docs/components/alert#colors", + "hierarchy": { "lvl1": "Alert", "lvl2": "Usage", "lvl3": "Colors" } + }, + { + "content": "Variants", + "objectID": "d1917c48-7c07-49de-b3c4-e544e172ab30", + "type": "lvl3", + "url": "/docs/components/alert#variants", + "hierarchy": { "lvl1": "Alert", "lvl2": "Colors", "lvl3": "Variants" } + }, + { + "content": "Radius", + "objectID": "b9ac3aa1-641a-4c42-9f39-6500593580d6", + "type": "lvl3", + "url": "/docs/components/alert#radius", + "hierarchy": { "lvl1": "Alert", "lvl2": "Variants", "lvl3": "Radius" } + }, + { + "content": "With Icon", + "objectID": "b18fa181-97c4-4cff-908f-6ee71b60b250", + "type": "lvl3", + "url": "/docs/components/alert#with-icon", + "hierarchy": { "lvl1": "Alert", "lvl2": "Radius", "lvl3": "With Icon" } + }, + { + "content": "With Action", + "objectID": "b5fb5052-8e77-4765-9fe9-8e18ab4a8e2a", + "type": "lvl3", + "url": "/docs/components/alert#with-action", + "hierarchy": { "lvl1": "Alert", "lvl2": "With Icon", "lvl3": "With Action" } + }, + { + "content": "Controlled Visibility", + "objectID": "f42bbcd7-6bfe-4f36-8d50-b77b75017b9f", + "type": "lvl3", + "url": "/docs/components/alert#controlled-visibility", + "hierarchy": { + "lvl1": "Alert", + "lvl2": "With Action", + "lvl3": "Controlled Visibility" + } + }, + { + "content": "Custom Styles", + "objectID": "62463354-fc76-49c1-9de9-0fe333b79e24", + "type": "lvl3", + "url": "/docs/components/alert#custom-styles", + "hierarchy": { + "lvl1": "Alert", + "lvl2": "Controlled Visibility", + "lvl3": "Custom Styles" + } + }, + { + "content": "Custom Implementation", + "objectID": "c631d704-75f8-49c8-8b2a-e141e613f0ee", + "type": "lvl3", + "url": "/docs/components/alert#custom-implementation", + "hierarchy": { + "lvl1": "Alert", + "lvl2": "Custom Styles", + "lvl3": "Custom Implementation" + } + }, + { + "content": "Data Attributes", + "objectID": "f818f431-949d-46fb-9f57-a1f6d20bafef", + "type": "lvl2", + "url": "/docs/components/alert#data-attributes", + "hierarchy": { "lvl1": "Alert", "lvl2": "Data Attributes", "lvl3": null } + }, + { + "content": "Slots", + "objectID": "86e42e06-6142-40fe-a79e-b0e821b4f208", + "type": "lvl3", + "url": "/docs/components/alert#slots", + "hierarchy": { "lvl1": "Alert", "lvl2": "Data Attributes", "lvl3": "Slots" } + }, + { + "content": "Accessibility", + "objectID": "24b416fe-f272-4063-9f6b-e78adc4e9bfc", + "type": "lvl2", + "url": "/docs/components/alert#accessibility", + "hierarchy": { "lvl1": "Alert", "lvl2": "Accessibility", "lvl3": null } + }, + { + "content": "API", + "objectID": "c47e01e2-706d-48a6-94b7-a60653c33028", + "type": "lvl2", + "url": "/docs/components/alert#api", + "hierarchy": { "lvl1": "Alert", "lvl2": "API", "lvl3": null } + }, + { + "content": "Alert Props", + "objectID": "6bd34c5d-bf41-42e3-867b-70302d9561c2", + "type": "lvl3", + "url": "/docs/components/alert#alert-props", + "hierarchy": { "lvl1": "Alert", "lvl2": "API", "lvl3": "Alert Props" } + }, + { + "content": "Alert Events", + "objectID": "2707b926-f063-4e5f-827a-d92b816be70b", + "type": "lvl3", + "url": "/docs/components/alert#alert-events", + "hierarchy": { + "lvl1": "Alert", + "lvl2": "Alert Props", + "lvl3": "Alert Events" + } + }, { "content": "Autocomplete", - "objectID": "3becd62f-9d70-4cd0-abcd-7af2f64cb7a7", + "objectID": "439255c2-25d2-4ff3-97df-b7be8c1c13f1", "type": "lvl1", "url": "/docs/components/autocomplete", "hierarchy": { "lvl1": "Autocomplete" } }, { "content": "Installation", - "objectID": "4621be9a-8e76-49e9-8efb-747e0dc40248", + "objectID": "811c1484-01fe-4d23-ab53-53f0e76acd5a", "type": "lvl2", "url": "/docs/components/autocomplete#installation", "hierarchy": { @@ -557,21 +658,21 @@ }, { "content": "Import", - "objectID": "644c1971-f7b0-4b99-8354-ad7f2900e92b", + "objectID": "23af30f6-120f-4706-865f-b7ea387d2ac7", "type": "lvl2", "url": "/docs/components/autocomplete#import", "hierarchy": { "lvl1": "Autocomplete", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "23b83c99-9f7d-4d51-b896-8d4b18418db1", + "objectID": "b73376eb-d8cd-4e25-9e7d-92d32df83565", "type": "lvl2", "url": "/docs/components/autocomplete#usage", "hierarchy": { "lvl1": "Autocomplete", "lvl2": "Usage", "lvl3": null } }, { "content": "Dynamic items", - "objectID": "87a9494c-4de8-4a1d-beca-6ea76d131fcb", + "objectID": "e4109521-8df3-441b-a371-b23ac3f146e8", "type": "lvl3", "url": "/docs/components/autocomplete#dynamic-items", "hierarchy": { @@ -582,7 +683,7 @@ }, { "content": "Disabled", - "objectID": "ac4c838f-01aa-406a-b3ed-278df8b670ca", + "objectID": "6f3d81c0-1d72-4d89-9d29-7ae00db6edc6", "type": "lvl3", "url": "/docs/components/autocomplete#disabled", "hierarchy": { @@ -593,7 +694,7 @@ }, { "content": "Disabled Items", - "objectID": "cfe2f0f6-04b2-4946-8359-e45d772e9b6d", + "objectID": "18a0b4e5-5bd9-4fbe-9aa0-90177a087af7", "type": "lvl3", "url": "/docs/components/autocomplete#disabled-items", "hierarchy": { @@ -604,7 +705,7 @@ }, { "content": "Required", - "objectID": "ae913601-c241-4c20-a695-f6488802a308", + "objectID": "e4fccf43-97c7-4375-a4da-0601c9e48646", "type": "lvl3", "url": "/docs/components/autocomplete#required", "hierarchy": { @@ -613,23 +714,38 @@ "lvl3": "Required" } }, + { + "content": "Read Only", + "objectID": "7d395bf9-b39b-40ff-b364-c5243d23ec8e", + "type": "lvl3", + "url": "/docs/components/autocomplete#read-only", + "hierarchy": { + "lvl1": "Autocomplete", + "lvl2": "Required", + "lvl3": "Read Only" + } + }, { "content": "Sizes", - "objectID": "914609ae-d437-422b-90f1-a415ff2e6c67", + "objectID": "0db11920-fbc3-4535-a2d4-2de4e2c0112e", "type": "lvl3", "url": "/docs/components/autocomplete#sizes", - "hierarchy": { "lvl1": "Autocomplete", "lvl2": "Required", "lvl3": "Sizes" } + "hierarchy": { + "lvl1": "Autocomplete", + "lvl2": "Read Only", + "lvl3": "Sizes" + } }, { "content": "Colors", - "objectID": "8462a655-c43a-45a9-ba0b-8abcdcc56246", + "objectID": "82d5bcf7-fd16-4582-a405-35200fd656ae", "type": "lvl3", "url": "/docs/components/autocomplete#colors", "hierarchy": { "lvl1": "Autocomplete", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "5fe3392e-d7d5-415f-85a0-a9252cafb8e6", + "objectID": "dfe53696-4290-4375-b5f1-eb91ab24cedd", "type": "lvl3", "url": "/docs/components/autocomplete#variants", "hierarchy": { @@ -640,7 +756,7 @@ }, { "content": "Label Placements", - "objectID": "8b0774b1-5fa9-4b45-8bda-1c892c346693", + "objectID": "b74f8fa9-2b5d-47ef-8779-5f81d7c9a3e1", "type": "lvl3", "url": "/docs/components/autocomplete#label-placements", "hierarchy": { @@ -651,7 +767,7 @@ }, { "content": "Start Content", - "objectID": "7f4f6c39-c5a4-4120-9ed2-e7a34f2932e3", + "objectID": "ff8f9374-2aa3-4b79-997f-d7f2bc6fc179", "type": "lvl3", "url": "/docs/components/autocomplete#start-content", "hierarchy": { @@ -662,7 +778,7 @@ }, { "content": "Item Start & End Content", - "objectID": "f4ca4433-3988-4468-aaea-4a6eac268434", + "objectID": "9b5c456c-709b-4f00-95c6-05b9369d8b09", "type": "lvl3", "url": "/docs/components/autocomplete#item-start--end-content", "hierarchy": { @@ -673,7 +789,7 @@ }, { "content": "Custom Value", - "objectID": "df83129f-e8ad-4441-92c1-bbb3386b7bf5", + "objectID": "d98a8939-b977-40c7-84d6-ddda65a29e36", "type": "lvl3", "url": "/docs/components/autocomplete#custom-value", "hierarchy": { @@ -684,7 +800,7 @@ }, { "content": "Custom Selector Icon", - "objectID": "df5b4cb9-f863-4059-a711-ee18c448d71e", + "objectID": "eaba888c-7fc7-4e1d-b49b-88569794de2c", "type": "lvl3", "url": "/docs/components/autocomplete#custom-selector-icon", "hierarchy": { @@ -695,7 +811,7 @@ }, { "content": "Without Scroll Shadow", - "objectID": "64b0d65b-b40e-4ab6-8cf9-937849a41d08", + "objectID": "a53ac55d-37a4-48b3-a1a1-f41d7f87b3d0", "type": "lvl3", "url": "/docs/components/autocomplete#without-scroll-shadow", "hierarchy": { @@ -706,7 +822,7 @@ }, { "content": "With Description", - "objectID": "db55ccd8-d8d7-4575-8517-d914ed95ad24", + "objectID": "48253db8-0bfb-44b0-82ae-e56014497217", "type": "lvl3", "url": "/docs/components/autocomplete#with-description", "hierarchy": { @@ -717,7 +833,7 @@ }, { "content": "With Error Message", - "objectID": "6ec8d383-ee94-4989-9cdd-d659d2367978", + "objectID": "ae1988a9-c5c0-438b-be97-2d1ebc187624", "type": "lvl3", "url": "/docs/components/autocomplete#with-error-message", "hierarchy": { @@ -728,7 +844,7 @@ }, { "content": "Events", - "objectID": "1de6fad9-f41d-4c10-b3dc-e20d3f713da0", + "objectID": "d630e0f4-0424-4a3f-9f43-59b069ff7b22", "type": "lvl3", "url": "/docs/components/autocomplete#events", "hierarchy": { @@ -739,7 +855,7 @@ }, { "content": "Controlled", - "objectID": "3b7af639-4ce6-475c-900d-bc35d3c5a405", + "objectID": "b1184288-2886-4c97-81f2-dc946763433d", "type": "lvl3", "url": "/docs/components/autocomplete#controlled", "hierarchy": { @@ -750,7 +866,7 @@ }, { "content": "Fully Controlled", - "objectID": "2f0e5117-4dc9-4fd0-85fd-a49254c3c2ef", + "objectID": "677c90d1-d9be-407d-9f33-d18693c719d5", "type": "lvl3", "url": "/docs/components/autocomplete#fully-controlled", "hierarchy": { @@ -761,7 +877,7 @@ }, { "content": "Custom Items", - "objectID": "df92cd1e-aa96-4652-a73d-7dba6427e2b8", + "objectID": "dc881745-6374-4acb-8301-0207f6c62185", "type": "lvl3", "url": "/docs/components/autocomplete#custom-items", "hierarchy": { @@ -770,20 +886,31 @@ "lvl3": "Custom Items" } }, + { + "content": "Custom Empty Content Message", + "objectID": "ae47410b-7780-4c9c-9fd1-55ccfb4a1e3a", + "type": "lvl3", + "url": "/docs/components/autocomplete#custom-empty-content-message", + "hierarchy": { + "lvl1": "Autocomplete", + "lvl2": "Custom Items", + "lvl3": "Custom Empty Content Message" + } + }, { "content": "Custom Filtering", - "objectID": "00bc06dc-9b5e-432f-8734-830aedaaecb9", + "objectID": "bcbf50ba-1a2c-4344-9986-07eec076e353", "type": "lvl3", "url": "/docs/components/autocomplete#custom-filtering", "hierarchy": { "lvl1": "Autocomplete", - "lvl2": "Custom Items", + "lvl2": "Custom Empty Content Message", "lvl3": "Custom Filtering" } }, { "content": "Asynchronous Filtering", - "objectID": "70d420e2-167a-4089-b229-b0cafe2320a1", + "objectID": "6b6c3589-d751-446d-8c20-6b151d2f0a5c", "type": "lvl3", "url": "/docs/components/autocomplete#asynchronous-filtering", "hierarchy": { @@ -794,7 +921,7 @@ }, { "content": "Asynchronous Loading", - "objectID": "d1dc3946-853e-47ac-88e6-d11141a93db0", + "objectID": "f0136e41-dabf-492a-8cfa-b176db0518fd", "type": "lvl3", "url": "/docs/components/autocomplete#asynchronous-loading", "hierarchy": { @@ -805,7 +932,7 @@ }, { "content": "With Sections", - "objectID": "e5c8af81-4fb7-400c-be37-6379f50f955b", + "objectID": "614eb3cc-be19-4022-959e-172b33b3a0cd", "type": "lvl3", "url": "/docs/components/autocomplete#with-sections", "hierarchy": { @@ -816,7 +943,7 @@ }, { "content": "Custom Sections Style", - "objectID": "c36945d3-9656-4ea8-b2ec-a4f4b7b0d9b6", + "objectID": "bcf4db3d-c473-4f88-84be-8c35598119f2", "type": "lvl3", "url": "/docs/components/autocomplete#custom-sections-style", "hierarchy": { @@ -827,7 +954,7 @@ }, { "content": "Customizing the Autocomplete", - "objectID": "8c67a5ce-65f0-49fc-8ed2-2cb0648a91db", + "objectID": "0887b476-dea3-4d3c-afad-b96a992f2f5f", "type": "lvl3", "url": "/docs/components/autocomplete#customizing-the-autocomplete", "hierarchy": { @@ -838,14 +965,14 @@ }, { "content": "Slots", - "objectID": "ae3d4a3d-28cd-4f55-8e29-588c2d637425", + "objectID": "14bc5069-a9a6-441e-8404-036f8346eeb5", "type": "lvl2", "url": "/docs/components/autocomplete#slots", "hierarchy": { "lvl1": "Autocomplete", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "2591a995-1059-4996-b743-06cb2e5cf684", + "objectID": "97f7585f-c8ab-4cfb-96aa-4d777b480af0", "type": "lvl2", "url": "/docs/components/autocomplete#data-attributes", "hierarchy": { @@ -856,7 +983,7 @@ }, { "content": "Accessibility", - "objectID": "cd6820ad-4a40-4a65-8fc0-1f80208a515f", + "objectID": "9f4af480-d7ed-4e83-80cc-5059bcb2c161", "type": "lvl2", "url": "/docs/components/autocomplete#accessibility", "hierarchy": { @@ -867,14 +994,14 @@ }, { "content": "API", - "objectID": "4607a4f8-0967-49f6-9f91-630c2ef3aa19", + "objectID": "cedf2e78-7a9b-4e0b-a182-ad46683d91da", "type": "lvl2", "url": "/docs/components/autocomplete#api", "hierarchy": { "lvl1": "Autocomplete", "lvl2": "API", "lvl3": null } }, { "content": "Autocomplete Props", - "objectID": "75c5d4f4-822e-4de8-8950-cdf242294761", + "objectID": "754dd743-ca16-4bf8-9118-0d6fce255466", "type": "lvl3", "url": "/docs/components/autocomplete#autocomplete-props", "hierarchy": { @@ -885,7 +1012,7 @@ }, { "content": "Autocomplete Events", - "objectID": "363af6c5-c4e3-4798-becb-e949ed005b9a", + "objectID": "5d6e2aa2-a165-480d-a3ba-18c3bc65c8d8", "type": "lvl3", "url": "/docs/components/autocomplete#autocomplete-events", "hierarchy": { @@ -896,7 +1023,7 @@ }, { "content": "AutocompleteItem Props", - "objectID": "224f3b6b-ef2a-4df4-b1df-790c87b45b3b", + "objectID": "a938d33e-774a-45bd-8490-c97b9d0f49a7", "type": "lvl3", "url": "/docs/components/autocomplete#autocompleteitem-props", "hierarchy": { @@ -907,7 +1034,7 @@ }, { "content": "AutocompleteItem Events", - "objectID": "80885383-ed85-49fd-b985-611e38299d9d", + "objectID": "e1b5e1c0-17dd-4ceb-9ab7-ebd2ba1f884b", "type": "lvl3", "url": "/docs/components/autocomplete#autocompleteitem-events", "hierarchy": { @@ -918,7 +1045,7 @@ }, { "content": "AutocompleteSection Props", - "objectID": "245b3ad9-70f5-43a2-9748-2518e516a858", + "objectID": "34d1eb47-663a-41d3-9e34-42d25617b007", "type": "lvl3", "url": "/docs/components/autocomplete#autocompletesection-props", "hierarchy": { @@ -929,7 +1056,7 @@ }, { "content": "Types", - "objectID": "496986c0-9694-4cce-b15a-6ac1c84cbedc", + "objectID": "331a3de2-5d1f-4e0e-8ba6-f179dfa17f34", "type": "lvl3", "url": "/docs/components/autocomplete#types", "hierarchy": { @@ -940,77 +1067,77 @@ }, { "content": "Menu Trigger Action", - "objectID": "61a66fd8-ae17-4339-8b4a-ade6b942283b", + "objectID": "fc7c08d0-515e-4915-8998-4fd81d808061", "type": "lvl4", "url": "/docs/components/autocomplete#menu-trigger-action", "hierarchy": { "lvl1": "Autocomplete", "lvl2": "Types", "lvl3": null } }, { "content": "Avatar", - "objectID": "29c38e92-affc-47af-964f-b229d2583e0a", + "objectID": "36b3a66f-1591-477a-8dc6-5cef4c50b56a", "type": "lvl1", "url": "/docs/components/avatar", "hierarchy": { "lvl1": "Avatar" } }, { "content": "Installation", - "objectID": "0f433b11-15af-4242-aefe-02b5c17212ce", + "objectID": "221a240b-6f79-4c6b-836b-7de55ac79d47", "type": "lvl2", "url": "/docs/components/avatar#installation", "hierarchy": { "lvl1": "Avatar", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "89787991-5d9a-4ad7-9276-7b27ad85232b", + "objectID": "487678ef-b5e3-4f5a-a6a4-25e8b96e36cd", "type": "lvl2", "url": "/docs/components/avatar#import", "hierarchy": { "lvl1": "Avatar", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "cdf01bae-0daf-48c4-96b6-49c794a54d55", + "objectID": "25af01a7-0ee2-4248-bad3-4dd39c0965ba", "type": "lvl2", "url": "/docs/components/avatar#usage", "hierarchy": { "lvl1": "Avatar", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "fb4f4754-a55f-4520-8823-7dc9b6119500", + "objectID": "9ffa9dba-6e6b-43c3-ab54-0dec81d8a4ba", "type": "lvl3", "url": "/docs/components/avatar#sizes", "hierarchy": { "lvl1": "Avatar", "lvl2": "Usage", "lvl3": "Sizes" } }, { "content": "Disabled", - "objectID": "a20290e1-9b1e-45a6-93df-c2a1e011b534", + "objectID": "a67f1977-6764-4e15-8873-56c659a9852f", "type": "lvl3", "url": "/docs/components/avatar#disabled", "hierarchy": { "lvl1": "Avatar", "lvl2": "Sizes", "lvl3": "Disabled" } }, { "content": "Bordered", - "objectID": "8ab0e93a-d8b0-487e-a31e-dfcbe81a2466", + "objectID": "e72171fa-7315-4ba4-9d5b-4c57105fe3a5", "type": "lvl3", "url": "/docs/components/avatar#bordered", "hierarchy": { "lvl1": "Avatar", "lvl2": "Disabled", "lvl3": "Bordered" } }, { "content": "Radius", - "objectID": "d67eba4a-41d4-402c-9ae2-90723cfb8e7c", + "objectID": "91de0a52-5cf8-4088-9b73-f8fbc7b86f5e", "type": "lvl3", "url": "/docs/components/avatar#radius", "hierarchy": { "lvl1": "Avatar", "lvl2": "Bordered", "lvl3": "Radius" } }, { "content": "Colors", - "objectID": "5f5a8c69-e7c4-43e1-9d72-2aecaa99193b", + "objectID": "9048d8d9-d203-4fa0-871e-536b516aa8db", "type": "lvl3", "url": "/docs/components/avatar#colors", "hierarchy": { "lvl1": "Avatar", "lvl2": "Radius", "lvl3": "Colors" } }, { "content": "Avatar Fallbacks", - "objectID": "0b5b1cb8-c741-43de-9be8-2fedcce85054", + "objectID": "8b1b1be3-9cbd-40a1-856d-beb942f99d52", "type": "lvl3", "url": "/docs/components/avatar#avatar-fallbacks", "hierarchy": { @@ -1021,7 +1148,7 @@ }, { "content": "Custom Fallback", - "objectID": "912816be-48e9-449c-9f7b-0ea5e55a0b94", + "objectID": "8f8ecf45-69e9-4970-ab5c-8646dadc87ea", "type": "lvl3", "url": "/docs/components/avatar#custom-fallback", "hierarchy": { @@ -1032,7 +1159,7 @@ }, { "content": "Custom Implementation", - "objectID": "12238cc8-a0e8-42e7-971d-79cbed64e996", + "objectID": "832be9d3-d876-4f3f-95a5-9a5715434d8a", "type": "lvl3", "url": "/docs/components/avatar#custom-implementation", "hierarchy": { @@ -1043,7 +1170,7 @@ }, { "content": "Custom initials logic", - "objectID": "5c9cc76c-9850-4abb-8f97-ff8a4002e8f2", + "objectID": "a223f56b-0bd0-4f78-8718-7046ae98f16e", "type": "lvl3", "url": "/docs/components/avatar#custom-initials-logic", "hierarchy": { @@ -1054,14 +1181,14 @@ }, { "content": "Avatar Group", - "objectID": "68cf3750-7d1f-4d32-8418-ee85ee55b645", + "objectID": "1e1b3280-e9d8-4933-aa1f-ad5bfe9b2338", "type": "lvl2", "url": "/docs/components/avatar#avatar-group", "hierarchy": { "lvl1": "Avatar", "lvl2": "Avatar Group", "lvl3": null } }, { "content": "Group Disabled", - "objectID": "b02c35ee-1077-458d-9cbb-560c382c6974", + "objectID": "ecfcacbd-80ed-4d7b-b39f-877fdd490b5b", "type": "lvl3", "url": "/docs/components/avatar#group-disabled", "hierarchy": { @@ -1072,7 +1199,7 @@ }, { "content": "Group Max Count", - "objectID": "acfd54d6-0d84-4221-859d-a6ced2e6ef65", + "objectID": "1bdbd9ba-9ec8-4b37-9b7b-00161f008490", "type": "lvl3", "url": "/docs/components/avatar#group-max-count", "hierarchy": { @@ -1083,7 +1210,7 @@ }, { "content": "Group Total Count", - "objectID": "0d1de79a-0ee3-454a-bb75-095ecfa3e1d7", + "objectID": "24e35655-b550-4a5c-9153-051c6e564442", "type": "lvl3", "url": "/docs/components/avatar#group-total-count", "hierarchy": { @@ -1094,7 +1221,7 @@ }, { "content": "Group Custom count", - "objectID": "3212264b-7e6a-4f43-86ae-db08e94ff10b", + "objectID": "828ed0f6-7efa-4151-be40-b3da17f61c81", "type": "lvl3", "url": "/docs/components/avatar#group-custom-count", "hierarchy": { @@ -1105,7 +1232,7 @@ }, { "content": "Group Grid", - "objectID": "d9181be8-fe17-4291-b61b-dca47d098078", + "objectID": "ca275b99-fe6f-4c17-97a1-d749ada69cef", "type": "lvl3", "url": "/docs/components/avatar#group-grid", "hierarchy": { @@ -1116,7 +1243,7 @@ }, { "content": "Group Custom Implementation", - "objectID": "aac1a453-7281-4aa9-b38e-a19b55ccd05e", + "objectID": "5de99526-dd99-48bf-aacc-934f106526d0", "type": "lvl3", "url": "/docs/components/avatar#group-custom-implementation", "hierarchy": { @@ -1127,14 +1254,14 @@ }, { "content": "Slots", - "objectID": "21d2ec8b-6e7d-405f-853f-303ba19fede0", + "objectID": "3fbb6a6a-4b09-45cc-b334-3ad40c11ff36", "type": "lvl2", "url": "/docs/components/avatar#slots", "hierarchy": { "lvl1": "Avatar", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Avatar Styles", - "objectID": "cb632837-936f-4a83-87e8-cc769b689869", + "objectID": "bba707ae-512d-4e7b-a618-2339d6fc5290", "type": "lvl3", "url": "/docs/components/avatar#custom-avatar-styles", "hierarchy": { @@ -1145,28 +1272,28 @@ }, { "content": "Data Attributes", - "objectID": "61e79aae-02af-4b97-805f-97a56f27294c", + "objectID": "f6ed5290-016f-4396-ac0e-98f6178f4253", "type": "lvl2", "url": "/docs/components/avatar#data-attributes", "hierarchy": { "lvl1": "Avatar", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "API", - "objectID": "28db8d80-6266-46dc-bb37-0d87af0ef818", + "objectID": "0804fc7b-a1e8-4a98-8a5b-e2881689521f", "type": "lvl2", "url": "/docs/components/avatar#api", "hierarchy": { "lvl1": "Avatar", "lvl2": "API", "lvl3": null } }, { "content": "Avatar Props", - "objectID": "541ad6af-0f7c-4795-b31e-916768abf9f3", + "objectID": "0b965799-ea12-429e-82d3-717f038b809a", "type": "lvl3", "url": "/docs/components/avatar#avatar-props", "hierarchy": { "lvl1": "Avatar", "lvl2": "API", "lvl3": "Avatar Props" } }, { "content": "Avatar Group Props", - "objectID": "f120402b-f717-4169-94b9-3e420963ebe4", + "objectID": "5689c59f-4803-420e-8460-267c33238324", "type": "lvl3", "url": "/docs/components/avatar#avatar-group-props", "hierarchy": { @@ -1177,70 +1304,70 @@ }, { "content": "Badge", - "objectID": "c6bd7149-6d6d-4bec-87e2-aa24334c3b65", + "objectID": "5984f4ea-431a-41e6-9487-8be499498b65", "type": "lvl1", "url": "/docs/components/badge", "hierarchy": { "lvl1": "Badge" } }, { "content": "Installation", - "objectID": "0ee5a964-142a-44fa-8ff3-c5a6730f4ed9", + "objectID": "f4f39786-87a7-47ac-9a77-dfb6e843172e", "type": "lvl2", "url": "/docs/components/badge#installation", "hierarchy": { "lvl1": "Badge", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "424ff614-c517-4d88-afef-5a71b6a04396", + "objectID": "10d92ffe-1596-4bdd-b36c-a18f828aac81", "type": "lvl2", "url": "/docs/components/badge#import", "hierarchy": { "lvl1": "Badge", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "19a476a0-8492-47df-8f29-e1557a1323c4", + "objectID": "d22c1493-2946-4bfc-bdfc-75ed721c8e98", "type": "lvl2", "url": "/docs/components/badge#usage", "hierarchy": { "lvl1": "Badge", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "bcd7368f-a676-4b57-8827-cb4610a9fa32", + "objectID": "fe96fdc3-e37c-4530-9ec8-8c7cff662aa9", "type": "lvl3", "url": "/docs/components/badge#sizes", "hierarchy": { "lvl1": "Badge", "lvl2": "Usage", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "9f55ca14-05c3-4e86-80ad-d41badcfc6e1", + "objectID": "0b6c6b8e-c8ca-4c4a-83b5-cae053e18861", "type": "lvl3", "url": "/docs/components/badge#colors", "hierarchy": { "lvl1": "Badge", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "8a346ab2-8d5a-4d9f-afcd-d0bc9cb4d509", + "objectID": "2ed6ca37-f9a2-42b2-9997-6ef3818a5a20", "type": "lvl3", "url": "/docs/components/badge#variants", "hierarchy": { "lvl1": "Badge", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "Placements", - "objectID": "8e249dc4-29ef-4f1a-85b6-96a8524cb40d", + "objectID": "8c6830e5-62f1-40b5-8a3c-2b3359b5efcc", "type": "lvl3", "url": "/docs/components/badge#placements", "hierarchy": { "lvl1": "Badge", "lvl2": "Variants", "lvl3": "Placements" } }, { "content": "Shapes", - "objectID": "6dc02a23-cb26-4bee-ad09-debc29ba2aef", + "objectID": "09a13110-2300-48e8-8c61-b7167d0d79a2", "type": "lvl3", "url": "/docs/components/badge#shapes", "hierarchy": { "lvl1": "Badge", "lvl2": "Placements", "lvl3": "Shapes" } }, { "content": "Badge Visibility", - "objectID": "7e874620-6128-41ac-9ec3-8ab9069aaf00", + "objectID": "e2ec00c2-8f93-4c12-b7bc-ee8236ff1d9f", "type": "lvl3", "url": "/docs/components/badge#badge-visibility", "hierarchy": { @@ -1251,7 +1378,7 @@ }, { "content": "Content Examples", - "objectID": "1e1671df-b667-45c6-9e14-f5f7d2a530c4", + "objectID": "dc19276e-3c6f-4c73-bf51-bbd9a12dcc5e", "type": "lvl3", "url": "/docs/components/badge#content-examples", "hierarchy": { @@ -1262,7 +1389,7 @@ }, { "content": "Disable Outline", - "objectID": "cdb30d8e-e258-4857-8539-3c76a8eefdba", + "objectID": "70980c04-2075-40a4-a0d7-f9d3d827d034", "type": "lvl3", "url": "/docs/components/badge#disable-outline", "hierarchy": { @@ -1273,7 +1400,7 @@ }, { "content": "Accessibility", - "objectID": "1ec6d74c-78ad-4fec-b341-ee866c54696b", + "objectID": "5f2f4202-eab6-4208-b077-08b78a98e068", "type": "lvl3", "url": "/docs/components/badge#accessibility", "hierarchy": { @@ -1282,79 +1409,86 @@ "lvl3": "Accessibility" } }, + { + "content": "Slots", + "objectID": "7481ff6a-f532-493b-92bc-2efb61264ec4", + "type": "lvl2", + "url": "/docs/components/badge#slots", + "hierarchy": { "lvl1": "Badge", "lvl2": "Slots", "lvl3": null } + }, { "content": "API", - "objectID": "abbeb08c-f657-4196-a8fe-205c2bba1dde", + "objectID": "0922268a-6a10-4d5c-87b1-bb873d86f0cc", "type": "lvl2", "url": "/docs/components/badge#api", "hierarchy": { "lvl1": "Badge", "lvl2": "API", "lvl3": null } }, { "content": "Badge Props", - "objectID": "39ba3755-ec3b-487f-aa06-9fa68a117373", + "objectID": "8e233e09-e7fb-4435-9d0e-42a0ac685e87", "type": "lvl3", "url": "/docs/components/badge#badge-props", "hierarchy": { "lvl1": "Badge", "lvl2": "API", "lvl3": "Badge Props" } }, { "content": "Breadcrumbs", - "objectID": "31d24f70-b4fc-4eb2-b646-dd52e170e683", + "objectID": "6b94ec77-de23-467a-b767-991b57edd49c", "type": "lvl1", "url": "/docs/components/breadcrumbs", "hierarchy": { "lvl1": "Breadcrumbs" } }, { "content": "Installation", - "objectID": "87729cc3-041c-4b73-8555-0ea2d69bb4ea", + "objectID": "1fd4719f-fea7-4254-aa4e-966a29658f28", "type": "lvl2", "url": "/docs/components/breadcrumbs#installation", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "fc76a010-4058-4c26-8f41-6bacdb22f821", + "objectID": "d3a6dcdd-e3f4-4f16-b1fa-51e39b9f57b4", "type": "lvl2", "url": "/docs/components/breadcrumbs#import", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "30ae577d-dc96-45a4-ab31-d2a2f6afb227", + "objectID": "dc2c1a82-f2af-4b42-bdc5-ad3c0610380e", "type": "lvl2", "url": "/docs/components/breadcrumbs#usage", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "8b0669f2-e4ff-4a3c-8d7f-e9500391f3b1", + "objectID": "0c95a1f8-d1e3-4ffb-9ecc-a00cc18b91db", "type": "lvl3", "url": "/docs/components/breadcrumbs#disabled", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Sizes", - "objectID": "0a91f09c-e94e-4f5e-81cb-2d51d8d91de0", + "objectID": "b9344d64-0248-45b7-8e6e-e52a67720fff", "type": "lvl3", "url": "/docs/components/breadcrumbs#sizes", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Disabled", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "5254ef8e-f823-40bf-863b-08b521045037", + "objectID": "492ec6b4-3409-4715-8918-7b6affcf0a72", "type": "lvl3", "url": "/docs/components/breadcrumbs#colors", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "312dfa2d-a480-4329-917c-d8863a8d8def", + "objectID": "60aafb4e-75f7-4aa7-932d-9824ec10cdb2", "type": "lvl3", "url": "/docs/components/breadcrumbs#variants", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "Underlines", - "objectID": "449d8a81-1870-4c1e-af9f-f9a162d8ed00", + "objectID": "56c0aa48-3bef-4374-8a5c-377378e1afec", "type": "lvl3", "url": "/docs/components/breadcrumbs#underlines", "hierarchy": { @@ -1365,7 +1499,7 @@ }, { "content": "Radius", - "objectID": "fcc06440-08db-4603-bf55-89970188fcc4", + "objectID": "a505f0d1-c167-486d-b1bb-c0ab0ec38079", "type": "lvl3", "url": "/docs/components/breadcrumbs#radius", "hierarchy": { @@ -1376,14 +1510,14 @@ }, { "content": "Routing", - "objectID": "61dcddac-bb4f-4a0b-a555-1f6ea5cebab3", + "objectID": "5db70abb-28d6-497b-bf2c-000bf173a0c4", "type": "lvl3", "url": "/docs/components/breadcrumbs#routing", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Radius", "lvl3": "Routing" } }, { "content": "Controlled", - "objectID": "3dd72a59-0f23-4f09-ae16-64c9dd83e4d6", + "objectID": "99836a02-216b-4491-bfed-4f1161dbca65", "type": "lvl3", "url": "/docs/components/breadcrumbs#controlled", "hierarchy": { @@ -1394,7 +1528,7 @@ }, { "content": "Menu Type", - "objectID": "a0ea123e-dee9-4051-9e85-7a1bdef9c9cc", + "objectID": "02729be3-a3b2-4055-9ec7-44e57d265303", "type": "lvl3", "url": "/docs/components/breadcrumbs#menu-type", "hierarchy": { @@ -1405,7 +1539,7 @@ }, { "content": "Start & End Content", - "objectID": "a04a0931-2ec5-4ffe-ad86-40a24ca9f1fb", + "objectID": "485fbbe4-27ab-45c5-93bd-9d0d740a1d86", "type": "lvl3", "url": "/docs/components/breadcrumbs#start--end-content", "hierarchy": { @@ -1416,7 +1550,7 @@ }, { "content": "Custom Separator", - "objectID": "755d3896-dec8-455f-8dd0-daa7621ca219", + "objectID": "cf058432-3776-4d95-9abe-999c76cb7031", "type": "lvl3", "url": "/docs/components/breadcrumbs#custom-separator", "hierarchy": { @@ -1427,7 +1561,7 @@ }, { "content": "Custom Items", - "objectID": "b79c2457-c8ce-439b-bbb1-7452bdc0b9cc", + "objectID": "6403b894-bc42-4b94-b60e-cd5874f84fe3", "type": "lvl3", "url": "/docs/components/breadcrumbs#custom-items", "hierarchy": { @@ -1438,7 +1572,7 @@ }, { "content": "Collapsing Items", - "objectID": "3b3d4775-5947-431f-8250-ec7959a86a14", + "objectID": "cceebebb-b744-4802-af6a-d143818c7b52", "type": "lvl3", "url": "/docs/components/breadcrumbs#collapsing-items", "hierarchy": { @@ -1449,7 +1583,7 @@ }, { "content": "Customizing the Ellipsis Item", - "objectID": "a17f0daf-f976-4840-8081-9aa7b6834fc7", + "objectID": "5ad8cebb-567c-4a4c-b947-c9333876972d", "type": "lvl3", "url": "/docs/components/breadcrumbs#customizing-the-ellipsis-item", "hierarchy": { @@ -1460,14 +1594,14 @@ }, { "content": "Slots", - "objectID": "6a49a9ed-f061-43f5-9f85-1beef6a74ff9", + "objectID": "be40061c-596f-4355-9738-15a48c58062d", "type": "lvl2", "url": "/docs/components/breadcrumbs#slots", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Slots", "lvl3": null } }, { "content": "Customizing the Breadcrumbs Styles", - "objectID": "7d409a2b-cc95-49f7-ac3f-0b17c167db90", + "objectID": "3d2ac8cf-4bb9-4501-b4d6-c18463c128df", "type": "lvl3", "url": "/docs/components/breadcrumbs#customizing-the-breadcrumbs-styles", "hierarchy": { @@ -1478,7 +1612,7 @@ }, { "content": "Data Attributes", - "objectID": "23082180-90b8-444a-b8fa-20900fc9f19f", + "objectID": "7ae050cf-da44-4f59-9506-d5feea08d8d7", "type": "lvl2", "url": "/docs/components/breadcrumbs#data-attributes", "hierarchy": { @@ -1489,7 +1623,7 @@ }, { "content": "Accessibility", - "objectID": "cf79374d-1bcb-4667-8143-2ecd8d2aefb1", + "objectID": "d2a8baf5-ed5a-436e-8987-4c48c2380ada", "type": "lvl2", "url": "/docs/components/breadcrumbs#accessibility", "hierarchy": { @@ -1500,14 +1634,14 @@ }, { "content": "API", - "objectID": "e41e6fd5-3932-4dbc-a5ec-9f7c555d4405", + "objectID": "c71437f2-987c-4d49-b507-fac35cf9c235", "type": "lvl2", "url": "/docs/components/breadcrumbs#api", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "API", "lvl3": null } }, { "content": "Breadcrumbs Props", - "objectID": "ff69f356-baae-45b1-be2d-520b214dbc9e", + "objectID": "93be1629-6154-4841-adad-53570bad7237", "type": "lvl3", "url": "/docs/components/breadcrumbs#breadcrumbs-props", "hierarchy": { @@ -1518,7 +1652,7 @@ }, { "content": "Breadcrumbs Functions", - "objectID": "a141cbcd-3750-45da-8f96-a2a972f878f7", + "objectID": "0c6feba9-b0f1-414f-945b-2d407f1006d2", "type": "lvl3", "url": "/docs/components/breadcrumbs#breadcrumbs-functions", "hierarchy": { @@ -1529,7 +1663,7 @@ }, { "content": "Breadcrumbs Events", - "objectID": "54b79833-58c4-4b30-becd-5c07e2c0899a", + "objectID": "c1d2141c-9a5e-4dec-a061-4f3a4e9707f3", "type": "lvl3", "url": "/docs/components/breadcrumbs#breadcrumbs-events", "hierarchy": { @@ -1540,7 +1674,7 @@ }, { "content": "BreadcrumbItem Props", - "objectID": "4098ed22-c411-4e38-b996-ad64ccdc1580", + "objectID": "24496670-5665-4860-a9bf-9c6bc252633b", "type": "lvl3", "url": "/docs/components/breadcrumbs#breadcrumbitem-props", "hierarchy": { @@ -1551,7 +1685,7 @@ }, { "content": "BreadcrumbItem Events", - "objectID": "298e0ad0-01b8-4281-86c2-1ad1d8d27635", + "objectID": "d5605726-3549-4b79-913d-646453da6021", "type": "lvl3", "url": "/docs/components/breadcrumbs#breadcrumbitem-events", "hierarchy": { @@ -1562,7 +1696,7 @@ }, { "content": "Types", - "objectID": "ac99d7b0-ad53-4c23-a1c6-f200521620a9", + "objectID": "0f18862e-5e29-4a1f-b4c1-9a96d9066891", "type": "lvl3", "url": "/docs/components/breadcrumbs#types", "hierarchy": { @@ -1573,98 +1707,98 @@ }, { "content": "Render Ellipsis Function", - "objectID": "30585ddf-fdd4-47fc-bf15-99d0416816e9", + "objectID": "c81b380f-4c3a-459a-bf3b-f5fb7c58beb9", "type": "lvl4", "url": "/docs/components/breadcrumbs#render-ellipsis-function", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Types", "lvl3": null } }, { "content": "Button", - "objectID": "6db7cf1d-8716-4eb9-b879-628354350158", + "objectID": "fbec66fa-dc20-4a18-8a2f-84b0e81b2e69", "type": "lvl1", "url": "/docs/components/button", "hierarchy": { "lvl1": "Button" } }, { "content": "Installation", - "objectID": "3b28b4fd-e846-41b3-8d84-05e73fec8c6a", + "objectID": "31dbd832-2e13-43a7-ab4c-56ff8e5b8cdb", "type": "lvl2", "url": "/docs/components/button#installation", "hierarchy": { "lvl1": "Button", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "e4dd5376-184b-47d7-a8b8-548e82d47731", + "objectID": "89805d70-6358-404f-a30f-45f725d374c5", "type": "lvl2", "url": "/docs/components/button#import", "hierarchy": { "lvl1": "Button", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "46b290c7-261c-45a7-af76-27fc581d8ead", + "objectID": "182ba089-ec19-4db4-9082-9a752891c7f0", "type": "lvl2", "url": "/docs/components/button#usage", "hierarchy": { "lvl1": "Button", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "10344fe1-7e2d-4126-91f2-7ca91124ae2a", + "objectID": "85801e97-2f71-4b99-836d-22ef27f0263d", "type": "lvl3", "url": "/docs/components/button#disabled", "hierarchy": { "lvl1": "Button", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Sizes", - "objectID": "3030123d-d408-4e71-a58a-86d2fa8248ad", + "objectID": "ac108763-7d1a-4d37-87c1-cc7fd3ea8a07", "type": "lvl3", "url": "/docs/components/button#sizes", "hierarchy": { "lvl1": "Button", "lvl2": "Disabled", "lvl3": "Sizes" } }, { "content": "Radius", - "objectID": "e976ea13-792a-40c1-9a1c-63810c89b64a", + "objectID": "72ec68ee-013d-44f9-ba76-6e3254b04694", "type": "lvl3", "url": "/docs/components/button#radius", "hierarchy": { "lvl1": "Button", "lvl2": "Sizes", "lvl3": "Radius" } }, { "content": "Colors", - "objectID": "d32dbfcc-9e0e-4051-99c9-f872bd69e1fc", + "objectID": "21e27efb-5a63-4807-a68d-b042b63c170d", "type": "lvl3", "url": "/docs/components/button#colors", "hierarchy": { "lvl1": "Button", "lvl2": "Radius", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "aa4571ed-9611-4e11-bb93-ccc46274a319", + "objectID": "0d82b69e-27dc-4055-b35e-6c8d87df02c7", "type": "lvl3", "url": "/docs/components/button#variants", "hierarchy": { "lvl1": "Button", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "Loading", - "objectID": "6ee0b6aa-963a-43d4-ad4e-5f22c3403461", + "objectID": "48ce78ee-0220-448b-90cf-127c7afe169f", "type": "lvl3", "url": "/docs/components/button#loading", "hierarchy": { "lvl1": "Button", "lvl2": "Variants", "lvl3": "Loading" } }, { "content": "With Icons", - "objectID": "a69ea901-990b-4732-b20e-cb3c524ac8d9", + "objectID": "ffbb3b87-35b8-4f5e-9a79-7eb552980ae8", "type": "lvl3", "url": "/docs/components/button#with-icons", "hierarchy": { "lvl1": "Button", "lvl2": "Loading", "lvl3": "With Icons" } }, { "content": "Icon Only", - "objectID": "f0abccf7-5968-499a-9e95-af3e5400e79b", + "objectID": "7b074eee-a250-45b1-a442-63161946b45a", "type": "lvl3", "url": "/docs/components/button#icon-only", "hierarchy": { "lvl1": "Button", "lvl2": "With Icons", "lvl3": "Icon Only" } }, { "content": "Custom Styles", - "objectID": "cb40731c-ee91-4c1a-a653-bfa8a0461098", + "objectID": "56deb0d8-ebab-4166-a8b5-2a514c6ce5e2", "type": "lvl3", "url": "/docs/components/button#custom-styles", "hierarchy": { @@ -1675,7 +1809,7 @@ }, { "content": "Custom Implementation", - "objectID": "341f02f4-f8b9-4513-aed1-ba9ec5b6d095", + "objectID": "1f0b7b5c-ea7f-4050-8e74-fc33957c3373", "type": "lvl3", "url": "/docs/components/button#custom-implementation", "hierarchy": { @@ -1686,14 +1820,14 @@ }, { "content": "Button Group", - "objectID": "92bfba55-edba-4696-8b47-55ddb07659a1", + "objectID": "e28ff951-8175-4e05-8fb9-7a665ffb87d9", "type": "lvl2", "url": "/docs/components/button#button-group", "hierarchy": { "lvl1": "Button", "lvl2": "Button Group", "lvl3": null } }, { "content": "Group Disabled", - "objectID": "385c3fa1-916b-47e6-b499-de1450c6e645", + "objectID": "9b729bbf-83a8-4b71-b9c2-f3ae1740c177", "type": "lvl3", "url": "/docs/components/button#group-disabled", "hierarchy": { @@ -1704,7 +1838,7 @@ }, { "content": "Group Use case", - "objectID": "508b4924-4314-42c1-bd93-81e7ac3f5362", + "objectID": "48ef3310-7dd8-46e7-a582-0a4080d52249", "type": "lvl3", "url": "/docs/components/button#group-use-case", "hierarchy": { @@ -1715,35 +1849,35 @@ }, { "content": "Data Attributes", - "objectID": "74666d0e-4f18-4eed-a144-db77b6cf0d4c", + "objectID": "ffe51d9c-42a6-447d-9ad9-3c83db61ddcd", "type": "lvl2", "url": "/docs/components/button#data-attributes", "hierarchy": { "lvl1": "Button", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "973d858e-14bb-4014-8606-29113089bef8", + "objectID": "224b83ea-194a-4c85-b212-bfa328163764", "type": "lvl2", "url": "/docs/components/button#accessibility", "hierarchy": { "lvl1": "Button", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "5a5c45e8-9cda-4063-aa62-d62fc2f4bc54", + "objectID": "ebbcf928-342a-49dd-b5c0-6c95a4f037a7", "type": "lvl2", "url": "/docs/components/button#api", "hierarchy": { "lvl1": "Button", "lvl2": "API", "lvl3": null } }, { "content": "Button Props", - "objectID": "7891959d-a3cd-4ea5-afcf-48eae2a22186", + "objectID": "2b7ee671-2fad-459e-b3ae-42827b6024ee", "type": "lvl3", "url": "/docs/components/button#button-props", "hierarchy": { "lvl1": "Button", "lvl2": "API", "lvl3": "Button Props" } }, { "content": "Button Events", - "objectID": "ec9d1e73-7279-4c24-af1f-786fb33a9f30", + "objectID": "61620465-4bfd-4106-9219-ca427caa7954", "type": "lvl3", "url": "/docs/components/button#button-events", "hierarchy": { @@ -1754,7 +1888,7 @@ }, { "content": "Button Group Props", - "objectID": "5e4f13c7-f053-4346-9778-e60dc1e49e8c", + "objectID": "6d377d83-7457-40fe-b607-55d393a6daa3", "type": "lvl3", "url": "/docs/components/button#button-group-props", "hierarchy": { @@ -1765,49 +1899,49 @@ }, { "content": "Calendar", - "objectID": "08d9580e-ff81-472a-8f41-620173fbc21f", + "objectID": "20b2e4c5-786e-46b5-92a7-4dc0014ed83f", "type": "lvl1", "url": "/docs/components/calendar", "hierarchy": { "lvl1": "Calendar" } }, { "content": "Installation", - "objectID": "a00ed2b0-1fe7-4d47-80fc-7279cd7ab3b7", + "objectID": "54807b64-0a84-4ec1-96de-f5f0bf97e45c", "type": "lvl2", "url": "/docs/components/calendar#installation", "hierarchy": { "lvl1": "Calendar", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "feddc778-7487-41f5-bf55-d2c3592bf67e", + "objectID": "54d4b7fe-8525-4a71-b74d-d7f2fccc92a0", "type": "lvl2", "url": "/docs/components/calendar#import", "hierarchy": { "lvl1": "Calendar", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "cf8440b3-44d2-437d-89a7-2908b7b37111", + "objectID": "e885136d-a1da-4263-b881-59268e213616", "type": "lvl2", "url": "/docs/components/calendar#usage", "hierarchy": { "lvl1": "Calendar", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "edf1c479-ad59-47c3-a7a2-fccc325db1aa", + "objectID": "cd664592-6fae-4961-8caa-c39e142487d1", "type": "lvl3", "url": "/docs/components/calendar#disabled", "hierarchy": { "lvl1": "Calendar", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Read Only", - "objectID": "94eeddbb-8423-4ed3-bb44-37ec1a2bf89a", + "objectID": "08a408e6-fd80-4eba-b364-ef4f9e06ee5d", "type": "lvl3", "url": "/docs/components/calendar#read-only", "hierarchy": { "lvl1": "Calendar", "lvl2": "Disabled", "lvl3": "Read Only" } }, { "content": "Controlled", - "objectID": "de3fbb6e-a71e-4fac-b571-a26225b4fdd3", + "objectID": "fa3c46fc-265d-4f1c-8e2b-be7b064c56d5", "type": "lvl3", "url": "/docs/components/calendar#controlled", "hierarchy": { @@ -1818,7 +1952,7 @@ }, { "content": "Min Date Value", - "objectID": "d5b2d561-de56-49df-a2c1-2d14b8bd90af", + "objectID": "5d8b8ebe-2437-4b1a-bb8b-20abbd56484a", "type": "lvl3", "url": "/docs/components/calendar#min-date-value", "hierarchy": { @@ -1829,7 +1963,7 @@ }, { "content": "Max Date Value", - "objectID": "6dfa5957-c31d-4144-bb2f-555bd563626d", + "objectID": "e0961b9e-e812-4a77-91ba-e25f79075b87", "type": "lvl3", "url": "/docs/components/calendar#max-date-value", "hierarchy": { @@ -1840,7 +1974,7 @@ }, { "content": "Unavailable Dates", - "objectID": "43c2fe13-10f6-4f7f-b02f-20402122248f", + "objectID": "0830fda3-a988-4e8c-adc5-67d5405ebc4f", "type": "lvl3", "url": "/docs/components/calendar#unavailable-dates", "hierarchy": { @@ -1851,7 +1985,7 @@ }, { "content": "Controlled Focused Value", - "objectID": "0cf55a42-d7b3-4670-bb12-217e432603cc", + "objectID": "7753001b-18b0-45cb-a9ef-a0c12175f474", "type": "lvl3", "url": "/docs/components/calendar#controlled-focused-value", "hierarchy": { @@ -1862,7 +1996,7 @@ }, { "content": "Invalid Date", - "objectID": "caf868df-7378-4e1e-b7fc-24121d3b135e", + "objectID": "7145cc4c-c53e-43bf-801e-cecfc9028376", "type": "lvl3", "url": "/docs/components/calendar#invalid-date", "hierarchy": { @@ -1873,7 +2007,7 @@ }, { "content": "With Month And Year Picker", - "objectID": "85fd5900-989c-426d-add6-a6ffe081acd6", + "objectID": "561bbc2f-0913-4ca3-b078-b914e2081a0a", "type": "lvl3", "url": "/docs/components/calendar#with-month-and-year-picker", "hierarchy": { @@ -1884,7 +2018,7 @@ }, { "content": "International Calendars", - "objectID": "de2379e1-e006-402f-9074-295fe3ca0211", + "objectID": "0ed78138-9dfd-4f38-8ce8-2faa33872ef7", "type": "lvl3", "url": "/docs/components/calendar#international-calendars", "hierarchy": { @@ -1895,7 +2029,7 @@ }, { "content": "Visible Months", - "objectID": "b1a8b6bb-f07d-494c-bdca-2ea71cf07514", + "objectID": "2a8f977e-531a-459f-894e-507d79585cfe", "type": "lvl3", "url": "/docs/components/calendar#visible-months", "hierarchy": { @@ -1906,7 +2040,7 @@ }, { "content": "Page Behaviour", - "objectID": "f8c503d5-d932-4b3d-b1af-d75e30700edd", + "objectID": "8ddef650-a9ae-47e7-8a5b-962627ab2d91", "type": "lvl3", "url": "/docs/components/calendar#page-behaviour", "hierarchy": { @@ -1917,7 +2051,7 @@ }, { "content": "Presets", - "objectID": "1b287826-4171-4bb5-b6c0-8ce43d5c3344", + "objectID": "85b8972d-e558-496b-a4be-98a6d12d4fe4", "type": "lvl3", "url": "/docs/components/calendar#presets", "hierarchy": { @@ -1928,42 +2062,42 @@ }, { "content": "Slots", - "objectID": "428a879e-e9ad-4ca7-a65d-f747d69d6d20", + "objectID": "20f99bb0-7117-408c-b316-b8bca3a7039f", "type": "lvl2", "url": "/docs/components/calendar#slots", "hierarchy": { "lvl1": "Calendar", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "78fdc89e-ffd3-415f-8b08-61d912c42c48", + "objectID": "511e7a9b-2e37-4c04-a039-412b15b58f10", "type": "lvl2", "url": "/docs/components/calendar#data-attributes", "hierarchy": { "lvl1": "Calendar", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "7473a49c-84ea-448b-b4b8-0a1a9a7c8e26", + "objectID": "6342754f-f3c8-4cdf-8edc-cec593bafe09", "type": "lvl2", "url": "/docs/components/calendar#accessibility", "hierarchy": { "lvl1": "Calendar", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "183e1c06-3f1d-4559-9d00-fc921b038f5f", + "objectID": "92f143b9-1777-45e6-9cf5-84e9bf6de419", "type": "lvl2", "url": "/docs/components/calendar#api", "hierarchy": { "lvl1": "Calendar", "lvl2": "API", "lvl3": null } }, { "content": "Calendar Props", - "objectID": "c38322dc-82e5-446c-8ce4-093b788778a4", + "objectID": "893df0b3-00b8-4608-8f55-2b8e72429109", "type": "lvl3", "url": "/docs/components/calendar#calendar-props", "hierarchy": { "lvl1": "Calendar", "lvl2": "API", "lvl3": "Calendar Props" } }, { "content": "Calendar Events", - "objectID": "82d1a0c6-c084-4987-ab2e-c2314a3ba502", + "objectID": "94e2d309-bd75-44bb-b09a-ce6e469cfa37", "type": "lvl3", "url": "/docs/components/calendar#calendar-events", "hierarchy": { @@ -1974,7 +2108,7 @@ }, { "content": "Types", - "objectID": "dda236e2-e609-435a-bb15-148be5de1419", + "objectID": "6a2c592f-507c-48ba-b107-a8c988b14010", "type": "lvl3", "url": "/docs/components/calendar#types", "hierarchy": { @@ -1985,49 +2119,49 @@ }, { "content": "Supported Calendars", - "objectID": "ac6fb8e9-c34a-4a04-bb35-021ce2e063e4", + "objectID": "e31f997e-1ada-46c7-8ba1-df3f532e2738", "type": "lvl4", "url": "/docs/components/calendar#supported-calendars", "hierarchy": { "lvl1": "Calendar", "lvl2": "Types", "lvl3": null } }, { "content": "Card", - "objectID": "8db2081c-8a06-4752-a78e-c9489928e735", + "objectID": "3116df77-ebe8-42b2-b559-0adafb008908", "type": "lvl1", "url": "/docs/components/card", "hierarchy": { "lvl1": "Card" } }, { "content": "Installation", - "objectID": "dfcb5301-8583-4c85-b174-3fbc3209c0f4", + "objectID": "1768f9ca-1108-43bc-9196-6ec5b4efce66", "type": "lvl2", "url": "/docs/components/card#installation", "hierarchy": { "lvl1": "Card", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "c0b1fd2c-b66c-4143-a47c-5f0226b53ec5", + "objectID": "2feb771b-500c-4274-b46a-507ec73d724b", "type": "lvl2", "url": "/docs/components/card#import", "hierarchy": { "lvl1": "Card", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "21958cae-772c-4cac-b297-33f535d28aea", + "objectID": "f7b4d6a2-bee8-4267-b1ae-483bc299fbde", "type": "lvl2", "url": "/docs/components/card#usage", "hierarchy": { "lvl1": "Card", "lvl2": "Usage", "lvl3": null } }, { "content": "With Divider", - "objectID": "e8785df0-d2f1-4b53-8f0a-46db1a73928d", + "objectID": "c6e9218d-8c26-4890-b3d2-261068e03076", "type": "lvl3", "url": "/docs/components/card#with-divider", "hierarchy": { "lvl1": "Card", "lvl2": "Usage", "lvl3": "With Divider" } }, { "content": "With Image", - "objectID": "ae4ec132-2ef5-4b8f-9fbb-eb85cd1d4e78", + "objectID": "faaadb56-5993-4483-8763-edfb7c28d8ce", "type": "lvl3", "url": "/docs/components/card#with-image", "hierarchy": { @@ -2038,7 +2172,7 @@ }, { "content": "Blurred Footer", - "objectID": "9a51cbd8-7f61-4c6b-addd-d88c646cf953", + "objectID": "8f074dad-8af4-4cc5-be58-e8538448d4b1", "type": "lvl3", "url": "/docs/components/card#blurred-footer", "hierarchy": { @@ -2049,7 +2183,7 @@ }, { "content": "Composition", - "objectID": "f0a66483-0969-42ab-a831-142eb028d64e", + "objectID": "e067afc0-654e-4e85-af1c-857824729edd", "type": "lvl3", "url": "/docs/components/card#composition", "hierarchy": { @@ -2060,7 +2194,7 @@ }, { "content": "Blurred Card", - "objectID": "041732bf-3839-41b0-9c77-0ef15246b188", + "objectID": "40083d81-ce76-40bc-bbde-476026883142", "type": "lvl3", "url": "/docs/components/card#blurred-card", "hierarchy": { @@ -2071,7 +2205,7 @@ }, { "content": "Primary Action", - "objectID": "91a4a281-f3f5-4da9-8d6e-2b9af355313c", + "objectID": "f077b9c0-a23c-4cd3-8977-00198bcfe31c", "type": "lvl3", "url": "/docs/components/card#primary-action", "hierarchy": { @@ -2082,7 +2216,7 @@ }, { "content": "Cover Image", - "objectID": "cbb1dc01-976c-4658-8371-01c548ecf37b", + "objectID": "020b07f8-b3fd-4f2b-b060-8a9f979679a0", "type": "lvl3", "url": "/docs/components/card#cover-image", "hierarchy": { @@ -2091,44 +2225,51 @@ "lvl3": "Cover Image" } }, + { + "content": "Slots", + "objectID": "338d262c-4487-47eb-a8b1-5ab7bd2740fb", + "type": "lvl2", + "url": "/docs/components/card#slots", + "hierarchy": { "lvl1": "Card", "lvl2": "Slots", "lvl3": null } + }, { "content": "Data Attributes", - "objectID": "b1774a3f-dcae-4415-9ac7-cae725ca6a8b", + "objectID": "371fa6b3-5f41-4075-96a9-9e3189f748f0", "type": "lvl2", "url": "/docs/components/card#data-attributes", "hierarchy": { "lvl1": "Card", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "API", - "objectID": "ef6242b4-fa97-4e70-b603-401f9c8597c0", + "objectID": "b65aace1-2ff8-40ae-bd3a-cda7728f0b31", "type": "lvl2", "url": "/docs/components/card#api", "hierarchy": { "lvl1": "Card", "lvl2": "API", "lvl3": null } }, { "content": "Card Props", - "objectID": "50adfd3e-a5ad-44d1-813d-09121dc68e83", + "objectID": "728a09b2-62af-45e4-a476-2932cc6f132d", "type": "lvl3", "url": "/docs/components/card#card-props", "hierarchy": { "lvl1": "Card", "lvl2": "API", "lvl3": "Card Props" } }, { "content": "Card Events", - "objectID": "b33a320b-1492-48d6-bdf8-6dc0e091ae85", + "objectID": "d2e1cb5d-9651-4f60-ab5a-f611bf14d373", "type": "lvl3", "url": "/docs/components/card#card-events", "hierarchy": { "lvl1": "Card", "lvl2": "Card Props", "lvl3": "Card Events" } }, { "content": "Checkbox Group", - "objectID": "e2335476-4a3a-4eda-a03d-1112a0d233a8", + "objectID": "a5c2fdea-6a9c-4aee-8692-83f9ebe046d6", "type": "lvl1", "url": "/docs/components/checkbox-group", "hierarchy": { "lvl1": "Checkbox Group" } }, { "content": "Installation", - "objectID": "950621d3-263a-4d3d-b3b4-ff804349cc09", + "objectID": "bbaa7b07-a733-417c-b435-3fa3473df22d", "type": "lvl2", "url": "/docs/components/checkbox-group#installation", "hierarchy": { @@ -2139,21 +2280,21 @@ }, { "content": "Import", - "objectID": "d72bf6c2-1e06-428b-8c37-d85dc151834a", + "objectID": "83f73767-80d7-4785-a7c1-265349ff787c", "type": "lvl2", "url": "/docs/components/checkbox-group#import", "hierarchy": { "lvl1": "Checkbox Group", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "160a4d16-03c2-4f38-95c8-621aeb00e889", + "objectID": "4d8642e3-362c-44ec-bb69-71bace3af932", "type": "lvl2", "url": "/docs/components/checkbox-group#usage", "hierarchy": { "lvl1": "Checkbox Group", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "fafae1ab-cac4-4fcc-9a70-69176072baed", + "objectID": "a83e6b39-b6d1-4cec-8572-940e4a24e444", "type": "lvl3", "url": "/docs/components/checkbox-group#disabled", "hierarchy": { @@ -2164,7 +2305,7 @@ }, { "content": "Horizontal", - "objectID": "2d74c57d-a358-45d3-8a65-9e95269c0bbd", + "objectID": "0e76a8a7-6d4b-4cb7-a8c3-4d4039bdc641", "type": "lvl3", "url": "/docs/components/checkbox-group#horizontal", "hierarchy": { @@ -2175,7 +2316,7 @@ }, { "content": "Controlled", - "objectID": "5b8a5443-1c81-4d04-9773-25675c01b09f", + "objectID": "79377f6f-1464-4a9b-bc2e-14cb742089a4", "type": "lvl3", "url": "/docs/components/checkbox-group#controlled", "hierarchy": { @@ -2186,7 +2327,7 @@ }, { "content": "Invalid", - "objectID": "3293465d-20cc-4489-bce5-42f98b73b340", + "objectID": "02e7df68-f67a-45e8-9a7d-3a0094b6cccf", "type": "lvl3", "url": "/docs/components/checkbox-group#invalid", "hierarchy": { @@ -2197,14 +2338,14 @@ }, { "content": "Slots", - "objectID": "fdabe32a-9aeb-4e32-802a-5272bcfe8975", + "objectID": "5965e262-9419-42b9-9e73-38e6b1be4588", "type": "lvl2", "url": "/docs/components/checkbox-group#slots", "hierarchy": { "lvl1": "Checkbox Group", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "7a25de41-2134-4ac4-9c46-c5f3b0dea9d4", + "objectID": "592dab17-e71e-4397-80a0-b74a3f114638", "type": "lvl3", "url": "/docs/components/checkbox-group#custom-styles", "hierarchy": { @@ -2215,7 +2356,7 @@ }, { "content": "Custom Implementation", - "objectID": "2e3c4b68-cd33-4b9f-885b-cde1e1c48971", + "objectID": "f37c3140-f8dc-4f51-b486-097d89f11f8d", "type": "lvl3", "url": "/docs/components/checkbox-group#custom-implementation", "hierarchy": { @@ -2226,14 +2367,14 @@ }, { "content": "API", - "objectID": "f02185e2-2204-4504-a9e1-0cf6cc4fca49", + "objectID": "62f2ae20-e57a-4c78-9813-76e452847f7c", "type": "lvl2", "url": "/docs/components/checkbox-group#api", "hierarchy": { "lvl1": "Checkbox Group", "lvl2": "API", "lvl3": null } }, { "content": "Checkbox Group Props", - "objectID": "4b389503-a290-4835-ae3c-41e3eb0acb3b", + "objectID": "45121d86-0c84-4caa-80b6-d94da6c97498", "type": "lvl3", "url": "/docs/components/checkbox-group#checkbox-group-props", "hierarchy": { @@ -2244,7 +2385,7 @@ }, { "content": "Checkbox Group Events", - "objectID": "15238198-0c19-4c46-8790-7d698b967716", + "objectID": "e750225d-565b-44c2-aa88-ee77c6c5b89f", "type": "lvl3", "url": "/docs/components/checkbox-group#checkbox-group-events", "hierarchy": { @@ -2255,63 +2396,63 @@ }, { "content": "Checkbox", - "objectID": "48c7cbb7-2eaf-41b1-bb29-d0d4d3c02f7f", + "objectID": "9949bb37-3fd5-4b68-9b9e-a4a27ca8f5f2", "type": "lvl1", "url": "/docs/components/checkbox", "hierarchy": { "lvl1": "Checkbox" } }, { "content": "Installation", - "objectID": "e8001f6d-91e5-4b96-8ac0-1627c57a6870", + "objectID": "afd75dd5-2904-4f4e-9347-68a3d289a3c2", "type": "lvl2", "url": "/docs/components/checkbox#installation", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "b1809ae6-8943-46bc-a960-788b0876a790", + "objectID": "75d41112-fffa-461e-b584-3592355ee1a8", "type": "lvl2", "url": "/docs/components/checkbox#import", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "1de45680-f4d7-4cc7-a9cd-58ea1eaf963e", + "objectID": "534efc03-fa27-4a6f-a68f-3aff244acc21", "type": "lvl2", "url": "/docs/components/checkbox#usage", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "9943cbe3-a11f-4c9d-a2da-364c80857b50", + "objectID": "6e765cde-89e8-4a1f-99e9-da9108edadaf", "type": "lvl3", "url": "/docs/components/checkbox#disabled", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Sizes", - "objectID": "24c208bb-1d0a-4f71-ac92-a710ac4e984e", + "objectID": "83be847c-23bf-47c8-9b40-d19fd9613e4e", "type": "lvl3", "url": "/docs/components/checkbox#sizes", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Disabled", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "b3f9b5e0-a38d-48ae-8442-10347e76fd7b", + "objectID": "a75a1a8c-8483-48dd-9e34-d8a844f58b31", "type": "lvl3", "url": "/docs/components/checkbox#colors", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Radius", - "objectID": "5fe42b38-f90e-47b3-8b7c-5cbbb1bec4a5", + "objectID": "981c2e55-a55c-4f4f-b49b-1c3c14d78723", "type": "lvl3", "url": "/docs/components/checkbox#radius", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Colors", "lvl3": "Radius" } }, { "content": "Indeterminate", - "objectID": "0cd5e149-d2af-4eb8-b652-e9a83e96127a", + "objectID": "5e2468ef-f871-42a9-944b-5578aa7399b7", "type": "lvl3", "url": "/docs/components/checkbox#indeterminate", "hierarchy": { @@ -2322,7 +2463,7 @@ }, { "content": "Line Through", - "objectID": "c400b72e-ba56-4b61-b7b1-690618b64d92", + "objectID": "bd4fbdd9-7cc3-4ca2-b7fd-2432373f175b", "type": "lvl3", "url": "/docs/components/checkbox#line-through", "hierarchy": { @@ -2333,7 +2474,7 @@ }, { "content": "Custom Check Icon", - "objectID": "c6ce858a-a34b-4d3a-a0ae-d96a524b4b5d", + "objectID": "9f788f5f-0bc0-4d89-8205-693dd9207034", "type": "lvl3", "url": "/docs/components/checkbox#custom-check-icon", "hierarchy": { @@ -2344,7 +2485,7 @@ }, { "content": "Controlled", - "objectID": "4c5b7ec2-a0a4-42fc-bbfb-74397c087150", + "objectID": "f279ec73-b58d-4acb-a083-1da59c36f896", "type": "lvl3", "url": "/docs/components/checkbox#controlled", "hierarchy": { @@ -2355,14 +2496,14 @@ }, { "content": "Slots", - "objectID": "1255c432-45db-41d9-ac52-bdb28d23bf8b", + "objectID": "0b91e921-d27b-465f-9fff-4d33475d8550", "type": "lvl2", "url": "/docs/components/checkbox#slots", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "83cf1ad4-b0fc-4236-a490-a231b6b7c7e3", + "objectID": "c80e6415-6cd7-4809-8736-e1c5ca4f5d9e", "type": "lvl3", "url": "/docs/components/checkbox#custom-styles", "hierarchy": { @@ -2373,7 +2514,7 @@ }, { "content": "Custom Implementation", - "objectID": "0063df0b-3c34-4ff0-b350-418d411b5d99", + "objectID": "b91501fa-708c-4573-8336-af6777ccc489", "type": "lvl3", "url": "/docs/components/checkbox#custom-implementation", "hierarchy": { @@ -2384,35 +2525,35 @@ }, { "content": "Data Attributes", - "objectID": "09c934f2-f090-44ae-8aba-8a58015951a4", + "objectID": "094f48d2-d376-48a3-b312-361f62eec125", "type": "lvl2", "url": "/docs/components/checkbox#data-attributes", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "63f68dcf-4621-4baa-ad48-f3357afef864", + "objectID": "141dcb72-fa53-4237-8851-ff449e22dcba", "type": "lvl2", "url": "/docs/components/checkbox#accessibility", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "42b7b8b3-92b2-4bf7-a5ef-c04d12531f33", + "objectID": "572a4784-39b8-420b-b8f2-d0da7468c146", "type": "lvl2", "url": "/docs/components/checkbox#api", "hierarchy": { "lvl1": "Checkbox", "lvl2": "API", "lvl3": null } }, { "content": "Checkbox Props", - "objectID": "ddaac5be-d104-4481-8829-613111d142e3", + "objectID": "c2ef8efe-6807-4f7d-94e1-b2955bf249b7", "type": "lvl3", "url": "/docs/components/checkbox#checkbox-props", "hierarchy": { "lvl1": "Checkbox", "lvl2": "API", "lvl3": "Checkbox Props" } }, { "content": "Checkbox Events", - "objectID": "ed81d821-a9e6-4559-8e8a-cf0831e80ff9", + "objectID": "6545e2f8-ca56-4eef-abd9-1958ba641978", "type": "lvl3", "url": "/docs/components/checkbox#checkbox-events", "hierarchy": { @@ -2423,7 +2564,7 @@ }, { "content": "Types", - "objectID": "d9f073d6-2e18-4dec-b6cc-755218b73c60", + "objectID": "ba787da2-4a6a-4a48-90d0-217b06c7ab14", "type": "lvl3", "url": "/docs/components/checkbox#types", "hierarchy": { @@ -2434,77 +2575,77 @@ }, { "content": "Checkbox Icon Props", - "objectID": "fe2fc0d3-225d-4291-b2f9-83cfe7042bfd", + "objectID": "48a9736f-ae32-47da-a619-5cf6e155b558", "type": "lvl4", "url": "/docs/components/checkbox#checkbox-icon-props", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Types", "lvl3": null } }, { "content": "Chip", - "objectID": "d97b98b8-c51c-4679-81e8-5a8e3abbc008", + "objectID": "bec9071a-e8ec-4981-bc56-aa03719725b1", "type": "lvl1", "url": "/docs/components/chip", "hierarchy": { "lvl1": "Chip" } }, { "content": "Installation", - "objectID": "564c5559-afc6-47d2-98d2-8bb793ca2d6f", + "objectID": "9cd942f9-4a7b-416e-9f3e-d7aee7c9eae4", "type": "lvl2", "url": "/docs/components/chip#installation", "hierarchy": { "lvl1": "Chip", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "7f15650b-cc82-4bec-bca0-08fd6b0141fc", + "objectID": "2728cf49-96bb-40ab-a064-97d30389ca59", "type": "lvl2", "url": "/docs/components/chip#import", "hierarchy": { "lvl1": "Chip", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "a56618d1-dc95-4dd5-af03-b730e3217753", + "objectID": "06270c2f-4d54-40d7-ae6e-ca9ad3f49a88", "type": "lvl2", "url": "/docs/components/chip#usage", "hierarchy": { "lvl1": "Chip", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "4aa3f019-8d62-41e3-afc0-f3e79ce524e7", + "objectID": "3979dd2a-b2e4-4de4-afe2-44317420d67f", "type": "lvl3", "url": "/docs/components/chip#disabled", "hierarchy": { "lvl1": "Chip", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Sizes", - "objectID": "e5d19732-6362-4a1d-ab93-c977b84b19b4", + "objectID": "25cfdccd-7c96-4995-ae91-611f2f2c3fe7", "type": "lvl3", "url": "/docs/components/chip#sizes", "hierarchy": { "lvl1": "Chip", "lvl2": "Disabled", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "7daaf942-5f56-4116-b129-1f3ef785755f", + "objectID": "c7e13fd8-b789-4db1-b607-3176550a4201", "type": "lvl3", "url": "/docs/components/chip#colors", "hierarchy": { "lvl1": "Chip", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Radius", - "objectID": "ec1d3326-2331-42ad-95a7-04e7ffc9d4b0", + "objectID": "3b3d7712-52d1-45ae-bec7-c185f3ab885d", "type": "lvl3", "url": "/docs/components/chip#radius", "hierarchy": { "lvl1": "Chip", "lvl2": "Colors", "lvl3": "Radius" } }, { "content": "Variants", - "objectID": "7408324b-6838-4caf-871d-e4f52085b424", + "objectID": "fca3e0ec-75df-4d46-9f71-e2bbc0cb2c89", "type": "lvl3", "url": "/docs/components/chip#variants", "hierarchy": { "lvl1": "Chip", "lvl2": "Radius", "lvl3": "Variants" } }, { "content": "Start & End Content", - "objectID": "e35479ef-4384-40d8-a897-9d022516765b", + "objectID": "d3bba183-9ce4-4ba5-bc9b-f68055aca5be", "type": "lvl3", "url": "/docs/components/chip#start--end-content", "hierarchy": { @@ -2515,7 +2656,7 @@ }, { "content": "With Close Button", - "objectID": "f6f1a533-534a-420c-9f29-f7b65af1b1fc", + "objectID": "e4a8c3b1-6a72-41db-ba55-99d09c2e583d", "type": "lvl3", "url": "/docs/components/chip#with-close-button", "hierarchy": { @@ -2526,7 +2667,7 @@ }, { "content": "With Avatar", - "objectID": "9b04a404-bc7c-42cb-96df-ff118b18c33e", + "objectID": "4912fde7-ac6d-45e3-b635-6156454e58a3", "type": "lvl3", "url": "/docs/components/chip#with-avatar", "hierarchy": { @@ -2537,7 +2678,7 @@ }, { "content": "List of Chips", - "objectID": "6d004b09-ad8a-406c-b6b8-61a63bada6e5", + "objectID": "811c2d14-7dd5-482a-9ebc-0c8aa8fdcfc8", "type": "lvl3", "url": "/docs/components/chip#list-of-chips", "hierarchy": { @@ -2548,49 +2689,49 @@ }, { "content": "Slots", - "objectID": "ae2c74d4-47b0-471b-819d-ee6e3e4d00e0", + "objectID": "0d409167-bf87-4d96-87fd-da524e97e461", "type": "lvl2", "url": "/docs/components/chip#slots", "hierarchy": { "lvl1": "Chip", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "908a98d8-2cb8-4075-8f30-ab32ba02fdc0", + "objectID": "bb1590f3-aa29-4675-924d-5a37cb62b2f4", "type": "lvl3", "url": "/docs/components/chip#custom-styles", "hierarchy": { "lvl1": "Chip", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "API", - "objectID": "01033136-2cb3-403c-8cd1-fa1bbb0ad8b3", + "objectID": "1edd1cdd-b4e9-4caf-8601-9b27799bf3d8", "type": "lvl2", "url": "/docs/components/chip#api", "hierarchy": { "lvl1": "Chip", "lvl2": "API", "lvl3": null } }, { "content": "Chip Props", - "objectID": "c199dcf6-7b67-4aea-b7ce-681189b9ee0a", + "objectID": "57912a59-9a5a-4c8b-8800-d52aa030501f", "type": "lvl3", "url": "/docs/components/chip#chip-props", "hierarchy": { "lvl1": "Chip", "lvl2": "API", "lvl3": "Chip Props" } }, { "content": "Chip Events", - "objectID": "a1d8e1f7-455e-48ec-a900-8af579cc1e7e", + "objectID": "cc721be8-8fb4-43d7-a33a-7c1af4d6f4ef", "type": "lvl3", "url": "/docs/components/chip#chip-events", "hierarchy": { "lvl1": "Chip", "lvl2": "Chip Props", "lvl3": "Chip Events" } }, { "content": "Circular Progress", - "objectID": "c0607e80-d672-4fc1-8060-a6df6c189bcb", + "objectID": "55a89901-e06e-4c6c-a1e9-c412b4ed796a", "type": "lvl1", "url": "/docs/components/circular-progress", "hierarchy": { "lvl1": "Circular Progress" } }, { "content": "Installation", - "objectID": "30a09286-aded-4140-84ca-9e4c1e38cec3", + "objectID": "aba55597-e6a9-4fe5-b15b-7581dec24200", "type": "lvl2", "url": "/docs/components/circular-progress#installation", "hierarchy": { @@ -2601,21 +2742,21 @@ }, { "content": "Import", - "objectID": "4bd8452b-9ee0-4547-ade9-907f4fe4a0a1", + "objectID": "b6cbf826-e318-49dd-a465-d7fce1eef4c4", "type": "lvl2", "url": "/docs/components/circular-progress#import", "hierarchy": { "lvl1": "Circular Progress", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "59b1bbaa-1ee4-45ca-9e66-8ef327f6a82d", + "objectID": "b64500a1-9c38-47e0-81bc-1baf7aaf5eec", "type": "lvl2", "url": "/docs/components/circular-progress#usage", "hierarchy": { "lvl1": "Circular Progress", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "30c8db81-5997-439b-8d2e-ed604ca0978d", + "objectID": "41d02f61-289f-44d3-a39b-2e6ad408e9c1", "type": "lvl3", "url": "/docs/components/circular-progress#sizes", "hierarchy": { @@ -2626,7 +2767,7 @@ }, { "content": "Colors", - "objectID": "85f8d788-7cdd-431d-9fac-77110d2613c0", + "objectID": "57fbcd74-2355-428f-ae25-c92ea779b371", "type": "lvl3", "url": "/docs/components/circular-progress#colors", "hierarchy": { @@ -2637,7 +2778,7 @@ }, { "content": "With Label", - "objectID": "a82ffe55-1bec-49ca-b0dd-324802cab1da", + "objectID": "c178eef7-ea76-4546-84da-f3615d5c4b3e", "type": "lvl3", "url": "/docs/components/circular-progress#with-label", "hierarchy": { @@ -2648,7 +2789,7 @@ }, { "content": "With Value", - "objectID": "4fb88960-5bca-43e6-9f01-09ef9412b8dd", + "objectID": "2b7b0e72-4d02-42d1-a99c-0254ed1ad016", "type": "lvl3", "url": "/docs/components/circular-progress#with-value", "hierarchy": { @@ -2659,7 +2800,7 @@ }, { "content": "Value Formatting", - "objectID": "9ea8134d-205d-4cd4-a4cf-40096ee88af1", + "objectID": "2e8f2238-9682-4195-b112-972bc8a0854b", "type": "lvl3", "url": "/docs/components/circular-progress#value-formatting", "hierarchy": { @@ -2670,14 +2811,14 @@ }, { "content": "Slots", - "objectID": "57922dbd-f9f1-4871-9506-9302ff4b2ed0", + "objectID": "930c79b5-8c05-4c74-be90-9037735f9bc9", "type": "lvl2", "url": "/docs/components/circular-progress#slots", "hierarchy": { "lvl1": "Circular Progress", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "004a464d-9009-4f9b-b7f6-a5770ee14bb4", + "objectID": "0b4a4e97-c36e-4a04-ae67-e6f71919bbc3", "type": "lvl3", "url": "/docs/components/circular-progress#custom-styles", "hierarchy": { @@ -2688,7 +2829,7 @@ }, { "content": "Data Attributes", - "objectID": "f9ba9b7a-0def-47ba-9cb6-8e7c23cc5f41", + "objectID": "ce9cd3aa-fc4f-496d-9f24-b22e7b6aa873", "type": "lvl2", "url": "/docs/components/circular-progress#data-attributes", "hierarchy": { @@ -2699,7 +2840,7 @@ }, { "content": "Accessibility", - "objectID": "a94bb28a-72df-4fb6-aac5-7a0bae6113da", + "objectID": "3765232e-beff-4417-bac0-ee7e5e9ac001", "type": "lvl2", "url": "/docs/components/circular-progress#accessibility", "hierarchy": { @@ -2710,14 +2851,14 @@ }, { "content": "API", - "objectID": "b44d543a-537b-4253-9fde-e9f95bed9340", + "objectID": "12c30fbf-3f24-4f29-a541-9d7a5285316d", "type": "lvl2", "url": "/docs/components/circular-progress#api", "hierarchy": { "lvl1": "Circular Progress", "lvl2": "API", "lvl3": null } }, { "content": "Circular Progress Props", - "objectID": "0210e5b9-a76f-4a91-8a01-529ce3870bd8", + "objectID": "a84c1383-b55d-462f-be27-2133f4b0c9c1", "type": "lvl3", "url": "/docs/components/circular-progress#circular-progress-props", "hierarchy": { @@ -2728,98 +2869,98 @@ }, { "content": "Code", - "objectID": "cf07fd4e-6c7e-4890-a704-69fb6d7bb8f1", + "objectID": "beed131f-461c-467b-88c8-d6283da38bfb", "type": "lvl1", "url": "/docs/components/code", "hierarchy": { "lvl1": "Code" } }, { "content": "Installation", - "objectID": "ec660c98-25fe-43d2-a2c2-cfc8eaf6db7c", + "objectID": "78ce4604-85b9-450b-9ec6-415e13bbacbd", "type": "lvl2", "url": "/docs/components/code#installation", "hierarchy": { "lvl1": "Code", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "7587d40c-2349-486a-8cc7-99936165f93a", + "objectID": "fce139f7-2256-4c5c-885c-c4417594df10", "type": "lvl2", "url": "/docs/components/code#import", "hierarchy": { "lvl1": "Code", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "d38ca906-712e-4940-ae31-6dfd57b16705", + "objectID": "79789de2-4913-4ff8-939f-03f95618a0b6", "type": "lvl2", "url": "/docs/components/code#usage", "hierarchy": { "lvl1": "Code", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "e710681f-26e1-4b82-b32c-c5a7ce7c9092", + "objectID": "3ed0cc54-f1e8-4f6c-ab67-0be28ba64001", "type": "lvl3", "url": "/docs/components/code#sizes", "hierarchy": { "lvl1": "Code", "lvl2": "Usage", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "6ac8f63b-1f2e-448a-8db5-e8937dff1743", + "objectID": "603bf5b8-9e1c-484b-8a32-a0487d227409", "type": "lvl3", "url": "/docs/components/code#colors", "hierarchy": { "lvl1": "Code", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "API", - "objectID": "cedfd15b-a490-422a-b076-4d3064968ddd", + "objectID": "d53a7eeb-155a-4ed7-83f9-7ea837607390", "type": "lvl2", "url": "/docs/components/code#api", "hierarchy": { "lvl1": "Code", "lvl2": "API", "lvl3": null } }, { "content": "Code Props", - "objectID": "0b61944c-44f8-4692-8524-70cfce5dacc7", + "objectID": "8ca7a8cf-8f4f-4c3a-9173-e05a12f8a493", "type": "lvl3", "url": "/docs/components/code#code-props", "hierarchy": { "lvl1": "Code", "lvl2": "API", "lvl3": "Code Props" } }, { "content": "DateInput", - "objectID": "8c80aedb-d84d-4b5b-aea0-6b64aab4b6d3", + "objectID": "b17086e4-c834-43ce-9ab7-3c89b3d98586", "type": "lvl1", "url": "/docs/components/date-input", "hierarchy": { "lvl1": "DateInput" } }, { "content": "Installation", - "objectID": "1e90ebdb-9846-45d8-9cbc-2d78af13185a", + "objectID": "c97f95ea-ecba-412c-8eff-5098d1c1a7c5", "type": "lvl2", "url": "/docs/components/date-input#installation", "hierarchy": { "lvl1": "DateInput", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "b9ba2757-8a07-46b9-9042-39dc9b36e677", + "objectID": "2a430d64-ad60-4b04-ba56-04738f5f02a9", "type": "lvl2", "url": "/docs/components/date-input#import", "hierarchy": { "lvl1": "DateInput", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "62badf7b-5fd3-4f62-8012-48339e6199e6", + "objectID": "c5e24ea6-1887-44b1-be1a-26e2ce52e2dc", "type": "lvl2", "url": "/docs/components/date-input#usage", "hierarchy": { "lvl1": "DateInput", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "a193089f-ade7-4338-b306-3b35e1d9231c", + "objectID": "ce406b59-381c-4317-a499-983f7204b28b", "type": "lvl3", "url": "/docs/components/date-input#disabled", "hierarchy": { "lvl1": "DateInput", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Read Only", - "objectID": "c94392f7-0dc0-413b-b357-30c86d7270f5", + "objectID": "fc4314bd-08bf-4f92-afee-727e9d36ad2a", "type": "lvl3", "url": "/docs/components/date-input#read-only", "hierarchy": { @@ -2830,7 +2971,7 @@ }, { "content": "Required", - "objectID": "374fae73-7b13-4269-aadb-45e0ca94d3a3", + "objectID": "e7a5dd12-cc74-4b2e-b4a4-ef681b7e760d", "type": "lvl3", "url": "/docs/components/date-input#required", "hierarchy": { @@ -2841,14 +2982,14 @@ }, { "content": "Variants", - "objectID": "f1cde3e6-78b8-4e73-a310-404cff60372e", + "objectID": "7f78e122-ad40-45fd-ae85-029016421c9b", "type": "lvl3", "url": "/docs/components/date-input#variants", "hierarchy": { "lvl1": "DateInput", "lvl2": "Required", "lvl3": "Variants" } }, { "content": "Label Placements", - "objectID": "9fbef8a5-425a-49aa-a2e5-3b03e0a7bd92", + "objectID": "26fb5bc2-86cc-44bd-9137-1e4b72831c2e", "type": "lvl3", "url": "/docs/components/date-input#label-placements", "hierarchy": { @@ -2859,7 +3000,7 @@ }, { "content": "Start & End Content", - "objectID": "e0807aec-05b6-48dc-a738-841e94012873", + "objectID": "9583f4b8-e594-4230-b5fe-e7fdf9538756", "type": "lvl3", "url": "/docs/components/date-input#start--end-content", "hierarchy": { @@ -2870,7 +3011,7 @@ }, { "content": "With Description", - "objectID": "2ddbcebc-2400-47f9-83d2-2c46b15cb4ef", + "objectID": "6b2f00e7-5ed9-440f-a9ec-b56c219a6e14", "type": "lvl3", "url": "/docs/components/date-input#with-description", "hierarchy": { @@ -2881,7 +3022,7 @@ }, { "content": "With Error Message", - "objectID": "48df5e3d-9386-4a0a-984d-2e587991438d", + "objectID": "6f2775fd-f276-4db2-b414-b7dba69d62c6", "type": "lvl3", "url": "/docs/components/date-input#with-error-message", "hierarchy": { @@ -2892,7 +3033,7 @@ }, { "content": "Controlled", - "objectID": "632f4ff4-7a55-49e1-a71c-be1eefdbfba8", + "objectID": "4e627d4d-09f8-4b6d-932b-667cbdc97318", "type": "lvl3", "url": "/docs/components/date-input#controlled", "hierarchy": { @@ -2903,7 +3044,7 @@ }, { "content": "Time Zones", - "objectID": "9c608e5a-4d0c-43f0-ab21-f9e3241062c5", + "objectID": "4bf14c82-480d-44a3-985e-95e9a5ad1763", "type": "lvl3", "url": "/docs/components/date-input#time-zones", "hierarchy": { @@ -2914,7 +3055,7 @@ }, { "content": "Granularity", - "objectID": "87217e3a-0689-4b21-a531-7c54b83db4da", + "objectID": "15e41cc6-c2e2-4067-9f34-3b485838e535", "type": "lvl3", "url": "/docs/components/date-input#granularity", "hierarchy": { @@ -2925,7 +3066,7 @@ }, { "content": "Min Date And Max Date", - "objectID": "7ecbe533-2ad4-4a07-a2ce-e93507878b8c", + "objectID": "fa37ae62-dfc8-4aa6-a77b-49f337787f84", "type": "lvl3", "url": "/docs/components/date-input#min-date-and-max-date", "hierarchy": { @@ -2936,7 +3077,7 @@ }, { "content": "International Calendar", - "objectID": "5373a630-4e8b-475a-a2ee-4d3bf9cb76e1", + "objectID": "e8e416c1-0eed-4bb0-bee6-630a460b3baf", "type": "lvl3", "url": "/docs/components/date-input#international-calendar", "hierarchy": { @@ -2947,7 +3088,7 @@ }, { "content": "Hide Time Zone", - "objectID": "32a33adb-6ec4-4572-b49d-d7e3dc39426e", + "objectID": "452fd183-800b-48b8-8667-c7a0f2ed0320", "type": "lvl3", "url": "/docs/components/date-input#hide-time-zone", "hierarchy": { @@ -2958,7 +3099,7 @@ }, { "content": "Hourly Cycle", - "objectID": "3ba902a5-e0fc-4ceb-8589-9282d6dfcc65", + "objectID": "1f8f4f39-916a-4ec1-a3d2-2e0abe644972", "type": "lvl3", "url": "/docs/components/date-input#hourly-cycle", "hierarchy": { @@ -2969,14 +3110,14 @@ }, { "content": "Slots", - "objectID": "230d2f81-fcd5-41dd-88a3-066755e0f22a", + "objectID": "02ed3004-67a4-4997-8357-fba72e6b650f", "type": "lvl2", "url": "/docs/components/date-input#slots", "hierarchy": { "lvl1": "DateInput", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "863d2f50-d3da-430e-9357-90e61af97919", + "objectID": "e169a9f5-fb39-4f4a-80c0-7ee87279401a", "type": "lvl2", "url": "/docs/components/date-input#data-attributes", "hierarchy": { @@ -2987,21 +3128,21 @@ }, { "content": "Accessibility", - "objectID": "45c2315f-7655-4dbf-882b-7f55e685e6fd", + "objectID": "7955692f-0827-4378-9db4-1b1512dfd168", "type": "lvl2", "url": "/docs/components/date-input#accessibility", "hierarchy": { "lvl1": "DateInput", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "e0def356-d55e-428a-b5b2-7db62f45c7a5", + "objectID": "baaa5080-f63b-4d68-8e54-4de72cd8a16b", "type": "lvl2", "url": "/docs/components/date-input#api", "hierarchy": { "lvl1": "DateInput", "lvl2": "API", "lvl3": null } }, { "content": "DateInput Props", - "objectID": "ace3d888-f0f0-4536-8d1b-a2e91d19e4f5", + "objectID": "b6211a2b-b149-4e8d-8886-c2eaddeeb32e", "type": "lvl3", "url": "/docs/components/date-input#dateinput-props", "hierarchy": { @@ -3012,7 +3153,7 @@ }, { "content": "DateInput Events", - "objectID": "7f5d3562-5dfc-472d-bb60-a427b00f3ea9", + "objectID": "8b40b4c4-06f9-4204-a2f8-a03beed73add", "type": "lvl3", "url": "/docs/components/date-input#dateinput-events", "hierarchy": { @@ -3023,42 +3164,42 @@ }, { "content": "DatePicker", - "objectID": "f24a3dcc-4c61-4ac9-b693-81850c0dd97b", + "objectID": "6a341dbd-d92f-4569-ac49-72984add839a", "type": "lvl1", "url": "/docs/components/date-picker", "hierarchy": { "lvl1": "DatePicker" } }, { "content": "Installation", - "objectID": "51284fdb-ebe7-4b66-9a30-20bfc6753c54", + "objectID": "1870ad81-9640-4de0-9efd-a72585285138", "type": "lvl2", "url": "/docs/components/date-picker#installation", "hierarchy": { "lvl1": "DatePicker", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "5ff7efbb-5c6d-48b1-91bb-02bf3dc6c2e1", + "objectID": "03c5ad77-6b6a-4b7c-99e2-f8fd7133ee40", "type": "lvl2", "url": "/docs/components/date-picker#import", "hierarchy": { "lvl1": "DatePicker", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "58cd41f3-b17c-491d-89a5-0ca03551aa88", + "objectID": "1575fc10-b2d2-4e65-8921-b2bfacc32793", "type": "lvl2", "url": "/docs/components/date-picker#usage", "hierarchy": { "lvl1": "DatePicker", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "30a7c9d5-06e8-406b-beb3-65b857239d77", + "objectID": "d04cde60-3372-4fe0-a8ae-c26289e557a4", "type": "lvl3", "url": "/docs/components/date-picker#disabled", "hierarchy": { "lvl1": "DatePicker", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Read Only", - "objectID": "cf052b54-6a72-47d0-bad6-47afcdd70e9e", + "objectID": "9215c1f7-2b30-4c93-93bf-149a22b7ba70", "type": "lvl3", "url": "/docs/components/date-picker#read-only", "hierarchy": { @@ -3069,7 +3210,7 @@ }, { "content": "Required", - "objectID": "25a97ead-92a1-47d3-a74d-40e9c0d993c5", + "objectID": "205e9851-42db-425b-bbde-fb6cd7763769", "type": "lvl3", "url": "/docs/components/date-picker#required", "hierarchy": { @@ -3080,7 +3221,7 @@ }, { "content": "Variants", - "objectID": "8d98cfa0-b3c4-4456-b940-ae1f9e88eeda", + "objectID": "611e1677-6358-453f-83d6-eceb49f9b620", "type": "lvl3", "url": "/docs/components/date-picker#variants", "hierarchy": { @@ -3091,7 +3232,7 @@ }, { "content": "Label Placements", - "objectID": "ec726d03-fe3e-4d25-a6a0-4ebc3a1a8460", + "objectID": "6fd063c0-b479-4be3-a404-544df4df2477", "type": "lvl3", "url": "/docs/components/date-picker#label-placements", "hierarchy": { @@ -3102,7 +3243,7 @@ }, { "content": "With Description", - "objectID": "f039e32b-578c-4b51-9295-04767433f4ae", + "objectID": "016df2b0-171a-489e-aa75-20fd4ce9a80b", "type": "lvl3", "url": "/docs/components/date-picker#with-description", "hierarchy": { @@ -3113,7 +3254,7 @@ }, { "content": "With Error Message", - "objectID": "ae1b99bf-19c4-4a1f-90fd-2cc8421cd183", + "objectID": "6ab7af22-8609-4942-a21d-07e5de562322", "type": "lvl3", "url": "/docs/components/date-picker#with-error-message", "hierarchy": { @@ -3124,7 +3265,7 @@ }, { "content": "With Month and Year Pickers", - "objectID": "cdc2ef17-cef1-4452-bcd7-9591775384a3", + "objectID": "ddf266f0-d4b6-4b18-8a47-7fbc114535d0", "type": "lvl3", "url": "/docs/components/date-picker#with-month-and-year-pickers", "hierarchy": { @@ -3135,7 +3276,7 @@ }, { "content": "With Time Fields", - "objectID": "2ddf5e77-4cde-4aae-8c84-7347ae88bd06", + "objectID": "103b03fa-faa2-47b7-9308-6b69f65e2983", "type": "lvl3", "url": "/docs/components/date-picker#with-time-fields", "hierarchy": { @@ -3146,7 +3287,7 @@ }, { "content": "Selector Icon", - "objectID": "457269e3-4341-4af8-9f76-68a68e9a7205", + "objectID": "3c5a2934-3409-41d9-9224-9410a84d51a2", "type": "lvl3", "url": "/docs/components/date-picker#selector-icon", "hierarchy": { @@ -3155,20 +3296,31 @@ "lvl3": "Selector Icon" } }, + { + "content": "Selector Button Placement", + "objectID": "75dbce8a-1575-4c43-8308-990a52a10033", + "type": "lvl3", + "url": "/docs/components/date-picker#selector-button-placement", + "hierarchy": { + "lvl1": "DatePicker", + "lvl2": "Selector Icon", + "lvl3": "Selector Button Placement" + } + }, { "content": "Controlled", - "objectID": "5cc80a7d-f237-4822-ab22-2ebf1d53a0a8", + "objectID": "1a6799f3-f69d-45cc-9897-ff944b993d79", "type": "lvl3", "url": "/docs/components/date-picker#controlled", "hierarchy": { "lvl1": "DatePicker", - "lvl2": "Selector Icon", + "lvl2": "Selector Button Placement", "lvl3": "Controlled" } }, { "content": "Time Zones", - "objectID": "d2a12639-3b66-4fe8-8e31-fe8a1f4363eb", + "objectID": "9d1387a8-f185-4de0-a627-c432fc5f7fb3", "type": "lvl3", "url": "/docs/components/date-picker#time-zones", "hierarchy": { @@ -3179,7 +3331,7 @@ }, { "content": "Granularity", - "objectID": "9e0ea0d4-7e21-4bc4-adc5-35d6b2c41ba9", + "objectID": "1cc241fa-44a4-4a64-8655-f6c1f742e8ba", "type": "lvl3", "url": "/docs/components/date-picker#granularity", "hierarchy": { @@ -3190,7 +3342,7 @@ }, { "content": "Min Date And Max Date", - "objectID": "49768cfd-891c-4205-8a1b-429b502d310d", + "objectID": "faf202c8-b9fb-4902-b95a-f5abcbe92159", "type": "lvl3", "url": "/docs/components/date-picker#min-date-and-max-date", "hierarchy": { @@ -3201,7 +3353,7 @@ }, { "content": "International Calendar", - "objectID": "c3b2fc1b-9de0-4356-9852-00432d3c0bb7", + "objectID": "cad099f5-6007-47c6-8ea7-737d2e12d535", "type": "lvl3", "url": "/docs/components/date-picker#international-calendar", "hierarchy": { @@ -3212,7 +3364,7 @@ }, { "content": "Unavailable Dates", - "objectID": "84e23f4a-cac7-4bf8-8e21-8607bc5654a2", + "objectID": "7ed47840-84c3-4606-89a4-35083137049e", "type": "lvl3", "url": "/docs/components/date-picker#unavailable-dates", "hierarchy": { @@ -3223,7 +3375,7 @@ }, { "content": "Visible Months", - "objectID": "71b452fd-cd81-4d67-a31f-31ec7cae803b", + "objectID": "1ce12115-c788-479a-891f-b51c7fb29be4", "type": "lvl3", "url": "/docs/components/date-picker#visible-months", "hierarchy": { @@ -3234,7 +3386,7 @@ }, { "content": "Page Behavior", - "objectID": "64f81eff-7262-4c81-889c-c9c9bd84cba8", + "objectID": "6be55fbe-324e-4c1b-8df6-70e82a3fb785", "type": "lvl3", "url": "/docs/components/date-picker#page-behavior", "hierarchy": { @@ -3245,7 +3397,7 @@ }, { "content": "Preset", - "objectID": "47ea7a28-4f9c-4ef7-a580-8001cbfe09cf", + "objectID": "7356e62e-a4e0-4c77-9999-eb4a6fbf2001", "type": "lvl3", "url": "/docs/components/date-picker#preset", "hierarchy": { @@ -3256,14 +3408,14 @@ }, { "content": "Slots", - "objectID": "47d4cbce-8081-49e6-9e4c-92cd293ab869", + "objectID": "b33acd63-3db3-4a5d-9671-411650c03e56", "type": "lvl2", "url": "/docs/components/date-picker#slots", "hierarchy": { "lvl1": "DatePicker", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "faf9a3cc-bb72-42b5-9d23-af0b9c1e9ef3", + "objectID": "18ed067e-4893-4fd2-af49-c4e7dda0ecda", "type": "lvl2", "url": "/docs/components/date-picker#data-attributes", "hierarchy": { @@ -3274,21 +3426,21 @@ }, { "content": "Accessibility", - "objectID": "d3bb9d7b-c6d9-4d29-816b-b583ac162bd7", + "objectID": "b1cffc48-b4f4-4c80-8295-912d1ff02df8", "type": "lvl2", "url": "/docs/components/date-picker#accessibility", "hierarchy": { "lvl1": "DatePicker", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "c5e5a12e-0497-4089-91c1-486f85357ff6", + "objectID": "e11238a3-19f9-49f7-8012-e43509ed21e0", "type": "lvl2", "url": "/docs/components/date-picker#api", "hierarchy": { "lvl1": "DatePicker", "lvl2": "API", "lvl3": null } }, { "content": "DatePicker Props", - "objectID": "8b6c51df-fded-4572-9bff-1140fd6061d7", + "objectID": "996a6016-66c5-4b2e-8a44-807667f97eab", "type": "lvl3", "url": "/docs/components/date-picker#datepicker-props", "hierarchy": { @@ -3299,7 +3451,7 @@ }, { "content": "DatePicker Events", - "objectID": "9a091269-8130-43ec-9619-18d5a5db1bf1", + "objectID": "5dfc32ca-5cbc-425e-bdc3-cb65b5ac3340", "type": "lvl3", "url": "/docs/components/date-picker#datepicker-events", "hierarchy": { @@ -3310,28 +3462,39 @@ }, { "content": "Date Range Picker", - "objectID": "9475d30d-832a-4ce5-bc21-34d278195f1b", + "objectID": "19a9fd71-0113-425a-82d8-1223699e9f7e", "type": "lvl1", "url": "/docs/components/date-range-picker", "hierarchy": { "lvl1": "Date Range Picker" } }, + { + "content": "Installation", + "objectID": "b4546bad-6463-4f14-98e6-423dd66cbc56", + "type": "lvl2", + "url": "/docs/components/date-range-picker#installation", + "hierarchy": { + "lvl1": "Date Range Picker", + "lvl2": "Installation", + "lvl3": null + } + }, { "content": "Import", - "objectID": "c97ec6f2-e0da-4ae1-af47-149db1b734dd", + "objectID": "6ee84264-89e1-4cc3-9d96-19d61d9e2458", "type": "lvl2", "url": "/docs/components/date-range-picker#import", "hierarchy": { "lvl1": "Date Range Picker", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "03c1198c-e7a5-4227-9429-f13f59d76050", + "objectID": "5b6f16b1-c71c-4621-b3c4-7091baabc2a4", "type": "lvl2", "url": "/docs/components/date-range-picker#usage", "hierarchy": { "lvl1": "Date Range Picker", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "72e932e6-1fc9-4512-bb06-3cf51e62a69d", + "objectID": "75c1b724-f26e-4bb3-8c69-24b984ac8090", "type": "lvl3", "url": "/docs/components/date-range-picker#disabled", "hierarchy": { @@ -3342,7 +3505,7 @@ }, { "content": "Read Only", - "objectID": "62c8ca62-bc88-40bc-92e8-446328938a0b", + "objectID": "e1123267-fd8a-418a-8368-77475d195151", "type": "lvl3", "url": "/docs/components/date-range-picker#read-only", "hierarchy": { @@ -3353,7 +3516,7 @@ }, { "content": "Required", - "objectID": "47eca5ba-10b4-4b31-a3da-15470b7690cc", + "objectID": "756df7a7-6539-4693-b72f-2c71fdc57115", "type": "lvl3", "url": "/docs/components/date-range-picker#required", "hierarchy": { @@ -3364,7 +3527,7 @@ }, { "content": "Variants", - "objectID": "8e79bfe0-08e0-466c-abbe-c18e72674c04", + "objectID": "d9170234-6081-4c8e-b225-2939074b405d", "type": "lvl3", "url": "/docs/components/date-range-picker#variants", "hierarchy": { @@ -3373,20 +3536,42 @@ "lvl3": "Variants" } }, + { + "content": "Visible Months", + "objectID": "b0d87431-41b8-4fe1-90cb-1b7f38dcbd48", + "type": "lvl3", + "url": "/docs/components/date-range-picker#visible-months", + "hierarchy": { + "lvl1": "Date Range Picker", + "lvl2": "Variants", + "lvl3": "Visible Months" + } + }, + { + "content": "Page Behavior", + "objectID": "aae7c481-ec08-496a-8244-9987e90db034", + "type": "lvl3", + "url": "/docs/components/date-range-picker#page-behavior", + "hierarchy": { + "lvl1": "Date Range Picker", + "lvl2": "Visible Months", + "lvl3": "Page Behavior" + } + }, { "content": "Label Placements", - "objectID": "d924aca1-f449-465f-bfef-9e284b252173", + "objectID": "ea8fe680-eab4-45b1-b1a5-39178d95784e", "type": "lvl3", "url": "/docs/components/date-range-picker#label-placements", "hierarchy": { "lvl1": "Date Range Picker", - "lvl2": "Variants", + "lvl2": "Page Behavior", "lvl3": "Label Placements" } }, { "content": "With Description", - "objectID": "fd39c7e6-e4bb-4638-944c-7bdb8479bd43", + "objectID": "4851863b-8425-41b8-9aa4-342654552202", "type": "lvl3", "url": "/docs/components/date-range-picker#with-description", "hierarchy": { @@ -3397,7 +3582,7 @@ }, { "content": "With Error Message", - "objectID": "b06b5f6a-68b6-4b8b-9dbe-c0d7335a606f", + "objectID": "53fb56c5-7fdb-4799-986b-38c2c44fbaf9", "type": "lvl3", "url": "/docs/components/date-range-picker#with-error-message", "hierarchy": { @@ -3406,20 +3591,31 @@ "lvl3": "With Error Message" } }, + { + "content": "With Month and Year Pickers", + "objectID": "448c42ba-fc45-4402-b66b-8f5720efe38b", + "type": "lvl3", + "url": "/docs/components/date-range-picker#with-month-and-year-pickers", + "hierarchy": { + "lvl1": "Date Range Picker", + "lvl2": "With Error Message", + "lvl3": "With Month and Year Pickers" + } + }, { "content": "With Time Fields", - "objectID": "ed328851-bc6a-4e19-add4-f71adf1c57f3", + "objectID": "bc572944-6b33-41d6-9075-1c73cb397eca", "type": "lvl3", "url": "/docs/components/date-range-picker#with-time-fields", "hierarchy": { "lvl1": "Date Range Picker", - "lvl2": "With Error Message", + "lvl2": "With Month and Year Pickers", "lvl3": "With Time Fields" } }, { "content": "Selector Icon", - "objectID": "ae51ba93-ca4f-4212-b5ce-8df3d4c8b79f", + "objectID": "fcd5736c-088e-4470-b21d-72a892832ff5", "type": "lvl3", "url": "/docs/components/date-range-picker#selector-icon", "hierarchy": { @@ -3428,20 +3624,31 @@ "lvl3": "Selector Icon" } }, + { + "content": "Selector Button Placement", + "objectID": "b1e31e90-c6ec-4a5c-bc00-d7bbbef41473", + "type": "lvl3", + "url": "/docs/components/date-range-picker#selector-button-placement", + "hierarchy": { + "lvl1": "Date Range Picker", + "lvl2": "Selector Icon", + "lvl3": "Selector Button Placement" + } + }, { "content": "Controlled", - "objectID": "ead1c015-c6f2-4af0-a81b-3e4d3c0bde3a", + "objectID": "2a7d7b53-c309-40e9-8055-b3b33922d544", "type": "lvl3", "url": "/docs/components/date-range-picker#controlled", "hierarchy": { "lvl1": "Date Range Picker", - "lvl2": "Selector Icon", + "lvl2": "Selector Button Placement", "lvl3": "Controlled" } }, { "content": "Time Zones", - "objectID": "990f65f0-192c-4edd-8eff-dc33e93487dc", + "objectID": "46bac10d-cacd-402d-bc3b-1703b771f6a4", "type": "lvl3", "url": "/docs/components/date-range-picker#time-zones", "hierarchy": { @@ -3452,7 +3659,7 @@ }, { "content": "Granularity", - "objectID": "5d8b6708-46f2-48d0-a7a9-bad993641ab1", + "objectID": "2cfa855f-16ae-4a12-af8c-42d13b0ca89e", "type": "lvl3", "url": "/docs/components/date-range-picker#granularity", "hierarchy": { @@ -3463,7 +3670,7 @@ }, { "content": "Min Date And Max Date", - "objectID": "499635b7-561b-4e3d-b115-fab677e6b32f", + "objectID": "9e1b5e53-38cc-4d52-b085-29fc43ebaf57", "type": "lvl3", "url": "/docs/components/date-range-picker#min-date-and-max-date", "hierarchy": { @@ -3474,7 +3681,7 @@ }, { "content": "International Calendar", - "objectID": "c4b18b61-fbd8-490e-b7a8-c9e78bc56e56", + "objectID": "9af17794-4663-489b-bd35-d1228ba73223", "type": "lvl3", "url": "/docs/components/date-range-picker#international-calendar", "hierarchy": { @@ -3485,7 +3692,7 @@ }, { "content": "Unavailable Dates", - "objectID": "a235fa13-2985-48f8-80d2-1cee8d94d31d", + "objectID": "52a7143c-fdcd-4853-8520-8ea013279210", "type": "lvl3", "url": "/docs/components/date-range-picker#unavailable-dates", "hierarchy": { @@ -3496,7 +3703,7 @@ }, { "content": "Non Contiguous", - "objectID": "2de67aa5-5de4-434e-947d-3d158a6f9e55", + "objectID": "3ca716fb-3972-4349-bfde-7eefc1ce77b5", "type": "lvl3", "url": "/docs/components/date-range-picker#non-contiguous", "hierarchy": { @@ -3505,49 +3712,38 @@ "lvl3": "Non Contiguous" } }, - { - "content": "Visible Months", - "objectID": "3c72a958-b816-46d0-b4a7-aa9db8f428f7", - "type": "lvl3", - "url": "/docs/components/date-range-picker#visible-months", - "hierarchy": { - "lvl1": "Date Range Picker", - "lvl2": "Non Contiguous", - "lvl3": "Visible Months" - } - }, - { - "content": "Page Behavior", - "objectID": "d7f0af72-2ac2-49b8-9b2d-8a75faaabac4", - "type": "lvl3", - "url": "/docs/components/date-range-picker#page-behavior", - "hierarchy": { - "lvl1": "Date Range Picker", - "lvl2": "Visible Months", - "lvl3": "Page Behavior" - } - }, { "content": "Presets", - "objectID": "6d1bdc43-1471-459c-a64b-9e0c2b7b584f", + "objectID": "d060bcf4-0ce9-447f-9a90-5e2488a7fd39", "type": "lvl3", "url": "/docs/components/date-range-picker#presets", "hierarchy": { "lvl1": "Date Range Picker", - "lvl2": "Page Behavior", + "lvl2": "Non Contiguous", "lvl3": "Presets" } }, { "content": "Slots", - "objectID": "30b609f2-a752-44c2-90de-d6f217f165af", + "objectID": "5402b710-ddf2-4514-8007-240107e89ad0", "type": "lvl2", "url": "/docs/components/date-range-picker#slots", "hierarchy": { "lvl1": "Date Range Picker", "lvl2": "Slots", "lvl3": null } }, + { + "content": "Custom Styles", + "objectID": "c045bdef-d62c-4aa6-b55e-8a41b9b7fcec", + "type": "lvl3", + "url": "/docs/components/date-range-picker#custom-styles", + "hierarchy": { + "lvl1": "Date Range Picker", + "lvl2": "Slots", + "lvl3": "Custom Styles" + } + }, { "content": "Data Attributes", - "objectID": "64a21bd9-8449-4e02-a9e5-c8524d5654a1", + "objectID": "ab6c4126-6fd9-4e34-8780-c43b07a1cc09", "type": "lvl2", "url": "/docs/components/date-range-picker#data-attributes", "hierarchy": { @@ -3558,7 +3754,7 @@ }, { "content": "Accessibility", - "objectID": "42526581-20e6-4c63-86d7-0c3f27c00ad0", + "objectID": "21dbaf72-9a9e-4993-8d82-5e5086953a6c", "type": "lvl2", "url": "/docs/components/date-range-picker#accessibility", "hierarchy": { @@ -3569,14 +3765,14 @@ }, { "content": "API", - "objectID": "dc33ac42-aa9d-4e91-a9b4-ea9c203f83ac", + "objectID": "710a5627-d8b2-4759-b165-768fff7bb3c7", "type": "lvl2", "url": "/docs/components/date-range-picker#api", "hierarchy": { "lvl1": "Date Range Picker", "lvl2": "API", "lvl3": null } }, { "content": "DateRangePicker Props", - "objectID": "cf869298-811d-4ed3-a89c-dd1924615b06", + "objectID": "a32ae488-8a63-43da-8b3e-026f0e848428", "type": "lvl3", "url": "/docs/components/date-range-picker#daterangepicker-props", "hierarchy": { @@ -3587,7 +3783,7 @@ }, { "content": "DateRangePicker Events", - "objectID": "3b78ff5a-bbb2-41ad-9c6f-1a5a20197114", + "objectID": "8fdd0ec5-8738-46aa-871c-6aa9deeb9d1f", "type": "lvl3", "url": "/docs/components/date-range-picker#daterangepicker-events", "hierarchy": { @@ -3598,113 +3794,274 @@ }, { "content": "Divider", - "objectID": "06607d44-a408-4d2f-8113-5e538e1d0038", + "objectID": "6f0d20b6-4d7e-4b5f-8673-0324ef4cbb2f", "type": "lvl1", "url": "/docs/components/divider", "hierarchy": { "lvl1": "Divider" } }, { "content": "Installation", - "objectID": "b5eb5595-ce15-4e5a-abe9-886e774bea7f", + "objectID": "0d5fac32-8397-48df-8b6d-b47eea05285c", "type": "lvl2", "url": "/docs/components/divider#installation", "hierarchy": { "lvl1": "Divider", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "94febf42-11a2-47ae-a13c-6eef8f138d32", + "objectID": "5c9915e9-37a4-4d1a-a5bb-1719a7c641f0", "type": "lvl2", "url": "/docs/components/divider#import", "hierarchy": { "lvl1": "Divider", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "6d11988d-2619-4b98-9e73-34402d452ce5", + "objectID": "5a176ffc-59a9-4ea8-9625-c0aca32b1f4b", "type": "lvl2", "url": "/docs/components/divider#usage", "hierarchy": { "lvl1": "Divider", "lvl2": "Usage", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "443a46fd-38d8-4022-812f-3f798dff8e2e", + "objectID": "ac0da147-3f99-4085-9629-7b096dc593f0", "type": "lvl2", "url": "/docs/components/divider#data-attributes", "hierarchy": { "lvl1": "Divider", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "085da30c-642e-4e83-9ccc-b74a6876beb6", + "objectID": "caaa33d0-13bf-4fd3-81f2-d2a183d3a9f9", "type": "lvl2", "url": "/docs/components/divider#accessibility", "hierarchy": { "lvl1": "Divider", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "f013c11b-14d2-4190-a833-15634e28d06f", + "objectID": "d7d2f81d-e379-42b1-86d5-7b4cf2e976b4", "type": "lvl2", "url": "/docs/components/divider#api", "hierarchy": { "lvl1": "Divider", "lvl2": "API", "lvl3": null } }, { "content": "Divider Props", - "objectID": "180f296d-2661-44ad-a12d-43508d59431c", + "objectID": "232b535a-7436-41ab-a274-41e7ea2e226e", "type": "lvl3", "url": "/docs/components/divider#divider-props", "hierarchy": { "lvl1": "Divider", "lvl2": "API", "lvl3": "Divider Props" } }, { - "content": "Dropdown", - "objectID": "a4b6187a-ad4a-4e68-9d27-ecb4045f0e8e", + "content": "Drawer", + "objectID": "aeee6935-8881-44b9-ab28-88000262fc3b", "type": "lvl1", - "url": "/docs/components/dropdown", - "hierarchy": { "lvl1": "Dropdown" } + "url": "/docs/components/drawer", + "hierarchy": { "lvl1": "Drawer" } }, { "content": "Installation", - "objectID": "e830d76c-c551-4067-af1f-ffeaeeb103a7", + "objectID": "46678557-d495-43b6-b946-ebc3fa5a9cc3", "type": "lvl2", - "url": "/docs/components/dropdown#installation", - "hierarchy": { "lvl1": "Dropdown", "lvl2": "Installation", "lvl3": null } + "url": "/docs/components/drawer#installation", + "hierarchy": { "lvl1": "Drawer", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "49011ef6-a8f4-443a-816e-735beefb2d61", + "objectID": "20fb08e7-7338-4da5-b4ee-9262b81f605a", "type": "lvl2", - "url": "/docs/components/dropdown#import", - "hierarchy": { "lvl1": "Dropdown", "lvl2": "Import", "lvl3": null } + "url": "/docs/components/drawer#import", + "hierarchy": { "lvl1": "Drawer", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "76b3bda6-f400-4fc4-84b3-672077b7850a", + "objectID": "72ab7222-a5a5-4403-9ebd-c2cbfea2ed40", "type": "lvl2", - "url": "/docs/components/dropdown#usage", - "hierarchy": { "lvl1": "Dropdown", "lvl2": "Usage", "lvl3": null } + "url": "/docs/components/drawer#usage", + "hierarchy": { "lvl1": "Drawer", "lvl2": "Usage", "lvl3": null } }, { - "content": "Dynamic items", - "objectID": "4054f685-3c0d-4e58-89ec-948415ab2864", + "content": "Sizes", + "objectID": "85a3b929-ca90-402b-bc74-b65de1261414", "type": "lvl3", - "url": "/docs/components/dropdown#dynamic-items", + "url": "/docs/components/drawer#sizes", + "hierarchy": { "lvl1": "Drawer", "lvl2": "Usage", "lvl3": "Sizes" } + }, + { + "content": "Non-dismissible", + "objectID": "75a5933a-663f-4f71-b85b-d1483f202c13", + "type": "lvl3", + "url": "/docs/components/drawer#non-dismissible", "hierarchy": { - "lvl1": "Dropdown", - "lvl2": "Usage", - "lvl3": "Dynamic items" + "lvl1": "Drawer", + "lvl2": "Sizes", + "lvl3": "Non-dismissible" } }, { - "content": "Disabled Keys", - "objectID": "8b128ff1-158e-4441-b9ca-1e6533c40f91", + "content": "Drawer placement", + "objectID": "1a38134e-0357-4595-972f-bda26676efe7", "type": "lvl3", - "url": "/docs/components/dropdown#disabled-keys", + "url": "/docs/components/drawer#drawer-placement", "hierarchy": { - "lvl1": "Dropdown", + "lvl1": "Drawer", + "lvl2": "Non-dismissible", + "lvl3": "Drawer placement" + } + }, + { + "content": "With Form", + "objectID": "bef3f499-5848-4e84-80bb-5b210a3a530f", + "type": "lvl3", + "url": "/docs/components/drawer#with-form", + "hierarchy": { + "lvl1": "Drawer", + "lvl2": "Drawer placement", + "lvl3": "With Form" + } + }, + { + "content": "Backdrop", + "objectID": "12b0610a-9512-443e-abde-da8130bacd83", + "type": "lvl3", + "url": "/docs/components/drawer#backdrop", + "hierarchy": { "lvl1": "Drawer", "lvl2": "With Form", "lvl3": "Backdrop" } + }, + { + "content": "Custom Motion", + "objectID": "61bbf607-88a7-4104-b296-91dbfc52bd51", + "type": "lvl3", + "url": "/docs/components/drawer#custom-motion", + "hierarchy": { + "lvl1": "Drawer", + "lvl2": "Backdrop", + "lvl3": "Custom Motion" + } + }, + { + "content": "Custom Styles", + "objectID": "e0ac3299-7eeb-497e-ae0c-6b03b18d024a", + "type": "lvl3", + "url": "/docs/components/drawer#custom-styles", + "hierarchy": { + "lvl1": "Drawer", + "lvl2": "Custom Motion", + "lvl3": "Custom Styles" + } + }, + { + "content": "Slots", + "objectID": "c747b0a0-94da-4086-82aa-635c8774bdab", + "type": "lvl2", + "url": "/docs/components/drawer#slots", + "hierarchy": { "lvl1": "Drawer", "lvl2": "Slots", "lvl3": null } + }, + { + "content": "Data Attributes", + "objectID": "9c799e03-5306-4e6e-95d1-ebeffccea1c4", + "type": "lvl2", + "url": "/docs/components/drawer#data-attributes", + "hierarchy": { "lvl1": "Drawer", "lvl2": "Data Attributes", "lvl3": null } + }, + { + "content": "Accessibility", + "objectID": "ee54d1d6-8315-401d-8f0a-71d18a975cb3", + "type": "lvl2", + "url": "/docs/components/drawer#accessibility", + "hierarchy": { "lvl1": "Drawer", "lvl2": "Accessibility", "lvl3": null } + }, + { + "content": "API", + "objectID": "d1c89e1c-d8d8-49a7-8b45-d274b99eec43", + "type": "lvl2", + "url": "/docs/components/drawer#api", + "hierarchy": { "lvl1": "Drawer", "lvl2": "API", "lvl3": null } + }, + { + "content": "Drawer Props", + "objectID": "eb1bd0c8-f309-4ea4-9207-8aa887844e6a", + "type": "lvl3", + "url": "/docs/components/drawer#drawer-props", + "hierarchy": { "lvl1": "Drawer", "lvl2": "API", "lvl3": "Drawer Props" } + }, + { + "content": "Drawer Events", + "objectID": "9f56b4b1-229d-40e2-8b0e-d453ee88fc3c", + "type": "lvl3", + "url": "/docs/components/drawer#drawer-events", + "hierarchy": { + "lvl1": "Drawer", + "lvl2": "Drawer Props", + "lvl3": "Drawer Events" + } + }, + { + "content": "Drawer types", + "objectID": "906918fc-66c0-4843-be24-c25d21b1bb00", + "type": "lvl3", + "url": "/docs/components/drawer#drawer-types", + "hierarchy": { + "lvl1": "Drawer", + "lvl2": "Drawer Events", + "lvl3": "Drawer types" + } + }, + { + "content": "Motion Props", + "objectID": "61274504-ebd4-4d49-8102-17dbb2a318f5", + "type": "lvl4", + "url": "/docs/components/drawer#motion-props", + "hierarchy": { "lvl1": "Drawer", "lvl2": "Drawer types", "lvl3": null } + }, + { + "content": "Dropdown", + "objectID": "d88d5bda-45cd-478a-b9de-8c07f85e4bff", + "type": "lvl1", + "url": "/docs/components/dropdown", + "hierarchy": { "lvl1": "Dropdown" } + }, + { + "content": "Installation", + "objectID": "e6179617-360e-4e1e-8dff-e12d30f4e7e8", + "type": "lvl2", + "url": "/docs/components/dropdown#installation", + "hierarchy": { "lvl1": "Dropdown", "lvl2": "Installation", "lvl3": null } + }, + { + "content": "Import", + "objectID": "be4bc842-37c1-472b-bcf6-b5f8b52105b9", + "type": "lvl2", + "url": "/docs/components/dropdown#import", + "hierarchy": { "lvl1": "Dropdown", "lvl2": "Import", "lvl3": null } + }, + { + "content": "Usage", + "objectID": "38da9aa8-e994-4fde-85bd-f884852b6fe6", + "type": "lvl2", + "url": "/docs/components/dropdown#usage", + "hierarchy": { "lvl1": "Dropdown", "lvl2": "Usage", "lvl3": null } + }, + { + "content": "Dynamic items", + "objectID": "f3ea28c6-b17b-4ce7-bd0a-826d8d581f6d", + "type": "lvl3", + "url": "/docs/components/dropdown#dynamic-items", + "hierarchy": { + "lvl1": "Dropdown", + "lvl2": "Usage", + "lvl3": "Dynamic items" + } + }, + { + "content": "Disabled Keys", + "objectID": "be1b79f1-32de-4a8a-89a2-57fa88eb3387", + "type": "lvl3", + "url": "/docs/components/dropdown#disabled-keys", + "hierarchy": { + "lvl1": "Dropdown", "lvl2": "Dynamic items", "lvl3": "Disabled Keys" } }, { "content": "Action event", - "objectID": "f1c20e40-9122-41ad-99ac-d2c0bc35629b", + "objectID": "1541c5c8-667e-48e1-946c-5208c1509b79", "type": "lvl3", "url": "/docs/components/dropdown#action-event", "hierarchy": { @@ -3715,7 +4072,7 @@ }, { "content": "Variants", - "objectID": "66650e65-41de-432e-a4a1-e6d1668a5372", + "objectID": "f5e09b8f-a4b0-40dc-ba84-488644f07fb2", "type": "lvl3", "url": "/docs/components/dropdown#variants", "hierarchy": { @@ -3726,7 +4083,7 @@ }, { "content": "Single Selection", - "objectID": "1bc80e7e-379a-408f-b63a-7193a47319e9", + "objectID": "b36a6eaf-fe01-4aa8-ad65-f9dfe9d1853c", "type": "lvl3", "url": "/docs/components/dropdown#single-selection", "hierarchy": { @@ -3737,7 +4094,7 @@ }, { "content": "Multiple Selection", - "objectID": "7942f93e-45f6-4c20-9417-22ecac2187d1", + "objectID": "3c5ec9bc-8098-4a60-9717-70855784f7ea", "type": "lvl3", "url": "/docs/components/dropdown#multiple-selection", "hierarchy": { @@ -3748,7 +4105,7 @@ }, { "content": "With Shortcut", - "objectID": "7aa7d961-b794-49d2-b31c-913ca30f2373", + "objectID": "135b0f4e-fc15-4ce0-8b56-5a54f58f18dc", "type": "lvl3", "url": "/docs/components/dropdown#with-shortcut", "hierarchy": { @@ -3759,7 +4116,7 @@ }, { "content": "With Icons", - "objectID": "731b0b86-21cd-405a-947d-db4418d7bacd", + "objectID": "0966391f-d5ef-46f0-85cd-6fb56fee9f1a", "type": "lvl3", "url": "/docs/components/dropdown#with-icons", "hierarchy": { @@ -3770,7 +4127,7 @@ }, { "content": "With Description", - "objectID": "8a4c791a-ad10-47ef-883e-72af180724e0", + "objectID": "52abb0f6-fe39-4e07-ba99-9017f453851c", "type": "lvl3", "url": "/docs/components/dropdown#with-description", "hierarchy": { @@ -3781,7 +4138,7 @@ }, { "content": "With Sections", - "objectID": "c8cd23f9-f8a7-4eca-89e8-a3492ff6243c", + "objectID": "c39d14e9-9cb0-431b-8aa7-435ce7a79ae8", "type": "lvl3", "url": "/docs/components/dropdown#with-sections", "hierarchy": { @@ -3792,7 +4149,7 @@ }, { "content": "Custom Trigger", - "objectID": "bca79e3b-1f31-4b4f-a9b7-2f578a12fc4c", + "objectID": "1ee99a99-20ed-4af1-8f60-2dc276ea5076", "type": "lvl3", "url": "/docs/components/dropdown#custom-trigger", "hierarchy": { @@ -3803,7 +4160,7 @@ }, { "content": "Changing the backdrop", - "objectID": "b5d94f90-1757-4f30-93b6-5974543fe6cf", + "objectID": "5018d7f7-d81a-400f-b301-5fd35da2a720", "type": "lvl3", "url": "/docs/components/dropdown#changing-the-backdrop", "hierarchy": { @@ -3814,7 +4171,7 @@ }, { "content": "Routing", - "objectID": "49522ae7-2c50-4779-9c31-004fd3709b55", + "objectID": "5a698a45-8369-4cb6-bc08-5acd2362ba75", "type": "lvl3", "url": "/docs/components/dropdown#routing", "hierarchy": { @@ -3825,21 +4182,21 @@ }, { "content": "Slots", - "objectID": "9089bac8-9de3-4908-9f26-c0d6d30b13af", + "objectID": "3c24438f-4d43-4221-9b32-68c46363a836", "type": "lvl2", "url": "/docs/components/dropdown#slots", "hierarchy": { "lvl1": "Dropdown", "lvl2": "Slots", "lvl3": null } }, { "content": "DropdownMenu", - "objectID": "eb60c3b0-7ee0-4470-8f13-20900cda3b9e", + "objectID": "a86a1f4b-87ab-41ee-80da-03ff04fab876", "type": "lvl3", "url": "/docs/components/dropdown#dropdownmenu", "hierarchy": { "lvl1": "Dropdown", "lvl2": "Slots", "lvl3": "DropdownMenu" } }, { "content": "DropdownItem", - "objectID": "21f72b16-4cef-4c7b-8a69-4031c05ee17c", + "objectID": "d2cb27bd-8c61-4b59-9e87-3d79e79d4208", "type": "lvl3", "url": "/docs/components/dropdown#dropdownitem", "hierarchy": { @@ -3850,7 +4207,7 @@ }, { "content": "DropdownSection", - "objectID": "b88e9a82-5586-411a-8d27-3babcad1b78e", + "objectID": "94e4061c-002d-4346-bed5-053e748ebb46", "type": "lvl3", "url": "/docs/components/dropdown#dropdownsection", "hierarchy": { @@ -3861,7 +4218,7 @@ }, { "content": "Customizing the dropdown popover", - "objectID": "416295a6-fe3c-4a29-8d7b-828c777f1c94", + "objectID": "f6beb086-b704-4278-ada0-b7ccc91c1729", "type": "lvl3", "url": "/docs/components/dropdown#customizing-the-dropdown-popover", "hierarchy": { @@ -3872,7 +4229,7 @@ }, { "content": "Customizing the dropdown items style", - "objectID": "18695ba8-f012-4d2e-a590-a10f7291fb78", + "objectID": "e434cf98-114c-4290-9cfa-f398a89e7fd3", "type": "lvl3", "url": "/docs/components/dropdown#customizing-the-dropdown-items-style", "hierarchy": { @@ -3883,7 +4240,7 @@ }, { "content": "Keyboard Interactions", - "objectID": "7f524a16-3b2f-4945-80af-eadb8b4c2023", + "objectID": "20da632a-8bff-40df-8d3d-3ff6cb23b84b", "type": "lvl3", "url": "/docs/components/dropdown#keyboard-interactions", "hierarchy": { @@ -3894,35 +4251,35 @@ }, { "content": "Data Attributes", - "objectID": "9775ec88-0651-4352-a090-0a00f12a79fe", + "objectID": "7ba8e9ec-d5c5-450e-bb60-ddbdd949938b", "type": "lvl2", "url": "/docs/components/dropdown#data-attributes", "hierarchy": { "lvl1": "Dropdown", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "6a62fdc4-cbb4-48a5-b6d3-4c436e8d25bb", + "objectID": "ab8c1b85-4d97-4a0b-8f19-32c544cfafda", "type": "lvl2", "url": "/docs/components/dropdown#accessibility", "hierarchy": { "lvl1": "Dropdown", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "9bcbf1f9-706b-43b0-b46a-b8d19cd118ae", + "objectID": "e0fd88be-27ee-48ec-bf92-732c038f350e", "type": "lvl2", "url": "/docs/components/dropdown#api", "hierarchy": { "lvl1": "Dropdown", "lvl2": "API", "lvl3": null } }, { "content": "Dropdown Props", - "objectID": "8588f87c-e162-4f53-9f5b-3d925b9590dd", + "objectID": "bc752c25-7e32-401e-a3d9-fbbd2f35ee8f", "type": "lvl3", "url": "/docs/components/dropdown#dropdown-props", "hierarchy": { "lvl1": "Dropdown", "lvl2": "API", "lvl3": "Dropdown Props" } }, { "content": "Dropdown Events", - "objectID": "b1f2e40a-32e8-41f7-8589-565d8241a113", + "objectID": "5f78c433-d7e3-4bde-a0ff-e9504f756fcd", "type": "lvl3", "url": "/docs/components/dropdown#dropdown-events", "hierarchy": { @@ -3933,7 +4290,7 @@ }, { "content": "DropdownTrigger Props", - "objectID": "fb1bfea1-d6e0-405f-8013-81593a915f3e", + "objectID": "fc928a38-7642-4548-ae84-61450f6ea156", "type": "lvl3", "url": "/docs/components/dropdown#dropdowntrigger-props", "hierarchy": { @@ -3944,7 +4301,7 @@ }, { "content": "DropdownMenu Props", - "objectID": "f57b27c8-1293-4817-a416-2b9fda186fae", + "objectID": "7c0c6f9e-9d37-4a12-844c-2bbe2d1c28cc", "type": "lvl3", "url": "/docs/components/dropdown#dropdownmenu-props", "hierarchy": { @@ -3955,7 +4312,7 @@ }, { "content": "DropdownMenu Events", - "objectID": "76c24eae-b5be-44d8-a313-475c5e9e5d3e", + "objectID": "fc56008d-9ad1-4987-b57c-47b903876f47", "type": "lvl3", "url": "/docs/components/dropdown#dropdownmenu-events", "hierarchy": { @@ -3966,7 +4323,7 @@ }, { "content": "DropdownSection Props", - "objectID": "dd0901d9-c4df-46a8-95ec-aab08f39f181", + "objectID": "c4715865-5a41-48c7-a180-f9c93dc05a63", "type": "lvl3", "url": "/docs/components/dropdown#dropdownsection-props", "hierarchy": { @@ -3977,7 +4334,7 @@ }, { "content": "DropdownItem Props", - "objectID": "e85157c7-2c46-400b-a3a5-bd7645190949", + "objectID": "f6a740a7-12d2-49e0-ba0e-0b4819e55b42", "type": "lvl3", "url": "/docs/components/dropdown#dropdownitem-props", "hierarchy": { @@ -3988,7 +4345,7 @@ }, { "content": "DropdownItem Events", - "objectID": "f62db7b9-800d-4be2-8861-564fea64e7cf", + "objectID": "f0b702c6-1b06-45b6-b45d-dcb2a4345d10", "type": "lvl3", "url": "/docs/components/dropdown#dropdownitem-events", "hierarchy": { @@ -3999,7 +4356,7 @@ }, { "content": "Types", - "objectID": "d07ada1b-34b9-4d63-997c-38f810e75ed6", + "objectID": "04e1188f-4ae0-4c5d-a094-d989e271fb8e", "type": "lvl3", "url": "/docs/components/dropdown#types", "hierarchy": { @@ -4010,56 +4367,56 @@ }, { "content": "Dropdown Item Selected Icon Props", - "objectID": "0fef4b44-82d1-4aa6-ae34-79733bf02c81", + "objectID": "8cba2201-58f3-43b8-8a72-240ea06bc75c", "type": "lvl4", "url": "/docs/components/dropdown#dropdown-item-selected-icon-props", "hierarchy": { "lvl1": "Dropdown", "lvl2": "Types", "lvl3": null } }, { "content": "Image", - "objectID": "db393f83-454a-4c0b-8aba-a3656bd3765a", + "objectID": "60f791c7-9d34-4457-b9b9-662773e2a90b", "type": "lvl1", "url": "/docs/components/image", "hierarchy": { "lvl1": "Image" } }, { "content": "Installation", - "objectID": "5601668c-75e9-467f-bd83-85c802cd16a1", + "objectID": "b2f29218-be6d-46c5-ae06-ac1b1d4c8238", "type": "lvl2", "url": "/docs/components/image#installation", "hierarchy": { "lvl1": "Image", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "978b014b-bfdf-4004-98d9-a9401457c613", + "objectID": "17ff84fc-dde5-40a8-b6b9-9b2d209977bd", "type": "lvl2", "url": "/docs/components/image#import", "hierarchy": { "lvl1": "Image", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "53547032-6c47-456f-87a9-88794308c887", + "objectID": "89eda4ad-70cf-46fb-82e9-f2c7e385deda", "type": "lvl2", "url": "/docs/components/image#usage", "hierarchy": { "lvl1": "Image", "lvl2": "Usage", "lvl3": null } }, { "content": "Blurred", - "objectID": "53d16a73-6e61-4fd5-9026-9d105787e75b", + "objectID": "94ffe2bc-b6b7-477e-b95d-b2694bdbffd0", "type": "lvl3", "url": "/docs/components/image#blurred", "hierarchy": { "lvl1": "Image", "lvl2": "Usage", "lvl3": "Blurred" } }, { "content": "Zoomed", - "objectID": "9ab0efc1-3795-4cf8-84da-3b88186d6dab", + "objectID": "1c126c8f-5cd0-4291-b4f7-a9b8c279db67", "type": "lvl3", "url": "/docs/components/image#zoomed", "hierarchy": { "lvl1": "Image", "lvl2": "Blurred", "lvl3": "Zoomed" } }, { "content": "Animated Loading", - "objectID": "31f61340-74f3-45ee-b2ce-4104e8b5a3f6", + "objectID": "ae0975c8-9bc6-4264-8b0c-7d2fac757ff4", "type": "lvl3", "url": "/docs/components/image#animated-loading", "hierarchy": { @@ -4070,7 +4427,7 @@ }, { "content": "Image with fallback", - "objectID": "f052a010-57dd-4644-b040-7962a2bcd5f5", + "objectID": "8196cd9d-cafd-4a38-b0ba-d7c8cdecf710", "type": "lvl3", "url": "/docs/components/image#image-with-fallback", "hierarchy": { @@ -4081,7 +4438,7 @@ }, { "content": "With Next.js Image", - "objectID": "83cd7f8a-bcc6-4373-a40b-1949c9f0325d", + "objectID": "5362cdb5-5272-4b02-8679-614babbf7de6", "type": "lvl3", "url": "/docs/components/image#with-nextjs-image", "hierarchy": { @@ -4092,28 +4449,28 @@ }, { "content": "Slots", - "objectID": "a3d50d56-3af2-4f20-9fd6-b96c52a6dfe3", + "objectID": "f56ca18c-8e68-43ab-9d34-d3b11168cb38", "type": "lvl2", "url": "/docs/components/image#slots", "hierarchy": { "lvl1": "Image", "lvl2": "Slots", "lvl3": null } }, { "content": "API", - "objectID": "81966505-6573-4a86-97ad-c160931f2a0c", + "objectID": "0297b34f-90f3-4003-942e-a932504eb84a", "type": "lvl2", "url": "/docs/components/image#api", "hierarchy": { "lvl1": "Image", "lvl2": "API", "lvl3": null } }, { "content": "Image Props", - "objectID": "46ceddc8-3334-4668-b256-8d692d71f28d", + "objectID": "3171984b-c882-4776-ab7a-7ac449099cff", "type": "lvl3", "url": "/docs/components/image#image-props", "hierarchy": { "lvl1": "Image", "lvl2": "API", "lvl3": "Image Props" } }, { "content": "Image Events", - "objectID": "70aa1f57-06ab-4f05-9de3-140acff04b2e", + "objectID": "495f9d2a-aa92-445b-b544-b059c3fb3e2e", "type": "lvl3", "url": "/docs/components/image#image-events", "hierarchy": { @@ -4124,84 +4481,84 @@ }, { "content": "Input", - "objectID": "4526ccad-ad0f-4f09-a851-8c7f70dee1ec", + "objectID": "6cbcb78b-88cb-49a4-bb65-9743d9053e7b", "type": "lvl1", "url": "/docs/components/input", "hierarchy": { "lvl1": "Input" } }, { "content": "Installation", - "objectID": "157764be-da0e-43f7-8f0c-3cd810e16b56", + "objectID": "b4a63d9e-0de9-4ce6-ac86-af7527fdaca6", "type": "lvl2", "url": "/docs/components/input#installation", "hierarchy": { "lvl1": "Input", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "72a2390f-e47d-40bd-81c5-f5202f6424ab", + "objectID": "4651897b-1316-43cb-91b2-efc53d6a5b4f", "type": "lvl2", "url": "/docs/components/input#import", "hierarchy": { "lvl1": "Input", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "b61e597a-e243-4374-8ff2-35cef0e64832", + "objectID": "cd120049-35a4-4ebc-a0fd-3f3ffae84847", "type": "lvl2", "url": "/docs/components/input#usage", "hierarchy": { "lvl1": "Input", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "ae969dc2-775b-4de0-b778-abd5b34a1fcb", + "objectID": "c77ddaeb-f069-4bd3-9c17-35039a1dbe9f", "type": "lvl3", "url": "/docs/components/input#disabled", "hierarchy": { "lvl1": "Input", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Read Only", - "objectID": "e7451a99-b5c5-4cd2-8006-cbfd8e5258db", + "objectID": "97debafe-f8fb-4122-a837-232468d60a71", "type": "lvl3", "url": "/docs/components/input#read-only", "hierarchy": { "lvl1": "Input", "lvl2": "Disabled", "lvl3": "Read Only" } }, { "content": "Required", - "objectID": "82ea373d-4956-4001-9b34-5048bef031f5", + "objectID": "6ad124f4-10c2-42e7-9d8c-b377c9d4ca98", "type": "lvl3", "url": "/docs/components/input#required", "hierarchy": { "lvl1": "Input", "lvl2": "Read Only", "lvl3": "Required" } }, { "content": "Sizes", - "objectID": "08e71517-fd42-4e44-ba04-79d6f7d7cd59", + "objectID": "ee031f69-78d2-4a3e-917f-5613530e30ee", "type": "lvl3", "url": "/docs/components/input#sizes", "hierarchy": { "lvl1": "Input", "lvl2": "Required", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "f8b41d9a-48c8-4504-8ab1-3200461379d4", + "objectID": "2a550e38-d579-4916-96b7-7a629dd4392f", "type": "lvl3", "url": "/docs/components/input#colors", "hierarchy": { "lvl1": "Input", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "457a78aa-7bd5-4d5d-be61-f90066daa497", + "objectID": "21acace6-e9c3-442f-8853-5cd32ef11b0e", "type": "lvl3", "url": "/docs/components/input#variants", "hierarchy": { "lvl1": "Input", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "Radius", - "objectID": "4010c6b9-0c94-4bf9-b386-22b057984ba8", + "objectID": "e86c6ea0-2517-4b07-9f2e-9f2ed462c405", "type": "lvl3", "url": "/docs/components/input#radius", "hierarchy": { "lvl1": "Input", "lvl2": "Variants", "lvl3": "Radius" } }, { "content": "Label Placements", - "objectID": "6a23951d-abc3-4d52-9a52-d7d4e2384d51", + "objectID": "83020ed6-22b8-4675-9347-39e5a779c518", "type": "lvl3", "url": "/docs/components/input#label-placements", "hierarchy": { @@ -4212,7 +4569,7 @@ }, { "content": "Password Input", - "objectID": "211792be-737d-41f9-bb60-aad97ea913dd", + "objectID": "a05ad506-1920-4943-bb24-ae0add9c69b8", "type": "lvl3", "url": "/docs/components/input#password-input", "hierarchy": { @@ -4223,7 +4580,7 @@ }, { "content": "Clear Button", - "objectID": "24e13461-080d-4bf1-bfd8-e12234f4a91d", + "objectID": "b7ebc0a2-c74b-43b6-9b1b-59f90ac61b6c", "type": "lvl3", "url": "/docs/components/input#clear-button", "hierarchy": { @@ -4234,7 +4591,7 @@ }, { "content": "Start & End Content", - "objectID": "c5ec0dac-d44b-4860-99d1-7802c3706a61", + "objectID": "1222b8e3-6f2b-4726-998e-bf80e6de8d10", "type": "lvl3", "url": "/docs/components/input#start--end-content", "hierarchy": { @@ -4245,7 +4602,7 @@ }, { "content": "With Description", - "objectID": "6c72bae1-9289-495a-9012-bbf1ecf5fbad", + "objectID": "8df5d5d9-56e4-4d2a-8257-471e9ac26233", "type": "lvl3", "url": "/docs/components/input#with-description", "hierarchy": { @@ -4256,7 +4613,7 @@ }, { "content": "With Error Message", - "objectID": "6b167ef4-7bce-45fd-87e3-f957cf810cf9", + "objectID": "0e842154-8a57-48d8-be27-ef1443f17b75", "type": "lvl3", "url": "/docs/components/input#with-error-message", "hierarchy": { @@ -4267,7 +4624,7 @@ }, { "content": "Controlled", - "objectID": "5a2fa4eb-84fb-40e8-b6bd-e2484a8aa427", + "objectID": "12ea3f9e-bec3-49da-8367-e4e0a9c45ae3", "type": "lvl3", "url": "/docs/components/input#controlled", "hierarchy": { @@ -4278,21 +4635,21 @@ }, { "content": "Slots", - "objectID": "a3b74c28-79e0-4c9e-a3fe-adf37c1c53a4", + "objectID": "df32b970-2ee0-43c7-82b3-76fefd5f99ec", "type": "lvl2", "url": "/docs/components/input#slots", "hierarchy": { "lvl1": "Input", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "cf5be42c-c0f3-4641-be33-ca50a6dcbe45", + "objectID": "8de935e6-2d68-4a3c-a4f6-99b785fb1371", "type": "lvl3", "url": "/docs/components/input#custom-styles", "hierarchy": { "lvl1": "Input", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Custom Implementation", - "objectID": "b10f0a92-1c7c-45f2-91d5-9161d2555462", + "objectID": "d3b725ce-93b7-40d7-afc0-c77f72f27a2e", "type": "lvl3", "url": "/docs/components/input#custom-implementation", "hierarchy": { @@ -4303,35 +4660,35 @@ }, { "content": "Data Attributes", - "objectID": "3e87c41f-570a-4917-9895-320c2fa7a9ea", + "objectID": "e6abbb75-8004-4265-8535-3caacfe59854", "type": "lvl2", "url": "/docs/components/input#data-attributes", "hierarchy": { "lvl1": "Input", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "c9650296-b7ce-4fcf-8c31-6c71e892af48", + "objectID": "e99440b1-2791-4d63-8e72-a7d13a18cfe4", "type": "lvl2", "url": "/docs/components/input#accessibility", "hierarchy": { "lvl1": "Input", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "9807dbcc-45cd-4e9d-8149-c4a37d5bd14a", + "objectID": "0719b765-058d-4037-b518-461f26fafd0d", "type": "lvl2", "url": "/docs/components/input#api", "hierarchy": { "lvl1": "Input", "lvl2": "API", "lvl3": null } }, { "content": "Input Props", - "objectID": "3044a951-a67e-4980-bbed-8e2ed15cefc9", + "objectID": "b68660c2-3b37-4994-a8a2-d85cabe4abf1", "type": "lvl3", "url": "/docs/components/input#input-props", "hierarchy": { "lvl1": "Input", "lvl2": "API", "lvl3": "Input Props" } }, { "content": "Input Events", - "objectID": "3bc30494-d099-4297-ac17-7f7a93cf8956", + "objectID": "a62fbc83-eb1d-46b3-befd-5c76afa07775", "type": "lvl3", "url": "/docs/components/input#input-events", "hierarchy": { @@ -4342,14 +4699,14 @@ }, { "content": "Keyboard Key", - "objectID": "06699f1a-3c91-4222-b548-9bd7865bfa50", + "objectID": "e6ea1017-0a5f-424c-b3e2-5c80d0965eb3", "type": "lvl1", "url": "/docs/components/kbd", "hierarchy": { "lvl1": "Keyboard Key" } }, { "content": "Installation", - "objectID": "fd672ca4-a74e-409c-ad9c-28d50f89fe15", + "objectID": "34227d51-151e-4c2b-9fe4-9e6c4150550c", "type": "lvl2", "url": "/docs/components/kbd#installation", "hierarchy": { @@ -4360,35 +4717,35 @@ }, { "content": "Import", - "objectID": "80141571-6899-4080-bceb-5ac70c974633", + "objectID": "c7c15efd-e5f1-4f96-8588-225d02602aed", "type": "lvl2", "url": "/docs/components/kbd#import", "hierarchy": { "lvl1": "Keyboard Key", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "41b1ebf5-1b79-480f-bd1a-3d7be072e8a4", + "objectID": "41d2181f-962e-4797-9557-425db5084ac0", "type": "lvl2", "url": "/docs/components/kbd#usage", "hierarchy": { "lvl1": "Keyboard Key", "lvl2": "Usage", "lvl3": null } }, { "content": "Keys", - "objectID": "6f4e8340-11ca-4226-a577-6655a1c6c550", + "objectID": "05d3b135-0953-4d52-b752-b7378f6463e0", "type": "lvl3", "url": "/docs/components/kbd#keys", "hierarchy": { "lvl1": "Keyboard Key", "lvl2": "Usage", "lvl3": "Keys" } }, { "content": "Slots", - "objectID": "395affd6-085b-4a41-8df2-a5d082f46f34", + "objectID": "fcc610d6-a14a-440a-a09c-d7869f241b3f", "type": "lvl2", "url": "/docs/components/kbd#slots", "hierarchy": { "lvl1": "Keyboard Key", "lvl2": "Slots", "lvl3": null } }, { "content": "Accessibility", - "objectID": "32f77aa1-2986-486e-b73c-8a95eff7b9d4", + "objectID": "1bb267a2-f6d4-4582-8843-0de1130b891e", "type": "lvl2", "url": "/docs/components/kbd#accessibility", "hierarchy": { @@ -4399,14 +4756,14 @@ }, { "content": "API", - "objectID": "c3c3a4b3-d630-4cf2-b8cd-78a2689d8ce2", + "objectID": "bbaa931e-b56b-4432-8e80-68b246401232", "type": "lvl2", "url": "/docs/components/kbd#api", "hierarchy": { "lvl1": "Keyboard Key", "lvl2": "API", "lvl3": null } }, { "content": "Keyboard Key Props", - "objectID": "3445b1fd-157f-494a-9829-f006b2099be5", + "objectID": "fd70f0c7-bbf5-49b4-83bc-f6e5796f115f", "type": "lvl3", "url": "/docs/components/kbd#keyboard-key-props", "hierarchy": { @@ -4417,7 +4774,7 @@ }, { "content": "Keyboard Keys", - "objectID": "9c17f2b4-768f-4bea-855f-86705c5f61e0", + "objectID": "5f63b66d-745c-4d25-99f9-4c42430c242f", "type": "lvl3", "url": "/docs/components/kbd#keyboard-keys", "hierarchy": { @@ -4428,70 +4785,70 @@ }, { "content": "Link", - "objectID": "a6449b2c-b955-499b-8d57-b33c18930359", + "objectID": "7ad33de0-fd80-478a-b46b-5b17c828f48d", "type": "lvl1", "url": "/docs/components/link", "hierarchy": { "lvl1": "Link" } }, { "content": "Installation", - "objectID": "b6b397c9-1740-42a7-8378-991efff4b440", + "objectID": "0dede0ec-1725-43a8-b99c-c36636ea4acc", "type": "lvl2", "url": "/docs/components/link#installation", "hierarchy": { "lvl1": "Link", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "19f28e7f-f4ce-458a-b57c-e2d37ed24c6c", + "objectID": "ef6f5259-673e-4f38-a3c2-4a111f86a070", "type": "lvl2", "url": "/docs/components/link#import", "hierarchy": { "lvl1": "Link", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "1814a50c-1cd1-464c-a058-ef65c1e3584f", + "objectID": "cf4a46a0-76e4-42ef-8876-cc9776ff9aeb", "type": "lvl2", "url": "/docs/components/link#usage", "hierarchy": { "lvl1": "Link", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "b8dd67ad-6e01-4087-b68c-b55c94264a34", + "objectID": "febd8457-95ad-4a5e-9ba9-470fc93f3ebb", "type": "lvl3", "url": "/docs/components/link#disabled", "hierarchy": { "lvl1": "Link", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Sizes", - "objectID": "544bc1a1-b9ab-46e8-b616-cf65b95b5f76", + "objectID": "1cfce4a2-ecf0-4f47-aacf-419c71f7b33e", "type": "lvl3", "url": "/docs/components/link#sizes", "hierarchy": { "lvl1": "Link", "lvl2": "Disabled", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "3208030f-88b0-4f09-85a1-1d6c092995a2", + "objectID": "d325ca22-4335-4b43-a924-09ab53703156", "type": "lvl3", "url": "/docs/components/link#colors", "hierarchy": { "lvl1": "Link", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Underline", - "objectID": "1e76d87f-4143-4b0c-9eef-7045ae718364", + "objectID": "04da61cc-5af4-4c07-948f-d99b7275fe05", "type": "lvl3", "url": "/docs/components/link#underline", "hierarchy": { "lvl1": "Link", "lvl2": "Colors", "lvl3": "Underline" } }, { "content": "External", - "objectID": "cd32f4bd-fcdf-492a-9fb0-c288c2be6cd7", + "objectID": "6e63e9fd-5b7c-4a3f-94c8-7fe3c516c8ee", "type": "lvl3", "url": "/docs/components/link#external", "hierarchy": { "lvl1": "Link", "lvl2": "Underline", "lvl3": "External" } }, { "content": "Custom Anchor Icon", - "objectID": "4d969bea-6e7d-4c0a-b45a-ec4e33f3f862", + "objectID": "2435adc3-3bde-4b00-bde9-60b27aa19791", "type": "lvl3", "url": "/docs/components/link#custom-anchor-icon", "hierarchy": { @@ -4502,7 +4859,7 @@ }, { "content": "Block Link", - "objectID": "622eae9a-be3e-45e7-990a-ba5226721981", + "objectID": "52ab762d-b185-4bf4-8cd3-bb3da06c2e0d", "type": "lvl3", "url": "/docs/components/link#block-link", "hierarchy": { @@ -4513,7 +4870,7 @@ }, { "content": "Polymorphic Component", - "objectID": "db7b4c4c-be7f-4d5e-b018-2f9b98255bdc", + "objectID": "3eca8c3d-8399-43ff-82bb-9d6f48c7771f", "type": "lvl3", "url": "/docs/components/link#polymorphic-component", "hierarchy": { @@ -4524,7 +4881,7 @@ }, { "content": "Routing", - "objectID": "9aa63c7a-ed70-4b81-bd5e-0258345bb02a", + "objectID": "c8c4d3f5-ee76-4895-985b-b13288d2d09c", "type": "lvl3", "url": "/docs/components/link#routing", "hierarchy": { @@ -4535,7 +4892,7 @@ }, { "content": "Custom Implementation", - "objectID": "862ecd5c-d761-49af-9603-fb2d975c1d1e", + "objectID": "210d6f71-38cc-46e2-9bb4-bd171886fc3e", "type": "lvl3", "url": "/docs/components/link#custom-implementation", "hierarchy": { @@ -4546,77 +4903,77 @@ }, { "content": "Data Attributes", - "objectID": "a0518983-e02b-41bb-a197-a0dd890de0d6", + "objectID": "5c30fadc-5577-4348-985d-710ced8ceb45", "type": "lvl2", "url": "/docs/components/link#data-attributes", "hierarchy": { "lvl1": "Link", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "172db110-8aeb-4225-80cd-dabb518e506c", + "objectID": "707e32fe-27fc-4507-bc93-1ff537f95b4c", "type": "lvl2", "url": "/docs/components/link#accessibility", "hierarchy": { "lvl1": "Link", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "5b732df2-0785-4bea-b5ad-0c895995a0c2", + "objectID": "b1095f7c-0e2a-4035-af4c-5c08e5b70e2e", "type": "lvl2", "url": "/docs/components/link#api", "hierarchy": { "lvl1": "Link", "lvl2": "API", "lvl3": null } }, { "content": "Link Props", - "objectID": "7582f3f6-53b6-41b2-bf2e-cee12ffe60ee", + "objectID": "8743468b-ea3d-4f24-8c19-29b7acca5516", "type": "lvl3", "url": "/docs/components/link#link-props", "hierarchy": { "lvl1": "Link", "lvl2": "API", "lvl3": "Link Props" } }, { "content": "Link Events", - "objectID": "0354ab38-beed-4e2e-a8c6-85c296a4e781", + "objectID": "179ee6e3-8c71-4476-b14d-bfca0942a55b", "type": "lvl3", "url": "/docs/components/link#link-events", "hierarchy": { "lvl1": "Link", "lvl2": "Link Props", "lvl3": "Link Events" } }, { "content": "Listbox", - "objectID": "f0ae33e5-1d56-4210-87cc-054a06d284b9", + "objectID": "9f86aa27-678d-47c3-9788-78fcb4d3fbfc", "type": "lvl1", "url": "/docs/components/listbox", "hierarchy": { "lvl1": "Listbox" } }, { "content": "Installation", - "objectID": "0852c4b5-52ee-4211-bc11-426bcf177901", + "objectID": "6076f5c0-1498-496a-83cb-bbde700a2966", "type": "lvl2", "url": "/docs/components/listbox#installation", "hierarchy": { "lvl1": "Listbox", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "f2888326-5609-4412-b49e-404c702b53b0", + "objectID": "ad619d9d-f02b-4baa-83a2-32c5d7771dd7", "type": "lvl2", "url": "/docs/components/listbox#import", "hierarchy": { "lvl1": "Listbox", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "8ad9a049-badd-421c-95a3-05215fcbe1ff", + "objectID": "22d7eaf2-b89b-4f43-9654-9cca5820817a", "type": "lvl2", "url": "/docs/components/listbox#usage", "hierarchy": { "lvl1": "Listbox", "lvl2": "Usage", "lvl3": null } }, { "content": "Dynamic items", - "objectID": "f8c9672c-05ff-4eca-bd1c-4ea6554bdf37", + "objectID": "e39759a1-6d86-4a8c-9cec-dfd3c5ba2c2a", "type": "lvl3", "url": "/docs/components/listbox#dynamic-items", "hierarchy": { "lvl1": "Listbox", "lvl2": "Usage", "lvl3": "Dynamic items" } }, { "content": "Disabled Keys", - "objectID": "669e9531-92b7-47d1-8f70-f40f053cb8ab", + "objectID": "397048dd-13cb-442a-a9c6-783e63497112", "type": "lvl3", "url": "/docs/components/listbox#disabled-keys", "hierarchy": { @@ -4627,7 +4984,7 @@ }, { "content": "Variants", - "objectID": "e6c43360-ecac-4be8-8954-3338abe5fd58", + "objectID": "a303c660-2d57-4e47-9227-0845474296d7", "type": "lvl3", "url": "/docs/components/listbox#variants", "hierarchy": { @@ -4638,7 +4995,7 @@ }, { "content": "Single Selection", - "objectID": "4cb1dc68-b961-4c68-8d5c-0bb0ad1edc10", + "objectID": "5bd6b2ce-f340-4682-934c-0b38652bb655", "type": "lvl3", "url": "/docs/components/listbox#single-selection", "hierarchy": { @@ -4649,7 +5006,7 @@ }, { "content": "Multiple Selection", - "objectID": "3246a240-6a26-40f6-842e-f7f3a872eb55", + "objectID": "cfcb254d-a789-490d-bda3-f6172d537c47", "type": "lvl3", "url": "/docs/components/listbox#multiple-selection", "hierarchy": { @@ -4660,7 +5017,7 @@ }, { "content": "With Icons", - "objectID": "81dc55ba-d926-4196-8cc8-334c9d0f1a2b", + "objectID": "52b0a28f-029d-4280-832a-490b6c2d817a", "type": "lvl3", "url": "/docs/components/listbox#with-icons", "hierarchy": { @@ -4671,7 +5028,7 @@ }, { "content": "With Description", - "objectID": "ae4f4815-2b4f-467c-bd66-93bcb03fdd47", + "objectID": "b055eef9-e7db-4e86-af6d-8a2f69776713", "type": "lvl3", "url": "/docs/components/listbox#with-description", "hierarchy": { @@ -4682,7 +5039,7 @@ }, { "content": "With Top & Bottom Content", - "objectID": "04d2b17b-065b-4970-8fbd-0cf4f2507258", + "objectID": "cf573fd4-12a7-44fa-b459-c2bda39f3865", "type": "lvl3", "url": "/docs/components/listbox#with-top--bottom-content", "hierarchy": { @@ -4693,7 +5050,7 @@ }, { "content": "With Sections", - "objectID": "f30c9abf-162b-4326-b34c-7638fa66223a", + "objectID": "f547b95c-9bdf-43f6-b658-5cfdc0e30232", "type": "lvl3", "url": "/docs/components/listbox#with-sections", "hierarchy": { @@ -4704,7 +5061,7 @@ }, { "content": "Routing", - "objectID": "cdae32ae-45c4-4df9-8f12-369b117e6075", + "objectID": "28bcb65c-b3ba-4bdd-bd53-fdebe74d7336", "type": "lvl3", "url": "/docs/components/listbox#routing", "hierarchy": { @@ -4715,21 +5072,21 @@ }, { "content": "Slots", - "objectID": "e7c1bcec-f94f-40d4-a72e-f1ac51913c0a", + "objectID": "02e37e22-d3c7-4b21-9d2c-6ba8bb893549", "type": "lvl2", "url": "/docs/components/listbox#slots", "hierarchy": { "lvl1": "Listbox", "lvl2": "Slots", "lvl3": null } }, { "content": "ListboxItem", - "objectID": "ce4b851f-2030-4893-8b14-a37f761002ae", + "objectID": "112ad51b-11d8-44d0-ad6a-4773bfd7aec3", "type": "lvl3", "url": "/docs/components/listbox#listboxitem", "hierarchy": { "lvl1": "Listbox", "lvl2": "Listbox", "lvl3": "ListboxItem" } }, { "content": "ListboxSection", - "objectID": "a98ec201-bda4-43f2-86f6-c768d7623977", + "objectID": "c7d24ba9-f894-419a-b101-76a34559650c", "type": "lvl3", "url": "/docs/components/listbox#listboxsection", "hierarchy": { @@ -4740,7 +5097,7 @@ }, { "content": "Customizing the listbox", - "objectID": "9862bdec-535f-47e2-9d27-912571b710ec", + "objectID": "7eecc405-3f9c-4c0b-808f-0d4520ea4f99", "type": "lvl3", "url": "/docs/components/listbox#customizing-the-listbox", "hierarchy": { @@ -4751,7 +5108,7 @@ }, { "content": "Keyboard Interactions", - "objectID": "25dffbca-7526-4c4d-b495-2f9794f53bf0", + "objectID": "ef8b17c6-c7ca-402e-84f0-8e71a1484e23", "type": "lvl3", "url": "/docs/components/listbox#keyboard-interactions", "hierarchy": { @@ -4762,35 +5119,35 @@ }, { "content": "Data Attributes", - "objectID": "8712fb40-8400-47c8-86ff-98df06bb4d07", + "objectID": "f66a2a44-3172-4477-a3b6-669f18c6b772", "type": "lvl2", "url": "/docs/components/listbox#data-attributes", "hierarchy": { "lvl1": "Listbox", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "0ace1672-c695-43d6-8135-7e01a21e8b27", + "objectID": "e73c76f6-859b-44d8-a835-7da8baa6905f", "type": "lvl2", "url": "/docs/components/listbox#accessibility", "hierarchy": { "lvl1": "Listbox", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "4b9c29b2-02b0-417a-8048-ae3674d59775", + "objectID": "7c1a346a-f7de-4f3a-99f0-806dbbe042cf", "type": "lvl2", "url": "/docs/components/listbox#api", "hierarchy": { "lvl1": "Listbox", "lvl2": "API", "lvl3": null } }, { "content": "Listbox Props", - "objectID": "683a9286-3ee8-4b32-9656-cf710d57d4d8", + "objectID": "af447b11-962c-42a9-8a05-b176004512cf", "type": "lvl3", "url": "/docs/components/listbox#listbox-props", "hierarchy": { "lvl1": "Listbox", "lvl2": "API", "lvl3": "Listbox Props" } }, { "content": "Listbox Events", - "objectID": "8947068f-131e-4ff5-83f3-68ecf3e38ac5", + "objectID": "269e0051-0797-41a6-9d07-019b2aa41dc4", "type": "lvl3", "url": "/docs/components/listbox#listbox-events", "hierarchy": { @@ -4801,7 +5158,7 @@ }, { "content": "ListboxSection Props", - "objectID": "ad973a6a-d0aa-4536-af06-8daa36aae4a2", + "objectID": "181a38cd-592e-40bd-9b2c-0bcde304e1fc", "type": "lvl3", "url": "/docs/components/listbox#listboxsection-props", "hierarchy": { @@ -4812,7 +5169,7 @@ }, { "content": "ListboxItem Props", - "objectID": "9f8a54c6-eab7-4fb3-82d0-319b4ba3c741", + "objectID": "ff21ec6f-dad5-4e00-aaa6-254ddc9927c9", "type": "lvl3", "url": "/docs/components/listbox#listboxitem-props", "hierarchy": { @@ -4823,7 +5180,7 @@ }, { "content": "ListboxItem Events", - "objectID": "e74bfc02-0290-4fb7-95e4-a79bf8c53ca2", + "objectID": "059518ce-45a4-41b9-aeaf-26d6eb523fd2", "type": "lvl3", "url": "/docs/components/listbox#listboxitem-events", "hierarchy": { @@ -4834,7 +5191,7 @@ }, { "content": "Types", - "objectID": "bba2468e-92f6-4cc0-aa67-a4176734377f", + "objectID": "c6bc3858-d762-41d2-a4e8-fbcd6e69738c", "type": "lvl3", "url": "/docs/components/listbox#types", "hierarchy": { @@ -4845,71 +5202,67 @@ }, { "content": "Listbox Item Selected Icon Props", - "objectID": "c28fa923-edbd-420a-a8ce-cbd401cc35de", + "objectID": "8fa5cf68-b0a9-4817-be20-c8d120a7ed21", "type": "lvl4", "url": "/docs/components/listbox#listbox-item-selected-icon-props", "hierarchy": { "lvl1": "Listbox", "lvl2": "Types", "lvl3": null } }, { "content": "Modal", - "objectID": "b391f01c-2381-4046-a78c-3f9d7a69ed2f", + "objectID": "e0d508fd-848f-45a2-949f-016618306691", "type": "lvl1", "url": "/docs/components/modal", "hierarchy": { "lvl1": "Modal" } }, { "content": "Installation", - "objectID": "e957562f-de5b-4f7e-b5da-273cedc22027", + "objectID": "da43d122-b92d-460c-a9a5-2c9564a96c91", "type": "lvl2", "url": "/docs/components/modal#installation", "hierarchy": { "lvl1": "Modal", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "c8ad78f7-83bd-44b4-87d9-f1cf0c3429b6", + "objectID": "1cdf7518-a822-4476-941b-4bd1332ac6c7", "type": "lvl2", "url": "/docs/components/modal#import", "hierarchy": { "lvl1": "Modal", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "7fab825f-61bf-4523-9968-3c945fa60270", + "objectID": "e90a8477-6e75-4fb5-9063-59f495060778", "type": "lvl2", "url": "/docs/components/modal#usage", "hierarchy": { "lvl1": "Modal", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "2e10db5d-eb66-44fd-b758-e932f3d41848", + "objectID": "297271b3-08c7-43b2-9eb5-339ce4b73bc5", "type": "lvl3", "url": "/docs/components/modal#sizes", "hierarchy": { "lvl1": "Modal", "lvl2": "Usage", "lvl3": "Sizes" } }, { - "content": "Non-dissmissable", - "objectID": "34fea277-5750-49ec-b681-06e1830e933e", + "content": "Non-dismissible", + "objectID": "7db83afd-49e6-4f80-8275-151cd9ef8975", "type": "lvl3", - "url": "/docs/components/modal#non-dissmissable", - "hierarchy": { - "lvl1": "Modal", - "lvl2": "Sizes", - "lvl3": "Non-dissmissable" - } + "url": "/docs/components/modal#non-dismissible", + "hierarchy": { "lvl1": "Modal", "lvl2": "Sizes", "lvl3": "Non-dismissible" } }, { "content": "Modal placement", - "objectID": "044c55fd-3509-4014-8ba4-2e3ed51c6a6b", + "objectID": "7a351e3a-e01e-4fd2-9a95-f298e822a384", "type": "lvl3", "url": "/docs/components/modal#modal-placement", "hierarchy": { "lvl1": "Modal", - "lvl2": "Non-dissmissable", + "lvl2": "Non-dismissible", "lvl3": "Modal placement" } }, { "content": "Overflow scroll", - "objectID": "784780be-b36d-4b00-8501-a4b9b6a9b7b1", + "objectID": "fc61f394-194e-4d5b-8fe2-db1fb77b9b31", "type": "lvl3", "url": "/docs/components/modal#overflow-scroll", "hierarchy": { @@ -4920,7 +5273,7 @@ }, { "content": "With Form", - "objectID": "4ef4977d-f95f-42ba-993d-553d5e5cdf9b", + "objectID": "2e210008-4332-4079-8b6d-ee2240f33d05", "type": "lvl3", "url": "/docs/components/modal#with-form", "hierarchy": { @@ -4931,14 +5284,14 @@ }, { "content": "Backdrop", - "objectID": "64b4c2a1-e905-4b14-95b8-9723a0634fbf", + "objectID": "71e3a6c1-23a5-4033-93f4-d555b7db844b", "type": "lvl3", "url": "/docs/components/modal#backdrop", "hierarchy": { "lvl1": "Modal", "lvl2": "With Form", "lvl3": "Backdrop" } }, { "content": "Custom Backdrop", - "objectID": "b8c8ebef-7207-4a27-910e-9b16a6938f10", + "objectID": "e3b03fd8-55bf-4340-8be3-5239b4935c16", "type": "lvl3", "url": "/docs/components/modal#custom-backdrop", "hierarchy": { @@ -4949,7 +5302,7 @@ }, { "content": "Custom Motion", - "objectID": "53bdd81a-3737-4dfc-a392-d85c277f1677", + "objectID": "f568bc36-4058-4d88-9715-66774b876421", "type": "lvl3", "url": "/docs/components/modal#custom-motion", "hierarchy": { @@ -4958,51 +5311,73 @@ "lvl3": "Custom Motion" } }, + { + "content": "Draggable", + "objectID": "dfa527fe-f848-441b-ae06-dcfb9f4c5457", + "type": "lvl3", + "url": "/docs/components/modal#draggable", + "hierarchy": { + "lvl1": "Modal", + "lvl2": "Custom Motion", + "lvl3": "Draggable" + } + }, + { + "content": "Draggable Overflow", + "objectID": "160d221f-a5a8-4a9f-83be-07e04b478c3a", + "type": "lvl3", + "url": "/docs/components/modal#draggable-overflow", + "hierarchy": { + "lvl1": "Modal", + "lvl2": "Draggable", + "lvl3": "Draggable Overflow" + } + }, { "content": "Slots", - "objectID": "42322dcf-4fe4-4c8b-b5e5-0890e265a78f", + "objectID": "22367893-ad25-4731-b07c-6f92d1539e42", "type": "lvl2", "url": "/docs/components/modal#slots", "hierarchy": { "lvl1": "Modal", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "86cc4b17-87ce-4882-ab0e-1d21a6aad12f", + "objectID": "85dc3d5d-a475-407b-82a8-03f82eaaf21e", "type": "lvl3", "url": "/docs/components/modal#custom-styles", "hierarchy": { "lvl1": "Modal", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Data Attributes", - "objectID": "335d7a33-f029-4a30-8035-73e1aa99e33d", + "objectID": "f2ac8d09-dd6c-440b-8c13-f7ce9e99d103", "type": "lvl2", "url": "/docs/components/modal#data-attributes", "hierarchy": { "lvl1": "Modal", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "a6962672-55de-478a-b357-d4c967a7cdbe", + "objectID": "720df261-d3e1-400d-9772-843af0e6cb38", "type": "lvl2", "url": "/docs/components/modal#accessibility", "hierarchy": { "lvl1": "Modal", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "4bc96210-699d-429d-8f2b-8d3f02f937c9", + "objectID": "922686da-9e81-4036-a8e0-f32fe3326c1c", "type": "lvl2", "url": "/docs/components/modal#api", "hierarchy": { "lvl1": "Modal", "lvl2": "API", "lvl3": null } }, { "content": "Modal Props", - "objectID": "bbc1337b-17e6-49ec-be1c-dd5360b40400", + "objectID": "ce88dd07-9de1-4a6a-995e-d61fc9da6dc1", "type": "lvl3", "url": "/docs/components/modal#modal-props", "hierarchy": { "lvl1": "Modal", "lvl2": "API", "lvl3": "Modal Props" } }, { "content": "Modal Events", - "objectID": "68066ba6-85ad-47fd-8c75-77b7cbe98b2d", + "objectID": "0ee17b03-b3cb-4a3f-a191-856886fe279d", "type": "lvl3", "url": "/docs/components/modal#modal-events", "hierarchy": { @@ -5013,7 +5388,7 @@ }, { "content": "Modal types", - "objectID": "5fb75f85-f375-46c7-a345-c1388b4a2a1a", + "objectID": "7a8425b1-77a4-49c2-ae76-b792b282fc75", "type": "lvl3", "url": "/docs/components/modal#modal-types", "hierarchy": { @@ -5024,49 +5399,49 @@ }, { "content": "Motion Props", - "objectID": "a7b424dc-2164-4717-812f-a45956929fad", + "objectID": "9e356a44-10f6-4d45-a8f0-2f7e242684c6", "type": "lvl4", "url": "/docs/components/modal#motion-props", "hierarchy": { "lvl1": "Modal", "lvl2": "Modal types", "lvl3": null } }, { "content": "Navbar", - "objectID": "185aad11-c7a9-4f81-ae2e-d196da99ebee", + "objectID": "79c2fe0f-cf48-454f-afe9-1d47edae1a00", "type": "lvl1", "url": "/docs/components/navbar", "hierarchy": { "lvl1": "Navbar" } }, { "content": "Installation", - "objectID": "e1cd622f-d928-49bc-8b60-c09e22994b99", + "objectID": "8425bc67-ac1a-4799-a80d-64f75b8290e8", "type": "lvl2", "url": "/docs/components/navbar#installation", "hierarchy": { "lvl1": "Navbar", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "1c8aa9ea-04ad-4c38-9b36-ddfc48ae5781", + "objectID": "1cdc6fee-120a-4cdb-9d81-22e0b7ef4298", "type": "lvl2", "url": "/docs/components/navbar#import", "hierarchy": { "lvl1": "Navbar", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "412b7778-0211-4203-ade5-f6cfe5117c94", + "objectID": "b82a927d-783a-40e8-958c-951fc61e593e", "type": "lvl2", "url": "/docs/components/navbar#usage", "hierarchy": { "lvl1": "Navbar", "lvl2": "Usage", "lvl3": null } }, { "content": "Static", - "objectID": "bb0107e9-8094-4f31-b3a7-13f7ecacf57a", + "objectID": "68cde6b8-a3c6-44f3-a31b-f713d93c5fe9", "type": "lvl3", "url": "/docs/components/navbar#static", "hierarchy": { "lvl1": "Navbar", "lvl2": "Usage", "lvl3": "Static" } }, { "content": "Hide on scroll", - "objectID": "ae8dbc09-2a2f-47bc-a2bb-6e7c8b7e2aac", + "objectID": "0831db23-a0c2-4353-b98e-459313dd5f91", "type": "lvl3", "url": "/docs/components/navbar#hide-on-scroll", "hierarchy": { @@ -5077,7 +5452,7 @@ }, { "content": "With Menu", - "objectID": "07a7ab11-a084-4318-ae12-29aefa3e2492", + "objectID": "372810dc-11cf-4823-987d-81c98ea0f15f", "type": "lvl3", "url": "/docs/components/navbar#with-menu", "hierarchy": { @@ -5088,7 +5463,7 @@ }, { "content": "Controlled Menu", - "objectID": "d974a3a0-dadb-4c7e-ad7c-7c3d0f3c085a", + "objectID": "bf1f7e17-53d0-42e7-aae4-ec5fffc52684", "type": "lvl3", "url": "/docs/components/navbar#controlled-menu", "hierarchy": { @@ -5099,7 +5474,7 @@ }, { "content": "With Border", - "objectID": "db3d0665-678d-42fa-ba03-73e32aa2b8af", + "objectID": "a84c64e4-b392-4692-a69c-539fd801c7c1", "type": "lvl3", "url": "/docs/components/navbar#with-border", "hierarchy": { @@ -5110,7 +5485,7 @@ }, { "content": "Disabling Blur", - "objectID": "972a9229-69f3-4ac8-b682-e43973d544d8", + "objectID": "da4cbf76-8d36-421c-bc45-805d49212f19", "type": "lvl3", "url": "/docs/components/navbar#disabling-blur", "hierarchy": { @@ -5121,7 +5496,7 @@ }, { "content": "With Dropdown Menu", - "objectID": "607dabdd-1e00-47cb-b4ff-c97b27055bfb", + "objectID": "11515a9c-e527-4e98-9071-0d1f54ff1b49", "type": "lvl3", "url": "/docs/components/navbar#with-dropdown-menu", "hierarchy": { @@ -5132,7 +5507,7 @@ }, { "content": "With Avatar", - "objectID": "c666459b-8244-4b18-9b45-a3d42e4fe3cb", + "objectID": "a4d2e52f-4880-4af5-a6e1-8123ad82f7f8", "type": "lvl3", "url": "/docs/components/navbar#with-avatar", "hierarchy": { @@ -5143,7 +5518,7 @@ }, { "content": "With Search Input", - "objectID": "870f4656-d6c8-43c3-a105-a5cb9f2cfc10", + "objectID": "d8b7c4b7-4a64-4ad0-aeb9-9a2863e11999", "type": "lvl3", "url": "/docs/components/navbar#with-search-input", "hierarchy": { @@ -5154,7 +5529,7 @@ }, { "content": "Customizing the active item", - "objectID": "2c2d0cab-7c2c-4633-ac8f-cc8cd8f891da", + "objectID": "e6a58164-0866-4fb8-8e8a-57d359517c33", "type": "lvl3", "url": "/docs/components/navbar#customizing-the-active-item", "hierarchy": { @@ -5165,35 +5540,35 @@ }, { "content": "Slots", - "objectID": "9a8a9175-2ccc-452b-a845-ce27cc7acd50", + "objectID": "0920d713-7e9e-4952-b422-d53f07d6ff6a", "type": "lvl2", "url": "/docs/components/navbar#slots", "hierarchy": { "lvl1": "Navbar", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "e16351ee-4ae4-495f-a205-af0ec1e1ef53", + "objectID": "c1c0e4f4-50ae-4c84-8579-4cacbfdda2fd", "type": "lvl2", "url": "/docs/components/navbar#data-attributes", "hierarchy": { "lvl1": "Navbar", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "API", - "objectID": "bc6fc83f-1617-4647-b5bc-b2f2f2685806", + "objectID": "ce699650-113c-4973-a7b8-5ba9dcba6e90", "type": "lvl2", "url": "/docs/components/navbar#api", "hierarchy": { "lvl1": "Navbar", "lvl2": "API", "lvl3": null } }, { "content": "Navbar Props", - "objectID": "6d5e9b42-19a2-4f8d-8cfb-7cef8bdd9a57", + "objectID": "1927f21b-b310-42ec-a01d-823457811094", "type": "lvl3", "url": "/docs/components/navbar#navbar-props", "hierarchy": { "lvl1": "Navbar", "lvl2": "API", "lvl3": "Navbar Props" } }, { "content": "Navbar Events", - "objectID": "f719424b-a629-4aa8-b8da-e311f289750e", + "objectID": "1a7159b1-452b-40bf-96be-2e34a9d89cc8", "type": "lvl3", "url": "/docs/components/navbar#navbar-events", "hierarchy": { @@ -5204,7 +5579,7 @@ }, { "content": "NavbarContent Props", - "objectID": "457514af-d65d-451b-85c4-9af5813432c5", + "objectID": "93c0fe10-71c5-4df9-93f5-c062fce7d3a4", "type": "lvl3", "url": "/docs/components/navbar#navbarcontent-props", "hierarchy": { @@ -5215,7 +5590,7 @@ }, { "content": "NavbarItem Props", - "objectID": "0e55e2ef-26b1-4560-a7f0-6e99b6c8686b", + "objectID": "8b541fee-5442-4fdb-a94c-6895c3d11d97", "type": "lvl3", "url": "/docs/components/navbar#navbaritem-props", "hierarchy": { @@ -5226,7 +5601,7 @@ }, { "content": "NavbarMenuToggle Props", - "objectID": "21a8a4fa-10d0-4542-9b3e-711b07b48290", + "objectID": "238f5647-97d1-4790-b411-4121e14611a4", "type": "lvl3", "url": "/docs/components/navbar#navbarmenutoggle-props", "hierarchy": { @@ -5237,7 +5612,7 @@ }, { "content": "NavbarMenuToggle Events", - "objectID": "31d57cf5-83af-4962-b6b0-235e0dc4761b", + "objectID": "d2d17c1c-cdd7-4b80-876d-0bb43e0f31e6", "type": "lvl3", "url": "/docs/components/navbar#navbarmenutoggle-events", "hierarchy": { @@ -5248,7 +5623,7 @@ }, { "content": "NavbarMenu Props", - "objectID": "b24405e9-26b0-4692-b8a1-6740cde364ff", + "objectID": "b836c3ef-3ccb-42fb-8901-1fe7d5d4b01b", "type": "lvl3", "url": "/docs/components/navbar#navbarmenu-props", "hierarchy": { @@ -5259,7 +5634,7 @@ }, { "content": "NavbarMenuItem Props", - "objectID": "f573d365-65a1-445e-a63f-351b1ab7d3dc", + "objectID": "aafd5abd-e4f7-457b-b6e6-60829be5a1d6", "type": "lvl3", "url": "/docs/components/navbar#navbarmenuitem-props", "hierarchy": { @@ -5270,7 +5645,7 @@ }, { "content": "Navbar types", - "objectID": "92369b1e-d126-45ef-b9ff-0176545aba86", + "objectID": "c2b612f5-9bab-4241-8f64-20d80ac03c4d", "type": "lvl3", "url": "/docs/components/navbar#navbar-types", "hierarchy": { @@ -5281,70 +5656,70 @@ }, { "content": "Motion Props", - "objectID": "c19a553a-3dbd-4898-afe2-4971aac89208", + "objectID": "09c1ee56-7a63-44ba-a73a-dcce15f73d61", "type": "lvl4", "url": "/docs/components/navbar#motion-props", "hierarchy": { "lvl1": "Navbar", "lvl2": "Navbar types", "lvl3": null } }, { "content": "Pagination", - "objectID": "0e79acaa-f3ab-4200-8a17-015e4919a595", + "objectID": "770d4ddb-58ba-42f3-9d15-1f7c64ca7619", "type": "lvl1", "url": "/docs/components/pagination", "hierarchy": { "lvl1": "Pagination" } }, { "content": "Installation", - "objectID": "398013fb-9517-4533-ab6f-fe5974b9e3e5", + "objectID": "c1ee7e55-cc2d-4cd6-b284-56e6f641f89c", "type": "lvl2", "url": "/docs/components/pagination#installation", "hierarchy": { "lvl1": "Pagination", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "84745104-93ab-4f20-ab8c-4fec65582603", + "objectID": "ae38925c-8fe6-43fc-8fe7-7d734c35b031", "type": "lvl2", "url": "/docs/components/pagination#import", "hierarchy": { "lvl1": "Pagination", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "8afc9e3a-5621-47f3-8457-b6753264515d", + "objectID": "a4d06518-1ad4-4ee5-9899-6d982b1795c8", "type": "lvl2", "url": "/docs/components/pagination#usage", "hierarchy": { "lvl1": "Pagination", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "17a1bb3a-56ee-47c0-923e-0de13143e9f4", + "objectID": "a16d6e91-1fed-40e7-9045-41a6ce2ec06d", "type": "lvl3", "url": "/docs/components/pagination#disabled", "hierarchy": { "lvl1": "Pagination", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Sizes", - "objectID": "a0f28ee4-a80a-4941-830a-4b4f8fa52a3e", + "objectID": "37daf3d9-f1eb-47c0-b61b-bdf932cfe4cc", "type": "lvl3", "url": "/docs/components/pagination#sizes", "hierarchy": { "lvl1": "Pagination", "lvl2": "Disabled", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "baea06ea-1489-48db-9db4-93756727bcc7", + "objectID": "6c2ded03-3c77-474b-843b-b7b03615bf97", "type": "lvl3", "url": "/docs/components/pagination#colors", "hierarchy": { "lvl1": "Pagination", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "45d062c3-9c63-4cad-9543-af4731100321", + "objectID": "e32514a2-6380-4bb8-b2ee-b9023be61e32", "type": "lvl3", "url": "/docs/components/pagination#variants", "hierarchy": { "lvl1": "Pagination", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "With Controls", - "objectID": "45f7fed0-991d-4d83-ba6d-4dc0fb48e0da", + "objectID": "79428d26-ed03-4cf0-ad6e-e515a3872161", "type": "lvl3", "url": "/docs/components/pagination#with-controls", "hierarchy": { @@ -5355,7 +5730,7 @@ }, { "content": "Pagination Loop", - "objectID": "33336743-e055-45f0-8101-5fcf9a298049", + "objectID": "483055b4-0add-48f5-9c2f-df029fe01b32", "type": "lvl3", "url": "/docs/components/pagination#pagination-loop", "hierarchy": { @@ -5366,7 +5741,7 @@ }, { "content": "Changing the initial page", - "objectID": "c6d353c8-002d-469d-9baa-746bc76a7bbc", + "objectID": "6eb394bb-a295-4329-8914-771387630d58", "type": "lvl3", "url": "/docs/components/pagination#changing-the-initial-page", "hierarchy": { @@ -5377,7 +5752,7 @@ }, { "content": "Compact Pagination", - "objectID": "0ba4e34e-5053-44b5-b9ac-8741977a7afe", + "objectID": "e31f419a-d1a2-4435-b9c4-07dcc0373f9b", "type": "lvl3", "url": "/docs/components/pagination#compact-pagination", "hierarchy": { @@ -5388,7 +5763,7 @@ }, { "content": "With Shadow", - "objectID": "4d2e8cc5-7569-4d6b-b8c2-78410bceb81c", + "objectID": "9f91344b-2203-4af3-9b09-c7b72d2d1841", "type": "lvl3", "url": "/docs/components/pagination#with-shadow", "hierarchy": { @@ -5399,7 +5774,7 @@ }, { "content": "Controlled", - "objectID": "e49defd8-cfec-4334-9a66-1b9fb3ec6e39", + "objectID": "39bd48bf-122c-4bfc-8ca2-cec18aaadce8", "type": "lvl3", "url": "/docs/components/pagination#controlled", "hierarchy": { @@ -5410,7 +5785,7 @@ }, { "content": "Siblings", - "objectID": "442da795-8ed7-4b16-8970-b9d094b7f8f8", + "objectID": "7b1fc5b4-a85e-4272-952c-120ef1461d40", "type": "lvl3", "url": "/docs/components/pagination#siblings", "hierarchy": { @@ -5421,7 +5796,7 @@ }, { "content": "Boundaries", - "objectID": "49835710-44da-4237-b1db-3eddba2b2b23", + "objectID": "1c95ea22-e7da-4ea2-8710-844186270298", "type": "lvl3", "url": "/docs/components/pagination#boundaries", "hierarchy": { @@ -5432,7 +5807,7 @@ }, { "content": "Custom items", - "objectID": "b00a38f0-9a93-4616-a168-78385c3a2da2", + "objectID": "a2d5bbc7-f210-40a1-a055-7b11f72e7bd7", "type": "lvl3", "url": "/docs/components/pagination#custom-items", "hierarchy": { @@ -5443,14 +5818,14 @@ }, { "content": "Slots", - "objectID": "96e50019-97f2-4e85-9346-b2082eaccfa1", + "objectID": "68ee8da8-2a8b-4b44-8980-7b4eb9d5a12b", "type": "lvl2", "url": "/docs/components/pagination#slots", "hierarchy": { "lvl1": "Pagination", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "a6c85b2c-e74d-467e-9fe5-9640c1ef62b9", + "objectID": "22023153-6a74-4867-bb89-6a3ae5262d0b", "type": "lvl3", "url": "/docs/components/pagination#custom-styles", "hierarchy": { @@ -5461,7 +5836,7 @@ }, { "content": "Custom Implementation", - "objectID": "e0f36e97-a338-4c0b-819c-ef000c89e183", + "objectID": "c81a5ea1-209b-4403-a09a-63ce2d397e0e", "type": "lvl3", "url": "/docs/components/pagination#custom-implementation", "hierarchy": { @@ -5472,7 +5847,7 @@ }, { "content": "Data Attributes", - "objectID": "6502db5d-4ed1-4b01-ae9d-68c5c8994aa8", + "objectID": "14ba26c5-7e43-4389-bc1a-c73682caa52f", "type": "lvl2", "url": "/docs/components/pagination#data-attributes", "hierarchy": { @@ -5483,21 +5858,21 @@ }, { "content": "Accessibility", - "objectID": "1332808d-d7e0-4c22-bbb7-ec24384e5b0d", + "objectID": "311261b5-f347-4c85-b5ee-4aaa4a3a7b7d", "type": "lvl2", "url": "/docs/components/pagination#accessibility", "hierarchy": { "lvl1": "Pagination", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "0f022438-bfb4-4c71-9d72-78931ab2bb1d", + "objectID": "e873d403-0759-421f-86dd-3528c97bf363", "type": "lvl2", "url": "/docs/components/pagination#api", "hierarchy": { "lvl1": "Pagination", "lvl2": "API", "lvl3": null } }, { "content": "Pagination Props", - "objectID": "75add0e6-21ee-4e1a-838f-c261974ee702", + "objectID": "9309fe10-168e-4a78-92d9-d444ecabf20e", "type": "lvl3", "url": "/docs/components/pagination#pagination-props", "hierarchy": { @@ -5508,7 +5883,7 @@ }, { "content": "Pagination Events", - "objectID": "b9eda79a-8f6e-4b6e-8e74-8eff29c5f86d", + "objectID": "3ee9f257-f867-4488-91c5-488da74d7a6f", "type": "lvl3", "url": "/docs/components/pagination#pagination-events", "hierarchy": { @@ -5519,7 +5894,7 @@ }, { "content": "Types", - "objectID": "302b83b4-b4f2-4691-8a1e-7471791e5c1e", + "objectID": "686b98e6-e9b8-4812-95a5-65c1633fadb5", "type": "lvl3", "url": "/docs/components/pagination#types", "hierarchy": { @@ -5530,77 +5905,77 @@ }, { "content": "Pagination Item Props", - "objectID": "8c24652f-fca1-4dab-9b8b-c00de8f591d2", + "objectID": "a3214127-0371-47dc-81a8-3d5df58cb796", "type": "lvl4", "url": "/docs/components/pagination#pagination-item-props", "hierarchy": { "lvl1": "Pagination", "lvl2": "Types", "lvl3": null } }, { "content": "Popover", - "objectID": "9cf0871c-af84-4fd1-8e43-50bf70572d65", + "objectID": "23fb339f-16c7-42f3-bf95-d36a072712b9", "type": "lvl1", "url": "/docs/components/popover", "hierarchy": { "lvl1": "Popover" } }, { "content": "Installation", - "objectID": "f17fad02-5213-497f-a511-698bb6c1badb", + "objectID": "7ffa3a8e-a14d-4516-9394-62b12bb31394", "type": "lvl2", "url": "/docs/components/popover#installation", "hierarchy": { "lvl1": "Popover", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "9164a526-18a5-45b1-965a-a5ac439365aa", + "objectID": "d057e098-a73d-4a3d-945f-9a4c74ae1c50", "type": "lvl2", "url": "/docs/components/popover#import", "hierarchy": { "lvl1": "Popover", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "fc47d13d-2bd2-4f79-97f2-6f6a760d351c", + "objectID": "2550118d-d8f2-431a-ab01-b81a069ebadd", "type": "lvl2", "url": "/docs/components/popover#usage", "hierarchy": { "lvl1": "Popover", "lvl2": "Usage", "lvl3": null } }, { "content": "With Arrow", - "objectID": "fb0cf880-0278-4e21-9e1b-52e42e22d6cd", + "objectID": "2a1ef5bc-da51-436b-b19a-be93c54350a2", "type": "lvl3", "url": "/docs/components/popover#with-arrow", "hierarchy": { "lvl1": "Popover", "lvl2": "Usage", "lvl3": "With Arrow" } }, { "content": "Colors", - "objectID": "f8a9d3ed-e61b-432d-a1d3-41b121c55d2f", + "objectID": "a44b8377-e4c6-4450-b56d-2b4bbfd93749", "type": "lvl3", "url": "/docs/components/popover#colors", "hierarchy": { "lvl1": "Popover", "lvl2": "With Arrow", "lvl3": "Colors" } }, { "content": "Placements", - "objectID": "959028df-4dc7-480f-9b1c-97905be95e9b", + "objectID": "277abb52-a84b-47cc-939d-c733782817b8", "type": "lvl3", "url": "/docs/components/popover#placements", "hierarchy": { "lvl1": "Popover", "lvl2": "Colors", "lvl3": "Placements" } }, { "content": "Offset", - "objectID": "eb23c384-cf53-481e-b1df-6aa1eadc8b6c", + "objectID": "add5fe17-b30a-4826-a46a-961880bfb29e", "type": "lvl3", "url": "/docs/components/popover#offset", "hierarchy": { "lvl1": "Popover", "lvl2": "Placements", "lvl3": "Offset" } }, { "content": "Controlled", - "objectID": "116c0653-ca20-4a01-9848-134eee4971f5", + "objectID": "86c28ab5-30e0-4ee1-9af0-434d641b9986", "type": "lvl3", "url": "/docs/components/popover#controlled", "hierarchy": { "lvl1": "Popover", "lvl2": "Offset", "lvl3": "Controlled" } }, { "content": "Title Props", - "objectID": "abd1328c-d123-47cb-ac7e-1d8b2df39ccf", + "objectID": "38fccc54-8f0a-4beb-93b0-003d661e2d0f", "type": "lvl3", "url": "/docs/components/popover#title-props", "hierarchy": { @@ -5611,7 +5986,7 @@ }, { "content": "With Form", - "objectID": "3255c0ff-3aec-4566-a265-757330f7acf8", + "objectID": "b5193e81-2640-43a7-88fe-10bc89b0bf2a", "type": "lvl3", "url": "/docs/components/popover#with-form", "hierarchy": { @@ -5622,14 +5997,14 @@ }, { "content": "Backdrop", - "objectID": "d2b6d0b3-0430-4a78-95f0-596c6d31659a", + "objectID": "3e30e923-73db-4dc3-9feb-b9597905f29e", "type": "lvl3", "url": "/docs/components/popover#backdrop", "hierarchy": { "lvl1": "Popover", "lvl2": "With Form", "lvl3": "Backdrop" } }, { "content": "Custom Motion", - "objectID": "32676dc7-81a0-40f8-ad8e-f69aacd38c25", + "objectID": "989395cd-64f4-44bf-99d9-8bc2a6ba1fb1", "type": "lvl3", "url": "/docs/components/popover#custom-motion", "hierarchy": { @@ -5640,7 +6015,7 @@ }, { "content": "Custom Trigger", - "objectID": "5a9366d2-5c65-4ee3-9167-cc3a8f6750ec", + "objectID": "3d289b26-5b7c-4f73-85b2-ded940ab5e5e", "type": "lvl3", "url": "/docs/components/popover#custom-trigger", "hierarchy": { @@ -5651,49 +6026,49 @@ }, { "content": "Slots", - "objectID": "67464e25-7471-413e-a161-577ead1a0f20", + "objectID": "a82aafa3-2037-4f28-a163-711f594beda3", "type": "lvl2", "url": "/docs/components/popover#slots", "hierarchy": { "lvl1": "Popover", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "e4b3ad67-b176-4b69-9046-c938f58b3030", + "objectID": "c5913c73-6640-4604-9a4d-50a036885ef5", "type": "lvl3", "url": "/docs/components/popover#custom-styles", "hierarchy": { "lvl1": "Popover", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Data Attributes", - "objectID": "95313bdd-1383-4c31-9b62-9d2b415e7c1b", + "objectID": "878e5150-ab1e-4129-bf72-6a05acd16307", "type": "lvl2", "url": "/docs/components/popover#data-attributes", "hierarchy": { "lvl1": "Popover", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "12f829af-e805-44b5-82d3-4effdef49035", + "objectID": "1cb3a1e2-2f15-4f67-99cc-20acde08d543", "type": "lvl2", "url": "/docs/components/popover#accessibility", "hierarchy": { "lvl1": "Popover", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "97208632-4716-4912-90e8-3c95c0ac4f02", + "objectID": "59e59787-840f-4040-a281-36f56e9a7582", "type": "lvl2", "url": "/docs/components/popover#api", "hierarchy": { "lvl1": "Popover", "lvl2": "API", "lvl3": null } }, { "content": "Popover Props", - "objectID": "24eebe0a-bb78-41fb-af7a-19bc95eeca2c", + "objectID": "716eed8c-c318-4e7c-9d49-75ec671ff993", "type": "lvl3", "url": "/docs/components/popover#popover-props", "hierarchy": { "lvl1": "Popover", "lvl2": "API", "lvl3": "Popover Props" } }, { "content": "Popover Events", - "objectID": "a8ac643f-ef5a-4621-8ddb-b59dfd988655", + "objectID": "0b0582e9-fd26-43c3-8bd2-e604114c97d0", "type": "lvl3", "url": "/docs/components/popover#popover-events", "hierarchy": { @@ -5704,7 +6079,7 @@ }, { "content": "PopoverTrigger Props", - "objectID": "6691a008-de01-4eab-863e-df0cc6e750b7", + "objectID": "1a61a93d-927a-4855-b231-a060834f0375", "type": "lvl3", "url": "/docs/components/popover#popovertrigger-props", "hierarchy": { @@ -5715,7 +6090,7 @@ }, { "content": "PopoverContent Props", - "objectID": "eaea5de2-f817-4c61-bc33-a58f087c10ae", + "objectID": "64937520-9b40-4d07-9f7c-4ae6d9fde64b", "type": "lvl3", "url": "/docs/components/popover#popovercontent-props", "hierarchy": { @@ -5726,7 +6101,7 @@ }, { "content": "Popover types", - "objectID": "fda20f86-b441-45de-8a82-9fb69473616e", + "objectID": "12de6491-02db-427f-ab04-38e73baff0f1", "type": "lvl3", "url": "/docs/components/popover#popover-types", "hierarchy": { @@ -5737,14 +6112,14 @@ }, { "content": "Popover Placement", - "objectID": "9e4978f9-11db-494e-bc83-8c3822cb520a", + "objectID": "325d19da-c3ce-411c-ab44-bb582080bd91", "type": "lvl4", "url": "/docs/components/popover#popover-placement", "hierarchy": { "lvl1": "Popover", "lvl2": "Popover types", "lvl3": null } }, { "content": "Motion Props", - "objectID": "f73e3c2e-811e-4f83-8d4e-189fccc5d89d", + "objectID": "9534039b-7a60-4916-9076-04587ce1034b", "type": "lvl4", "url": "/docs/components/popover#motion-props", "hierarchy": { @@ -5755,49 +6130,49 @@ }, { "content": "Progress", - "objectID": "2edb930c-0d00-44ad-ae8d-7a918cc71240", + "objectID": "8a1449c9-fd1b-4246-b526-6ff5dc854b16", "type": "lvl1", "url": "/docs/components/progress", "hierarchy": { "lvl1": "Progress" } }, { "content": "Installation", - "objectID": "7b545a75-6cdd-47e3-8ad1-22f587368e08", + "objectID": "e3995431-10cf-4827-811f-4e78754dd5db", "type": "lvl2", "url": "/docs/components/progress#installation", "hierarchy": { "lvl1": "Progress", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "c4f3bf70-4434-4a50-8541-8961dfadf159", + "objectID": "2cf538e6-6883-4b76-a7d8-6041835dca55", "type": "lvl2", "url": "/docs/components/progress#import", "hierarchy": { "lvl1": "Progress", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "84d7a90f-bbed-4cf5-95c9-e924adf25d65", + "objectID": "d90a3b66-d24f-4e59-b2dc-25aa753ded27", "type": "lvl2", "url": "/docs/components/progress#usage", "hierarchy": { "lvl1": "Progress", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "198c4009-6cf0-42ac-ae83-9d04e541ba34", + "objectID": "c08c9e24-3c60-44d2-9bcf-47ad684f6464", "type": "lvl3", "url": "/docs/components/progress#sizes", "hierarchy": { "lvl1": "Progress", "lvl2": "Usage", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "4c825735-8d24-4f4b-9e13-0d22679266ac", + "objectID": "396e1516-0bd8-4a7d-9b60-a0d0207e735d", "type": "lvl3", "url": "/docs/components/progress#colors", "hierarchy": { "lvl1": "Progress", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Indeterminate", - "objectID": "536c2f7f-d71c-4fad-957f-78554973b31f", + "objectID": "cdefe94b-670f-42f0-8143-f50971d4c21f", "type": "lvl3", "url": "/docs/components/progress#indeterminate", "hierarchy": { @@ -5808,7 +6183,7 @@ }, { "content": "Striped", - "objectID": "845fd249-5358-4f3d-b999-3039208c9529", + "objectID": "12d056d9-7a7a-4f35-bcfd-1e7d0763960c", "type": "lvl3", "url": "/docs/components/progress#striped", "hierarchy": { @@ -5819,14 +6194,14 @@ }, { "content": "With Label", - "objectID": "2beebf9e-f546-4846-af5c-5aeddf8cf4d3", + "objectID": "0b77e5a5-6361-49f8-930c-aa2facd68f1d", "type": "lvl3", "url": "/docs/components/progress#with-label", "hierarchy": { "lvl1": "Progress", "lvl2": "Striped", "lvl3": "With Label" } }, { "content": "With Value", - "objectID": "17a471e3-ff56-40da-b87c-401fefa73285", + "objectID": "b7eb02eb-e3f9-47df-933a-46ffc5f4051a", "type": "lvl3", "url": "/docs/components/progress#with-value", "hierarchy": { @@ -5837,7 +6212,7 @@ }, { "content": "Value Formatting", - "objectID": "81a372b3-dfb2-4fa3-847f-035e80b2f187", + "objectID": "73a250fd-f67f-4d3f-830c-af077614df6c", "type": "lvl3", "url": "/docs/components/progress#value-formatting", "hierarchy": { @@ -5848,14 +6223,14 @@ }, { "content": "Slots", - "objectID": "5d202539-96a4-4f6d-951d-12d7cc715b08", + "objectID": "dfef233c-e883-463a-bcfb-a7454b99c335", "type": "lvl2", "url": "/docs/components/progress#slots", "hierarchy": { "lvl1": "Progress", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "2836bc0c-3d1f-477b-9726-580edd156bf1", + "objectID": "9c27f027-271b-495a-b469-cb2c781271ed", "type": "lvl3", "url": "/docs/components/progress#custom-styles", "hierarchy": { @@ -5866,77 +6241,77 @@ }, { "content": "Data Attributes", - "objectID": "b0b33c73-50a4-4600-b7e0-972f99528d7e", + "objectID": "c224c663-4eee-4087-be35-79b9b0b15281", "type": "lvl2", "url": "/docs/components/progress#data-attributes", "hierarchy": { "lvl1": "Progress", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "f86b7330-ac6e-4c7a-ba13-7590fceb6a05", + "objectID": "ded9d30b-b70f-4f9f-a724-8ba7efd7c5b4", "type": "lvl2", "url": "/docs/components/progress#accessibility", "hierarchy": { "lvl1": "Progress", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "12c3af23-ad7c-4c24-9247-0cd29023b81b", + "objectID": "a88507db-3650-4e49-b239-a25eceb24f59", "type": "lvl2", "url": "/docs/components/progress#api", "hierarchy": { "lvl1": "Progress", "lvl2": "API", "lvl3": null } }, { "content": "Progress Props", - "objectID": "7e70e29c-7976-4858-9af3-45f7fec877dd", + "objectID": "6609aabf-e9dd-436b-9c2c-0f98a80754ff", "type": "lvl3", "url": "/docs/components/progress#progress-props", "hierarchy": { "lvl1": "Progress", "lvl2": "API", "lvl3": "Progress Props" } }, { "content": "Radio", - "objectID": "f95fa054-d89a-4a65-83c6-c4d4205c1681", + "objectID": "cdb28dff-463f-4933-a287-ea5fbe247062", "type": "lvl1", "url": "/docs/components/radio-group", "hierarchy": { "lvl1": "Radio" } }, { "content": "Radio group", - "objectID": "d22e774f-5979-4042-8b35-d7aab58f6065", + "objectID": "3ec7e149-acc9-48e7-ba48-a2d8db7a0d6e", "type": "lvl1", "url": "/docs/components/radio-group#radio-group", "hierarchy": { "lvl1": "Radio", "lvl2": null, "lvl3": null } }, { "content": "Installation", - "objectID": "fd8eff22-a973-489e-8f13-1c67885e634e", + "objectID": "ca6e214c-a86b-4feb-82ba-8a3fba0b7927", "type": "lvl2", "url": "/docs/components/radio-group#installation", "hierarchy": { "lvl1": "Radio", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "3f3c0574-41f6-4c40-89aa-1b8e8150563c", + "objectID": "455de611-9875-4d4c-8df4-12856a2357bf", "type": "lvl2", "url": "/docs/components/radio-group#import", "hierarchy": { "lvl1": "Radio", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "8ba6608e-f0d7-4bcb-ab70-8253a8156b8c", + "objectID": "04db9c53-4a3a-4e4a-bae5-963730184ddc", "type": "lvl2", "url": "/docs/components/radio-group#usage", "hierarchy": { "lvl1": "Radio", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "f29fa08f-97c7-4ee3-b8e5-6eb4d25112b6", + "objectID": "48ef1b33-062a-4196-a19e-e0a41c416e22", "type": "lvl3", "url": "/docs/components/radio-group#disabled", "hierarchy": { "lvl1": "Radio", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Default Value", - "objectID": "396ea819-34e6-4b1f-a665-6b28453d0476", + "objectID": "219ca69e-fdf2-458d-a184-2a79cddf81ba", "type": "lvl3", "url": "/docs/components/radio-group#default-value", "hierarchy": { @@ -5947,7 +6322,7 @@ }, { "content": "With Description", - "objectID": "98e06f3d-db8e-4ca8-96ee-adae15899562", + "objectID": "7f2f6422-4fcd-40f2-859c-6ddae9ca744a", "type": "lvl3", "url": "/docs/components/radio-group#with-description", "hierarchy": { @@ -5958,7 +6333,7 @@ }, { "content": "Horizontal", - "objectID": "12e6ce83-1926-4278-a83c-820f2c443028", + "objectID": "295be354-d21d-4df6-8fe7-1886cf585c48", "type": "lvl3", "url": "/docs/components/radio-group#horizontal", "hierarchy": { @@ -5969,35 +6344,35 @@ }, { "content": "Controlled", - "objectID": "dd967ea5-431e-4568-b5d6-35bd4e4389c9", + "objectID": "ca87e13a-ba4a-462f-821a-5d8705379ad0", "type": "lvl3", "url": "/docs/components/radio-group#controlled", "hierarchy": { "lvl1": "Radio", "lvl2": "Horizontal", "lvl3": "Controlled" } }, { "content": "Invalid", - "objectID": "9d0d9958-e765-4c53-9ec1-4acbf1a342eb", + "objectID": "ecdc1e22-6b74-4063-ae62-b39bb6264a9f", "type": "lvl3", "url": "/docs/components/radio-group#invalid", "hierarchy": { "lvl1": "Radio", "lvl2": "Controlled", "lvl3": "Invalid" } }, { "content": "Slots", - "objectID": "244b2e5e-df72-4d4c-8f57-8ce53315e55a", + "objectID": "bcba7eca-3a36-45e7-9a41-970364371376", "type": "lvl2", "url": "/docs/components/radio-group#slots", "hierarchy": { "lvl1": "Radio", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "534a3814-8d62-48ea-b637-f7fac071b1f1", + "objectID": "ebdb839e-bc27-433c-b6a9-0a9547b997d5", "type": "lvl3", "url": "/docs/components/radio-group#custom-styles", "hierarchy": { "lvl1": "Radio", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Custom Implementation", - "objectID": "36ed5523-36b8-426c-a2ef-b3981c5ee198", + "objectID": "e8d3e916-16cf-4352-ac58-62e313155d8e", "type": "lvl3", "url": "/docs/components/radio-group#custom-implementation", "hierarchy": { @@ -6008,35 +6383,35 @@ }, { "content": "Data Attributes", - "objectID": "d16bab9d-f869-44cc-b8e4-acaf93a5ae85", + "objectID": "67b6e423-12bf-44e2-8b7c-d45c4f31f997", "type": "lvl2", "url": "/docs/components/radio-group#data-attributes", "hierarchy": { "lvl1": "Radio", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "d80b26da-ec78-4af6-a0d6-62aab513410e", + "objectID": "982b4a25-0242-4b19-b83b-d5932894b61e", "type": "lvl2", "url": "/docs/components/radio-group#accessibility", "hierarchy": { "lvl1": "Radio", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "f805c6fd-e492-4822-ae66-ac5e38acd679", + "objectID": "62f59ad2-a6d9-4cd3-82f9-dcd92b58ddf7", "type": "lvl2", "url": "/docs/components/radio-group#api", "hierarchy": { "lvl1": "Radio", "lvl2": "API", "lvl3": null } }, { "content": "RadioGroup Props", - "objectID": "2c73a8b3-fac0-4310-8e65-1fb22791370b", + "objectID": "10f33104-c0a0-4dc6-bc0c-10469e1b8aad", "type": "lvl3", "url": "/docs/components/radio-group#radiogroup-props", "hierarchy": { "lvl1": "Radio", "lvl2": "API", "lvl3": "RadioGroup Props" } }, { "content": "RadioGroup Events", - "objectID": "ebee0599-a3ce-4000-8575-d14120bc8807", + "objectID": "ecd660d7-e439-4e8e-a067-bc5d671292e5", "type": "lvl3", "url": "/docs/components/radio-group#radiogroup-events", "hierarchy": { @@ -6047,7 +6422,7 @@ }, { "content": "Radio Props", - "objectID": "bc06c184-c736-4d5a-ad0d-067d4c8a2cf5", + "objectID": "490610e2-b5ee-4488-a396-e1752116b6f9", "type": "lvl3", "url": "/docs/components/radio-group#radio-props", "hierarchy": { @@ -6058,14 +6433,14 @@ }, { "content": "Range Calendar", - "objectID": "575b4208-82a6-4199-8ba8-f72cc0bd6029", + "objectID": "62593bec-20f4-4761-aea7-34e2bf46ed5b", "type": "lvl1", "url": "/docs/components/range-calendar", "hierarchy": { "lvl1": "Range Calendar" } }, { "content": "Installation", - "objectID": "5171b3ca-2720-4f59-8362-bd1a41ada909", + "objectID": "04eab398-d5cb-4817-8c92-9e9736dec222", "type": "lvl2", "url": "/docs/components/range-calendar#installation", "hierarchy": { @@ -6076,21 +6451,21 @@ }, { "content": "Import", - "objectID": "b10ceadc-c38c-48db-b7e7-4a9be01f526e", + "objectID": "60e963e8-84e0-4fd0-93e6-507d42efb22f", "type": "lvl2", "url": "/docs/components/range-calendar#import", "hierarchy": { "lvl1": "Range Calendar", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "3757f9e8-4a5f-41d0-9b8e-3ef3fb8e91ea", + "objectID": "3db17680-bed2-4233-9a70-a3f48f87409f", "type": "lvl2", "url": "/docs/components/range-calendar#usage", "hierarchy": { "lvl1": "Range Calendar", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "2f2eec83-43b9-47d1-a1cb-b0d3b6246c4c", + "objectID": "e6d24942-6a03-491d-b56e-cbb7ef78c235", "type": "lvl3", "url": "/docs/components/range-calendar#disabled", "hierarchy": { @@ -6101,7 +6476,7 @@ }, { "content": "Read Only", - "objectID": "b257157b-1e7a-4623-b789-b2ed7b6f8042", + "objectID": "81fe65f2-7ba8-4795-b90a-4de0d7be79c4", "type": "lvl3", "url": "/docs/components/range-calendar#read-only", "hierarchy": { @@ -6112,7 +6487,7 @@ }, { "content": "Controlled", - "objectID": "03b5e8f0-1582-406a-8761-198ddda0aa4f", + "objectID": "119712d6-552a-4fc7-aedb-f745348badd3", "type": "lvl3", "url": "/docs/components/range-calendar#controlled", "hierarchy": { @@ -6123,7 +6498,7 @@ }, { "content": "Min Date Value", - "objectID": "0b2e3317-1b75-4995-ae0b-7ffe0167c42e", + "objectID": "36be40ac-517a-497b-833f-a06bacf368cb", "type": "lvl3", "url": "/docs/components/range-calendar#min-date-value", "hierarchy": { @@ -6134,7 +6509,7 @@ }, { "content": "Max Date Value", - "objectID": "c0686577-e125-4138-a9f4-df1ba8db0172", + "objectID": "c2536eac-2842-4d4f-9754-ea1d4a2931c4", "type": "lvl3", "url": "/docs/components/range-calendar#max-date-value", "hierarchy": { @@ -6145,7 +6520,7 @@ }, { "content": "Unavailable Dates", - "objectID": "7ea06775-592e-4113-b861-a70f5d7663b2", + "objectID": "2d40f95b-2790-478a-9d35-56e4dc74f195", "type": "lvl3", "url": "/docs/components/range-calendar#unavailable-dates", "hierarchy": { @@ -6156,7 +6531,7 @@ }, { "content": "Non-Contiguous Ranges", - "objectID": "08c6a5ee-8a31-4746-88e1-0047078ff5a5", + "objectID": "d05734eb-1bd0-4608-9b76-14f7200670d6", "type": "lvl3", "url": "/docs/components/range-calendar#non-contiguous-ranges", "hierarchy": { @@ -6167,7 +6542,7 @@ }, { "content": "Controlled Focused Value", - "objectID": "5f1c671a-567b-4d82-aa1e-58b24220e04a", + "objectID": "950be8e4-c6c5-4de2-baa8-c8be3f334ca0", "type": "lvl3", "url": "/docs/components/range-calendar#controlled-focused-value", "hierarchy": { @@ -6178,7 +6553,7 @@ }, { "content": "Invalid Date", - "objectID": "443b9320-3601-4940-a207-608c15cfd9b1", + "objectID": "b7931ba8-0105-4112-9922-7296189007fb", "type": "lvl3", "url": "/docs/components/range-calendar#invalid-date", "hierarchy": { @@ -6187,20 +6562,31 @@ "lvl3": "Invalid Date" } }, + { + "content": "With Month And Year Picker", + "objectID": "3b01873d-b17f-4bfb-ad39-03ea4c75bdba", + "type": "lvl3", + "url": "/docs/components/range-calendar#with-month-and-year-picker", + "hierarchy": { + "lvl1": "Range Calendar", + "lvl2": "Invalid Date", + "lvl3": "With Month And Year Picker" + } + }, { "content": "International Calendars", - "objectID": "f1bed985-c572-4e19-9994-3893758a7765", + "objectID": "568a9c36-8c59-487c-b3f7-903f56886ecc", "type": "lvl3", "url": "/docs/components/range-calendar#international-calendars", "hierarchy": { "lvl1": "Range Calendar", - "lvl2": "Invalid Date", + "lvl2": "With Month And Year Picker", "lvl3": "International Calendars" } }, { "content": "Visible Months", - "objectID": "9c1efca8-7784-4b79-9644-8246386a6b0d", + "objectID": "0066a313-86ff-4e90-bb3a-58b175eb9bca", "type": "lvl3", "url": "/docs/components/range-calendar#visible-months", "hierarchy": { @@ -6211,7 +6597,7 @@ }, { "content": "Page Behaviour", - "objectID": "c1361748-b47d-481d-a21c-1d161afdfac5", + "objectID": "538ac6ec-6944-483b-b307-ff091d5bfdcd", "type": "lvl3", "url": "/docs/components/range-calendar#page-behaviour", "hierarchy": { @@ -6222,7 +6608,7 @@ }, { "content": "Presets", - "objectID": "067298ea-4134-477e-a319-9c7345b068c8", + "objectID": "bbfcc0f2-513d-4f16-9a76-0e5c5820c803", "type": "lvl3", "url": "/docs/components/range-calendar#presets", "hierarchy": { @@ -6233,14 +6619,14 @@ }, { "content": "Slots", - "objectID": "354b9d1e-478f-47ab-975b-f35f79dd1764", + "objectID": "3a123420-9cbf-4d86-ab5a-33ad3b6d85f9", "type": "lvl2", "url": "/docs/components/range-calendar#slots", "hierarchy": { "lvl1": "Range Calendar", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "d109ba05-49d3-49ce-bb9d-543cca303714", + "objectID": "a5fe3b77-9f08-412d-b847-749d8ada3828", "type": "lvl2", "url": "/docs/components/range-calendar#data-attributes", "hierarchy": { @@ -6251,7 +6637,7 @@ }, { "content": "Accessibility", - "objectID": "7e144382-35c9-44dd-bb82-49922035f3f9", + "objectID": "fbbd14e9-cf76-4d5e-b528-f3aa9b63b154", "type": "lvl2", "url": "/docs/components/range-calendar#accessibility", "hierarchy": { @@ -6262,14 +6648,14 @@ }, { "content": "API", - "objectID": "0a5d9ab2-8b14-4880-ada1-5c1218f4572a", + "objectID": "edd3bd9c-3535-4a99-be45-3c26434a1894", "type": "lvl2", "url": "/docs/components/range-calendar#api", "hierarchy": { "lvl1": "Range Calendar", "lvl2": "API", "lvl3": null } }, { "content": "RangeCalendar Props", - "objectID": "bb37b537-2af4-40c4-99a8-0d5860eb23b2", + "objectID": "26010952-0916-4b66-94e4-0e00dbcc5614", "type": "lvl3", "url": "/docs/components/range-calendar#rangecalendar-props", "hierarchy": { @@ -6280,7 +6666,7 @@ }, { "content": "RangeCalendar Events", - "objectID": "bd5db4f1-7916-4e31-90a4-f3daee516365", + "objectID": "6178cc1a-8dd4-459b-932f-fe93c108df67", "type": "lvl3", "url": "/docs/components/range-calendar#rangecalendar-events", "hierarchy": { @@ -6291,7 +6677,7 @@ }, { "content": "Supported Calendars", - "objectID": "b76d7cb4-41ca-4b07-a865-411b3da7331a", + "objectID": "36503cdd-f412-4a78-852b-0a77d9d2c84b", "type": "lvl4", "url": "/docs/components/range-calendar#supported-calendars", "hierarchy": { @@ -6302,14 +6688,14 @@ }, { "content": "Scroll Shadow", - "objectID": "6415610f-00bc-4e41-9ad4-12f190de39fd", + "objectID": "2de3258b-d718-4d5e-a9c8-827fce89e499", "type": "lvl1", "url": "/docs/components/scroll-shadow", "hierarchy": { "lvl1": "Scroll Shadow" } }, { "content": "Installation", - "objectID": "234192b9-1801-4ac7-ba43-30aca28d5f94", + "objectID": "128b1068-cbf9-4dba-a3a3-e1d173138661", "type": "lvl2", "url": "/docs/components/scroll-shadow#installation", "hierarchy": { @@ -6320,21 +6706,21 @@ }, { "content": "Import", - "objectID": "b6f9c927-6535-49d9-bd18-2c482acf5308", + "objectID": "08cf87cd-b234-4c04-9697-172c709daaf1", "type": "lvl2", "url": "/docs/components/scroll-shadow#import", "hierarchy": { "lvl1": "Scroll Shadow", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "0641120f-b5cd-4132-809e-b394941a5377", + "objectID": "0880d9fe-4ea4-4b19-a455-886f4de1959b", "type": "lvl2", "url": "/docs/components/scroll-shadow#usage", "hierarchy": { "lvl1": "Scroll Shadow", "lvl2": "Usage", "lvl3": null } }, { "content": "Hide Scrollbar", - "objectID": "34dc8fad-d89e-4994-bcab-67107d36c115", + "objectID": "8e005f1d-2a80-46f5-9b7b-2366fd0155e1", "type": "lvl3", "url": "/docs/components/scroll-shadow#hide-scrollbar", "hierarchy": { @@ -6345,7 +6731,7 @@ }, { "content": "Custom Shadow Size", - "objectID": "b29c948b-8756-4cb9-815c-119175a984a7", + "objectID": "c6ce7ea4-85eb-4866-825d-6cbd83e986e6", "type": "lvl3", "url": "/docs/components/scroll-shadow#custom-shadow-size", "hierarchy": { @@ -6356,7 +6742,7 @@ }, { "content": "Horizontal Orientation", - "objectID": "5dc6799e-965e-408b-81c5-f7e68ad58f44", + "objectID": "660db8e8-53dc-4e4e-88a8-699b1ec0e129", "type": "lvl3", "url": "/docs/components/scroll-shadow#horizontal-orientation", "hierarchy": { @@ -6367,7 +6753,7 @@ }, { "content": "Shadow Offset", - "objectID": "7969ba33-8aa8-444b-a3e4-103474c79bcc", + "objectID": "577b181c-b56c-48fb-89e9-ad5eedc02203", "type": "lvl3", "url": "/docs/components/scroll-shadow#shadow-offset", "hierarchy": { @@ -6378,14 +6764,14 @@ }, { "content": "API", - "objectID": "74936381-2725-40a5-a61d-bf51362c86dd", + "objectID": "f997bf3c-04a3-429c-9d4f-3b4d9e2812db", "type": "lvl2", "url": "/docs/components/scroll-shadow#api", "hierarchy": { "lvl1": "Scroll Shadow", "lvl2": "API", "lvl3": null } }, { "content": "ShadowScroll Props", - "objectID": "92568995-0103-41b7-b7bf-8b4bd41ea901", + "objectID": "8e9bbaac-fd9d-4d48-9d31-8dcc083250ac", "type": "lvl3", "url": "/docs/components/scroll-shadow#shadowscroll-props", "hierarchy": { @@ -6396,7 +6782,7 @@ }, { "content": "ShadowScroll Events", - "objectID": "9b91093f-07b8-4e25-88fc-241fac366aba", + "objectID": "38be67a1-589b-4827-96e5-4394315f2091", "type": "lvl3", "url": "/docs/components/scroll-shadow#shadowscroll-events", "hierarchy": { @@ -6407,7 +6793,7 @@ }, { "content": "Types", - "objectID": "2b768f8f-9a31-48f1-a147-fa8db81da0e8", + "objectID": "45608ec5-c9d5-4e7a-a11c-085c4b1ff235", "type": "lvl3", "url": "/docs/components/scroll-shadow#types", "hierarchy": { @@ -6418,49 +6804,49 @@ }, { "content": "Scroll Shadow Visibility", - "objectID": "9d05097d-7e19-48bd-b188-d3d36c7c2404", + "objectID": "75dd4230-e36e-4754-a7b1-ef1874e9e36f", "type": "lvl4", "url": "/docs/components/scroll-shadow#scroll-shadow-visibility", "hierarchy": { "lvl1": "Scroll Shadow", "lvl2": "Types", "lvl3": null } }, { "content": "Select", - "objectID": "661b5e81-d086-4957-a3c1-59f24c50e7e6", + "objectID": "ab6ce658-448a-4c06-9e2f-f51b3c3f678c", "type": "lvl1", "url": "/docs/components/select", "hierarchy": { "lvl1": "Select" } }, { "content": "Installation", - "objectID": "d9a5db7c-861f-4f75-94bb-a777b6d18f5c", + "objectID": "449b09cb-da60-40bd-a303-d8b63de04c67", "type": "lvl2", "url": "/docs/components/select#installation", "hierarchy": { "lvl1": "Select", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "6f43ab6b-0614-4345-a707-2bac22454674", + "objectID": "f98934d2-b16a-4871-9bb6-2915d0696c4b", "type": "lvl2", "url": "/docs/components/select#import", "hierarchy": { "lvl1": "Select", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "9067705a-36a8-4fb2-b550-780515f0100b", + "objectID": "ee3948d7-9e88-4582-b908-f7eb0f2cf2be", "type": "lvl2", "url": "/docs/components/select#usage", "hierarchy": { "lvl1": "Select", "lvl2": "Usage", "lvl3": null } }, { "content": "Dynamic items", - "objectID": "872085c6-b056-49c1-9266-03637cd3c761", + "objectID": "f25c2b2f-1775-4a32-a4b3-0a1377331eb0", "type": "lvl3", "url": "/docs/components/select#dynamic-items", "hierarchy": { "lvl1": "Select", "lvl2": "Usage", "lvl3": "Dynamic items" } }, { "content": "Multiple Selection", - "objectID": "d55ef4be-b244-4b36-8be3-afa060fa8383", + "objectID": "b1ef09d4-c32e-42fc-a905-8a97b426c164", "type": "lvl3", "url": "/docs/components/select#multiple-selection", "hierarchy": { @@ -6471,7 +6857,7 @@ }, { "content": "Disabled", - "objectID": "a012af18-98da-4642-8135-3144000706ef", + "objectID": "22fa97c2-903a-40cb-9dd4-02d54cbebadf", "type": "lvl3", "url": "/docs/components/select#disabled", "hierarchy": { @@ -6482,7 +6868,7 @@ }, { "content": "Disabled Items", - "objectID": "5b8f95fd-0672-46e5-aa8f-a3fc16f4e006", + "objectID": "deba7e23-fafb-4439-a415-733f8242f22b", "type": "lvl3", "url": "/docs/components/select#disabled-items", "hierarchy": { @@ -6493,7 +6879,7 @@ }, { "content": "Required", - "objectID": "a4f548e2-714a-4401-9852-6b7968e179ea", + "objectID": "565384e5-75e2-4e2b-ba46-68f2e8179cab", "type": "lvl3", "url": "/docs/components/select#required", "hierarchy": { @@ -6504,35 +6890,35 @@ }, { "content": "Sizes", - "objectID": "c3da8a3b-bdd9-4fa4-aeec-59fc97488cbf", + "objectID": "daac2978-2ccc-4d1e-810b-2f0bc33eaa98", "type": "lvl3", "url": "/docs/components/select#sizes", "hierarchy": { "lvl1": "Select", "lvl2": "Required", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "6be3bfec-26c9-40c2-bcf1-639322562f0b", + "objectID": "3eb84688-0b7e-440e-9027-b17b778f32b0", "type": "lvl3", "url": "/docs/components/select#colors", "hierarchy": { "lvl1": "Select", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "302deef0-258b-42ab-a1b7-67d1c1aa8b83", + "objectID": "43072f66-2a1b-46b7-8d53-b949382e4b7c", "type": "lvl3", "url": "/docs/components/select#variants", "hierarchy": { "lvl1": "Select", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "Radius", - "objectID": "3657e491-11f5-42d0-9936-a4ba31daa74b", + "objectID": "d3ed3e7f-2d71-486d-b70c-ef89c07921a6", "type": "lvl3", "url": "/docs/components/select#radius", "hierarchy": { "lvl1": "Select", "lvl2": "Variants", "lvl3": "Radius" } }, { "content": "Label Placements", - "objectID": "d3f4e095-c056-4aee-a015-c79fa972cc59", + "objectID": "f54a27bc-f30e-4867-82f4-569712b05c01", "type": "lvl3", "url": "/docs/components/select#label-placements", "hierarchy": { @@ -6543,7 +6929,7 @@ }, { "content": "Start Content", - "objectID": "7642a28d-99ea-41d6-8b3b-848b2c6e20bd", + "objectID": "fa39ac2b-d746-4f65-8613-ea3c7091c6cb", "type": "lvl3", "url": "/docs/components/select#start-content", "hierarchy": { @@ -6554,7 +6940,7 @@ }, { "content": "Item Start & End Content", - "objectID": "85ea50e4-cc71-4669-95f8-bf42217d9ed9", + "objectID": "93fde46c-88cf-4694-bdf3-f516cd5a42c3", "type": "lvl3", "url": "/docs/components/select#item-start--end-content", "hierarchy": { @@ -6565,7 +6951,7 @@ }, { "content": "Custom Selector Icon", - "objectID": "553fb2eb-f714-411f-9a56-4fc185342e1e", + "objectID": "7715c5f3-2f0f-44b7-9d51-fbc730a1fd70", "type": "lvl3", "url": "/docs/components/select#custom-selector-icon", "hierarchy": { @@ -6576,7 +6962,7 @@ }, { "content": "Without Scroll Shadow", - "objectID": "9faecd41-302b-45c9-91b8-11d0f2cf6f43", + "objectID": "459f5d2a-f63c-4b3a-8e0f-98f9ca64b5db", "type": "lvl3", "url": "/docs/components/select#without-scroll-shadow", "hierarchy": { @@ -6587,7 +6973,7 @@ }, { "content": "With Description", - "objectID": "ddeebb05-48f1-4954-a90e-669851c934c2", + "objectID": "0272e70f-fdbc-4382-8e34-9ca82db4503c", "type": "lvl3", "url": "/docs/components/select#with-description", "hierarchy": { @@ -6598,7 +6984,7 @@ }, { "content": "With Error Message", - "objectID": "99cdfb7f-105f-46cf-99f2-68520719989b", + "objectID": "c7a87389-1aeb-472c-b5a5-1d38cf4a2eff", "type": "lvl3", "url": "/docs/components/select#with-error-message", "hierarchy": { @@ -6609,7 +6995,7 @@ }, { "content": "Controlled", - "objectID": "595a2a38-27af-414b-b29b-b242c9d0adca", + "objectID": "1259d81b-ae0f-4214-b9f4-5e60e78c1c73", "type": "lvl3", "url": "/docs/components/select#controlled", "hierarchy": { @@ -6620,7 +7006,7 @@ }, { "content": "Controlling the open state", - "objectID": "72287d33-431e-4edc-b272-0149f02de871", + "objectID": "ccea3cba-970d-4e85-8858-a763e1ad63ba", "type": "lvl3", "url": "/docs/components/select#controlling-the-open-state", "hierarchy": { @@ -6631,7 +7017,7 @@ }, { "content": "Custom Items", - "objectID": "bce334e0-f04d-417a-b142-015a86d8afb4", + "objectID": "6962467b-aed8-44d7-9e62-7a22ce02106a", "type": "lvl3", "url": "/docs/components/select#custom-items", "hierarchy": { @@ -6642,7 +7028,7 @@ }, { "content": "Custom Render Value", - "objectID": "4ab8edf8-1142-4ff9-ab9b-c8b38f9a5e7d", + "objectID": "e40a50e2-c4c3-4f75-8524-5ba2f0778b7f", "type": "lvl3", "url": "/docs/components/select#custom-render-value", "hierarchy": { @@ -6653,7 +7039,7 @@ }, { "content": "Asynchronous Loading", - "objectID": "b91f42d6-1b21-43db-ab4a-786431cf6ef1", + "objectID": "984f72eb-1901-4168-b3f5-1027c6482de5", "type": "lvl3", "url": "/docs/components/select#asynchronous-loading", "hierarchy": { @@ -6664,7 +7050,7 @@ }, { "content": "With Sections", - "objectID": "1e349d6f-6a3d-4c4b-9eb7-32f114c71a01", + "objectID": "dc4d69b3-5852-4580-b958-ef38f7526cdb", "type": "lvl3", "url": "/docs/components/select#with-sections", "hierarchy": { @@ -6675,7 +7061,7 @@ }, { "content": "Custom Sections Style", - "objectID": "3f41be36-8a11-45ac-95ba-f66de51afcab", + "objectID": "80218a99-de50-4cf3-9fcb-73468a10ce1a", "type": "lvl3", "url": "/docs/components/select#custom-sections-style", "hierarchy": { @@ -6686,7 +7072,7 @@ }, { "content": "Multiple Select Controlled", - "objectID": "f220c717-0acc-4717-88bb-7b5e6b35a958", + "objectID": "697a773e-7249-4cce-8657-87c0c9701179", "type": "lvl3", "url": "/docs/components/select#multiple-select-controlled", "hierarchy": { @@ -6697,7 +7083,7 @@ }, { "content": "Multiple With Chips", - "objectID": "73b43178-7a05-4fe8-b093-f8e1cfd0a14b", + "objectID": "97cda714-97bd-4f31-a124-34956d922fdb", "type": "lvl3", "url": "/docs/components/select#multiple-with-chips", "hierarchy": { @@ -6708,7 +7094,7 @@ }, { "content": "Customizing the select", - "objectID": "b0570b60-26d2-404c-9b65-6c4a508d4245", + "objectID": "0bd6a1c2-8a4e-428b-b657-48567314fd00", "type": "lvl3", "url": "/docs/components/select#customizing-the-select", "hierarchy": { @@ -6719,42 +7105,42 @@ }, { "content": "Slots", - "objectID": "b24a13ae-619a-4b5b-a503-f0c251d50426", + "objectID": "c9b13d1a-54f4-498d-b30a-a257240e0f9c", "type": "lvl2", "url": "/docs/components/select#slots", "hierarchy": { "lvl1": "Select", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "b5036f9f-46e0-4f60-bc0a-80f4a4732eba", + "objectID": "c089763e-715c-4eb2-b9b4-f82eaa1fff72", "type": "lvl2", "url": "/docs/components/select#data-attributes", "hierarchy": { "lvl1": "Select", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "7069a68c-4af0-4c6c-89b1-2719ee526080", + "objectID": "66284882-1737-4123-b380-e59373b93d1f", "type": "lvl2", "url": "/docs/components/select#accessibility", "hierarchy": { "lvl1": "Select", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "c7140990-b375-4bfd-8fc1-79ceabcb5dff", + "objectID": "7886e597-3bb8-4edc-afde-b87db1c65435", "type": "lvl2", "url": "/docs/components/select#api", "hierarchy": { "lvl1": "Select", "lvl2": "API", "lvl3": null } }, { "content": "Select Props", - "objectID": "afd77683-5012-411c-a6d9-a81d1ce0bf2f", + "objectID": "877516cb-57ea-4dbc-be9c-d5fcb7043537", "type": "lvl3", "url": "/docs/components/select#select-props", "hierarchy": { "lvl1": "Select", "lvl2": "API", "lvl3": "Select Props" } }, { "content": "Select Events", - "objectID": "c1ee0904-3379-42d4-9d09-5973ccbb4777", + "objectID": "e565d71b-d073-407f-af8a-fe6ee69e3551", "type": "lvl3", "url": "/docs/components/select#select-events", "hierarchy": { @@ -6765,7 +7151,7 @@ }, { "content": "SelectItem Props", - "objectID": "29319f8d-b2ef-4528-8c12-1f948238779a", + "objectID": "72b5ed9b-dcc5-4217-889f-d4d33e0bc651", "type": "lvl3", "url": "/docs/components/select#selectitem-props", "hierarchy": { @@ -6776,7 +7162,7 @@ }, { "content": "SelectItem Events", - "objectID": "41952559-9c34-4728-8bc4-e35fbf5e8e64", + "objectID": "a72d7d78-fd57-4637-ab14-9f7243bcbe9f", "type": "lvl3", "url": "/docs/components/select#selectitem-events", "hierarchy": { @@ -6787,7 +7173,7 @@ }, { "content": "SelectSection Props", - "objectID": "5de9e266-8efe-48d0-b1e7-ddfa89aac0a0", + "objectID": "120a113e-b7b1-4359-8674-6e792509e22a", "type": "lvl3", "url": "/docs/components/select#selectsection-props", "hierarchy": { @@ -6798,7 +7184,7 @@ }, { "content": "Types", - "objectID": "812e6951-b960-439f-8bed-efc4266f1d34", + "objectID": "44eb5075-9e95-4eec-952c-edbfa8b4dbb3", "type": "lvl3", "url": "/docs/components/select#types", "hierarchy": { @@ -6809,49 +7195,49 @@ }, { "content": "Render Value Function", - "objectID": "4ebd6928-d685-49ad-9895-2f63ea5f591c", + "objectID": "d1420bce-38bc-4c38-b8f2-949c2a535b83", "type": "lvl4", "url": "/docs/components/select#render-value-function", "hierarchy": { "lvl1": "Select", "lvl2": "Types", "lvl3": null } }, { "content": "Skeleton", - "objectID": "2caa6f4d-c368-40b2-b891-0be13e995fe5", + "objectID": "4e546e3d-f612-4993-b02e-875b193e16fc", "type": "lvl1", "url": "/docs/components/skeleton", "hierarchy": { "lvl1": "Skeleton" } }, { "content": "Installation", - "objectID": "13e74764-1828-41c4-b70f-05c6b0e0f45f", + "objectID": "5819b9f7-97ab-4c5d-b804-d88b4852fb37", "type": "lvl2", "url": "/docs/components/skeleton#installation", "hierarchy": { "lvl1": "Skeleton", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "398635ad-bc3b-4a58-b2cf-33c058f140a7", + "objectID": "b7dd046c-e59a-4f57-ad4e-67b888f8af6e", "type": "lvl2", "url": "/docs/components/skeleton#import", "hierarchy": { "lvl1": "Skeleton", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "3fd3a776-b9dd-4049-bd8f-8c9dc3c74854", + "objectID": "f610924b-0e31-426b-8b46-a9d0edc67026", "type": "lvl2", "url": "/docs/components/skeleton#usage", "hierarchy": { "lvl1": "Skeleton", "lvl2": "Usage", "lvl3": null } }, { "content": "Standalone", - "objectID": "048dd124-5beb-4670-8175-013db97f2271", + "objectID": "9fce32ae-0f12-4f1f-95ac-7b793b28e893", "type": "lvl3", "url": "/docs/components/skeleton#standalone", "hierarchy": { "lvl1": "Skeleton", "lvl2": "Usage", "lvl3": "Standalone" } }, { "content": "Loaded State", - "objectID": "dd6da424-7fd0-48b7-af00-96b070fffeb6", + "objectID": "4f245770-0988-4982-b088-e884d0d2b44f", "type": "lvl3", "url": "/docs/components/skeleton#loaded-state", "hierarchy": { @@ -6862,91 +7248,91 @@ }, { "content": "Slots", - "objectID": "20aee778-918a-4759-9345-56b40718359f", + "objectID": "43c58018-ce66-4bc2-b4d1-86c3275dfc61", "type": "lvl2", "url": "/docs/components/skeleton#slots", "hierarchy": { "lvl1": "Skeleton", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "d84ace43-6755-4914-8f72-f4f0ebff8be2", + "objectID": "bfb836b5-1add-4198-91fd-ebda13a6dd9f", "type": "lvl2", "url": "/docs/components/skeleton#data-attributes", "hierarchy": { "lvl1": "Skeleton", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "API", - "objectID": "f59ca7c4-6dc4-447a-bd67-5daee2cda38b", + "objectID": "277974b5-8aab-4fd1-9ed9-2a3eb261a0c5", "type": "lvl2", "url": "/docs/components/skeleton#api", "hierarchy": { "lvl1": "Skeleton", "lvl2": "API", "lvl3": null } }, { "content": "Skeleton Props", - "objectID": "2fe62658-f403-4c20-a811-99a3a3df1fd2", + "objectID": "e5d396a6-9922-4b1c-8222-18dc87721521", "type": "lvl3", "url": "/docs/components/skeleton#skeleton-props", "hierarchy": { "lvl1": "Skeleton", "lvl2": "API", "lvl3": "Skeleton Props" } }, { "content": "Slider", - "objectID": "735e9931-cee3-4283-8f13-a924f5246009", + "objectID": "6c0ed0ed-c74b-4594-a23f-94c9df2dfcd3", "type": "lvl1", "url": "/docs/components/slider", "hierarchy": { "lvl1": "Slider" } }, { "content": "Installation", - "objectID": "539757b9-b666-4092-a62d-4c584f5d1ad6", + "objectID": "d93d3eb0-4b0f-4551-9e99-c3653b7087f0", "type": "lvl2", "url": "/docs/components/slider#installation", "hierarchy": { "lvl1": "Slider", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "f360b5b6-3994-42dc-96ee-0f70c97114ae", + "objectID": "d5af964b-e87e-4054-a8c4-e1864069c869", "type": "lvl2", "url": "/docs/components/slider#import", "hierarchy": { "lvl1": "Slider", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "08da30f3-2080-476e-a8bf-909f949a3a93", + "objectID": "a2fc31dd-2eed-4f06-ac72-884a1624182e", "type": "lvl2", "url": "/docs/components/slider#usage", "hierarchy": { "lvl1": "Slider", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "08b2ba2f-fc35-408a-a56c-dd0de9127f8b", + "objectID": "609f3cd6-b1f3-4466-80cc-700e100e94ee", "type": "lvl3", "url": "/docs/components/slider#disabled", "hierarchy": { "lvl1": "Slider", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Sizes", - "objectID": "7731d2a7-c1d9-4a90-8318-ce3f1daa8099", + "objectID": "3f75da2c-ae74-4bcb-bd24-14048a4972bd", "type": "lvl3", "url": "/docs/components/slider#sizes", "hierarchy": { "lvl1": "Slider", "lvl2": "Disabled", "lvl3": "Sizes" } }, { "content": "Radius", - "objectID": "8bebab13-de32-4386-89d0-19ca952d2bf1", + "objectID": "ed2fba9a-f632-4cdd-9eb4-61c0daba47de", "type": "lvl3", "url": "/docs/components/slider#radius", "hierarchy": { "lvl1": "Slider", "lvl2": "Sizes", "lvl3": "Radius" } }, { "content": "Colors", - "objectID": "287f7004-0d5a-4c8f-8ec6-6e4a2ed6858b", + "objectID": "9e0b6bec-422e-40a8-b64d-491ddd41e750", "type": "lvl3", "url": "/docs/components/slider#colors", "hierarchy": { "lvl1": "Slider", "lvl2": "Radius", "lvl3": "Colors" } }, { "content": "Vertical Slider", - "objectID": "3f0c4151-0417-4456-88f5-87a2cb28afa5", + "objectID": "a82f66e5-8779-47bc-84ea-b35d2784f59e", "type": "lvl3", "url": "/docs/components/slider#vertical-slider", "hierarchy": { @@ -6957,7 +7343,7 @@ }, { "content": "With Visible Steps", - "objectID": "54408376-0623-4ec2-8faa-222eb4c3244a", + "objectID": "4a128b98-cdd1-484e-8689-d7a95a1ba3af", "type": "lvl3", "url": "/docs/components/slider#with-visible-steps", "hierarchy": { @@ -6968,7 +7354,7 @@ }, { "content": "With Marks", - "objectID": "e654cff0-5e22-4e54-b0b4-6b3dae57d7d7", + "objectID": "ae5db6fc-0e4e-455e-ad0f-29ca88e2991e", "type": "lvl3", "url": "/docs/components/slider#with-marks", "hierarchy": { @@ -6979,7 +7365,7 @@ }, { "content": "Range Slider", - "objectID": "3065a8a9-1ed1-45c5-8079-27d8dea4f4fc", + "objectID": "9794534c-e2f9-4343-9d06-dfe5e121e611", "type": "lvl3", "url": "/docs/components/slider#range-slider", "hierarchy": { @@ -6990,7 +7376,7 @@ }, { "content": "Fill Offset", - "objectID": "86809b15-3fd5-42cb-96d3-d81ce0016562", + "objectID": "e1b87aaa-e0d3-4a69-85ba-33d9f389be4b", "type": "lvl3", "url": "/docs/components/slider#fill-offset", "hierarchy": { @@ -7001,7 +7387,7 @@ }, { "content": "With Tooltip", - "objectID": "2f920936-a843-4859-b89e-386adc1c978e", + "objectID": "506e3e99-fec3-41e1-bb16-11cedcb6a49e", "type": "lvl3", "url": "/docs/components/slider#with-tooltip", "hierarchy": { @@ -7012,7 +7398,7 @@ }, { "content": "With Outline", - "objectID": "3b7e2d16-dfdf-4b46-9d73-0b3b638b1454", + "objectID": "5660442e-6918-461d-9a8d-2683a6d364d3", "type": "lvl3", "url": "/docs/components/slider#with-outline", "hierarchy": { @@ -7023,7 +7409,7 @@ }, { "content": "Start & End Content", - "objectID": "584ecc51-584b-44fd-8520-87d0cd8903a4", + "objectID": "79261995-c7c2-4028-a062-de50d6c2c7c1", "type": "lvl3", "url": "/docs/components/slider#start--end-content", "hierarchy": { @@ -7034,7 +7420,7 @@ }, { "content": "Value Formatting", - "objectID": "0d2e3fd8-bc5b-4829-a026-4214bce5cd8c", + "objectID": "5aa26187-0444-4963-a1a4-982edf69c907", "type": "lvl3", "url": "/docs/components/slider#value-formatting", "hierarchy": { @@ -7045,7 +7431,7 @@ }, { "content": "Hiding the Value", - "objectID": "937d4f04-1846-4079-bf11-f57e61e00fb1", + "objectID": "43d5118f-a70e-4ede-9158-e4fdd450a753", "type": "lvl3", "url": "/docs/components/slider#hiding-the-value", "hierarchy": { @@ -7056,7 +7442,7 @@ }, { "content": "Hiding the Thumbs", - "objectID": "c957de7a-7550-4089-a42c-717282749aa4", + "objectID": "ce5439b2-46a5-4bce-b6bb-ed56799ce792", "type": "lvl3", "url": "/docs/components/slider#hiding-the-thumbs", "hierarchy": { @@ -7067,7 +7453,7 @@ }, { "content": "Controlled", - "objectID": "0e5df990-022c-4968-8706-02d46df08c1e", + "objectID": "fa2dc075-3d91-45fd-8238-a48cf8dc2664", "type": "lvl3", "url": "/docs/components/slider#controlled", "hierarchy": { @@ -7078,7 +7464,7 @@ }, { "content": "Controlled Range", - "objectID": "74bbf8fc-9351-4028-939e-cacff5a1ebe0", + "objectID": "d49f036a-d386-4f58-b208-94f1dc301515", "type": "lvl3", "url": "/docs/components/slider#controlled-range", "hierarchy": { @@ -7089,7 +7475,7 @@ }, { "content": "Custom Thumb", - "objectID": "055a3f2b-720f-4b8e-b93f-345a12e5d956", + "objectID": "4f00d708-a81f-492a-aa94-441cdbebb612", "type": "lvl3", "url": "/docs/components/slider#custom-thumb", "hierarchy": { @@ -7100,7 +7486,7 @@ }, { "content": "Custom Range Thumbs", - "objectID": "3ee56536-e99d-406c-92ef-732ac3030b28", + "objectID": "dfba84f5-831a-4ee4-aa94-00ec38017702", "type": "lvl3", "url": "/docs/components/slider#custom-range-thumbs", "hierarchy": { @@ -7111,7 +7497,7 @@ }, { "content": "Custom Label", - "objectID": "24ae56f3-3efd-428f-88ba-c002df3ea5ad", + "objectID": "364f0f3f-e8be-4598-878f-4af85ffe53fc", "type": "lvl3", "url": "/docs/components/slider#custom-label", "hierarchy": { @@ -7122,7 +7508,7 @@ }, { "content": "Custom Value", - "objectID": "fa8b1383-4616-419b-9852-0d54bd39a30f", + "objectID": "5a5a0c0f-0b3c-4583-b820-1ce21648247e", "type": "lvl3", "url": "/docs/components/slider#custom-value", "hierarchy": { @@ -7133,7 +7519,7 @@ }, { "content": "Disabling Thumb Scale", - "objectID": "ec04bcec-9fbc-4496-94f7-13cec660497d", + "objectID": "329750c8-8872-42ce-abc1-6b68c5226d1b", "type": "lvl3", "url": "/docs/components/slider#disabling-thumb-scale", "hierarchy": { @@ -7144,49 +7530,49 @@ }, { "content": "Slots", - "objectID": "ead9ecc4-0d6a-41e0-8f9a-dece3449c38c", + "objectID": "f259b44e-0538-4d95-be31-685ffcf045d7", "type": "lvl2", "url": "/docs/components/slider#slots", "hierarchy": { "lvl1": "Slider", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "d2220cc6-0c42-4e3e-bd82-04fe8f1c419e", + "objectID": "16d3f130-ed2b-4312-8304-ecbe2a6c5a6e", "type": "lvl3", "url": "/docs/components/slider#custom-styles", "hierarchy": { "lvl1": "Slider", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Data Attributes", - "objectID": "a0ce58d4-ecd4-4a1b-b8bb-f66ea8a39596", + "objectID": "5ed31d68-7a85-423f-a5ff-c5e8bad02f1d", "type": "lvl2", "url": "/docs/components/slider#data-attributes", "hierarchy": { "lvl1": "Slider", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "4a2fae05-181e-4e8d-b9da-d4c8540f9ecc", + "objectID": "92e2fec6-7b61-4165-bb0f-388206309e51", "type": "lvl2", "url": "/docs/components/slider#accessibility", "hierarchy": { "lvl1": "Slider", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "b3d5b4b4-7b01-4550-9ec6-37664cd78bda", + "objectID": "02f119ab-2236-4949-87f2-e58e312ebc2e", "type": "lvl2", "url": "/docs/components/slider#api", "hierarchy": { "lvl1": "Slider", "lvl2": "API", "lvl3": null } }, { "content": "Slider Props", - "objectID": "a64f19f3-74bb-4f08-b4aa-235ee68e35f9", + "objectID": "4d3ec78a-f218-467c-98ca-a53e63bfb78c", "type": "lvl3", "url": "/docs/components/slider#slider-props", "hierarchy": { "lvl1": "Slider", "lvl2": "API", "lvl3": "Slider Props" } }, { "content": "Slider Functions", - "objectID": "73b9289d-93d7-4aa3-8529-93bb0aaa541c", + "objectID": "63b29610-dddb-49ee-a1ba-4995b37d75ed", "type": "lvl3", "url": "/docs/components/slider#slider-functions", "hierarchy": { @@ -7197,7 +7583,7 @@ }, { "content": "Slider Events", - "objectID": "00e3a15c-8e61-4f54-a0c4-66acc2f36528", + "objectID": "c7e3d7a7-e65e-4b66-bac9-3d53e62f7a8e", "type": "lvl3", "url": "/docs/components/slider#slider-events", "hierarchy": { @@ -7208,77 +7594,77 @@ }, { "content": "Types", - "objectID": "4c3187ab-92b1-43e2-9179-ea9cc454f108", + "objectID": "2ee32bbc-e590-4901-b8c7-a39e619b842e", "type": "lvl3", "url": "/docs/components/slider#types", "hierarchy": { "lvl1": "Slider", "lvl2": "Slider Events", "lvl3": "Types" } }, { "content": "Slider Value", - "objectID": "4427a830-08b9-46e5-907f-da92ab356bf2", + "objectID": "a28e9ad6-1650-4306-8ba5-99df97b6e88e", "type": "lvl4", "url": "/docs/components/slider#slider-value", "hierarchy": { "lvl1": "Slider", "lvl2": "Types", "lvl3": null } }, { "content": "Slider Step Marks", - "objectID": "6d8a132a-c100-4f0b-91fe-7cf737fcf1cf", + "objectID": "27d9bd2a-5a7d-4b1a-8b2c-359224a63457", "type": "lvl4", "url": "/docs/components/slider#slider-step-marks", "hierarchy": { "lvl1": "Slider", "lvl2": "Slider Value", "lvl3": null } }, { "content": "Snippet", - "objectID": "dac683e2-3c3b-4d65-87b4-5ee32122ecbe", + "objectID": "2b3846be-26a7-4d9d-9dda-1347834b932d", "type": "lvl1", "url": "/docs/components/snippet", "hierarchy": { "lvl1": "Snippet" } }, { "content": "Installation", - "objectID": "119664ef-0074-4400-8b0c-c7551ecad9b3", + "objectID": "67a6dbe3-960c-4af3-acdc-b84a61add2d7", "type": "lvl2", "url": "/docs/components/snippet#installation", "hierarchy": { "lvl1": "Snippet", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "a7c1a761-6023-4f9f-8117-dff183855e80", + "objectID": "63c6a4fb-ed35-4b00-83ce-2e1cf63b6523", "type": "lvl2", "url": "/docs/components/snippet#import", "hierarchy": { "lvl1": "Snippet", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "7158e21a-e4b1-4420-9697-a48400623acd", + "objectID": "7f523d57-839e-49c1-b0a9-dfdd3cc20c97", "type": "lvl2", "url": "/docs/components/snippet#usage", "hierarchy": { "lvl1": "Snippet", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "2fb82161-433e-4708-aa03-6d3597fcd94f", + "objectID": "787f7391-68b2-41ef-bbb1-19ef7067a77d", "type": "lvl3", "url": "/docs/components/snippet#sizes", "hierarchy": { "lvl1": "Snippet", "lvl2": "Usage", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "fc9f2fda-c760-44f5-abe4-1ed8ca391b36", + "objectID": "47655fb4-9ba8-442c-8a0f-ef5acba85ae4", "type": "lvl3", "url": "/docs/components/snippet#colors", "hierarchy": { "lvl1": "Snippet", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "8d891111-bc60-4982-bf5a-f23a465485e4", + "objectID": "8755535a-f766-4bdf-b99f-2bfbf21fc55c", "type": "lvl3", "url": "/docs/components/snippet#variants", "hierarchy": { "lvl1": "Snippet", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "Custom Symbol", - "objectID": "753fd420-97fe-46a1-b300-d204bc1498fc", + "objectID": "7c49cd96-ac72-4213-af58-b74c1c917d7f", "type": "lvl3", "url": "/docs/components/snippet#custom-symbol", "hierarchy": { @@ -7289,7 +7675,7 @@ }, { "content": "Without Copy", - "objectID": "3eb18fe7-9a43-4d74-8a0a-f25852edb83b", + "objectID": "11c32355-2f49-4c98-9620-aea5d7f1b0ea", "type": "lvl3", "url": "/docs/components/snippet#without-copy", "hierarchy": { @@ -7300,7 +7686,7 @@ }, { "content": "Custom Tooltip", - "objectID": "6307e491-1c31-4ead-81a3-3fdaf1e1161a", + "objectID": "561706a2-3fc8-4aed-993e-e9f63d889125", "type": "lvl3", "url": "/docs/components/snippet#custom-tooltip", "hierarchy": { @@ -7311,7 +7697,7 @@ }, { "content": "Multiline", - "objectID": "02a16042-ece8-44e7-99a7-633ff3718594", + "objectID": "89acf4d8-53ec-48a9-9d49-8e75de168e2a", "type": "lvl3", "url": "/docs/components/snippet#multiline", "hierarchy": { @@ -7322,7 +7708,7 @@ }, { "content": "Custom Icons", - "objectID": "6a22e244-567e-48a3-b3e0-2915de3cd100", + "objectID": "70b32080-d9d5-49c0-a812-9bcbf9eb8b0a", "type": "lvl3", "url": "/docs/components/snippet#custom-icons", "hierarchy": { @@ -7333,28 +7719,28 @@ }, { "content": "Slots", - "objectID": "8c47312b-ffee-4bc7-8640-50d53774f8dc", + "objectID": "d879f177-c0b0-45fa-a75c-bcd33ccfa66d", "type": "lvl2", "url": "/docs/components/snippet#slots", "hierarchy": { "lvl1": "Snippet", "lvl2": "Slots", "lvl3": null } }, { "content": "API", - "objectID": "f6782ab0-f3c6-4d0f-b423-e99834e196cc", + "objectID": "d03ec4ae-4fcc-4599-ba52-44982c9f1881", "type": "lvl2", "url": "/docs/components/snippet#api", "hierarchy": { "lvl1": "Snippet", "lvl2": "API", "lvl3": null } }, { "content": "Snippet Props", - "objectID": "6f44e456-09ef-4942-9a47-da4bc964245d", + "objectID": "4b172c4c-e597-4a66-ae03-f4ebe62993f8", "type": "lvl3", "url": "/docs/components/snippet#snippet-props", "hierarchy": { "lvl1": "Snippet", "lvl2": "API", "lvl3": "Snippet Props" } }, { "content": "Snippet Events", - "objectID": "65003c89-90e5-4ba1-8a15-1abbc546d04c", + "objectID": "9087a717-58ee-48ef-b491-d4f3870de983", "type": "lvl3", "url": "/docs/components/snippet#snippet-events", "hierarchy": { @@ -7365,105 +7751,105 @@ }, { "content": "Spacer", - "objectID": "b68cf98d-42fa-4481-9eb1-712e930e5b9f", + "objectID": "28266ad7-8e42-49b5-ad09-98c6ab092b90", "type": "lvl1", "url": "/docs/components/spacer", "hierarchy": { "lvl1": "Spacer" } }, { "content": "Installation", - "objectID": "541e6499-2fad-412d-971d-457cb50bc29f", + "objectID": "692f5f24-6d83-4365-a126-e5f26876f823", "type": "lvl2", "url": "/docs/components/spacer#installation", "hierarchy": { "lvl1": "Spacer", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "7868b391-9c29-49b4-97f7-1aa9e47aaf13", + "objectID": "1f9a386f-898f-4f62-a998-b27a482af322", "type": "lvl2", "url": "/docs/components/spacer#import", "hierarchy": { "lvl1": "Spacer", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "a35d6ac5-d82f-493f-83a6-d68357e548f0", + "objectID": "9638b65a-7f63-4738-b885-195f9a727f75", "type": "lvl2", "url": "/docs/components/spacer#usage", "hierarchy": { "lvl1": "Spacer", "lvl2": "Usage", "lvl3": null } }, { "content": "API", - "objectID": "534f6f11-55ee-48dd-ab97-d4002092cba2", + "objectID": "88cb947a-d753-480d-b7f0-ee6377c2fc28", "type": "lvl2", "url": "/docs/components/spacer#api", "hierarchy": { "lvl1": "Spacer", "lvl2": "API", "lvl3": null } }, { "content": "Spacer Props", - "objectID": "0e8c2ab3-d790-45a4-bfb9-ce7a80194311", + "objectID": "68e83aa4-c610-453b-b69d-424cfc5d1f55", "type": "lvl3", "url": "/docs/components/spacer#spacer-props", "hierarchy": { "lvl1": "Spacer", "lvl2": "API", "lvl3": "Spacer Props" } }, { "content": "Spaces", - "objectID": "6e61c939-7856-4a53-ba22-9cc52c58ac27", + "objectID": "8fbbe544-66aa-47e5-94f4-f896f1f92559", "type": "lvl3", "url": "/docs/components/spacer#spaces", "hierarchy": { "lvl1": "Spacer", "lvl2": "Spacer Props", "lvl3": "Spaces" } }, { "content": "Spinner", - "objectID": "d9ed8731-fdb0-4d87-8f75-d4a4d2a32578", + "objectID": "5c50c1b2-cb38-44fa-8a4a-878d41be0368", "type": "lvl1", "url": "/docs/components/spinner", "hierarchy": { "lvl1": "Spinner" } }, { "content": "Installation", - "objectID": "cbfae7b4-cf80-46da-bd6c-5884e9ec3f6f", + "objectID": "403b77e8-a2ee-41c4-b4be-b4e1624fad93", "type": "lvl2", "url": "/docs/components/spinner#installation", "hierarchy": { "lvl1": "Spinner", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "0e11adc4-84e1-4731-9c81-fca5f5d1f69f", + "objectID": "49845ba2-4f1c-4e14-b78d-afc757d400f5", "type": "lvl2", "url": "/docs/components/spinner#import", "hierarchy": { "lvl1": "Spinner", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "ec5e023f-bb00-43d6-afad-88fc8bfd0109", + "objectID": "7ed45bd9-6c24-4614-b0a2-13237b3be793", "type": "lvl2", "url": "/docs/components/spinner#usage", "hierarchy": { "lvl1": "Spinner", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "7af1ecf5-bac9-479d-a691-c3869218107f", + "objectID": "4e11b129-2238-4887-afaf-0721c7796373", "type": "lvl3", "url": "/docs/components/spinner#sizes", "hierarchy": { "lvl1": "Spinner", "lvl2": "Usage", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "2ea404a0-100d-4cd7-a20d-77728d821fab", + "objectID": "e15af50a-466b-448b-ab74-e12397474a17", "type": "lvl3", "url": "/docs/components/spinner#colors", "hierarchy": { "lvl1": "Spinner", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "With Label", - "objectID": "ae7df134-7344-4701-8e40-0ce1857c3b85", + "objectID": "ca6c8147-c78b-4242-9a3a-82f368f7441c", "type": "lvl3", "url": "/docs/components/spinner#with-label", "hierarchy": { "lvl1": "Spinner", "lvl2": "Colors", "lvl3": "With Label" } }, { "content": "Label colors", - "objectID": "91b8e3c0-5675-4580-a8a0-6cb40dbb27bc", + "objectID": "9406b97f-9ca9-4b0e-98bd-3d6f97b850ae", "type": "lvl3", "url": "/docs/components/spinner#label-colors", "hierarchy": { @@ -7474,21 +7860,21 @@ }, { "content": "Slots", - "objectID": "f564dcff-101e-410b-b1dc-f587c0f949b9", + "objectID": "d8677c63-0753-40c2-a959-4bf4b84fd140", "type": "lvl2", "url": "/docs/components/spinner#slots", "hierarchy": { "lvl1": "Spinner", "lvl2": "Slots", "lvl3": null } }, { "content": "API", - "objectID": "f8b87065-666e-45f6-aec0-ea44a3e02682", + "objectID": "0426e969-2f9c-4367-ac73-68865e6bdf64", "type": "lvl2", "url": "/docs/components/spinner#api", "hierarchy": { "lvl1": "Spinner", "lvl2": "API", "lvl3": null } }, { "content": "Circular Progress Props", - "objectID": "b0dc7f97-e9fd-4c79-8942-3b96836c5509", + "objectID": "c9dada8c-3b1a-4e63-997e-3302623625d0", "type": "lvl3", "url": "/docs/components/spinner#circular-progress-props", "hierarchy": { @@ -7499,63 +7885,63 @@ }, { "content": "Switch", - "objectID": "bd6aa00b-459e-41c6-ae92-52a14d8952c1", + "objectID": "5566c46b-06d1-412d-9867-376ce01e2807", "type": "lvl1", "url": "/docs/components/switch", "hierarchy": { "lvl1": "Switch" } }, { "content": "Installation", - "objectID": "487e8d57-173d-4887-ae9f-2e4f305f54e0", + "objectID": "73529936-d90b-4d52-aa07-c871ec0a9b05", "type": "lvl2", "url": "/docs/components/switch#installation", "hierarchy": { "lvl1": "Switch", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "40624e21-18b0-4258-85fc-736e1469b97b", + "objectID": "f3bca911-1d70-40d7-8d62-35af16a40cc7", "type": "lvl2", "url": "/docs/components/switch#import", "hierarchy": { "lvl1": "Switch", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "79c4c27a-aa16-4a1c-94f5-428e5645a14b", + "objectID": "ceafe4d1-f809-4db1-bc6b-8237df818cad", "type": "lvl2", "url": "/docs/components/switch#usage", "hierarchy": { "lvl1": "Switch", "lvl2": "Usage", "lvl3": null } }, { "content": "With Label", - "objectID": "051d34e0-a24a-48bb-8b3f-c4f6c3b490c8", + "objectID": "cd62c4b4-f213-4190-9326-89ec335b8764", "type": "lvl3", "url": "/docs/components/switch#with-label", "hierarchy": { "lvl1": "Switch", "lvl2": "Usage", "lvl3": "With Label" } }, { "content": "Disabled", - "objectID": "6ac3e626-85f3-45d7-9149-2a6d1c6b8835", + "objectID": "22a62926-9a4c-4980-af7f-7678ff8080da", "type": "lvl3", "url": "/docs/components/switch#disabled", "hierarchy": { "lvl1": "Switch", "lvl2": "With Label", "lvl3": "Disabled" } }, { "content": "Sizes", - "objectID": "045d8a4c-80a4-4eab-bf8c-f6cab49db471", + "objectID": "714f9707-3fb0-4384-8bbd-2f685d775900", "type": "lvl3", "url": "/docs/components/switch#sizes", "hierarchy": { "lvl1": "Switch", "lvl2": "Disabled", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "68a285d8-3f6a-427b-8bed-1afa40fae081", + "objectID": "3c5698f2-c450-47b4-9e39-9457082103f9", "type": "lvl3", "url": "/docs/components/switch#colors", "hierarchy": { "lvl1": "Switch", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "With Thumb Icon", - "objectID": "522e550e-23b8-4e8e-b0cb-016f9b9c8df6", + "objectID": "e9b29e06-ef1d-4bcf-acea-d95fa0b1ef17", "type": "lvl3", "url": "/docs/components/switch#with-thumb-icon", "hierarchy": { @@ -7566,7 +7952,7 @@ }, { "content": "With Icons", - "objectID": "18565276-269a-43b7-a4b4-f92a5c2fceeb", + "objectID": "82299d33-b326-4581-bca2-119fb549ece1", "type": "lvl3", "url": "/docs/components/switch#with-icons", "hierarchy": { @@ -7577,7 +7963,7 @@ }, { "content": "Controlled", - "objectID": "1caa6d71-7b6c-4c39-8eb2-a4aa79096f47", + "objectID": "db50a7cc-e970-44fc-8424-d48f320ceea1", "type": "lvl3", "url": "/docs/components/switch#controlled", "hierarchy": { @@ -7588,21 +7974,21 @@ }, { "content": "Slots", - "objectID": "37aa7968-3328-4c05-bac7-2835a9cd775b", + "objectID": "3f66e7e8-5758-4f88-9d87-68485e3c182f", "type": "lvl2", "url": "/docs/components/switch#slots", "hierarchy": { "lvl1": "Switch", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "f911d789-4396-4c9a-8bcd-3fb5abfab699", + "objectID": "126d078e-0b3f-4c0d-b331-e937035bf21f", "type": "lvl3", "url": "/docs/components/switch#custom-styles", "hierarchy": { "lvl1": "Switch", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Custom Implementation", - "objectID": "c512e8c2-9059-40bd-b52b-7db4c4555d97", + "objectID": "b46f49bf-330e-4216-af1c-41403c50359a", "type": "lvl3", "url": "/docs/components/switch#custom-implementation", "hierarchy": { @@ -7613,35 +7999,35 @@ }, { "content": "Data Attributes", - "objectID": "eb4a76c8-d719-4ab1-a5e8-8fe6c916beab", + "objectID": "1817b396-3ea9-4809-86cd-79cb9abe0acb", "type": "lvl2", "url": "/docs/components/switch#data-attributes", "hierarchy": { "lvl1": "Switch", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "7f600ce2-9cd7-4b69-afa8-5b5bedd6eafe", + "objectID": "407cc978-1732-471d-b34b-6c1367eb3e80", "type": "lvl2", "url": "/docs/components/switch#accessibility", "hierarchy": { "lvl1": "Switch", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "b2faba5b-2331-4a63-ac81-13a2a23d26e8", + "objectID": "54c4fec4-3dce-4f03-a5ea-c092cb1b4f60", "type": "lvl2", "url": "/docs/components/switch#api", "hierarchy": { "lvl1": "Switch", "lvl2": "API", "lvl3": null } }, { "content": "Switch Props", - "objectID": "15b2b060-cdf9-4acd-aff2-dce9b6c03736", + "objectID": "16304aaf-eb76-490c-95c1-1c3aca4a08f8", "type": "lvl3", "url": "/docs/components/switch#switch-props", "hierarchy": { "lvl1": "Switch", "lvl2": "API", "lvl3": "Switch Props" } }, { "content": "Switch Events", - "objectID": "45e585a9-13e6-43f8-a570-c8fb52355075", + "objectID": "22b35720-ecd8-4353-92e0-28a05e26aaf4", "type": "lvl3", "url": "/docs/components/switch#switch-events", "hierarchy": { @@ -7652,63 +8038,63 @@ }, { "content": "Types", - "objectID": "ac5d9af6-7780-4201-80b4-7c0ec06b7046", + "objectID": "f1b6165d-4bf3-40d8-9716-bba3bad9eb90", "type": "lvl3", "url": "/docs/components/switch#types", "hierarchy": { "lvl1": "Switch", "lvl2": "Switch Events", "lvl3": "Types" } }, { "content": "Switch Icon Props", - "objectID": "f399c458-ea88-4ff8-a73b-851e59425f09", + "objectID": "2c3e8e98-9034-4993-82b3-5050238e1d20", "type": "lvl4", "url": "/docs/components/switch#switch-icon-props", "hierarchy": { "lvl1": "Switch", "lvl2": "Types", "lvl3": null } }, { "content": "Table", - "objectID": "677dfb1a-0e6f-4f37-b893-6bee2283114d", + "objectID": "3f3a9f89-d0b5-4dae-9b1c-b0357f5c3865", "type": "lvl1", "url": "/docs/components/table", "hierarchy": { "lvl1": "Table" } }, { "content": "Installation", - "objectID": "8bad65b6-f4ae-4eee-acbf-36c5c719f6bb", + "objectID": "c10a04c8-3115-45be-beb5-f460d3859bfa", "type": "lvl2", "url": "/docs/components/table#installation", "hierarchy": { "lvl1": "Table", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "3cde986c-5c31-40e2-b20a-928819d89b52", + "objectID": "726df9da-4fae-498d-9574-ccbf0a30f944", "type": "lvl2", "url": "/docs/components/table#import", "hierarchy": { "lvl1": "Table", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "03d108cd-c800-4878-b2dc-4656d9512127", + "objectID": "1f7c526c-5ffb-4149-96b6-7d975d414821", "type": "lvl2", "url": "/docs/components/table#usage", "hierarchy": { "lvl1": "Table", "lvl2": "Usage", "lvl3": null } }, { "content": "Dynamic", - "objectID": "b673db16-07f6-4aff-b883-5e21df9ef331", + "objectID": "ef5a917d-cea6-4453-a93d-0c9391671104", "type": "lvl3", "url": "/docs/components/table#dynamic", "hierarchy": { "lvl1": "Table", "lvl2": "Usage", "lvl3": "Dynamic" } }, { "content": "Why not array map?", - "objectID": "d3a928c4-c333-4451-ac10-14f41a5c35b4", + "objectID": "20ad71d0-5ba1-438e-bf62-564cf72782eb", "type": "lvl4", "url": "/docs/components/table#why-not-array-map", "hierarchy": { "lvl1": "Table", "lvl2": "Dynamic", "lvl3": null } }, { "content": "Empty State", - "objectID": "177477da-5332-459c-af59-667e00bbd16e", + "objectID": "a3e54f3b-d282-4fd8-b775-1ec8faf7d090", "type": "lvl3", "url": "/docs/components/table#empty-state", "hierarchy": { @@ -7719,7 +8105,7 @@ }, { "content": "Without Header", - "objectID": "dc3bc215-732d-44df-a135-4558f04b4c52", + "objectID": "4f212071-ba2e-490e-9e2f-8c8c275ac1bd", "type": "lvl3", "url": "/docs/components/table#without-header", "hierarchy": { @@ -7730,7 +8116,7 @@ }, { "content": "Without Wrapper", - "objectID": "dc4d2b18-6b1e-44af-8aa9-549b593d1752", + "objectID": "7cfc4fa9-2edc-4322-acad-89ad0e7af23a", "type": "lvl3", "url": "/docs/components/table#without-wrapper", "hierarchy": { @@ -7741,7 +8127,7 @@ }, { "content": "Custom Cells", - "objectID": "7b399c2d-ffe3-4944-9ac5-ad975f9efd6a", + "objectID": "7b8be82d-a63c-461f-bf8b-ee48299ad035", "type": "lvl3", "url": "/docs/components/table#custom-cells", "hierarchy": { @@ -7752,7 +8138,7 @@ }, { "content": "Striped Rows", - "objectID": "ab4efe61-7320-4bcd-8853-ae33b50d93fb", + "objectID": "32ba0660-704a-402f-bfb3-586ecdf51abf", "type": "lvl3", "url": "/docs/components/table#striped-rows", "hierarchy": { @@ -7763,7 +8149,7 @@ }, { "content": "Single Row Selection", - "objectID": "54a470f4-0e16-4fa9-b41c-82ad577ff101", + "objectID": "f4cadee8-86ff-4a09-b115-a0e5b0dc4fa6", "type": "lvl3", "url": "/docs/components/table#single-row-selection", "hierarchy": { @@ -7774,7 +8160,7 @@ }, { "content": "Multiple Row Selection", - "objectID": "e6671cb9-6e49-44bb-be87-c25a029e22ad", + "objectID": "472accb6-d993-490f-b10d-4508698ba166", "type": "lvl3", "url": "/docs/components/table#multiple-row-selection", "hierarchy": { @@ -7785,7 +8171,7 @@ }, { "content": "Disallow Empty Selection", - "objectID": "67e59cb2-291b-491b-a369-ef5643045e41", + "objectID": "1a430690-ef04-4a7f-ac27-31a517a0b16c", "type": "lvl3", "url": "/docs/components/table#disallow-empty-selection", "hierarchy": { @@ -7796,7 +8182,7 @@ }, { "content": "Controlled Selection", - "objectID": "4600bd88-4f77-44ce-876f-9bbe8855aa71", + "objectID": "6c1f9a57-eb8d-4b66-81d3-707911e04c08", "type": "lvl3", "url": "/docs/components/table#controlled-selection", "hierarchy": { @@ -7807,7 +8193,7 @@ }, { "content": "Disabled Rows", - "objectID": "0142e36a-4690-480e-8e0f-132418823fef", + "objectID": "272d7488-4bee-4958-9836-c6e5ac6cad1c", "type": "lvl3", "url": "/docs/components/table#disabled-rows", "hierarchy": { @@ -7818,7 +8204,7 @@ }, { "content": "Selection Behavior", - "objectID": "a2195029-27ab-4854-a8ab-e8d605b89c48", + "objectID": "82bed9dc-5f76-4537-a252-bbd257ba6d13", "type": "lvl3", "url": "/docs/components/table#selection-behavior", "hierarchy": { @@ -7829,7 +8215,7 @@ }, { "content": "Rows Actions", - "objectID": "c897d762-3644-4014-8832-320240dd3ffd", + "objectID": "bad09d4e-d5d4-4992-8500-b88f8c4456c0", "type": "lvl3", "url": "/docs/components/table#rows-actions", "hierarchy": { @@ -7840,7 +8226,7 @@ }, { "content": "Sorting Rows", - "objectID": "b444bdd5-a456-4349-8a47-af63a72f8169", + "objectID": "db3efe92-231f-4f2d-9ab3-037643cdbce5", "type": "lvl3", "url": "/docs/components/table#sorting-rows", "hierarchy": { @@ -7851,7 +8237,7 @@ }, { "content": "Loading more data", - "objectID": "39d0605e-120c-4b0b-832c-d03cddd10565", + "objectID": "5758156a-3219-47e8-b236-8878630e2c0c", "type": "lvl3", "url": "/docs/components/table#loading-more-data", "hierarchy": { @@ -7862,7 +8248,7 @@ }, { "content": "Paginated Table", - "objectID": "cc39617e-53cc-4659-bdfa-697c2ab2a875", + "objectID": "98b7358f-91f6-411d-8dd5-d14f24d8c8c6", "type": "lvl3", "url": "/docs/components/table#paginated-table", "hierarchy": { @@ -7873,7 +8259,7 @@ }, { "content": "Async Pagination", - "objectID": "f3a14d39-7037-44c4-8c2c-600027be8250", + "objectID": "be4e079d-d455-43d5-aef8-a0bd0486e8f2", "type": "lvl3", "url": "/docs/components/table#async-pagination", "hierarchy": { @@ -7884,7 +8270,7 @@ }, { "content": "Infinite Pagination", - "objectID": "4c4bb5b3-82c9-4586-8111-d9adcb36a9d0", + "objectID": "bdfc910c-3a4c-4c71-9de3-dba32c6a53a7", "type": "lvl3", "url": "/docs/components/table#infinite-pagination", "hierarchy": { @@ -7895,7 +8281,7 @@ }, { "content": "Use Case Example", - "objectID": "7b42af99-f367-4040-934a-f948c0063d03", + "objectID": "dc6db15e-7e80-4be5-8e46-c98efe0b909c", "type": "lvl3", "url": "/docs/components/table#use-case-example", "hierarchy": { @@ -7906,49 +8292,49 @@ }, { "content": "Slots", - "objectID": "9851726a-4e10-44e7-9b7f-8399ee8114b2", + "objectID": "3de7c3bf-ab84-4331-b72d-8bdd98945b49", "type": "lvl2", "url": "/docs/components/table#slots", "hierarchy": { "lvl1": "Table", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "4a13e875-17b4-4142-a742-495a4d5dfd69", + "objectID": "c57166bb-354d-44ca-9227-6f730286731e", "type": "lvl3", "url": "/docs/components/table#custom-styles", "hierarchy": { "lvl1": "Table", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Data Attributes", - "objectID": "e21dd8cf-e10f-4a4c-ac33-3db9cd72f3c9", + "objectID": "35ac948b-87ad-4543-a382-3beef9641b72", "type": "lvl2", "url": "/docs/components/table#data-attributes", "hierarchy": { "lvl1": "Table", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "e2194e60-548a-424f-a8f2-0d8613dc3464", + "objectID": "333c329b-3b4b-4486-ac3d-01d89bea456f", "type": "lvl2", "url": "/docs/components/table#accessibility", "hierarchy": { "lvl1": "Table", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "95dcdf77-01e8-4ff4-ae4d-3a66bdc32d97", + "objectID": "58858047-a1c8-4539-9f15-397b8a960643", "type": "lvl2", "url": "/docs/components/table#api", "hierarchy": { "lvl1": "Table", "lvl2": "API", "lvl3": null } }, { "content": "Table Props", - "objectID": "c9ea83db-9497-43ee-9dff-e51219610df9", + "objectID": "e4741627-12c1-42b7-9a2e-42dde0a634f8", "type": "lvl3", "url": "/docs/components/table#table-props", "hierarchy": { "lvl1": "Table", "lvl2": "API", "lvl3": "Table Props" } }, { "content": "Table Events", - "objectID": "8f2286b1-7088-4876-b323-a234a14da54d", + "objectID": "79e0106d-98ab-47da-8c7f-821f0838cc50", "type": "lvl3", "url": "/docs/components/table#table-events", "hierarchy": { @@ -7959,28 +8345,28 @@ }, { "content": "TableHeader Props", - "objectID": "4f4c6374-ec27-4b61-830f-38dfe947018c", + "objectID": "8ac81eae-47a6-4539-918e-1c0e88e80f31", "type": "lvl4", "url": "/docs/components/table#tableheader-props", "hierarchy": { "lvl1": "Table", "lvl2": "Table Events", "lvl3": null } }, { "content": "TableColumn Props", - "objectID": "d6abb840-0417-49f0-aa68-a07f38858b46", + "objectID": "059d8755-2f48-4998-9613-5d39c97e49c3", "type": "lvl4", "url": "/docs/components/table#tablecolumn-props", "hierarchy": { "lvl1": "Table", "lvl2": "TableHeader Props", "lvl3": null } }, { "content": "TableBody Props", - "objectID": "1741203b-6c5c-4491-85df-9263e5666a63", + "objectID": "2031c590-a3c5-4733-827f-297641da7ed8", "type": "lvl4", "url": "/docs/components/table#tablebody-props", "hierarchy": { "lvl1": "Table", "lvl2": "TableColumn Props", "lvl3": null } }, { "content": "TableBody Events", - "objectID": "1f68f3e1-91f7-4a5d-ad1c-7967cc450427", + "objectID": "ce87426a-6e3b-4203-b23f-48d4cfc77b86", "type": "lvl3", "url": "/docs/components/table#tablebody-events", "hierarchy": { @@ -7991,21 +8377,21 @@ }, { "content": "TableRow Props", - "objectID": "bbc75998-7beb-4474-80ed-24d166fb5cb3", + "objectID": "5edd4b1d-ed9b-43f0-8f74-0e4bb8b56269", "type": "lvl4", "url": "/docs/components/table#tablerow-props", "hierarchy": { "lvl1": "Table", "lvl2": "TableBody Events", "lvl3": null } }, { "content": "TableCell Props", - "objectID": "ebe48aef-c409-4cec-9744-20f7dacb8fe2", + "objectID": "1b07042d-6ecb-4dc8-9677-cf7c378607de", "type": "lvl4", "url": "/docs/components/table#tablecell-props", "hierarchy": { "lvl1": "Table", "lvl2": "TableRow Props", "lvl3": null } }, { "content": "Table types", - "objectID": "7cfe40a2-18c5-41a4-9f3c-29258312dff6", + "objectID": "7f86d7fc-7ec1-45d9-a749-d33e06650ff9", "type": "lvl3", "url": "/docs/components/table#table-types", "hierarchy": { @@ -8016,266 +8402,280 @@ }, { "content": "Sort descriptor", - "objectID": "affe518e-b52f-4e7e-a007-8053200ccaa7", + "objectID": "c7c70db7-a2d8-4b35-a085-eba461b3cc8f", "type": "lvl4", "url": "/docs/components/table#sort-descriptor", "hierarchy": { "lvl1": "Table", "lvl2": "Table types", "lvl3": null } }, { "content": "Selection", - "objectID": "db8bee89-4aeb-4e4d-8782-22676f41503f", + "objectID": "02d5f0d8-7626-4dfd-ac12-7ac097c5ad16", "type": "lvl4", "url": "/docs/components/table#selection", "hierarchy": { "lvl1": "Table", "lvl2": "Sort descriptor", "lvl3": null } }, { "content": "Loading state", - "objectID": "ddac624c-d2bb-4998-8028-dc9ab05ec3fb", + "objectID": "c46fed98-97b4-44d3-bd17-e56f41c2a8ce", "type": "lvl4", "url": "/docs/components/table#loading-state", "hierarchy": { "lvl1": "Table", "lvl2": "Selection", "lvl3": null } }, { "content": "Tabs", - "objectID": "c7831eef-186b-45ac-990e-8d88ddb31898", + "objectID": "db18ad50-cdf7-414a-a839-004f1f3f8dce", "type": "lvl1", "url": "/docs/components/tabs", "hierarchy": { "lvl1": "Tabs" } }, { "content": "Installation", - "objectID": "fe090659-f85d-4769-8979-858c05bb2663", + "objectID": "491773a1-c241-4057-84a0-0583c5e43a6a", "type": "lvl2", "url": "/docs/components/tabs#installation", "hierarchy": { "lvl1": "Tabs", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "6bf070f6-2199-4fd2-950c-638b89d4b825", + "objectID": "2e3d60cd-26a5-411a-8381-5b87b6c7ca5c", "type": "lvl2", "url": "/docs/components/tabs#import", "hierarchy": { "lvl1": "Tabs", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "b9236751-c727-458b-b800-027f78401a77", + "objectID": "fb67cebe-e83e-4175-aebd-2df720e8432c", "type": "lvl2", "url": "/docs/components/tabs#usage", "hierarchy": { "lvl1": "Tabs", "lvl2": "Usage", "lvl3": null } }, { "content": "Dynamic", - "objectID": "e90831e5-e014-4cb7-b7e6-d27d5ff4c2e7", + "objectID": "3fc0c6b8-640a-4f2d-9cce-9946995d237f", "type": "lvl3", "url": "/docs/components/tabs#dynamic", "hierarchy": { "lvl1": "Tabs", "lvl2": "Usage", "lvl3": "Dynamic" } }, { "content": "Disabled", - "objectID": "f31956b3-1c59-496d-86c6-4553288ac62f", + "objectID": "857f416d-a309-4cbe-852d-6fcd056325bd", "type": "lvl3", "url": "/docs/components/tabs#disabled", "hierarchy": { "lvl1": "Tabs", "lvl2": "Dynamic", "lvl3": "Disabled" } }, { "content": "Disabled Item", - "objectID": "ad593f4f-0941-45f6-9332-679c1da51db1", + "objectID": "71287f6b-96a6-4ccb-a809-2e1c22cc6cdd", "type": "lvl3", "url": "/docs/components/tabs#disabled-item", "hierarchy": { "lvl1": "Tabs", "lvl2": "Disabled", "lvl3": "Disabled Item" } }, { "content": "Sizes", - "objectID": "2b1f142a-7782-45b3-8749-cc5ca6f2ac64", + "objectID": "1c8729c0-0b77-41c2-8e88-653f6e34473d", "type": "lvl3", "url": "/docs/components/tabs#sizes", "hierarchy": { "lvl1": "Tabs", "lvl2": "Disabled Item", "lvl3": "Sizes" } }, { "content": "Radius", - "objectID": "136c74c5-b00c-4d45-8072-539ec535fcca", + "objectID": "b33bdec3-97df-43c3-8fb8-2331f38b29d0", "type": "lvl3", "url": "/docs/components/tabs#radius", "hierarchy": { "lvl1": "Tabs", "lvl2": "Sizes", "lvl3": "Radius" } }, { "content": "Colors", - "objectID": "39c4838c-da9b-40da-85ae-380d75ed9646", + "objectID": "5b42a204-1985-4365-a24e-411507d629fd", "type": "lvl3", "url": "/docs/components/tabs#colors", "hierarchy": { "lvl1": "Tabs", "lvl2": "Radius", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "e7b2abf9-2903-4f9e-9bc6-9cb193ed5494", + "objectID": "bde3f0e3-10a8-469d-a952-51694470d358", "type": "lvl3", "url": "/docs/components/tabs#variants", "hierarchy": { "lvl1": "Tabs", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "With Icons", - "objectID": "adb8ccaf-bfaf-44ed-9a27-6c1f83ebc5d4", + "objectID": "81628775-6190-4b94-bf10-056a8e399683", "type": "lvl3", "url": "/docs/components/tabs#with-icons", "hierarchy": { "lvl1": "Tabs", "lvl2": "Variants", "lvl3": "With Icons" } }, { "content": "Controlled", - "objectID": "5c176c2f-2cd4-42b9-9c7a-a5841e868678", + "objectID": "7192ae58-3812-4619-83ea-f83855a52806", "type": "lvl3", "url": "/docs/components/tabs#controlled", "hierarchy": { "lvl1": "Tabs", "lvl2": "With Icons", "lvl3": "Controlled" } }, + { + "content": "Placement", + "objectID": "67c8ace3-fad1-42ed-bca5-0e0f3d181d33", + "type": "lvl3", + "url": "/docs/components/tabs#placement", + "hierarchy": { "lvl1": "Tabs", "lvl2": "Controlled", "lvl3": "Placement" } + }, + { + "content": "Vertical", + "objectID": "2ee8429f-fc1b-4a69-b208-a3c719fc42fa", + "type": "lvl3", + "url": "/docs/components/tabs#vertical", + "hierarchy": { "lvl1": "Tabs", "lvl2": "Placement", "lvl3": "Vertical" } + }, { "content": "Links", - "objectID": "b18bbc1d-b487-4ecd-a57c-a6387f661537", + "objectID": "4ae65d20-154e-4e28-bb60-3360aa181b0f", "type": "lvl3", "url": "/docs/components/tabs#links", - "hierarchy": { "lvl1": "Tabs", "lvl2": "Controlled", "lvl3": "Links" } + "hierarchy": { "lvl1": "Tabs", "lvl2": "Vertical", "lvl3": "Links" } }, { "content": "Next.js", - "objectID": "4b15c58a-426f-4e7e-8ef4-811fb57f6cd8", + "objectID": "41f0a64a-e4e4-4f06-a1f5-eefd99b9b330", "type": "lvl4", "url": "/docs/components/tabs#nextjs", "hierarchy": { "lvl1": "Tabs", "lvl2": "Links", "lvl3": null } }, { "content": "React Router", - "objectID": "3221f6d3-b72c-4fe1-ae5e-126fe2e8dac3", + "objectID": "09e886bf-3715-4e89-95f4-6a718d9ce71a", "type": "lvl4", "url": "/docs/components/tabs#react-router", "hierarchy": { "lvl1": "Tabs", "lvl2": "Next.js", "lvl3": null } }, { "content": "With Form", - "objectID": "c54993e5-d773-4b9d-9fb3-c79d63ab9110", + "objectID": "94069f6e-0be1-4160-bdf4-0efdc92cfcfb", "type": "lvl3", "url": "/docs/components/tabs#with-form", "hierarchy": { "lvl1": "Tabs", "lvl2": "React Router", "lvl3": "With Form" } }, { "content": "Slots", - "objectID": "ec16fc3a-e678-44eb-8dc9-53f97dca362e", + "objectID": "83f97019-f14d-4638-b045-c3f96d82e462", "type": "lvl2", "url": "/docs/components/tabs#slots", "hierarchy": { "lvl1": "Tabs", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "e2c0efa0-42c6-42af-b392-ea64837abe7d", + "objectID": "f20a3aab-ec1f-4ed6-af3b-692b19e5f1a1", "type": "lvl3", "url": "/docs/components/tabs#custom-styles", "hierarchy": { "lvl1": "Tabs", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Data Attributes", - "objectID": "a99edbbf-5091-41cc-875f-86c57109ef27", + "objectID": "2f7d01ed-e590-4f30-b4dd-26819603f335", "type": "lvl2", "url": "/docs/components/tabs#data-attributes", "hierarchy": { "lvl1": "Tabs", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "3353c418-e0e3-4ce8-8cf0-904645302e71", + "objectID": "1c5218f6-577f-44e4-8c94-c0ddff677591", "type": "lvl2", "url": "/docs/components/tabs#accessibility", "hierarchy": { "lvl1": "Tabs", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "b01a3abf-4c66-46b7-ac62-d628aedaacee", + "objectID": "798f3219-fea3-4842-b24e-9ed38a476ffb", "type": "lvl2", "url": "/docs/components/tabs#api", "hierarchy": { "lvl1": "Tabs", "lvl2": "API", "lvl3": null } }, { "content": "Tabs Props", - "objectID": "ec96a70b-a562-41c8-97bc-6d6ef502594a", + "objectID": "436c4302-3a57-4846-ade6-f306a23800ac", "type": "lvl3", "url": "/docs/components/tabs#tabs-props", "hierarchy": { "lvl1": "Tabs", "lvl2": "API", "lvl3": "Tabs Props" } }, { "content": "Tabs Events", - "objectID": "86963df3-dab4-4558-9d14-0845a3f69229", + "objectID": "9b6ce619-23e0-4df4-8e7b-f5a2b9bf5dab", "type": "lvl3", "url": "/docs/components/tabs#tabs-events", "hierarchy": { "lvl1": "Tabs", "lvl2": "Tabs Props", "lvl3": "Tabs Events" } }, { "content": "Tab Props", - "objectID": "7c42e43d-1e8f-4ea2-9ce8-14abd2dd3db8", + "objectID": "a17f99c2-b964-4dc7-b6b3-5446245bdac2", "type": "lvl3", "url": "/docs/components/tabs#tab-props", "hierarchy": { "lvl1": "Tabs", "lvl2": "Tabs Events", "lvl3": "Tab Props" } }, { "content": "Motion Props", - "objectID": "706541d9-6975-48e9-a506-11f45c339fa7", + "objectID": "b0093017-441d-4f05-b207-9a38a7b13530", "type": "lvl4", "url": "/docs/components/tabs#motion-props", "hierarchy": { "lvl1": "Tabs", "lvl2": "Tab Props", "lvl3": null } }, { "content": "Textarea", - "objectID": "98a4dacf-06de-4ba9-946d-9db57e07bf6c", + "objectID": "c6708aff-11ca-4650-8cb5-689ba5f554ee", "type": "lvl1", "url": "/docs/components/textarea", "hierarchy": { "lvl1": "Textarea" } }, { "content": "Installation", - "objectID": "8130f00f-108e-4d04-9fb2-cdc483ee736d", + "objectID": "24217224-d3db-4fd7-8cf4-41274c6ff6b6", "type": "lvl2", "url": "/docs/components/textarea#installation", "hierarchy": { "lvl1": "Textarea", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "44164e8c-cc40-4379-9e00-3c62ac125941", + "objectID": "2fd047ac-0e11-4384-b2b5-9e248008062b", "type": "lvl2", "url": "/docs/components/textarea#import", "hierarchy": { "lvl1": "Textarea", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "8b281b25-9c89-4a49-a91e-d33cb15229ae", + "objectID": "99e76eb9-5533-4eec-bc64-7babaf632784", "type": "lvl2", "url": "/docs/components/textarea#usage", "hierarchy": { "lvl1": "Textarea", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "3b20655a-322d-4f98-bd0d-33c6cd635d3f", + "objectID": "672a658b-7fce-4127-9b9d-a96230a0b857", "type": "lvl3", "url": "/docs/components/textarea#disabled", "hierarchy": { "lvl1": "Textarea", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Read Only", - "objectID": "63613fd7-0b60-414e-9c9b-f456aee5b030", + "objectID": "f306e6ca-ca7a-4822-b959-20296c48e143", "type": "lvl3", "url": "/docs/components/textarea#read-only", "hierarchy": { "lvl1": "Textarea", "lvl2": "Disabled", "lvl3": "Read Only" } }, { "content": "Required", - "objectID": "93ef8dc4-80d0-405c-9a45-e77c615f3994", + "objectID": "1336aefd-0c55-4c9f-9020-39dcf2b08fbd", "type": "lvl3", "url": "/docs/components/textarea#required", "hierarchy": { "lvl1": "Textarea", "lvl2": "Read Only", "lvl3": "Required" } }, { "content": "Autosize", - "objectID": "e08a472a-a781-49e7-a3f1-4ba95c790df2", + "objectID": "1fb30f10-b01d-4cb9-88bb-29b2283074a1", "type": "lvl3", "url": "/docs/components/textarea#autosize", "hierarchy": { "lvl1": "Textarea", "lvl2": "Required", "lvl3": "Autosize" } }, { "content": "Without Autosize", - "objectID": "b08664ec-8cc0-421a-8f1c-7cc3fd47e229", + "objectID": "22148172-996f-4bc3-b26d-0b56dee1cf16", "type": "lvl3", "url": "/docs/components/textarea#without-autosize", "hierarchy": { @@ -8286,7 +8686,7 @@ }, { "content": "Variants", - "objectID": "45aa9ecf-5e04-4004-980f-dc7d4ea6bab9", + "objectID": "9da5b244-b2c1-4234-b747-c2c86d80f6ae", "type": "lvl3", "url": "/docs/components/textarea#variants", "hierarchy": { @@ -8297,7 +8697,7 @@ }, { "content": "With Error Message", - "objectID": "d04cbd67-524a-4ae1-8b00-76216a4282f5", + "objectID": "70fc68cb-dab6-44e7-9b8a-776014ac2ab9", "type": "lvl3", "url": "/docs/components/textarea#with-error-message", "hierarchy": { @@ -8308,7 +8708,7 @@ }, { "content": "Description", - "objectID": "1601b27a-9182-4cf7-ad64-0ec9f5bb6f00", + "objectID": "45c52029-890c-4a9d-b2f4-80d2c0883efa", "type": "lvl3", "url": "/docs/components/textarea#description", "hierarchy": { @@ -8319,7 +8719,7 @@ }, { "content": "Controlled", - "objectID": "a8770db9-7854-4506-89bc-030840c3243f", + "objectID": "1f8e51ec-15a1-4545-8f45-c109bb0f330c", "type": "lvl3", "url": "/docs/components/textarea#controlled", "hierarchy": { @@ -8330,42 +8730,42 @@ }, { "content": "Slots", - "objectID": "213fc14f-5286-4c47-8b72-a3c92388a61a", + "objectID": "1dec6ff0-fcaa-4c4a-917c-89204bb0b3c8", "type": "lvl2", "url": "/docs/components/textarea#slots", "hierarchy": { "lvl1": "Textarea", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "3283ce2d-9197-4f5a-96dc-940833b87dc3", + "objectID": "f8d7882d-4e3d-4155-994d-160a6df6c746", "type": "lvl2", "url": "/docs/components/textarea#data-attributes", "hierarchy": { "lvl1": "Textarea", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "c4e97734-414b-4579-b085-ee45d79bc284", + "objectID": "99826cea-4994-4991-aa51-1ce676969fa0", "type": "lvl2", "url": "/docs/components/textarea#accessibility", "hierarchy": { "lvl1": "Textarea", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "726ef6f0-f48a-45b6-9aaf-88ba219e3ef4", + "objectID": "d7118661-d2a3-41fc-80f8-f4bc95c163fa", "type": "lvl2", "url": "/docs/components/textarea#api", "hierarchy": { "lvl1": "Textarea", "lvl2": "API", "lvl3": null } }, { "content": "Textarea Props", - "objectID": "ca19fbb8-dd98-435d-acfe-a08946d5e801", + "objectID": "a2fe5593-14b9-40de-85ab-c2ed314a04e5", "type": "lvl3", "url": "/docs/components/textarea#textarea-props", "hierarchy": { "lvl1": "Textarea", "lvl2": "API", "lvl3": "Textarea Props" } }, { "content": "Input Events", - "objectID": "3fc1cc36-f43e-4aaf-b265-6d28c720c1c4", + "objectID": "ad89041f-1bf3-4d25-94be-c5756d83c5b0", "type": "lvl3", "url": "/docs/components/textarea#input-events", "hierarchy": { @@ -8376,42 +8776,42 @@ }, { "content": "Time Input", - "objectID": "9be0ccb0-0cab-40a5-8b74-703635ca1782", + "objectID": "0516946c-d99a-43e1-a55c-ee18dbbffc13", "type": "lvl1", "url": "/docs/components/time-input", "hierarchy": { "lvl1": "Time Input" } }, { "content": "Installation", - "objectID": "4cc65423-714b-4978-ab48-fff8e754a33c", + "objectID": "bebd2aa0-f894-433b-bcc1-97cf29e4443a", "type": "lvl2", "url": "/docs/components/time-input#installation", "hierarchy": { "lvl1": "Time Input", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "16d1f2e8-0e24-4643-a54c-5bce405a9d74", + "objectID": "c802ff47-02a8-4cd5-807f-58a22af398bb", "type": "lvl2", "url": "/docs/components/time-input#import", "hierarchy": { "lvl1": "Time Input", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "d1d11cf4-04c3-483f-9bae-0c8c43b5cd7c", + "objectID": "9edf9750-a18a-488e-9379-096db840e309", "type": "lvl2", "url": "/docs/components/time-input#usage", "hierarchy": { "lvl1": "Time Input", "lvl2": "Usage", "lvl3": null } }, { "content": "Required", - "objectID": "7aa62f52-182c-42a5-bf9b-d351f1723ef0", + "objectID": "0998fb82-0e7c-406b-8e0c-44a526cc72c0", "type": "lvl3", "url": "/docs/components/time-input#required", "hierarchy": { "lvl1": "Time Input", "lvl2": "Usage", "lvl3": "Required" } }, { "content": "Disabled", - "objectID": "eb0361f8-d030-423c-9d75-3e48862bd0cb", + "objectID": "d21bc4b5-6e9d-4f0b-9f2f-ecf1a2eea0be", "type": "lvl3", "url": "/docs/components/time-input#disabled", "hierarchy": { @@ -8422,7 +8822,7 @@ }, { "content": "Read Only", - "objectID": "f0e56a21-aa8b-4361-bd51-76692ab7d9d8", + "objectID": "1d1623a5-e6f1-476d-96cf-5136191c60dc", "type": "lvl3", "url": "/docs/components/time-input#read-only", "hierarchy": { @@ -8433,7 +8833,7 @@ }, { "content": "Without Label", - "objectID": "33cbbb13-90b5-4b84-8f6e-2afa807674ce", + "objectID": "03a194e0-8ba3-4719-8d7c-f293e53791ed", "type": "lvl3", "url": "/docs/components/time-input#without-label", "hierarchy": { @@ -8444,7 +8844,7 @@ }, { "content": "With Description", - "objectID": "2c8a8854-b5a5-4518-aad1-264a003d0741", + "objectID": "7fe934d7-aae9-46bb-92e2-9306d700b193", "type": "lvl3", "url": "/docs/components/time-input#with-description", "hierarchy": { @@ -8453,20 +8853,31 @@ "lvl3": "With Description" } }, + { + "content": "With Error Message", + "objectID": "5fdf7d1d-7900-4a68-a688-c60f2a649896", + "type": "lvl3", + "url": "/docs/components/time-input#with-error-message", + "hierarchy": { + "lvl1": "Time Input", + "lvl2": "With Description", + "lvl3": "With Error Message" + } + }, { "content": "Label Placement", - "objectID": "1a210d76-67ca-4fb1-a749-4a95ca145638", + "objectID": "332446ad-7702-461a-876e-7860a9d46564", "type": "lvl3", "url": "/docs/components/time-input#label-placement", "hierarchy": { "lvl1": "Time Input", - "lvl2": "With Description", + "lvl2": "With Error Message", "lvl3": "Label Placement" } }, { "content": "Start Content", - "objectID": "284537ce-8693-44c5-828c-0d769be7faaf", + "objectID": "bf69fc0c-bf78-4685-a738-649e93fe1d17", "type": "lvl3", "url": "/docs/components/time-input#start-content", "hierarchy": { @@ -8477,7 +8888,7 @@ }, { "content": "End Content", - "objectID": "d1ca1a35-6110-44c6-ab47-7c034cfaf2e2", + "objectID": "76483d92-f349-4dd2-b232-c882a67e5026", "type": "lvl3", "url": "/docs/components/time-input#end-content", "hierarchy": { @@ -8488,7 +8899,7 @@ }, { "content": "Controlled", - "objectID": "950c584f-02f3-4fc0-815a-087448dbc4cc", + "objectID": "9be24039-6519-4876-8527-f571ae408bb0", "type": "lvl3", "url": "/docs/components/time-input#controlled", "hierarchy": { @@ -8499,7 +8910,7 @@ }, { "content": "Time Zones", - "objectID": "85994211-8b05-46e7-b026-5065496065d0", + "objectID": "0f1a59d4-46ef-4eae-abce-0d09f98be916", "type": "lvl3", "url": "/docs/components/time-input#time-zones", "hierarchy": { @@ -8510,7 +8921,7 @@ }, { "content": "Granularity", - "objectID": "863cfdad-072d-4de3-a2d6-c96e8ee16c94", + "objectID": "5d596368-4104-4818-b1e1-e9e8cac23f0f", "type": "lvl3", "url": "/docs/components/time-input#granularity", "hierarchy": { @@ -8521,7 +8932,7 @@ }, { "content": "Min Time Value", - "objectID": "57dea82e-3511-4f8a-9b6d-1a632ecfdd07", + "objectID": "725f5e26-3a14-40d3-ac68-88373c4c96c9", "type": "lvl3", "url": "/docs/components/time-input#min-time-value", "hierarchy": { @@ -8532,7 +8943,7 @@ }, { "content": "Max Time Value", - "objectID": "45cb5ac5-2b10-46ea-ac9e-916531880511", + "objectID": "f973e7c8-b215-439a-aa7a-39d2dda4e51b", "type": "lvl3", "url": "/docs/components/time-input#max-time-value", "hierarchy": { @@ -8543,7 +8954,7 @@ }, { "content": "Placeholder Value", - "objectID": "958a2d63-62c6-4763-b142-c43284b719a3", + "objectID": "e2713b5d-02af-4eda-be64-f89b3a41b8e6", "type": "lvl3", "url": "/docs/components/time-input#placeholder-value", "hierarchy": { @@ -8554,7 +8965,7 @@ }, { "content": "Hide Time Zone", - "objectID": "d3d64481-0fd0-4184-bfce-7884f22efd7a", + "objectID": "d067eb49-dfa5-4dc8-acd8-0a47c88cebca", "type": "lvl3", "url": "/docs/components/time-input#hide-time-zone", "hierarchy": { @@ -8565,7 +8976,7 @@ }, { "content": "Hour Cycle", - "objectID": "7342c456-71db-43c2-852d-c19c32e08bb5", + "objectID": "d2d9b40d-720c-438d-a8b0-63dca016a30f", "type": "lvl3", "url": "/docs/components/time-input#hour-cycle", "hierarchy": { @@ -8576,14 +8987,14 @@ }, { "content": "Slots", - "objectID": "9bd422c4-7d31-461a-9b35-c83b4d3f877b", + "objectID": "a81480ce-003e-4f12-96a4-89664a8bc472", "type": "lvl2", "url": "/docs/components/time-input#slots", "hierarchy": { "lvl1": "Time Input", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "b3b8a3fa-f7e9-451b-bbc8-e98d17340f88", + "objectID": "2c1cffa5-c762-4b86-8e49-8a73ed56085b", "type": "lvl2", "url": "/docs/components/time-input#data-attributes", "hierarchy": { @@ -8594,21 +9005,21 @@ }, { "content": "Accessibility", - "objectID": "7daccbce-b1e9-4356-b839-efcd1b025c6d", + "objectID": "747b7c33-1df0-4d7c-ae53-8a49bf6bcd6b", "type": "lvl2", "url": "/docs/components/time-input#accessibility", "hierarchy": { "lvl1": "Time Input", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "ff12fd5b-839e-4495-b720-84d66f033991", + "objectID": "5476fd4d-bcda-46d0-bc00-ae56842153a1", "type": "lvl2", "url": "/docs/components/time-input#api", "hierarchy": { "lvl1": "Time Input", "lvl2": "API", "lvl3": null } }, { "content": "TimeInput Props", - "objectID": "4bedb2a6-3a39-4ab0-8534-0575eeffed01", + "objectID": "fda85460-7339-40fc-b023-5878954a6c2b", "type": "lvl3", "url": "/docs/components/time-input#timeinput-props", "hierarchy": { @@ -8619,7 +9030,7 @@ }, { "content": "TimeInput Events", - "objectID": "ad1d9a5b-2541-45ca-81c8-49640b2f042c", + "objectID": "d67aa565-a795-4d87-861f-db558df9dbc0", "type": "lvl3", "url": "/docs/components/time-input#timeinput-events", "hierarchy": { @@ -8630,70 +9041,70 @@ }, { "content": "Tooltip", - "objectID": "499d0bf5-039a-4a59-8ae3-00f06abfe79f", + "objectID": "e8601098-77cb-4aad-90fa-d32d38a62491", "type": "lvl1", "url": "/docs/components/tooltip", "hierarchy": { "lvl1": "Tooltip" } }, { "content": "Installation", - "objectID": "b67d408c-6736-440a-ab37-f320299d2eab", + "objectID": "d30a526d-39ac-41cb-9b0b-06555c53c4f3", "type": "lvl2", "url": "/docs/components/tooltip#installation", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "c518c678-b176-4447-a2ff-3c8c516348a4", + "objectID": "24ca640a-db7c-4ae9-9636-f53972f5bfd9", "type": "lvl2", "url": "/docs/components/tooltip#import", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "d780e922-8291-4d2c-9e9e-d89bffbdda6d", + "objectID": "a96c4339-2e1d-4625-a502-a0624ba4a95b", "type": "lvl2", "url": "/docs/components/tooltip#usage", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Usage", "lvl3": null } }, { "content": "With Arrow", - "objectID": "99eb1012-9963-49c0-a2a0-f479689ac481", + "objectID": "5845e1a1-4914-4762-9a17-000885833524", "type": "lvl3", "url": "/docs/components/tooltip#with-arrow", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Usage", "lvl3": "With Arrow" } }, { "content": "Colors", - "objectID": "f9e90f62-a9ea-4ff8-a336-725a850de94a", + "objectID": "41baa370-7695-478a-838e-26421ebd9d99", "type": "lvl3", "url": "/docs/components/tooltip#colors", "hierarchy": { "lvl1": "Tooltip", "lvl2": "With Arrow", "lvl3": "Colors" } }, { "content": "Placements", - "objectID": "13bd8478-048f-4ee9-8ad0-491f32f64aec", + "objectID": "8ed9da20-e43c-439e-945b-f2a332b97fc9", "type": "lvl3", "url": "/docs/components/tooltip#placements", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Colors", "lvl3": "Placements" } }, { "content": "Offset", - "objectID": "c6021482-b1f8-4b6b-84f1-5dcd1eb60b3f", + "objectID": "e49280ba-56f1-4e55-879b-d486adc11bd2", "type": "lvl3", "url": "/docs/components/tooltip#offset", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Placements", "lvl3": "Offset" } }, { "content": "Controlled", - "objectID": "a2102014-2f0a-4d9f-8e92-5c570a6ae1dd", + "objectID": "cc5bd162-6d08-42c0-8ee6-daf36fb1fdf7", "type": "lvl3", "url": "/docs/components/tooltip#controlled", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Offset", "lvl3": "Controlled" } }, { "content": "With Delay", - "objectID": "4144f99b-2dd1-400f-bd94-3ef9090aa3ca", + "objectID": "e7ea256a-aea5-45cb-af18-3e642d55d261", "type": "lvl3", "url": "/docs/components/tooltip#with-delay", "hierarchy": { @@ -8704,7 +9115,7 @@ }, { "content": "Custom Content", - "objectID": "668f13ab-677e-45c4-930f-442e376e9238", + "objectID": "582506ad-024f-45ea-a307-4cb26f0a7c4d", "type": "lvl3", "url": "/docs/components/tooltip#custom-content", "hierarchy": { @@ -8715,7 +9126,7 @@ }, { "content": "Custom Motion", - "objectID": "db834566-cd7c-4545-97e7-75a77f541e1d", + "objectID": "1fa2761c-3ca5-4be2-876b-d2d3cda01331", "type": "lvl3", "url": "/docs/components/tooltip#custom-motion", "hierarchy": { @@ -8726,49 +9137,49 @@ }, { "content": "Slots", - "objectID": "064d5ab7-f30c-4a08-a273-497c6625bded", + "objectID": "128b0e1a-042c-4a6b-8cc6-8e88a5f592cd", "type": "lvl2", "url": "/docs/components/tooltip#slots", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "9a865fda-e4e4-4b4e-89b6-ecb6979ad415", + "objectID": "2bf59807-4c00-414e-a733-c6768d46ee08", "type": "lvl3", "url": "/docs/components/tooltip#custom-styles", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Data Attributes", - "objectID": "e6092030-ea83-4ce1-b775-e746308a7346", + "objectID": "cb07bd92-9ac5-4afb-b09e-f7b77ca5c1c2", "type": "lvl2", "url": "/docs/components/tooltip#data-attributes", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "5da6ac8b-4f90-45fd-8aa4-6a039cefa358", + "objectID": "d941a36e-3a3a-449c-ba63-04665dfb6a64", "type": "lvl2", "url": "/docs/components/tooltip#accessibility", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "4250a9b3-0edb-4ec3-86fb-d611657e0579", + "objectID": "e88ddbaa-3e0c-4978-9748-72eb3a04f02b", "type": "lvl2", "url": "/docs/components/tooltip#api", "hierarchy": { "lvl1": "Tooltip", "lvl2": "API", "lvl3": null } }, { "content": "Tooltip Props", - "objectID": "997f1021-447e-4d0c-8323-a104efe20b68", + "objectID": "c0ac7a91-0e8b-416b-84ee-e38fd907af99", "type": "lvl3", "url": "/docs/components/tooltip#tooltip-props", "hierarchy": { "lvl1": "Tooltip", "lvl2": "API", "lvl3": "Tooltip Props" } }, { "content": "Tooltip Events", - "objectID": "a11f598f-8f83-4f1c-85be-36962223c7bc", + "objectID": "32ba8bfd-99e8-48ea-ad5f-0bb0ab350828", "type": "lvl3", "url": "/docs/components/tooltip#tooltip-events", "hierarchy": { @@ -8779,7 +9190,7 @@ }, { "content": "Tooltip types", - "objectID": "cca125e8-376d-44e9-bd74-507dab0cc4ac", + "objectID": "dac40654-d7b0-4a55-b3ed-650597cc85e3", "type": "lvl3", "url": "/docs/components/tooltip#tooltip-types", "hierarchy": { @@ -8790,14 +9201,14 @@ }, { "content": "Tooltip Placement", - "objectID": "599e2fde-d937-4f50-a54c-4fc038467e48", + "objectID": "6e8bd165-af1b-430f-a1e7-c69b1f88add6", "type": "lvl4", "url": "/docs/components/tooltip#tooltip-placement", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Tooltip types", "lvl3": null } }, { "content": "Motion Props", - "objectID": "e76e8877-2532-491d-91be-c19b53027516", + "objectID": "594f7118-209d-4d25-9a13-e2e8c0f8e29d", "type": "lvl4", "url": "/docs/components/tooltip#motion-props", "hierarchy": { @@ -8808,84 +9219,84 @@ }, { "content": "User", - "objectID": "13f95675-4fae-4d92-ab3a-904972996c11", + "objectID": "e04cc681-beea-43eb-86ed-bf08946d6b41", "type": "lvl1", "url": "/docs/components/user", "hierarchy": { "lvl1": "User" } }, { "content": "Installation", - "objectID": "92344799-34ef-47ed-9102-492395be81f6", + "objectID": "2286e59c-ed32-47c0-b800-41c470c49a64", "type": "lvl2", "url": "/docs/components/user#installation", "hierarchy": { "lvl1": "User", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "6aa47e64-ac07-4ae1-b158-71d640fc5179", + "objectID": "e6c0ce40-15b1-4c28-8f08-885243b01f2b", "type": "lvl2", "url": "/docs/components/user#import", "hierarchy": { "lvl1": "User", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "117b9726-927e-49e7-b67b-15cc9348dd9e", + "objectID": "2cbf6875-8699-4cbf-b616-d81d7494ef72", "type": "lvl2", "url": "/docs/components/user#usage", "hierarchy": { "lvl1": "User", "lvl2": "Usage", "lvl3": null } }, { "content": "Link Description", - "objectID": "b9a43dd4-05db-4f70-a2fb-09e1fcc6c957", + "objectID": "4b732a90-651f-4bfe-b5d1-dcede99e5cc8", "type": "lvl3", "url": "/docs/components/user#link-description", "hierarchy": { "lvl1": "User", "lvl2": "Usage", "lvl3": "Link Description" } }, { "content": "Slots", - "objectID": "7f665614-0353-46e2-a8d8-bc426518a497", + "objectID": "f00a6428-1901-4e2c-ae20-6beadbecce87", "type": "lvl2", "url": "/docs/components/user#slots", "hierarchy": { "lvl1": "User", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "1e710d5b-455c-421e-a8e7-f2f495168239", + "objectID": "3ee5b8ad-2b80-4b6b-a6f6-3528c53e5e39", "type": "lvl2", "url": "/docs/components/user#data-attributes", "hierarchy": { "lvl1": "User", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "API", - "objectID": "b9cc8114-782b-492b-926b-00fe9b60a813", + "objectID": "95c747e5-0d44-45c4-946a-1b231f2ecc45", "type": "lvl2", "url": "/docs/components/user#api", "hierarchy": { "lvl1": "User", "lvl2": "API", "lvl3": null } }, { "content": "User Props", - "objectID": "9f6a5f46-f438-4526-8e59-6cda1b23ddf5", + "objectID": "2907eeb4-13b4-4abe-9007-f6000ef25454", "type": "lvl3", "url": "/docs/components/user#user-props", "hierarchy": { "lvl1": "User", "lvl2": "API", "lvl3": "User Props" } }, { "content": "Colors", - "objectID": "6aee69dd-7924-4329-957d-072a6fc6d8de", + "objectID": "8a3c793f-1047-4793-83d6-c920cecfcba1", "type": "lvl1", "url": "/docs/customization/colors", "hierarchy": { "lvl1": "Colors" } }, { "content": "Default Colors", - "objectID": "1f3b99a4-9c27-4e3d-abf9-6bfb42590fd5", + "objectID": "1baae163-9e77-45bd-9a58-752aea95229b", "type": "lvl2", "url": "/docs/customization/colors#default-colors", "hierarchy": { "lvl1": "Colors", "lvl2": "Default Colors", "lvl3": null } }, { "content": "Common Colors", - "objectID": "cb7b78ee-6ff2-4807-83eb-d8406e68c409", + "objectID": "67f3f971-fd53-46a1-9c7a-2272187bdbb0", "type": "lvl3", "url": "/docs/customization/colors#common-colors", "hierarchy": { @@ -8896,7 +9307,7 @@ }, { "content": "Semantic Colors", - "objectID": "5941b37b-4bc4-49ac-a49c-66a642c5be92", + "objectID": "9381936d-4338-4ca5-a9d0-4ad42f1d692a", "type": "lvl3", "url": "/docs/customization/colors#semantic-colors", "hierarchy": { @@ -8907,7 +9318,7 @@ }, { "content": "Using Semantic Colors", - "objectID": "2e9d8080-91b0-44c3-bc54-45963c893ee8", + "objectID": "bcaa1105-723e-45e0-8611-3792f7fe2d9e", "type": "lvl3", "url": "/docs/customization/colors#using-semantic-colors", "hierarchy": { @@ -8918,7 +9329,7 @@ }, { "content": "Javascript Variables", - "objectID": "d19bee01-91e1-49fe-9458-bbde92d0e483", + "objectID": "a96313dd-12e6-464e-b6c5-1d11a944e74c", "type": "lvl3", "url": "/docs/customization/colors#javascript-variables", "hierarchy": { @@ -8929,7 +9340,7 @@ }, { "content": "CSS Variables", - "objectID": "7cdaad4b-dcc6-48a4-a96f-eb4119208837", + "objectID": "30a6eeb1-b37a-4bdd-a6cf-4ca981433a83", "type": "lvl3", "url": "/docs/customization/colors#css-variables", "hierarchy": { @@ -8940,14 +9351,14 @@ }, { "content": "Create theme", - "objectID": "2b640ba3-b0f3-40a8-bdf4-da50811c303d", + "objectID": "3cc4cfdd-b7d9-4c12-96e2-eee3e4c921f9", "type": "lvl1", "url": "/docs/customization/create-theme", "hierarchy": { "lvl1": "Create theme" } }, { "content": "Add the new theme to the plugin", - "objectID": "12ce54f5-71b4-440d-a7fb-bf7d0cc1f17e", + "objectID": "35e1f9b8-386a-49cd-9dde-d865a857ca74", "type": "lvl3", "url": "/docs/customization/create-theme#add-the-new-theme-to-the-plugin", "hierarchy": { @@ -8958,7 +9369,7 @@ }, { "content": "Apply the new theme", - "objectID": "ea6e813f-17f3-4b98-8dc9-39640fd9607b", + "objectID": "817458b9-139a-46ff-8b90-d5a5374a1338", "type": "lvl3", "url": "/docs/customization/create-theme#apply-the-new-theme", "hierarchy": { @@ -8969,7 +9380,7 @@ }, { "content": "Use the new theme", - "objectID": "959c9332-e116-4bff-83d4-8784a7128aab", + "objectID": "f8969efc-0854-4fab-bf66-cd2e578c57ab", "type": "lvl3", "url": "/docs/customization/create-theme#use-the-new-theme", "hierarchy": { @@ -8980,14 +9391,14 @@ }, { "content": "Custom Variants", - "objectID": "e322422c-fb43-4b5f-a288-1d7e2a96e88a", + "objectID": "7f519bfb-35ee-4a2b-a482-abde0ab91dd8", "type": "lvl1", "url": "/docs/customization/custom-variants", "hierarchy": { "lvl1": "Custom Variants" } }, { "content": "Creating new variants for non-slots components", - "objectID": "363e5591-ec99-45f2-b630-07a86b4ed65d", + "objectID": "b4bb3f25-8238-4cac-ae46-c3d5719479ed", "type": "lvl2", "url": "/docs/customization/custom-variants#creating-new-variants-for-non-slots-components", "hierarchy": { @@ -8998,7 +9409,7 @@ }, { "content": "Extend the original component variants", - "objectID": "cc75a155-9e69-4965-b7d4-61ab8b8b4eb8", + "objectID": "c72858f7-b88f-47cf-a30b-6e844338522d", "type": "lvl3", "url": "/docs/customization/custom-variants#extend-the-original-component-variants", "hierarchy": { @@ -9009,7 +9420,7 @@ }, { "content": "Use your custom component in your application", - "objectID": "92e4eb3b-377d-482b-94a6-80e6cd8a2232", + "objectID": "607e1162-83c3-4c5f-894a-a0fa6d74aed4", "type": "lvl3", "url": "/docs/customization/custom-variants#use-your-custom-component-in-your-application", "hierarchy": { @@ -9020,7 +9431,7 @@ }, { "content": "Creating new variants for slots components", - "objectID": "e776fba9-0025-40b7-acbe-12fabc48b30b", + "objectID": "4e3120ab-c970-4d04-b3be-07e451550ec5", "type": "lvl2", "url": "/docs/customization/custom-variants#creating-new-variants-for-slots-components", "hierarchy": { @@ -9031,7 +9442,7 @@ }, { "content": "Extend the original component variants", - "objectID": "fee47f3c-8a82-4062-9acc-76d3081e26df", + "objectID": "bdadff92-b16b-4548-bfe3-e5f9449136a8", "type": "lvl3", "url": "/docs/customization/custom-variants#extend-the-original-component-variants-1", "hierarchy": { @@ -9042,7 +9453,7 @@ }, { "content": "Use your custom component in your application", - "objectID": "20a9cc4b-5451-40f5-974e-40d997d1d97c", + "objectID": "3fbbee67-f1f3-49b7-9312-ed1a54457a90", "type": "lvl3", "url": "/docs/customization/custom-variants#use-your-custom-component-in-your-application-1", "hierarchy": { @@ -9053,7 +9464,7 @@ }, { "content": "Types", - "objectID": "a2af75e0-0304-4880-b345-1f672df72191", + "objectID": "7f39afbd-cd91-4f0d-9fac-b7a2806ebdf9", "type": "lvl3", "url": "/docs/customization/custom-variants#types", "hierarchy": { @@ -9064,7 +9475,7 @@ }, { "content": "Main Function", - "objectID": "3e8ac366-ce36-4e0c-9354-6b7f44f8263f", + "objectID": "fda33a3e-874b-4dfa-98fd-b9418e2dd9cd", "type": "lvl3", "url": "/docs/customization/custom-variants#main-function", "hierarchy": { @@ -9075,7 +9486,7 @@ }, { "content": "Options", - "objectID": "43aa0bf2-e173-44ee-bf4c-e81d68be347c", + "objectID": "1a518f09-c9d1-43db-9911-698dd54ac690", "type": "lvl3", "url": "/docs/customization/custom-variants#options", "hierarchy": { @@ -9086,7 +9497,7 @@ }, { "content": "Config", - "objectID": "3f6595c4-0b7e-4b63-8222-eca4c2fb488c", + "objectID": "f589dfed-1c35-4ba3-929f-825acda68f11", "type": "lvl3", "url": "/docs/customization/custom-variants#config", "hierarchy": { @@ -9097,14 +9508,14 @@ }, { "content": "Customize theme", - "objectID": "4937fee8-a3e1-4a6f-bd5c-6c37e4f86fa1", + "objectID": "b6832733-f680-4519-8305-1d052cf5aaca", "type": "lvl1", "url": "/docs/customization/customize-theme", "hierarchy": { "lvl1": "Customize theme" } }, { "content": "Customizing Layout", - "objectID": "ce60283a-93bb-423d-8964-cfe5c40ad8a1", + "objectID": "d4464e48-45ed-41b3-b5f1-715dce661883", "type": "lvl2", "url": "/docs/customization/customize-theme#customizing-layout", "hierarchy": { @@ -9115,7 +9526,7 @@ }, { "content": "Global Layout Customization", - "objectID": "930e8116-8180-4c25-9a5d-25642a421a4f", + "objectID": "c9de2e8e-ab49-4c90-a468-317dcc7e0eb5", "type": "lvl3", "url": "/docs/customization/customize-theme#global-layout-customization", "hierarchy": { @@ -9126,7 +9537,7 @@ }, { "content": "Customizing Colors", - "objectID": "937aa1e4-8bfd-48db-a5f1-dd9a4f0941f9", + "objectID": "0577544b-4856-485d-8a44-0409edb8a644", "type": "lvl3", "url": "/docs/customization/customize-theme#customizing-colors", "hierarchy": { @@ -9137,14 +9548,14 @@ }, { "content": "Dark mode", - "objectID": "16e1c3c9-c767-42ab-bbb3-352c561c8edb", + "objectID": "0a594b47-367f-4a07-a127-658d6322a321", "type": "lvl1", "url": "/docs/customization/dark-mode", "hierarchy": { "lvl1": "Dark mode" } }, { "content": "Using next-themes", - "objectID": "96936e9c-8c8e-45b0-9ee2-69457ed7a99d", + "objectID": "7acf09da-e21d-4551-8148-436b16a9b753", "type": "lvl2", "url": "/docs/customization/dark-mode#using-next-themes", "hierarchy": { @@ -9155,7 +9566,7 @@ }, { "content": "Next.js App Directory Setup", - "objectID": "af94bb5c-1a3b-4948-a07f-a74d4a54dc79", + "objectID": "22c6cd25-b845-441d-b4c2-fc576c17f1c2", "type": "lvl3", "url": "/docs/customization/dark-mode#nextjs-app-directory-setup", "hierarchy": { @@ -9166,7 +9577,7 @@ }, { "content": "Install next-themes", - "objectID": "56a1f640-2e49-4ea2-8c6e-9f8ab9843f13", + "objectID": "2292047e-cd93-4fad-84d5-3d42dbd8083a", "type": "lvl3", "url": "/docs/customization/dark-mode#install-next-themes", "hierarchy": { @@ -9177,7 +9588,7 @@ }, { "content": "Add next-themes provider", - "objectID": "3b734a59-5d37-4844-871b-f403b5d4dbce", + "objectID": "859c8b3e-61cf-4f8c-a5da-a3af1c8c3c92", "type": "lvl3", "url": "/docs/customization/dark-mode#add-next-themes-provider", "hierarchy": { @@ -9188,7 +9599,7 @@ }, { "content": "Add the theme switcher", - "objectID": "bf114fb2-75b1-4c84-8763-dfadb7a8bee2", + "objectID": "d005317a-ca2d-4249-bb6b-778399283ccc", "type": "lvl3", "url": "/docs/customization/dark-mode#add-the-theme-switcher", "hierarchy": { @@ -9199,7 +9610,7 @@ }, { "content": "Next.js Pages Directory Setup", - "objectID": "3684a12c-84ed-4ce2-bb58-493da05ef238", + "objectID": "8c230538-90bd-44dd-b3e6-34e59361c09d", "type": "lvl3", "url": "/docs/customization/dark-mode#nextjs-pages-directory-setup", "hierarchy": { @@ -9210,7 +9621,7 @@ }, { "content": "Install next-themes", - "objectID": "7920d68a-0dd3-4e81-86d5-4a0dd21ba66d", + "objectID": "bafecc6c-61f4-42d4-92ce-a7fc174cec09", "type": "lvl3", "url": "/docs/customization/dark-mode#install-next-themes-1", "hierarchy": { @@ -9221,7 +9632,7 @@ }, { "content": "Add next-themes provider", - "objectID": "1fc7fc0a-0370-42a5-a80e-7fef1619edcd", + "objectID": "8be4341d-5149-427e-a1c3-41230eb1cde0", "type": "lvl3", "url": "/docs/customization/dark-mode#add-next-themes-provider-1", "hierarchy": { @@ -9232,7 +9643,7 @@ }, { "content": "Add the theme switcher", - "objectID": "23f17b56-efa3-47fe-a3fc-78d2032dd2a8", + "objectID": "e7befc6c-04f6-48c0-b79c-5f1de8062a23", "type": "lvl3", "url": "/docs/customization/dark-mode#add-the-theme-switcher-1", "hierarchy": { @@ -9242,41 +9653,41 @@ } }, { - "content": "Using use-dark-mode hook", - "objectID": "6b53af1a-bb13-4785-8951-dfc420515b93", + "content": "Using use-theme hook", + "objectID": "acc4cd8d-2dd5-4708-a09f-3c210baa4ca6", "type": "lvl2", - "url": "/docs/customization/dark-mode#using-use-dark-mode-hook", + "url": "/docs/customization/dark-mode#using-use-theme-hook", "hierarchy": { "lvl1": "Dark mode", - "lvl2": "Using use-dark-mode hook", + "lvl2": "Using use-theme hook", "lvl3": null } }, { - "content": "Install use-dark-mode", - "objectID": "ebd22023-3cbd-47de-8d65-17f558e78977", + "content": "Install @nextui-org/use-theme", + "objectID": "86930da7-5dc1-46b4-8420-5709e5b0e2c0", "type": "lvl3", - "url": "/docs/customization/dark-mode#install-use-dark-mode", + "url": "/docs/customization/dark-mode#install-nextui-orguse-theme", "hierarchy": { "lvl1": "Dark mode", - "lvl2": "Using use-dark-mode hook", - "lvl3": "Install use-dark-mode" + "lvl2": "Using use-theme hook", + "lvl3": "Install @nextui-org/use-theme" } }, { "content": "Add the current theme to the main element", - "objectID": "44d5c3a1-555c-47c2-837e-6fafacff79ee", + "objectID": "7f72e6b1-99bb-46cd-aa6a-f30b629850ad", "type": "lvl3", "url": "/docs/customization/dark-mode#add-the-current-theme-to-the-main-element", "hierarchy": { "lvl1": "Dark mode", - "lvl2": "Install use-dark-mode", + "lvl2": "Install @nextui-org/use-theme", "lvl3": "Add the current theme to the main element" } }, { "content": "Add the theme switcher", - "objectID": "9da03204-574b-4062-b9ff-8d33ea8f3e59", + "objectID": "61df2187-4cb3-4ff9-a4b2-7ed93f3fbeb0", "type": "lvl3", "url": "/docs/customization/dark-mode#add-the-theme-switcher-2", "hierarchy": { @@ -9287,21 +9698,21 @@ }, { "content": "Layout", - "objectID": "f7e5d93a-f7d8-4e36-83d5-53a65936eef2", + "objectID": "e1bdb7f0-4a68-4820-b448-37e6cab2ac7a", "type": "lvl1", "url": "/docs/customization/layout", "hierarchy": { "lvl1": "Layout" } }, { "content": "Default Layout", - "objectID": "b02ca2e2-0a66-464c-8db2-37d9cbe54877", + "objectID": "fc6cc7bc-de7d-48ed-87b4-8bbd2e3623e5", "type": "lvl2", "url": "/docs/customization/layout#default-layout", "hierarchy": { "lvl1": "Layout", "lvl2": "Default Layout", "lvl3": null } }, { "content": "CSS Variables", - "objectID": "b0407691-0ae7-49c1-800a-ff471849b2ab", + "objectID": "20c68bce-813e-4783-9f43-6f5c41b84f79", "type": "lvl3", "url": "/docs/customization/layout#css-variables", "hierarchy": { @@ -9312,35 +9723,35 @@ }, { "content": "API Reference", - "objectID": "cd97d635-2208-48a4-8e12-038270ed2974", + "objectID": "7aca8c2d-1804-491f-809f-75f723caa5f8", "type": "lvl4", "url": "/docs/customization/layout#api-reference", "hierarchy": { "lvl1": "Layout", "lvl2": "CSS Variables", "lvl3": null } }, { "content": "BaseThemeUnit", - "objectID": "96aceb7f-9485-4de5-b4ca-7cfb335e54be", + "objectID": "63679f99-7185-4d87-a499-605552820517", "type": "lvl4", "url": "/docs/customization/layout#basethemeunit", "hierarchy": { "lvl1": "Layout", "lvl2": "API Reference", "lvl3": null } }, { "content": "FontThemeUnit", - "objectID": "dd5fe394-d6f0-4434-9b4f-9327e502328a", + "objectID": "61948a9c-1046-4318-a479-6f9c39efcae8", "type": "lvl4", "url": "/docs/customization/layout#fontthemeunit", "hierarchy": { "lvl1": "Layout", "lvl2": "BaseThemeUnit", "lvl3": null } }, { "content": "Override styles", - "objectID": "240a18dc-cec9-4cd8-8a87-73498023587d", + "objectID": "8c93cdd5-140e-4239-8e85-04465a8ca94b", "type": "lvl1", "url": "/docs/customization/override-styles", "hierarchy": { "lvl1": "Override styles" } }, { "content": "What is a Slot?", - "objectID": "a9cd709e-0417-4eea-b835-6ae5181f42ec", + "objectID": "701f1f77-8a15-4bc3-9450-c7c0cdd01818", "type": "lvl3", "url": "/docs/customization/override-styles#what-is-a-slot", "hierarchy": { @@ -9351,7 +9762,7 @@ }, { "content": "Overriding a component", - "objectID": "5604d628-fc4f-4942-8b28-da7cb0e0ca00", + "objectID": "602b9f6a-b185-4f4c-bbb9-077526ed4c5b", "type": "lvl3", "url": "/docs/customization/override-styles#overriding-a-component", "hierarchy": { @@ -9362,7 +9773,7 @@ }, { "content": "Components with slots", - "objectID": "a029a7bb-0c52-4053-b0d3-327df61005bd", + "objectID": "b32ee00b-9d84-4e46-926a-1557b8b5c525", "type": "lvl3", "url": "/docs/customization/override-styles#components-with-slots", "hierarchy": { @@ -9373,7 +9784,7 @@ }, { "content": "CSS Modules", - "objectID": "0eca5ae4-541d-4772-b4e1-ae6187ffcd8b", + "objectID": "be716ddb-fed5-48a4-9e31-e55812c4a430", "type": "lvl3", "url": "/docs/customization/override-styles#css-modules", "hierarchy": { @@ -9384,7 +9795,7 @@ }, { "content": "CSS-in-JS", - "objectID": "6fe5b8c2-e890-49b6-8894-fe16be8af73f", + "objectID": "2593af52-add4-4416-956f-41e45a9601c0", "type": "lvl3", "url": "/docs/customization/override-styles#css-in-js", "hierarchy": { @@ -9395,35 +9806,35 @@ }, { "content": "Theme", - "objectID": "b8a872f3-e30d-410e-a858-230d883228d9", + "objectID": "2b5c99f8-bec9-48b8-91a3-8318cf820b74", "type": "lvl1", "url": "/docs/customization/theme", "hierarchy": { "lvl1": "Theme" } }, { "content": "What is a Theme?", - "objectID": "5946744e-74af-4303-8723-cc57fff64d89", + "objectID": "f6c48629-4a22-4ef2-b60d-97cec75a17b2", "type": "lvl2", "url": "/docs/customization/theme#what-is-a-theme", "hierarchy": { "lvl1": "Theme", "lvl2": "What is a Theme?", "lvl3": null } }, { "content": "Setup", - "objectID": "4cff343b-39da-4781-9ec5-47a2d123c36b", + "objectID": "2afd5f71-ec89-43da-938f-1b9f3d91c241", "type": "lvl2", "url": "/docs/customization/theme#setup", "hierarchy": { "lvl1": "Theme", "lvl2": "Setup", "lvl3": null } }, { "content": "Usage", - "objectID": "be9bad0e-8350-4af3-b296-a9c7a8702f24", + "objectID": "66d02bc2-44bd-427b-9cb7-737b07feee34", "type": "lvl3", "url": "/docs/customization/theme#usage", "hierarchy": { "lvl1": "Theme", "lvl2": "Setup", "lvl3": "Usage" } }, { "content": "Default Plugin Options", - "objectID": "6c65e59d-a307-49b1-aa0c-318534ec2063", + "objectID": "ce70c0df-0fd7-4648-a5c7-9ec68598b882", "type": "lvl3", "url": "/docs/customization/theme#default-plugin-options", "hierarchy": { @@ -9434,7 +9845,7 @@ }, { "content": "Themes Options", - "objectID": "62099c7b-c164-4f98-8a8f-cf95b6ca2684", + "objectID": "d6688334-2f00-438e-bdb7-441d3f819621", "type": "lvl3", "url": "/docs/customization/theme#themes-options", "hierarchy": { @@ -9445,7 +9856,7 @@ }, { "content": "Nested themes", - "objectID": "0ad4bc3c-19b1-4fa0-a040-8e680e137785", + "objectID": "e799f7e0-f89d-4a0b-91d1-465dd4b2bb2d", "type": "lvl3", "url": "/docs/customization/theme#nested-themes", "hierarchy": { @@ -9456,7 +9867,7 @@ }, { "content": "Theme based variants", - "objectID": "fed97433-a16b-4c7a-8715-7a15adab9734", + "objectID": "593ff52e-3296-455d-9963-4d9108922598", "type": "lvl3", "url": "/docs/customization/theme#theme-based-variants", "hierarchy": { @@ -9467,7 +9878,7 @@ }, { "content": "API Reference", - "objectID": "ebeaeee6-4def-45b6-907d-1020897cf9cf", + "objectID": "38db41fa-2545-4f29-a233-d493b3988657", "type": "lvl3", "url": "/docs/customization/theme#api-reference", "hierarchy": { @@ -9478,49 +9889,49 @@ }, { "content": "Types", - "objectID": "2ce526c3-ebb3-4379-8278-ef1a0adcd0ec", + "objectID": "88db6144-629c-4d81-b076-d93d7395c392", "type": "lvl3", "url": "/docs/customization/theme#types", "hierarchy": { "lvl1": "Theme", "lvl2": "API Reference", "lvl3": "Types" } }, { "content": "ConfigThemes", - "objectID": "53770714-fa82-4f4b-9b09-440f05fdc5da", + "objectID": "8fd9e230-69c2-4c03-9c15-b0047d284d20", "type": "lvl4", "url": "/docs/customization/theme#configthemes", "hierarchy": { "lvl1": "Theme", "lvl2": "Types", "lvl3": null } }, { "content": "LayoutTheme", - "objectID": "a17f4238-39f5-40b2-a537-54c7d147eaee", + "objectID": "102ac800-7fb5-420f-b938-8cd6b40c96d5", "type": "lvl4", "url": "/docs/customization/theme#layouttheme", "hierarchy": { "lvl1": "Theme", "lvl2": "ConfigThemes", "lvl3": null } }, { "content": "ThemeColors", - "objectID": "e07a7eff-e295-4f2b-829f-d19d12344082", + "objectID": "226e338c-fb58-41f0-93f6-d5505227ed0d", "type": "lvl4", "url": "/docs/customization/theme#themecolors", "hierarchy": { "lvl1": "Theme", "lvl2": "LayoutTheme", "lvl3": null } }, { "content": "Astro", - "objectID": "dbcaa228-7276-4d9a-a76e-f1e1ba11f32d", + "objectID": "af6b286c-96e0-4804-8f54-7dde2d14e054", "type": "lvl1", "url": "/docs/frameworks/astro", "hierarchy": { "lvl1": "Astro" } }, { "content": "Install React", - "objectID": "54513975-4203-4050-acd0-6119ca83fe7a", + "objectID": "d94723de-be61-4e91-b71f-6e9e424f8e5a", "type": "lvl3", "url": "/docs/frameworks/astro#install-react", "hierarchy": { "lvl1": "Astro", "lvl2": "Astro", "lvl3": "Install React" } }, { "content": "Install NextUI", - "objectID": "7b5c3c91-945f-45cd-bd8c-99493101da76", + "objectID": "b201a861-612e-4eb2-abe7-46ce9719e501", "type": "lvl3", "url": "/docs/frameworks/astro#install-nextui", "hierarchy": { @@ -9530,48 +9941,48 @@ } }, { - "content": "Tailwind CSS Setup", - "objectID": "1038d3c1-80e9-4cd0-8eb2-3cfd91e51ea9", + "content": "Hoisted Dependencies Setup", + "objectID": "a8fac643-38fe-4a57-aa5d-6dc593bfdc6f", "type": "lvl3", - "url": "/docs/frameworks/astro#tailwind-css-setup", + "url": "/docs/frameworks/astro#hoisted-dependencies-setup", "hierarchy": { "lvl1": "Astro", "lvl2": "Install NextUI", - "lvl3": "Tailwind CSS Setup" + "lvl3": "Hoisted Dependencies Setup" } }, { - "content": "Usage", - "objectID": "83f1be6d-2072-49ee-b90e-8e146cdd170a", + "content": "Tailwind CSS Setup", + "objectID": "78e8c83a-dc44-4157-bc0e-74f4c42c5037", "type": "lvl3", - "url": "/docs/frameworks/astro#usage", + "url": "/docs/frameworks/astro#tailwind-css-setup", "hierarchy": { "lvl1": "Astro", - "lvl2": "Tailwind CSS Setup", - "lvl3": "Usage" + "lvl2": "Hoisted Dependencies Setup", + "lvl3": "Tailwind CSS Setup" } }, { - "content": "Setup pnpm (optional)", - "objectID": "c169f150-8d79-4b2b-96ec-80ec050ab1c4", + "content": "Usage", + "objectID": "60b9301d-ce0a-44b8-a51d-04877813bbbc", "type": "lvl3", - "url": "/docs/frameworks/astro#setup-pnpm-optional", + "url": "/docs/frameworks/astro#usage", "hierarchy": { "lvl1": "Astro", - "lvl2": "Usage", - "lvl3": "Setup pnpm (optional)" + "lvl2": "Tailwind CSS Setup", + "lvl3": "Usage" } }, { "content": "Next.js", - "objectID": "371e7d07-9c56-40ad-8fd5-fd7ba215a1da", + "objectID": "64ccddba-9490-4edb-80cd-2ffbd1296027", "type": "lvl1", "url": "/docs/frameworks/nextjs", "hierarchy": { "lvl1": "Next.js" } }, { "content": "App Directory Setup", - "objectID": "d16d8e86-3cf5-42ef-8de2-e791d98797f1", + "objectID": "bfd01c78-d912-44e8-b8f0-680bd133c06f", "type": "lvl2", "url": "/docs/frameworks/nextjs#app-directory-setup", "hierarchy": { @@ -9580,31 +9991,53 @@ "lvl3": null } }, + { + "content": "NextUI CLI (recommended)", + "objectID": "4d0bbb8d-9316-44c2-acd7-0f70c4aa0fad", + "type": "lvl3", + "url": "/docs/frameworks/nextjs#nextui-cli-recommended", + "hierarchy": { + "lvl1": "Next.js", + "lvl2": "App Directory Setup", + "lvl3": "NextUI CLI (recommended)" + } + }, { "content": "create-next-app", - "objectID": "e84c05fb-4e7d-4697-891c-8b3371ea88ff", + "objectID": "e1941e22-0f8c-4b22-9e36-4bfdbf90bbed", "type": "lvl3", "url": "/docs/frameworks/nextjs#create-next-app", "hierarchy": { "lvl1": "Next.js", - "lvl2": "App Directory Setup", + "lvl2": "NextUI CLI (recommended)", "lvl3": "create-next-app" } }, + { + "content": "Automatic Installation", + "objectID": "c253b4fa-729d-4566-a277-b7b2ffca2d36", + "type": "lvl3", + "url": "/docs/frameworks/nextjs#automatic-installation", + "hierarchy": { + "lvl1": "Next.js", + "lvl2": "create-next-app", + "lvl3": "Automatic Installation" + } + }, { "content": "Manual Installation", - "objectID": "4a420b79-c568-47d0-a972-80bc0cc78854", + "objectID": "11e085aa-f9a5-4f06-8bf3-47a0a70006b4", "type": "lvl3", "url": "/docs/frameworks/nextjs#manual-installation", "hierarchy": { "lvl1": "Next.js", - "lvl2": "create-next-app", + "lvl2": "Automatic Installation", "lvl3": "Manual Installation" } }, { "content": "Add dependencies", - "objectID": "a7d0e05c-eb49-4200-b653-aa3018b4838d", + "objectID": "5294a07b-42ad-46c4-9117-e57d9a936c48", "type": "lvl3", "url": "/docs/frameworks/nextjs#add-dependencies", "hierarchy": { @@ -9613,20 +10046,31 @@ "lvl3": "Add dependencies" } }, + { + "content": "Hoisted Dependencies Setup", + "objectID": "bf65cd6f-e632-426b-b2ee-1669abf1de31", + "type": "lvl3", + "url": "/docs/frameworks/nextjs#hoisted-dependencies-setup", + "hierarchy": { + "lvl1": "Next.js", + "lvl2": "Add dependencies", + "lvl3": "Hoisted Dependencies Setup" + } + }, { "content": "Tailwind CSS Setup", - "objectID": "a40b5586-3782-488e-aff1-04dcf4dc6190", + "objectID": "99d1b101-f431-4c82-a6fa-d2b63f1987e5", "type": "lvl3", "url": "/docs/frameworks/nextjs#tailwind-css-setup", "hierarchy": { "lvl1": "Next.js", - "lvl2": "Add dependencies", + "lvl2": "Hoisted Dependencies Setup", "lvl3": "Tailwind CSS Setup" } }, { "content": "Setup Provider", - "objectID": "b9f2cf98-0aa9-45e1-8a62-4fd5e9fe9735", + "objectID": "e9febe10-c4a0-4ebb-bbd4-9599c2efca52", "type": "lvl3", "url": "/docs/frameworks/nextjs#setup-provider", "hierarchy": { @@ -9637,7 +10081,7 @@ }, { "content": "Add Provider to Root", - "objectID": "39264186-b774-477a-b1be-e303b07b2096", + "objectID": "70b4e227-69dd-4d4b-a479-97b7d75b59eb", "type": "lvl3", "url": "/docs/frameworks/nextjs#add-provider-to-root", "hierarchy": { @@ -9648,7 +10092,7 @@ }, { "content": "Use NextUI Components", - "objectID": "ca1ff622-1dd4-4516-8e83-ddfbc53bf9b9", + "objectID": "7c3e42f8-b8c0-4e49-8e63-b95c97ce9228", "type": "lvl3", "url": "/docs/frameworks/nextjs#use-nextui-components", "hierarchy": { @@ -9658,52 +10102,63 @@ } }, { - "content": "Setup pnpm (optional)", - "objectID": "08353322-61bf-413f-9044-1b5e7c365513", - "type": "lvl3", - "url": "/docs/frameworks/nextjs#setup-pnpm-optional", + "content": "Pages Directory Setup", + "objectID": "81d4ceed-6f7e-4d32-affe-c90dedafe328", + "type": "lvl2", + "url": "/docs/frameworks/nextjs#pages-directory-setup", "hierarchy": { "lvl1": "Next.js", - "lvl2": "Use NextUI Components", - "lvl3": "Setup pnpm (optional)" + "lvl2": "Pages Directory Setup", + "lvl3": null } }, { - "content": "Pages Directory Setup", - "objectID": "c8fa1984-93ea-49ce-bd0b-d8f39bec3604", - "type": "lvl2", - "url": "/docs/frameworks/nextjs#pages-directory-setup", + "content": "NextUI CLI (recommended)", + "objectID": "0115a6f4-c6e0-47fa-b182-bfd648234cdd", + "type": "lvl3", + "url": "/docs/frameworks/nextjs#nextui-cli-recommended-1", "hierarchy": { "lvl1": "Next.js", "lvl2": "Pages Directory Setup", - "lvl3": null + "lvl3": "NextUI CLI (recommended)" } }, { "content": "create-next-app", - "objectID": "86c706f7-6b43-4fea-95c9-ae62ce195083", + "objectID": "e481e272-5094-4043-bab1-2bef151812d9", "type": "lvl3", "url": "/docs/frameworks/nextjs#create-next-app-1", "hierarchy": { "lvl1": "Next.js", - "lvl2": "Pages Directory Setup", + "lvl2": "NextUI CLI (recommended)", "lvl3": "create-next-app" } }, + { + "content": "Automatic Installation", + "objectID": "cb8e654b-49c4-4c83-bb1c-e422eee86ccb", + "type": "lvl3", + "url": "/docs/frameworks/nextjs#automatic-installation-1", + "hierarchy": { + "lvl1": "Next.js", + "lvl2": "create-next-app", + "lvl3": "Automatic Installation" + } + }, { "content": "Manual Installation", - "objectID": "97529e46-9904-4559-ac5a-530935e96ec6", + "objectID": "9b30d8ca-f758-4a6c-afd9-edfd67836e2a", "type": "lvl3", "url": "/docs/frameworks/nextjs#manual-installation-1", "hierarchy": { "lvl1": "Next.js", - "lvl2": "create-next-app", + "lvl2": "Automatic Installation", "lvl3": "Manual Installation" } }, { "content": "Add dependencies", - "objectID": "df276926-d10f-460e-ab9f-6e0fcdb63ff7", + "objectID": "dd9baaa3-130b-4857-8b6e-6a101a9f4e3c", "type": "lvl3", "url": "/docs/frameworks/nextjs#add-dependencies-1", "hierarchy": { @@ -9712,20 +10167,31 @@ "lvl3": "Add dependencies" } }, + { + "content": "Hoisted Dependencies Setup", + "objectID": "f380a6ce-ccf6-4dbb-9843-9622115dfe99", + "type": "lvl3", + "url": "/docs/frameworks/nextjs#hoisted-dependencies-setup-1", + "hierarchy": { + "lvl1": "Next.js", + "lvl2": "Add dependencies", + "lvl3": "Hoisted Dependencies Setup" + } + }, { "content": "Tailwind CSS Setup", - "objectID": "e32bc1df-bdc9-4515-aff4-d4351df17566", + "objectID": "f2399a3d-353b-4efa-827c-cab4fd372f9c", "type": "lvl3", "url": "/docs/frameworks/nextjs#tailwind-css-setup-1", "hierarchy": { "lvl1": "Next.js", - "lvl2": "Add dependencies", + "lvl2": "Hoisted Dependencies Setup", "lvl3": "Tailwind CSS Setup" } }, { "content": "Setup Provider", - "objectID": "3433e852-fd91-4138-a9a2-eb5521a09629", + "objectID": "c89afa40-4427-475c-b1f2-883a8e744cbc", "type": "lvl3", "url": "/docs/frameworks/nextjs#setup-provider-1", "hierarchy": { @@ -9736,7 +10202,7 @@ }, { "content": "Use NextUI Components", - "objectID": "2ad9d04c-bbd3-45fc-8e13-6463b9af0ef2", + "objectID": "6b35121d-e816-48d4-9906-a50bda0ccf88", "type": "lvl3", "url": "/docs/frameworks/nextjs#use-nextui-components-1", "hierarchy": { @@ -9745,128 +10211,117 @@ "lvl3": "Use NextUI Components" } }, - { - "content": "Setup pnpm (optional)", - "objectID": "83a70487-5be5-4bfc-bfca-0346d4a122e4", - "type": "lvl3", - "url": "/docs/frameworks/nextjs#setup-pnpm-optional-1", - "hierarchy": { - "lvl1": "Next.js", - "lvl2": "Use NextUI Components", - "lvl3": "Setup pnpm (optional)" - } - }, { "content": "Remix", - "objectID": "d7de75fd-7f7d-4ab4-88a4-1d8e712e3361", + "objectID": "5aaafc0a-118e-4274-aafd-ab99d304b368", "type": "lvl1", "url": "/docs/frameworks/remix", "hierarchy": { "lvl1": "Remix" } }, { "content": "Installation", - "objectID": "0a4e7007-2995-4f2b-8f9a-cfa9f21de847", + "objectID": "5d820d18-c33a-4b90-9b4b-c5645f4b5c71", "type": "lvl3", "url": "/docs/frameworks/remix#installation", "hierarchy": { "lvl1": "Remix", "lvl2": "Remix", "lvl3": "Installation" } }, { - "content": "Tailwind CSS Setup", - "objectID": "5e273b40-0e69-46f7-bf32-70335c795c18", + "content": "Hoisted Dependencies Setup", + "objectID": "b819b409-7093-4ae1-95e6-ff058adaa250", "type": "lvl3", - "url": "/docs/frameworks/remix#tailwind-css-setup", + "url": "/docs/frameworks/remix#hoisted-dependencies-setup", "hierarchy": { "lvl1": "Remix", "lvl2": "Installation", - "lvl3": "Tailwind CSS Setup" + "lvl3": "Hoisted Dependencies Setup" } }, { - "content": "Provider Setup", - "objectID": "7e88d907-0424-439b-b163-151d6d2970a3", + "content": "Tailwind CSS Setup", + "objectID": "cabb4b12-0825-4419-9d1e-909e64c430ba", "type": "lvl3", - "url": "/docs/frameworks/remix#provider-setup", + "url": "/docs/frameworks/remix#tailwind-css-setup", "hierarchy": { "lvl1": "Remix", - "lvl2": "Tailwind CSS Setup", - "lvl3": "Provider Setup" + "lvl2": "Hoisted Dependencies Setup", + "lvl3": "Tailwind CSS Setup" } }, { - "content": "Setup pnpm (optional)", - "objectID": "f218e3b6-085a-4391-b9b0-32450cd1c3f1", + "content": "Provider Setup", + "objectID": "b5eddeb4-573f-413f-9f79-b1e53109d46b", "type": "lvl3", - "url": "/docs/frameworks/remix#setup-pnpm-optional", + "url": "/docs/frameworks/remix#provider-setup", "hierarchy": { "lvl1": "Remix", - "lvl2": "Provider Setup", - "lvl3": "Setup pnpm (optional)" + "lvl2": "Tailwind CSS Setup", + "lvl3": "Provider Setup" } }, { "content": "Vite", - "objectID": "229e501d-1c0b-4d62-be17-f30871492dd6", + "objectID": "35b0b277-f8e7-4360-8895-d674b77e4e4c", "type": "lvl1", "url": "/docs/frameworks/vite", "hierarchy": { "lvl1": "Vite" } }, { "content": "Installation", - "objectID": "b970b86e-7443-4f42-834a-b8a5926249d3", + "objectID": "51ed8169-0577-41d7-b655-8932b9a63f68", "type": "lvl3", "url": "/docs/frameworks/vite#installation", "hierarchy": { "lvl1": "Vite", "lvl2": "Vite", "lvl3": "Installation" } }, { - "content": "Tailwind CSS Setup", - "objectID": "3a18e35c-2c86-45f8-811c-d46a3dcdaf90", + "content": "Hoisted Dependencies Setup", + "objectID": "1a616db0-9716-47e9-85e4-f4c05b012125", "type": "lvl3", - "url": "/docs/frameworks/vite#tailwind-css-setup", + "url": "/docs/frameworks/vite#hoisted-dependencies-setup", "hierarchy": { "lvl1": "Vite", "lvl2": "Installation", - "lvl3": "Tailwind CSS Setup" + "lvl3": "Hoisted Dependencies Setup" } }, { - "content": "Provider Setup", - "objectID": "109d591d-0a36-4470-965a-90fb7842523a", + "content": "Tailwind CSS Setup", + "objectID": "6e731fb1-1f9b-4523-863b-59504668e4e4", "type": "lvl3", - "url": "/docs/frameworks/vite#provider-setup", + "url": "/docs/frameworks/vite#tailwind-css-setup", "hierarchy": { "lvl1": "Vite", - "lvl2": "Tailwind CSS Setup", - "lvl3": "Provider Setup" + "lvl2": "Hoisted Dependencies Setup", + "lvl3": "Tailwind CSS Setup" } }, { - "content": "Setup pnpm (optional)", - "objectID": "4549e5b8-4f8d-4f5a-9f60-c31b089c90e8", + "content": "Provider Setup", + "objectID": "09b47051-dbcc-40a2-896d-33eb4ff3daad", "type": "lvl3", - "url": "/docs/frameworks/vite#setup-pnpm-optional", + "url": "/docs/frameworks/vite#provider-setup", "hierarchy": { "lvl1": "Vite", - "lvl2": "Provider Setup", - "lvl3": "Setup pnpm (optional)" + "lvl2": "Tailwind CSS Setup", + "lvl3": "Provider Setup" } }, { "content": "CLI", - "objectID": "ffa5982f-dc27-44b7-89dc-75b09f875227", + "objectID": "ce118d44-19db-45ef-a06a-e67e65aa59ec", "type": "lvl1", "url": "/docs/guide/cli", "hierarchy": { "lvl1": "CLI" } }, { "content": "Installation", - "objectID": "0416167b-56e1-4b28-825c-8a4dcaf0e0dc", + "objectID": "45e09a11-5648-4ced-96ab-a32892de22b6", "type": "lvl2", "url": "/docs/guide/cli#installation", "hierarchy": { "lvl1": "CLI", "lvl2": "Installation", "lvl3": null } }, { "content": "Global Installation", - "objectID": "8102d40d-48d2-4ee4-9787-4041b43952c3", + "objectID": "8a76cfd3-0cdb-4731-89d7-6fcada4e8dc7", "type": "lvl3", "url": "/docs/guide/cli#global-installation", "hierarchy": { @@ -9877,7 +10332,7 @@ }, { "content": "Without Installation", - "objectID": "b9d3adb4-ca78-4dda-b20b-75b9e8bf6c9e", + "objectID": "40ba2ff3-e02a-494c-b745-f89405f632eb", "type": "lvl3", "url": "/docs/guide/cli#without-installation", "hierarchy": { @@ -9888,77 +10343,77 @@ }, { "content": "Quick Start", - "objectID": "124dc15e-4857-44df-9798-01c4698e3072", + "objectID": "17d16543-c130-4bfb-8435-9634646512f8", "type": "lvl2", "url": "/docs/guide/cli#quick-start", "hierarchy": { "lvl1": "CLI", "lvl2": "Quick Start", "lvl3": null } }, { "content": "init", - "objectID": "dd521705-4bbc-4796-8c20-9a73ee282445", + "objectID": "fc88ff39-3f14-4e26-af3e-5215ab29fa7e", "type": "lvl2", "url": "/docs/guide/cli#init", "hierarchy": { "lvl1": "CLI", "lvl2": "init", "lvl3": null } }, { "content": "add", - "objectID": "e744d82b-854a-4403-ab56-5af9514a5bc0", + "objectID": "1499509c-0b4c-4878-8eed-b40bbbe6e3be", "type": "lvl2", "url": "/docs/guide/cli#add", "hierarchy": { "lvl1": "CLI", "lvl2": "add", "lvl3": null } }, { "content": "upgrade", - "objectID": "c3384948-7ac0-4e43-8f65-207b9b88b624", + "objectID": "d4135f88-12c4-4722-b5c8-f5f71cf865f8", "type": "lvl2", "url": "/docs/guide/cli#upgrade", "hierarchy": { "lvl1": "CLI", "lvl2": "upgrade", "lvl3": null } }, { "content": "remove", - "objectID": "c1f931a4-565c-49e1-9941-f79b51e9fc3d", + "objectID": "e53546a5-7f86-4e8d-bc20-f2445e7f9c36", "type": "lvl2", "url": "/docs/guide/cli#remove", "hierarchy": { "lvl1": "CLI", "lvl2": "remove", "lvl3": null } }, { "content": "list", - "objectID": "39791e14-37ad-4d68-910c-4b60e56d6b66", + "objectID": "09706322-f5cd-4aa6-824a-7bcb9a0307a2", "type": "lvl2", "url": "/docs/guide/cli#list", "hierarchy": { "lvl1": "CLI", "lvl2": "list", "lvl3": null } }, { "content": "doctor", - "objectID": "de6ef608-71d1-46a4-969a-0b67688db646", + "objectID": "4eacbd55-0966-4910-b811-3c9247b04fd7", "type": "lvl2", "url": "/docs/guide/cli#doctor", "hierarchy": { "lvl1": "CLI", "lvl2": "doctor", "lvl3": null } }, { "content": "env", - "objectID": "d01d8cec-b3c2-49fc-a43b-5d31c7f3960e", + "objectID": "37306dcb-fb48-4c5b-b386-7434aee6f0ae", "type": "lvl2", "url": "/docs/guide/cli#env", "hierarchy": { "lvl1": "CLI", "lvl2": "env", "lvl3": null } }, { "content": "API Reference", - "objectID": "af546d3e-1741-4601-ae9f-8b4b0ece08e2", + "objectID": "b7d07c99-c52f-4558-8810-215c24b93783", "type": "lvl2", "url": "/docs/guide/cli#api-reference", "hierarchy": { "lvl1": "CLI", "lvl2": "API Reference", "lvl3": null } }, { "content": "Design Principles", - "objectID": "6bcba7eb-9905-4b34-8c7c-d8031c93802d", + "objectID": "e11c22b9-31a2-4e1a-8903-0df95c7cf3fd", "type": "lvl1", "url": "/docs/guide/design-principles", "hierarchy": { "lvl1": "Design Principles" } }, { "content": "Simplicity and Usability", - "objectID": "1d407aee-bb43-4611-b0b1-b0f9166c5a92", + "objectID": "eef8dfa8-ca91-435f-bc2a-dc812cdfd0a3", "type": "lvl3", "url": "/docs/guide/design-principles#simplicity-and-usability", "hierarchy": { @@ -9969,7 +10424,7 @@ }, { "content": "Modular Design", - "objectID": "ebc253fc-865b-4afb-8d91-9d1a024cc32f", + "objectID": "ee99cc09-aac5-4249-92d5-3b948a71e8d8", "type": "lvl3", "url": "/docs/guide/design-principles#modular-design", "hierarchy": { @@ -9980,7 +10435,7 @@ }, { "content": "Customization and Flexibility", - "objectID": "4f38b2dc-71ec-46e6-883b-3078ebfe3050", + "objectID": "307e3108-8931-4dcd-b22e-2cfb45b0dd53", "type": "lvl3", "url": "/docs/guide/design-principles#customization-and-flexibility", "hierarchy": { @@ -9991,7 +10446,7 @@ }, { "content": "Consistent API", - "objectID": "d410f115-b379-48b7-a275-df778ed53def", + "objectID": "6da9e056-1aef-42fb-8a31-f4a2d37bf7e5", "type": "lvl3", "url": "/docs/guide/design-principles#consistent-api", "hierarchy": { @@ -10002,7 +10457,7 @@ }, { "content": "Accessibility", - "objectID": "7b604ac7-d313-4393-af9f-7afca4689269", + "objectID": "1b7d98f2-e3cc-4f2b-aa85-e0585e63b0c6", "type": "lvl3", "url": "/docs/guide/design-principles#accessibility", "hierarchy": { @@ -10013,7 +10468,7 @@ }, { "content": "Component Slots", - "objectID": "482c145d-b235-4816-aab7-8fb8186a4ab9", + "objectID": "501a706f-6f36-4a90-89e7-891f24c44d32", "type": "lvl3", "url": "/docs/guide/design-principles#component-slots", "hierarchy": { @@ -10024,146 +10479,190 @@ }, { "content": "Installation", - "objectID": "86d0638f-b6e2-4b4a-9f85-530e556c177d", + "objectID": "a8339227-e524-4ddb-9839-868342ea1a55", "type": "lvl1", "url": "/docs/guide/installation", "hierarchy": { "lvl1": "Installation" } }, { - "content": "Global Installation", - "objectID": "1aad2d73-b120-4898-b9ac-cf99f8bc9245", + "content": "Automatic Installation", + "objectID": "0309c051-e2e7-4b87-a046-bdfdca3b6844", "type": "lvl2", - "url": "/docs/guide/installation#global-installation", + "url": "/docs/guide/installation#automatic-installation", "hierarchy": { "lvl1": "Installation", - "lvl2": "Global Installation", + "lvl2": "Automatic Installation", "lvl3": null } }, { - "content": "Install Packages", - "objectID": "2b7e67ad-16a2-4b3f-870a-8350ebc5888f", + "content": "Initialization and Starting the App", + "objectID": "2814a261-e7fd-41d0-af4a-d135812a281b", + "type": "lvl3", + "url": "/docs/guide/installation#initialization-and-starting-the-app", + "hierarchy": { + "lvl1": "Installation", + "lvl2": "Installation", + "lvl3": "Initialization and Starting the App" + } + }, + { + "content": "Adding the Components", + "objectID": "fc3c4e8b-c482-4e41-bf9e-f1000cbaad0d", + "type": "lvl3", + "url": "/docs/guide/installation#adding-the-components", + "hierarchy": { + "lvl1": "Installation", + "lvl2": "Initialization and Starting the App", + "lvl3": "Adding the Components" + } + }, + { + "content": "Manual Installation", + "objectID": "645ed12b-9371-4644-919d-50c600d9b3e8", + "type": "lvl2", + "url": "/docs/guide/installation#manual-installation", + "hierarchy": { + "lvl1": "Installation", + "lvl2": "Manual Installation", + "lvl3": null + } + }, + { + "content": "Global Installation", + "objectID": "eb6016c4-d5b8-4323-861b-0a500da4a4be", "type": "lvl3", + "url": "/docs/guide/installation#global-installation", + "hierarchy": { + "lvl1": "Installation", + "lvl2": "Manual Installation", + "lvl3": "Global Installation" + } + }, + { + "content": "Install Packages", + "objectID": "6b28ac02-963f-45e1-8b1a-1cbe7fb5cf46", + "type": "lvl4", "url": "/docs/guide/installation#install-packages", "hierarchy": { "lvl1": "Installation", "lvl2": "Global Installation", - "lvl3": "Install Packages" + "lvl3": null } }, { - "content": "Tailwind CSS Setup", - "objectID": "b47baf88-b923-4870-8664-a8a0e950fb1f", - "type": "lvl3", - "url": "/docs/guide/installation#tailwind-css-setup", + "content": "Hoisted Dependencies Setup", + "objectID": "de8fdd4f-48ad-4e50-9883-94a4a3954068", + "type": "lvl4", + "url": "/docs/guide/installation#hoisted-dependencies-setup", "hierarchy": { "lvl1": "Installation", "lvl2": "Install Packages", - "lvl3": "Tailwind CSS Setup" + "lvl3": null } }, { - "content": "Provider Setup", - "objectID": "a8db5af4-ff8f-4462-a75d-9fa6ca9849da", - "type": "lvl3", - "url": "/docs/guide/installation#provider-setup", + "content": "Tailwind CSS Setup", + "objectID": "210f12e8-6b42-4bb7-b065-3b57785b05f4", + "type": "lvl4", + "url": "/docs/guide/installation#tailwind-css-setup", "hierarchy": { "lvl1": "Installation", - "lvl2": "Tailwind CSS Setup", - "lvl3": "Provider Setup" + "lvl2": "Hoisted Dependencies Setup", + "lvl3": null } }, { - "content": "Setup pnpm (optional)", - "objectID": "14b04154-6b79-4a17-ba80-c73a95ae8d94", - "type": "lvl3", - "url": "/docs/guide/installation#setup-pnpm-optional", + "content": "Provider Setup", + "objectID": "90c317a0-a490-47b2-9598-24c184a4b774", + "type": "lvl4", + "url": "/docs/guide/installation#provider-setup", "hierarchy": { "lvl1": "Installation", - "lvl2": "Provider Setup", - "lvl3": "Setup pnpm (optional)" + "lvl2": "Tailwind CSS Setup", + "lvl3": null } }, { "content": "Individual Installation", - "objectID": "00035beb-676b-45d5-8a73-fae0e178d9eb", - "type": "lvl2", + "objectID": "9c4caefc-8fc9-4b5a-8854-130342126f7a", + "type": "lvl3", "url": "/docs/guide/installation#individual-installation", "hierarchy": { "lvl1": "Installation", - "lvl2": "Individual Installation", - "lvl3": null + "lvl2": "Provider Setup", + "lvl3": "Individual Installation" } }, { "content": "Install Core Packages", - "objectID": "87cf9e93-e806-499c-a3dd-d32698256d48", - "type": "lvl3", + "objectID": "6acc8886-43d3-4128-979d-00fc4c3f42d6", + "type": "lvl4", "url": "/docs/guide/installation#install-core-packages", "hierarchy": { "lvl1": "Installation", "lvl2": "Individual Installation", - "lvl3": "Install Core Packages" + "lvl3": null } }, { "content": "Install Component", - "objectID": "484025cf-4366-4554-abe0-88e44a5409ad", - "type": "lvl3", + "objectID": "ff91012b-efa4-4671-bfbf-c822879e23fb", + "type": "lvl4", "url": "/docs/guide/installation#install-component", "hierarchy": { "lvl1": "Installation", "lvl2": "Install Core Packages", - "lvl3": "Install Component" + "lvl3": null + } + }, + { + "content": "Hoisted Dependencies Setup", + "objectID": "25793ec9-566b-4587-81a8-201456088ee2", + "type": "lvl4", + "url": "/docs/guide/installation#hoisted-dependencies-setup-1", + "hierarchy": { + "lvl1": "Installation", + "lvl2": "Install Component", + "lvl3": null } }, { "content": "Tailwind CSS Setup", - "objectID": "1c2ba3ab-a673-4a42-ad5f-9207d0e2f9be", - "type": "lvl3", + "objectID": "9889857a-22b1-446d-bf09-2a011114bf18", + "type": "lvl4", "url": "/docs/guide/installation#tailwind-css-setup-1", "hierarchy": { "lvl1": "Installation", - "lvl2": "Install Component", - "lvl3": "Tailwind CSS Setup" + "lvl2": "Hoisted Dependencies Setup", + "lvl3": null } }, { "content": "Provider Setup", - "objectID": "ef77311c-24c7-411d-b7ea-49bb65b3461f", - "type": "lvl3", + "objectID": "f9284991-c216-42d1-9db0-16eba5f63854", + "type": "lvl4", "url": "/docs/guide/installation#provider-setup-1", "hierarchy": { "lvl1": "Installation", "lvl2": "Tailwind CSS Setup", - "lvl3": "Provider Setup" + "lvl3": null } }, { "content": "Use the Component", - "objectID": "65c3aad1-2483-475a-9d50-b52cebd48465", - "type": "lvl3", + "objectID": "6e996362-466d-4167-9eac-925529623723", + "type": "lvl4", "url": "/docs/guide/installation#use-the-component", "hierarchy": { "lvl1": "Installation", "lvl2": "Provider Setup", - "lvl3": "Use the Component" - } - }, - { - "content": "Setup pnpm (optional)", - "objectID": "6e11bd66-1af9-4602-9e52-b3d10ade18ca", - "type": "lvl3", - "url": "/docs/guide/installation#setup-pnpm-optional-1", - "hierarchy": { - "lvl1": "Installation", - "lvl2": "Use the Component", - "lvl3": "Setup pnpm (optional)" + "lvl3": null } }, { "content": "Framework Guides", - "objectID": "a08e064b-cee7-4ce8-8d7b-5235dec1a8cb", + "objectID": "5e3f45c9-d579-4855-8a6a-e4f6ab8b1db7", "type": "lvl2", "url": "/docs/guide/installation#framework-guides", "hierarchy": { @@ -10174,14 +10673,14 @@ }, { "content": "Introduction", - "objectID": "54640cd0-2b9c-4038-91b3-22553ce3ed75", + "objectID": "28e23e4c-bec1-4b4b-ad22-9da9fbbb73eb", "type": "lvl1", "url": "/docs/guide/introduction", "hierarchy": { "lvl1": "Introduction" } }, { "content": "What is NextUI?", - "objectID": "920861b3-24ff-45f7-8953-785399e18db4", + "objectID": "20e5173e-5652-463a-9322-407b7600aa34", "type": "lvl2", "url": "/docs/guide/introduction#what-is-nextui", "hierarchy": { @@ -10192,14 +10691,14 @@ }, { "content": "FAQ", - "objectID": "8b1586d0-3331-4402-8612-46bf7aaa65ab", + "objectID": "db34fb06-6e39-4ee8-89e1-f6ac1f82527e", "type": "lvl2", "url": "/docs/guide/introduction#faq", "hierarchy": { "lvl1": "Introduction", "lvl2": "FAQ", "lvl3": null } }, { "content": "Is NextUI a Vercel related project?", - "objectID": "d9a32a9c-9857-4448-90c9-7651ffbd202c", + "objectID": "38093ac0-6364-487d-b306-fcefa03f4e04", "type": "lvl3", "url": "/docs/guide/introduction#is-nextui-a-vercel-related-project", "hierarchy": { @@ -10210,7 +10709,7 @@ }, { "content": "How is NextUI different from TailwindCSS?", - "objectID": "46140a4e-0194-4a17-b210-dc82142a0811", + "objectID": "dd7f0855-9048-4c42-bf38-29ccb48ce62a", "type": "lvl3", "url": "/docs/guide/introduction#how-is-nextui-different-from-tailwindcss", "hierarchy": { @@ -10221,7 +10720,7 @@ }, { "content": "How is NextUI different from TailwindCSS components libraries?", - "objectID": "69e8ad8a-28f4-44dd-acdd-12b19bdde7a5", + "objectID": "853c65be-b69e-45b8-b5d1-69d60dd53be9", "type": "lvl3", "url": "/docs/guide/introduction#how-is-nextui-different-from-tailwindcss-components-libraries", "hierarchy": { @@ -10232,7 +10731,7 @@ }, { "content": "How NextUI deals with TailwindCSS classes conflicts?", - "objectID": "6c6355a3-5ca6-4cb8-bd2d-e4352c7eb290", + "objectID": "7739972f-8386-479e-8ccd-9d819d691532", "type": "lvl3", "url": "/docs/guide/introduction#how-nextui-deals-with-tailwindcss-classes-conflicts", "hierarchy": { @@ -10243,7 +10742,7 @@ }, { "content": "Does NextUI use runtime CSS?", - "objectID": "61345ad2-1f49-459a-a785-5ca93dab4f2c", + "objectID": "4f07b5cd-2806-44af-a3c6-abd0600aeaac", "type": "lvl3", "url": "/docs/guide/introduction#does-nextui-use-runtime-css", "hierarchy": { @@ -10254,7 +10753,7 @@ }, { "content": "Does NextUI support TypeScript?", - "objectID": "7582c9ed-a83c-4dd5-822c-524fad99e0cf", + "objectID": "d0703a95-c818-453f-b286-c30f9a29eafb", "type": "lvl3", "url": "/docs/guide/introduction#does-nextui-support-typescript", "hierarchy": { @@ -10265,7 +10764,7 @@ }, { "content": "Can I use NextUI with other front-end frameworks or libraries, such as Vue or Angular?", - "objectID": "7941b131-48de-4280-bb17-294e1809e947", + "objectID": "939fcc49-ca86-43d2-a152-fd6419204265", "type": "lvl3", "url": "/docs/guide/introduction#can-i-use-nextui-with-other-front-end-frameworks-or-libraries-such-as-vue-or-angular", "hierarchy": { @@ -10275,26 +10774,26 @@ } }, { - "content": "Why NextUI uses Framer Motion?", - "objectID": "15e1fcc9-407c-4312-9139-f01cbcd32df6", + "content": "Why does NextUI use Framer Motion?", + "objectID": "99e4df4e-019b-4ff2-999a-eebc624d8de4", "type": "lvl3", - "url": "/docs/guide/introduction#why-nextui-uses-framer-motion", + "url": "/docs/guide/introduction#why-does-nextui-use-framer-motion", "hierarchy": { "lvl1": "Introduction", "lvl2": "Can I use NextUI with other front-end frameworks or libraries, such as Vue or Angular?", - "lvl3": "Why NextUI uses Framer Motion?" + "lvl3": "Why does NextUI use Framer Motion?" } }, { "content": "Community", - "objectID": "c133e6a4-e43c-438b-a043-fefd8bd7f266", + "objectID": "d7ea9a65-6c17-4991-8a47-f4bffc9ed15a", "type": "lvl2", "url": "/docs/guide/introduction#community", "hierarchy": { "lvl1": "Introduction", "lvl2": "Community", "lvl3": null } }, { "content": "Contributing", - "objectID": "a2044d56-b279-4bb9-9c3d-82f583206cfc", + "objectID": "ff639e5b-3531-49a8-ae6f-98e12e0ae5ea", "type": "lvl2", "url": "/docs/guide/introduction#contributing", "hierarchy": { @@ -10305,57 +10804,53 @@ }, { "content": "Routing", - "objectID": "0404cabb-386c-4653-bdb3-07633b1d603a", + "objectID": "3f96cdcf-65ce-4c99-9e5d-7d736e5cbfe8", "type": "lvl1", "url": "/docs/guide/routing", "hierarchy": { "lvl1": "Routing" } }, { "content": "Introduction", - "objectID": "d81aecea-e129-4fd3-ba43-46ccf9313f8f", + "objectID": "7af2f804-ea2f-4f8b-a723-f97136fa27b5", "type": "lvl2", "url": "/docs/guide/routing#introduction", "hierarchy": { "lvl1": "Routing", "lvl2": "Introduction", "lvl3": null } }, { "content": "NextUIProvider Setup", - "objectID": "c3cb7137-58df-4e4b-80d4-1c4c6b9e1560", - "type": "lvl3", + "objectID": "ab1f9415-1af8-4c41-866f-c0bee5807bf5", + "type": "lvl2", "url": "/docs/guide/routing#nextuiprovider-setup", "hierarchy": { "lvl1": "Routing", - "lvl2": "Introduction", - "lvl3": "NextUIProvider Setup" + "lvl2": "NextUIProvider Setup", + "lvl3": null } }, { "content": "Next.js", - "objectID": "4a84e80f-0f22-4ab1-871d-00d1ae7b65bf", - "type": "lvl3", + "objectID": "534aacb3-4d93-4d90-94a2-8bb222d84ef8", + "type": "lvl2", "url": "/docs/guide/routing#nextjs", - "hierarchy": { - "lvl1": "Routing", - "lvl2": "NextUIProvider Setup", - "lvl3": "Next.js" - } + "hierarchy": { "lvl1": "Routing", "lvl2": "Next.js", "lvl3": null } }, { "content": "App Router", - "objectID": "d61d5850-5e6f-47f9-81e7-a4cf6f25d899", - "type": "lvl4", + "objectID": "fd915711-2493-40a6-b91c-b6c6433225de", + "type": "lvl3", "url": "/docs/guide/routing#app-router", - "hierarchy": { "lvl1": "Routing", "lvl2": "Next.js", "lvl3": null } + "hierarchy": { "lvl1": "Routing", "lvl2": "Next.js", "lvl3": "App Router" } }, { "content": "Add the `useRouter`", - "objectID": "a1e51f32-71a2-4929-89b8-9d235cceef31", + "objectID": "f8fcef78-c2ee-4c00-aab2-0101e753c163", "type": "lvl4", "url": "/docs/guide/routing#add-the-userouter", "hierarchy": { "lvl1": "Routing", "lvl2": "App Router", "lvl3": null } }, { "content": "Add Provider to Root", - "objectID": "7a5c9aa4-1e39-455a-9734-cb3170c34763", + "objectID": "84aa895d-29a9-4a70-a57b-9729ec8501a1", "type": "lvl4", "url": "/docs/guide/routing#add-provider-to-root", "hierarchy": { @@ -10365,10 +10860,10 @@ } }, { - "content": "Pages Router", - "objectID": "56a30ee3-c206-4b1c-bf8b-15f77a04b536", + "content": "Add useHref (Optional)", + "objectID": "1f20a6ef-7642-4f5d-b2e4-4f56dc4a9249", "type": "lvl4", - "url": "/docs/guide/routing#pages-router", + "url": "/docs/guide/routing#add-usehref-optional", "hierarchy": { "lvl1": "Routing", "lvl2": "Add Provider to Root", @@ -10376,44 +10871,54 @@ } }, { - "content": "React Router", - "objectID": "a52d4a9c-109e-455c-8a5f-bb4fb9d17ca7", + "content": "Pages Router", + "objectID": "cbfb5cf9-68e7-455b-8568-518d63aa0273", "type": "lvl3", - "url": "/docs/guide/routing#react-router", + "url": "/docs/guide/routing#pages-router", "hierarchy": { "lvl1": "Routing", - "lvl2": "Pages Router", - "lvl3": "React Router" + "lvl2": "Add useHref (Optional)", + "lvl3": "Pages Router" } }, + { + "content": "React Router", + "objectID": "798f5d3a-2c18-4769-bbc8-a3153ae486d1", + "type": "lvl2", + "url": "/docs/guide/routing#react-router", + "hierarchy": { "lvl1": "Routing", "lvl2": "React Router", "lvl3": null } + }, { "content": "Remix", - "objectID": "dd0caa40-b646-46f2-91fd-684c388b81f4", - "type": "lvl3", + "objectID": "cd187935-9d6b-4117-8af9-89c09e1b37f2", + "type": "lvl2", "url": "/docs/guide/routing#remix", - "hierarchy": { "lvl1": "Routing", "lvl2": "React Router", "lvl3": "Remix" } + "hierarchy": { "lvl1": "Routing", "lvl2": "Remix", "lvl3": null } + }, + { + "content": "TanStack", + "objectID": "871ecf39-5cc2-4ba9-989b-c133e2c8e5cd", + "type": "lvl2", + "url": "/docs/guide/routing#tanstack", + "hierarchy": { "lvl1": "Routing", "lvl2": "TanStack", "lvl3": null } }, { "content": "Usage examples", - "objectID": "73dab319-8b4c-47bb-92ab-3ddea402590c", - "type": "lvl3", + "objectID": "69a8850d-50e5-464c-a38e-bfc385d30f11", + "type": "lvl2", "url": "/docs/guide/routing#usage-examples", - "hierarchy": { - "lvl1": "Routing", - "lvl2": "Remix", - "lvl3": "Usage examples" - } + "hierarchy": { "lvl1": "Routing", "lvl2": "Usage examples", "lvl3": null } }, { "content": "Upgrade to v2", - "objectID": "c995a668-cd77-49e6-ad9b-35179678bd69", + "objectID": "ea1f424f-40dd-42e6-99ba-7a7bc05470c4", "type": "lvl1", "url": "/docs/guide/upgrade-to-v2", "hierarchy": { "lvl1": "Upgrade to v2" } }, { "content": "Next.js upgrade steps", - "objectID": "990fbe8d-3644-4449-8f10-b4449dd5eb7d", + "objectID": "be88ce15-4b12-4429-a32a-381b59c1b7ae", "type": "lvl2", "url": "/docs/guide/upgrade-to-v2#nextjs-upgrade-steps", "hierarchy": { @@ -10424,7 +10929,7 @@ }, { "content": "App directory Setup", - "objectID": "ede8cbcc-1175-4b9f-86e2-087282f44cd9", + "objectID": "4c119a93-ed75-4660-baa9-6384ea73c0cc", "type": "lvl2", "url": "/docs/guide/upgrade-to-v2#app-directory-setup", "hierarchy": { @@ -10435,7 +10940,7 @@ }, { "content": "Installation", - "objectID": "809746e7-dfcd-4d7a-8061-9761b4e96880", + "objectID": "7c1fbe0f-0da4-48cc-acca-f504deb85f71", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#installation", "hierarchy": { @@ -10444,20 +10949,31 @@ "lvl3": "Installation" } }, + { + "content": "Hoisted Dependencies Setup", + "objectID": "5cfefede-df2a-4917-b51f-c93daf52ef95", + "type": "lvl3", + "url": "/docs/guide/upgrade-to-v2#hoisted-dependencies-setup", + "hierarchy": { + "lvl1": "Upgrade to v2", + "lvl2": "Installation", + "lvl3": "Hoisted Dependencies Setup" + } + }, { "content": "Tailwind CSS Setup", - "objectID": "71aa081d-d480-4dc5-bece-6784ae184633", + "objectID": "066eb46a-1df1-4c5f-8f51-66f2a1361e20", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#tailwind-css-setup", "hierarchy": { "lvl1": "Upgrade to v2", - "lvl2": "Installation", + "lvl2": "Hoisted Dependencies Setup", "lvl3": "Tailwind CSS Setup" } }, { "content": "Setup Provider", - "objectID": "523c7541-2fb1-42b9-b40f-425aa111f29b", + "objectID": "bcfb93ea-d812-43c6-ad13-2a5d144e683b", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#setup-provider", "hierarchy": { @@ -10468,7 +10984,7 @@ }, { "content": "Add Provider to Root", - "objectID": "cabbdfe7-7783-43c5-938a-a672ff29d9c1", + "objectID": "6f05ce5c-f3ad-4df7-8c35-b6cd52cd926e", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#add-provider-to-root", "hierarchy": { @@ -10479,7 +10995,7 @@ }, { "content": "Use NextUI Components", - "objectID": "d8f45caf-2c1f-4ae3-8208-2eab83e00c70", + "objectID": "b844ecc6-fe6a-4fd7-9808-e1e28942e3d0", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#use-nextui-components", "hierarchy": { @@ -10488,20 +11004,9 @@ "lvl3": "Use NextUI Components" } }, - { - "content": "Setup pnpm (optional)", - "objectID": "f2d71f65-a7ff-4955-985d-feecf9ef5c96", - "type": "lvl3", - "url": "/docs/guide/upgrade-to-v2#setup-pnpm-optional", - "hierarchy": { - "lvl1": "Upgrade to v2", - "lvl2": "Use NextUI Components", - "lvl3": "Setup pnpm (optional)" - } - }, { "content": "Pages Directory Setup", - "objectID": "bfa5e760-b183-4ecb-97e7-c7d7c9302590", + "objectID": "b54f6744-b32f-43b9-a953-8b69277e0d88", "type": "lvl2", "url": "/docs/guide/upgrade-to-v2#pages-directory-setup", "hierarchy": { @@ -10512,7 +11017,7 @@ }, { "content": "Installation", - "objectID": "95ebaa82-2423-4e38-8e45-54bca8f23fc7", + "objectID": "7253de4e-f7ab-4d31-bc12-341386a7bd23", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#installation-1", "hierarchy": { @@ -10521,20 +11026,31 @@ "lvl3": "Installation" } }, + { + "content": "Hoisted Dependencies Setup", + "objectID": "8926440d-cc1e-4c46-9d97-fb9c8e8fc686", + "type": "lvl3", + "url": "/docs/guide/upgrade-to-v2#hoisted-dependencies-setup-1", + "hierarchy": { + "lvl1": "Upgrade to v2", + "lvl2": "Installation", + "lvl3": "Hoisted Dependencies Setup" + } + }, { "content": "Tailwind CSS Setup", - "objectID": "bfa27f3f-542c-4f0a-85d2-a35ea605e32a", + "objectID": "af349e8b-5f45-476b-9ca6-2cdcf1978321", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#tailwind-css-setup-1", "hierarchy": { "lvl1": "Upgrade to v2", - "lvl2": "Installation", + "lvl2": "Hoisted Dependencies Setup", "lvl3": "Tailwind CSS Setup" } }, { "content": "Setup Provider", - "objectID": "61aad957-f7eb-4dcc-9f01-0b5c839e116f", + "objectID": "8bb5b7ae-aa3c-4eeb-8400-b087916aa01f", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#setup-provider-1", "hierarchy": { @@ -10545,7 +11061,7 @@ }, { "content": "Use NextUI Components", - "objectID": "5b5a1e07-4ea4-40ed-a8ae-d683596eb562", + "objectID": "9414fe4c-5937-46ed-ac40-0b0fe38eb693", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#use-nextui-components-1", "hierarchy": { @@ -10554,20 +11070,9 @@ "lvl3": "Use NextUI Components" } }, - { - "content": "Setup pnpm (optional)", - "objectID": "d7c1e4f9-bec8-4657-af00-ced36009ab66", - "type": "lvl3", - "url": "/docs/guide/upgrade-to-v2#setup-pnpm-optional-1", - "hierarchy": { - "lvl1": "Upgrade to v2", - "lvl2": "Use NextUI Components", - "lvl3": "Setup pnpm (optional)" - } - }, { "content": "React upgrade steps", - "objectID": "cbd9597e-ee2b-4ebc-94bf-3b76adc925e0", + "objectID": "20ae3dfb-90a9-48ed-ad9a-ffd9ff790d57", "type": "lvl2", "url": "/docs/guide/upgrade-to-v2#react-upgrade-steps", "hierarchy": { @@ -10578,7 +11083,7 @@ }, { "content": "Upgrade React version", - "objectID": "e245df9c-5db1-438d-bed9-d76eae317f3f", + "objectID": "078383ee-baa7-40b0-b24d-ab629f4e4d6c", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#upgrade-react-version", "hierarchy": { @@ -10589,7 +11094,7 @@ }, { "content": "Install Framer motion", - "objectID": "44da2fdc-50c8-4a28-9205-434f8f670d5a", + "objectID": "4d677923-6dd3-46e9-8dc6-b8383a92a7a2", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#install-framer-motion", "hierarchy": { @@ -10598,20 +11103,31 @@ "lvl3": "Install Framer motion" } }, + { + "content": "Hoisted Dependencies Setup", + "objectID": "039e763d-8a92-4e6e-bad0-131ed6cee8c1", + "type": "lvl3", + "url": "/docs/guide/upgrade-to-v2#hoisted-dependencies-setup-2", + "hierarchy": { + "lvl1": "Upgrade to v2", + "lvl2": "Install Framer motion", + "lvl3": "Hoisted Dependencies Setup" + } + }, { "content": "TailwindCSS Setup", - "objectID": "c699d2b0-8d70-420b-959c-f79516fac368", + "objectID": "76199e66-723b-48ba-8897-5b4920211d8c", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#tailwindcss-setup", "hierarchy": { "lvl1": "Upgrade to v2", - "lvl2": "Install Framer motion", + "lvl2": "Hoisted Dependencies Setup", "lvl3": "TailwindCSS Setup" } }, { "content": "Provider Setup", - "objectID": "d329cbc7-7c8f-4a65-b217-59eb64cbe1e3", + "objectID": "32c5a58a-fcfb-41dc-988c-9ea6f0a56235", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#provider-setup", "hierarchy": { @@ -10622,7 +11138,7 @@ }, { "content": "Use NextUI Components", - "objectID": "68a0680e-be28-4345-96aa-4cc6d56561db", + "objectID": "55e021e0-fba1-4a99-9976-cced048573e9", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#use-nextui-components-2", "hierarchy": { @@ -10630,16 +11146,5 @@ "lvl2": "Provider Setup", "lvl3": "Use NextUI Components" } - }, - { - "content": "Setup pnpm (optional)", - "objectID": "fb78381b-8294-436d-8440-0e67d4a1e812", - "type": "lvl3", - "url": "/docs/guide/upgrade-to-v2#setup-pnpm-optional-2", - "hierarchy": { - "lvl1": "Upgrade to v2", - "lvl2": "Use NextUI Components", - "lvl3": "Setup pnpm (optional)" - } } ] diff --git a/apps/docs/content/docs/components/drawer.mdx b/apps/docs/content/docs/components/drawer.mdx index 0b0b5a82bc..6a37751e84 100644 --- a/apps/docs/content/docs/components/drawer.mdx +++ b/apps/docs/content/docs/components/drawer.mdx @@ -119,6 +119,11 @@ Drawer offers a `motionProps` property to customize the `enter` / `exit` animati +Credits + +The Drawer component design is inspired by [Luma](https://x.com/LumaHQ). + + ## Slots - **wrapper**: The wrapper slot of the drawer. It wraps the `base` and the `backdrop` slots. diff --git a/apps/docs/package.json b/apps/docs/package.json index 01e4bc4aba..b1dfea40ba 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -4,7 +4,7 @@ "private": true, "scripts": { "dev": "rimraf .contentlayer && concurrently \"contentlayer2 dev\" \"next dev\"", - "build": "contentlayer2 build && next build", + "build": "contentlayer2 build && next build && pnpm update:github-info && pnpm update:search-meta", "build:analyze": "ANALYZE=true next build", "start": "next start", "lint": "next lint", @@ -12,6 +12,7 @@ "preinstall": "node preinstall.js", "build:sponsors": "tsx scripts/build-sponsors.ts", "update:search-meta": "tsx scripts/update-search-meta.ts", + "update:github-info": "tsx scripts/update-github-info.ts", "postbuild": "next-sitemap" }, "dependencies": { diff --git a/apps/docs/public/sitemap-0.xml b/apps/docs/public/sitemap-0.xml index 09725255fe..e0043d15d6 100644 --- a/apps/docs/public/sitemap-0.xml +++ b/apps/docs/public/sitemap-0.xml @@ -1,65 +1,78 @@ -https://nextui.org/feed.xml2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/figma2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/accordion2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/autocomplete2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/avatar2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/badge2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/breadcrumbs2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/button2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/card2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/checkbox-group2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/checkbox2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/chip2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/circular-progress2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/code2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/divider2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/dropdown2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/image2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/input2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/kbd2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/link2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/listbox2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/modal2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/navbar2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/pagination2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/popover2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/progress2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/radio-group2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/scroll-shadow2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/select2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/skeleton2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/slider2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/snippet2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/spacer2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/spinner2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/switch2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/table2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/tabs2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/textarea2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/tooltip2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/components/user2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/frameworks/astro2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/frameworks/nextjs2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/frameworks/remix2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/frameworks/vite2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/guide/design-principles2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/guide/installation2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/guide/introduction2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/guide/routing2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/guide/upgrade-to-v22024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/customization/colors2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/customization/create-theme2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/customization/custom-variants2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/customization/customize-theme2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/customization/dark-mode2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/customization/layout2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/customization/override-styles2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/docs/customization/theme2024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/blog/nextui-v22024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/blog/v2.1.02024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/blog/v2.2.02024-02-02T20:24:45.107Zdaily0.7 -https://nextui.org/blog2024-02-02T20:24:45.107Zdaily0.7 +https://nextui.org/feed.xml2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/blog/nextui-v22024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/blog/v2.1.02024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/blog/v2.2.02024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/blog/v2.3.02024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/blog/v2.4.02024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/api-references/cli-api2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/api-references/nextui-provider2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/customization/colors2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/customization/create-theme2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/customization/custom-variants2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/customization/customize-theme2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/customization/dark-mode2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/customization/layout2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/customization/override-styles2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/customization/theme2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/accordion2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/alert2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/autocomplete2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/avatar2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/badge2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/breadcrumbs2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/button2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/calendar2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/card2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/checkbox-group2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/checkbox2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/chip2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/circular-progress2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/code2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/date-input2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/date-picker2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/date-range-picker2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/divider2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/drawer2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/dropdown2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/image2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/input2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/kbd2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/link2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/listbox2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/modal2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/navbar2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/pagination2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/popover2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/progress2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/radio-group2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/range-calendar2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/scroll-shadow2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/select2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/skeleton2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/slider2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/snippet2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/spacer2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/spinner2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/switch2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/table2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/tabs2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/textarea2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/time-input2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/tooltip2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/components/user2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/frameworks/astro2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/frameworks/nextjs2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/frameworks/remix2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/frameworks/vite2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/guide/cli2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/guide/design-principles2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/guide/installation2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/guide/introduction2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/guide/routing2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/docs/guide/upgrade-to-v22024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/blog2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/figma2024-11-16T12:16:07.054Zdaily0.7 \ No newline at end of file diff --git a/apps/docs/scripts/update-github-info.ts b/apps/docs/scripts/update-github-info.ts new file mode 100644 index 0000000000..042a18f76b --- /dev/null +++ b/apps/docs/scripts/update-github-info.ts @@ -0,0 +1,61 @@ +/* eslint-disable no-console */ +import path from "path"; +import fs from 'fs'; + +import prettier from 'prettier'; +import fetch from 'node-fetch'; + +import { formatCompactNumber } from '../utils/number'; + +const configFolder = "config"; + +interface GithubInfo { + stars: { + raw: number; + formatted: string; + }; + forks: number; + subscribers: number; + openIssues: number; +} + +async function getGithubInfo() { + try { + const response = await fetch('https://api.github.com/repos/nextui-org/nextui'); + const data = await response.json() as any; + + const githubInfo: GithubInfo = { + stars: { + raw: data.stargazers_count, + formatted: formatCompactNumber(data.stargazers_count) + }, + forks: data.forks_count, + subscribers: data.subscribers_count, + openIssues: data.open_issues_count, + }; + + // Format JSON with prettier + const formattedJson = prettier.format(JSON.stringify(githubInfo), { + parser: 'json', + printWidth: 80, + tabWidth: 2, + semi: true, + }); + + // Create config folder if it doesn't exist + if (!fs.existsSync(configFolder)) { + fs.mkdirSync(configFolder); + } + + // Write to github-info.json + const outPath = path.join(process.cwd(), configFolder, 'github-info.json'); + + fs.writeFileSync(outPath, formattedJson); + + console.log("[NextUI] GitHub info updated successfully โœ…"); + } catch (error) { + console.error("[ERROR ๐Ÿ”ฅ]:", error); + } +} + +getGithubInfo(); diff --git a/apps/docs/utils/number.ts b/apps/docs/utils/number.ts new file mode 100644 index 0000000000..c9e680d489 --- /dev/null +++ b/apps/docs/utils/number.ts @@ -0,0 +1,25 @@ +/** + * Formats a number into a shortened string representation (e.g., 1K, 1.5M, 2B) + * @param number The number to format + * @param decimals Number of decimal places to show (default: 1) + * @returns Formatted string + */ +export function formatCompactNumber(number: number, decimals: number = 1): string { + if (number === 0) return "0"; + + const absNumber = Math.abs(number); + const sign = number < 0 ? "-" : ""; + + if (absNumber < 1000) { + return sign + absNumber.toString(); + } + + const suffixes = ["", "K", "M", "B", "T"]; + const exponent = Math.min(Math.floor(Math.log10(absNumber) / 3), suffixes.length - 1); + const shortNumber = (absNumber / Math.pow(1000, exponent)).toFixed(decimals); + + // Remove trailing zeros after decimal point + const formattedNumber = parseFloat(shortNumber).toString(); + + return sign + formattedNumber + suffixes[exponent]; +} From 3f1a11add61e45c0a8d7c759d5043ac5491adc72 Mon Sep 17 00:00:00 2001 From: Junior Garcia Date: Sat, 16 Nov 2024 10:58:02 -0300 Subject: [PATCH 12/28] chore: fix build --- .github/workflows/update-stats.yml | 42 + apps/docs/config/github-info.json | 2 +- apps/docs/config/search-meta.json | 2472 ++++++++++++++-------------- apps/docs/package.json | 3 +- apps/docs/public/sitemap-0.xml | 150 +- pnpm-lock.yaml | 56 +- 6 files changed, 1392 insertions(+), 1333 deletions(-) create mode 100644 .github/workflows/update-stats.yml diff --git a/.github/workflows/update-stats.yml b/.github/workflows/update-stats.yml new file mode 100644 index 0000000000..3ea0fd4819 --- /dev/null +++ b/.github/workflows/update-stats.yml @@ -0,0 +1,42 @@ +name: Update Stats + +on: + schedule: + # Runs every Monday at 00:00 UTC + - cron: '0 0 * * 1' + # Allow manual trigger + workflow_dispatch: + +jobs: + update-stats: + name: Update Stats + runs-on: ubuntu-latest + steps: + - name: Checkout branch + uses: actions/checkout@v4 + + - name: Install + uses: ./.github/common-actions/install + + - name: Update search metadata + run: pnpm update:search-meta + + - name: Update GitHub info + run: pnpm update:github-info + + - name: Create Pull Request + uses: peter-evans/create-pull-request@v5 + with: + commit-message: "chore(stats): update project statistics" + title: "chore(stats): ๐Ÿ“Š Update project statistics" + body: | + This PR updates the project statistics including: + - Search metadata + - GitHub repository information + + This is an automated PR generated weekly. + branch: chore/update-stats + base: main + delete-branch: true + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/apps/docs/config/github-info.json b/apps/docs/config/github-info.json index 9539971adf..4c3cc942d0 100644 --- a/apps/docs/config/github-info.json +++ b/apps/docs/config/github-info.json @@ -2,5 +2,5 @@ "stars": { "raw": 22002, "formatted": "22K" }, "forks": 1536, "subscribers": 85, - "openIssues": 432 + "openIssues": 433 } diff --git a/apps/docs/config/search-meta.json b/apps/docs/config/search-meta.json index 26654c5809..793ac4a26e 100644 --- a/apps/docs/config/search-meta.json +++ b/apps/docs/config/search-meta.json @@ -1,196 +1,196 @@ [ { "content": "NextUI CLI", - "objectID": "f5c88a7b-cdc7-4516-a7d3-c7dd30f13614", + "objectID": "2bee8c7f-5d8e-4e3d-a222-43d3a6d778ff", "type": "lvl1", "url": "/docs/api-references/cli-api", "hierarchy": { "lvl1": "NextUI CLI" } }, { "content": "init", - "objectID": "34ed63cd-b83a-4640-aa62-f2f82b233316", + "objectID": "5420db40-89f4-456f-9c4a-cef63b5285f7", "type": "lvl2", "url": "/docs/api-references/cli-api#init", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "init", "lvl3": null } }, { "content": "Options", - "objectID": "69a326a8-31db-46dc-9cb7-b20f0bd878f4", + "objectID": "f54342fb-bbaa-4397-8456-2644afddca60", "type": "lvl3", "url": "/docs/api-references/cli-api#options", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "init", "lvl3": "Options" } }, { "content": "Example", - "objectID": "f5d361b6-13b2-473d-bd4d-fe79acccef82", + "objectID": "acfb11ab-da07-413f-a050-33408d086215", "type": "lvl3", "url": "/docs/api-references/cli-api#example", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "Options", "lvl3": "Example" } }, { "content": "add", - "objectID": "ccf45203-0a70-48f0-88d3-2fc152f9a607", + "objectID": "351c293b-d25a-407f-bfce-c6319786de46", "type": "lvl2", "url": "/docs/api-references/cli-api#add", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "add", "lvl3": null } }, { "content": "Options", - "objectID": "00bf53c1-2d8a-467c-bda6-6a6c96f62e01", + "objectID": "60de9a6b-1366-4347-9856-b5e016fede16", "type": "lvl3", "url": "/docs/api-references/cli-api#options-1", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "add", "lvl3": "Options" } }, { "content": "Example", - "objectID": "ef7acf4f-4af8-49ab-828e-349cf0610d92", + "objectID": "9c2bda96-3c69-4575-9576-ac129e9f8536", "type": "lvl3", "url": "/docs/api-references/cli-api#example-1", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "Options", "lvl3": "Example" } }, { "content": "upgrade", - "objectID": "67b71e7a-9f80-44c7-95e8-1e044e85330c", + "objectID": "f9b4644a-9942-455c-bf2f-d4380bd4b06c", "type": "lvl2", "url": "/docs/api-references/cli-api#upgrade", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "upgrade", "lvl3": null } }, { "content": "Options", - "objectID": "1198d55c-a9d6-4c23-a440-a323ba143923", + "objectID": "f2be4318-28d9-47e6-b828-24ce93538d6d", "type": "lvl3", "url": "/docs/api-references/cli-api#options-2", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "upgrade", "lvl3": "Options" } }, { "content": "Example", - "objectID": "52a93b76-d1d7-4bb6-a05c-1fd3ba358840", + "objectID": "de9bfbc7-5b6b-4559-b4d1-2aa25723b003", "type": "lvl3", "url": "/docs/api-references/cli-api#example-2", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "Options", "lvl3": "Example" } }, { "content": "remove", - "objectID": "2293a205-e988-4be9-8cfe-322aee0250cc", + "objectID": "f8403115-a9a5-4ad2-8dc9-296eceb25a61", "type": "lvl2", "url": "/docs/api-references/cli-api#remove", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "remove", "lvl3": null } }, { "content": "Options", - "objectID": "0d3f3685-742e-4620-91e5-01d5ff2bf087", + "objectID": "820662cd-1e3c-464f-a58f-6127767ca4e4", "type": "lvl3", "url": "/docs/api-references/cli-api#options-3", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "remove", "lvl3": "Options" } }, { "content": "Example", - "objectID": "59fd2333-0604-4413-9c1c-ac720746a71c", + "objectID": "bf5b5eff-aef7-4b2d-93c1-0900f116ff18", "type": "lvl3", "url": "/docs/api-references/cli-api#example-3", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "Options", "lvl3": "Example" } }, { "content": "list", - "objectID": "b1c4020f-e464-4753-b8a3-e5be06183b6d", + "objectID": "aeb637c8-0d5a-48f3-9a45-309039c75feb", "type": "lvl2", "url": "/docs/api-references/cli-api#list", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "list", "lvl3": null } }, { "content": "Options", - "objectID": "725ab681-f866-486e-af12-327b3826f6ff", + "objectID": "6f944bc5-fd4e-4b6a-b310-0a8d554dce73", "type": "lvl3", "url": "/docs/api-references/cli-api#options-4", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "list", "lvl3": "Options" } }, { "content": "Example", - "objectID": "0d9281d8-4049-4d9e-aef0-6be040f84cd0", + "objectID": "6e81624d-0250-4532-800b-c7c1191fb61b", "type": "lvl3", "url": "/docs/api-references/cli-api#example-4", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "Options", "lvl3": "Example" } }, { "content": "doctor", - "objectID": "a2f5c8c9-a824-4051-b970-5a7f198c85d0", + "objectID": "4f8956dd-92db-4fc5-a1a9-6f4f188f3686", "type": "lvl2", "url": "/docs/api-references/cli-api#doctor", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "doctor", "lvl3": null } }, { "content": "Options", - "objectID": "48a98178-3c74-4e7e-8b22-4ee75dc3b6c1", + "objectID": "87b73e88-9bd8-4086-8e9a-973b949ff633", "type": "lvl3", "url": "/docs/api-references/cli-api#options-5", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "doctor", "lvl3": "Options" } }, { "content": "Example", - "objectID": "04683ddf-f0ec-4539-b88e-516a07d8a3ff", + "objectID": "456bec0a-d2db-4f09-8f26-62856aacc9f3", "type": "lvl3", "url": "/docs/api-references/cli-api#example-5", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "Options", "lvl3": "Example" } }, { "content": "env", - "objectID": "8ea7d711-57cd-4a24-b67e-440d190dcfc8", + "objectID": "c82df2ec-e18b-495a-b9b2-17ce0a65d7e2", "type": "lvl2", "url": "/docs/api-references/cli-api#env", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "env", "lvl3": null } }, { "content": "Options", - "objectID": "550f316a-346e-498d-b2d7-8ca11b3dc885", + "objectID": "7a7affc1-fa30-4336-b935-d398b465af36", "type": "lvl3", "url": "/docs/api-references/cli-api#options-6", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "env", "lvl3": "Options" } }, { "content": "Example", - "objectID": "cbfea057-5404-490f-8674-80f923299cf1", + "objectID": "fe84ec26-6259-41a8-a0ec-ffcff52375f7", "type": "lvl3", "url": "/docs/api-references/cli-api#example-6", "hierarchy": { "lvl1": "NextUI CLI", "lvl2": "Options", "lvl3": "Example" } }, { "content": "NextUI Provider", - "objectID": "d12c927f-d76a-4c19-ad37-e4a47c355c67", + "objectID": "a05cebdb-9dc8-4ce8-a655-75891f254082", "type": "lvl1", "url": "/docs/api-references/nextui-provider", "hierarchy": { "lvl1": "NextUI Provider" } }, { "content": "Import", - "objectID": "82a80c34-0a39-453c-a4a5-98e29493b5d0", + "objectID": "4430c379-9fa1-4f9a-9858-c61d0a26fdfd", "type": "lvl2", "url": "/docs/api-references/nextui-provider#import", "hierarchy": { "lvl1": "NextUI Provider", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "8065e809-64e6-4a7f-a8dd-e1a08ae8ed46", + "objectID": "a6ae778d-4c9d-479f-9154-f550dbf682a3", "type": "lvl2", "url": "/docs/api-references/nextui-provider#usage", "hierarchy": { "lvl1": "NextUI Provider", "lvl2": "Usage", "lvl3": null } }, { "content": "Props", - "objectID": "81e9e1c4-179a-4aed-acac-c8466ccf4cc6", + "objectID": "6ec9a65a-0103-465f-ad3f-63e91233294d", "type": "lvl2", "url": "/docs/api-references/nextui-provider#props", "hierarchy": { "lvl1": "NextUI Provider", "lvl2": "Props", "lvl3": null } }, { "content": "Types", - "objectID": "e55fa65e-bcbd-4657-9e8c-40d43321405a", + "objectID": "e0105d59-c205-4ae0-a3e3-031f80ea563e", "type": "lvl2", "url": "/docs/api-references/nextui-provider#types", "hierarchy": { "lvl1": "NextUI Provider", "lvl2": "Types", "lvl3": null } }, { "content": "SupportedCalendars", - "objectID": "1ec6a919-60b7-4ef9-8a3e-942ed9f4b391", + "objectID": "cd4ee0a0-efcc-4e17-a559-79f5228beda0", "type": "lvl3", "url": "/docs/api-references/nextui-provider#supportedcalendars", "hierarchy": { @@ -201,35 +201,35 @@ }, { "content": "Accordion", - "objectID": "4f4ea5d5-32de-407c-8be3-b2802bc802f0", + "objectID": "257af4e9-c50d-40ec-84fa-8fcee57f10f2", "type": "lvl1", "url": "/docs/components/accordion", "hierarchy": { "lvl1": "Accordion" } }, { "content": "Installation", - "objectID": "a75756eb-747c-4edc-9735-20130810d878", + "objectID": "d0d270ab-7275-476d-926b-8bc487c50f32", "type": "lvl2", "url": "/docs/components/accordion#installation", "hierarchy": { "lvl1": "Accordion", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "83457174-a171-411a-8e35-04dffed6f427", + "objectID": "fe3f0acf-bc34-4d37-a841-577f3fee5494", "type": "lvl2", "url": "/docs/components/accordion#import", "hierarchy": { "lvl1": "Accordion", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "10b25620-3c45-4981-8a8f-acb3f958ecdc", + "objectID": "6b03a63a-26d7-4252-a29a-abd909335b22", "type": "lvl2", "url": "/docs/components/accordion#usage", "hierarchy": { "lvl1": "Accordion", "lvl2": "Usage", "lvl3": null } }, { "content": "With Subtitle", - "objectID": "ee8b8ea1-cb1c-4097-ab1f-8973b01b205e", + "objectID": "d32a4a59-90f1-4e2f-a3fd-5888ae96b880", "type": "lvl3", "url": "/docs/components/accordion#with-subtitle", "hierarchy": { @@ -240,7 +240,7 @@ }, { "content": "Expand multiple items", - "objectID": "33c969e3-3819-43ad-a3bc-e6a5c0ba3f90", + "objectID": "cfdf8e6d-4813-4500-a36e-1cb50f2c1728", "type": "lvl3", "url": "/docs/components/accordion#expand-multiple-items", "hierarchy": { @@ -251,7 +251,7 @@ }, { "content": "Compact", - "objectID": "259d7def-e818-4c27-9008-db96b06141ee", + "objectID": "341b82bc-a3c0-4319-a221-71695c760b26", "type": "lvl3", "url": "/docs/components/accordion#compact", "hierarchy": { @@ -262,35 +262,35 @@ }, { "content": "Variants", - "objectID": "ea91f955-2c08-4a5d-a8f2-255a24b11124", + "objectID": "cd5901c7-9b16-42e5-bc00-a3c2a7d38ff2", "type": "lvl3", "url": "/docs/components/accordion#variants", "hierarchy": { "lvl1": "Accordion", "lvl2": "Compact", "lvl3": "Variants" } }, { "content": "Light variant", - "objectID": "65d3b7a9-af3a-47c8-b228-747f0215808e", + "objectID": "26719321-b11b-4a27-891b-b9fbcd5b666c", "type": "lvl4", "url": "/docs/components/accordion#light-variant", "hierarchy": { "lvl1": "Accordion", "lvl2": "Variants", "lvl3": null } }, { "content": "Shadow variant", - "objectID": "75e494c4-c02d-4d9a-ae48-84b44a699e77", + "objectID": "d60cc2d7-4eb9-4fa6-9ced-aca937f5bd7d", "type": "lvl4", "url": "/docs/components/accordion#shadow-variant", "hierarchy": { "lvl1": "Accordion", "lvl2": "Light variant", "lvl3": null } }, { "content": "Bordered variant", - "objectID": "566e6275-72a7-4e5a-b271-75f7884a52fb", + "objectID": "61de01c9-0f01-48cc-a28b-2d54a2a8ff46", "type": "lvl4", "url": "/docs/components/accordion#bordered-variant", "hierarchy": { "lvl1": "Accordion", "lvl2": "Shadow variant", "lvl3": null } }, { "content": "Splitted variant", - "objectID": "55c32949-47eb-4747-b1d9-36a52c26b380", + "objectID": "754ca65f-0181-4968-b233-3602c37072e9", "type": "lvl4", "url": "/docs/components/accordion#splitted-variant", "hierarchy": { @@ -301,7 +301,7 @@ }, { "content": "Default expanded keys", - "objectID": "e74a7ed3-d501-4a14-a03d-5109dcdda373", + "objectID": "786a751d-0b3a-419a-8a73-10908bcf7166", "type": "lvl3", "url": "/docs/components/accordion#default-expanded-keys", "hierarchy": { @@ -312,7 +312,7 @@ }, { "content": "Disabled keys", - "objectID": "56a5f540-8b6f-4bad-9702-0f6caf2fe9ec", + "objectID": "a5750fed-c550-4739-8c67-2d13b09844bc", "type": "lvl3", "url": "/docs/components/accordion#disabled-keys", "hierarchy": { @@ -323,7 +323,7 @@ }, { "content": "Start content", - "objectID": "0938e768-39dc-4cbb-8b06-432a19738ab6", + "objectID": "24fbcee5-23f3-4d47-b5ae-c40a3602beae", "type": "lvl3", "url": "/docs/components/accordion#start-content", "hierarchy": { @@ -334,7 +334,7 @@ }, { "content": "Custom Indicator", - "objectID": "935e6bf6-91a7-46c1-92e6-77f0962c6d1c", + "objectID": "44bda5ba-e409-4f23-92fb-f4733a07e99f", "type": "lvl3", "url": "/docs/components/accordion#custom-indicator", "hierarchy": { @@ -345,7 +345,7 @@ }, { "content": "Custom Motion", - "objectID": "c1e03732-5fc2-44ff-ad3e-ebf8e2a3e6fe", + "objectID": "03afefee-d673-4ae0-a8b2-bd4cfd5d0643", "type": "lvl3", "url": "/docs/components/accordion#custom-motion", "hierarchy": { @@ -356,7 +356,7 @@ }, { "content": "Controlled", - "objectID": "cf7dda25-e195-496a-a125-ede3c73c46cc", + "objectID": "514e0113-d2d0-4995-8a18-dada42fa2c09", "type": "lvl3", "url": "/docs/components/accordion#controlled", "hierarchy": { @@ -367,7 +367,7 @@ }, { "content": "Accordion Item Slots", - "objectID": "fff52dc0-123a-4f0a-aec1-62691238af4f", + "objectID": "43b03e39-f6cd-43d6-aa98-ba7995d7922b", "type": "lvl2", "url": "/docs/components/accordion#accordion-item-slots", "hierarchy": { @@ -378,7 +378,7 @@ }, { "content": "Custom Accordion Styles", - "objectID": "bc90fa68-e2d9-47e5-a0e8-b78bbd7e9546", + "objectID": "52165b96-d1df-4d4a-9651-a1beced5bdbf", "type": "lvl3", "url": "/docs/components/accordion#custom-accordion-styles", "hierarchy": { @@ -389,7 +389,7 @@ }, { "content": "Data Attributes", - "objectID": "5f72f588-3e04-4d01-ae5d-d478773456a4", + "objectID": "66d21025-c9d4-4195-8d4f-23b6fd333a16", "type": "lvl2", "url": "/docs/components/accordion#data-attributes", "hierarchy": { @@ -400,21 +400,21 @@ }, { "content": "Accessibility", - "objectID": "b2927313-09ac-47a2-aa65-2122d6f64439", + "objectID": "3fd50608-dde5-42d0-8ee7-0fd4bf0d5b3b", "type": "lvl2", "url": "/docs/components/accordion#accessibility", "hierarchy": { "lvl1": "Accordion", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "4f09a1a3-b59c-4a4d-b460-50142d3ca0ad", + "objectID": "fc20d595-54da-430d-8389-46f23cce8f3d", "type": "lvl2", "url": "/docs/components/accordion#api", "hierarchy": { "lvl1": "Accordion", "lvl2": "API", "lvl3": null } }, { "content": "Accordion Props", - "objectID": "7f5798bc-efe3-4c2c-97da-ac70b000667a", + "objectID": "9ee97d74-1baa-469a-a54f-75a6a00c5000", "type": "lvl3", "url": "/docs/components/accordion#accordion-props", "hierarchy": { @@ -425,7 +425,7 @@ }, { "content": "Accordion Events", - "objectID": "8e43caad-1732-4509-afda-b11e6e63a897", + "objectID": "477724e3-118a-4e10-bb25-4f49dca52b2c", "type": "lvl3", "url": "/docs/components/accordion#accordion-events", "hierarchy": { @@ -436,7 +436,7 @@ }, { "content": "Accordion Item Props", - "objectID": "a36f0d27-761b-401a-884f-471e93720c9a", + "objectID": "fa18efa1-5fa7-4d1b-b4ff-5ebde2353c16", "type": "lvl3", "url": "/docs/components/accordion#accordion-item-props", "hierarchy": { @@ -447,7 +447,7 @@ }, { "content": "Accordion Item Events", - "objectID": "4f436dc7-783f-4a39-88ee-a4ff4acfa017", + "objectID": "a09ed664-a287-468e-bbfe-47c4e1d96685", "type": "lvl3", "url": "/docs/components/accordion#accordion-item-events", "hierarchy": { @@ -458,7 +458,7 @@ }, { "content": "Types", - "objectID": "f7f6c413-dddd-40d9-bed1-53676d9bd7c2", + "objectID": "837add66-835e-4e26-8fb8-6f39502c673d", "type": "lvl3", "url": "/docs/components/accordion#types", "hierarchy": { @@ -469,14 +469,14 @@ }, { "content": "Accordion Item Indicator Props", - "objectID": "68527c3a-85fc-42da-be2b-fc6b46cb4904", + "objectID": "0515b0e7-13e0-490d-8407-5551709746fb", "type": "lvl4", "url": "/docs/components/accordion#accordion-item-indicator-props", "hierarchy": { "lvl1": "Accordion", "lvl2": "Types", "lvl3": null } }, { "content": "Accordion Item classNames", - "objectID": "7ecf1844-1657-4a64-ba56-78a14cefb45b", + "objectID": "a6bb518f-e38f-4367-a3e0-0a52ef42ead4", "type": "lvl3", "url": "/docs/components/accordion#accordion-item-classnames", "hierarchy": { @@ -487,7 +487,7 @@ }, { "content": "Motion Props", - "objectID": "6a92f1c7-4bbb-4ffb-a1ae-8c58a6d726a2", + "objectID": "1ad1e77d-24ed-4a2d-a253-6ca925f00441", "type": "lvl4", "url": "/docs/components/accordion#motion-props", "hierarchy": { @@ -498,70 +498,70 @@ }, { "content": "Alert", - "objectID": "60ee9745-d3c5-4772-9c59-84497d1811d3", + "objectID": "59a5448a-d68e-47c7-a108-89724dacc73f", "type": "lvl1", "url": "/docs/components/alert", "hierarchy": { "lvl1": "Alert" } }, { "content": "Installation", - "objectID": "96d7c3c6-6f2e-4c5d-bae5-8416c31e28a5", + "objectID": "35772670-58e4-4177-b4b5-77e356e1473d", "type": "lvl2", "url": "/docs/components/alert#installation", "hierarchy": { "lvl1": "Alert", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "5f202a3b-f5a5-431d-b735-3a112d3d4cd9", + "objectID": "99ca0be3-6b24-4261-a27b-0570922053c0", "type": "lvl2", "url": "/docs/components/alert#import", "hierarchy": { "lvl1": "Alert", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "1defe855-caaa-4d87-9a85-56fe061e5c88", + "objectID": "8a1bd989-317b-46fd-838d-a8c7240d1237", "type": "lvl2", "url": "/docs/components/alert#usage", "hierarchy": { "lvl1": "Alert", "lvl2": "Usage", "lvl3": null } }, { "content": "Colors", - "objectID": "019508b1-4d8b-41f2-92c5-aad5c5e7f617", + "objectID": "f7eb9054-f845-4745-9515-40fb26046086", "type": "lvl3", "url": "/docs/components/alert#colors", "hierarchy": { "lvl1": "Alert", "lvl2": "Usage", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "d1917c48-7c07-49de-b3c4-e544e172ab30", + "objectID": "a2339824-05ac-4c03-8e93-840af3129413", "type": "lvl3", "url": "/docs/components/alert#variants", "hierarchy": { "lvl1": "Alert", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "Radius", - "objectID": "b9ac3aa1-641a-4c42-9f39-6500593580d6", + "objectID": "1eba9be6-3333-43d4-92fc-11b6c1d0e153", "type": "lvl3", "url": "/docs/components/alert#radius", "hierarchy": { "lvl1": "Alert", "lvl2": "Variants", "lvl3": "Radius" } }, { "content": "With Icon", - "objectID": "b18fa181-97c4-4cff-908f-6ee71b60b250", + "objectID": "4e533ef4-b9f4-44fc-9105-513de3bfe86d", "type": "lvl3", "url": "/docs/components/alert#with-icon", "hierarchy": { "lvl1": "Alert", "lvl2": "Radius", "lvl3": "With Icon" } }, { "content": "With Action", - "objectID": "b5fb5052-8e77-4765-9fe9-8e18ab4a8e2a", + "objectID": "cb1ee2ef-46f9-41f3-9d44-4085e952b5c6", "type": "lvl3", "url": "/docs/components/alert#with-action", "hierarchy": { "lvl1": "Alert", "lvl2": "With Icon", "lvl3": "With Action" } }, { "content": "Controlled Visibility", - "objectID": "f42bbcd7-6bfe-4f36-8d50-b77b75017b9f", + "objectID": "15746aac-55c0-40e5-85e2-5b42142f7835", "type": "lvl3", "url": "/docs/components/alert#controlled-visibility", "hierarchy": { @@ -572,7 +572,7 @@ }, { "content": "Custom Styles", - "objectID": "62463354-fc76-49c1-9de9-0fe333b79e24", + "objectID": "bb2c1a8b-8f35-4597-b961-8e6bd3e0ce8a", "type": "lvl3", "url": "/docs/components/alert#custom-styles", "hierarchy": { @@ -583,7 +583,7 @@ }, { "content": "Custom Implementation", - "objectID": "c631d704-75f8-49c8-8b2a-e141e613f0ee", + "objectID": "6b9043ea-4bf3-428b-a799-5f5173ba7fe5", "type": "lvl3", "url": "/docs/components/alert#custom-implementation", "hierarchy": { @@ -594,42 +594,42 @@ }, { "content": "Data Attributes", - "objectID": "f818f431-949d-46fb-9f57-a1f6d20bafef", + "objectID": "ec58acd2-040a-47c1-ab08-c5a09f85352d", "type": "lvl2", "url": "/docs/components/alert#data-attributes", "hierarchy": { "lvl1": "Alert", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Slots", - "objectID": "86e42e06-6142-40fe-a79e-b0e821b4f208", + "objectID": "004ab6c3-01d8-4974-b31a-fed42445f1e6", "type": "lvl3", "url": "/docs/components/alert#slots", "hierarchy": { "lvl1": "Alert", "lvl2": "Data Attributes", "lvl3": "Slots" } }, { "content": "Accessibility", - "objectID": "24b416fe-f272-4063-9f6b-e78adc4e9bfc", + "objectID": "4250a6ac-7eee-4708-a309-f610d6ddfdd3", "type": "lvl2", "url": "/docs/components/alert#accessibility", "hierarchy": { "lvl1": "Alert", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "c47e01e2-706d-48a6-94b7-a60653c33028", + "objectID": "38caf99f-8a72-460f-8bcd-db681a66e7d2", "type": "lvl2", "url": "/docs/components/alert#api", "hierarchy": { "lvl1": "Alert", "lvl2": "API", "lvl3": null } }, { "content": "Alert Props", - "objectID": "6bd34c5d-bf41-42e3-867b-70302d9561c2", + "objectID": "b5f744c0-6603-4ac0-a53c-ff246233d21a", "type": "lvl3", "url": "/docs/components/alert#alert-props", "hierarchy": { "lvl1": "Alert", "lvl2": "API", "lvl3": "Alert Props" } }, { "content": "Alert Events", - "objectID": "2707b926-f063-4e5f-827a-d92b816be70b", + "objectID": "c9276d71-ec89-4639-be9e-f1dda8a28e43", "type": "lvl3", "url": "/docs/components/alert#alert-events", "hierarchy": { @@ -640,14 +640,14 @@ }, { "content": "Autocomplete", - "objectID": "439255c2-25d2-4ff3-97df-b7be8c1c13f1", + "objectID": "92b5ef36-d9a3-4bbd-8e4a-6c997daa7868", "type": "lvl1", "url": "/docs/components/autocomplete", "hierarchy": { "lvl1": "Autocomplete" } }, { "content": "Installation", - "objectID": "811c1484-01fe-4d23-ab53-53f0e76acd5a", + "objectID": "63b6bb66-c3a1-431e-8328-936720cc42af", "type": "lvl2", "url": "/docs/components/autocomplete#installation", "hierarchy": { @@ -658,21 +658,21 @@ }, { "content": "Import", - "objectID": "23af30f6-120f-4706-865f-b7ea387d2ac7", + "objectID": "20309c3d-2cbf-4f9f-a6eb-236d286b5109", "type": "lvl2", "url": "/docs/components/autocomplete#import", "hierarchy": { "lvl1": "Autocomplete", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "b73376eb-d8cd-4e25-9e7d-92d32df83565", + "objectID": "985d5913-bbe9-4a39-83ea-9e7ae6cbf0f0", "type": "lvl2", "url": "/docs/components/autocomplete#usage", "hierarchy": { "lvl1": "Autocomplete", "lvl2": "Usage", "lvl3": null } }, { "content": "Dynamic items", - "objectID": "e4109521-8df3-441b-a371-b23ac3f146e8", + "objectID": "b71d2997-fc37-4860-9d88-51d247ffe758", "type": "lvl3", "url": "/docs/components/autocomplete#dynamic-items", "hierarchy": { @@ -683,7 +683,7 @@ }, { "content": "Disabled", - "objectID": "6f3d81c0-1d72-4d89-9d29-7ae00db6edc6", + "objectID": "36002c85-f81c-44ab-99f5-301f78f48d89", "type": "lvl3", "url": "/docs/components/autocomplete#disabled", "hierarchy": { @@ -694,7 +694,7 @@ }, { "content": "Disabled Items", - "objectID": "18a0b4e5-5bd9-4fbe-9aa0-90177a087af7", + "objectID": "8a5bd6ae-025e-4ea1-a29e-a1e7668c666f", "type": "lvl3", "url": "/docs/components/autocomplete#disabled-items", "hierarchy": { @@ -705,7 +705,7 @@ }, { "content": "Required", - "objectID": "e4fccf43-97c7-4375-a4da-0601c9e48646", + "objectID": "dfed0e22-1047-46e2-aa70-669ee4ec668e", "type": "lvl3", "url": "/docs/components/autocomplete#required", "hierarchy": { @@ -716,7 +716,7 @@ }, { "content": "Read Only", - "objectID": "7d395bf9-b39b-40ff-b364-c5243d23ec8e", + "objectID": "d887afba-7f1c-4de9-81b5-e3537e675e10", "type": "lvl3", "url": "/docs/components/autocomplete#read-only", "hierarchy": { @@ -727,7 +727,7 @@ }, { "content": "Sizes", - "objectID": "0db11920-fbc3-4535-a2d4-2de4e2c0112e", + "objectID": "90c0526a-bb66-4f2e-951b-9904f46540c9", "type": "lvl3", "url": "/docs/components/autocomplete#sizes", "hierarchy": { @@ -738,14 +738,14 @@ }, { "content": "Colors", - "objectID": "82d5bcf7-fd16-4582-a405-35200fd656ae", + "objectID": "c8f93c43-349f-4de7-af9a-fd3e83e2d9b6", "type": "lvl3", "url": "/docs/components/autocomplete#colors", "hierarchy": { "lvl1": "Autocomplete", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "dfe53696-4290-4375-b5f1-eb91ab24cedd", + "objectID": "bec61616-d097-483a-88b9-d8aabfeffe72", "type": "lvl3", "url": "/docs/components/autocomplete#variants", "hierarchy": { @@ -756,7 +756,7 @@ }, { "content": "Label Placements", - "objectID": "b74f8fa9-2b5d-47ef-8779-5f81d7c9a3e1", + "objectID": "b4e34d88-e8e0-4299-b8eb-0a80c596e653", "type": "lvl3", "url": "/docs/components/autocomplete#label-placements", "hierarchy": { @@ -767,7 +767,7 @@ }, { "content": "Start Content", - "objectID": "ff8f9374-2aa3-4b79-997f-d7f2bc6fc179", + "objectID": "e79b991f-b113-489a-ad32-89f57c21cdf0", "type": "lvl3", "url": "/docs/components/autocomplete#start-content", "hierarchy": { @@ -778,7 +778,7 @@ }, { "content": "Item Start & End Content", - "objectID": "9b5c456c-709b-4f00-95c6-05b9369d8b09", + "objectID": "da35ba84-83b8-49f1-9cad-17d51e6ffd9a", "type": "lvl3", "url": "/docs/components/autocomplete#item-start--end-content", "hierarchy": { @@ -789,7 +789,7 @@ }, { "content": "Custom Value", - "objectID": "d98a8939-b977-40c7-84d6-ddda65a29e36", + "objectID": "72def1b0-046a-48ba-8ecb-29bb741386a0", "type": "lvl3", "url": "/docs/components/autocomplete#custom-value", "hierarchy": { @@ -800,7 +800,7 @@ }, { "content": "Custom Selector Icon", - "objectID": "eaba888c-7fc7-4e1d-b49b-88569794de2c", + "objectID": "f5e096cb-aa4f-402a-a2e0-2810222a93fe", "type": "lvl3", "url": "/docs/components/autocomplete#custom-selector-icon", "hierarchy": { @@ -811,7 +811,7 @@ }, { "content": "Without Scroll Shadow", - "objectID": "a53ac55d-37a4-48b3-a1a1-f41d7f87b3d0", + "objectID": "a24a7528-0d78-45ee-9983-c3de04322a04", "type": "lvl3", "url": "/docs/components/autocomplete#without-scroll-shadow", "hierarchy": { @@ -822,7 +822,7 @@ }, { "content": "With Description", - "objectID": "48253db8-0bfb-44b0-82ae-e56014497217", + "objectID": "7709f17f-59e7-47bd-9d21-81dde139fb4f", "type": "lvl3", "url": "/docs/components/autocomplete#with-description", "hierarchy": { @@ -833,7 +833,7 @@ }, { "content": "With Error Message", - "objectID": "ae1988a9-c5c0-438b-be97-2d1ebc187624", + "objectID": "9448deb8-1803-40ac-a9e5-95be7deeca35", "type": "lvl3", "url": "/docs/components/autocomplete#with-error-message", "hierarchy": { @@ -844,7 +844,7 @@ }, { "content": "Events", - "objectID": "d630e0f4-0424-4a3f-9f43-59b069ff7b22", + "objectID": "2babd0b4-3160-4ab1-a159-5c2b9893351c", "type": "lvl3", "url": "/docs/components/autocomplete#events", "hierarchy": { @@ -855,7 +855,7 @@ }, { "content": "Controlled", - "objectID": "b1184288-2886-4c97-81f2-dc946763433d", + "objectID": "84347d36-7943-44f8-8a9a-a7901a245021", "type": "lvl3", "url": "/docs/components/autocomplete#controlled", "hierarchy": { @@ -866,7 +866,7 @@ }, { "content": "Fully Controlled", - "objectID": "677c90d1-d9be-407d-9f33-d18693c719d5", + "objectID": "89a9578f-0605-4276-8eec-3402b6ebde6f", "type": "lvl3", "url": "/docs/components/autocomplete#fully-controlled", "hierarchy": { @@ -877,7 +877,7 @@ }, { "content": "Custom Items", - "objectID": "dc881745-6374-4acb-8301-0207f6c62185", + "objectID": "9de47fda-78c2-4ff7-8134-0149c77e28e8", "type": "lvl3", "url": "/docs/components/autocomplete#custom-items", "hierarchy": { @@ -888,7 +888,7 @@ }, { "content": "Custom Empty Content Message", - "objectID": "ae47410b-7780-4c9c-9fd1-55ccfb4a1e3a", + "objectID": "a314ff1e-cd00-4539-86be-e17d8d6d5cfa", "type": "lvl3", "url": "/docs/components/autocomplete#custom-empty-content-message", "hierarchy": { @@ -899,7 +899,7 @@ }, { "content": "Custom Filtering", - "objectID": "bcbf50ba-1a2c-4344-9986-07eec076e353", + "objectID": "d4400fec-524d-4ca2-a94b-9c91506d3f20", "type": "lvl3", "url": "/docs/components/autocomplete#custom-filtering", "hierarchy": { @@ -910,7 +910,7 @@ }, { "content": "Asynchronous Filtering", - "objectID": "6b6c3589-d751-446d-8c20-6b151d2f0a5c", + "objectID": "59145cbc-f1bd-4871-b531-d83ee050a81b", "type": "lvl3", "url": "/docs/components/autocomplete#asynchronous-filtering", "hierarchy": { @@ -921,7 +921,7 @@ }, { "content": "Asynchronous Loading", - "objectID": "f0136e41-dabf-492a-8cfa-b176db0518fd", + "objectID": "0bc5b257-4378-4e2a-a338-860dbf74c495", "type": "lvl3", "url": "/docs/components/autocomplete#asynchronous-loading", "hierarchy": { @@ -932,7 +932,7 @@ }, { "content": "With Sections", - "objectID": "614eb3cc-be19-4022-959e-172b33b3a0cd", + "objectID": "b741bb7b-39f1-4ee1-8cd2-d679789625da", "type": "lvl3", "url": "/docs/components/autocomplete#with-sections", "hierarchy": { @@ -943,7 +943,7 @@ }, { "content": "Custom Sections Style", - "objectID": "bcf4db3d-c473-4f88-84be-8c35598119f2", + "objectID": "fdc2c191-10e4-4c2a-a578-1afe6c41d465", "type": "lvl3", "url": "/docs/components/autocomplete#custom-sections-style", "hierarchy": { @@ -954,7 +954,7 @@ }, { "content": "Customizing the Autocomplete", - "objectID": "0887b476-dea3-4d3c-afad-b96a992f2f5f", + "objectID": "c138e463-d1fa-4afd-9e31-945f2f0f1e16", "type": "lvl3", "url": "/docs/components/autocomplete#customizing-the-autocomplete", "hierarchy": { @@ -965,14 +965,14 @@ }, { "content": "Slots", - "objectID": "14bc5069-a9a6-441e-8404-036f8346eeb5", + "objectID": "d0552374-9aaf-4882-a095-d05d7d3f854d", "type": "lvl2", "url": "/docs/components/autocomplete#slots", "hierarchy": { "lvl1": "Autocomplete", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "97f7585f-c8ab-4cfb-96aa-4d777b480af0", + "objectID": "073e9b42-4f7c-4000-b6bc-40dcf52a8447", "type": "lvl2", "url": "/docs/components/autocomplete#data-attributes", "hierarchy": { @@ -983,7 +983,7 @@ }, { "content": "Accessibility", - "objectID": "9f4af480-d7ed-4e83-80cc-5059bcb2c161", + "objectID": "3acfd78a-d56a-42ba-8dab-24eab095a4a9", "type": "lvl2", "url": "/docs/components/autocomplete#accessibility", "hierarchy": { @@ -994,14 +994,14 @@ }, { "content": "API", - "objectID": "cedf2e78-7a9b-4e0b-a182-ad46683d91da", + "objectID": "0cc9d185-ab5b-4448-a874-5c7b35eccb98", "type": "lvl2", "url": "/docs/components/autocomplete#api", "hierarchy": { "lvl1": "Autocomplete", "lvl2": "API", "lvl3": null } }, { "content": "Autocomplete Props", - "objectID": "754dd743-ca16-4bf8-9118-0d6fce255466", + "objectID": "4a672be8-a66c-4898-96c1-21edf65b8224", "type": "lvl3", "url": "/docs/components/autocomplete#autocomplete-props", "hierarchy": { @@ -1012,7 +1012,7 @@ }, { "content": "Autocomplete Events", - "objectID": "5d6e2aa2-a165-480d-a3ba-18c3bc65c8d8", + "objectID": "2935105e-aa83-466b-97ce-008b44bdf2b5", "type": "lvl3", "url": "/docs/components/autocomplete#autocomplete-events", "hierarchy": { @@ -1023,7 +1023,7 @@ }, { "content": "AutocompleteItem Props", - "objectID": "a938d33e-774a-45bd-8490-c97b9d0f49a7", + "objectID": "e113f234-a368-4464-9301-cc3346ff2043", "type": "lvl3", "url": "/docs/components/autocomplete#autocompleteitem-props", "hierarchy": { @@ -1034,7 +1034,7 @@ }, { "content": "AutocompleteItem Events", - "objectID": "e1b5e1c0-17dd-4ceb-9ab7-ebd2ba1f884b", + "objectID": "432ff3a9-6b5b-4658-9758-bb6d8ca34097", "type": "lvl3", "url": "/docs/components/autocomplete#autocompleteitem-events", "hierarchy": { @@ -1045,7 +1045,7 @@ }, { "content": "AutocompleteSection Props", - "objectID": "34d1eb47-663a-41d3-9e34-42d25617b007", + "objectID": "f0910908-40be-49bb-bf1c-f5d5efc79a4b", "type": "lvl3", "url": "/docs/components/autocomplete#autocompletesection-props", "hierarchy": { @@ -1056,7 +1056,7 @@ }, { "content": "Types", - "objectID": "331a3de2-5d1f-4e0e-8ba6-f179dfa17f34", + "objectID": "dbfd3ebf-2e7a-4845-8c6d-9a592fcee05d", "type": "lvl3", "url": "/docs/components/autocomplete#types", "hierarchy": { @@ -1067,77 +1067,77 @@ }, { "content": "Menu Trigger Action", - "objectID": "fc7c08d0-515e-4915-8998-4fd81d808061", + "objectID": "b388e4e4-6264-42de-ac03-7a1b81d2cd21", "type": "lvl4", "url": "/docs/components/autocomplete#menu-trigger-action", "hierarchy": { "lvl1": "Autocomplete", "lvl2": "Types", "lvl3": null } }, { "content": "Avatar", - "objectID": "36b3a66f-1591-477a-8dc6-5cef4c50b56a", + "objectID": "bfda1306-84f5-460b-a257-9ee1aa68e4d0", "type": "lvl1", "url": "/docs/components/avatar", "hierarchy": { "lvl1": "Avatar" } }, { "content": "Installation", - "objectID": "221a240b-6f79-4c6b-836b-7de55ac79d47", + "objectID": "7f921771-09db-4446-b79f-60b7434faa8b", "type": "lvl2", "url": "/docs/components/avatar#installation", "hierarchy": { "lvl1": "Avatar", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "487678ef-b5e3-4f5a-a6a4-25e8b96e36cd", + "objectID": "fb7d5ca0-8740-4ef6-afa4-41d6b8e3ae26", "type": "lvl2", "url": "/docs/components/avatar#import", "hierarchy": { "lvl1": "Avatar", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "25af01a7-0ee2-4248-bad3-4dd39c0965ba", + "objectID": "87be96c7-1608-4b52-97f0-edd60c87a8c8", "type": "lvl2", "url": "/docs/components/avatar#usage", "hierarchy": { "lvl1": "Avatar", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "9ffa9dba-6e6b-43c3-ab54-0dec81d8a4ba", + "objectID": "d3cdba78-7391-4369-a9d5-2394275472a3", "type": "lvl3", "url": "/docs/components/avatar#sizes", "hierarchy": { "lvl1": "Avatar", "lvl2": "Usage", "lvl3": "Sizes" } }, { "content": "Disabled", - "objectID": "a67f1977-6764-4e15-8873-56c659a9852f", + "objectID": "bbbd9829-b785-4ca4-9da0-53c75d658a2b", "type": "lvl3", "url": "/docs/components/avatar#disabled", "hierarchy": { "lvl1": "Avatar", "lvl2": "Sizes", "lvl3": "Disabled" } }, { "content": "Bordered", - "objectID": "e72171fa-7315-4ba4-9d5b-4c57105fe3a5", + "objectID": "b381bad5-a525-42d5-9737-8404cfc5978c", "type": "lvl3", "url": "/docs/components/avatar#bordered", "hierarchy": { "lvl1": "Avatar", "lvl2": "Disabled", "lvl3": "Bordered" } }, { "content": "Radius", - "objectID": "91de0a52-5cf8-4088-9b73-f8fbc7b86f5e", + "objectID": "265502a7-a6ef-4b8e-9e3e-b11f33241c42", "type": "lvl3", "url": "/docs/components/avatar#radius", "hierarchy": { "lvl1": "Avatar", "lvl2": "Bordered", "lvl3": "Radius" } }, { "content": "Colors", - "objectID": "9048d8d9-d203-4fa0-871e-536b516aa8db", + "objectID": "58b054cf-676d-49c3-9544-e83f01961871", "type": "lvl3", "url": "/docs/components/avatar#colors", "hierarchy": { "lvl1": "Avatar", "lvl2": "Radius", "lvl3": "Colors" } }, { "content": "Avatar Fallbacks", - "objectID": "8b1b1be3-9cbd-40a1-856d-beb942f99d52", + "objectID": "2efb3252-a361-4058-8625-286343096b65", "type": "lvl3", "url": "/docs/components/avatar#avatar-fallbacks", "hierarchy": { @@ -1148,7 +1148,7 @@ }, { "content": "Custom Fallback", - "objectID": "8f8ecf45-69e9-4970-ab5c-8646dadc87ea", + "objectID": "07d6d7fa-9d1a-411d-ae11-ccc435ae64ce", "type": "lvl3", "url": "/docs/components/avatar#custom-fallback", "hierarchy": { @@ -1159,7 +1159,7 @@ }, { "content": "Custom Implementation", - "objectID": "832be9d3-d876-4f3f-95a5-9a5715434d8a", + "objectID": "a1a1686f-b22e-48dc-b81a-7f9e2f9cf366", "type": "lvl3", "url": "/docs/components/avatar#custom-implementation", "hierarchy": { @@ -1170,7 +1170,7 @@ }, { "content": "Custom initials logic", - "objectID": "a223f56b-0bd0-4f78-8718-7046ae98f16e", + "objectID": "037a8f5e-e9d8-4724-a00e-a92290eceea3", "type": "lvl3", "url": "/docs/components/avatar#custom-initials-logic", "hierarchy": { @@ -1181,14 +1181,14 @@ }, { "content": "Avatar Group", - "objectID": "1e1b3280-e9d8-4933-aa1f-ad5bfe9b2338", + "objectID": "ca35209a-709b-491f-8b6b-6047f333e618", "type": "lvl2", "url": "/docs/components/avatar#avatar-group", "hierarchy": { "lvl1": "Avatar", "lvl2": "Avatar Group", "lvl3": null } }, { "content": "Group Disabled", - "objectID": "ecfcacbd-80ed-4d7b-b39f-877fdd490b5b", + "objectID": "f854ead3-fdc4-4f96-ac80-3d7c069ec889", "type": "lvl3", "url": "/docs/components/avatar#group-disabled", "hierarchy": { @@ -1199,7 +1199,7 @@ }, { "content": "Group Max Count", - "objectID": "1bdbd9ba-9ec8-4b37-9b7b-00161f008490", + "objectID": "c2d4fd17-a318-445b-831c-ad7bcaf8610c", "type": "lvl3", "url": "/docs/components/avatar#group-max-count", "hierarchy": { @@ -1210,7 +1210,7 @@ }, { "content": "Group Total Count", - "objectID": "24e35655-b550-4a5c-9153-051c6e564442", + "objectID": "e5c8060b-f12c-4651-8f2e-692ff5482e59", "type": "lvl3", "url": "/docs/components/avatar#group-total-count", "hierarchy": { @@ -1221,7 +1221,7 @@ }, { "content": "Group Custom count", - "objectID": "828ed0f6-7efa-4151-be40-b3da17f61c81", + "objectID": "db96f56c-3a66-4a96-b97d-27625bc0eb36", "type": "lvl3", "url": "/docs/components/avatar#group-custom-count", "hierarchy": { @@ -1232,7 +1232,7 @@ }, { "content": "Group Grid", - "objectID": "ca275b99-fe6f-4c17-97a1-d749ada69cef", + "objectID": "dffa48a6-307d-46e8-a672-29589b604c6a", "type": "lvl3", "url": "/docs/components/avatar#group-grid", "hierarchy": { @@ -1243,7 +1243,7 @@ }, { "content": "Group Custom Implementation", - "objectID": "5de99526-dd99-48bf-aacc-934f106526d0", + "objectID": "6ebdc5b0-42b5-4a36-9432-00b1f2e45c61", "type": "lvl3", "url": "/docs/components/avatar#group-custom-implementation", "hierarchy": { @@ -1254,14 +1254,14 @@ }, { "content": "Slots", - "objectID": "3fbb6a6a-4b09-45cc-b334-3ad40c11ff36", + "objectID": "3b30971d-159f-4467-ba68-372214e2ce10", "type": "lvl2", "url": "/docs/components/avatar#slots", "hierarchy": { "lvl1": "Avatar", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Avatar Styles", - "objectID": "bba707ae-512d-4e7b-a618-2339d6fc5290", + "objectID": "22bc14cd-a3a5-4883-952e-9f6b24f95d8c", "type": "lvl3", "url": "/docs/components/avatar#custom-avatar-styles", "hierarchy": { @@ -1272,28 +1272,28 @@ }, { "content": "Data Attributes", - "objectID": "f6ed5290-016f-4396-ac0e-98f6178f4253", + "objectID": "535dfe9a-dc43-4d74-b6ac-997f712a117b", "type": "lvl2", "url": "/docs/components/avatar#data-attributes", "hierarchy": { "lvl1": "Avatar", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "API", - "objectID": "0804fc7b-a1e8-4a98-8a5b-e2881689521f", + "objectID": "52779b2c-b397-4684-8c7f-d125e0d68558", "type": "lvl2", "url": "/docs/components/avatar#api", "hierarchy": { "lvl1": "Avatar", "lvl2": "API", "lvl3": null } }, { "content": "Avatar Props", - "objectID": "0b965799-ea12-429e-82d3-717f038b809a", + "objectID": "e6a0890b-2087-492e-adbd-c52a49add0f2", "type": "lvl3", "url": "/docs/components/avatar#avatar-props", "hierarchy": { "lvl1": "Avatar", "lvl2": "API", "lvl3": "Avatar Props" } }, { "content": "Avatar Group Props", - "objectID": "5689c59f-4803-420e-8460-267c33238324", + "objectID": "9c77e7d9-1802-4af5-af12-05c1b05b2182", "type": "lvl3", "url": "/docs/components/avatar#avatar-group-props", "hierarchy": { @@ -1304,70 +1304,70 @@ }, { "content": "Badge", - "objectID": "5984f4ea-431a-41e6-9487-8be499498b65", + "objectID": "4abc28a1-751b-4df3-9aa4-30ad96677b36", "type": "lvl1", "url": "/docs/components/badge", "hierarchy": { "lvl1": "Badge" } }, { "content": "Installation", - "objectID": "f4f39786-87a7-47ac-9a77-dfb6e843172e", + "objectID": "137c9611-7596-4cf3-9b90-a72b462db8c6", "type": "lvl2", "url": "/docs/components/badge#installation", "hierarchy": { "lvl1": "Badge", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "10d92ffe-1596-4bdd-b36c-a18f828aac81", + "objectID": "fb243257-a6f8-4779-8b5d-428e4fb3e3ef", "type": "lvl2", "url": "/docs/components/badge#import", "hierarchy": { "lvl1": "Badge", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "d22c1493-2946-4bfc-bdfc-75ed721c8e98", + "objectID": "93a108f8-a2ba-4c7e-bd8a-dcbeee207d69", "type": "lvl2", "url": "/docs/components/badge#usage", "hierarchy": { "lvl1": "Badge", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "fe96fdc3-e37c-4530-9ec8-8c7cff662aa9", + "objectID": "4d0ee2c0-ab5d-43bb-a6f3-3f3dae5ad7ef", "type": "lvl3", "url": "/docs/components/badge#sizes", "hierarchy": { "lvl1": "Badge", "lvl2": "Usage", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "0b6c6b8e-c8ca-4c4a-83b5-cae053e18861", + "objectID": "b7f835c4-9c24-4d16-82b6-a68c9b5587cb", "type": "lvl3", "url": "/docs/components/badge#colors", "hierarchy": { "lvl1": "Badge", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "2ed6ca37-f9a2-42b2-9997-6ef3818a5a20", + "objectID": "28d5c98d-e45d-4391-9fc4-757f1b1b7bc6", "type": "lvl3", "url": "/docs/components/badge#variants", "hierarchy": { "lvl1": "Badge", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "Placements", - "objectID": "8c6830e5-62f1-40b5-8a3c-2b3359b5efcc", + "objectID": "b1b29fef-c87b-4f0a-abaa-ece7fd6e1301", "type": "lvl3", "url": "/docs/components/badge#placements", "hierarchy": { "lvl1": "Badge", "lvl2": "Variants", "lvl3": "Placements" } }, { "content": "Shapes", - "objectID": "09a13110-2300-48e8-8c61-b7167d0d79a2", + "objectID": "53afc2de-963d-40f8-96aa-ccc3afdc0380", "type": "lvl3", "url": "/docs/components/badge#shapes", "hierarchy": { "lvl1": "Badge", "lvl2": "Placements", "lvl3": "Shapes" } }, { "content": "Badge Visibility", - "objectID": "e2ec00c2-8f93-4c12-b7bc-ee8236ff1d9f", + "objectID": "4749796e-53e4-4e4a-a9c9-66931357b253", "type": "lvl3", "url": "/docs/components/badge#badge-visibility", "hierarchy": { @@ -1378,7 +1378,7 @@ }, { "content": "Content Examples", - "objectID": "dc19276e-3c6f-4c73-bf51-bbd9a12dcc5e", + "objectID": "0a01c51d-334b-456e-91c2-937ee3350949", "type": "lvl3", "url": "/docs/components/badge#content-examples", "hierarchy": { @@ -1389,7 +1389,7 @@ }, { "content": "Disable Outline", - "objectID": "70980c04-2075-40a4-a0d7-f9d3d827d034", + "objectID": "0631f6da-c0e8-416f-af2a-32861a007fd1", "type": "lvl3", "url": "/docs/components/badge#disable-outline", "hierarchy": { @@ -1400,7 +1400,7 @@ }, { "content": "Accessibility", - "objectID": "5f2f4202-eab6-4208-b077-08b78a98e068", + "objectID": "e8ae6815-17a1-4c5e-9e0e-495bf63b83a3", "type": "lvl3", "url": "/docs/components/badge#accessibility", "hierarchy": { @@ -1411,84 +1411,84 @@ }, { "content": "Slots", - "objectID": "7481ff6a-f532-493b-92bc-2efb61264ec4", + "objectID": "6a84c573-1c62-4351-8ced-60d4ebff08b5", "type": "lvl2", "url": "/docs/components/badge#slots", "hierarchy": { "lvl1": "Badge", "lvl2": "Slots", "lvl3": null } }, { "content": "API", - "objectID": "0922268a-6a10-4d5c-87b1-bb873d86f0cc", + "objectID": "9fe45b0e-2408-4a3b-8144-a4181a4ac36b", "type": "lvl2", "url": "/docs/components/badge#api", "hierarchy": { "lvl1": "Badge", "lvl2": "API", "lvl3": null } }, { "content": "Badge Props", - "objectID": "8e233e09-e7fb-4435-9d0e-42a0ac685e87", + "objectID": "d643971a-68a4-4d87-972b-792b01711b87", "type": "lvl3", "url": "/docs/components/badge#badge-props", "hierarchy": { "lvl1": "Badge", "lvl2": "API", "lvl3": "Badge Props" } }, { "content": "Breadcrumbs", - "objectID": "6b94ec77-de23-467a-b767-991b57edd49c", + "objectID": "aabd5dba-c1f5-4446-bfb7-6f5cec6f09e6", "type": "lvl1", "url": "/docs/components/breadcrumbs", "hierarchy": { "lvl1": "Breadcrumbs" } }, { "content": "Installation", - "objectID": "1fd4719f-fea7-4254-aa4e-966a29658f28", + "objectID": "ab89772c-c2c3-4051-92d5-8fcbd2578719", "type": "lvl2", "url": "/docs/components/breadcrumbs#installation", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "d3a6dcdd-e3f4-4f16-b1fa-51e39b9f57b4", + "objectID": "a53801a7-b253-4230-b8ff-fd4db24c88b6", "type": "lvl2", "url": "/docs/components/breadcrumbs#import", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "dc2c1a82-f2af-4b42-bdc5-ad3c0610380e", + "objectID": "df71cdf7-fc0c-445c-9b92-aa6c967b3f1e", "type": "lvl2", "url": "/docs/components/breadcrumbs#usage", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "0c95a1f8-d1e3-4ffb-9ecc-a00cc18b91db", + "objectID": "68676186-22e9-42a1-8027-97d9fa3eaea3", "type": "lvl3", "url": "/docs/components/breadcrumbs#disabled", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Sizes", - "objectID": "b9344d64-0248-45b7-8e6e-e52a67720fff", + "objectID": "b31e0463-36df-4951-bc19-5d5c07c9591a", "type": "lvl3", "url": "/docs/components/breadcrumbs#sizes", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Disabled", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "492ec6b4-3409-4715-8918-7b6affcf0a72", + "objectID": "f8b19b8e-020a-401c-9713-86eee7761fc2", "type": "lvl3", "url": "/docs/components/breadcrumbs#colors", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "60aafb4e-75f7-4aa7-932d-9824ec10cdb2", + "objectID": "0c62b9a3-34bc-4cd0-ae2c-a8f64a3433e4", "type": "lvl3", "url": "/docs/components/breadcrumbs#variants", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "Underlines", - "objectID": "56c0aa48-3bef-4374-8a5c-377378e1afec", + "objectID": "cac2e987-2423-487c-b912-04df9c1a5b66", "type": "lvl3", "url": "/docs/components/breadcrumbs#underlines", "hierarchy": { @@ -1499,7 +1499,7 @@ }, { "content": "Radius", - "objectID": "a505f0d1-c167-486d-b1bb-c0ab0ec38079", + "objectID": "df8721d5-4f3a-4564-9921-36848333d507", "type": "lvl3", "url": "/docs/components/breadcrumbs#radius", "hierarchy": { @@ -1510,14 +1510,14 @@ }, { "content": "Routing", - "objectID": "5db70abb-28d6-497b-bf2c-000bf173a0c4", + "objectID": "2e1b63d5-7664-4670-a093-30336447651f", "type": "lvl3", "url": "/docs/components/breadcrumbs#routing", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Radius", "lvl3": "Routing" } }, { "content": "Controlled", - "objectID": "99836a02-216b-4491-bfed-4f1161dbca65", + "objectID": "6750a0f6-7be4-46fa-9d52-a2d2a8b38eda", "type": "lvl3", "url": "/docs/components/breadcrumbs#controlled", "hierarchy": { @@ -1528,7 +1528,7 @@ }, { "content": "Menu Type", - "objectID": "02729be3-a3b2-4055-9ec7-44e57d265303", + "objectID": "df4b33fe-5dc4-4d4a-bf0c-1ebe41e770de", "type": "lvl3", "url": "/docs/components/breadcrumbs#menu-type", "hierarchy": { @@ -1539,7 +1539,7 @@ }, { "content": "Start & End Content", - "objectID": "485fbbe4-27ab-45c5-93bd-9d0d740a1d86", + "objectID": "e2d16f10-24c8-45fa-b73e-71c3ef74f9fa", "type": "lvl3", "url": "/docs/components/breadcrumbs#start--end-content", "hierarchy": { @@ -1550,7 +1550,7 @@ }, { "content": "Custom Separator", - "objectID": "cf058432-3776-4d95-9abe-999c76cb7031", + "objectID": "632a8a1e-759d-4d12-aed5-ec7492d716b2", "type": "lvl3", "url": "/docs/components/breadcrumbs#custom-separator", "hierarchy": { @@ -1561,7 +1561,7 @@ }, { "content": "Custom Items", - "objectID": "6403b894-bc42-4b94-b60e-cd5874f84fe3", + "objectID": "59c1495d-e829-4818-beec-a8571148d6e0", "type": "lvl3", "url": "/docs/components/breadcrumbs#custom-items", "hierarchy": { @@ -1572,7 +1572,7 @@ }, { "content": "Collapsing Items", - "objectID": "cceebebb-b744-4802-af6a-d143818c7b52", + "objectID": "4ea4d927-7b4a-462f-a09d-256707d75d02", "type": "lvl3", "url": "/docs/components/breadcrumbs#collapsing-items", "hierarchy": { @@ -1583,7 +1583,7 @@ }, { "content": "Customizing the Ellipsis Item", - "objectID": "5ad8cebb-567c-4a4c-b947-c9333876972d", + "objectID": "55388450-5aa8-4d15-b15d-974b7217c400", "type": "lvl3", "url": "/docs/components/breadcrumbs#customizing-the-ellipsis-item", "hierarchy": { @@ -1594,14 +1594,14 @@ }, { "content": "Slots", - "objectID": "be40061c-596f-4355-9738-15a48c58062d", + "objectID": "7f9d9ee9-3dd2-4cbf-8750-8917e0961d96", "type": "lvl2", "url": "/docs/components/breadcrumbs#slots", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Slots", "lvl3": null } }, { "content": "Customizing the Breadcrumbs Styles", - "objectID": "3d2ac8cf-4bb9-4501-b4d6-c18463c128df", + "objectID": "93545cb5-87b6-4c76-a43c-655ca91d846c", "type": "lvl3", "url": "/docs/components/breadcrumbs#customizing-the-breadcrumbs-styles", "hierarchy": { @@ -1612,7 +1612,7 @@ }, { "content": "Data Attributes", - "objectID": "7ae050cf-da44-4f59-9506-d5feea08d8d7", + "objectID": "c2b174d1-439a-4a47-80b8-d74f448c1e6c", "type": "lvl2", "url": "/docs/components/breadcrumbs#data-attributes", "hierarchy": { @@ -1623,7 +1623,7 @@ }, { "content": "Accessibility", - "objectID": "d2a8baf5-ed5a-436e-8987-4c48c2380ada", + "objectID": "0181d1cc-c8d9-4a95-8bfa-6ad7364e385e", "type": "lvl2", "url": "/docs/components/breadcrumbs#accessibility", "hierarchy": { @@ -1634,14 +1634,14 @@ }, { "content": "API", - "objectID": "c71437f2-987c-4d49-b507-fac35cf9c235", + "objectID": "e798076c-3c8a-4c7b-9fb2-3575f3e8fcf6", "type": "lvl2", "url": "/docs/components/breadcrumbs#api", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "API", "lvl3": null } }, { "content": "Breadcrumbs Props", - "objectID": "93be1629-6154-4841-adad-53570bad7237", + "objectID": "1e30bef7-53c1-4b7a-9868-18fb6e176665", "type": "lvl3", "url": "/docs/components/breadcrumbs#breadcrumbs-props", "hierarchy": { @@ -1652,7 +1652,7 @@ }, { "content": "Breadcrumbs Functions", - "objectID": "0c6feba9-b0f1-414f-945b-2d407f1006d2", + "objectID": "eba7734b-bd29-4adb-87ad-f30551a56228", "type": "lvl3", "url": "/docs/components/breadcrumbs#breadcrumbs-functions", "hierarchy": { @@ -1663,7 +1663,7 @@ }, { "content": "Breadcrumbs Events", - "objectID": "c1d2141c-9a5e-4dec-a061-4f3a4e9707f3", + "objectID": "92e7fff9-f520-467a-81b7-ed8bee7cef80", "type": "lvl3", "url": "/docs/components/breadcrumbs#breadcrumbs-events", "hierarchy": { @@ -1674,7 +1674,7 @@ }, { "content": "BreadcrumbItem Props", - "objectID": "24496670-5665-4860-a9bf-9c6bc252633b", + "objectID": "37888d00-0b1a-4450-8bb2-a331b52a8e7c", "type": "lvl3", "url": "/docs/components/breadcrumbs#breadcrumbitem-props", "hierarchy": { @@ -1685,7 +1685,7 @@ }, { "content": "BreadcrumbItem Events", - "objectID": "d5605726-3549-4b79-913d-646453da6021", + "objectID": "da5e5b9b-8b1b-4ffd-b9d1-37b79d45bf75", "type": "lvl3", "url": "/docs/components/breadcrumbs#breadcrumbitem-events", "hierarchy": { @@ -1696,7 +1696,7 @@ }, { "content": "Types", - "objectID": "0f18862e-5e29-4a1f-b4c1-9a96d9066891", + "objectID": "bae2f591-8921-4025-869e-68cb7aca6f95", "type": "lvl3", "url": "/docs/components/breadcrumbs#types", "hierarchy": { @@ -1707,98 +1707,98 @@ }, { "content": "Render Ellipsis Function", - "objectID": "c81b380f-4c3a-459a-bf3b-f5fb7c58beb9", + "objectID": "8642e8a8-b066-4f0e-81cc-3730e34a59ac", "type": "lvl4", "url": "/docs/components/breadcrumbs#render-ellipsis-function", "hierarchy": { "lvl1": "Breadcrumbs", "lvl2": "Types", "lvl3": null } }, { "content": "Button", - "objectID": "fbec66fa-dc20-4a18-8a2f-84b0e81b2e69", + "objectID": "636a17a5-d3df-4364-8d74-0cfb0effa3f7", "type": "lvl1", "url": "/docs/components/button", "hierarchy": { "lvl1": "Button" } }, { "content": "Installation", - "objectID": "31dbd832-2e13-43a7-ab4c-56ff8e5b8cdb", + "objectID": "a5cd8de9-8ee6-4973-bba4-a7e66101b7e9", "type": "lvl2", "url": "/docs/components/button#installation", "hierarchy": { "lvl1": "Button", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "89805d70-6358-404f-a30f-45f725d374c5", + "objectID": "2d249294-b5b2-4ce9-8e4f-289a8b0a66b7", "type": "lvl2", "url": "/docs/components/button#import", "hierarchy": { "lvl1": "Button", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "182ba089-ec19-4db4-9082-9a752891c7f0", + "objectID": "e3ea000e-65bf-497e-93ea-6ea8b351b625", "type": "lvl2", "url": "/docs/components/button#usage", "hierarchy": { "lvl1": "Button", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "85801e97-2f71-4b99-836d-22ef27f0263d", + "objectID": "5f48c6e6-a0ad-455e-aaf5-aa8026f4a30f", "type": "lvl3", "url": "/docs/components/button#disabled", "hierarchy": { "lvl1": "Button", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Sizes", - "objectID": "ac108763-7d1a-4d37-87c1-cc7fd3ea8a07", + "objectID": "0ad8fea5-a812-4ce8-b4aa-f774d0391a9a", "type": "lvl3", "url": "/docs/components/button#sizes", "hierarchy": { "lvl1": "Button", "lvl2": "Disabled", "lvl3": "Sizes" } }, { "content": "Radius", - "objectID": "72ec68ee-013d-44f9-ba76-6e3254b04694", + "objectID": "3d734deb-7b61-4305-aac2-a29416587c60", "type": "lvl3", "url": "/docs/components/button#radius", "hierarchy": { "lvl1": "Button", "lvl2": "Sizes", "lvl3": "Radius" } }, { "content": "Colors", - "objectID": "21e27efb-5a63-4807-a68d-b042b63c170d", + "objectID": "2e2626f2-d682-474d-9e6e-4a9c342ba45b", "type": "lvl3", "url": "/docs/components/button#colors", "hierarchy": { "lvl1": "Button", "lvl2": "Radius", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "0d82b69e-27dc-4055-b35e-6c8d87df02c7", + "objectID": "807c08c8-d657-4184-a134-83ad95676290", "type": "lvl3", "url": "/docs/components/button#variants", "hierarchy": { "lvl1": "Button", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "Loading", - "objectID": "48ce78ee-0220-448b-90cf-127c7afe169f", + "objectID": "8b1caa7a-a393-4ed8-9aaf-dc85d68aca1a", "type": "lvl3", "url": "/docs/components/button#loading", "hierarchy": { "lvl1": "Button", "lvl2": "Variants", "lvl3": "Loading" } }, { "content": "With Icons", - "objectID": "ffbb3b87-35b8-4f5e-9a79-7eb552980ae8", + "objectID": "694a81c8-65e7-4bc6-8efb-bb0d8dfaa302", "type": "lvl3", "url": "/docs/components/button#with-icons", "hierarchy": { "lvl1": "Button", "lvl2": "Loading", "lvl3": "With Icons" } }, { "content": "Icon Only", - "objectID": "7b074eee-a250-45b1-a442-63161946b45a", + "objectID": "9bd496e4-23cd-404d-80ef-af3049557cff", "type": "lvl3", "url": "/docs/components/button#icon-only", "hierarchy": { "lvl1": "Button", "lvl2": "With Icons", "lvl3": "Icon Only" } }, { "content": "Custom Styles", - "objectID": "56deb0d8-ebab-4166-a8b5-2a514c6ce5e2", + "objectID": "6e51f1f1-63d9-4ae5-8de2-bf222bb1ab0f", "type": "lvl3", "url": "/docs/components/button#custom-styles", "hierarchy": { @@ -1809,7 +1809,7 @@ }, { "content": "Custom Implementation", - "objectID": "1f0b7b5c-ea7f-4050-8e74-fc33957c3373", + "objectID": "aeb5aa50-8438-41b2-9474-0973a7ccb646", "type": "lvl3", "url": "/docs/components/button#custom-implementation", "hierarchy": { @@ -1820,14 +1820,14 @@ }, { "content": "Button Group", - "objectID": "e28ff951-8175-4e05-8fb9-7a665ffb87d9", + "objectID": "fb1abace-e6fa-48fb-b06d-b76d75ea407e", "type": "lvl2", "url": "/docs/components/button#button-group", "hierarchy": { "lvl1": "Button", "lvl2": "Button Group", "lvl3": null } }, { "content": "Group Disabled", - "objectID": "9b729bbf-83a8-4b71-b9c2-f3ae1740c177", + "objectID": "aff74cb8-776e-4475-8f39-4e0851e9398e", "type": "lvl3", "url": "/docs/components/button#group-disabled", "hierarchy": { @@ -1838,7 +1838,7 @@ }, { "content": "Group Use case", - "objectID": "48ef3310-7dd8-46e7-a582-0a4080d52249", + "objectID": "0290fa69-01cd-449d-b957-171895af7754", "type": "lvl3", "url": "/docs/components/button#group-use-case", "hierarchy": { @@ -1849,35 +1849,35 @@ }, { "content": "Data Attributes", - "objectID": "ffe51d9c-42a6-447d-9ad9-3c83db61ddcd", + "objectID": "e0ec7b2c-e671-486c-b343-461f3fbeb0ed", "type": "lvl2", "url": "/docs/components/button#data-attributes", "hierarchy": { "lvl1": "Button", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "224b83ea-194a-4c85-b212-bfa328163764", + "objectID": "57a2e075-d473-4390-89c8-b6ef26d49113", "type": "lvl2", "url": "/docs/components/button#accessibility", "hierarchy": { "lvl1": "Button", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "ebbcf928-342a-49dd-b5c0-6c95a4f037a7", + "objectID": "e223a152-f9f5-4c25-b782-162b93193489", "type": "lvl2", "url": "/docs/components/button#api", "hierarchy": { "lvl1": "Button", "lvl2": "API", "lvl3": null } }, { "content": "Button Props", - "objectID": "2b7ee671-2fad-459e-b3ae-42827b6024ee", + "objectID": "98ddc1a7-e648-49fd-b546-fc32bc8b0d54", "type": "lvl3", "url": "/docs/components/button#button-props", "hierarchy": { "lvl1": "Button", "lvl2": "API", "lvl3": "Button Props" } }, { "content": "Button Events", - "objectID": "61620465-4bfd-4106-9219-ca427caa7954", + "objectID": "842d7635-9a8c-4975-954f-eebc64b0bc43", "type": "lvl3", "url": "/docs/components/button#button-events", "hierarchy": { @@ -1888,7 +1888,7 @@ }, { "content": "Button Group Props", - "objectID": "6d377d83-7457-40fe-b607-55d393a6daa3", + "objectID": "61300b33-f71e-468d-84d4-e336cbf6c3da", "type": "lvl3", "url": "/docs/components/button#button-group-props", "hierarchy": { @@ -1899,49 +1899,49 @@ }, { "content": "Calendar", - "objectID": "20b2e4c5-786e-46b5-92a7-4dc0014ed83f", + "objectID": "7e67a75b-151c-49d8-a50a-fd0bf579fe84", "type": "lvl1", "url": "/docs/components/calendar", "hierarchy": { "lvl1": "Calendar" } }, { "content": "Installation", - "objectID": "54807b64-0a84-4ec1-96de-f5f0bf97e45c", + "objectID": "4c14a419-7c6b-4820-822f-d6cf199061fb", "type": "lvl2", "url": "/docs/components/calendar#installation", "hierarchy": { "lvl1": "Calendar", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "54d4b7fe-8525-4a71-b74d-d7f2fccc92a0", + "objectID": "20192288-5eff-413d-b3ef-8e0aa06a7e52", "type": "lvl2", "url": "/docs/components/calendar#import", "hierarchy": { "lvl1": "Calendar", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "e885136d-a1da-4263-b881-59268e213616", + "objectID": "9d6f36ca-0f80-461d-9aeb-0c889d934a40", "type": "lvl2", "url": "/docs/components/calendar#usage", "hierarchy": { "lvl1": "Calendar", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "cd664592-6fae-4961-8caa-c39e142487d1", + "objectID": "bcbba9a3-3e76-4ed8-9c4b-ebc334e68d28", "type": "lvl3", "url": "/docs/components/calendar#disabled", "hierarchy": { "lvl1": "Calendar", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Read Only", - "objectID": "08a408e6-fd80-4eba-b364-ef4f9e06ee5d", + "objectID": "b76958cd-542d-4c54-8ae5-954ac2c0c78a", "type": "lvl3", "url": "/docs/components/calendar#read-only", "hierarchy": { "lvl1": "Calendar", "lvl2": "Disabled", "lvl3": "Read Only" } }, { "content": "Controlled", - "objectID": "fa3c46fc-265d-4f1c-8e2b-be7b064c56d5", + "objectID": "b4e3bb29-2732-40ad-8a93-2d2ed1ceb9fa", "type": "lvl3", "url": "/docs/components/calendar#controlled", "hierarchy": { @@ -1952,7 +1952,7 @@ }, { "content": "Min Date Value", - "objectID": "5d8b8ebe-2437-4b1a-bb8b-20abbd56484a", + "objectID": "a4ff28c5-6a94-4ec4-8b71-5d9ea11796d7", "type": "lvl3", "url": "/docs/components/calendar#min-date-value", "hierarchy": { @@ -1963,7 +1963,7 @@ }, { "content": "Max Date Value", - "objectID": "e0961b9e-e812-4a77-91ba-e25f79075b87", + "objectID": "93711ec2-fd30-4e1b-bf01-f2326b9566a7", "type": "lvl3", "url": "/docs/components/calendar#max-date-value", "hierarchy": { @@ -1974,7 +1974,7 @@ }, { "content": "Unavailable Dates", - "objectID": "0830fda3-a988-4e8c-adc5-67d5405ebc4f", + "objectID": "fa607d20-d977-4a6d-b7a5-992eebb969fe", "type": "lvl3", "url": "/docs/components/calendar#unavailable-dates", "hierarchy": { @@ -1985,7 +1985,7 @@ }, { "content": "Controlled Focused Value", - "objectID": "7753001b-18b0-45cb-a9ef-a0c12175f474", + "objectID": "22df9bda-8e86-4b36-b7ce-7e6929f4f2f1", "type": "lvl3", "url": "/docs/components/calendar#controlled-focused-value", "hierarchy": { @@ -1996,7 +1996,7 @@ }, { "content": "Invalid Date", - "objectID": "7145cc4c-c53e-43bf-801e-cecfc9028376", + "objectID": "1b94b6e8-0f56-4141-b82f-b6b2cac56189", "type": "lvl3", "url": "/docs/components/calendar#invalid-date", "hierarchy": { @@ -2007,7 +2007,7 @@ }, { "content": "With Month And Year Picker", - "objectID": "561bbc2f-0913-4ca3-b078-b914e2081a0a", + "objectID": "b8efed13-0b91-4424-80c7-e38501e4947e", "type": "lvl3", "url": "/docs/components/calendar#with-month-and-year-picker", "hierarchy": { @@ -2018,7 +2018,7 @@ }, { "content": "International Calendars", - "objectID": "0ed78138-9dfd-4f38-8ce8-2faa33872ef7", + "objectID": "44dbf560-6faf-4aef-a237-1749078b1008", "type": "lvl3", "url": "/docs/components/calendar#international-calendars", "hierarchy": { @@ -2029,7 +2029,7 @@ }, { "content": "Visible Months", - "objectID": "2a8f977e-531a-459f-894e-507d79585cfe", + "objectID": "b881fb26-aff3-47e6-bc4b-e30654c0ade9", "type": "lvl3", "url": "/docs/components/calendar#visible-months", "hierarchy": { @@ -2040,7 +2040,7 @@ }, { "content": "Page Behaviour", - "objectID": "8ddef650-a9ae-47e7-8a5b-962627ab2d91", + "objectID": "7f291fbb-7524-435c-a60d-2c915a48bc16", "type": "lvl3", "url": "/docs/components/calendar#page-behaviour", "hierarchy": { @@ -2051,7 +2051,7 @@ }, { "content": "Presets", - "objectID": "85b8972d-e558-496b-a4be-98a6d12d4fe4", + "objectID": "7e0664df-a140-4f60-80b1-8f9796bfc1e3", "type": "lvl3", "url": "/docs/components/calendar#presets", "hierarchy": { @@ -2062,42 +2062,42 @@ }, { "content": "Slots", - "objectID": "20f99bb0-7117-408c-b316-b8bca3a7039f", + "objectID": "c97b17cb-4138-4eef-a838-3a8d70a32393", "type": "lvl2", "url": "/docs/components/calendar#slots", "hierarchy": { "lvl1": "Calendar", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "511e7a9b-2e37-4c04-a039-412b15b58f10", + "objectID": "7ae6abcd-35b4-4752-96f5-8bec287fe251", "type": "lvl2", "url": "/docs/components/calendar#data-attributes", "hierarchy": { "lvl1": "Calendar", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "6342754f-f3c8-4cdf-8edc-cec593bafe09", + "objectID": "67757869-1aa2-44f7-b3b7-1ec6c0bfeb57", "type": "lvl2", "url": "/docs/components/calendar#accessibility", "hierarchy": { "lvl1": "Calendar", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "92f143b9-1777-45e6-9cf5-84e9bf6de419", + "objectID": "33aaac3b-e931-43aa-8d69-3870bfa3c420", "type": "lvl2", "url": "/docs/components/calendar#api", "hierarchy": { "lvl1": "Calendar", "lvl2": "API", "lvl3": null } }, { "content": "Calendar Props", - "objectID": "893df0b3-00b8-4608-8f55-2b8e72429109", + "objectID": "9a7df0d2-2fcf-4f95-87b3-62d040d5de4d", "type": "lvl3", "url": "/docs/components/calendar#calendar-props", "hierarchy": { "lvl1": "Calendar", "lvl2": "API", "lvl3": "Calendar Props" } }, { "content": "Calendar Events", - "objectID": "94e2d309-bd75-44bb-b09a-ce6e469cfa37", + "objectID": "eb41e537-bee4-4a02-975b-a44334ec1c1d", "type": "lvl3", "url": "/docs/components/calendar#calendar-events", "hierarchy": { @@ -2108,7 +2108,7 @@ }, { "content": "Types", - "objectID": "6a2c592f-507c-48ba-b107-a8c988b14010", + "objectID": "f0d84e72-4428-4d47-aae8-d1d6d3554522", "type": "lvl3", "url": "/docs/components/calendar#types", "hierarchy": { @@ -2119,49 +2119,49 @@ }, { "content": "Supported Calendars", - "objectID": "e31f997e-1ada-46c7-8ba1-df3f532e2738", + "objectID": "54e2f58f-c912-410c-aeb0-986f9e692672", "type": "lvl4", "url": "/docs/components/calendar#supported-calendars", "hierarchy": { "lvl1": "Calendar", "lvl2": "Types", "lvl3": null } }, { "content": "Card", - "objectID": "3116df77-ebe8-42b2-b559-0adafb008908", + "objectID": "65049198-612a-4135-97cf-51e2c13c0ea1", "type": "lvl1", "url": "/docs/components/card", "hierarchy": { "lvl1": "Card" } }, { "content": "Installation", - "objectID": "1768f9ca-1108-43bc-9196-6ec5b4efce66", + "objectID": "44a51c6a-1bdd-49fe-8ae5-0c930fdb30a5", "type": "lvl2", "url": "/docs/components/card#installation", "hierarchy": { "lvl1": "Card", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "2feb771b-500c-4274-b46a-507ec73d724b", + "objectID": "9dc17c6d-9ace-498b-bbe5-a5d5392f1777", "type": "lvl2", "url": "/docs/components/card#import", "hierarchy": { "lvl1": "Card", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "f7b4d6a2-bee8-4267-b1ae-483bc299fbde", + "objectID": "c0cc38b1-78bb-4613-879a-874559ab0dc3", "type": "lvl2", "url": "/docs/components/card#usage", "hierarchy": { "lvl1": "Card", "lvl2": "Usage", "lvl3": null } }, { "content": "With Divider", - "objectID": "c6e9218d-8c26-4890-b3d2-261068e03076", + "objectID": "1724f073-9482-4d4a-b4b1-e7eed18cfe46", "type": "lvl3", "url": "/docs/components/card#with-divider", "hierarchy": { "lvl1": "Card", "lvl2": "Usage", "lvl3": "With Divider" } }, { "content": "With Image", - "objectID": "faaadb56-5993-4483-8763-edfb7c28d8ce", + "objectID": "a5c62b2a-ab30-471a-9d21-69b178c5f0ea", "type": "lvl3", "url": "/docs/components/card#with-image", "hierarchy": { @@ -2172,7 +2172,7 @@ }, { "content": "Blurred Footer", - "objectID": "8f074dad-8af4-4cc5-be58-e8538448d4b1", + "objectID": "2bb68291-9af0-484b-a7f1-025688ec1649", "type": "lvl3", "url": "/docs/components/card#blurred-footer", "hierarchy": { @@ -2183,7 +2183,7 @@ }, { "content": "Composition", - "objectID": "e067afc0-654e-4e85-af1c-857824729edd", + "objectID": "59faaa84-37b2-4df6-bba0-dfe638df76a0", "type": "lvl3", "url": "/docs/components/card#composition", "hierarchy": { @@ -2194,7 +2194,7 @@ }, { "content": "Blurred Card", - "objectID": "40083d81-ce76-40bc-bbde-476026883142", + "objectID": "13ebddbb-8151-4b16-928c-3e2368bd80f7", "type": "lvl3", "url": "/docs/components/card#blurred-card", "hierarchy": { @@ -2205,7 +2205,7 @@ }, { "content": "Primary Action", - "objectID": "f077b9c0-a23c-4cd3-8977-00198bcfe31c", + "objectID": "2b1de537-3bab-4b65-90d4-d0a17b7a68fb", "type": "lvl3", "url": "/docs/components/card#primary-action", "hierarchy": { @@ -2216,7 +2216,7 @@ }, { "content": "Cover Image", - "objectID": "020b07f8-b3fd-4f2b-b060-8a9f979679a0", + "objectID": "5541acdf-7d4e-4959-9244-e925be351066", "type": "lvl3", "url": "/docs/components/card#cover-image", "hierarchy": { @@ -2227,49 +2227,49 @@ }, { "content": "Slots", - "objectID": "338d262c-4487-47eb-a8b1-5ab7bd2740fb", + "objectID": "c12defab-97c3-4977-9bc9-6d36db51e307", "type": "lvl2", "url": "/docs/components/card#slots", "hierarchy": { "lvl1": "Card", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "371fa6b3-5f41-4075-96a9-9e3189f748f0", + "objectID": "4eb21f33-5136-47f0-96c5-155a45e6b9ef", "type": "lvl2", "url": "/docs/components/card#data-attributes", "hierarchy": { "lvl1": "Card", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "API", - "objectID": "b65aace1-2ff8-40ae-bd3a-cda7728f0b31", + "objectID": "218f0d09-5502-4462-aa62-57947d5c9767", "type": "lvl2", "url": "/docs/components/card#api", "hierarchy": { "lvl1": "Card", "lvl2": "API", "lvl3": null } }, { "content": "Card Props", - "objectID": "728a09b2-62af-45e4-a476-2932cc6f132d", + "objectID": "b473b576-b309-4b46-91a6-0ec514627d68", "type": "lvl3", "url": "/docs/components/card#card-props", "hierarchy": { "lvl1": "Card", "lvl2": "API", "lvl3": "Card Props" } }, { "content": "Card Events", - "objectID": "d2e1cb5d-9651-4f60-ab5a-f611bf14d373", + "objectID": "43dbffa8-723a-4b79-a9b5-ecef0d080fb1", "type": "lvl3", "url": "/docs/components/card#card-events", "hierarchy": { "lvl1": "Card", "lvl2": "Card Props", "lvl3": "Card Events" } }, { "content": "Checkbox Group", - "objectID": "a5c2fdea-6a9c-4aee-8692-83f9ebe046d6", + "objectID": "c5839385-ff7a-4e3a-9330-8e6e3db97858", "type": "lvl1", "url": "/docs/components/checkbox-group", "hierarchy": { "lvl1": "Checkbox Group" } }, { "content": "Installation", - "objectID": "bbaa7b07-a733-417c-b435-3fa3473df22d", + "objectID": "5167cebc-da49-481c-b795-243b7a7a7ef8", "type": "lvl2", "url": "/docs/components/checkbox-group#installation", "hierarchy": { @@ -2280,21 +2280,21 @@ }, { "content": "Import", - "objectID": "83f73767-80d7-4785-a7c1-265349ff787c", + "objectID": "00aefa01-8d28-4bfc-adbf-629397a7c3a8", "type": "lvl2", "url": "/docs/components/checkbox-group#import", "hierarchy": { "lvl1": "Checkbox Group", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "4d8642e3-362c-44ec-bb69-71bace3af932", + "objectID": "cf6b95b4-28c1-47bf-bec1-3e57046bbbeb", "type": "lvl2", "url": "/docs/components/checkbox-group#usage", "hierarchy": { "lvl1": "Checkbox Group", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "a83e6b39-b6d1-4cec-8572-940e4a24e444", + "objectID": "b2b5f7ea-e5b2-44ae-99cd-b1c70de3cf4b", "type": "lvl3", "url": "/docs/components/checkbox-group#disabled", "hierarchy": { @@ -2305,7 +2305,7 @@ }, { "content": "Horizontal", - "objectID": "0e76a8a7-6d4b-4cb7-a8c3-4d4039bdc641", + "objectID": "e2e3dd47-3226-4dcd-9e63-b54780733d7a", "type": "lvl3", "url": "/docs/components/checkbox-group#horizontal", "hierarchy": { @@ -2316,7 +2316,7 @@ }, { "content": "Controlled", - "objectID": "79377f6f-1464-4a9b-bc2e-14cb742089a4", + "objectID": "1ba1497d-891a-4abd-99e4-d79e49ab6e76", "type": "lvl3", "url": "/docs/components/checkbox-group#controlled", "hierarchy": { @@ -2327,7 +2327,7 @@ }, { "content": "Invalid", - "objectID": "02e7df68-f67a-45e8-9a7d-3a0094b6cccf", + "objectID": "39f76863-74af-44e8-b902-58235cbd8423", "type": "lvl3", "url": "/docs/components/checkbox-group#invalid", "hierarchy": { @@ -2338,14 +2338,14 @@ }, { "content": "Slots", - "objectID": "5965e262-9419-42b9-9e73-38e6b1be4588", + "objectID": "e538d7e5-ea23-4a9a-a852-3fe8ad5c2dce", "type": "lvl2", "url": "/docs/components/checkbox-group#slots", "hierarchy": { "lvl1": "Checkbox Group", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "592dab17-e71e-4397-80a0-b74a3f114638", + "objectID": "db77190e-081f-4826-854f-78c7b167a5bf", "type": "lvl3", "url": "/docs/components/checkbox-group#custom-styles", "hierarchy": { @@ -2356,7 +2356,7 @@ }, { "content": "Custom Implementation", - "objectID": "f37c3140-f8dc-4f51-b486-097d89f11f8d", + "objectID": "65a476de-9ff8-4e17-a16e-b8e9585ad510", "type": "lvl3", "url": "/docs/components/checkbox-group#custom-implementation", "hierarchy": { @@ -2367,14 +2367,14 @@ }, { "content": "API", - "objectID": "62f2ae20-e57a-4c78-9813-76e452847f7c", + "objectID": "25ffc6f6-d450-4bc1-b215-fba851e02dce", "type": "lvl2", "url": "/docs/components/checkbox-group#api", "hierarchy": { "lvl1": "Checkbox Group", "lvl2": "API", "lvl3": null } }, { "content": "Checkbox Group Props", - "objectID": "45121d86-0c84-4caa-80b6-d94da6c97498", + "objectID": "dbc5fd0f-9b90-4cca-b2b9-e429a0281e5d", "type": "lvl3", "url": "/docs/components/checkbox-group#checkbox-group-props", "hierarchy": { @@ -2385,7 +2385,7 @@ }, { "content": "Checkbox Group Events", - "objectID": "e750225d-565b-44c2-aa88-ee77c6c5b89f", + "objectID": "54657878-b95f-4cac-bcf5-0c96b66e4b91", "type": "lvl3", "url": "/docs/components/checkbox-group#checkbox-group-events", "hierarchy": { @@ -2396,63 +2396,63 @@ }, { "content": "Checkbox", - "objectID": "9949bb37-3fd5-4b68-9b9e-a4a27ca8f5f2", + "objectID": "9ade6dfc-5aee-4ce0-b79f-09d8b2c9963e", "type": "lvl1", "url": "/docs/components/checkbox", "hierarchy": { "lvl1": "Checkbox" } }, { "content": "Installation", - "objectID": "afd75dd5-2904-4f4e-9347-68a3d289a3c2", + "objectID": "4be342bc-c8dd-4c10-ba6a-34404819672c", "type": "lvl2", "url": "/docs/components/checkbox#installation", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "75d41112-fffa-461e-b584-3592355ee1a8", + "objectID": "3af8bbf6-68b2-4920-9de6-f78eb8a4482a", "type": "lvl2", "url": "/docs/components/checkbox#import", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "534efc03-fa27-4a6f-a68f-3aff244acc21", + "objectID": "97a1a9c9-f865-4086-842e-fb3e751c6bc5", "type": "lvl2", "url": "/docs/components/checkbox#usage", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "6e765cde-89e8-4a1f-99e9-da9108edadaf", + "objectID": "7d0a8b21-4ce3-426e-9ff2-d22671d2d720", "type": "lvl3", "url": "/docs/components/checkbox#disabled", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Sizes", - "objectID": "83be847c-23bf-47c8-9b40-d19fd9613e4e", + "objectID": "7cad6327-b32e-41dd-938e-679d16f653fa", "type": "lvl3", "url": "/docs/components/checkbox#sizes", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Disabled", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "a75a1a8c-8483-48dd-9e34-d8a844f58b31", + "objectID": "2294241a-16e6-4dc2-ac22-bb4e2d754613", "type": "lvl3", "url": "/docs/components/checkbox#colors", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Radius", - "objectID": "981c2e55-a55c-4f4f-b49b-1c3c14d78723", + "objectID": "e7756bab-dfc5-4a47-b61c-476f7c0c93c5", "type": "lvl3", "url": "/docs/components/checkbox#radius", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Colors", "lvl3": "Radius" } }, { "content": "Indeterminate", - "objectID": "5e2468ef-f871-42a9-944b-5578aa7399b7", + "objectID": "60de6198-371e-440c-a142-e4d075f53a78", "type": "lvl3", "url": "/docs/components/checkbox#indeterminate", "hierarchy": { @@ -2463,7 +2463,7 @@ }, { "content": "Line Through", - "objectID": "bd4fbdd9-7cc3-4ca2-b7fd-2432373f175b", + "objectID": "edeeba2c-222b-46f6-a9c4-133af31c9437", "type": "lvl3", "url": "/docs/components/checkbox#line-through", "hierarchy": { @@ -2474,7 +2474,7 @@ }, { "content": "Custom Check Icon", - "objectID": "9f788f5f-0bc0-4d89-8205-693dd9207034", + "objectID": "16d04d27-be3b-4714-b629-9ec2299a2a1f", "type": "lvl3", "url": "/docs/components/checkbox#custom-check-icon", "hierarchy": { @@ -2485,7 +2485,7 @@ }, { "content": "Controlled", - "objectID": "f279ec73-b58d-4acb-a083-1da59c36f896", + "objectID": "052f180f-8ed8-4662-a65f-0364c89bada4", "type": "lvl3", "url": "/docs/components/checkbox#controlled", "hierarchy": { @@ -2496,14 +2496,14 @@ }, { "content": "Slots", - "objectID": "0b91e921-d27b-465f-9fff-4d33475d8550", + "objectID": "c4558c29-33ef-46eb-bcc9-3f0944ab806f", "type": "lvl2", "url": "/docs/components/checkbox#slots", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "c80e6415-6cd7-4809-8736-e1c5ca4f5d9e", + "objectID": "42b69a5a-7052-4979-a448-5f416d0a01ff", "type": "lvl3", "url": "/docs/components/checkbox#custom-styles", "hierarchy": { @@ -2514,7 +2514,7 @@ }, { "content": "Custom Implementation", - "objectID": "b91501fa-708c-4573-8336-af6777ccc489", + "objectID": "79ffeeaa-9039-4fd8-9e96-2e875bb75e0c", "type": "lvl3", "url": "/docs/components/checkbox#custom-implementation", "hierarchy": { @@ -2525,35 +2525,35 @@ }, { "content": "Data Attributes", - "objectID": "094f48d2-d376-48a3-b312-361f62eec125", + "objectID": "587efd75-fa9a-4fb4-b51e-474a03ea4ead", "type": "lvl2", "url": "/docs/components/checkbox#data-attributes", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "141dcb72-fa53-4237-8851-ff449e22dcba", + "objectID": "0ac75e75-0eb7-4fdc-bbfd-c41c1b5b5695", "type": "lvl2", "url": "/docs/components/checkbox#accessibility", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "572a4784-39b8-420b-b8f2-d0da7468c146", + "objectID": "46ec5b25-d042-4225-a23f-225bfe47a939", "type": "lvl2", "url": "/docs/components/checkbox#api", "hierarchy": { "lvl1": "Checkbox", "lvl2": "API", "lvl3": null } }, { "content": "Checkbox Props", - "objectID": "c2ef8efe-6807-4f7d-94e1-b2955bf249b7", + "objectID": "97478101-61a6-481b-9918-b9bef26ac61e", "type": "lvl3", "url": "/docs/components/checkbox#checkbox-props", "hierarchy": { "lvl1": "Checkbox", "lvl2": "API", "lvl3": "Checkbox Props" } }, { "content": "Checkbox Events", - "objectID": "6545e2f8-ca56-4eef-abd9-1958ba641978", + "objectID": "9e39ede6-be39-47cf-99de-c84281cb69d5", "type": "lvl3", "url": "/docs/components/checkbox#checkbox-events", "hierarchy": { @@ -2564,7 +2564,7 @@ }, { "content": "Types", - "objectID": "ba787da2-4a6a-4a48-90d0-217b06c7ab14", + "objectID": "e82b54e3-55ab-4704-a8d8-0eda854947bf", "type": "lvl3", "url": "/docs/components/checkbox#types", "hierarchy": { @@ -2575,77 +2575,77 @@ }, { "content": "Checkbox Icon Props", - "objectID": "48a9736f-ae32-47da-a619-5cf6e155b558", + "objectID": "2feb1c63-f022-4e34-9f38-d1a20754b6ca", "type": "lvl4", "url": "/docs/components/checkbox#checkbox-icon-props", "hierarchy": { "lvl1": "Checkbox", "lvl2": "Types", "lvl3": null } }, { "content": "Chip", - "objectID": "bec9071a-e8ec-4981-bc56-aa03719725b1", + "objectID": "ff1fbfda-10c7-4f8c-ae00-feacdcbcfa38", "type": "lvl1", "url": "/docs/components/chip", "hierarchy": { "lvl1": "Chip" } }, { "content": "Installation", - "objectID": "9cd942f9-4a7b-416e-9f3e-d7aee7c9eae4", + "objectID": "3682fa1c-2285-4ac9-889b-d0e98452686f", "type": "lvl2", "url": "/docs/components/chip#installation", "hierarchy": { "lvl1": "Chip", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "2728cf49-96bb-40ab-a064-97d30389ca59", + "objectID": "b478c50f-2de1-40a0-8fb9-03f910827ba3", "type": "lvl2", "url": "/docs/components/chip#import", "hierarchy": { "lvl1": "Chip", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "06270c2f-4d54-40d7-ae6e-ca9ad3f49a88", + "objectID": "04988b25-81b7-44a2-abd1-f1d420fef7ae", "type": "lvl2", "url": "/docs/components/chip#usage", "hierarchy": { "lvl1": "Chip", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "3979dd2a-b2e4-4de4-afe2-44317420d67f", + "objectID": "c0b1dfe0-07c0-4176-a9ed-e006f3b217f3", "type": "lvl3", "url": "/docs/components/chip#disabled", "hierarchy": { "lvl1": "Chip", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Sizes", - "objectID": "25cfdccd-7c96-4995-ae91-611f2f2c3fe7", + "objectID": "8ea54078-c7ed-46d3-89a6-f813b85c0f2d", "type": "lvl3", "url": "/docs/components/chip#sizes", "hierarchy": { "lvl1": "Chip", "lvl2": "Disabled", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "c7e13fd8-b789-4db1-b607-3176550a4201", + "objectID": "91b5975f-af1a-4ade-85f6-1b35af930b60", "type": "lvl3", "url": "/docs/components/chip#colors", "hierarchy": { "lvl1": "Chip", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Radius", - "objectID": "3b3d7712-52d1-45ae-bec7-c185f3ab885d", + "objectID": "b76bac22-4f44-42f1-a5ba-c95f4e9f1fe5", "type": "lvl3", "url": "/docs/components/chip#radius", "hierarchy": { "lvl1": "Chip", "lvl2": "Colors", "lvl3": "Radius" } }, { "content": "Variants", - "objectID": "fca3e0ec-75df-4d46-9f71-e2bbc0cb2c89", + "objectID": "03425227-108a-4c6c-9cd7-30cfdab2839c", "type": "lvl3", "url": "/docs/components/chip#variants", "hierarchy": { "lvl1": "Chip", "lvl2": "Radius", "lvl3": "Variants" } }, { "content": "Start & End Content", - "objectID": "d3bba183-9ce4-4ba5-bc9b-f68055aca5be", + "objectID": "8d7fd0a9-3e39-4700-808e-291e0c7b9216", "type": "lvl3", "url": "/docs/components/chip#start--end-content", "hierarchy": { @@ -2656,7 +2656,7 @@ }, { "content": "With Close Button", - "objectID": "e4a8c3b1-6a72-41db-ba55-99d09c2e583d", + "objectID": "b8c94f62-45f8-4d47-9ef5-b66e2a2af6d5", "type": "lvl3", "url": "/docs/components/chip#with-close-button", "hierarchy": { @@ -2667,7 +2667,7 @@ }, { "content": "With Avatar", - "objectID": "4912fde7-ac6d-45e3-b635-6156454e58a3", + "objectID": "16b41bf0-9aaa-49bb-97f4-d6a1e880805a", "type": "lvl3", "url": "/docs/components/chip#with-avatar", "hierarchy": { @@ -2678,7 +2678,7 @@ }, { "content": "List of Chips", - "objectID": "811c2d14-7dd5-482a-9ebc-0c8aa8fdcfc8", + "objectID": "04772919-26cc-412a-b9fb-a97f6ee10420", "type": "lvl3", "url": "/docs/components/chip#list-of-chips", "hierarchy": { @@ -2689,49 +2689,49 @@ }, { "content": "Slots", - "objectID": "0d409167-bf87-4d96-87fd-da524e97e461", + "objectID": "f506d21e-359f-4a42-8b80-8ef199cb8915", "type": "lvl2", "url": "/docs/components/chip#slots", "hierarchy": { "lvl1": "Chip", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "bb1590f3-aa29-4675-924d-5a37cb62b2f4", + "objectID": "06df9522-da47-4492-bed1-f7c6f6ded01f", "type": "lvl3", "url": "/docs/components/chip#custom-styles", "hierarchy": { "lvl1": "Chip", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "API", - "objectID": "1edd1cdd-b4e9-4caf-8601-9b27799bf3d8", + "objectID": "e0a4dad8-09ec-405b-ba1e-fb6943da345d", "type": "lvl2", "url": "/docs/components/chip#api", "hierarchy": { "lvl1": "Chip", "lvl2": "API", "lvl3": null } }, { "content": "Chip Props", - "objectID": "57912a59-9a5a-4c8b-8800-d52aa030501f", + "objectID": "ba60a4ea-b127-443e-8aab-723bd0f0bd90", "type": "lvl3", "url": "/docs/components/chip#chip-props", "hierarchy": { "lvl1": "Chip", "lvl2": "API", "lvl3": "Chip Props" } }, { "content": "Chip Events", - "objectID": "cc721be8-8fb4-43d7-a33a-7c1af4d6f4ef", + "objectID": "ef21a6a0-97a4-46dc-904d-f271402f6bb4", "type": "lvl3", "url": "/docs/components/chip#chip-events", "hierarchy": { "lvl1": "Chip", "lvl2": "Chip Props", "lvl3": "Chip Events" } }, { "content": "Circular Progress", - "objectID": "55a89901-e06e-4c6c-a1e9-c412b4ed796a", + "objectID": "85b89393-909a-4236-8f02-5f7ad59beec8", "type": "lvl1", "url": "/docs/components/circular-progress", "hierarchy": { "lvl1": "Circular Progress" } }, { "content": "Installation", - "objectID": "aba55597-e6a9-4fe5-b15b-7581dec24200", + "objectID": "46b7bec4-ac9b-4ada-837a-b8444ee41037", "type": "lvl2", "url": "/docs/components/circular-progress#installation", "hierarchy": { @@ -2742,21 +2742,21 @@ }, { "content": "Import", - "objectID": "b6cbf826-e318-49dd-a465-d7fce1eef4c4", + "objectID": "686d10bc-9616-45aa-8dbe-b4f44cd52e1d", "type": "lvl2", "url": "/docs/components/circular-progress#import", "hierarchy": { "lvl1": "Circular Progress", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "b64500a1-9c38-47e0-81bc-1baf7aaf5eec", + "objectID": "21cc825a-9857-4ba3-91c8-7794ba012ad0", "type": "lvl2", "url": "/docs/components/circular-progress#usage", "hierarchy": { "lvl1": "Circular Progress", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "41d02f61-289f-44d3-a39b-2e6ad408e9c1", + "objectID": "2ef16e47-417f-46ac-a2a5-e3d541944ec4", "type": "lvl3", "url": "/docs/components/circular-progress#sizes", "hierarchy": { @@ -2767,7 +2767,7 @@ }, { "content": "Colors", - "objectID": "57fbcd74-2355-428f-ae25-c92ea779b371", + "objectID": "04e7c1bf-ebc1-4f2a-b516-cec0d7824ef2", "type": "lvl3", "url": "/docs/components/circular-progress#colors", "hierarchy": { @@ -2778,7 +2778,7 @@ }, { "content": "With Label", - "objectID": "c178eef7-ea76-4546-84da-f3615d5c4b3e", + "objectID": "0830b349-d227-46d0-adbc-7f83a737cde5", "type": "lvl3", "url": "/docs/components/circular-progress#with-label", "hierarchy": { @@ -2789,7 +2789,7 @@ }, { "content": "With Value", - "objectID": "2b7b0e72-4d02-42d1-a99c-0254ed1ad016", + "objectID": "6a0af80a-47e4-4a71-96bb-6657585e94de", "type": "lvl3", "url": "/docs/components/circular-progress#with-value", "hierarchy": { @@ -2800,7 +2800,7 @@ }, { "content": "Value Formatting", - "objectID": "2e8f2238-9682-4195-b112-972bc8a0854b", + "objectID": "8416e8ee-d7a8-47ee-bc38-339ee6eff908", "type": "lvl3", "url": "/docs/components/circular-progress#value-formatting", "hierarchy": { @@ -2811,14 +2811,14 @@ }, { "content": "Slots", - "objectID": "930c79b5-8c05-4c74-be90-9037735f9bc9", + "objectID": "fc2da114-9133-4cb6-8467-c3815b68217a", "type": "lvl2", "url": "/docs/components/circular-progress#slots", "hierarchy": { "lvl1": "Circular Progress", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "0b4a4e97-c36e-4a04-ae67-e6f71919bbc3", + "objectID": "60af0d9a-4b18-499d-a33d-03c07e80555f", "type": "lvl3", "url": "/docs/components/circular-progress#custom-styles", "hierarchy": { @@ -2829,7 +2829,7 @@ }, { "content": "Data Attributes", - "objectID": "ce9cd3aa-fc4f-496d-9f24-b22e7b6aa873", + "objectID": "7a6948f8-fd23-4436-9560-343b00d48bd8", "type": "lvl2", "url": "/docs/components/circular-progress#data-attributes", "hierarchy": { @@ -2840,7 +2840,7 @@ }, { "content": "Accessibility", - "objectID": "3765232e-beff-4417-bac0-ee7e5e9ac001", + "objectID": "20bba578-b8bc-43df-ba23-4d6ff3772d0e", "type": "lvl2", "url": "/docs/components/circular-progress#accessibility", "hierarchy": { @@ -2851,14 +2851,14 @@ }, { "content": "API", - "objectID": "12c30fbf-3f24-4f29-a541-9d7a5285316d", + "objectID": "f3fd839c-a038-48bf-aa54-c6ccf0a987fb", "type": "lvl2", "url": "/docs/components/circular-progress#api", "hierarchy": { "lvl1": "Circular Progress", "lvl2": "API", "lvl3": null } }, { "content": "Circular Progress Props", - "objectID": "a84c1383-b55d-462f-be27-2133f4b0c9c1", + "objectID": "70d37152-a50d-4f53-9f0d-433a2c6fdeb0", "type": "lvl3", "url": "/docs/components/circular-progress#circular-progress-props", "hierarchy": { @@ -2869,98 +2869,98 @@ }, { "content": "Code", - "objectID": "beed131f-461c-467b-88c8-d6283da38bfb", + "objectID": "3e5b3a50-a6d4-40e3-bbb4-803cbb3d74d1", "type": "lvl1", "url": "/docs/components/code", "hierarchy": { "lvl1": "Code" } }, { "content": "Installation", - "objectID": "78ce4604-85b9-450b-9ec6-415e13bbacbd", + "objectID": "70ecf025-ab73-423f-a8a4-3502fa562651", "type": "lvl2", "url": "/docs/components/code#installation", "hierarchy": { "lvl1": "Code", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "fce139f7-2256-4c5c-885c-c4417594df10", + "objectID": "392e3442-c661-4a7e-9303-b2f99f1fea43", "type": "lvl2", "url": "/docs/components/code#import", "hierarchy": { "lvl1": "Code", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "79789de2-4913-4ff8-939f-03f95618a0b6", + "objectID": "bef2b4c4-50c4-4dd7-9a1d-0b643c55ee95", "type": "lvl2", "url": "/docs/components/code#usage", "hierarchy": { "lvl1": "Code", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "3ed0cc54-f1e8-4f6c-ab67-0be28ba64001", + "objectID": "4f1fb019-af8d-4393-8f2b-5ed28b766890", "type": "lvl3", "url": "/docs/components/code#sizes", "hierarchy": { "lvl1": "Code", "lvl2": "Usage", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "603bf5b8-9e1c-484b-8a32-a0487d227409", + "objectID": "9f789174-201f-4fa3-9e51-8567858194db", "type": "lvl3", "url": "/docs/components/code#colors", "hierarchy": { "lvl1": "Code", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "API", - "objectID": "d53a7eeb-155a-4ed7-83f9-7ea837607390", + "objectID": "5a4539d4-4434-4c15-9ee9-54ee4bbd95de", "type": "lvl2", "url": "/docs/components/code#api", "hierarchy": { "lvl1": "Code", "lvl2": "API", "lvl3": null } }, { "content": "Code Props", - "objectID": "8ca7a8cf-8f4f-4c3a-9173-e05a12f8a493", + "objectID": "99aac0ac-2ef9-430a-87a3-5c9cc4535eee", "type": "lvl3", "url": "/docs/components/code#code-props", "hierarchy": { "lvl1": "Code", "lvl2": "API", "lvl3": "Code Props" } }, { "content": "DateInput", - "objectID": "b17086e4-c834-43ce-9ab7-3c89b3d98586", + "objectID": "8c2b07b8-9c84-431f-8719-02989dcbf053", "type": "lvl1", "url": "/docs/components/date-input", "hierarchy": { "lvl1": "DateInput" } }, { "content": "Installation", - "objectID": "c97f95ea-ecba-412c-8eff-5098d1c1a7c5", + "objectID": "6508656f-2052-421e-8c0b-ebc5cb847b07", "type": "lvl2", "url": "/docs/components/date-input#installation", "hierarchy": { "lvl1": "DateInput", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "2a430d64-ad60-4b04-ba56-04738f5f02a9", + "objectID": "66b3133a-7b9f-46c1-b198-5da1198b696e", "type": "lvl2", "url": "/docs/components/date-input#import", "hierarchy": { "lvl1": "DateInput", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "c5e24ea6-1887-44b1-be1a-26e2ce52e2dc", + "objectID": "641abb39-a836-4bb5-a127-fa6837041570", "type": "lvl2", "url": "/docs/components/date-input#usage", "hierarchy": { "lvl1": "DateInput", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "ce406b59-381c-4317-a499-983f7204b28b", + "objectID": "816302bc-dd35-4533-a8d1-f717a7a8480d", "type": "lvl3", "url": "/docs/components/date-input#disabled", "hierarchy": { "lvl1": "DateInput", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Read Only", - "objectID": "fc4314bd-08bf-4f92-afee-727e9d36ad2a", + "objectID": "bef7d338-7cc6-4fc8-8056-7af46d52476a", "type": "lvl3", "url": "/docs/components/date-input#read-only", "hierarchy": { @@ -2971,7 +2971,7 @@ }, { "content": "Required", - "objectID": "e7a5dd12-cc74-4b2e-b4a4-ef681b7e760d", + "objectID": "9ded0ca7-545f-4d5a-8c99-814e95a6a610", "type": "lvl3", "url": "/docs/components/date-input#required", "hierarchy": { @@ -2982,14 +2982,14 @@ }, { "content": "Variants", - "objectID": "7f78e122-ad40-45fd-ae85-029016421c9b", + "objectID": "98064875-372d-4ccf-99ad-4f4466385453", "type": "lvl3", "url": "/docs/components/date-input#variants", "hierarchy": { "lvl1": "DateInput", "lvl2": "Required", "lvl3": "Variants" } }, { "content": "Label Placements", - "objectID": "26fb5bc2-86cc-44bd-9137-1e4b72831c2e", + "objectID": "b2b70e26-6889-48c5-8977-409603905789", "type": "lvl3", "url": "/docs/components/date-input#label-placements", "hierarchy": { @@ -3000,7 +3000,7 @@ }, { "content": "Start & End Content", - "objectID": "9583f4b8-e594-4230-b5fe-e7fdf9538756", + "objectID": "9597e84f-f6d5-443a-af99-62c5af1c8e2e", "type": "lvl3", "url": "/docs/components/date-input#start--end-content", "hierarchy": { @@ -3011,7 +3011,7 @@ }, { "content": "With Description", - "objectID": "6b2f00e7-5ed9-440f-a9ec-b56c219a6e14", + "objectID": "34242540-8ef1-459d-8419-d1da5cefe919", "type": "lvl3", "url": "/docs/components/date-input#with-description", "hierarchy": { @@ -3022,7 +3022,7 @@ }, { "content": "With Error Message", - "objectID": "6f2775fd-f276-4db2-b414-b7dba69d62c6", + "objectID": "e572c607-1ad7-4334-be0f-85470c2208db", "type": "lvl3", "url": "/docs/components/date-input#with-error-message", "hierarchy": { @@ -3033,7 +3033,7 @@ }, { "content": "Controlled", - "objectID": "4e627d4d-09f8-4b6d-932b-667cbdc97318", + "objectID": "7e35a7d2-670c-4620-98e3-be97c8cdda7c", "type": "lvl3", "url": "/docs/components/date-input#controlled", "hierarchy": { @@ -3044,7 +3044,7 @@ }, { "content": "Time Zones", - "objectID": "4bf14c82-480d-44a3-985e-95e9a5ad1763", + "objectID": "bcf78b31-ca0f-47b4-acfe-86bd38b4be4b", "type": "lvl3", "url": "/docs/components/date-input#time-zones", "hierarchy": { @@ -3055,7 +3055,7 @@ }, { "content": "Granularity", - "objectID": "15e41cc6-c2e2-4067-9f34-3b485838e535", + "objectID": "0c4e1ede-057b-4562-bf65-b71693204f02", "type": "lvl3", "url": "/docs/components/date-input#granularity", "hierarchy": { @@ -3066,7 +3066,7 @@ }, { "content": "Min Date And Max Date", - "objectID": "fa37ae62-dfc8-4aa6-a77b-49f337787f84", + "objectID": "c83d1d67-9b8b-478b-90f1-72a3570ecd39", "type": "lvl3", "url": "/docs/components/date-input#min-date-and-max-date", "hierarchy": { @@ -3077,7 +3077,7 @@ }, { "content": "International Calendar", - "objectID": "e8e416c1-0eed-4bb0-bee6-630a460b3baf", + "objectID": "e6644780-6814-44f2-aa49-51aeab8de24c", "type": "lvl3", "url": "/docs/components/date-input#international-calendar", "hierarchy": { @@ -3088,7 +3088,7 @@ }, { "content": "Hide Time Zone", - "objectID": "452fd183-800b-48b8-8667-c7a0f2ed0320", + "objectID": "52505ad1-85f4-4b70-bd96-a217983bb5b0", "type": "lvl3", "url": "/docs/components/date-input#hide-time-zone", "hierarchy": { @@ -3099,7 +3099,7 @@ }, { "content": "Hourly Cycle", - "objectID": "1f8f4f39-916a-4ec1-a3d2-2e0abe644972", + "objectID": "bafd627c-f3c4-4db8-b120-25ce619b615d", "type": "lvl3", "url": "/docs/components/date-input#hourly-cycle", "hierarchy": { @@ -3110,14 +3110,14 @@ }, { "content": "Slots", - "objectID": "02ed3004-67a4-4997-8357-fba72e6b650f", + "objectID": "a27c88e6-e5a2-4108-8596-cc7c3fa728f2", "type": "lvl2", "url": "/docs/components/date-input#slots", "hierarchy": { "lvl1": "DateInput", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "e169a9f5-fb39-4f4a-80c0-7ee87279401a", + "objectID": "653dd050-d3bd-41fb-acc0-958984e6fe54", "type": "lvl2", "url": "/docs/components/date-input#data-attributes", "hierarchy": { @@ -3128,21 +3128,21 @@ }, { "content": "Accessibility", - "objectID": "7955692f-0827-4378-9db4-1b1512dfd168", + "objectID": "44c7c267-58ff-4095-9378-5e60480432c6", "type": "lvl2", "url": "/docs/components/date-input#accessibility", "hierarchy": { "lvl1": "DateInput", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "baaa5080-f63b-4d68-8e54-4de72cd8a16b", + "objectID": "46cf3b1c-cbfb-4b94-8f15-f55c02557406", "type": "lvl2", "url": "/docs/components/date-input#api", "hierarchy": { "lvl1": "DateInput", "lvl2": "API", "lvl3": null } }, { "content": "DateInput Props", - "objectID": "b6211a2b-b149-4e8d-8886-c2eaddeeb32e", + "objectID": "67f80dec-d6cf-4925-885b-452633ca613c", "type": "lvl3", "url": "/docs/components/date-input#dateinput-props", "hierarchy": { @@ -3153,7 +3153,7 @@ }, { "content": "DateInput Events", - "objectID": "8b40b4c4-06f9-4204-a2f8-a03beed73add", + "objectID": "978c8341-d2b3-47a5-9a62-0d2bdbe929dc", "type": "lvl3", "url": "/docs/components/date-input#dateinput-events", "hierarchy": { @@ -3164,42 +3164,42 @@ }, { "content": "DatePicker", - "objectID": "6a341dbd-d92f-4569-ac49-72984add839a", + "objectID": "1908e3c8-090d-4d2b-a2a6-5282ed4dd40d", "type": "lvl1", "url": "/docs/components/date-picker", "hierarchy": { "lvl1": "DatePicker" } }, { "content": "Installation", - "objectID": "1870ad81-9640-4de0-9efd-a72585285138", + "objectID": "ff846e99-a578-4eac-a5cd-dcde71a16517", "type": "lvl2", "url": "/docs/components/date-picker#installation", "hierarchy": { "lvl1": "DatePicker", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "03c5ad77-6b6a-4b7c-99e2-f8fd7133ee40", + "objectID": "d08b1957-1d0f-4183-805e-4faf9d6e222d", "type": "lvl2", "url": "/docs/components/date-picker#import", "hierarchy": { "lvl1": "DatePicker", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "1575fc10-b2d2-4e65-8921-b2bfacc32793", + "objectID": "5e088b0c-52ec-49a3-af5a-526685a81b4d", "type": "lvl2", "url": "/docs/components/date-picker#usage", "hierarchy": { "lvl1": "DatePicker", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "d04cde60-3372-4fe0-a8ae-c26289e557a4", + "objectID": "f5cee854-509f-4f8c-8661-3f9010a52b91", "type": "lvl3", "url": "/docs/components/date-picker#disabled", "hierarchy": { "lvl1": "DatePicker", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Read Only", - "objectID": "9215c1f7-2b30-4c93-93bf-149a22b7ba70", + "objectID": "45672822-c479-48bb-a374-e854153014f9", "type": "lvl3", "url": "/docs/components/date-picker#read-only", "hierarchy": { @@ -3210,7 +3210,7 @@ }, { "content": "Required", - "objectID": "205e9851-42db-425b-bbde-fb6cd7763769", + "objectID": "ecd75a91-4e7e-46b9-82ae-03f954bbfedc", "type": "lvl3", "url": "/docs/components/date-picker#required", "hierarchy": { @@ -3221,7 +3221,7 @@ }, { "content": "Variants", - "objectID": "611e1677-6358-453f-83d6-eceb49f9b620", + "objectID": "5be7650e-de12-4832-b2fc-60710d3956ed", "type": "lvl3", "url": "/docs/components/date-picker#variants", "hierarchy": { @@ -3232,7 +3232,7 @@ }, { "content": "Label Placements", - "objectID": "6fd063c0-b479-4be3-a404-544df4df2477", + "objectID": "4cfdfb94-d330-4c75-ad54-b2a8f2a10171", "type": "lvl3", "url": "/docs/components/date-picker#label-placements", "hierarchy": { @@ -3243,7 +3243,7 @@ }, { "content": "With Description", - "objectID": "016df2b0-171a-489e-aa75-20fd4ce9a80b", + "objectID": "eb1c02d8-dc29-4450-b2e0-0f7bd3b15dca", "type": "lvl3", "url": "/docs/components/date-picker#with-description", "hierarchy": { @@ -3254,7 +3254,7 @@ }, { "content": "With Error Message", - "objectID": "6ab7af22-8609-4942-a21d-07e5de562322", + "objectID": "13a546ec-1be4-43d6-85ea-de72dd24cdbc", "type": "lvl3", "url": "/docs/components/date-picker#with-error-message", "hierarchy": { @@ -3265,7 +3265,7 @@ }, { "content": "With Month and Year Pickers", - "objectID": "ddf266f0-d4b6-4b18-8a47-7fbc114535d0", + "objectID": "61e6a8dd-0ca5-4c55-ad35-2b6e4c151f26", "type": "lvl3", "url": "/docs/components/date-picker#with-month-and-year-pickers", "hierarchy": { @@ -3276,7 +3276,7 @@ }, { "content": "With Time Fields", - "objectID": "103b03fa-faa2-47b7-9308-6b69f65e2983", + "objectID": "b7f56610-1637-4f1d-a313-e6c7737547e6", "type": "lvl3", "url": "/docs/components/date-picker#with-time-fields", "hierarchy": { @@ -3287,7 +3287,7 @@ }, { "content": "Selector Icon", - "objectID": "3c5a2934-3409-41d9-9224-9410a84d51a2", + "objectID": "657b4d5c-5840-453c-bc2e-c0ebe65336dc", "type": "lvl3", "url": "/docs/components/date-picker#selector-icon", "hierarchy": { @@ -3298,7 +3298,7 @@ }, { "content": "Selector Button Placement", - "objectID": "75dbce8a-1575-4c43-8308-990a52a10033", + "objectID": "bbc7b352-3e91-45c4-b487-8c724b9fcfe6", "type": "lvl3", "url": "/docs/components/date-picker#selector-button-placement", "hierarchy": { @@ -3309,7 +3309,7 @@ }, { "content": "Controlled", - "objectID": "1a6799f3-f69d-45cc-9897-ff944b993d79", + "objectID": "27a555db-cdc6-49e3-a2f6-9c9740a10674", "type": "lvl3", "url": "/docs/components/date-picker#controlled", "hierarchy": { @@ -3320,7 +3320,7 @@ }, { "content": "Time Zones", - "objectID": "9d1387a8-f185-4de0-a627-c432fc5f7fb3", + "objectID": "d2dc02d1-cd24-4e2a-94b0-a7d52a8895c5", "type": "lvl3", "url": "/docs/components/date-picker#time-zones", "hierarchy": { @@ -3331,7 +3331,7 @@ }, { "content": "Granularity", - "objectID": "1cc241fa-44a4-4a64-8655-f6c1f742e8ba", + "objectID": "bd7b44c3-bc1e-467e-8020-5fe54c0194ae", "type": "lvl3", "url": "/docs/components/date-picker#granularity", "hierarchy": { @@ -3342,7 +3342,7 @@ }, { "content": "Min Date And Max Date", - "objectID": "faf202c8-b9fb-4902-b95a-f5abcbe92159", + "objectID": "89bbee2f-9e26-4c67-a841-e2a2e6c4cba5", "type": "lvl3", "url": "/docs/components/date-picker#min-date-and-max-date", "hierarchy": { @@ -3353,7 +3353,7 @@ }, { "content": "International Calendar", - "objectID": "cad099f5-6007-47c6-8ea7-737d2e12d535", + "objectID": "eab4623b-b5a5-488d-b4f3-599e6ef7adc9", "type": "lvl3", "url": "/docs/components/date-picker#international-calendar", "hierarchy": { @@ -3364,7 +3364,7 @@ }, { "content": "Unavailable Dates", - "objectID": "7ed47840-84c3-4606-89a4-35083137049e", + "objectID": "635216d8-6098-4e9e-ae02-52eb270597a6", "type": "lvl3", "url": "/docs/components/date-picker#unavailable-dates", "hierarchy": { @@ -3375,7 +3375,7 @@ }, { "content": "Visible Months", - "objectID": "1ce12115-c788-479a-891f-b51c7fb29be4", + "objectID": "95bacf6f-5b9d-4274-b196-f7da8fe20fd7", "type": "lvl3", "url": "/docs/components/date-picker#visible-months", "hierarchy": { @@ -3386,7 +3386,7 @@ }, { "content": "Page Behavior", - "objectID": "6be55fbe-324e-4c1b-8df6-70e82a3fb785", + "objectID": "6139da1c-e422-46c7-954e-65e1e1626d0d", "type": "lvl3", "url": "/docs/components/date-picker#page-behavior", "hierarchy": { @@ -3397,7 +3397,7 @@ }, { "content": "Preset", - "objectID": "7356e62e-a4e0-4c77-9999-eb4a6fbf2001", + "objectID": "67380105-4e16-416e-8397-f1031ccdf01e", "type": "lvl3", "url": "/docs/components/date-picker#preset", "hierarchy": { @@ -3408,14 +3408,14 @@ }, { "content": "Slots", - "objectID": "b33acd63-3db3-4a5d-9671-411650c03e56", + "objectID": "e2240a24-3ad5-4d29-bbdd-fce0f4a27237", "type": "lvl2", "url": "/docs/components/date-picker#slots", "hierarchy": { "lvl1": "DatePicker", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "18ed067e-4893-4fd2-af49-c4e7dda0ecda", + "objectID": "d39efaaf-329c-41b8-b216-169cb91607e2", "type": "lvl2", "url": "/docs/components/date-picker#data-attributes", "hierarchy": { @@ -3426,21 +3426,21 @@ }, { "content": "Accessibility", - "objectID": "b1cffc48-b4f4-4c80-8295-912d1ff02df8", + "objectID": "57380255-f521-4ceb-94a3-bae9355ddfce", "type": "lvl2", "url": "/docs/components/date-picker#accessibility", "hierarchy": { "lvl1": "DatePicker", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "e11238a3-19f9-49f7-8012-e43509ed21e0", + "objectID": "219dc6a6-8983-4a67-a83a-0ab188c9a34f", "type": "lvl2", "url": "/docs/components/date-picker#api", "hierarchy": { "lvl1": "DatePicker", "lvl2": "API", "lvl3": null } }, { "content": "DatePicker Props", - "objectID": "996a6016-66c5-4b2e-8a44-807667f97eab", + "objectID": "a1885295-5a11-45db-9598-4d89beed3177", "type": "lvl3", "url": "/docs/components/date-picker#datepicker-props", "hierarchy": { @@ -3451,7 +3451,7 @@ }, { "content": "DatePicker Events", - "objectID": "5dfc32ca-5cbc-425e-bdc3-cb65b5ac3340", + "objectID": "1b274b81-b6f7-4aab-a6a6-7319d86901f4", "type": "lvl3", "url": "/docs/components/date-picker#datepicker-events", "hierarchy": { @@ -3462,14 +3462,14 @@ }, { "content": "Date Range Picker", - "objectID": "19a9fd71-0113-425a-82d8-1223699e9f7e", + "objectID": "dd28a567-96fb-439f-a5cd-88ae234cd454", "type": "lvl1", "url": "/docs/components/date-range-picker", "hierarchy": { "lvl1": "Date Range Picker" } }, { "content": "Installation", - "objectID": "b4546bad-6463-4f14-98e6-423dd66cbc56", + "objectID": "7c1efda6-1cd8-4197-9958-2573ccb732e4", "type": "lvl2", "url": "/docs/components/date-range-picker#installation", "hierarchy": { @@ -3480,21 +3480,21 @@ }, { "content": "Import", - "objectID": "6ee84264-89e1-4cc3-9d96-19d61d9e2458", + "objectID": "65f3193e-cec5-4d91-acee-052335d1668b", "type": "lvl2", "url": "/docs/components/date-range-picker#import", "hierarchy": { "lvl1": "Date Range Picker", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "5b6f16b1-c71c-4621-b3c4-7091baabc2a4", + "objectID": "94801787-c32a-4953-9d4f-0f064f9a6cd7", "type": "lvl2", "url": "/docs/components/date-range-picker#usage", "hierarchy": { "lvl1": "Date Range Picker", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "75c1b724-f26e-4bb3-8c69-24b984ac8090", + "objectID": "d5278e05-5f46-44c3-94aa-ecc73ed8c5d3", "type": "lvl3", "url": "/docs/components/date-range-picker#disabled", "hierarchy": { @@ -3505,7 +3505,7 @@ }, { "content": "Read Only", - "objectID": "e1123267-fd8a-418a-8368-77475d195151", + "objectID": "130f9e2b-186c-4bc6-a9ff-c98cbe71a055", "type": "lvl3", "url": "/docs/components/date-range-picker#read-only", "hierarchy": { @@ -3516,7 +3516,7 @@ }, { "content": "Required", - "objectID": "756df7a7-6539-4693-b72f-2c71fdc57115", + "objectID": "31ce67af-931c-4c04-9283-d0307d8b1c63", "type": "lvl3", "url": "/docs/components/date-range-picker#required", "hierarchy": { @@ -3527,7 +3527,7 @@ }, { "content": "Variants", - "objectID": "d9170234-6081-4c8e-b225-2939074b405d", + "objectID": "1f349eed-0cf9-48f0-b5f2-c04f7be68691", "type": "lvl3", "url": "/docs/components/date-range-picker#variants", "hierarchy": { @@ -3538,7 +3538,7 @@ }, { "content": "Visible Months", - "objectID": "b0d87431-41b8-4fe1-90cb-1b7f38dcbd48", + "objectID": "abfcafec-8e21-4077-9336-c9f3f43e3932", "type": "lvl3", "url": "/docs/components/date-range-picker#visible-months", "hierarchy": { @@ -3549,7 +3549,7 @@ }, { "content": "Page Behavior", - "objectID": "aae7c481-ec08-496a-8244-9987e90db034", + "objectID": "dad5d527-46c0-4b5f-b973-80898122b117", "type": "lvl3", "url": "/docs/components/date-range-picker#page-behavior", "hierarchy": { @@ -3560,7 +3560,7 @@ }, { "content": "Label Placements", - "objectID": "ea8fe680-eab4-45b1-b1a5-39178d95784e", + "objectID": "c0f8a196-6ce4-4544-92d6-7f78f3acd757", "type": "lvl3", "url": "/docs/components/date-range-picker#label-placements", "hierarchy": { @@ -3571,7 +3571,7 @@ }, { "content": "With Description", - "objectID": "4851863b-8425-41b8-9aa4-342654552202", + "objectID": "8c7b1f75-b9c6-48b9-a8a0-6f93036dc02a", "type": "lvl3", "url": "/docs/components/date-range-picker#with-description", "hierarchy": { @@ -3582,7 +3582,7 @@ }, { "content": "With Error Message", - "objectID": "53fb56c5-7fdb-4799-986b-38c2c44fbaf9", + "objectID": "acb41582-caf5-4dec-8ad4-b6034e058496", "type": "lvl3", "url": "/docs/components/date-range-picker#with-error-message", "hierarchy": { @@ -3593,7 +3593,7 @@ }, { "content": "With Month and Year Pickers", - "objectID": "448c42ba-fc45-4402-b66b-8f5720efe38b", + "objectID": "efc020ec-edcd-4259-b3ab-8c382a038c03", "type": "lvl3", "url": "/docs/components/date-range-picker#with-month-and-year-pickers", "hierarchy": { @@ -3604,7 +3604,7 @@ }, { "content": "With Time Fields", - "objectID": "bc572944-6b33-41d6-9075-1c73cb397eca", + "objectID": "78fb2f6a-4480-4d39-aa08-8bf10496746a", "type": "lvl3", "url": "/docs/components/date-range-picker#with-time-fields", "hierarchy": { @@ -3615,7 +3615,7 @@ }, { "content": "Selector Icon", - "objectID": "fcd5736c-088e-4470-b21d-72a892832ff5", + "objectID": "bf3bb811-f705-4b30-8baf-3861c1355e32", "type": "lvl3", "url": "/docs/components/date-range-picker#selector-icon", "hierarchy": { @@ -3626,7 +3626,7 @@ }, { "content": "Selector Button Placement", - "objectID": "b1e31e90-c6ec-4a5c-bc00-d7bbbef41473", + "objectID": "b97cbb41-3e19-4aaf-9f28-6265bdf3991f", "type": "lvl3", "url": "/docs/components/date-range-picker#selector-button-placement", "hierarchy": { @@ -3637,7 +3637,7 @@ }, { "content": "Controlled", - "objectID": "2a7d7b53-c309-40e9-8055-b3b33922d544", + "objectID": "311fd7c3-dda8-4d79-b536-a2c5630e96ac", "type": "lvl3", "url": "/docs/components/date-range-picker#controlled", "hierarchy": { @@ -3648,7 +3648,7 @@ }, { "content": "Time Zones", - "objectID": "46bac10d-cacd-402d-bc3b-1703b771f6a4", + "objectID": "7f2c2e04-3355-4bf7-83b6-5baeea81ce4a", "type": "lvl3", "url": "/docs/components/date-range-picker#time-zones", "hierarchy": { @@ -3659,7 +3659,7 @@ }, { "content": "Granularity", - "objectID": "2cfa855f-16ae-4a12-af8c-42d13b0ca89e", + "objectID": "d9ec49c9-70e1-42f7-a2e9-e64da0d6e5c1", "type": "lvl3", "url": "/docs/components/date-range-picker#granularity", "hierarchy": { @@ -3670,7 +3670,7 @@ }, { "content": "Min Date And Max Date", - "objectID": "9e1b5e53-38cc-4d52-b085-29fc43ebaf57", + "objectID": "89ff8c2d-e46d-40f6-b6e5-faa23a9ee2b0", "type": "lvl3", "url": "/docs/components/date-range-picker#min-date-and-max-date", "hierarchy": { @@ -3681,7 +3681,7 @@ }, { "content": "International Calendar", - "objectID": "9af17794-4663-489b-bd35-d1228ba73223", + "objectID": "8b065e6e-e226-408b-8c1b-0dd60ab87d6d", "type": "lvl3", "url": "/docs/components/date-range-picker#international-calendar", "hierarchy": { @@ -3692,7 +3692,7 @@ }, { "content": "Unavailable Dates", - "objectID": "52a7143c-fdcd-4853-8520-8ea013279210", + "objectID": "9bd178f8-df31-4a33-a2e0-7c3d7c238703", "type": "lvl3", "url": "/docs/components/date-range-picker#unavailable-dates", "hierarchy": { @@ -3703,7 +3703,7 @@ }, { "content": "Non Contiguous", - "objectID": "3ca716fb-3972-4349-bfde-7eefc1ce77b5", + "objectID": "09500c7c-cba8-4b00-9929-07719498ac1c", "type": "lvl3", "url": "/docs/components/date-range-picker#non-contiguous", "hierarchy": { @@ -3714,7 +3714,7 @@ }, { "content": "Presets", - "objectID": "d060bcf4-0ce9-447f-9a90-5e2488a7fd39", + "objectID": "29e124bc-9542-4281-b561-baa14e034561", "type": "lvl3", "url": "/docs/components/date-range-picker#presets", "hierarchy": { @@ -3725,14 +3725,14 @@ }, { "content": "Slots", - "objectID": "5402b710-ddf2-4514-8007-240107e89ad0", + "objectID": "d2dc9c06-b791-46a7-9673-547758428730", "type": "lvl2", "url": "/docs/components/date-range-picker#slots", "hierarchy": { "lvl1": "Date Range Picker", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "c045bdef-d62c-4aa6-b55e-8a41b9b7fcec", + "objectID": "37fa148d-3d19-4176-96db-c07107e864f0", "type": "lvl3", "url": "/docs/components/date-range-picker#custom-styles", "hierarchy": { @@ -3743,7 +3743,7 @@ }, { "content": "Data Attributes", - "objectID": "ab6c4126-6fd9-4e34-8780-c43b07a1cc09", + "objectID": "4f5f8a1d-0721-43c8-a22a-163c62c419fc", "type": "lvl2", "url": "/docs/components/date-range-picker#data-attributes", "hierarchy": { @@ -3754,7 +3754,7 @@ }, { "content": "Accessibility", - "objectID": "21dbaf72-9a9e-4993-8d82-5e5086953a6c", + "objectID": "187ce455-0c26-47f0-8580-1f2c9094c357", "type": "lvl2", "url": "/docs/components/date-range-picker#accessibility", "hierarchy": { @@ -3765,14 +3765,14 @@ }, { "content": "API", - "objectID": "710a5627-d8b2-4759-b165-768fff7bb3c7", + "objectID": "d66845bb-37ee-4d50-8414-b847685690c5", "type": "lvl2", "url": "/docs/components/date-range-picker#api", "hierarchy": { "lvl1": "Date Range Picker", "lvl2": "API", "lvl3": null } }, { "content": "DateRangePicker Props", - "objectID": "a32ae488-8a63-43da-8b3e-026f0e848428", + "objectID": "c0044d74-88ef-42a7-82a4-71b762fdf343", "type": "lvl3", "url": "/docs/components/date-range-picker#daterangepicker-props", "hierarchy": { @@ -3783,7 +3783,7 @@ }, { "content": "DateRangePicker Events", - "objectID": "8fdd0ec5-8738-46aa-871c-6aa9deeb9d1f", + "objectID": "12c0d291-58c4-4a33-85f9-05964b2ef11c", "type": "lvl3", "url": "/docs/components/date-range-picker#daterangepicker-events", "hierarchy": { @@ -3794,98 +3794,98 @@ }, { "content": "Divider", - "objectID": "6f0d20b6-4d7e-4b5f-8673-0324ef4cbb2f", + "objectID": "d16e902c-80c1-42f4-98ff-d9c0fe1e80b4", "type": "lvl1", "url": "/docs/components/divider", "hierarchy": { "lvl1": "Divider" } }, { "content": "Installation", - "objectID": "0d5fac32-8397-48df-8b6d-b47eea05285c", + "objectID": "8ccc17e3-5b58-4946-ab97-f2e81e0b112e", "type": "lvl2", "url": "/docs/components/divider#installation", "hierarchy": { "lvl1": "Divider", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "5c9915e9-37a4-4d1a-a5bb-1719a7c641f0", + "objectID": "bdf5d390-277f-4294-a6fc-5f4595c37ae1", "type": "lvl2", "url": "/docs/components/divider#import", "hierarchy": { "lvl1": "Divider", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "5a176ffc-59a9-4ea8-9625-c0aca32b1f4b", + "objectID": "9020e33c-c2fb-4f78-87f1-bcdcd84b20d2", "type": "lvl2", "url": "/docs/components/divider#usage", "hierarchy": { "lvl1": "Divider", "lvl2": "Usage", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "ac0da147-3f99-4085-9629-7b096dc593f0", + "objectID": "3537e59a-662b-425f-8c2a-68033cbdd246", "type": "lvl2", "url": "/docs/components/divider#data-attributes", "hierarchy": { "lvl1": "Divider", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "caaa33d0-13bf-4fd3-81f2-d2a183d3a9f9", + "objectID": "3da0e7b8-8a34-4ee1-a183-c094c43747d2", "type": "lvl2", "url": "/docs/components/divider#accessibility", "hierarchy": { "lvl1": "Divider", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "d7d2f81d-e379-42b1-86d5-7b4cf2e976b4", + "objectID": "d9eb201e-c9b6-4668-b3ab-f84604c2db13", "type": "lvl2", "url": "/docs/components/divider#api", "hierarchy": { "lvl1": "Divider", "lvl2": "API", "lvl3": null } }, { "content": "Divider Props", - "objectID": "232b535a-7436-41ab-a274-41e7ea2e226e", + "objectID": "684a5f3c-441f-43e9-94b0-a6e42797807f", "type": "lvl3", "url": "/docs/components/divider#divider-props", "hierarchy": { "lvl1": "Divider", "lvl2": "API", "lvl3": "Divider Props" } }, { "content": "Drawer", - "objectID": "aeee6935-8881-44b9-ab28-88000262fc3b", + "objectID": "4e60bd70-35a9-444d-af53-32dc62347806", "type": "lvl1", "url": "/docs/components/drawer", "hierarchy": { "lvl1": "Drawer" } }, { "content": "Installation", - "objectID": "46678557-d495-43b6-b946-ebc3fa5a9cc3", + "objectID": "6cc601c9-5411-407c-85cc-0d9be531bf41", "type": "lvl2", "url": "/docs/components/drawer#installation", "hierarchy": { "lvl1": "Drawer", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "20fb08e7-7338-4da5-b4ee-9262b81f605a", + "objectID": "9893c848-c75b-4f83-8955-47492935e845", "type": "lvl2", "url": "/docs/components/drawer#import", "hierarchy": { "lvl1": "Drawer", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "72ab7222-a5a5-4403-9ebd-c2cbfea2ed40", + "objectID": "21152d12-f342-4ecc-a6e4-1270b1b159bd", "type": "lvl2", "url": "/docs/components/drawer#usage", "hierarchy": { "lvl1": "Drawer", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "85a3b929-ca90-402b-bc74-b65de1261414", + "objectID": "e93d50ab-e2ad-4870-905d-6b493406bc94", "type": "lvl3", "url": "/docs/components/drawer#sizes", "hierarchy": { "lvl1": "Drawer", "lvl2": "Usage", "lvl3": "Sizes" } }, { "content": "Non-dismissible", - "objectID": "75a5933a-663f-4f71-b85b-d1483f202c13", + "objectID": "52c46a5c-75d1-44a9-92a6-7b67ec7e4025", "type": "lvl3", "url": "/docs/components/drawer#non-dismissible", "hierarchy": { @@ -3896,7 +3896,7 @@ }, { "content": "Drawer placement", - "objectID": "1a38134e-0357-4595-972f-bda26676efe7", + "objectID": "f084fa72-5555-42fe-a31a-3f8491558dc9", "type": "lvl3", "url": "/docs/components/drawer#drawer-placement", "hierarchy": { @@ -3907,7 +3907,7 @@ }, { "content": "With Form", - "objectID": "bef3f499-5848-4e84-80bb-5b210a3a530f", + "objectID": "30ef3b45-5c6b-46f2-a0cb-832d86c0523e", "type": "lvl3", "url": "/docs/components/drawer#with-form", "hierarchy": { @@ -3918,14 +3918,14 @@ }, { "content": "Backdrop", - "objectID": "12b0610a-9512-443e-abde-da8130bacd83", + "objectID": "cf06bc6d-6309-42cb-ab9c-cafbf562e563", "type": "lvl3", "url": "/docs/components/drawer#backdrop", "hierarchy": { "lvl1": "Drawer", "lvl2": "With Form", "lvl3": "Backdrop" } }, { "content": "Custom Motion", - "objectID": "61bbf607-88a7-4104-b296-91dbfc52bd51", + "objectID": "1e28c52d-ec54-4255-b3a3-3f759748b877", "type": "lvl3", "url": "/docs/components/drawer#custom-motion", "hierarchy": { @@ -3936,7 +3936,7 @@ }, { "content": "Custom Styles", - "objectID": "e0ac3299-7eeb-497e-ae0c-6b03b18d024a", + "objectID": "83dade26-6490-498f-9a62-a6ecdffc1ea9", "type": "lvl3", "url": "/docs/components/drawer#custom-styles", "hierarchy": { @@ -3947,42 +3947,42 @@ }, { "content": "Slots", - "objectID": "c747b0a0-94da-4086-82aa-635c8774bdab", + "objectID": "d85e5969-dcbd-49ae-9ae0-6c80db070b26", "type": "lvl2", "url": "/docs/components/drawer#slots", "hierarchy": { "lvl1": "Drawer", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "9c799e03-5306-4e6e-95d1-ebeffccea1c4", + "objectID": "c1d4021b-dd9b-49ce-b676-0d9bef41519d", "type": "lvl2", "url": "/docs/components/drawer#data-attributes", "hierarchy": { "lvl1": "Drawer", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "ee54d1d6-8315-401d-8f0a-71d18a975cb3", + "objectID": "fd7275c3-2ecf-4b30-bca2-aef0fa449aa5", "type": "lvl2", "url": "/docs/components/drawer#accessibility", "hierarchy": { "lvl1": "Drawer", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "d1c89e1c-d8d8-49a7-8b45-d274b99eec43", + "objectID": "dcfb227b-6940-4d1d-a386-e4b21ad7e166", "type": "lvl2", "url": "/docs/components/drawer#api", "hierarchy": { "lvl1": "Drawer", "lvl2": "API", "lvl3": null } }, { "content": "Drawer Props", - "objectID": "eb1bd0c8-f309-4ea4-9207-8aa887844e6a", + "objectID": "ea626df2-518c-43a7-98e3-0d04150ac7eb", "type": "lvl3", "url": "/docs/components/drawer#drawer-props", "hierarchy": { "lvl1": "Drawer", "lvl2": "API", "lvl3": "Drawer Props" } }, { "content": "Drawer Events", - "objectID": "9f56b4b1-229d-40e2-8b0e-d453ee88fc3c", + "objectID": "90d5b07a-1e4d-43d5-90b8-66aa8bc131dd", "type": "lvl3", "url": "/docs/components/drawer#drawer-events", "hierarchy": { @@ -3993,7 +3993,7 @@ }, { "content": "Drawer types", - "objectID": "906918fc-66c0-4843-be24-c25d21b1bb00", + "objectID": "fdfe11c9-e26b-4e90-8ea0-66d57c9cb8db", "type": "lvl3", "url": "/docs/components/drawer#drawer-types", "hierarchy": { @@ -4004,42 +4004,42 @@ }, { "content": "Motion Props", - "objectID": "61274504-ebd4-4d49-8102-17dbb2a318f5", + "objectID": "8b63c774-317c-4bdc-9300-96d5efe67b06", "type": "lvl4", "url": "/docs/components/drawer#motion-props", "hierarchy": { "lvl1": "Drawer", "lvl2": "Drawer types", "lvl3": null } }, { "content": "Dropdown", - "objectID": "d88d5bda-45cd-478a-b9de-8c07f85e4bff", + "objectID": "5c6038e3-38b1-45ce-a91d-1f0af1b752b3", "type": "lvl1", "url": "/docs/components/dropdown", "hierarchy": { "lvl1": "Dropdown" } }, { "content": "Installation", - "objectID": "e6179617-360e-4e1e-8dff-e12d30f4e7e8", + "objectID": "c93eb7ed-6515-460f-ac40-65e1dcb49b48", "type": "lvl2", "url": "/docs/components/dropdown#installation", "hierarchy": { "lvl1": "Dropdown", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "be4bc842-37c1-472b-bcf6-b5f8b52105b9", + "objectID": "7d607478-0d9f-4052-921e-6066506cb80d", "type": "lvl2", "url": "/docs/components/dropdown#import", "hierarchy": { "lvl1": "Dropdown", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "38da9aa8-e994-4fde-85bd-f884852b6fe6", + "objectID": "c2828007-9a3d-4e23-84ea-f9ceb2985823", "type": "lvl2", "url": "/docs/components/dropdown#usage", "hierarchy": { "lvl1": "Dropdown", "lvl2": "Usage", "lvl3": null } }, { "content": "Dynamic items", - "objectID": "f3ea28c6-b17b-4ce7-bd0a-826d8d581f6d", + "objectID": "b96b1101-8d15-455b-9ec7-95bda818f8b7", "type": "lvl3", "url": "/docs/components/dropdown#dynamic-items", "hierarchy": { @@ -4050,7 +4050,7 @@ }, { "content": "Disabled Keys", - "objectID": "be1b79f1-32de-4a8a-89a2-57fa88eb3387", + "objectID": "facd77e4-bc70-41a7-a54c-1a1489c4728a", "type": "lvl3", "url": "/docs/components/dropdown#disabled-keys", "hierarchy": { @@ -4061,7 +4061,7 @@ }, { "content": "Action event", - "objectID": "1541c5c8-667e-48e1-946c-5208c1509b79", + "objectID": "a046e972-a24a-44cf-94e5-95e509359594", "type": "lvl3", "url": "/docs/components/dropdown#action-event", "hierarchy": { @@ -4072,7 +4072,7 @@ }, { "content": "Variants", - "objectID": "f5e09b8f-a4b0-40dc-ba84-488644f07fb2", + "objectID": "778cc7bb-d3c5-497c-9b14-6c2894d96596", "type": "lvl3", "url": "/docs/components/dropdown#variants", "hierarchy": { @@ -4083,7 +4083,7 @@ }, { "content": "Single Selection", - "objectID": "b36a6eaf-fe01-4aa8-ad65-f9dfe9d1853c", + "objectID": "5be498ed-06a0-4f6c-b72e-6f8bd6442b19", "type": "lvl3", "url": "/docs/components/dropdown#single-selection", "hierarchy": { @@ -4094,7 +4094,7 @@ }, { "content": "Multiple Selection", - "objectID": "3c5ec9bc-8098-4a60-9717-70855784f7ea", + "objectID": "1e4cc12e-727d-4fbc-81df-119deadedfec", "type": "lvl3", "url": "/docs/components/dropdown#multiple-selection", "hierarchy": { @@ -4105,7 +4105,7 @@ }, { "content": "With Shortcut", - "objectID": "135b0f4e-fc15-4ce0-8b56-5a54f58f18dc", + "objectID": "94ebefaf-4c87-4bc8-8eed-78d28251e884", "type": "lvl3", "url": "/docs/components/dropdown#with-shortcut", "hierarchy": { @@ -4116,7 +4116,7 @@ }, { "content": "With Icons", - "objectID": "0966391f-d5ef-46f0-85cd-6fb56fee9f1a", + "objectID": "d749b61e-f3cf-48d8-9a07-b2d708204cfd", "type": "lvl3", "url": "/docs/components/dropdown#with-icons", "hierarchy": { @@ -4127,7 +4127,7 @@ }, { "content": "With Description", - "objectID": "52abb0f6-fe39-4e07-ba99-9017f453851c", + "objectID": "3c65c93a-1f08-4a01-9547-6bed1d2a053f", "type": "lvl3", "url": "/docs/components/dropdown#with-description", "hierarchy": { @@ -4138,7 +4138,7 @@ }, { "content": "With Sections", - "objectID": "c39d14e9-9cb0-431b-8aa7-435ce7a79ae8", + "objectID": "cfb0ff6f-a46b-4a3d-9670-f2aa57ead505", "type": "lvl3", "url": "/docs/components/dropdown#with-sections", "hierarchy": { @@ -4149,7 +4149,7 @@ }, { "content": "Custom Trigger", - "objectID": "1ee99a99-20ed-4af1-8f60-2dc276ea5076", + "objectID": "1ec0dd92-0251-4602-b38a-78e12de5c0fc", "type": "lvl3", "url": "/docs/components/dropdown#custom-trigger", "hierarchy": { @@ -4160,7 +4160,7 @@ }, { "content": "Changing the backdrop", - "objectID": "5018d7f7-d81a-400f-b301-5fd35da2a720", + "objectID": "8fe9f292-42bc-4076-bc88-a6162687576c", "type": "lvl3", "url": "/docs/components/dropdown#changing-the-backdrop", "hierarchy": { @@ -4171,7 +4171,7 @@ }, { "content": "Routing", - "objectID": "5a698a45-8369-4cb6-bc08-5acd2362ba75", + "objectID": "cb8ee40d-4a55-455f-b4ab-87acf4c32178", "type": "lvl3", "url": "/docs/components/dropdown#routing", "hierarchy": { @@ -4182,21 +4182,21 @@ }, { "content": "Slots", - "objectID": "3c24438f-4d43-4221-9b32-68c46363a836", + "objectID": "02be6aa3-647e-462c-9b02-cb52deca44ff", "type": "lvl2", "url": "/docs/components/dropdown#slots", "hierarchy": { "lvl1": "Dropdown", "lvl2": "Slots", "lvl3": null } }, { "content": "DropdownMenu", - "objectID": "a86a1f4b-87ab-41ee-80da-03ff04fab876", + "objectID": "8f010b46-74bd-4806-821e-93666587bf1d", "type": "lvl3", "url": "/docs/components/dropdown#dropdownmenu", "hierarchy": { "lvl1": "Dropdown", "lvl2": "Slots", "lvl3": "DropdownMenu" } }, { "content": "DropdownItem", - "objectID": "d2cb27bd-8c61-4b59-9e87-3d79e79d4208", + "objectID": "17bb50b1-eb74-4841-b7b7-1c059735f169", "type": "lvl3", "url": "/docs/components/dropdown#dropdownitem", "hierarchy": { @@ -4207,7 +4207,7 @@ }, { "content": "DropdownSection", - "objectID": "94e4061c-002d-4346-bed5-053e748ebb46", + "objectID": "50e4f043-75fc-40be-b5ec-a168257f1619", "type": "lvl3", "url": "/docs/components/dropdown#dropdownsection", "hierarchy": { @@ -4218,7 +4218,7 @@ }, { "content": "Customizing the dropdown popover", - "objectID": "f6beb086-b704-4278-ada0-b7ccc91c1729", + "objectID": "4ada41ab-6c2c-4518-99a6-cf5d9e445e70", "type": "lvl3", "url": "/docs/components/dropdown#customizing-the-dropdown-popover", "hierarchy": { @@ -4229,7 +4229,7 @@ }, { "content": "Customizing the dropdown items style", - "objectID": "e434cf98-114c-4290-9cfa-f398a89e7fd3", + "objectID": "cbcef2aa-643f-4f96-9935-3835cebd1f39", "type": "lvl3", "url": "/docs/components/dropdown#customizing-the-dropdown-items-style", "hierarchy": { @@ -4240,7 +4240,7 @@ }, { "content": "Keyboard Interactions", - "objectID": "20da632a-8bff-40df-8d3d-3ff6cb23b84b", + "objectID": "4c45dd21-e32e-4b69-80a0-c724af5c48e2", "type": "lvl3", "url": "/docs/components/dropdown#keyboard-interactions", "hierarchy": { @@ -4251,35 +4251,35 @@ }, { "content": "Data Attributes", - "objectID": "7ba8e9ec-d5c5-450e-bb60-ddbdd949938b", + "objectID": "dec57e4e-ff71-494a-a6ae-d1e212b87904", "type": "lvl2", "url": "/docs/components/dropdown#data-attributes", "hierarchy": { "lvl1": "Dropdown", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "ab8c1b85-4d97-4a0b-8f19-32c544cfafda", + "objectID": "2c87e168-caff-418f-bccc-0dc7a66f4cf2", "type": "lvl2", "url": "/docs/components/dropdown#accessibility", "hierarchy": { "lvl1": "Dropdown", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "e0fd88be-27ee-48ec-bf92-732c038f350e", + "objectID": "6044a8e5-e53e-4caf-b447-c5441314082b", "type": "lvl2", "url": "/docs/components/dropdown#api", "hierarchy": { "lvl1": "Dropdown", "lvl2": "API", "lvl3": null } }, { "content": "Dropdown Props", - "objectID": "bc752c25-7e32-401e-a3d9-fbbd2f35ee8f", + "objectID": "1027a831-da1e-4f9d-b8af-7e2b52960e03", "type": "lvl3", "url": "/docs/components/dropdown#dropdown-props", "hierarchy": { "lvl1": "Dropdown", "lvl2": "API", "lvl3": "Dropdown Props" } }, { "content": "Dropdown Events", - "objectID": "5f78c433-d7e3-4bde-a0ff-e9504f756fcd", + "objectID": "eb25be6e-3736-4b6f-9e37-4aefeddf6cd6", "type": "lvl3", "url": "/docs/components/dropdown#dropdown-events", "hierarchy": { @@ -4290,7 +4290,7 @@ }, { "content": "DropdownTrigger Props", - "objectID": "fc928a38-7642-4548-ae84-61450f6ea156", + "objectID": "205b625c-a4e7-4eb9-a4f5-39f502028d1c", "type": "lvl3", "url": "/docs/components/dropdown#dropdowntrigger-props", "hierarchy": { @@ -4301,7 +4301,7 @@ }, { "content": "DropdownMenu Props", - "objectID": "7c0c6f9e-9d37-4a12-844c-2bbe2d1c28cc", + "objectID": "1a9e8d92-c559-4147-9a61-980071a84feb", "type": "lvl3", "url": "/docs/components/dropdown#dropdownmenu-props", "hierarchy": { @@ -4312,7 +4312,7 @@ }, { "content": "DropdownMenu Events", - "objectID": "fc56008d-9ad1-4987-b57c-47b903876f47", + "objectID": "05db19ed-7b11-46bf-a904-6c025023ff8a", "type": "lvl3", "url": "/docs/components/dropdown#dropdownmenu-events", "hierarchy": { @@ -4323,7 +4323,7 @@ }, { "content": "DropdownSection Props", - "objectID": "c4715865-5a41-48c7-a180-f9c93dc05a63", + "objectID": "444eba2b-1932-4dae-84e1-ce8f29fde30a", "type": "lvl3", "url": "/docs/components/dropdown#dropdownsection-props", "hierarchy": { @@ -4334,7 +4334,7 @@ }, { "content": "DropdownItem Props", - "objectID": "f6a740a7-12d2-49e0-ba0e-0b4819e55b42", + "objectID": "af7a4351-ad6d-4f10-8f0f-c55c45c11c99", "type": "lvl3", "url": "/docs/components/dropdown#dropdownitem-props", "hierarchy": { @@ -4345,7 +4345,7 @@ }, { "content": "DropdownItem Events", - "objectID": "f0b702c6-1b06-45b6-b45d-dcb2a4345d10", + "objectID": "622e0f6e-ebb3-4fab-b689-95a4382a40d5", "type": "lvl3", "url": "/docs/components/dropdown#dropdownitem-events", "hierarchy": { @@ -4356,7 +4356,7 @@ }, { "content": "Types", - "objectID": "04e1188f-4ae0-4c5d-a094-d989e271fb8e", + "objectID": "7258bced-9bb2-4258-8961-6c25f30fe7f8", "type": "lvl3", "url": "/docs/components/dropdown#types", "hierarchy": { @@ -4367,56 +4367,56 @@ }, { "content": "Dropdown Item Selected Icon Props", - "objectID": "8cba2201-58f3-43b8-8a72-240ea06bc75c", + "objectID": "0be8c029-c6aa-4ce6-bd08-fb250e7c7868", "type": "lvl4", "url": "/docs/components/dropdown#dropdown-item-selected-icon-props", "hierarchy": { "lvl1": "Dropdown", "lvl2": "Types", "lvl3": null } }, { "content": "Image", - "objectID": "60f791c7-9d34-4457-b9b9-662773e2a90b", + "objectID": "c828c418-9607-4e68-aa7f-1b29a9ebff32", "type": "lvl1", "url": "/docs/components/image", "hierarchy": { "lvl1": "Image" } }, { "content": "Installation", - "objectID": "b2f29218-be6d-46c5-ae06-ac1b1d4c8238", + "objectID": "75fda405-0f57-475b-a3bb-e2e2569f7117", "type": "lvl2", "url": "/docs/components/image#installation", "hierarchy": { "lvl1": "Image", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "17ff84fc-dde5-40a8-b6b9-9b2d209977bd", + "objectID": "5ce4e226-addf-4e0c-8620-f3578c54e6a7", "type": "lvl2", "url": "/docs/components/image#import", "hierarchy": { "lvl1": "Image", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "89eda4ad-70cf-46fb-82e9-f2c7e385deda", + "objectID": "b46c7840-c5ab-405b-ab7b-6b33ceb245a1", "type": "lvl2", "url": "/docs/components/image#usage", "hierarchy": { "lvl1": "Image", "lvl2": "Usage", "lvl3": null } }, { "content": "Blurred", - "objectID": "94ffe2bc-b6b7-477e-b95d-b2694bdbffd0", + "objectID": "7cb58e1f-47db-4b91-b9c3-d85c0dcea669", "type": "lvl3", "url": "/docs/components/image#blurred", "hierarchy": { "lvl1": "Image", "lvl2": "Usage", "lvl3": "Blurred" } }, { "content": "Zoomed", - "objectID": "1c126c8f-5cd0-4291-b4f7-a9b8c279db67", + "objectID": "e72cba49-9ad0-4099-98d8-02f0a85c2005", "type": "lvl3", "url": "/docs/components/image#zoomed", "hierarchy": { "lvl1": "Image", "lvl2": "Blurred", "lvl3": "Zoomed" } }, { "content": "Animated Loading", - "objectID": "ae0975c8-9bc6-4264-8b0c-7d2fac757ff4", + "objectID": "95b57893-749a-4a10-8035-4976d7cc3dc1", "type": "lvl3", "url": "/docs/components/image#animated-loading", "hierarchy": { @@ -4427,7 +4427,7 @@ }, { "content": "Image with fallback", - "objectID": "8196cd9d-cafd-4a38-b0ba-d7c8cdecf710", + "objectID": "35910d90-3740-4018-a83c-02bd83b900f3", "type": "lvl3", "url": "/docs/components/image#image-with-fallback", "hierarchy": { @@ -4438,7 +4438,7 @@ }, { "content": "With Next.js Image", - "objectID": "5362cdb5-5272-4b02-8679-614babbf7de6", + "objectID": "e8b1f993-475d-4056-b6e9-84da1b51c616", "type": "lvl3", "url": "/docs/components/image#with-nextjs-image", "hierarchy": { @@ -4449,28 +4449,28 @@ }, { "content": "Slots", - "objectID": "f56ca18c-8e68-43ab-9d34-d3b11168cb38", + "objectID": "5df8f8b5-6869-4d04-bfde-bbb5e738d5c7", "type": "lvl2", "url": "/docs/components/image#slots", "hierarchy": { "lvl1": "Image", "lvl2": "Slots", "lvl3": null } }, { "content": "API", - "objectID": "0297b34f-90f3-4003-942e-a932504eb84a", + "objectID": "a07f6708-2b0d-4f67-aa65-0da6d0091c9b", "type": "lvl2", "url": "/docs/components/image#api", "hierarchy": { "lvl1": "Image", "lvl2": "API", "lvl3": null } }, { "content": "Image Props", - "objectID": "3171984b-c882-4776-ab7a-7ac449099cff", + "objectID": "8635012d-b369-41a9-8d7f-69bf8e5ab4f3", "type": "lvl3", "url": "/docs/components/image#image-props", "hierarchy": { "lvl1": "Image", "lvl2": "API", "lvl3": "Image Props" } }, { "content": "Image Events", - "objectID": "495f9d2a-aa92-445b-b544-b059c3fb3e2e", + "objectID": "6e928511-5e88-4cd4-a727-18819aca48d3", "type": "lvl3", "url": "/docs/components/image#image-events", "hierarchy": { @@ -4481,84 +4481,84 @@ }, { "content": "Input", - "objectID": "6cbcb78b-88cb-49a4-bb65-9743d9053e7b", + "objectID": "449b60dd-cd42-4df1-9c0b-a6afb1579557", "type": "lvl1", "url": "/docs/components/input", "hierarchy": { "lvl1": "Input" } }, { "content": "Installation", - "objectID": "b4a63d9e-0de9-4ce6-ac86-af7527fdaca6", + "objectID": "614b9671-bab3-4940-9e8a-9b438ab1afdb", "type": "lvl2", "url": "/docs/components/input#installation", "hierarchy": { "lvl1": "Input", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "4651897b-1316-43cb-91b2-efc53d6a5b4f", + "objectID": "54213df1-5b5c-43e7-9b5e-db95902d979d", "type": "lvl2", "url": "/docs/components/input#import", "hierarchy": { "lvl1": "Input", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "cd120049-35a4-4ebc-a0fd-3f3ffae84847", + "objectID": "06f4843f-5a71-43f5-be1c-c2da44b55cd5", "type": "lvl2", "url": "/docs/components/input#usage", "hierarchy": { "lvl1": "Input", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "c77ddaeb-f069-4bd3-9c17-35039a1dbe9f", + "objectID": "032956ca-ba31-4b8e-b59e-1bc7b7043b4a", "type": "lvl3", "url": "/docs/components/input#disabled", "hierarchy": { "lvl1": "Input", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Read Only", - "objectID": "97debafe-f8fb-4122-a837-232468d60a71", + "objectID": "804737b5-bbc9-4a1e-96f6-3a2aa6b12656", "type": "lvl3", "url": "/docs/components/input#read-only", "hierarchy": { "lvl1": "Input", "lvl2": "Disabled", "lvl3": "Read Only" } }, { "content": "Required", - "objectID": "6ad124f4-10c2-42e7-9d8c-b377c9d4ca98", + "objectID": "25e5628a-96be-43ae-964c-405d1f52791d", "type": "lvl3", "url": "/docs/components/input#required", "hierarchy": { "lvl1": "Input", "lvl2": "Read Only", "lvl3": "Required" } }, { "content": "Sizes", - "objectID": "ee031f69-78d2-4a3e-917f-5613530e30ee", + "objectID": "4c5a62e9-1dd2-4a17-bd66-d0d0901447fe", "type": "lvl3", "url": "/docs/components/input#sizes", "hierarchy": { "lvl1": "Input", "lvl2": "Required", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "2a550e38-d579-4916-96b7-7a629dd4392f", + "objectID": "91725fe3-f064-472c-94f2-b30f8eb31c31", "type": "lvl3", "url": "/docs/components/input#colors", "hierarchy": { "lvl1": "Input", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "21acace6-e9c3-442f-8853-5cd32ef11b0e", + "objectID": "6e460916-abce-48b2-9e17-ac431737db39", "type": "lvl3", "url": "/docs/components/input#variants", "hierarchy": { "lvl1": "Input", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "Radius", - "objectID": "e86c6ea0-2517-4b07-9f2e-9f2ed462c405", + "objectID": "3fe8be57-0213-48d4-955a-1382f7abf226", "type": "lvl3", "url": "/docs/components/input#radius", "hierarchy": { "lvl1": "Input", "lvl2": "Variants", "lvl3": "Radius" } }, { "content": "Label Placements", - "objectID": "83020ed6-22b8-4675-9347-39e5a779c518", + "objectID": "9c71c742-9a82-4bea-af5f-7e8297421459", "type": "lvl3", "url": "/docs/components/input#label-placements", "hierarchy": { @@ -4569,7 +4569,7 @@ }, { "content": "Password Input", - "objectID": "a05ad506-1920-4943-bb24-ae0add9c69b8", + "objectID": "5cf5d000-f857-46f6-9cc3-7f1de82b8f52", "type": "lvl3", "url": "/docs/components/input#password-input", "hierarchy": { @@ -4580,7 +4580,7 @@ }, { "content": "Clear Button", - "objectID": "b7ebc0a2-c74b-43b6-9b1b-59f90ac61b6c", + "objectID": "060f9ecd-3a94-4347-929b-8b4f6e83ce1d", "type": "lvl3", "url": "/docs/components/input#clear-button", "hierarchy": { @@ -4591,7 +4591,7 @@ }, { "content": "Start & End Content", - "objectID": "1222b8e3-6f2b-4726-998e-bf80e6de8d10", + "objectID": "6f5a69a9-aca2-4137-8f46-e5c945b9e060", "type": "lvl3", "url": "/docs/components/input#start--end-content", "hierarchy": { @@ -4602,7 +4602,7 @@ }, { "content": "With Description", - "objectID": "8df5d5d9-56e4-4d2a-8257-471e9ac26233", + "objectID": "dd2c1eed-492f-4b61-b436-8f1ee5ac9254", "type": "lvl3", "url": "/docs/components/input#with-description", "hierarchy": { @@ -4613,7 +4613,7 @@ }, { "content": "With Error Message", - "objectID": "0e842154-8a57-48d8-be27-ef1443f17b75", + "objectID": "b9c20bed-8dd5-4783-a2a3-4b56ad81079a", "type": "lvl3", "url": "/docs/components/input#with-error-message", "hierarchy": { @@ -4624,7 +4624,7 @@ }, { "content": "Controlled", - "objectID": "12ea3f9e-bec3-49da-8367-e4e0a9c45ae3", + "objectID": "256619f6-74ed-4211-b197-403067190efb", "type": "lvl3", "url": "/docs/components/input#controlled", "hierarchy": { @@ -4635,21 +4635,21 @@ }, { "content": "Slots", - "objectID": "df32b970-2ee0-43c7-82b3-76fefd5f99ec", + "objectID": "c3a3e970-d076-475b-8c43-51302aaa1d4e", "type": "lvl2", "url": "/docs/components/input#slots", "hierarchy": { "lvl1": "Input", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "8de935e6-2d68-4a3c-a4f6-99b785fb1371", + "objectID": "988a0961-68cd-4d0e-8bbd-42c7a025e980", "type": "lvl3", "url": "/docs/components/input#custom-styles", "hierarchy": { "lvl1": "Input", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Custom Implementation", - "objectID": "d3b725ce-93b7-40d7-afc0-c77f72f27a2e", + "objectID": "d1eff74b-2372-4ed7-ad7d-e47adb592b22", "type": "lvl3", "url": "/docs/components/input#custom-implementation", "hierarchy": { @@ -4660,35 +4660,35 @@ }, { "content": "Data Attributes", - "objectID": "e6abbb75-8004-4265-8535-3caacfe59854", + "objectID": "b3fcd754-102f-4ce2-bebe-9e117188b341", "type": "lvl2", "url": "/docs/components/input#data-attributes", "hierarchy": { "lvl1": "Input", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "e99440b1-2791-4d63-8e72-a7d13a18cfe4", + "objectID": "d29cfdbc-cc8b-44a0-a7aa-5c34cb977e42", "type": "lvl2", "url": "/docs/components/input#accessibility", "hierarchy": { "lvl1": "Input", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "0719b765-058d-4037-b518-461f26fafd0d", + "objectID": "7919e4f9-baa1-4794-885f-f755de02ec60", "type": "lvl2", "url": "/docs/components/input#api", "hierarchy": { "lvl1": "Input", "lvl2": "API", "lvl3": null } }, { "content": "Input Props", - "objectID": "b68660c2-3b37-4994-a8a2-d85cabe4abf1", + "objectID": "18dbd8b2-46fd-4fe4-92e7-4256360b79ff", "type": "lvl3", "url": "/docs/components/input#input-props", "hierarchy": { "lvl1": "Input", "lvl2": "API", "lvl3": "Input Props" } }, { "content": "Input Events", - "objectID": "a62fbc83-eb1d-46b3-befd-5c76afa07775", + "objectID": "76cad102-8292-48bb-bef4-e85511e5ede7", "type": "lvl3", "url": "/docs/components/input#input-events", "hierarchy": { @@ -4699,14 +4699,14 @@ }, { "content": "Keyboard Key", - "objectID": "e6ea1017-0a5f-424c-b3e2-5c80d0965eb3", + "objectID": "6cba7438-380c-4955-9f0e-78992e38778d", "type": "lvl1", "url": "/docs/components/kbd", "hierarchy": { "lvl1": "Keyboard Key" } }, { "content": "Installation", - "objectID": "34227d51-151e-4c2b-9fe4-9e6c4150550c", + "objectID": "21f931b9-3e99-482f-ac44-0ccb972e18e1", "type": "lvl2", "url": "/docs/components/kbd#installation", "hierarchy": { @@ -4717,35 +4717,35 @@ }, { "content": "Import", - "objectID": "c7c15efd-e5f1-4f96-8588-225d02602aed", + "objectID": "b19eaf8f-551e-4252-861f-f99ab35ec8a7", "type": "lvl2", "url": "/docs/components/kbd#import", "hierarchy": { "lvl1": "Keyboard Key", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "41d2181f-962e-4797-9557-425db5084ac0", + "objectID": "16b4fa88-e7b6-4328-8282-3c6050aa256b", "type": "lvl2", "url": "/docs/components/kbd#usage", "hierarchy": { "lvl1": "Keyboard Key", "lvl2": "Usage", "lvl3": null } }, { "content": "Keys", - "objectID": "05d3b135-0953-4d52-b752-b7378f6463e0", + "objectID": "8b2a2901-d385-427f-8c13-ab973e8c745a", "type": "lvl3", "url": "/docs/components/kbd#keys", "hierarchy": { "lvl1": "Keyboard Key", "lvl2": "Usage", "lvl3": "Keys" } }, { "content": "Slots", - "objectID": "fcc610d6-a14a-440a-a09c-d7869f241b3f", + "objectID": "34bb790f-8848-4dea-b8d6-58a8384cbba8", "type": "lvl2", "url": "/docs/components/kbd#slots", "hierarchy": { "lvl1": "Keyboard Key", "lvl2": "Slots", "lvl3": null } }, { "content": "Accessibility", - "objectID": "1bb267a2-f6d4-4582-8843-0de1130b891e", + "objectID": "57753147-7965-43e7-87ea-d8ea9adfd43d", "type": "lvl2", "url": "/docs/components/kbd#accessibility", "hierarchy": { @@ -4756,14 +4756,14 @@ }, { "content": "API", - "objectID": "bbaa931e-b56b-4432-8e80-68b246401232", + "objectID": "b187439b-650c-43c0-afe6-377d5ec9fc90", "type": "lvl2", "url": "/docs/components/kbd#api", "hierarchy": { "lvl1": "Keyboard Key", "lvl2": "API", "lvl3": null } }, { "content": "Keyboard Key Props", - "objectID": "fd70f0c7-bbf5-49b4-83bc-f6e5796f115f", + "objectID": "5bdddfd6-2242-45a6-9fd2-8b4e774454e7", "type": "lvl3", "url": "/docs/components/kbd#keyboard-key-props", "hierarchy": { @@ -4774,7 +4774,7 @@ }, { "content": "Keyboard Keys", - "objectID": "5f63b66d-745c-4d25-99f9-4c42430c242f", + "objectID": "aa123b1a-1ce6-4faf-84eb-ebedb90213b4", "type": "lvl3", "url": "/docs/components/kbd#keyboard-keys", "hierarchy": { @@ -4785,70 +4785,70 @@ }, { "content": "Link", - "objectID": "7ad33de0-fd80-478a-b46b-5b17c828f48d", + "objectID": "fdc97e65-adb3-4aae-94db-cbf7e2ea9504", "type": "lvl1", "url": "/docs/components/link", "hierarchy": { "lvl1": "Link" } }, { "content": "Installation", - "objectID": "0dede0ec-1725-43a8-b99c-c36636ea4acc", + "objectID": "c5d10676-57d6-4264-b54b-07a9721e1f8f", "type": "lvl2", "url": "/docs/components/link#installation", "hierarchy": { "lvl1": "Link", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "ef6f5259-673e-4f38-a3c2-4a111f86a070", + "objectID": "425d373b-a91f-4eb5-b077-7a00b94149d9", "type": "lvl2", "url": "/docs/components/link#import", "hierarchy": { "lvl1": "Link", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "cf4a46a0-76e4-42ef-8876-cc9776ff9aeb", + "objectID": "daaee619-1a7f-4603-90ca-9f895ae9e53c", "type": "lvl2", "url": "/docs/components/link#usage", "hierarchy": { "lvl1": "Link", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "febd8457-95ad-4a5e-9ba9-470fc93f3ebb", + "objectID": "1970a6dc-8495-4fe0-ad4b-257489f3e8a5", "type": "lvl3", "url": "/docs/components/link#disabled", "hierarchy": { "lvl1": "Link", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Sizes", - "objectID": "1cfce4a2-ecf0-4f47-aacf-419c71f7b33e", + "objectID": "9e28d286-5b5d-4d99-ad62-53ef730f4d1e", "type": "lvl3", "url": "/docs/components/link#sizes", "hierarchy": { "lvl1": "Link", "lvl2": "Disabled", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "d325ca22-4335-4b43-a924-09ab53703156", + "objectID": "f69c1c80-6b14-4352-afdd-af6a8985670f", "type": "lvl3", "url": "/docs/components/link#colors", "hierarchy": { "lvl1": "Link", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Underline", - "objectID": "04da61cc-5af4-4c07-948f-d99b7275fe05", + "objectID": "fc95a617-e97e-4332-b778-c1cba211dba0", "type": "lvl3", "url": "/docs/components/link#underline", "hierarchy": { "lvl1": "Link", "lvl2": "Colors", "lvl3": "Underline" } }, { "content": "External", - "objectID": "6e63e9fd-5b7c-4a3f-94c8-7fe3c516c8ee", + "objectID": "40fba992-6ce4-4577-a48d-0614187ab2e0", "type": "lvl3", "url": "/docs/components/link#external", "hierarchy": { "lvl1": "Link", "lvl2": "Underline", "lvl3": "External" } }, { "content": "Custom Anchor Icon", - "objectID": "2435adc3-3bde-4b00-bde9-60b27aa19791", + "objectID": "bd6e0301-32d3-453e-9c41-5605a282e036", "type": "lvl3", "url": "/docs/components/link#custom-anchor-icon", "hierarchy": { @@ -4859,7 +4859,7 @@ }, { "content": "Block Link", - "objectID": "52ab762d-b185-4bf4-8cd3-bb3da06c2e0d", + "objectID": "0f256244-9534-4513-91c0-2b898ffa5a5a", "type": "lvl3", "url": "/docs/components/link#block-link", "hierarchy": { @@ -4870,7 +4870,7 @@ }, { "content": "Polymorphic Component", - "objectID": "3eca8c3d-8399-43ff-82bb-9d6f48c7771f", + "objectID": "131a4e0b-cf43-4967-b174-b915bfac5287", "type": "lvl3", "url": "/docs/components/link#polymorphic-component", "hierarchy": { @@ -4881,7 +4881,7 @@ }, { "content": "Routing", - "objectID": "c8c4d3f5-ee76-4895-985b-b13288d2d09c", + "objectID": "f24eb3a0-39d5-41ac-8653-b15a6bc87d2d", "type": "lvl3", "url": "/docs/components/link#routing", "hierarchy": { @@ -4892,7 +4892,7 @@ }, { "content": "Custom Implementation", - "objectID": "210d6f71-38cc-46e2-9bb4-bd171886fc3e", + "objectID": "eccc3b9b-4f79-4e1d-bd61-7805fde3c54c", "type": "lvl3", "url": "/docs/components/link#custom-implementation", "hierarchy": { @@ -4903,77 +4903,77 @@ }, { "content": "Data Attributes", - "objectID": "5c30fadc-5577-4348-985d-710ced8ceb45", + "objectID": "aec81311-a595-4a5a-ac83-7a0ec40b500c", "type": "lvl2", "url": "/docs/components/link#data-attributes", "hierarchy": { "lvl1": "Link", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "707e32fe-27fc-4507-bc93-1ff537f95b4c", + "objectID": "f66d275b-8569-41cb-adc1-2149a883a6c6", "type": "lvl2", "url": "/docs/components/link#accessibility", "hierarchy": { "lvl1": "Link", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "b1095f7c-0e2a-4035-af4c-5c08e5b70e2e", + "objectID": "dd7ad4c1-bf8b-415f-ae20-7c8e9d830c3a", "type": "lvl2", "url": "/docs/components/link#api", "hierarchy": { "lvl1": "Link", "lvl2": "API", "lvl3": null } }, { "content": "Link Props", - "objectID": "8743468b-ea3d-4f24-8c19-29b7acca5516", + "objectID": "9835cae0-871e-4ccd-92d6-8939a14bf7cf", "type": "lvl3", "url": "/docs/components/link#link-props", "hierarchy": { "lvl1": "Link", "lvl2": "API", "lvl3": "Link Props" } }, { "content": "Link Events", - "objectID": "179ee6e3-8c71-4476-b14d-bfca0942a55b", + "objectID": "179a7248-748b-4c34-819e-7165891ff923", "type": "lvl3", "url": "/docs/components/link#link-events", "hierarchy": { "lvl1": "Link", "lvl2": "Link Props", "lvl3": "Link Events" } }, { "content": "Listbox", - "objectID": "9f86aa27-678d-47c3-9788-78fcb4d3fbfc", + "objectID": "3658e97b-21bc-4565-9be8-5ebc6ea6ade0", "type": "lvl1", "url": "/docs/components/listbox", "hierarchy": { "lvl1": "Listbox" } }, { "content": "Installation", - "objectID": "6076f5c0-1498-496a-83cb-bbde700a2966", + "objectID": "fda4cd40-5f94-489f-9465-dc66f3072711", "type": "lvl2", "url": "/docs/components/listbox#installation", "hierarchy": { "lvl1": "Listbox", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "ad619d9d-f02b-4baa-83a2-32c5d7771dd7", + "objectID": "2dfe92e4-8fa9-45d7-862e-2719017d4cbf", "type": "lvl2", "url": "/docs/components/listbox#import", "hierarchy": { "lvl1": "Listbox", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "22d7eaf2-b89b-4f43-9654-9cca5820817a", + "objectID": "0e872d8c-05ca-4111-ad31-360ccf6a2b97", "type": "lvl2", "url": "/docs/components/listbox#usage", "hierarchy": { "lvl1": "Listbox", "lvl2": "Usage", "lvl3": null } }, { "content": "Dynamic items", - "objectID": "e39759a1-6d86-4a8c-9cec-dfd3c5ba2c2a", + "objectID": "00bb5b06-47e3-4c0e-8358-fc9090f13b40", "type": "lvl3", "url": "/docs/components/listbox#dynamic-items", "hierarchy": { "lvl1": "Listbox", "lvl2": "Usage", "lvl3": "Dynamic items" } }, { "content": "Disabled Keys", - "objectID": "397048dd-13cb-442a-a9c6-783e63497112", + "objectID": "d75b3aa1-205e-43bd-88c4-0942c822ccb0", "type": "lvl3", "url": "/docs/components/listbox#disabled-keys", "hierarchy": { @@ -4984,7 +4984,7 @@ }, { "content": "Variants", - "objectID": "a303c660-2d57-4e47-9227-0845474296d7", + "objectID": "3f239192-9191-4bf7-b690-eabf9ba2e918", "type": "lvl3", "url": "/docs/components/listbox#variants", "hierarchy": { @@ -4995,7 +4995,7 @@ }, { "content": "Single Selection", - "objectID": "5bd6b2ce-f340-4682-934c-0b38652bb655", + "objectID": "24ff4959-255c-4bbd-853a-8a8461844683", "type": "lvl3", "url": "/docs/components/listbox#single-selection", "hierarchy": { @@ -5006,7 +5006,7 @@ }, { "content": "Multiple Selection", - "objectID": "cfcb254d-a789-490d-bda3-f6172d537c47", + "objectID": "386fc36f-2905-459a-9829-3006339cf431", "type": "lvl3", "url": "/docs/components/listbox#multiple-selection", "hierarchy": { @@ -5017,7 +5017,7 @@ }, { "content": "With Icons", - "objectID": "52b0a28f-029d-4280-832a-490b6c2d817a", + "objectID": "f77da1bd-c341-4780-b1fa-5ad1c28cd4c3", "type": "lvl3", "url": "/docs/components/listbox#with-icons", "hierarchy": { @@ -5028,7 +5028,7 @@ }, { "content": "With Description", - "objectID": "b055eef9-e7db-4e86-af6d-8a2f69776713", + "objectID": "cf9f9f39-ea6b-4577-8578-de5eb0dcb4a6", "type": "lvl3", "url": "/docs/components/listbox#with-description", "hierarchy": { @@ -5039,7 +5039,7 @@ }, { "content": "With Top & Bottom Content", - "objectID": "cf573fd4-12a7-44fa-b459-c2bda39f3865", + "objectID": "a80c800d-7539-4d3f-8e70-aa0f02fc061e", "type": "lvl3", "url": "/docs/components/listbox#with-top--bottom-content", "hierarchy": { @@ -5050,7 +5050,7 @@ }, { "content": "With Sections", - "objectID": "f547b95c-9bdf-43f6-b658-5cfdc0e30232", + "objectID": "5b1d29bf-6fc2-4bec-b5bb-677c0a16bb16", "type": "lvl3", "url": "/docs/components/listbox#with-sections", "hierarchy": { @@ -5061,7 +5061,7 @@ }, { "content": "Routing", - "objectID": "28bcb65c-b3ba-4bdd-bd53-fdebe74d7336", + "objectID": "981b5ca7-15d1-4d9d-b432-1e0d3192b67d", "type": "lvl3", "url": "/docs/components/listbox#routing", "hierarchy": { @@ -5072,21 +5072,21 @@ }, { "content": "Slots", - "objectID": "02e37e22-d3c7-4b21-9d2c-6ba8bb893549", + "objectID": "4c45deac-233b-4bec-a34d-128f3bbc1f8f", "type": "lvl2", "url": "/docs/components/listbox#slots", "hierarchy": { "lvl1": "Listbox", "lvl2": "Slots", "lvl3": null } }, { "content": "ListboxItem", - "objectID": "112ad51b-11d8-44d0-ad6a-4773bfd7aec3", + "objectID": "c083bd0d-30bc-4c26-8300-bae7d7c38a47", "type": "lvl3", "url": "/docs/components/listbox#listboxitem", "hierarchy": { "lvl1": "Listbox", "lvl2": "Listbox", "lvl3": "ListboxItem" } }, { "content": "ListboxSection", - "objectID": "c7d24ba9-f894-419a-b101-76a34559650c", + "objectID": "9d0020d4-4dc4-48d6-9cc5-c4cf2490e5ca", "type": "lvl3", "url": "/docs/components/listbox#listboxsection", "hierarchy": { @@ -5097,7 +5097,7 @@ }, { "content": "Customizing the listbox", - "objectID": "7eecc405-3f9c-4c0b-808f-0d4520ea4f99", + "objectID": "31106c28-a971-4da5-98a9-fe7457f96c47", "type": "lvl3", "url": "/docs/components/listbox#customizing-the-listbox", "hierarchy": { @@ -5108,7 +5108,7 @@ }, { "content": "Keyboard Interactions", - "objectID": "ef8b17c6-c7ca-402e-84f0-8e71a1484e23", + "objectID": "5f629bc4-a2ff-4f34-b319-606346317a5f", "type": "lvl3", "url": "/docs/components/listbox#keyboard-interactions", "hierarchy": { @@ -5119,35 +5119,35 @@ }, { "content": "Data Attributes", - "objectID": "f66a2a44-3172-4477-a3b6-669f18c6b772", + "objectID": "588d1fa0-5730-4e80-83c6-8275a22c6898", "type": "lvl2", "url": "/docs/components/listbox#data-attributes", "hierarchy": { "lvl1": "Listbox", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "e73c76f6-859b-44d8-a835-7da8baa6905f", + "objectID": "cad95d4b-125e-4df7-bdc6-a376f5a6160a", "type": "lvl2", "url": "/docs/components/listbox#accessibility", "hierarchy": { "lvl1": "Listbox", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "7c1a346a-f7de-4f3a-99f0-806dbbe042cf", + "objectID": "3f506f98-416d-4b53-b03b-cd3f9c5fd449", "type": "lvl2", "url": "/docs/components/listbox#api", "hierarchy": { "lvl1": "Listbox", "lvl2": "API", "lvl3": null } }, { "content": "Listbox Props", - "objectID": "af447b11-962c-42a9-8a05-b176004512cf", + "objectID": "1855a3ac-4f58-45b3-ada1-3b961895df97", "type": "lvl3", "url": "/docs/components/listbox#listbox-props", "hierarchy": { "lvl1": "Listbox", "lvl2": "API", "lvl3": "Listbox Props" } }, { "content": "Listbox Events", - "objectID": "269e0051-0797-41a6-9d07-019b2aa41dc4", + "objectID": "6eb11f29-d327-4eb5-b394-0ef02fc4e306", "type": "lvl3", "url": "/docs/components/listbox#listbox-events", "hierarchy": { @@ -5158,7 +5158,7 @@ }, { "content": "ListboxSection Props", - "objectID": "181a38cd-592e-40bd-9b2c-0bcde304e1fc", + "objectID": "72f012a6-1a06-4472-b432-795ca06b8b0d", "type": "lvl3", "url": "/docs/components/listbox#listboxsection-props", "hierarchy": { @@ -5169,7 +5169,7 @@ }, { "content": "ListboxItem Props", - "objectID": "ff21ec6f-dad5-4e00-aaa6-254ddc9927c9", + "objectID": "39ad4745-765a-46ae-8bc5-c88143b231bc", "type": "lvl3", "url": "/docs/components/listbox#listboxitem-props", "hierarchy": { @@ -5180,7 +5180,7 @@ }, { "content": "ListboxItem Events", - "objectID": "059518ce-45a4-41b9-aeaf-26d6eb523fd2", + "objectID": "c98abdba-8557-4206-9261-03afd116acce", "type": "lvl3", "url": "/docs/components/listbox#listboxitem-events", "hierarchy": { @@ -5191,7 +5191,7 @@ }, { "content": "Types", - "objectID": "c6bc3858-d762-41d2-a4e8-fbcd6e69738c", + "objectID": "b3239bd6-19a6-4990-9da3-cb00f52c7890", "type": "lvl3", "url": "/docs/components/listbox#types", "hierarchy": { @@ -5202,56 +5202,56 @@ }, { "content": "Listbox Item Selected Icon Props", - "objectID": "8fa5cf68-b0a9-4817-be20-c8d120a7ed21", + "objectID": "6b87aeff-394f-464d-bdf6-040f0f3f3c22", "type": "lvl4", "url": "/docs/components/listbox#listbox-item-selected-icon-props", "hierarchy": { "lvl1": "Listbox", "lvl2": "Types", "lvl3": null } }, { "content": "Modal", - "objectID": "e0d508fd-848f-45a2-949f-016618306691", + "objectID": "fd61c5f1-db8f-47c3-9f99-8dbc8ce4441a", "type": "lvl1", "url": "/docs/components/modal", "hierarchy": { "lvl1": "Modal" } }, { "content": "Installation", - "objectID": "da43d122-b92d-460c-a9a5-2c9564a96c91", + "objectID": "e753faf6-5a29-46ea-a973-379d1b70745d", "type": "lvl2", "url": "/docs/components/modal#installation", "hierarchy": { "lvl1": "Modal", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "1cdf7518-a822-4476-941b-4bd1332ac6c7", + "objectID": "7b236cc7-e22f-47f8-a161-4ae6ebd9e92a", "type": "lvl2", "url": "/docs/components/modal#import", "hierarchy": { "lvl1": "Modal", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "e90a8477-6e75-4fb5-9063-59f495060778", + "objectID": "61a1016b-96a7-42e2-ba7b-180cb868e5ef", "type": "lvl2", "url": "/docs/components/modal#usage", "hierarchy": { "lvl1": "Modal", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "297271b3-08c7-43b2-9eb5-339ce4b73bc5", + "objectID": "8618806d-7877-4d51-8655-1d314b4969fb", "type": "lvl3", "url": "/docs/components/modal#sizes", "hierarchy": { "lvl1": "Modal", "lvl2": "Usage", "lvl3": "Sizes" } }, { "content": "Non-dismissible", - "objectID": "7db83afd-49e6-4f80-8275-151cd9ef8975", + "objectID": "e409dd14-0b7b-4cb4-8ea3-46e089ab0dc2", "type": "lvl3", "url": "/docs/components/modal#non-dismissible", "hierarchy": { "lvl1": "Modal", "lvl2": "Sizes", "lvl3": "Non-dismissible" } }, { "content": "Modal placement", - "objectID": "7a351e3a-e01e-4fd2-9a95-f298e822a384", + "objectID": "04a8bbe4-12e0-4f0e-b06d-63abdfcd7d19", "type": "lvl3", "url": "/docs/components/modal#modal-placement", "hierarchy": { @@ -5262,7 +5262,7 @@ }, { "content": "Overflow scroll", - "objectID": "fc61f394-194e-4d5b-8fe2-db1fb77b9b31", + "objectID": "e5d93022-94b5-4a04-9730-e8aa086b83d5", "type": "lvl3", "url": "/docs/components/modal#overflow-scroll", "hierarchy": { @@ -5273,7 +5273,7 @@ }, { "content": "With Form", - "objectID": "2e210008-4332-4079-8b6d-ee2240f33d05", + "objectID": "7a916477-2275-410d-9af6-38654c98e56a", "type": "lvl3", "url": "/docs/components/modal#with-form", "hierarchy": { @@ -5284,14 +5284,14 @@ }, { "content": "Backdrop", - "objectID": "71e3a6c1-23a5-4033-93f4-d555b7db844b", + "objectID": "c0a22998-18da-4a00-8e3e-c85a3e1cd693", "type": "lvl3", "url": "/docs/components/modal#backdrop", "hierarchy": { "lvl1": "Modal", "lvl2": "With Form", "lvl3": "Backdrop" } }, { "content": "Custom Backdrop", - "objectID": "e3b03fd8-55bf-4340-8be3-5239b4935c16", + "objectID": "65291f2c-7f4e-41a2-a36f-436ff2066f70", "type": "lvl3", "url": "/docs/components/modal#custom-backdrop", "hierarchy": { @@ -5302,7 +5302,7 @@ }, { "content": "Custom Motion", - "objectID": "f568bc36-4058-4d88-9715-66774b876421", + "objectID": "94c5d79c-7c16-40b0-a007-c9273e89bbb4", "type": "lvl3", "url": "/docs/components/modal#custom-motion", "hierarchy": { @@ -5313,7 +5313,7 @@ }, { "content": "Draggable", - "objectID": "dfa527fe-f848-441b-ae06-dcfb9f4c5457", + "objectID": "1a3b6829-df41-40ae-b5a9-0d10587af78d", "type": "lvl3", "url": "/docs/components/modal#draggable", "hierarchy": { @@ -5324,7 +5324,7 @@ }, { "content": "Draggable Overflow", - "objectID": "160d221f-a5a8-4a9f-83be-07e04b478c3a", + "objectID": "bf31d900-3602-4ad6-a933-8f5e30c489f4", "type": "lvl3", "url": "/docs/components/modal#draggable-overflow", "hierarchy": { @@ -5335,49 +5335,49 @@ }, { "content": "Slots", - "objectID": "22367893-ad25-4731-b07c-6f92d1539e42", + "objectID": "528e1299-0cd1-426b-bd2c-93ba9054c915", "type": "lvl2", "url": "/docs/components/modal#slots", "hierarchy": { "lvl1": "Modal", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "85dc3d5d-a475-407b-82a8-03f82eaaf21e", + "objectID": "b41a40fb-82ff-4199-bd8f-5e7220258632", "type": "lvl3", "url": "/docs/components/modal#custom-styles", "hierarchy": { "lvl1": "Modal", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Data Attributes", - "objectID": "f2ac8d09-dd6c-440b-8c13-f7ce9e99d103", + "objectID": "b2387e15-c4f9-40f3-88d5-bcdf57cd8ad4", "type": "lvl2", "url": "/docs/components/modal#data-attributes", "hierarchy": { "lvl1": "Modal", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "720df261-d3e1-400d-9772-843af0e6cb38", + "objectID": "627ec127-a531-4715-9c56-8eb1ce7d315a", "type": "lvl2", "url": "/docs/components/modal#accessibility", "hierarchy": { "lvl1": "Modal", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "922686da-9e81-4036-a8e0-f32fe3326c1c", + "objectID": "bbf1e5af-a29a-444e-a6af-f2d71ccee81e", "type": "lvl2", "url": "/docs/components/modal#api", "hierarchy": { "lvl1": "Modal", "lvl2": "API", "lvl3": null } }, { "content": "Modal Props", - "objectID": "ce88dd07-9de1-4a6a-995e-d61fc9da6dc1", + "objectID": "70d95764-04b7-4c58-8918-b8d00a0714ea", "type": "lvl3", "url": "/docs/components/modal#modal-props", "hierarchy": { "lvl1": "Modal", "lvl2": "API", "lvl3": "Modal Props" } }, { "content": "Modal Events", - "objectID": "0ee17b03-b3cb-4a3f-a191-856886fe279d", + "objectID": "6a518f81-307c-4fca-afe3-cdc843761966", "type": "lvl3", "url": "/docs/components/modal#modal-events", "hierarchy": { @@ -5388,7 +5388,7 @@ }, { "content": "Modal types", - "objectID": "7a8425b1-77a4-49c2-ae76-b792b282fc75", + "objectID": "6d1402c6-9159-4622-8a30-1515efcadc05", "type": "lvl3", "url": "/docs/components/modal#modal-types", "hierarchy": { @@ -5399,49 +5399,49 @@ }, { "content": "Motion Props", - "objectID": "9e356a44-10f6-4d45-a8f0-2f7e242684c6", + "objectID": "0803ff40-4c3c-41f1-ade4-201ed79f9b7d", "type": "lvl4", "url": "/docs/components/modal#motion-props", "hierarchy": { "lvl1": "Modal", "lvl2": "Modal types", "lvl3": null } }, { "content": "Navbar", - "objectID": "79c2fe0f-cf48-454f-afe9-1d47edae1a00", + "objectID": "03493628-267a-4d14-aa54-dd7ec871d719", "type": "lvl1", "url": "/docs/components/navbar", "hierarchy": { "lvl1": "Navbar" } }, { "content": "Installation", - "objectID": "8425bc67-ac1a-4799-a80d-64f75b8290e8", + "objectID": "2dba7726-e0ab-467f-9ae1-5c9cd61a4cf8", "type": "lvl2", "url": "/docs/components/navbar#installation", "hierarchy": { "lvl1": "Navbar", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "1cdc6fee-120a-4cdb-9d81-22e0b7ef4298", + "objectID": "e4653820-c36e-4563-9c92-9bf13ba22135", "type": "lvl2", "url": "/docs/components/navbar#import", "hierarchy": { "lvl1": "Navbar", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "b82a927d-783a-40e8-958c-951fc61e593e", + "objectID": "e0ab1e98-e643-417f-8cf7-09a5cf9794cf", "type": "lvl2", "url": "/docs/components/navbar#usage", "hierarchy": { "lvl1": "Navbar", "lvl2": "Usage", "lvl3": null } }, { "content": "Static", - "objectID": "68cde6b8-a3c6-44f3-a31b-f713d93c5fe9", + "objectID": "9a81289a-c786-45f4-ae8c-0bf09f43de7f", "type": "lvl3", "url": "/docs/components/navbar#static", "hierarchy": { "lvl1": "Navbar", "lvl2": "Usage", "lvl3": "Static" } }, { "content": "Hide on scroll", - "objectID": "0831db23-a0c2-4353-b98e-459313dd5f91", + "objectID": "7bb0ee5a-443f-4c5f-9fc3-a2a50e0c2a0d", "type": "lvl3", "url": "/docs/components/navbar#hide-on-scroll", "hierarchy": { @@ -5452,7 +5452,7 @@ }, { "content": "With Menu", - "objectID": "372810dc-11cf-4823-987d-81c98ea0f15f", + "objectID": "c5a7d6e1-07bb-4483-a4b3-884d6b91cd50", "type": "lvl3", "url": "/docs/components/navbar#with-menu", "hierarchy": { @@ -5463,7 +5463,7 @@ }, { "content": "Controlled Menu", - "objectID": "bf1f7e17-53d0-42e7-aae4-ec5fffc52684", + "objectID": "0b3ce2ed-71fd-4bef-8b6d-aa48e63452c8", "type": "lvl3", "url": "/docs/components/navbar#controlled-menu", "hierarchy": { @@ -5474,7 +5474,7 @@ }, { "content": "With Border", - "objectID": "a84c64e4-b392-4692-a69c-539fd801c7c1", + "objectID": "3da2755b-1b8c-42ff-a2ba-23eb44a8ac05", "type": "lvl3", "url": "/docs/components/navbar#with-border", "hierarchy": { @@ -5485,7 +5485,7 @@ }, { "content": "Disabling Blur", - "objectID": "da4cbf76-8d36-421c-bc45-805d49212f19", + "objectID": "17872eb4-449e-4950-97e2-44f82cc911de", "type": "lvl3", "url": "/docs/components/navbar#disabling-blur", "hierarchy": { @@ -5496,7 +5496,7 @@ }, { "content": "With Dropdown Menu", - "objectID": "11515a9c-e527-4e98-9071-0d1f54ff1b49", + "objectID": "abd460ab-7403-487c-83c7-ac2f8d336e21", "type": "lvl3", "url": "/docs/components/navbar#with-dropdown-menu", "hierarchy": { @@ -5507,7 +5507,7 @@ }, { "content": "With Avatar", - "objectID": "a4d2e52f-4880-4af5-a6e1-8123ad82f7f8", + "objectID": "66bacb64-46bf-465b-8395-044b330a5c0f", "type": "lvl3", "url": "/docs/components/navbar#with-avatar", "hierarchy": { @@ -5518,7 +5518,7 @@ }, { "content": "With Search Input", - "objectID": "d8b7c4b7-4a64-4ad0-aeb9-9a2863e11999", + "objectID": "675a1acc-094f-4bf9-9a5b-6853573c8fd0", "type": "lvl3", "url": "/docs/components/navbar#with-search-input", "hierarchy": { @@ -5529,7 +5529,7 @@ }, { "content": "Customizing the active item", - "objectID": "e6a58164-0866-4fb8-8e8a-57d359517c33", + "objectID": "ee182fdc-4279-430a-8af2-f43b428f410c", "type": "lvl3", "url": "/docs/components/navbar#customizing-the-active-item", "hierarchy": { @@ -5540,35 +5540,35 @@ }, { "content": "Slots", - "objectID": "0920d713-7e9e-4952-b422-d53f07d6ff6a", + "objectID": "65d39248-976b-47b9-a71a-197308032075", "type": "lvl2", "url": "/docs/components/navbar#slots", "hierarchy": { "lvl1": "Navbar", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "c1c0e4f4-50ae-4c84-8579-4cacbfdda2fd", + "objectID": "45eeff87-e59e-46f0-9f54-44e31c8d2b54", "type": "lvl2", "url": "/docs/components/navbar#data-attributes", "hierarchy": { "lvl1": "Navbar", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "API", - "objectID": "ce699650-113c-4973-a7b8-5ba9dcba6e90", + "objectID": "8f250f34-0be1-4784-8579-f9e9e8eabeb6", "type": "lvl2", "url": "/docs/components/navbar#api", "hierarchy": { "lvl1": "Navbar", "lvl2": "API", "lvl3": null } }, { "content": "Navbar Props", - "objectID": "1927f21b-b310-42ec-a01d-823457811094", + "objectID": "4422d2d7-991a-44eb-a990-83d137ec6b0f", "type": "lvl3", "url": "/docs/components/navbar#navbar-props", "hierarchy": { "lvl1": "Navbar", "lvl2": "API", "lvl3": "Navbar Props" } }, { "content": "Navbar Events", - "objectID": "1a7159b1-452b-40bf-96be-2e34a9d89cc8", + "objectID": "026187b4-5b1a-476a-82cf-70119bdf5b3a", "type": "lvl3", "url": "/docs/components/navbar#navbar-events", "hierarchy": { @@ -5579,7 +5579,7 @@ }, { "content": "NavbarContent Props", - "objectID": "93c0fe10-71c5-4df9-93f5-c062fce7d3a4", + "objectID": "b83a5d9a-6f4e-4e3b-ae40-9a90c65e3135", "type": "lvl3", "url": "/docs/components/navbar#navbarcontent-props", "hierarchy": { @@ -5590,7 +5590,7 @@ }, { "content": "NavbarItem Props", - "objectID": "8b541fee-5442-4fdb-a94c-6895c3d11d97", + "objectID": "eec55de3-885e-497f-8ffe-b640cde5a643", "type": "lvl3", "url": "/docs/components/navbar#navbaritem-props", "hierarchy": { @@ -5601,7 +5601,7 @@ }, { "content": "NavbarMenuToggle Props", - "objectID": "238f5647-97d1-4790-b411-4121e14611a4", + "objectID": "d2254d21-30a3-4c1d-896a-a5b13f1f8928", "type": "lvl3", "url": "/docs/components/navbar#navbarmenutoggle-props", "hierarchy": { @@ -5612,7 +5612,7 @@ }, { "content": "NavbarMenuToggle Events", - "objectID": "d2d17c1c-cdd7-4b80-876d-0bb43e0f31e6", + "objectID": "5cc68cd3-3959-406d-9639-b9be6690b098", "type": "lvl3", "url": "/docs/components/navbar#navbarmenutoggle-events", "hierarchy": { @@ -5623,7 +5623,7 @@ }, { "content": "NavbarMenu Props", - "objectID": "b836c3ef-3ccb-42fb-8901-1fe7d5d4b01b", + "objectID": "14d3a2c2-4043-4a24-9148-24dfd3b26fdf", "type": "lvl3", "url": "/docs/components/navbar#navbarmenu-props", "hierarchy": { @@ -5634,7 +5634,7 @@ }, { "content": "NavbarMenuItem Props", - "objectID": "aafd5abd-e4f7-457b-b6e6-60829be5a1d6", + "objectID": "d06217a5-bdad-4d55-b18b-8e9c5405b394", "type": "lvl3", "url": "/docs/components/navbar#navbarmenuitem-props", "hierarchy": { @@ -5645,7 +5645,7 @@ }, { "content": "Navbar types", - "objectID": "c2b612f5-9bab-4241-8f64-20d80ac03c4d", + "objectID": "a6f2e131-4913-4e7a-bd6b-a5062519a908", "type": "lvl3", "url": "/docs/components/navbar#navbar-types", "hierarchy": { @@ -5656,70 +5656,70 @@ }, { "content": "Motion Props", - "objectID": "09c1ee56-7a63-44ba-a73a-dcce15f73d61", + "objectID": "44fc9291-0bcd-4402-9f41-3c03ee5d47cd", "type": "lvl4", "url": "/docs/components/navbar#motion-props", "hierarchy": { "lvl1": "Navbar", "lvl2": "Navbar types", "lvl3": null } }, { "content": "Pagination", - "objectID": "770d4ddb-58ba-42f3-9d15-1f7c64ca7619", + "objectID": "e2401f19-9d41-44fc-9cd1-c11ce1adafb0", "type": "lvl1", "url": "/docs/components/pagination", "hierarchy": { "lvl1": "Pagination" } }, { "content": "Installation", - "objectID": "c1ee7e55-cc2d-4cd6-b284-56e6f641f89c", + "objectID": "dc4076f7-6ca8-4ff8-96fd-671f69970e61", "type": "lvl2", "url": "/docs/components/pagination#installation", "hierarchy": { "lvl1": "Pagination", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "ae38925c-8fe6-43fc-8fe7-7d734c35b031", + "objectID": "80a383c5-453e-44c8-8a01-a36ab09c4306", "type": "lvl2", "url": "/docs/components/pagination#import", "hierarchy": { "lvl1": "Pagination", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "a4d06518-1ad4-4ee5-9899-6d982b1795c8", + "objectID": "46afc1a7-e13f-4149-ab94-04494ae2ed74", "type": "lvl2", "url": "/docs/components/pagination#usage", "hierarchy": { "lvl1": "Pagination", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "a16d6e91-1fed-40e7-9045-41a6ce2ec06d", + "objectID": "8cbad5a3-deb9-4616-95ee-92739ccc5867", "type": "lvl3", "url": "/docs/components/pagination#disabled", "hierarchy": { "lvl1": "Pagination", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Sizes", - "objectID": "37daf3d9-f1eb-47c0-b61b-bdf932cfe4cc", + "objectID": "ace9331a-ec90-445c-b67a-962a3400273f", "type": "lvl3", "url": "/docs/components/pagination#sizes", "hierarchy": { "lvl1": "Pagination", "lvl2": "Disabled", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "6c2ded03-3c77-474b-843b-b7b03615bf97", + "objectID": "0c255212-3fe9-43d4-8556-1bb43a6c455e", "type": "lvl3", "url": "/docs/components/pagination#colors", "hierarchy": { "lvl1": "Pagination", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "e32514a2-6380-4bb8-b2ee-b9023be61e32", + "objectID": "e3cba395-c9cb-45f6-ba9d-23abf36e7a08", "type": "lvl3", "url": "/docs/components/pagination#variants", "hierarchy": { "lvl1": "Pagination", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "With Controls", - "objectID": "79428d26-ed03-4cf0-ad6e-e515a3872161", + "objectID": "f859eaca-4fbc-43dd-936f-8d8b0f75f6e4", "type": "lvl3", "url": "/docs/components/pagination#with-controls", "hierarchy": { @@ -5730,7 +5730,7 @@ }, { "content": "Pagination Loop", - "objectID": "483055b4-0add-48f5-9c2f-df029fe01b32", + "objectID": "88bfbc28-5e46-493f-864a-3deef67a2ed5", "type": "lvl3", "url": "/docs/components/pagination#pagination-loop", "hierarchy": { @@ -5741,7 +5741,7 @@ }, { "content": "Changing the initial page", - "objectID": "6eb394bb-a295-4329-8914-771387630d58", + "objectID": "eb8c07b1-4fb0-421e-8dce-e27713a256ab", "type": "lvl3", "url": "/docs/components/pagination#changing-the-initial-page", "hierarchy": { @@ -5752,7 +5752,7 @@ }, { "content": "Compact Pagination", - "objectID": "e31f419a-d1a2-4435-b9c4-07dcc0373f9b", + "objectID": "343748de-029d-4c07-a886-ec026c1c804f", "type": "lvl3", "url": "/docs/components/pagination#compact-pagination", "hierarchy": { @@ -5763,7 +5763,7 @@ }, { "content": "With Shadow", - "objectID": "9f91344b-2203-4af3-9b09-c7b72d2d1841", + "objectID": "e4977e3e-3cd1-453e-9148-531bf8a1fa82", "type": "lvl3", "url": "/docs/components/pagination#with-shadow", "hierarchy": { @@ -5774,7 +5774,7 @@ }, { "content": "Controlled", - "objectID": "39bd48bf-122c-4bfc-8ca2-cec18aaadce8", + "objectID": "5accd2a0-4aaa-465d-84cd-f6d1567b7ac2", "type": "lvl3", "url": "/docs/components/pagination#controlled", "hierarchy": { @@ -5785,7 +5785,7 @@ }, { "content": "Siblings", - "objectID": "7b1fc5b4-a85e-4272-952c-120ef1461d40", + "objectID": "28d468e9-be2f-40ee-b7b8-5c992c6ba115", "type": "lvl3", "url": "/docs/components/pagination#siblings", "hierarchy": { @@ -5796,7 +5796,7 @@ }, { "content": "Boundaries", - "objectID": "1c95ea22-e7da-4ea2-8710-844186270298", + "objectID": "fc285a93-9d8a-45d5-91cd-2dae60e4f257", "type": "lvl3", "url": "/docs/components/pagination#boundaries", "hierarchy": { @@ -5807,7 +5807,7 @@ }, { "content": "Custom items", - "objectID": "a2d5bbc7-f210-40a1-a055-7b11f72e7bd7", + "objectID": "0acf7574-dc0b-4a90-a934-7b78ac3aee29", "type": "lvl3", "url": "/docs/components/pagination#custom-items", "hierarchy": { @@ -5818,14 +5818,14 @@ }, { "content": "Slots", - "objectID": "68ee8da8-2a8b-4b44-8980-7b4eb9d5a12b", + "objectID": "61288997-dc6d-4fce-950c-feb2faf55f01", "type": "lvl2", "url": "/docs/components/pagination#slots", "hierarchy": { "lvl1": "Pagination", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "22023153-6a74-4867-bb89-6a3ae5262d0b", + "objectID": "9a302bfe-9d2a-4b85-a114-80a8fe726492", "type": "lvl3", "url": "/docs/components/pagination#custom-styles", "hierarchy": { @@ -5836,7 +5836,7 @@ }, { "content": "Custom Implementation", - "objectID": "c81a5ea1-209b-4403-a09a-63ce2d397e0e", + "objectID": "6b9ab669-8028-45f7-9e36-eb85b9c4a026", "type": "lvl3", "url": "/docs/components/pagination#custom-implementation", "hierarchy": { @@ -5847,7 +5847,7 @@ }, { "content": "Data Attributes", - "objectID": "14ba26c5-7e43-4389-bc1a-c73682caa52f", + "objectID": "ecd18ca7-074a-4cbe-9b4e-8921f6493c73", "type": "lvl2", "url": "/docs/components/pagination#data-attributes", "hierarchy": { @@ -5858,21 +5858,21 @@ }, { "content": "Accessibility", - "objectID": "311261b5-f347-4c85-b5ee-4aaa4a3a7b7d", + "objectID": "4995306c-3b2c-46cf-bb04-355337d3f908", "type": "lvl2", "url": "/docs/components/pagination#accessibility", "hierarchy": { "lvl1": "Pagination", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "e873d403-0759-421f-86dd-3528c97bf363", + "objectID": "16487dff-73a6-47bc-90ff-71aca2695354", "type": "lvl2", "url": "/docs/components/pagination#api", "hierarchy": { "lvl1": "Pagination", "lvl2": "API", "lvl3": null } }, { "content": "Pagination Props", - "objectID": "9309fe10-168e-4a78-92d9-d444ecabf20e", + "objectID": "cd2ecdef-a37f-4d82-9f5c-c9e4e550f8c3", "type": "lvl3", "url": "/docs/components/pagination#pagination-props", "hierarchy": { @@ -5883,7 +5883,7 @@ }, { "content": "Pagination Events", - "objectID": "3ee9f257-f867-4488-91c5-488da74d7a6f", + "objectID": "2214a5a7-33fe-4d46-9223-0bd91dbd3094", "type": "lvl3", "url": "/docs/components/pagination#pagination-events", "hierarchy": { @@ -5894,7 +5894,7 @@ }, { "content": "Types", - "objectID": "686b98e6-e9b8-4812-95a5-65c1633fadb5", + "objectID": "978b178f-bf79-44b2-b714-70a2c5c49894", "type": "lvl3", "url": "/docs/components/pagination#types", "hierarchy": { @@ -5905,77 +5905,77 @@ }, { "content": "Pagination Item Props", - "objectID": "a3214127-0371-47dc-81a8-3d5df58cb796", + "objectID": "3cd5050d-74fb-4604-b7d6-e7214f270f28", "type": "lvl4", "url": "/docs/components/pagination#pagination-item-props", "hierarchy": { "lvl1": "Pagination", "lvl2": "Types", "lvl3": null } }, { "content": "Popover", - "objectID": "23fb339f-16c7-42f3-bf95-d36a072712b9", + "objectID": "62a79837-eab7-471b-809b-091c80bd30c8", "type": "lvl1", "url": "/docs/components/popover", "hierarchy": { "lvl1": "Popover" } }, { "content": "Installation", - "objectID": "7ffa3a8e-a14d-4516-9394-62b12bb31394", + "objectID": "2fd0ee8b-6c8d-4702-982b-771d8e34c246", "type": "lvl2", "url": "/docs/components/popover#installation", "hierarchy": { "lvl1": "Popover", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "d057e098-a73d-4a3d-945f-9a4c74ae1c50", + "objectID": "244af456-8f32-424c-a504-120b623f603d", "type": "lvl2", "url": "/docs/components/popover#import", "hierarchy": { "lvl1": "Popover", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "2550118d-d8f2-431a-ab01-b81a069ebadd", + "objectID": "0d851a59-52dd-4c22-9aec-653550ca44f5", "type": "lvl2", "url": "/docs/components/popover#usage", "hierarchy": { "lvl1": "Popover", "lvl2": "Usage", "lvl3": null } }, { "content": "With Arrow", - "objectID": "2a1ef5bc-da51-436b-b19a-be93c54350a2", + "objectID": "2e19a813-62eb-43ab-bba6-21377386d176", "type": "lvl3", "url": "/docs/components/popover#with-arrow", "hierarchy": { "lvl1": "Popover", "lvl2": "Usage", "lvl3": "With Arrow" } }, { "content": "Colors", - "objectID": "a44b8377-e4c6-4450-b56d-2b4bbfd93749", + "objectID": "5a7d862a-a735-4ae8-ac60-88789b484dfa", "type": "lvl3", "url": "/docs/components/popover#colors", "hierarchy": { "lvl1": "Popover", "lvl2": "With Arrow", "lvl3": "Colors" } }, { "content": "Placements", - "objectID": "277abb52-a84b-47cc-939d-c733782817b8", + "objectID": "da208aa4-281b-4519-93a8-2161a0f1f526", "type": "lvl3", "url": "/docs/components/popover#placements", "hierarchy": { "lvl1": "Popover", "lvl2": "Colors", "lvl3": "Placements" } }, { "content": "Offset", - "objectID": "add5fe17-b30a-4826-a46a-961880bfb29e", + "objectID": "50da585d-fb00-4ecd-9c23-609d312857d2", "type": "lvl3", "url": "/docs/components/popover#offset", "hierarchy": { "lvl1": "Popover", "lvl2": "Placements", "lvl3": "Offset" } }, { "content": "Controlled", - "objectID": "86c28ab5-30e0-4ee1-9af0-434d641b9986", + "objectID": "7ad1030b-b0ac-4304-adcd-217bfbcb168f", "type": "lvl3", "url": "/docs/components/popover#controlled", "hierarchy": { "lvl1": "Popover", "lvl2": "Offset", "lvl3": "Controlled" } }, { "content": "Title Props", - "objectID": "38fccc54-8f0a-4beb-93b0-003d661e2d0f", + "objectID": "a5544522-84c3-4e36-8ef0-c981b7564602", "type": "lvl3", "url": "/docs/components/popover#title-props", "hierarchy": { @@ -5986,7 +5986,7 @@ }, { "content": "With Form", - "objectID": "b5193e81-2640-43a7-88fe-10bc89b0bf2a", + "objectID": "97cc0f59-964d-4870-aff7-897529f29e88", "type": "lvl3", "url": "/docs/components/popover#with-form", "hierarchy": { @@ -5997,14 +5997,14 @@ }, { "content": "Backdrop", - "objectID": "3e30e923-73db-4dc3-9feb-b9597905f29e", + "objectID": "f03483cb-d997-4e8e-9f2f-c8d9897e6ad5", "type": "lvl3", "url": "/docs/components/popover#backdrop", "hierarchy": { "lvl1": "Popover", "lvl2": "With Form", "lvl3": "Backdrop" } }, { "content": "Custom Motion", - "objectID": "989395cd-64f4-44bf-99d9-8bc2a6ba1fb1", + "objectID": "56245810-a25b-4e09-97c7-0931feef855d", "type": "lvl3", "url": "/docs/components/popover#custom-motion", "hierarchy": { @@ -6015,7 +6015,7 @@ }, { "content": "Custom Trigger", - "objectID": "3d289b26-5b7c-4f73-85b2-ded940ab5e5e", + "objectID": "6f54d8da-2ef2-43b3-98df-6ef4c1298daf", "type": "lvl3", "url": "/docs/components/popover#custom-trigger", "hierarchy": { @@ -6026,49 +6026,49 @@ }, { "content": "Slots", - "objectID": "a82aafa3-2037-4f28-a163-711f594beda3", + "objectID": "3750e588-33ff-4263-93ca-5cecc7d06a71", "type": "lvl2", "url": "/docs/components/popover#slots", "hierarchy": { "lvl1": "Popover", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "c5913c73-6640-4604-9a4d-50a036885ef5", + "objectID": "da846167-8135-4169-9fc4-0002a26195e6", "type": "lvl3", "url": "/docs/components/popover#custom-styles", "hierarchy": { "lvl1": "Popover", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Data Attributes", - "objectID": "878e5150-ab1e-4129-bf72-6a05acd16307", + "objectID": "9f865bd9-5ea3-4906-89f7-e2f11f546b75", "type": "lvl2", "url": "/docs/components/popover#data-attributes", "hierarchy": { "lvl1": "Popover", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "1cb3a1e2-2f15-4f67-99cc-20acde08d543", + "objectID": "749c9e19-c1d5-4130-93ab-915fd2efbcd6", "type": "lvl2", "url": "/docs/components/popover#accessibility", "hierarchy": { "lvl1": "Popover", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "59e59787-840f-4040-a281-36f56e9a7582", + "objectID": "e6496534-510f-405a-bbf8-84ed876e09eb", "type": "lvl2", "url": "/docs/components/popover#api", "hierarchy": { "lvl1": "Popover", "lvl2": "API", "lvl3": null } }, { "content": "Popover Props", - "objectID": "716eed8c-c318-4e7c-9d49-75ec671ff993", + "objectID": "1ff66038-1ff3-4ae6-ab06-774dba5bc671", "type": "lvl3", "url": "/docs/components/popover#popover-props", "hierarchy": { "lvl1": "Popover", "lvl2": "API", "lvl3": "Popover Props" } }, { "content": "Popover Events", - "objectID": "0b0582e9-fd26-43c3-8bd2-e604114c97d0", + "objectID": "d9812e2b-124a-4a8f-a96f-b6d94aa1b995", "type": "lvl3", "url": "/docs/components/popover#popover-events", "hierarchy": { @@ -6079,7 +6079,7 @@ }, { "content": "PopoverTrigger Props", - "objectID": "1a61a93d-927a-4855-b231-a060834f0375", + "objectID": "c7291f11-17c7-4eaa-b2da-e40670b266f0", "type": "lvl3", "url": "/docs/components/popover#popovertrigger-props", "hierarchy": { @@ -6090,7 +6090,7 @@ }, { "content": "PopoverContent Props", - "objectID": "64937520-9b40-4d07-9f7c-4ae6d9fde64b", + "objectID": "d33e40b0-a275-4e81-a8cf-8e0b991d8206", "type": "lvl3", "url": "/docs/components/popover#popovercontent-props", "hierarchy": { @@ -6101,7 +6101,7 @@ }, { "content": "Popover types", - "objectID": "12de6491-02db-427f-ab04-38e73baff0f1", + "objectID": "0d432404-2ea9-4f7e-bc55-2080b46d73c0", "type": "lvl3", "url": "/docs/components/popover#popover-types", "hierarchy": { @@ -6112,14 +6112,14 @@ }, { "content": "Popover Placement", - "objectID": "325d19da-c3ce-411c-ab44-bb582080bd91", + "objectID": "219dbf77-fb53-4088-8f71-ec81fe292bdc", "type": "lvl4", "url": "/docs/components/popover#popover-placement", "hierarchy": { "lvl1": "Popover", "lvl2": "Popover types", "lvl3": null } }, { "content": "Motion Props", - "objectID": "9534039b-7a60-4916-9076-04587ce1034b", + "objectID": "678e65be-638e-4b72-b9eb-3d13a7c52ff6", "type": "lvl4", "url": "/docs/components/popover#motion-props", "hierarchy": { @@ -6130,49 +6130,49 @@ }, { "content": "Progress", - "objectID": "8a1449c9-fd1b-4246-b526-6ff5dc854b16", + "objectID": "64d33032-b50c-49b3-b8e0-e0fd4f17dca7", "type": "lvl1", "url": "/docs/components/progress", "hierarchy": { "lvl1": "Progress" } }, { "content": "Installation", - "objectID": "e3995431-10cf-4827-811f-4e78754dd5db", + "objectID": "d300cc96-da2d-404c-8cda-26ce2470f31e", "type": "lvl2", "url": "/docs/components/progress#installation", "hierarchy": { "lvl1": "Progress", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "2cf538e6-6883-4b76-a7d8-6041835dca55", + "objectID": "d857518b-1a7c-438b-9bf7-009301c0429e", "type": "lvl2", "url": "/docs/components/progress#import", "hierarchy": { "lvl1": "Progress", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "d90a3b66-d24f-4e59-b2dc-25aa753ded27", + "objectID": "6301864b-cc0e-4aa9-bdf0-03d5531923a5", "type": "lvl2", "url": "/docs/components/progress#usage", "hierarchy": { "lvl1": "Progress", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "c08c9e24-3c60-44d2-9bcf-47ad684f6464", + "objectID": "8f1b3150-d7c0-4bdd-8fe7-32100c930aba", "type": "lvl3", "url": "/docs/components/progress#sizes", "hierarchy": { "lvl1": "Progress", "lvl2": "Usage", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "396e1516-0bd8-4a7d-9b60-a0d0207e735d", + "objectID": "e9f82963-093c-4aff-aa6d-7f9fff0f42b1", "type": "lvl3", "url": "/docs/components/progress#colors", "hierarchy": { "lvl1": "Progress", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Indeterminate", - "objectID": "cdefe94b-670f-42f0-8143-f50971d4c21f", + "objectID": "f4ecd127-0c53-4ee9-874e-246a56e2aad4", "type": "lvl3", "url": "/docs/components/progress#indeterminate", "hierarchy": { @@ -6183,7 +6183,7 @@ }, { "content": "Striped", - "objectID": "12d056d9-7a7a-4f35-bcfd-1e7d0763960c", + "objectID": "b217ebf1-b378-49d9-8b5c-3119709a3310", "type": "lvl3", "url": "/docs/components/progress#striped", "hierarchy": { @@ -6194,14 +6194,14 @@ }, { "content": "With Label", - "objectID": "0b77e5a5-6361-49f8-930c-aa2facd68f1d", + "objectID": "216dd9fb-94bb-4f40-874a-88aae9c45aca", "type": "lvl3", "url": "/docs/components/progress#with-label", "hierarchy": { "lvl1": "Progress", "lvl2": "Striped", "lvl3": "With Label" } }, { "content": "With Value", - "objectID": "b7eb02eb-e3f9-47df-933a-46ffc5f4051a", + "objectID": "91a65d93-287f-4e1a-b9e8-71c1c671b771", "type": "lvl3", "url": "/docs/components/progress#with-value", "hierarchy": { @@ -6212,7 +6212,7 @@ }, { "content": "Value Formatting", - "objectID": "73a250fd-f67f-4d3f-830c-af077614df6c", + "objectID": "63231eb4-0482-4919-81cc-2aef2a41a4b1", "type": "lvl3", "url": "/docs/components/progress#value-formatting", "hierarchy": { @@ -6223,14 +6223,14 @@ }, { "content": "Slots", - "objectID": "dfef233c-e883-463a-bcfb-a7454b99c335", + "objectID": "a87dbe20-f8ed-4541-b26d-79a64d30dd9b", "type": "lvl2", "url": "/docs/components/progress#slots", "hierarchy": { "lvl1": "Progress", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "9c27f027-271b-495a-b469-cb2c781271ed", + "objectID": "978de4cf-cae2-46ab-b4ff-75ef8823994a", "type": "lvl3", "url": "/docs/components/progress#custom-styles", "hierarchy": { @@ -6241,77 +6241,77 @@ }, { "content": "Data Attributes", - "objectID": "c224c663-4eee-4087-be35-79b9b0b15281", + "objectID": "5b196837-b521-4550-9e45-bbb5e93202ab", "type": "lvl2", "url": "/docs/components/progress#data-attributes", "hierarchy": { "lvl1": "Progress", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "ded9d30b-b70f-4f9f-a724-8ba7efd7c5b4", + "objectID": "612ff569-c0b5-4991-9f88-3120e90925ba", "type": "lvl2", "url": "/docs/components/progress#accessibility", "hierarchy": { "lvl1": "Progress", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "a88507db-3650-4e49-b239-a25eceb24f59", + "objectID": "80b70cd5-4939-42bd-9fdc-61629ce06ce1", "type": "lvl2", "url": "/docs/components/progress#api", "hierarchy": { "lvl1": "Progress", "lvl2": "API", "lvl3": null } }, { "content": "Progress Props", - "objectID": "6609aabf-e9dd-436b-9c2c-0f98a80754ff", + "objectID": "3dd61164-2ee9-4e72-a6bc-2540537b51b6", "type": "lvl3", "url": "/docs/components/progress#progress-props", "hierarchy": { "lvl1": "Progress", "lvl2": "API", "lvl3": "Progress Props" } }, { "content": "Radio", - "objectID": "cdb28dff-463f-4933-a287-ea5fbe247062", + "objectID": "8a453ff8-8f2d-4e2b-80ba-38b1ddd97fb4", "type": "lvl1", "url": "/docs/components/radio-group", "hierarchy": { "lvl1": "Radio" } }, { "content": "Radio group", - "objectID": "3ec7e149-acc9-48e7-ba48-a2d8db7a0d6e", + "objectID": "66dd311d-1dd8-4f86-ab51-1b21e7e354a3", "type": "lvl1", "url": "/docs/components/radio-group#radio-group", "hierarchy": { "lvl1": "Radio", "lvl2": null, "lvl3": null } }, { "content": "Installation", - "objectID": "ca6e214c-a86b-4feb-82ba-8a3fba0b7927", + "objectID": "d8ae3410-359a-4dbc-a50c-c14e7bc79851", "type": "lvl2", "url": "/docs/components/radio-group#installation", "hierarchy": { "lvl1": "Radio", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "455de611-9875-4d4c-8df4-12856a2357bf", + "objectID": "8ef66eab-2a2d-4bd3-9742-432be9c1924e", "type": "lvl2", "url": "/docs/components/radio-group#import", "hierarchy": { "lvl1": "Radio", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "04db9c53-4a3a-4e4a-bae5-963730184ddc", + "objectID": "8f093c98-949b-4432-9f31-c203a49a552e", "type": "lvl2", "url": "/docs/components/radio-group#usage", "hierarchy": { "lvl1": "Radio", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "48ef1b33-062a-4196-a19e-e0a41c416e22", + "objectID": "4657a031-24cc-4124-babd-31e5877004ad", "type": "lvl3", "url": "/docs/components/radio-group#disabled", "hierarchy": { "lvl1": "Radio", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Default Value", - "objectID": "219ca69e-fdf2-458d-a184-2a79cddf81ba", + "objectID": "86f3ff95-fddf-4812-b7c1-aa21281273a3", "type": "lvl3", "url": "/docs/components/radio-group#default-value", "hierarchy": { @@ -6322,7 +6322,7 @@ }, { "content": "With Description", - "objectID": "7f2f6422-4fcd-40f2-859c-6ddae9ca744a", + "objectID": "fbd06d70-6a91-4712-a203-6f54d7a7e97a", "type": "lvl3", "url": "/docs/components/radio-group#with-description", "hierarchy": { @@ -6333,7 +6333,7 @@ }, { "content": "Horizontal", - "objectID": "295be354-d21d-4df6-8fe7-1886cf585c48", + "objectID": "245f0da5-8b2b-45ca-a2a2-ca5c293d5d03", "type": "lvl3", "url": "/docs/components/radio-group#horizontal", "hierarchy": { @@ -6344,35 +6344,35 @@ }, { "content": "Controlled", - "objectID": "ca87e13a-ba4a-462f-821a-5d8705379ad0", + "objectID": "5b1597e1-34b2-4df4-8f7b-0018c1c76ed2", "type": "lvl3", "url": "/docs/components/radio-group#controlled", "hierarchy": { "lvl1": "Radio", "lvl2": "Horizontal", "lvl3": "Controlled" } }, { "content": "Invalid", - "objectID": "ecdc1e22-6b74-4063-ae62-b39bb6264a9f", + "objectID": "8bb3675d-64ba-4158-b2c3-0b91a2fb3dfc", "type": "lvl3", "url": "/docs/components/radio-group#invalid", "hierarchy": { "lvl1": "Radio", "lvl2": "Controlled", "lvl3": "Invalid" } }, { "content": "Slots", - "objectID": "bcba7eca-3a36-45e7-9a41-970364371376", + "objectID": "46490ffd-bc51-4d23-bb27-3abe7afe8ba0", "type": "lvl2", "url": "/docs/components/radio-group#slots", "hierarchy": { "lvl1": "Radio", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "ebdb839e-bc27-433c-b6a9-0a9547b997d5", + "objectID": "5c577e57-17d5-4c9a-8aa4-e6229c8815ce", "type": "lvl3", "url": "/docs/components/radio-group#custom-styles", "hierarchy": { "lvl1": "Radio", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Custom Implementation", - "objectID": "e8d3e916-16cf-4352-ac58-62e313155d8e", + "objectID": "98049fa9-a3e4-47dd-bba4-90c2bd329e15", "type": "lvl3", "url": "/docs/components/radio-group#custom-implementation", "hierarchy": { @@ -6383,35 +6383,35 @@ }, { "content": "Data Attributes", - "objectID": "67b6e423-12bf-44e2-8b7c-d45c4f31f997", + "objectID": "15738bca-5db4-4b80-9a73-bae90a507c1a", "type": "lvl2", "url": "/docs/components/radio-group#data-attributes", "hierarchy": { "lvl1": "Radio", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "982b4a25-0242-4b19-b83b-d5932894b61e", + "objectID": "38f5c1e0-4128-4c7a-80ae-a75281c43afb", "type": "lvl2", "url": "/docs/components/radio-group#accessibility", "hierarchy": { "lvl1": "Radio", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "62f59ad2-a6d9-4cd3-82f9-dcd92b58ddf7", + "objectID": "541611d7-9242-48f3-a151-3526f7f58e26", "type": "lvl2", "url": "/docs/components/radio-group#api", "hierarchy": { "lvl1": "Radio", "lvl2": "API", "lvl3": null } }, { "content": "RadioGroup Props", - "objectID": "10f33104-c0a0-4dc6-bc0c-10469e1b8aad", + "objectID": "25e5dabe-af97-4609-9fdd-8c9f35d9903f", "type": "lvl3", "url": "/docs/components/radio-group#radiogroup-props", "hierarchy": { "lvl1": "Radio", "lvl2": "API", "lvl3": "RadioGroup Props" } }, { "content": "RadioGroup Events", - "objectID": "ecd660d7-e439-4e8e-a067-bc5d671292e5", + "objectID": "ea1cd738-e64f-4510-bf08-00cde9a29495", "type": "lvl3", "url": "/docs/components/radio-group#radiogroup-events", "hierarchy": { @@ -6422,7 +6422,7 @@ }, { "content": "Radio Props", - "objectID": "490610e2-b5ee-4488-a396-e1752116b6f9", + "objectID": "bbb5a041-f9bd-4d0c-b5e2-54e11fa5ca5a", "type": "lvl3", "url": "/docs/components/radio-group#radio-props", "hierarchy": { @@ -6433,14 +6433,14 @@ }, { "content": "Range Calendar", - "objectID": "62593bec-20f4-4761-aea7-34e2bf46ed5b", + "objectID": "c51d46f7-274b-4dae-9a67-543e657b3946", "type": "lvl1", "url": "/docs/components/range-calendar", "hierarchy": { "lvl1": "Range Calendar" } }, { "content": "Installation", - "objectID": "04eab398-d5cb-4817-8c92-9e9736dec222", + "objectID": "406f11af-192a-461f-8cee-cc2332706c21", "type": "lvl2", "url": "/docs/components/range-calendar#installation", "hierarchy": { @@ -6451,21 +6451,21 @@ }, { "content": "Import", - "objectID": "60e963e8-84e0-4fd0-93e6-507d42efb22f", + "objectID": "cb150b18-3cc2-41ab-b2df-faea734b4b77", "type": "lvl2", "url": "/docs/components/range-calendar#import", "hierarchy": { "lvl1": "Range Calendar", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "3db17680-bed2-4233-9a70-a3f48f87409f", + "objectID": "bf820ca2-19dc-4150-86da-b961aeadeff1", "type": "lvl2", "url": "/docs/components/range-calendar#usage", "hierarchy": { "lvl1": "Range Calendar", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "e6d24942-6a03-491d-b56e-cbb7ef78c235", + "objectID": "59cc029c-c326-4658-9518-e7e96be6fb72", "type": "lvl3", "url": "/docs/components/range-calendar#disabled", "hierarchy": { @@ -6476,7 +6476,7 @@ }, { "content": "Read Only", - "objectID": "81fe65f2-7ba8-4795-b90a-4de0d7be79c4", + "objectID": "0b93ad4e-e5e5-45b4-ac55-e90edb65f7c2", "type": "lvl3", "url": "/docs/components/range-calendar#read-only", "hierarchy": { @@ -6487,7 +6487,7 @@ }, { "content": "Controlled", - "objectID": "119712d6-552a-4fc7-aedb-f745348badd3", + "objectID": "c417371b-da75-4e77-8214-bf216462da65", "type": "lvl3", "url": "/docs/components/range-calendar#controlled", "hierarchy": { @@ -6498,7 +6498,7 @@ }, { "content": "Min Date Value", - "objectID": "36be40ac-517a-497b-833f-a06bacf368cb", + "objectID": "cb1a9a68-c196-4696-8ce4-c8d373f6c679", "type": "lvl3", "url": "/docs/components/range-calendar#min-date-value", "hierarchy": { @@ -6509,7 +6509,7 @@ }, { "content": "Max Date Value", - "objectID": "c2536eac-2842-4d4f-9754-ea1d4a2931c4", + "objectID": "5b46ea65-7fc3-40fc-abe1-ee91b4edb1e9", "type": "lvl3", "url": "/docs/components/range-calendar#max-date-value", "hierarchy": { @@ -6520,7 +6520,7 @@ }, { "content": "Unavailable Dates", - "objectID": "2d40f95b-2790-478a-9d35-56e4dc74f195", + "objectID": "86243c25-9a8a-4889-ada9-0c0b05d0de1e", "type": "lvl3", "url": "/docs/components/range-calendar#unavailable-dates", "hierarchy": { @@ -6531,7 +6531,7 @@ }, { "content": "Non-Contiguous Ranges", - "objectID": "d05734eb-1bd0-4608-9b76-14f7200670d6", + "objectID": "f5806f14-63e8-42c7-a191-608d578be25a", "type": "lvl3", "url": "/docs/components/range-calendar#non-contiguous-ranges", "hierarchy": { @@ -6542,7 +6542,7 @@ }, { "content": "Controlled Focused Value", - "objectID": "950be8e4-c6c5-4de2-baa8-c8be3f334ca0", + "objectID": "b699e674-b58e-446d-90ae-13f547549fb0", "type": "lvl3", "url": "/docs/components/range-calendar#controlled-focused-value", "hierarchy": { @@ -6553,7 +6553,7 @@ }, { "content": "Invalid Date", - "objectID": "b7931ba8-0105-4112-9922-7296189007fb", + "objectID": "8f6fc923-5344-425e-9874-db6bd6e0a1a4", "type": "lvl3", "url": "/docs/components/range-calendar#invalid-date", "hierarchy": { @@ -6564,7 +6564,7 @@ }, { "content": "With Month And Year Picker", - "objectID": "3b01873d-b17f-4bfb-ad39-03ea4c75bdba", + "objectID": "7942300d-2529-4b3b-8822-9efebfebf6f9", "type": "lvl3", "url": "/docs/components/range-calendar#with-month-and-year-picker", "hierarchy": { @@ -6575,7 +6575,7 @@ }, { "content": "International Calendars", - "objectID": "568a9c36-8c59-487c-b3f7-903f56886ecc", + "objectID": "4f3bb3e6-b5c5-477c-80d9-a1b26df24cc7", "type": "lvl3", "url": "/docs/components/range-calendar#international-calendars", "hierarchy": { @@ -6586,7 +6586,7 @@ }, { "content": "Visible Months", - "objectID": "0066a313-86ff-4e90-bb3a-58b175eb9bca", + "objectID": "bebe45fc-5a8d-417e-8105-dd74d0b2d5d8", "type": "lvl3", "url": "/docs/components/range-calendar#visible-months", "hierarchy": { @@ -6597,7 +6597,7 @@ }, { "content": "Page Behaviour", - "objectID": "538ac6ec-6944-483b-b307-ff091d5bfdcd", + "objectID": "817409fe-8f3e-44dd-a6e3-8f80f20a4c03", "type": "lvl3", "url": "/docs/components/range-calendar#page-behaviour", "hierarchy": { @@ -6608,7 +6608,7 @@ }, { "content": "Presets", - "objectID": "bbfcc0f2-513d-4f16-9a76-0e5c5820c803", + "objectID": "e28d2194-0d12-4a8c-992a-2772317a19bd", "type": "lvl3", "url": "/docs/components/range-calendar#presets", "hierarchy": { @@ -6619,14 +6619,14 @@ }, { "content": "Slots", - "objectID": "3a123420-9cbf-4d86-ab5a-33ad3b6d85f9", + "objectID": "16f0455b-a2e2-4372-9d8d-c3a4b55e4254", "type": "lvl2", "url": "/docs/components/range-calendar#slots", "hierarchy": { "lvl1": "Range Calendar", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "a5fe3b77-9f08-412d-b847-749d8ada3828", + "objectID": "6381941c-ebea-4fa9-967c-8c175b6e9ba6", "type": "lvl2", "url": "/docs/components/range-calendar#data-attributes", "hierarchy": { @@ -6637,7 +6637,7 @@ }, { "content": "Accessibility", - "objectID": "fbbd14e9-cf76-4d5e-b528-f3aa9b63b154", + "objectID": "bbbfec01-25bd-48d6-bc9b-05d40bda06ea", "type": "lvl2", "url": "/docs/components/range-calendar#accessibility", "hierarchy": { @@ -6648,14 +6648,14 @@ }, { "content": "API", - "objectID": "edd3bd9c-3535-4a99-be45-3c26434a1894", + "objectID": "462c52e5-d6d5-4dc0-8c0b-8dde16757fd1", "type": "lvl2", "url": "/docs/components/range-calendar#api", "hierarchy": { "lvl1": "Range Calendar", "lvl2": "API", "lvl3": null } }, { "content": "RangeCalendar Props", - "objectID": "26010952-0916-4b66-94e4-0e00dbcc5614", + "objectID": "106e9064-109a-4f78-b3fe-eb82f9cabe62", "type": "lvl3", "url": "/docs/components/range-calendar#rangecalendar-props", "hierarchy": { @@ -6666,7 +6666,7 @@ }, { "content": "RangeCalendar Events", - "objectID": "6178cc1a-8dd4-459b-932f-fe93c108df67", + "objectID": "33281318-3a77-484c-97ab-e76a1aa4f740", "type": "lvl3", "url": "/docs/components/range-calendar#rangecalendar-events", "hierarchy": { @@ -6677,7 +6677,7 @@ }, { "content": "Supported Calendars", - "objectID": "36503cdd-f412-4a78-852b-0a77d9d2c84b", + "objectID": "995adb66-8657-49f3-a913-b92154e422bc", "type": "lvl4", "url": "/docs/components/range-calendar#supported-calendars", "hierarchy": { @@ -6688,14 +6688,14 @@ }, { "content": "Scroll Shadow", - "objectID": "2de3258b-d718-4d5e-a9c8-827fce89e499", + "objectID": "831f3a1f-aff6-44a2-a1e5-aee692a0dbf4", "type": "lvl1", "url": "/docs/components/scroll-shadow", "hierarchy": { "lvl1": "Scroll Shadow" } }, { "content": "Installation", - "objectID": "128b1068-cbf9-4dba-a3a3-e1d173138661", + "objectID": "6b2713c3-c393-42d7-8aac-f7d4d288fc06", "type": "lvl2", "url": "/docs/components/scroll-shadow#installation", "hierarchy": { @@ -6706,21 +6706,21 @@ }, { "content": "Import", - "objectID": "08cf87cd-b234-4c04-9697-172c709daaf1", + "objectID": "d90d19f1-d12b-4fb8-a5c8-39a582aea4d9", "type": "lvl2", "url": "/docs/components/scroll-shadow#import", "hierarchy": { "lvl1": "Scroll Shadow", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "0880d9fe-4ea4-4b19-a455-886f4de1959b", + "objectID": "3d5fd636-11f7-4e23-9acf-3fff44ee7354", "type": "lvl2", "url": "/docs/components/scroll-shadow#usage", "hierarchy": { "lvl1": "Scroll Shadow", "lvl2": "Usage", "lvl3": null } }, { "content": "Hide Scrollbar", - "objectID": "8e005f1d-2a80-46f5-9b7b-2366fd0155e1", + "objectID": "29577827-996f-4fb5-a99d-16aa5d0a154d", "type": "lvl3", "url": "/docs/components/scroll-shadow#hide-scrollbar", "hierarchy": { @@ -6731,7 +6731,7 @@ }, { "content": "Custom Shadow Size", - "objectID": "c6ce7ea4-85eb-4866-825d-6cbd83e986e6", + "objectID": "6e5bcebd-0ea1-4b63-8dd4-683dcdf2f324", "type": "lvl3", "url": "/docs/components/scroll-shadow#custom-shadow-size", "hierarchy": { @@ -6742,7 +6742,7 @@ }, { "content": "Horizontal Orientation", - "objectID": "660db8e8-53dc-4e4e-88a8-699b1ec0e129", + "objectID": "b600b877-6ad6-45cd-8e50-7a249f9b6c8d", "type": "lvl3", "url": "/docs/components/scroll-shadow#horizontal-orientation", "hierarchy": { @@ -6753,7 +6753,7 @@ }, { "content": "Shadow Offset", - "objectID": "577b181c-b56c-48fb-89e9-ad5eedc02203", + "objectID": "7903b0eb-d68f-4dc0-b64e-f201633fa2f0", "type": "lvl3", "url": "/docs/components/scroll-shadow#shadow-offset", "hierarchy": { @@ -6764,14 +6764,14 @@ }, { "content": "API", - "objectID": "f997bf3c-04a3-429c-9d4f-3b4d9e2812db", + "objectID": "506b1a8d-71bd-4389-99f7-08e417291002", "type": "lvl2", "url": "/docs/components/scroll-shadow#api", "hierarchy": { "lvl1": "Scroll Shadow", "lvl2": "API", "lvl3": null } }, { "content": "ShadowScroll Props", - "objectID": "8e9bbaac-fd9d-4d48-9d31-8dcc083250ac", + "objectID": "a4bf29f3-ffc6-4425-beee-5b9d1c7d26e5", "type": "lvl3", "url": "/docs/components/scroll-shadow#shadowscroll-props", "hierarchy": { @@ -6782,7 +6782,7 @@ }, { "content": "ShadowScroll Events", - "objectID": "38be67a1-589b-4827-96e5-4394315f2091", + "objectID": "4d9fee37-d1cb-4713-a303-502ab77a6a53", "type": "lvl3", "url": "/docs/components/scroll-shadow#shadowscroll-events", "hierarchy": { @@ -6793,7 +6793,7 @@ }, { "content": "Types", - "objectID": "45608ec5-c9d5-4e7a-a11c-085c4b1ff235", + "objectID": "a576637b-79f2-4ffc-8aa7-25561d1cc347", "type": "lvl3", "url": "/docs/components/scroll-shadow#types", "hierarchy": { @@ -6804,49 +6804,49 @@ }, { "content": "Scroll Shadow Visibility", - "objectID": "75dd4230-e36e-4754-a7b1-ef1874e9e36f", + "objectID": "b25f5408-3e41-4f72-88e3-fb03acdccd34", "type": "lvl4", "url": "/docs/components/scroll-shadow#scroll-shadow-visibility", "hierarchy": { "lvl1": "Scroll Shadow", "lvl2": "Types", "lvl3": null } }, { "content": "Select", - "objectID": "ab6ce658-448a-4c06-9e2f-f51b3c3f678c", + "objectID": "7ffb8ce0-7909-4e29-9cd3-464819f21848", "type": "lvl1", "url": "/docs/components/select", "hierarchy": { "lvl1": "Select" } }, { "content": "Installation", - "objectID": "449b09cb-da60-40bd-a303-d8b63de04c67", + "objectID": "ac4dda4f-2e88-4134-847a-1dad42f89b68", "type": "lvl2", "url": "/docs/components/select#installation", "hierarchy": { "lvl1": "Select", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "f98934d2-b16a-4871-9bb6-2915d0696c4b", + "objectID": "272c1cf0-51ed-4aaf-8dba-2a461715ccf5", "type": "lvl2", "url": "/docs/components/select#import", "hierarchy": { "lvl1": "Select", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "ee3948d7-9e88-4582-b908-f7eb0f2cf2be", + "objectID": "ff2e45dc-d136-4da4-9d8f-e3fd5f3feab7", "type": "lvl2", "url": "/docs/components/select#usage", "hierarchy": { "lvl1": "Select", "lvl2": "Usage", "lvl3": null } }, { "content": "Dynamic items", - "objectID": "f25c2b2f-1775-4a32-a4b3-0a1377331eb0", + "objectID": "7215e1c0-33ed-4264-b254-76084193dc8a", "type": "lvl3", "url": "/docs/components/select#dynamic-items", "hierarchy": { "lvl1": "Select", "lvl2": "Usage", "lvl3": "Dynamic items" } }, { "content": "Multiple Selection", - "objectID": "b1ef09d4-c32e-42fc-a905-8a97b426c164", + "objectID": "9f77f3bb-dad4-4dd1-9926-794aee66fee9", "type": "lvl3", "url": "/docs/components/select#multiple-selection", "hierarchy": { @@ -6857,7 +6857,7 @@ }, { "content": "Disabled", - "objectID": "22fa97c2-903a-40cb-9dd4-02d54cbebadf", + "objectID": "bbdb6d95-08ff-4e38-a2c3-c548d29fbd1d", "type": "lvl3", "url": "/docs/components/select#disabled", "hierarchy": { @@ -6868,7 +6868,7 @@ }, { "content": "Disabled Items", - "objectID": "deba7e23-fafb-4439-a415-733f8242f22b", + "objectID": "04cecb2d-0f1c-4285-84ae-5d6a6f1b8d62", "type": "lvl3", "url": "/docs/components/select#disabled-items", "hierarchy": { @@ -6879,7 +6879,7 @@ }, { "content": "Required", - "objectID": "565384e5-75e2-4e2b-ba46-68f2e8179cab", + "objectID": "541ee662-9326-414b-82b7-f9bf15267a01", "type": "lvl3", "url": "/docs/components/select#required", "hierarchy": { @@ -6890,35 +6890,35 @@ }, { "content": "Sizes", - "objectID": "daac2978-2ccc-4d1e-810b-2f0bc33eaa98", + "objectID": "b37c2921-7a60-4b82-87b4-efd868c07a26", "type": "lvl3", "url": "/docs/components/select#sizes", "hierarchy": { "lvl1": "Select", "lvl2": "Required", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "3eb84688-0b7e-440e-9027-b17b778f32b0", + "objectID": "f3607ab9-711b-420f-9f45-8ec66d232ef2", "type": "lvl3", "url": "/docs/components/select#colors", "hierarchy": { "lvl1": "Select", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "43072f66-2a1b-46b7-8d53-b949382e4b7c", + "objectID": "99eec76c-30b6-40aa-b7e4-8da1ee29fe87", "type": "lvl3", "url": "/docs/components/select#variants", "hierarchy": { "lvl1": "Select", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "Radius", - "objectID": "d3ed3e7f-2d71-486d-b70c-ef89c07921a6", + "objectID": "2825ecc6-a399-4338-84ce-f83fd0cca198", "type": "lvl3", "url": "/docs/components/select#radius", "hierarchy": { "lvl1": "Select", "lvl2": "Variants", "lvl3": "Radius" } }, { "content": "Label Placements", - "objectID": "f54a27bc-f30e-4867-82f4-569712b05c01", + "objectID": "a870a62b-e357-4607-88f2-6f9db230be59", "type": "lvl3", "url": "/docs/components/select#label-placements", "hierarchy": { @@ -6929,7 +6929,7 @@ }, { "content": "Start Content", - "objectID": "fa39ac2b-d746-4f65-8613-ea3c7091c6cb", + "objectID": "9347561d-6735-48d0-bae5-4d2094c0d7bc", "type": "lvl3", "url": "/docs/components/select#start-content", "hierarchy": { @@ -6940,7 +6940,7 @@ }, { "content": "Item Start & End Content", - "objectID": "93fde46c-88cf-4694-bdf3-f516cd5a42c3", + "objectID": "579d75b7-dee4-4ac0-b5bb-15337d0266c3", "type": "lvl3", "url": "/docs/components/select#item-start--end-content", "hierarchy": { @@ -6951,7 +6951,7 @@ }, { "content": "Custom Selector Icon", - "objectID": "7715c5f3-2f0f-44b7-9d51-fbc730a1fd70", + "objectID": "d20bfb8d-d75a-402c-bfa9-ca480161fdac", "type": "lvl3", "url": "/docs/components/select#custom-selector-icon", "hierarchy": { @@ -6962,7 +6962,7 @@ }, { "content": "Without Scroll Shadow", - "objectID": "459f5d2a-f63c-4b3a-8e0f-98f9ca64b5db", + "objectID": "4a358cf2-2c29-4dfe-9a15-f2eb0444fe0b", "type": "lvl3", "url": "/docs/components/select#without-scroll-shadow", "hierarchy": { @@ -6973,7 +6973,7 @@ }, { "content": "With Description", - "objectID": "0272e70f-fdbc-4382-8e34-9ca82db4503c", + "objectID": "fc20549b-d61e-4148-aa42-84e748483406", "type": "lvl3", "url": "/docs/components/select#with-description", "hierarchy": { @@ -6984,7 +6984,7 @@ }, { "content": "With Error Message", - "objectID": "c7a87389-1aeb-472c-b5a5-1d38cf4a2eff", + "objectID": "76a66328-d9ba-46d5-94b7-2f153bdd5f98", "type": "lvl3", "url": "/docs/components/select#with-error-message", "hierarchy": { @@ -6995,7 +6995,7 @@ }, { "content": "Controlled", - "objectID": "1259d81b-ae0f-4214-b9f4-5e60e78c1c73", + "objectID": "d838c469-ab0f-4a08-a6d5-b6e95986f97d", "type": "lvl3", "url": "/docs/components/select#controlled", "hierarchy": { @@ -7006,7 +7006,7 @@ }, { "content": "Controlling the open state", - "objectID": "ccea3cba-970d-4e85-8858-a763e1ad63ba", + "objectID": "79bb7e3f-fe12-4063-b007-90a3c2810609", "type": "lvl3", "url": "/docs/components/select#controlling-the-open-state", "hierarchy": { @@ -7017,7 +7017,7 @@ }, { "content": "Custom Items", - "objectID": "6962467b-aed8-44d7-9e62-7a22ce02106a", + "objectID": "63fd41c4-fcfe-496f-8bbf-67f7bca21b0c", "type": "lvl3", "url": "/docs/components/select#custom-items", "hierarchy": { @@ -7028,7 +7028,7 @@ }, { "content": "Custom Render Value", - "objectID": "e40a50e2-c4c3-4f75-8524-5ba2f0778b7f", + "objectID": "12702a16-c70d-4aaf-a2b2-7eb4669b4138", "type": "lvl3", "url": "/docs/components/select#custom-render-value", "hierarchy": { @@ -7039,7 +7039,7 @@ }, { "content": "Asynchronous Loading", - "objectID": "984f72eb-1901-4168-b3f5-1027c6482de5", + "objectID": "40d767d7-6573-465b-8c31-47b0cf654a05", "type": "lvl3", "url": "/docs/components/select#asynchronous-loading", "hierarchy": { @@ -7050,7 +7050,7 @@ }, { "content": "With Sections", - "objectID": "dc4d69b3-5852-4580-b958-ef38f7526cdb", + "objectID": "acc2884c-5c8b-411a-b2d9-1aa376110b63", "type": "lvl3", "url": "/docs/components/select#with-sections", "hierarchy": { @@ -7061,7 +7061,7 @@ }, { "content": "Custom Sections Style", - "objectID": "80218a99-de50-4cf3-9fcb-73468a10ce1a", + "objectID": "6f264fc7-6444-4a68-ab7d-8da2957bc175", "type": "lvl3", "url": "/docs/components/select#custom-sections-style", "hierarchy": { @@ -7072,7 +7072,7 @@ }, { "content": "Multiple Select Controlled", - "objectID": "697a773e-7249-4cce-8657-87c0c9701179", + "objectID": "ea58523d-843e-4d2b-8f6c-8c7056e9b305", "type": "lvl3", "url": "/docs/components/select#multiple-select-controlled", "hierarchy": { @@ -7083,7 +7083,7 @@ }, { "content": "Multiple With Chips", - "objectID": "97cda714-97bd-4f31-a124-34956d922fdb", + "objectID": "05b0b3e5-58bb-4c34-aece-42ddf4e9f272", "type": "lvl3", "url": "/docs/components/select#multiple-with-chips", "hierarchy": { @@ -7094,7 +7094,7 @@ }, { "content": "Customizing the select", - "objectID": "0bd6a1c2-8a4e-428b-b657-48567314fd00", + "objectID": "05f8983f-17bb-4e88-b32e-3ba52fe5b84c", "type": "lvl3", "url": "/docs/components/select#customizing-the-select", "hierarchy": { @@ -7105,42 +7105,42 @@ }, { "content": "Slots", - "objectID": "c9b13d1a-54f4-498d-b30a-a257240e0f9c", + "objectID": "48b4cc28-7100-406a-9b73-54ad132395ea", "type": "lvl2", "url": "/docs/components/select#slots", "hierarchy": { "lvl1": "Select", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "c089763e-715c-4eb2-b9b4-f82eaa1fff72", + "objectID": "d12b8025-9397-49fd-bfd9-d447c06f9a1a", "type": "lvl2", "url": "/docs/components/select#data-attributes", "hierarchy": { "lvl1": "Select", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "66284882-1737-4123-b380-e59373b93d1f", + "objectID": "846e3eb4-6f96-4aec-8d2d-fe8c7bc1efb4", "type": "lvl2", "url": "/docs/components/select#accessibility", "hierarchy": { "lvl1": "Select", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "7886e597-3bb8-4edc-afde-b87db1c65435", + "objectID": "07786736-e487-4586-8d36-0af9a18effec", "type": "lvl2", "url": "/docs/components/select#api", "hierarchy": { "lvl1": "Select", "lvl2": "API", "lvl3": null } }, { "content": "Select Props", - "objectID": "877516cb-57ea-4dbc-be9c-d5fcb7043537", + "objectID": "19fc0453-2f73-435b-a016-1d794790d226", "type": "lvl3", "url": "/docs/components/select#select-props", "hierarchy": { "lvl1": "Select", "lvl2": "API", "lvl3": "Select Props" } }, { "content": "Select Events", - "objectID": "e565d71b-d073-407f-af8a-fe6ee69e3551", + "objectID": "2594baf9-6666-4e06-8c42-7eab839e42f6", "type": "lvl3", "url": "/docs/components/select#select-events", "hierarchy": { @@ -7151,7 +7151,7 @@ }, { "content": "SelectItem Props", - "objectID": "72b5ed9b-dcc5-4217-889f-d4d33e0bc651", + "objectID": "ed1234e9-d921-458e-a3aa-d0abb086f94f", "type": "lvl3", "url": "/docs/components/select#selectitem-props", "hierarchy": { @@ -7162,7 +7162,7 @@ }, { "content": "SelectItem Events", - "objectID": "a72d7d78-fd57-4637-ab14-9f7243bcbe9f", + "objectID": "a0b17cd1-5c67-4cc2-8595-ed5c7c5eb0a1", "type": "lvl3", "url": "/docs/components/select#selectitem-events", "hierarchy": { @@ -7173,7 +7173,7 @@ }, { "content": "SelectSection Props", - "objectID": "120a113e-b7b1-4359-8674-6e792509e22a", + "objectID": "9b2b1c35-60fe-4ffc-9244-3b4d346df11f", "type": "lvl3", "url": "/docs/components/select#selectsection-props", "hierarchy": { @@ -7184,7 +7184,7 @@ }, { "content": "Types", - "objectID": "44eb5075-9e95-4eec-952c-edbfa8b4dbb3", + "objectID": "c4b46acf-5aa7-4aff-ab90-c122887dff1c", "type": "lvl3", "url": "/docs/components/select#types", "hierarchy": { @@ -7195,49 +7195,49 @@ }, { "content": "Render Value Function", - "objectID": "d1420bce-38bc-4c38-b8f2-949c2a535b83", + "objectID": "866cee9a-9e8f-47a0-b0c0-cd02f6b40ad5", "type": "lvl4", "url": "/docs/components/select#render-value-function", "hierarchy": { "lvl1": "Select", "lvl2": "Types", "lvl3": null } }, { "content": "Skeleton", - "objectID": "4e546e3d-f612-4993-b02e-875b193e16fc", + "objectID": "affc657d-aa82-428e-b05f-89f3e022679e", "type": "lvl1", "url": "/docs/components/skeleton", "hierarchy": { "lvl1": "Skeleton" } }, { "content": "Installation", - "objectID": "5819b9f7-97ab-4c5d-b804-d88b4852fb37", + "objectID": "2399d33b-caa3-4cdc-90d7-1681f00e0314", "type": "lvl2", "url": "/docs/components/skeleton#installation", "hierarchy": { "lvl1": "Skeleton", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "b7dd046c-e59a-4f57-ad4e-67b888f8af6e", + "objectID": "1acbd58d-874c-4f2f-b3fe-15385338eb18", "type": "lvl2", "url": "/docs/components/skeleton#import", "hierarchy": { "lvl1": "Skeleton", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "f610924b-0e31-426b-8b46-a9d0edc67026", + "objectID": "618afbae-dc9c-41b9-a5b9-c77757553f20", "type": "lvl2", "url": "/docs/components/skeleton#usage", "hierarchy": { "lvl1": "Skeleton", "lvl2": "Usage", "lvl3": null } }, { "content": "Standalone", - "objectID": "9fce32ae-0f12-4f1f-95ac-7b793b28e893", + "objectID": "6207c36e-c933-4c4b-a7b0-6e583ef677e4", "type": "lvl3", "url": "/docs/components/skeleton#standalone", "hierarchy": { "lvl1": "Skeleton", "lvl2": "Usage", "lvl3": "Standalone" } }, { "content": "Loaded State", - "objectID": "4f245770-0988-4982-b088-e884d0d2b44f", + "objectID": "59541b8f-61e0-4346-a954-c70bc199826c", "type": "lvl3", "url": "/docs/components/skeleton#loaded-state", "hierarchy": { @@ -7248,91 +7248,91 @@ }, { "content": "Slots", - "objectID": "43c58018-ce66-4bc2-b4d1-86c3275dfc61", + "objectID": "7465d266-c28b-4bc9-9876-fdf07287762a", "type": "lvl2", "url": "/docs/components/skeleton#slots", "hierarchy": { "lvl1": "Skeleton", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "bfb836b5-1add-4198-91fd-ebda13a6dd9f", + "objectID": "c34fa3ba-0662-417f-85a3-be2ef05d3c53", "type": "lvl2", "url": "/docs/components/skeleton#data-attributes", "hierarchy": { "lvl1": "Skeleton", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "API", - "objectID": "277974b5-8aab-4fd1-9ed9-2a3eb261a0c5", + "objectID": "7e4cd714-f431-4e68-b989-aa436f1586c9", "type": "lvl2", "url": "/docs/components/skeleton#api", "hierarchy": { "lvl1": "Skeleton", "lvl2": "API", "lvl3": null } }, { "content": "Skeleton Props", - "objectID": "e5d396a6-9922-4b1c-8222-18dc87721521", + "objectID": "4abf84c9-ed8d-46cb-b7b9-6042f60556aa", "type": "lvl3", "url": "/docs/components/skeleton#skeleton-props", "hierarchy": { "lvl1": "Skeleton", "lvl2": "API", "lvl3": "Skeleton Props" } }, { "content": "Slider", - "objectID": "6c0ed0ed-c74b-4594-a23f-94c9df2dfcd3", + "objectID": "6a364874-2eaa-4b02-b6a1-1a7ac81e86f2", "type": "lvl1", "url": "/docs/components/slider", "hierarchy": { "lvl1": "Slider" } }, { "content": "Installation", - "objectID": "d93d3eb0-4b0f-4551-9e99-c3653b7087f0", + "objectID": "41e580c7-9880-45aa-92b1-46db23075ffc", "type": "lvl2", "url": "/docs/components/slider#installation", "hierarchy": { "lvl1": "Slider", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "d5af964b-e87e-4054-a8c4-e1864069c869", + "objectID": "22680f55-4507-4621-999c-595054d130ef", "type": "lvl2", "url": "/docs/components/slider#import", "hierarchy": { "lvl1": "Slider", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "a2fc31dd-2eed-4f06-ac72-884a1624182e", + "objectID": "91d31a9f-d539-4355-bf4c-163bf9ebb959", "type": "lvl2", "url": "/docs/components/slider#usage", "hierarchy": { "lvl1": "Slider", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "609f3cd6-b1f3-4466-80cc-700e100e94ee", + "objectID": "cc503334-5e0b-4425-b273-7f8aed21df11", "type": "lvl3", "url": "/docs/components/slider#disabled", "hierarchy": { "lvl1": "Slider", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Sizes", - "objectID": "3f75da2c-ae74-4bcb-bd24-14048a4972bd", + "objectID": "6e077fbf-4adf-4526-a869-0eb47aec7eb1", "type": "lvl3", "url": "/docs/components/slider#sizes", "hierarchy": { "lvl1": "Slider", "lvl2": "Disabled", "lvl3": "Sizes" } }, { "content": "Radius", - "objectID": "ed2fba9a-f632-4cdd-9eb4-61c0daba47de", + "objectID": "38caaeee-6c49-429d-991a-014e2b365373", "type": "lvl3", "url": "/docs/components/slider#radius", "hierarchy": { "lvl1": "Slider", "lvl2": "Sizes", "lvl3": "Radius" } }, { "content": "Colors", - "objectID": "9e0b6bec-422e-40a8-b64d-491ddd41e750", + "objectID": "a1c93891-8d33-4127-9f83-905609768cfe", "type": "lvl3", "url": "/docs/components/slider#colors", "hierarchy": { "lvl1": "Slider", "lvl2": "Radius", "lvl3": "Colors" } }, { "content": "Vertical Slider", - "objectID": "a82f66e5-8779-47bc-84ea-b35d2784f59e", + "objectID": "79565a1d-e5a3-4991-9a2b-ef28fbffeb08", "type": "lvl3", "url": "/docs/components/slider#vertical-slider", "hierarchy": { @@ -7343,7 +7343,7 @@ }, { "content": "With Visible Steps", - "objectID": "4a128b98-cdd1-484e-8689-d7a95a1ba3af", + "objectID": "fe95bf85-c987-43c0-86cd-7706548b168f", "type": "lvl3", "url": "/docs/components/slider#with-visible-steps", "hierarchy": { @@ -7354,7 +7354,7 @@ }, { "content": "With Marks", - "objectID": "ae5db6fc-0e4e-455e-ad0f-29ca88e2991e", + "objectID": "d0108b7e-78f2-4c5d-afdf-c00e6d9f2902", "type": "lvl3", "url": "/docs/components/slider#with-marks", "hierarchy": { @@ -7365,7 +7365,7 @@ }, { "content": "Range Slider", - "objectID": "9794534c-e2f9-4343-9d06-dfe5e121e611", + "objectID": "6b2a7550-a6f2-425b-b305-b57d4a4d3099", "type": "lvl3", "url": "/docs/components/slider#range-slider", "hierarchy": { @@ -7376,7 +7376,7 @@ }, { "content": "Fill Offset", - "objectID": "e1b87aaa-e0d3-4a69-85ba-33d9f389be4b", + "objectID": "3f53fa47-d6b7-43b9-8f11-e0ab8182425c", "type": "lvl3", "url": "/docs/components/slider#fill-offset", "hierarchy": { @@ -7387,7 +7387,7 @@ }, { "content": "With Tooltip", - "objectID": "506e3e99-fec3-41e1-bb16-11cedcb6a49e", + "objectID": "0270d1f1-578a-4583-be49-8326cacf3879", "type": "lvl3", "url": "/docs/components/slider#with-tooltip", "hierarchy": { @@ -7398,7 +7398,7 @@ }, { "content": "With Outline", - "objectID": "5660442e-6918-461d-9a8d-2683a6d364d3", + "objectID": "697d7a3c-725a-45b7-951c-7bd9b9b693d1", "type": "lvl3", "url": "/docs/components/slider#with-outline", "hierarchy": { @@ -7409,7 +7409,7 @@ }, { "content": "Start & End Content", - "objectID": "79261995-c7c2-4028-a062-de50d6c2c7c1", + "objectID": "c46374d9-7184-498c-9d14-c623fa2945f5", "type": "lvl3", "url": "/docs/components/slider#start--end-content", "hierarchy": { @@ -7420,7 +7420,7 @@ }, { "content": "Value Formatting", - "objectID": "5aa26187-0444-4963-a1a4-982edf69c907", + "objectID": "8cfa0f20-8ea6-4c7e-98d6-a5f61b8028b4", "type": "lvl3", "url": "/docs/components/slider#value-formatting", "hierarchy": { @@ -7431,7 +7431,7 @@ }, { "content": "Hiding the Value", - "objectID": "43d5118f-a70e-4ede-9158-e4fdd450a753", + "objectID": "998a70f3-0ee6-4348-844c-0a8fa418e4d0", "type": "lvl3", "url": "/docs/components/slider#hiding-the-value", "hierarchy": { @@ -7442,7 +7442,7 @@ }, { "content": "Hiding the Thumbs", - "objectID": "ce5439b2-46a5-4bce-b6bb-ed56799ce792", + "objectID": "d94d07c5-dbc1-4180-8c72-7a4a3bd569ec", "type": "lvl3", "url": "/docs/components/slider#hiding-the-thumbs", "hierarchy": { @@ -7453,7 +7453,7 @@ }, { "content": "Controlled", - "objectID": "fa2dc075-3d91-45fd-8238-a48cf8dc2664", + "objectID": "5bf8cc3a-1845-452e-b213-98877f1d51d9", "type": "lvl3", "url": "/docs/components/slider#controlled", "hierarchy": { @@ -7464,7 +7464,7 @@ }, { "content": "Controlled Range", - "objectID": "d49f036a-d386-4f58-b208-94f1dc301515", + "objectID": "dce14611-4535-49f0-9a03-793350abe4b2", "type": "lvl3", "url": "/docs/components/slider#controlled-range", "hierarchy": { @@ -7475,7 +7475,7 @@ }, { "content": "Custom Thumb", - "objectID": "4f00d708-a81f-492a-aa94-441cdbebb612", + "objectID": "2c141dd2-707d-47d2-a740-ad56cf02dc92", "type": "lvl3", "url": "/docs/components/slider#custom-thumb", "hierarchy": { @@ -7486,7 +7486,7 @@ }, { "content": "Custom Range Thumbs", - "objectID": "dfba84f5-831a-4ee4-aa94-00ec38017702", + "objectID": "38457176-ff34-4eda-904e-eba8cad15e3d", "type": "lvl3", "url": "/docs/components/slider#custom-range-thumbs", "hierarchy": { @@ -7497,7 +7497,7 @@ }, { "content": "Custom Label", - "objectID": "364f0f3f-e8be-4598-878f-4af85ffe53fc", + "objectID": "37b5fc3b-1ed1-46e3-a3ef-b8570cd3380c", "type": "lvl3", "url": "/docs/components/slider#custom-label", "hierarchy": { @@ -7508,7 +7508,7 @@ }, { "content": "Custom Value", - "objectID": "5a5a0c0f-0b3c-4583-b820-1ce21648247e", + "objectID": "04b4f645-1fca-4e5e-b712-25ded79a29c3", "type": "lvl3", "url": "/docs/components/slider#custom-value", "hierarchy": { @@ -7519,7 +7519,7 @@ }, { "content": "Disabling Thumb Scale", - "objectID": "329750c8-8872-42ce-abc1-6b68c5226d1b", + "objectID": "552ad3d2-b184-4d87-a086-d316cef1a516", "type": "lvl3", "url": "/docs/components/slider#disabling-thumb-scale", "hierarchy": { @@ -7530,49 +7530,49 @@ }, { "content": "Slots", - "objectID": "f259b44e-0538-4d95-be31-685ffcf045d7", + "objectID": "3ce243ed-7c79-4bbf-adb5-a8ea6ff3102e", "type": "lvl2", "url": "/docs/components/slider#slots", "hierarchy": { "lvl1": "Slider", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "16d3f130-ed2b-4312-8304-ecbe2a6c5a6e", + "objectID": "82d23db5-dee0-4293-8d1c-e60dc765fa96", "type": "lvl3", "url": "/docs/components/slider#custom-styles", "hierarchy": { "lvl1": "Slider", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Data Attributes", - "objectID": "5ed31d68-7a85-423f-a5ff-c5e8bad02f1d", + "objectID": "01f7d607-5084-4f3f-a3f9-d939504c6e51", "type": "lvl2", "url": "/docs/components/slider#data-attributes", "hierarchy": { "lvl1": "Slider", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "92e2fec6-7b61-4165-bb0f-388206309e51", + "objectID": "f76ce65b-8983-41b6-85c6-d3036479b8f3", "type": "lvl2", "url": "/docs/components/slider#accessibility", "hierarchy": { "lvl1": "Slider", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "02f119ab-2236-4949-87f2-e58e312ebc2e", + "objectID": "d56336f9-4242-4477-b0e2-cf323e58efbb", "type": "lvl2", "url": "/docs/components/slider#api", "hierarchy": { "lvl1": "Slider", "lvl2": "API", "lvl3": null } }, { "content": "Slider Props", - "objectID": "4d3ec78a-f218-467c-98ca-a53e63bfb78c", + "objectID": "5ca36966-29af-4ca3-a9a9-2f1e536a98bc", "type": "lvl3", "url": "/docs/components/slider#slider-props", "hierarchy": { "lvl1": "Slider", "lvl2": "API", "lvl3": "Slider Props" } }, { "content": "Slider Functions", - "objectID": "63b29610-dddb-49ee-a1ba-4995b37d75ed", + "objectID": "a1274343-59a5-4fa5-a54f-5500d3b0cfed", "type": "lvl3", "url": "/docs/components/slider#slider-functions", "hierarchy": { @@ -7583,7 +7583,7 @@ }, { "content": "Slider Events", - "objectID": "c7e3d7a7-e65e-4b66-bac9-3d53e62f7a8e", + "objectID": "9c4adc42-6885-41bb-833a-38ee0a7e8600", "type": "lvl3", "url": "/docs/components/slider#slider-events", "hierarchy": { @@ -7594,77 +7594,77 @@ }, { "content": "Types", - "objectID": "2ee32bbc-e590-4901-b8c7-a39e619b842e", + "objectID": "d234678b-7fa5-4fdf-9a9b-27587c6879c0", "type": "lvl3", "url": "/docs/components/slider#types", "hierarchy": { "lvl1": "Slider", "lvl2": "Slider Events", "lvl3": "Types" } }, { "content": "Slider Value", - "objectID": "a28e9ad6-1650-4306-8ba5-99df97b6e88e", + "objectID": "72ba4a8c-3516-4d51-86e9-d8807b710c0b", "type": "lvl4", "url": "/docs/components/slider#slider-value", "hierarchy": { "lvl1": "Slider", "lvl2": "Types", "lvl3": null } }, { "content": "Slider Step Marks", - "objectID": "27d9bd2a-5a7d-4b1a-8b2c-359224a63457", + "objectID": "d51fac3e-8514-4754-9d95-1d051efea18b", "type": "lvl4", "url": "/docs/components/slider#slider-step-marks", "hierarchy": { "lvl1": "Slider", "lvl2": "Slider Value", "lvl3": null } }, { "content": "Snippet", - "objectID": "2b3846be-26a7-4d9d-9dda-1347834b932d", + "objectID": "887697ea-2ef1-42a1-bb37-5c3b61fbc122", "type": "lvl1", "url": "/docs/components/snippet", "hierarchy": { "lvl1": "Snippet" } }, { "content": "Installation", - "objectID": "67a6dbe3-960c-4af3-acdc-b84a61add2d7", + "objectID": "403552e9-867b-4f79-a6b7-f3731e0346b4", "type": "lvl2", "url": "/docs/components/snippet#installation", "hierarchy": { "lvl1": "Snippet", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "63c6a4fb-ed35-4b00-83ce-2e1cf63b6523", + "objectID": "f45b7eaf-4b7b-4ee5-a365-4aa3e93d98e8", "type": "lvl2", "url": "/docs/components/snippet#import", "hierarchy": { "lvl1": "Snippet", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "7f523d57-839e-49c1-b0a9-dfdd3cc20c97", + "objectID": "876092dd-2698-48a9-bae8-31f76f3b1943", "type": "lvl2", "url": "/docs/components/snippet#usage", "hierarchy": { "lvl1": "Snippet", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "787f7391-68b2-41ef-bbb1-19ef7067a77d", + "objectID": "fdc33268-a4a3-447c-a814-8f2dda180b20", "type": "lvl3", "url": "/docs/components/snippet#sizes", "hierarchy": { "lvl1": "Snippet", "lvl2": "Usage", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "47655fb4-9ba8-442c-8a0f-ef5acba85ae4", + "objectID": "b5ac4e12-047f-498c-bdeb-0991686d4ce3", "type": "lvl3", "url": "/docs/components/snippet#colors", "hierarchy": { "lvl1": "Snippet", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "8755535a-f766-4bdf-b99f-2bfbf21fc55c", + "objectID": "5c3d0a17-ea20-4fb1-ac43-3abf71f264d3", "type": "lvl3", "url": "/docs/components/snippet#variants", "hierarchy": { "lvl1": "Snippet", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "Custom Symbol", - "objectID": "7c49cd96-ac72-4213-af58-b74c1c917d7f", + "objectID": "f211f633-6665-4273-aee5-2e631bd42b30", "type": "lvl3", "url": "/docs/components/snippet#custom-symbol", "hierarchy": { @@ -7675,7 +7675,7 @@ }, { "content": "Without Copy", - "objectID": "11c32355-2f49-4c98-9620-aea5d7f1b0ea", + "objectID": "719e5185-91bc-4122-8669-2e0900e99fcc", "type": "lvl3", "url": "/docs/components/snippet#without-copy", "hierarchy": { @@ -7686,7 +7686,7 @@ }, { "content": "Custom Tooltip", - "objectID": "561706a2-3fc8-4aed-993e-e9f63d889125", + "objectID": "10b06a82-7630-4e85-b06c-fd3c5c0b4ade", "type": "lvl3", "url": "/docs/components/snippet#custom-tooltip", "hierarchy": { @@ -7697,7 +7697,7 @@ }, { "content": "Multiline", - "objectID": "89acf4d8-53ec-48a9-9d49-8e75de168e2a", + "objectID": "5ddca694-9f61-40a0-a075-b7a1726dcf43", "type": "lvl3", "url": "/docs/components/snippet#multiline", "hierarchy": { @@ -7708,7 +7708,7 @@ }, { "content": "Custom Icons", - "objectID": "70b32080-d9d5-49c0-a812-9bcbf9eb8b0a", + "objectID": "2e3b59c0-76a6-495a-b09c-50a3e5110069", "type": "lvl3", "url": "/docs/components/snippet#custom-icons", "hierarchy": { @@ -7719,28 +7719,28 @@ }, { "content": "Slots", - "objectID": "d879f177-c0b0-45fa-a75c-bcd33ccfa66d", + "objectID": "e884df8e-ec73-4a0a-bb39-16bb855e71f2", "type": "lvl2", "url": "/docs/components/snippet#slots", "hierarchy": { "lvl1": "Snippet", "lvl2": "Slots", "lvl3": null } }, { "content": "API", - "objectID": "d03ec4ae-4fcc-4599-ba52-44982c9f1881", + "objectID": "bb24591e-2761-487a-acb8-c134176caf95", "type": "lvl2", "url": "/docs/components/snippet#api", "hierarchy": { "lvl1": "Snippet", "lvl2": "API", "lvl3": null } }, { "content": "Snippet Props", - "objectID": "4b172c4c-e597-4a66-ae03-f4ebe62993f8", + "objectID": "4fc73282-0302-4ee9-b2f5-fb749de8258a", "type": "lvl3", "url": "/docs/components/snippet#snippet-props", "hierarchy": { "lvl1": "Snippet", "lvl2": "API", "lvl3": "Snippet Props" } }, { "content": "Snippet Events", - "objectID": "9087a717-58ee-48ef-b491-d4f3870de983", + "objectID": "298b1de0-32ca-49ab-b2ce-2481e654ef67", "type": "lvl3", "url": "/docs/components/snippet#snippet-events", "hierarchy": { @@ -7751,105 +7751,105 @@ }, { "content": "Spacer", - "objectID": "28266ad7-8e42-49b5-ad09-98c6ab092b90", + "objectID": "88616043-64aa-4ad6-affb-28eb610f07e5", "type": "lvl1", "url": "/docs/components/spacer", "hierarchy": { "lvl1": "Spacer" } }, { "content": "Installation", - "objectID": "692f5f24-6d83-4365-a126-e5f26876f823", + "objectID": "916c649b-1762-438b-a5f0-9e9492df490e", "type": "lvl2", "url": "/docs/components/spacer#installation", "hierarchy": { "lvl1": "Spacer", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "1f9a386f-898f-4f62-a998-b27a482af322", + "objectID": "9780fa3a-686e-43ae-bb8f-d11071729499", "type": "lvl2", "url": "/docs/components/spacer#import", "hierarchy": { "lvl1": "Spacer", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "9638b65a-7f63-4738-b885-195f9a727f75", + "objectID": "9e925b83-f718-436c-9b04-f3a6d18e492b", "type": "lvl2", "url": "/docs/components/spacer#usage", "hierarchy": { "lvl1": "Spacer", "lvl2": "Usage", "lvl3": null } }, { "content": "API", - "objectID": "88cb947a-d753-480d-b7f0-ee6377c2fc28", + "objectID": "8cb758aa-0e00-49e8-b491-e026b947cd89", "type": "lvl2", "url": "/docs/components/spacer#api", "hierarchy": { "lvl1": "Spacer", "lvl2": "API", "lvl3": null } }, { "content": "Spacer Props", - "objectID": "68e83aa4-c610-453b-b69d-424cfc5d1f55", + "objectID": "70abd82e-2483-431a-b0ef-fa21981e5bf3", "type": "lvl3", "url": "/docs/components/spacer#spacer-props", "hierarchy": { "lvl1": "Spacer", "lvl2": "API", "lvl3": "Spacer Props" } }, { "content": "Spaces", - "objectID": "8fbbe544-66aa-47e5-94f4-f896f1f92559", + "objectID": "f3889b37-78b7-49ed-9a28-3eb80f767398", "type": "lvl3", "url": "/docs/components/spacer#spaces", "hierarchy": { "lvl1": "Spacer", "lvl2": "Spacer Props", "lvl3": "Spaces" } }, { "content": "Spinner", - "objectID": "5c50c1b2-cb38-44fa-8a4a-878d41be0368", + "objectID": "d9b3c79c-205a-4d99-8107-915aa31a0191", "type": "lvl1", "url": "/docs/components/spinner", "hierarchy": { "lvl1": "Spinner" } }, { "content": "Installation", - "objectID": "403b77e8-a2ee-41c4-b4be-b4e1624fad93", + "objectID": "6e3fde1d-a0da-4605-98f7-11f5b4d0b4f5", "type": "lvl2", "url": "/docs/components/spinner#installation", "hierarchy": { "lvl1": "Spinner", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "49845ba2-4f1c-4e14-b78d-afc757d400f5", + "objectID": "9f40785d-05ad-4ab4-b720-322f1cbdcddc", "type": "lvl2", "url": "/docs/components/spinner#import", "hierarchy": { "lvl1": "Spinner", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "7ed45bd9-6c24-4614-b0a2-13237b3be793", + "objectID": "2d01616d-3f8b-4c78-b493-80ec0e2cc717", "type": "lvl2", "url": "/docs/components/spinner#usage", "hierarchy": { "lvl1": "Spinner", "lvl2": "Usage", "lvl3": null } }, { "content": "Sizes", - "objectID": "4e11b129-2238-4887-afaf-0721c7796373", + "objectID": "1c21075a-202c-4869-a0ab-bafbd27e88d4", "type": "lvl3", "url": "/docs/components/spinner#sizes", "hierarchy": { "lvl1": "Spinner", "lvl2": "Usage", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "e15af50a-466b-448b-ab74-e12397474a17", + "objectID": "44ea0b28-78b1-4191-9002-bb9a37c15927", "type": "lvl3", "url": "/docs/components/spinner#colors", "hierarchy": { "lvl1": "Spinner", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "With Label", - "objectID": "ca6c8147-c78b-4242-9a3a-82f368f7441c", + "objectID": "b9af3e54-ece8-44d9-a2a4-288ccfc6bfce", "type": "lvl3", "url": "/docs/components/spinner#with-label", "hierarchy": { "lvl1": "Spinner", "lvl2": "Colors", "lvl3": "With Label" } }, { "content": "Label colors", - "objectID": "9406b97f-9ca9-4b0e-98bd-3d6f97b850ae", + "objectID": "4223927f-0e8b-452a-ab20-025e77c5efe8", "type": "lvl3", "url": "/docs/components/spinner#label-colors", "hierarchy": { @@ -7860,21 +7860,21 @@ }, { "content": "Slots", - "objectID": "d8677c63-0753-40c2-a959-4bf4b84fd140", + "objectID": "a3433ec2-c82a-4418-a818-e963fa2d00e9", "type": "lvl2", "url": "/docs/components/spinner#slots", "hierarchy": { "lvl1": "Spinner", "lvl2": "Slots", "lvl3": null } }, { "content": "API", - "objectID": "0426e969-2f9c-4367-ac73-68865e6bdf64", + "objectID": "29448e2e-be6b-4a26-9060-317614b515e0", "type": "lvl2", "url": "/docs/components/spinner#api", "hierarchy": { "lvl1": "Spinner", "lvl2": "API", "lvl3": null } }, { "content": "Circular Progress Props", - "objectID": "c9dada8c-3b1a-4e63-997e-3302623625d0", + "objectID": "c6fde406-11dd-48d2-a38d-330234ed7ea4", "type": "lvl3", "url": "/docs/components/spinner#circular-progress-props", "hierarchy": { @@ -7885,63 +7885,63 @@ }, { "content": "Switch", - "objectID": "5566c46b-06d1-412d-9867-376ce01e2807", + "objectID": "02c2eabb-d33d-4f72-9399-a558eccd2e60", "type": "lvl1", "url": "/docs/components/switch", "hierarchy": { "lvl1": "Switch" } }, { "content": "Installation", - "objectID": "73529936-d90b-4d52-aa07-c871ec0a9b05", + "objectID": "f40beeee-d64c-4317-be37-ef60a7853703", "type": "lvl2", "url": "/docs/components/switch#installation", "hierarchy": { "lvl1": "Switch", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "f3bca911-1d70-40d7-8d62-35af16a40cc7", + "objectID": "ded076cc-9bd9-4678-bb2b-f25025b9c5aa", "type": "lvl2", "url": "/docs/components/switch#import", "hierarchy": { "lvl1": "Switch", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "ceafe4d1-f809-4db1-bc6b-8237df818cad", + "objectID": "93ab9b6d-afe6-4e4b-9ff8-790dad7b90e3", "type": "lvl2", "url": "/docs/components/switch#usage", "hierarchy": { "lvl1": "Switch", "lvl2": "Usage", "lvl3": null } }, { "content": "With Label", - "objectID": "cd62c4b4-f213-4190-9326-89ec335b8764", + "objectID": "82cc12a5-e5cd-44a6-88ed-32fa5c7655f2", "type": "lvl3", "url": "/docs/components/switch#with-label", "hierarchy": { "lvl1": "Switch", "lvl2": "Usage", "lvl3": "With Label" } }, { "content": "Disabled", - "objectID": "22a62926-9a4c-4980-af7f-7678ff8080da", + "objectID": "f7007ffb-f403-4b9f-add1-32890a945aa3", "type": "lvl3", "url": "/docs/components/switch#disabled", "hierarchy": { "lvl1": "Switch", "lvl2": "With Label", "lvl3": "Disabled" } }, { "content": "Sizes", - "objectID": "714f9707-3fb0-4384-8bbd-2f685d775900", + "objectID": "e5c9081a-ac7f-450a-a9fb-998851d06ff4", "type": "lvl3", "url": "/docs/components/switch#sizes", "hierarchy": { "lvl1": "Switch", "lvl2": "Disabled", "lvl3": "Sizes" } }, { "content": "Colors", - "objectID": "3c5698f2-c450-47b4-9e39-9457082103f9", + "objectID": "d82e93e6-710c-4342-a998-70b2aa726c9d", "type": "lvl3", "url": "/docs/components/switch#colors", "hierarchy": { "lvl1": "Switch", "lvl2": "Sizes", "lvl3": "Colors" } }, { "content": "With Thumb Icon", - "objectID": "e9b29e06-ef1d-4bcf-acea-d95fa0b1ef17", + "objectID": "ba45beb4-47b5-4197-96e5-77293f7742fc", "type": "lvl3", "url": "/docs/components/switch#with-thumb-icon", "hierarchy": { @@ -7952,7 +7952,7 @@ }, { "content": "With Icons", - "objectID": "82299d33-b326-4581-bca2-119fb549ece1", + "objectID": "2e601ec5-9233-4bbe-a3b0-762a7f594ff2", "type": "lvl3", "url": "/docs/components/switch#with-icons", "hierarchy": { @@ -7963,7 +7963,7 @@ }, { "content": "Controlled", - "objectID": "db50a7cc-e970-44fc-8424-d48f320ceea1", + "objectID": "83f04c97-8c30-4e70-a115-55d86f497eb8", "type": "lvl3", "url": "/docs/components/switch#controlled", "hierarchy": { @@ -7974,21 +7974,21 @@ }, { "content": "Slots", - "objectID": "3f66e7e8-5758-4f88-9d87-68485e3c182f", + "objectID": "720badc0-4e9c-47cb-99be-eebc4e31278d", "type": "lvl2", "url": "/docs/components/switch#slots", "hierarchy": { "lvl1": "Switch", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "126d078e-0b3f-4c0d-b331-e937035bf21f", + "objectID": "0d8454d8-175e-47ba-ae25-50cba022790d", "type": "lvl3", "url": "/docs/components/switch#custom-styles", "hierarchy": { "lvl1": "Switch", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Custom Implementation", - "objectID": "b46f49bf-330e-4216-af1c-41403c50359a", + "objectID": "3203a7b4-c59c-46d4-b56d-2098e01bf181", "type": "lvl3", "url": "/docs/components/switch#custom-implementation", "hierarchy": { @@ -7999,35 +7999,35 @@ }, { "content": "Data Attributes", - "objectID": "1817b396-3ea9-4809-86cd-79cb9abe0acb", + "objectID": "78c0dcea-a15d-47cf-9232-969b521b0ca0", "type": "lvl2", "url": "/docs/components/switch#data-attributes", "hierarchy": { "lvl1": "Switch", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "407cc978-1732-471d-b34b-6c1367eb3e80", + "objectID": "5319e69d-5cbc-401f-9271-6dccbcf2b432", "type": "lvl2", "url": "/docs/components/switch#accessibility", "hierarchy": { "lvl1": "Switch", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "54c4fec4-3dce-4f03-a5ea-c092cb1b4f60", + "objectID": "64423697-1a6d-487b-9fa6-685ad992b5f9", "type": "lvl2", "url": "/docs/components/switch#api", "hierarchy": { "lvl1": "Switch", "lvl2": "API", "lvl3": null } }, { "content": "Switch Props", - "objectID": "16304aaf-eb76-490c-95c1-1c3aca4a08f8", + "objectID": "b2c9bb99-b212-413d-8836-27b1dec89cc5", "type": "lvl3", "url": "/docs/components/switch#switch-props", "hierarchy": { "lvl1": "Switch", "lvl2": "API", "lvl3": "Switch Props" } }, { "content": "Switch Events", - "objectID": "22b35720-ecd8-4353-92e0-28a05e26aaf4", + "objectID": "babb7fff-bb2d-488c-a4c1-4b4460aa4972", "type": "lvl3", "url": "/docs/components/switch#switch-events", "hierarchy": { @@ -8038,63 +8038,63 @@ }, { "content": "Types", - "objectID": "f1b6165d-4bf3-40d8-9716-bba3bad9eb90", + "objectID": "416a7709-d467-42ec-841d-d9db09b9305a", "type": "lvl3", "url": "/docs/components/switch#types", "hierarchy": { "lvl1": "Switch", "lvl2": "Switch Events", "lvl3": "Types" } }, { "content": "Switch Icon Props", - "objectID": "2c3e8e98-9034-4993-82b3-5050238e1d20", + "objectID": "c2147cab-022b-4939-bcef-fe22beb81005", "type": "lvl4", "url": "/docs/components/switch#switch-icon-props", "hierarchy": { "lvl1": "Switch", "lvl2": "Types", "lvl3": null } }, { "content": "Table", - "objectID": "3f3a9f89-d0b5-4dae-9b1c-b0357f5c3865", + "objectID": "d617a8c7-d8aa-4a2a-80e8-ae90e7c16d34", "type": "lvl1", "url": "/docs/components/table", "hierarchy": { "lvl1": "Table" } }, { "content": "Installation", - "objectID": "c10a04c8-3115-45be-beb5-f460d3859bfa", + "objectID": "d4954afc-6f78-4c7e-a8b1-da331d9b85d7", "type": "lvl2", "url": "/docs/components/table#installation", "hierarchy": { "lvl1": "Table", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "726df9da-4fae-498d-9574-ccbf0a30f944", + "objectID": "b79dce04-f646-41ca-bb27-39af0cc0cb5b", "type": "lvl2", "url": "/docs/components/table#import", "hierarchy": { "lvl1": "Table", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "1f7c526c-5ffb-4149-96b6-7d975d414821", + "objectID": "684e828a-8d0a-4307-b91a-ee965e7490d7", "type": "lvl2", "url": "/docs/components/table#usage", "hierarchy": { "lvl1": "Table", "lvl2": "Usage", "lvl3": null } }, { "content": "Dynamic", - "objectID": "ef5a917d-cea6-4453-a93d-0c9391671104", + "objectID": "282ee175-1032-484f-aba9-a146f15f29ee", "type": "lvl3", "url": "/docs/components/table#dynamic", "hierarchy": { "lvl1": "Table", "lvl2": "Usage", "lvl3": "Dynamic" } }, { "content": "Why not array map?", - "objectID": "20ad71d0-5ba1-438e-bf62-564cf72782eb", + "objectID": "8332e41c-8cb7-4755-9adf-756b86efbdd5", "type": "lvl4", "url": "/docs/components/table#why-not-array-map", "hierarchy": { "lvl1": "Table", "lvl2": "Dynamic", "lvl3": null } }, { "content": "Empty State", - "objectID": "a3e54f3b-d282-4fd8-b775-1ec8faf7d090", + "objectID": "49a147c3-5640-4c26-b5d8-b71cc227858f", "type": "lvl3", "url": "/docs/components/table#empty-state", "hierarchy": { @@ -8105,7 +8105,7 @@ }, { "content": "Without Header", - "objectID": "4f212071-ba2e-490e-9e2f-8c8c275ac1bd", + "objectID": "d10da8f9-5551-4595-a95c-3dfd65cf4b2f", "type": "lvl3", "url": "/docs/components/table#without-header", "hierarchy": { @@ -8116,7 +8116,7 @@ }, { "content": "Without Wrapper", - "objectID": "7cfc4fa9-2edc-4322-acad-89ad0e7af23a", + "objectID": "9cfb3205-8d4a-402f-88e7-72dd0ba22fb5", "type": "lvl3", "url": "/docs/components/table#without-wrapper", "hierarchy": { @@ -8127,7 +8127,7 @@ }, { "content": "Custom Cells", - "objectID": "7b8be82d-a63c-461f-bf8b-ee48299ad035", + "objectID": "e0af538a-ccd8-447e-ad76-cf273b4b7a16", "type": "lvl3", "url": "/docs/components/table#custom-cells", "hierarchy": { @@ -8138,7 +8138,7 @@ }, { "content": "Striped Rows", - "objectID": "32ba0660-704a-402f-bfb3-586ecdf51abf", + "objectID": "904241a0-7b4e-4711-b219-dc3e74184da3", "type": "lvl3", "url": "/docs/components/table#striped-rows", "hierarchy": { @@ -8149,7 +8149,7 @@ }, { "content": "Single Row Selection", - "objectID": "f4cadee8-86ff-4a09-b115-a0e5b0dc4fa6", + "objectID": "1b05eac6-69c1-4893-8696-5232e45b4fc8", "type": "lvl3", "url": "/docs/components/table#single-row-selection", "hierarchy": { @@ -8160,7 +8160,7 @@ }, { "content": "Multiple Row Selection", - "objectID": "472accb6-d993-490f-b10d-4508698ba166", + "objectID": "0c9d9f24-a952-45ce-ad48-53ddccd48c11", "type": "lvl3", "url": "/docs/components/table#multiple-row-selection", "hierarchy": { @@ -8171,7 +8171,7 @@ }, { "content": "Disallow Empty Selection", - "objectID": "1a430690-ef04-4a7f-ac27-31a517a0b16c", + "objectID": "596a9b9f-86ec-4d62-8cf7-b40bde4c54d0", "type": "lvl3", "url": "/docs/components/table#disallow-empty-selection", "hierarchy": { @@ -8182,7 +8182,7 @@ }, { "content": "Controlled Selection", - "objectID": "6c1f9a57-eb8d-4b66-81d3-707911e04c08", + "objectID": "115e5d91-f91f-487b-b99d-56860f4c8abb", "type": "lvl3", "url": "/docs/components/table#controlled-selection", "hierarchy": { @@ -8193,7 +8193,7 @@ }, { "content": "Disabled Rows", - "objectID": "272d7488-4bee-4958-9836-c6e5ac6cad1c", + "objectID": "124d5f39-a302-4e34-85c6-90981deaa9f3", "type": "lvl3", "url": "/docs/components/table#disabled-rows", "hierarchy": { @@ -8204,7 +8204,7 @@ }, { "content": "Selection Behavior", - "objectID": "82bed9dc-5f76-4537-a252-bbd257ba6d13", + "objectID": "a4fbff8f-a3c0-4b47-9437-7df4ab71dd07", "type": "lvl3", "url": "/docs/components/table#selection-behavior", "hierarchy": { @@ -8215,7 +8215,7 @@ }, { "content": "Rows Actions", - "objectID": "bad09d4e-d5d4-4992-8500-b88f8c4456c0", + "objectID": "738b142a-e793-4ec4-b54d-f0f6f52fccaf", "type": "lvl3", "url": "/docs/components/table#rows-actions", "hierarchy": { @@ -8226,7 +8226,7 @@ }, { "content": "Sorting Rows", - "objectID": "db3efe92-231f-4f2d-9ab3-037643cdbce5", + "objectID": "c04986bc-3421-40b5-a4e1-23f8c48e0f93", "type": "lvl3", "url": "/docs/components/table#sorting-rows", "hierarchy": { @@ -8237,7 +8237,7 @@ }, { "content": "Loading more data", - "objectID": "5758156a-3219-47e8-b236-8878630e2c0c", + "objectID": "66036962-b04f-4e34-bf4d-8563df76a270", "type": "lvl3", "url": "/docs/components/table#loading-more-data", "hierarchy": { @@ -8248,7 +8248,7 @@ }, { "content": "Paginated Table", - "objectID": "98b7358f-91f6-411d-8dd5-d14f24d8c8c6", + "objectID": "c70272d6-27da-4cdb-88e5-66a60bfd6075", "type": "lvl3", "url": "/docs/components/table#paginated-table", "hierarchy": { @@ -8259,7 +8259,7 @@ }, { "content": "Async Pagination", - "objectID": "be4e079d-d455-43d5-aef8-a0bd0486e8f2", + "objectID": "6c142771-bc78-43fa-a548-a5f1f54eeb8c", "type": "lvl3", "url": "/docs/components/table#async-pagination", "hierarchy": { @@ -8270,7 +8270,7 @@ }, { "content": "Infinite Pagination", - "objectID": "bdfc910c-3a4c-4c71-9de3-dba32c6a53a7", + "objectID": "dc8876f3-815b-4fea-8a7c-72dbdd276b4b", "type": "lvl3", "url": "/docs/components/table#infinite-pagination", "hierarchy": { @@ -8281,7 +8281,7 @@ }, { "content": "Use Case Example", - "objectID": "dc6db15e-7e80-4be5-8e46-c98efe0b909c", + "objectID": "bfa49cf3-2f66-4378-9720-ad52b1a3a100", "type": "lvl3", "url": "/docs/components/table#use-case-example", "hierarchy": { @@ -8292,49 +8292,49 @@ }, { "content": "Slots", - "objectID": "3de7c3bf-ab84-4331-b72d-8bdd98945b49", + "objectID": "120ad767-fd3b-4c89-a718-6863de8f1a67", "type": "lvl2", "url": "/docs/components/table#slots", "hierarchy": { "lvl1": "Table", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "c57166bb-354d-44ca-9227-6f730286731e", + "objectID": "b1a283b3-e151-42ba-8d8d-609cfcf82fab", "type": "lvl3", "url": "/docs/components/table#custom-styles", "hierarchy": { "lvl1": "Table", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Data Attributes", - "objectID": "35ac948b-87ad-4543-a382-3beef9641b72", + "objectID": "531d6c6b-28cc-4c44-8430-9565a83299a7", "type": "lvl2", "url": "/docs/components/table#data-attributes", "hierarchy": { "lvl1": "Table", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "333c329b-3b4b-4486-ac3d-01d89bea456f", + "objectID": "bc73f161-0767-4535-b311-802531e6cda2", "type": "lvl2", "url": "/docs/components/table#accessibility", "hierarchy": { "lvl1": "Table", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "58858047-a1c8-4539-9f15-397b8a960643", + "objectID": "99be8066-74e8-4b02-a8f1-e0eea1f19485", "type": "lvl2", "url": "/docs/components/table#api", "hierarchy": { "lvl1": "Table", "lvl2": "API", "lvl3": null } }, { "content": "Table Props", - "objectID": "e4741627-12c1-42b7-9a2e-42dde0a634f8", + "objectID": "d2744e17-389a-463f-b4dc-f12246c250cd", "type": "lvl3", "url": "/docs/components/table#table-props", "hierarchy": { "lvl1": "Table", "lvl2": "API", "lvl3": "Table Props" } }, { "content": "Table Events", - "objectID": "79e0106d-98ab-47da-8c7f-821f0838cc50", + "objectID": "e87be40c-eaac-4873-abe8-41bfdf32d08e", "type": "lvl3", "url": "/docs/components/table#table-events", "hierarchy": { @@ -8345,28 +8345,28 @@ }, { "content": "TableHeader Props", - "objectID": "8ac81eae-47a6-4539-918e-1c0e88e80f31", + "objectID": "c6cfbf75-2fae-4bb5-99a6-db25c563857e", "type": "lvl4", "url": "/docs/components/table#tableheader-props", "hierarchy": { "lvl1": "Table", "lvl2": "Table Events", "lvl3": null } }, { "content": "TableColumn Props", - "objectID": "059d8755-2f48-4998-9613-5d39c97e49c3", + "objectID": "915792e8-96d8-43b7-94f4-6836f158f3ce", "type": "lvl4", "url": "/docs/components/table#tablecolumn-props", "hierarchy": { "lvl1": "Table", "lvl2": "TableHeader Props", "lvl3": null } }, { "content": "TableBody Props", - "objectID": "2031c590-a3c5-4733-827f-297641da7ed8", + "objectID": "3722734d-9a34-455a-9ca5-60492303457e", "type": "lvl4", "url": "/docs/components/table#tablebody-props", "hierarchy": { "lvl1": "Table", "lvl2": "TableColumn Props", "lvl3": null } }, { "content": "TableBody Events", - "objectID": "ce87426a-6e3b-4203-b23f-48d4cfc77b86", + "objectID": "87fb303a-2df5-4966-aeb2-67fd46a902f4", "type": "lvl3", "url": "/docs/components/table#tablebody-events", "hierarchy": { @@ -8377,21 +8377,21 @@ }, { "content": "TableRow Props", - "objectID": "5edd4b1d-ed9b-43f0-8f74-0e4bb8b56269", + "objectID": "5970ddf7-bf58-4367-b760-957579deedfb", "type": "lvl4", "url": "/docs/components/table#tablerow-props", "hierarchy": { "lvl1": "Table", "lvl2": "TableBody Events", "lvl3": null } }, { "content": "TableCell Props", - "objectID": "1b07042d-6ecb-4dc8-9677-cf7c378607de", + "objectID": "b34ecb7b-9eeb-4d72-a815-4e5b82dbbffb", "type": "lvl4", "url": "/docs/components/table#tablecell-props", "hierarchy": { "lvl1": "Table", "lvl2": "TableRow Props", "lvl3": null } }, { "content": "Table types", - "objectID": "7f86d7fc-7ec1-45d9-a749-d33e06650ff9", + "objectID": "45ba8533-64c7-4b32-8c92-12295b21ea5a", "type": "lvl3", "url": "/docs/components/table#table-types", "hierarchy": { @@ -8402,280 +8402,280 @@ }, { "content": "Sort descriptor", - "objectID": "c7c70db7-a2d8-4b35-a085-eba461b3cc8f", + "objectID": "eb67b873-1647-4110-969d-8f630991b349", "type": "lvl4", "url": "/docs/components/table#sort-descriptor", "hierarchy": { "lvl1": "Table", "lvl2": "Table types", "lvl3": null } }, { "content": "Selection", - "objectID": "02d5f0d8-7626-4dfd-ac12-7ac097c5ad16", + "objectID": "035eb48f-8f5c-448b-9a09-1cc6a61d8d34", "type": "lvl4", "url": "/docs/components/table#selection", "hierarchy": { "lvl1": "Table", "lvl2": "Sort descriptor", "lvl3": null } }, { "content": "Loading state", - "objectID": "c46fed98-97b4-44d3-bd17-e56f41c2a8ce", + "objectID": "a344c24e-e34f-4bd2-b890-f9288bfb1622", "type": "lvl4", "url": "/docs/components/table#loading-state", "hierarchy": { "lvl1": "Table", "lvl2": "Selection", "lvl3": null } }, { "content": "Tabs", - "objectID": "db18ad50-cdf7-414a-a839-004f1f3f8dce", + "objectID": "860b7f04-df6c-465f-af8c-6ba65b3e408d", "type": "lvl1", "url": "/docs/components/tabs", "hierarchy": { "lvl1": "Tabs" } }, { "content": "Installation", - "objectID": "491773a1-c241-4057-84a0-0583c5e43a6a", + "objectID": "0bd19cf9-86c7-4a24-80e5-fffa0bde8ff6", "type": "lvl2", "url": "/docs/components/tabs#installation", "hierarchy": { "lvl1": "Tabs", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "2e3d60cd-26a5-411a-8381-5b87b6c7ca5c", + "objectID": "17f942b3-4c68-4b07-afa7-44b0d88b0354", "type": "lvl2", "url": "/docs/components/tabs#import", "hierarchy": { "lvl1": "Tabs", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "fb67cebe-e83e-4175-aebd-2df720e8432c", + "objectID": "a5a93e5b-6410-4084-b2df-e25e6bfc9600", "type": "lvl2", "url": "/docs/components/tabs#usage", "hierarchy": { "lvl1": "Tabs", "lvl2": "Usage", "lvl3": null } }, { "content": "Dynamic", - "objectID": "3fc0c6b8-640a-4f2d-9cce-9946995d237f", + "objectID": "953f7878-fdd8-4764-87fd-6f6aab3e695c", "type": "lvl3", "url": "/docs/components/tabs#dynamic", "hierarchy": { "lvl1": "Tabs", "lvl2": "Usage", "lvl3": "Dynamic" } }, { "content": "Disabled", - "objectID": "857f416d-a309-4cbe-852d-6fcd056325bd", + "objectID": "356752b2-0e80-4ce8-a30f-14c5db9a50d1", "type": "lvl3", "url": "/docs/components/tabs#disabled", "hierarchy": { "lvl1": "Tabs", "lvl2": "Dynamic", "lvl3": "Disabled" } }, { "content": "Disabled Item", - "objectID": "71287f6b-96a6-4ccb-a809-2e1c22cc6cdd", + "objectID": "3d27d22e-5751-4cfd-b822-f3986677e6b1", "type": "lvl3", "url": "/docs/components/tabs#disabled-item", "hierarchy": { "lvl1": "Tabs", "lvl2": "Disabled", "lvl3": "Disabled Item" } }, { "content": "Sizes", - "objectID": "1c8729c0-0b77-41c2-8e88-653f6e34473d", + "objectID": "ea6e0d54-0a3b-47f6-b794-6e7a0c7fe7cb", "type": "lvl3", "url": "/docs/components/tabs#sizes", "hierarchy": { "lvl1": "Tabs", "lvl2": "Disabled Item", "lvl3": "Sizes" } }, { "content": "Radius", - "objectID": "b33bdec3-97df-43c3-8fb8-2331f38b29d0", + "objectID": "87c3122b-46af-4444-889f-aac0abb4b32f", "type": "lvl3", "url": "/docs/components/tabs#radius", "hierarchy": { "lvl1": "Tabs", "lvl2": "Sizes", "lvl3": "Radius" } }, { "content": "Colors", - "objectID": "5b42a204-1985-4365-a24e-411507d629fd", + "objectID": "f2ca335f-c72a-4a7d-b745-7a963c4011c1", "type": "lvl3", "url": "/docs/components/tabs#colors", "hierarchy": { "lvl1": "Tabs", "lvl2": "Radius", "lvl3": "Colors" } }, { "content": "Variants", - "objectID": "bde3f0e3-10a8-469d-a952-51694470d358", + "objectID": "47fafe56-3b1c-45ac-aefa-aea67d7809be", "type": "lvl3", "url": "/docs/components/tabs#variants", "hierarchy": { "lvl1": "Tabs", "lvl2": "Colors", "lvl3": "Variants" } }, { "content": "With Icons", - "objectID": "81628775-6190-4b94-bf10-056a8e399683", + "objectID": "a68a559e-49ff-42ef-9a2f-762ae9f50a7a", "type": "lvl3", "url": "/docs/components/tabs#with-icons", "hierarchy": { "lvl1": "Tabs", "lvl2": "Variants", "lvl3": "With Icons" } }, { "content": "Controlled", - "objectID": "7192ae58-3812-4619-83ea-f83855a52806", + "objectID": "25f2074c-141a-4c26-8de3-3fc57c45d6a8", "type": "lvl3", "url": "/docs/components/tabs#controlled", "hierarchy": { "lvl1": "Tabs", "lvl2": "With Icons", "lvl3": "Controlled" } }, { "content": "Placement", - "objectID": "67c8ace3-fad1-42ed-bca5-0e0f3d181d33", + "objectID": "1aaff114-6624-4643-86f7-b2b6b0e2bb8d", "type": "lvl3", "url": "/docs/components/tabs#placement", "hierarchy": { "lvl1": "Tabs", "lvl2": "Controlled", "lvl3": "Placement" } }, { "content": "Vertical", - "objectID": "2ee8429f-fc1b-4a69-b208-a3c719fc42fa", + "objectID": "11ba1ae8-58e4-43d0-9937-454922b7336d", "type": "lvl3", "url": "/docs/components/tabs#vertical", "hierarchy": { "lvl1": "Tabs", "lvl2": "Placement", "lvl3": "Vertical" } }, { "content": "Links", - "objectID": "4ae65d20-154e-4e28-bb60-3360aa181b0f", + "objectID": "e4372cf4-7844-41e3-9ed0-6cba1a39d9c8", "type": "lvl3", "url": "/docs/components/tabs#links", "hierarchy": { "lvl1": "Tabs", "lvl2": "Vertical", "lvl3": "Links" } }, { "content": "Next.js", - "objectID": "41f0a64a-e4e4-4f06-a1f5-eefd99b9b330", + "objectID": "739fd4c2-5c5f-4c05-9b3e-7efe75c261da", "type": "lvl4", "url": "/docs/components/tabs#nextjs", "hierarchy": { "lvl1": "Tabs", "lvl2": "Links", "lvl3": null } }, { "content": "React Router", - "objectID": "09e886bf-3715-4e89-95f4-6a718d9ce71a", + "objectID": "3832c287-12d6-4c00-a33c-5e8ff179efde", "type": "lvl4", "url": "/docs/components/tabs#react-router", "hierarchy": { "lvl1": "Tabs", "lvl2": "Next.js", "lvl3": null } }, { "content": "With Form", - "objectID": "94069f6e-0be1-4160-bdf4-0efdc92cfcfb", + "objectID": "ce7b8970-fc18-4cf1-a31b-b4546e15e350", "type": "lvl3", "url": "/docs/components/tabs#with-form", "hierarchy": { "lvl1": "Tabs", "lvl2": "React Router", "lvl3": "With Form" } }, { "content": "Slots", - "objectID": "83f97019-f14d-4638-b045-c3f96d82e462", + "objectID": "f0a7ccb2-5af5-4ba7-a5c1-cfa20f5a9a24", "type": "lvl2", "url": "/docs/components/tabs#slots", "hierarchy": { "lvl1": "Tabs", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "f20a3aab-ec1f-4ed6-af3b-692b19e5f1a1", + "objectID": "3e9e2ea4-230a-407b-922d-4e88905d4f1d", "type": "lvl3", "url": "/docs/components/tabs#custom-styles", "hierarchy": { "lvl1": "Tabs", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Data Attributes", - "objectID": "2f7d01ed-e590-4f30-b4dd-26819603f335", + "objectID": "2f669896-bd9b-4388-ad4c-586676823c12", "type": "lvl2", "url": "/docs/components/tabs#data-attributes", "hierarchy": { "lvl1": "Tabs", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "1c5218f6-577f-44e4-8c94-c0ddff677591", + "objectID": "550c3720-f0d1-42af-8b21-77ff39dc8188", "type": "lvl2", "url": "/docs/components/tabs#accessibility", "hierarchy": { "lvl1": "Tabs", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "798f3219-fea3-4842-b24e-9ed38a476ffb", + "objectID": "4c49e743-57fa-4ad5-b95c-3c0d63fedbf1", "type": "lvl2", "url": "/docs/components/tabs#api", "hierarchy": { "lvl1": "Tabs", "lvl2": "API", "lvl3": null } }, { "content": "Tabs Props", - "objectID": "436c4302-3a57-4846-ade6-f306a23800ac", + "objectID": "e09e3449-281e-4abb-812e-dc3670960fc1", "type": "lvl3", "url": "/docs/components/tabs#tabs-props", "hierarchy": { "lvl1": "Tabs", "lvl2": "API", "lvl3": "Tabs Props" } }, { "content": "Tabs Events", - "objectID": "9b6ce619-23e0-4df4-8e7b-f5a2b9bf5dab", + "objectID": "2bdf431b-7734-45eb-8ec4-d3caa32558c6", "type": "lvl3", "url": "/docs/components/tabs#tabs-events", "hierarchy": { "lvl1": "Tabs", "lvl2": "Tabs Props", "lvl3": "Tabs Events" } }, { "content": "Tab Props", - "objectID": "a17f99c2-b964-4dc7-b6b3-5446245bdac2", + "objectID": "374a0830-84c0-4978-bf3f-b928d785acee", "type": "lvl3", "url": "/docs/components/tabs#tab-props", "hierarchy": { "lvl1": "Tabs", "lvl2": "Tabs Events", "lvl3": "Tab Props" } }, { "content": "Motion Props", - "objectID": "b0093017-441d-4f05-b207-9a38a7b13530", + "objectID": "9e4423f6-4d1e-4814-9f63-f2ea51688d77", "type": "lvl4", "url": "/docs/components/tabs#motion-props", "hierarchy": { "lvl1": "Tabs", "lvl2": "Tab Props", "lvl3": null } }, { "content": "Textarea", - "objectID": "c6708aff-11ca-4650-8cb5-689ba5f554ee", + "objectID": "e7ec6456-70ab-4391-b240-287aadfe3399", "type": "lvl1", "url": "/docs/components/textarea", "hierarchy": { "lvl1": "Textarea" } }, { "content": "Installation", - "objectID": "24217224-d3db-4fd7-8cf4-41274c6ff6b6", + "objectID": "8765e21e-6621-49d9-8f2c-39792130159f", "type": "lvl2", "url": "/docs/components/textarea#installation", "hierarchy": { "lvl1": "Textarea", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "2fd047ac-0e11-4384-b2b5-9e248008062b", + "objectID": "60436ffc-0188-4c1a-9304-aaed56fd9daf", "type": "lvl2", "url": "/docs/components/textarea#import", "hierarchy": { "lvl1": "Textarea", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "99e76eb9-5533-4eec-bc64-7babaf632784", + "objectID": "9843d7dc-5330-41e9-aed3-6bdf0706db9c", "type": "lvl2", "url": "/docs/components/textarea#usage", "hierarchy": { "lvl1": "Textarea", "lvl2": "Usage", "lvl3": null } }, { "content": "Disabled", - "objectID": "672a658b-7fce-4127-9b9d-a96230a0b857", + "objectID": "75a51a8d-104b-47c3-8f0a-0f110a615f2b", "type": "lvl3", "url": "/docs/components/textarea#disabled", "hierarchy": { "lvl1": "Textarea", "lvl2": "Usage", "lvl3": "Disabled" } }, { "content": "Read Only", - "objectID": "f306e6ca-ca7a-4822-b959-20296c48e143", + "objectID": "11f70925-b1b2-4166-b018-a90103812498", "type": "lvl3", "url": "/docs/components/textarea#read-only", "hierarchy": { "lvl1": "Textarea", "lvl2": "Disabled", "lvl3": "Read Only" } }, { "content": "Required", - "objectID": "1336aefd-0c55-4c9f-9020-39dcf2b08fbd", + "objectID": "87f6ae91-3243-413e-b31b-56c9fca05ac2", "type": "lvl3", "url": "/docs/components/textarea#required", "hierarchy": { "lvl1": "Textarea", "lvl2": "Read Only", "lvl3": "Required" } }, { "content": "Autosize", - "objectID": "1fb30f10-b01d-4cb9-88bb-29b2283074a1", + "objectID": "75cdde9c-2b54-4a04-9592-7ef9dcb00d82", "type": "lvl3", "url": "/docs/components/textarea#autosize", "hierarchy": { "lvl1": "Textarea", "lvl2": "Required", "lvl3": "Autosize" } }, { "content": "Without Autosize", - "objectID": "22148172-996f-4bc3-b26d-0b56dee1cf16", + "objectID": "da28e34a-bacc-4418-afe5-7be05fd49392", "type": "lvl3", "url": "/docs/components/textarea#without-autosize", "hierarchy": { @@ -8686,7 +8686,7 @@ }, { "content": "Variants", - "objectID": "9da5b244-b2c1-4234-b747-c2c86d80f6ae", + "objectID": "31097251-3a1d-4170-ac19-0bd916e70901", "type": "lvl3", "url": "/docs/components/textarea#variants", "hierarchy": { @@ -8697,7 +8697,7 @@ }, { "content": "With Error Message", - "objectID": "70fc68cb-dab6-44e7-9b8a-776014ac2ab9", + "objectID": "ce06ccf4-0c39-400e-9327-8ad20f0a72a9", "type": "lvl3", "url": "/docs/components/textarea#with-error-message", "hierarchy": { @@ -8708,7 +8708,7 @@ }, { "content": "Description", - "objectID": "45c52029-890c-4a9d-b2f4-80d2c0883efa", + "objectID": "457f2ee5-3f97-4805-a8e0-555051125088", "type": "lvl3", "url": "/docs/components/textarea#description", "hierarchy": { @@ -8719,7 +8719,7 @@ }, { "content": "Controlled", - "objectID": "1f8e51ec-15a1-4545-8f45-c109bb0f330c", + "objectID": "7c6b3a52-2dbb-4553-8c8a-5e19175fd9ed", "type": "lvl3", "url": "/docs/components/textarea#controlled", "hierarchy": { @@ -8730,42 +8730,42 @@ }, { "content": "Slots", - "objectID": "1dec6ff0-fcaa-4c4a-917c-89204bb0b3c8", + "objectID": "0aa22d7a-f552-47a7-8d0b-840c12b134a3", "type": "lvl2", "url": "/docs/components/textarea#slots", "hierarchy": { "lvl1": "Textarea", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "f8d7882d-4e3d-4155-994d-160a6df6c746", + "objectID": "e76aa3a7-6d75-43e5-b77e-02f085657528", "type": "lvl2", "url": "/docs/components/textarea#data-attributes", "hierarchy": { "lvl1": "Textarea", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "99826cea-4994-4991-aa51-1ce676969fa0", + "objectID": "2f7dc213-8666-4fac-a22b-cc4668f699e6", "type": "lvl2", "url": "/docs/components/textarea#accessibility", "hierarchy": { "lvl1": "Textarea", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "d7118661-d2a3-41fc-80f8-f4bc95c163fa", + "objectID": "544d0a39-50ba-40af-a991-02182f018d9f", "type": "lvl2", "url": "/docs/components/textarea#api", "hierarchy": { "lvl1": "Textarea", "lvl2": "API", "lvl3": null } }, { "content": "Textarea Props", - "objectID": "a2fe5593-14b9-40de-85ab-c2ed314a04e5", + "objectID": "9885be32-decd-421a-b214-5d6610e5d7a8", "type": "lvl3", "url": "/docs/components/textarea#textarea-props", "hierarchy": { "lvl1": "Textarea", "lvl2": "API", "lvl3": "Textarea Props" } }, { "content": "Input Events", - "objectID": "ad89041f-1bf3-4d25-94be-c5756d83c5b0", + "objectID": "0b7579b3-1971-45e5-bcec-7691951cc713", "type": "lvl3", "url": "/docs/components/textarea#input-events", "hierarchy": { @@ -8776,42 +8776,42 @@ }, { "content": "Time Input", - "objectID": "0516946c-d99a-43e1-a55c-ee18dbbffc13", + "objectID": "16a82176-c8c8-4527-b305-65d9d1556dd1", "type": "lvl1", "url": "/docs/components/time-input", "hierarchy": { "lvl1": "Time Input" } }, { "content": "Installation", - "objectID": "bebd2aa0-f894-433b-bcc1-97cf29e4443a", + "objectID": "aa5e4699-d12b-4967-87f0-46025d70ede1", "type": "lvl2", "url": "/docs/components/time-input#installation", "hierarchy": { "lvl1": "Time Input", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "c802ff47-02a8-4cd5-807f-58a22af398bb", + "objectID": "0932cc99-d139-4e5e-b5e5-ae80728c120a", "type": "lvl2", "url": "/docs/components/time-input#import", "hierarchy": { "lvl1": "Time Input", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "9edf9750-a18a-488e-9379-096db840e309", + "objectID": "37d6c0f8-4a2c-4b09-96e8-966e5635fa53", "type": "lvl2", "url": "/docs/components/time-input#usage", "hierarchy": { "lvl1": "Time Input", "lvl2": "Usage", "lvl3": null } }, { "content": "Required", - "objectID": "0998fb82-0e7c-406b-8e0c-44a526cc72c0", + "objectID": "531a2764-24de-4f29-a1e6-29c7629c9686", "type": "lvl3", "url": "/docs/components/time-input#required", "hierarchy": { "lvl1": "Time Input", "lvl2": "Usage", "lvl3": "Required" } }, { "content": "Disabled", - "objectID": "d21bc4b5-6e9d-4f0b-9f2f-ecf1a2eea0be", + "objectID": "7c70f743-e966-444d-98f2-a1c9c86f41c1", "type": "lvl3", "url": "/docs/components/time-input#disabled", "hierarchy": { @@ -8822,7 +8822,7 @@ }, { "content": "Read Only", - "objectID": "1d1623a5-e6f1-476d-96cf-5136191c60dc", + "objectID": "f9a5607b-e737-4a57-8e86-620a37112d23", "type": "lvl3", "url": "/docs/components/time-input#read-only", "hierarchy": { @@ -8833,7 +8833,7 @@ }, { "content": "Without Label", - "objectID": "03a194e0-8ba3-4719-8d7c-f293e53791ed", + "objectID": "7818bf5b-1aef-46d8-b3b7-a12618805587", "type": "lvl3", "url": "/docs/components/time-input#without-label", "hierarchy": { @@ -8844,7 +8844,7 @@ }, { "content": "With Description", - "objectID": "7fe934d7-aae9-46bb-92e2-9306d700b193", + "objectID": "c66fc5cd-1d75-47ff-9d70-5bdc02ad62d9", "type": "lvl3", "url": "/docs/components/time-input#with-description", "hierarchy": { @@ -8855,7 +8855,7 @@ }, { "content": "With Error Message", - "objectID": "5fdf7d1d-7900-4a68-a688-c60f2a649896", + "objectID": "8a84ce21-c7af-4dc3-ac52-496ddf257c13", "type": "lvl3", "url": "/docs/components/time-input#with-error-message", "hierarchy": { @@ -8866,7 +8866,7 @@ }, { "content": "Label Placement", - "objectID": "332446ad-7702-461a-876e-7860a9d46564", + "objectID": "428d66c0-7e97-453d-b1cd-2a49c27ef7d1", "type": "lvl3", "url": "/docs/components/time-input#label-placement", "hierarchy": { @@ -8877,7 +8877,7 @@ }, { "content": "Start Content", - "objectID": "bf69fc0c-bf78-4685-a738-649e93fe1d17", + "objectID": "a6453157-fbf6-497b-aa04-6b02a3e8961e", "type": "lvl3", "url": "/docs/components/time-input#start-content", "hierarchy": { @@ -8888,7 +8888,7 @@ }, { "content": "End Content", - "objectID": "76483d92-f349-4dd2-b232-c882a67e5026", + "objectID": "b097afa1-3107-43da-8021-31146b515cc4", "type": "lvl3", "url": "/docs/components/time-input#end-content", "hierarchy": { @@ -8899,7 +8899,7 @@ }, { "content": "Controlled", - "objectID": "9be24039-6519-4876-8527-f571ae408bb0", + "objectID": "7bfe90d1-7fd2-4e63-8860-ef6908fead84", "type": "lvl3", "url": "/docs/components/time-input#controlled", "hierarchy": { @@ -8910,7 +8910,7 @@ }, { "content": "Time Zones", - "objectID": "0f1a59d4-46ef-4eae-abce-0d09f98be916", + "objectID": "0d11c9c1-cf86-411c-9e13-9f9746a59f4f", "type": "lvl3", "url": "/docs/components/time-input#time-zones", "hierarchy": { @@ -8921,7 +8921,7 @@ }, { "content": "Granularity", - "objectID": "5d596368-4104-4818-b1e1-e9e8cac23f0f", + "objectID": "7356d09b-eb54-4f3e-b488-38c825c0ca43", "type": "lvl3", "url": "/docs/components/time-input#granularity", "hierarchy": { @@ -8932,7 +8932,7 @@ }, { "content": "Min Time Value", - "objectID": "725f5e26-3a14-40d3-ac68-88373c4c96c9", + "objectID": "b14fc557-a0b4-4d30-a1e0-9259a89fcef8", "type": "lvl3", "url": "/docs/components/time-input#min-time-value", "hierarchy": { @@ -8943,7 +8943,7 @@ }, { "content": "Max Time Value", - "objectID": "f973e7c8-b215-439a-aa7a-39d2dda4e51b", + "objectID": "cac41a17-2c93-4b1a-80c8-771ea4294434", "type": "lvl3", "url": "/docs/components/time-input#max-time-value", "hierarchy": { @@ -8954,7 +8954,7 @@ }, { "content": "Placeholder Value", - "objectID": "e2713b5d-02af-4eda-be64-f89b3a41b8e6", + "objectID": "eb2ff665-039a-47c4-9e32-819f70d64390", "type": "lvl3", "url": "/docs/components/time-input#placeholder-value", "hierarchy": { @@ -8965,7 +8965,7 @@ }, { "content": "Hide Time Zone", - "objectID": "d067eb49-dfa5-4dc8-acd8-0a47c88cebca", + "objectID": "e00233d0-2fa9-4296-ac9a-3f231a95821b", "type": "lvl3", "url": "/docs/components/time-input#hide-time-zone", "hierarchy": { @@ -8976,7 +8976,7 @@ }, { "content": "Hour Cycle", - "objectID": "d2d9b40d-720c-438d-a8b0-63dca016a30f", + "objectID": "e6c21d8f-295b-4cf8-810f-7f22f9db22a2", "type": "lvl3", "url": "/docs/components/time-input#hour-cycle", "hierarchy": { @@ -8987,14 +8987,14 @@ }, { "content": "Slots", - "objectID": "a81480ce-003e-4f12-96a4-89664a8bc472", + "objectID": "3af98b34-4052-420c-888a-d7927ea37667", "type": "lvl2", "url": "/docs/components/time-input#slots", "hierarchy": { "lvl1": "Time Input", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "2c1cffa5-c762-4b86-8e49-8a73ed56085b", + "objectID": "d0f1801b-8c10-4bcb-83d6-4d468d125226", "type": "lvl2", "url": "/docs/components/time-input#data-attributes", "hierarchy": { @@ -9005,21 +9005,21 @@ }, { "content": "Accessibility", - "objectID": "747b7c33-1df0-4d7c-ae53-8a49bf6bcd6b", + "objectID": "27041b29-2850-4879-849b-174b1561dd7d", "type": "lvl2", "url": "/docs/components/time-input#accessibility", "hierarchy": { "lvl1": "Time Input", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "5476fd4d-bcda-46d0-bc00-ae56842153a1", + "objectID": "37f9619b-f4cc-4f65-bac0-1733f3ddba46", "type": "lvl2", "url": "/docs/components/time-input#api", "hierarchy": { "lvl1": "Time Input", "lvl2": "API", "lvl3": null } }, { "content": "TimeInput Props", - "objectID": "fda85460-7339-40fc-b023-5878954a6c2b", + "objectID": "cef8a9e2-3b1e-4169-8fd1-d122a123fb4b", "type": "lvl3", "url": "/docs/components/time-input#timeinput-props", "hierarchy": { @@ -9030,7 +9030,7 @@ }, { "content": "TimeInput Events", - "objectID": "d67aa565-a795-4d87-861f-db558df9dbc0", + "objectID": "f3806268-10e7-42ec-93ce-9c1f9e056eae", "type": "lvl3", "url": "/docs/components/time-input#timeinput-events", "hierarchy": { @@ -9041,70 +9041,70 @@ }, { "content": "Tooltip", - "objectID": "e8601098-77cb-4aad-90fa-d32d38a62491", + "objectID": "2748f201-9ccf-4220-a29d-f10d12fd464e", "type": "lvl1", "url": "/docs/components/tooltip", "hierarchy": { "lvl1": "Tooltip" } }, { "content": "Installation", - "objectID": "d30a526d-39ac-41cb-9b0b-06555c53c4f3", + "objectID": "d82d32de-9af5-46a2-8251-1e696b51576f", "type": "lvl2", "url": "/docs/components/tooltip#installation", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "24ca640a-db7c-4ae9-9636-f53972f5bfd9", + "objectID": "c95d0804-d714-4f6b-8b84-c53e65b9fc94", "type": "lvl2", "url": "/docs/components/tooltip#import", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "a96c4339-2e1d-4625-a502-a0624ba4a95b", + "objectID": "37bbdbff-5dac-498f-ad6e-2be85547da0b", "type": "lvl2", "url": "/docs/components/tooltip#usage", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Usage", "lvl3": null } }, { "content": "With Arrow", - "objectID": "5845e1a1-4914-4762-9a17-000885833524", + "objectID": "b3299960-6986-4f97-87d1-0792c1610073", "type": "lvl3", "url": "/docs/components/tooltip#with-arrow", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Usage", "lvl3": "With Arrow" } }, { "content": "Colors", - "objectID": "41baa370-7695-478a-838e-26421ebd9d99", + "objectID": "ea43d20a-1852-410b-86de-c7735bb797a9", "type": "lvl3", "url": "/docs/components/tooltip#colors", "hierarchy": { "lvl1": "Tooltip", "lvl2": "With Arrow", "lvl3": "Colors" } }, { "content": "Placements", - "objectID": "8ed9da20-e43c-439e-945b-f2a332b97fc9", + "objectID": "8f9aa929-bb1e-4e1a-b55d-9a74bcaa4c26", "type": "lvl3", "url": "/docs/components/tooltip#placements", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Colors", "lvl3": "Placements" } }, { "content": "Offset", - "objectID": "e49280ba-56f1-4e55-879b-d486adc11bd2", + "objectID": "55004c2e-025a-4b43-8244-379f524a5a9e", "type": "lvl3", "url": "/docs/components/tooltip#offset", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Placements", "lvl3": "Offset" } }, { "content": "Controlled", - "objectID": "cc5bd162-6d08-42c0-8ee6-daf36fb1fdf7", + "objectID": "34e6f80d-b41f-44ad-9253-66028a325a41", "type": "lvl3", "url": "/docs/components/tooltip#controlled", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Offset", "lvl3": "Controlled" } }, { "content": "With Delay", - "objectID": "e7ea256a-aea5-45cb-af18-3e642d55d261", + "objectID": "f160a195-4ad9-4ae6-914c-0dc17ccc0345", "type": "lvl3", "url": "/docs/components/tooltip#with-delay", "hierarchy": { @@ -9115,7 +9115,7 @@ }, { "content": "Custom Content", - "objectID": "582506ad-024f-45ea-a307-4cb26f0a7c4d", + "objectID": "b8e985cd-c379-4903-a478-0e6abdbd3789", "type": "lvl3", "url": "/docs/components/tooltip#custom-content", "hierarchy": { @@ -9126,7 +9126,7 @@ }, { "content": "Custom Motion", - "objectID": "1fa2761c-3ca5-4be2-876b-d2d3cda01331", + "objectID": "3341bcea-afdf-4e8d-aab2-58b61f70770b", "type": "lvl3", "url": "/docs/components/tooltip#custom-motion", "hierarchy": { @@ -9137,49 +9137,49 @@ }, { "content": "Slots", - "objectID": "128b0e1a-042c-4a6b-8cc6-8e88a5f592cd", + "objectID": "294ecc2e-3a9e-405e-b2c1-be8bb023ca1e", "type": "lvl2", "url": "/docs/components/tooltip#slots", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Slots", "lvl3": null } }, { "content": "Custom Styles", - "objectID": "2bf59807-4c00-414e-a733-c6768d46ee08", + "objectID": "1067ebe1-2de3-43af-8c2e-046bc067d842", "type": "lvl3", "url": "/docs/components/tooltip#custom-styles", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Slots", "lvl3": "Custom Styles" } }, { "content": "Data Attributes", - "objectID": "cb07bd92-9ac5-4afb-b09e-f7b77ca5c1c2", + "objectID": "e253457d-6f90-4e9d-9575-9e5a0cfb1e24", "type": "lvl2", "url": "/docs/components/tooltip#data-attributes", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "Accessibility", - "objectID": "d941a36e-3a3a-449c-ba63-04665dfb6a64", + "objectID": "e9503464-2ebd-441f-a8ba-31e9323faa90", "type": "lvl2", "url": "/docs/components/tooltip#accessibility", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Accessibility", "lvl3": null } }, { "content": "API", - "objectID": "e88ddbaa-3e0c-4978-9748-72eb3a04f02b", + "objectID": "cd130cff-85a0-4ebb-b7d2-ebc12a5086a3", "type": "lvl2", "url": "/docs/components/tooltip#api", "hierarchy": { "lvl1": "Tooltip", "lvl2": "API", "lvl3": null } }, { "content": "Tooltip Props", - "objectID": "c0ac7a91-0e8b-416b-84ee-e38fd907af99", + "objectID": "376dca4b-62d5-4931-8a1b-15c3886ed518", "type": "lvl3", "url": "/docs/components/tooltip#tooltip-props", "hierarchy": { "lvl1": "Tooltip", "lvl2": "API", "lvl3": "Tooltip Props" } }, { "content": "Tooltip Events", - "objectID": "32ba8bfd-99e8-48ea-ad5f-0bb0ab350828", + "objectID": "f51521a7-a59d-4859-8b32-101d75584f9d", "type": "lvl3", "url": "/docs/components/tooltip#tooltip-events", "hierarchy": { @@ -9190,7 +9190,7 @@ }, { "content": "Tooltip types", - "objectID": "dac40654-d7b0-4a55-b3ed-650597cc85e3", + "objectID": "74521fbc-01e1-4b43-af3a-bd2bde56a028", "type": "lvl3", "url": "/docs/components/tooltip#tooltip-types", "hierarchy": { @@ -9201,14 +9201,14 @@ }, { "content": "Tooltip Placement", - "objectID": "6e8bd165-af1b-430f-a1e7-c69b1f88add6", + "objectID": "61783be2-6a40-4d5e-b239-74688b2c8b69", "type": "lvl4", "url": "/docs/components/tooltip#tooltip-placement", "hierarchy": { "lvl1": "Tooltip", "lvl2": "Tooltip types", "lvl3": null } }, { "content": "Motion Props", - "objectID": "594f7118-209d-4d25-9a13-e2e8c0f8e29d", + "objectID": "1c7d91e8-8595-45f9-bc3b-203b2d0f6a2f", "type": "lvl4", "url": "/docs/components/tooltip#motion-props", "hierarchy": { @@ -9219,84 +9219,84 @@ }, { "content": "User", - "objectID": "e04cc681-beea-43eb-86ed-bf08946d6b41", + "objectID": "dc7ff42a-06ab-4c52-b197-25315f72fa8f", "type": "lvl1", "url": "/docs/components/user", "hierarchy": { "lvl1": "User" } }, { "content": "Installation", - "objectID": "2286e59c-ed32-47c0-b800-41c470c49a64", + "objectID": "a2ae9518-ca57-45b3-8866-1adc11f136ab", "type": "lvl2", "url": "/docs/components/user#installation", "hierarchy": { "lvl1": "User", "lvl2": "Installation", "lvl3": null } }, { "content": "Import", - "objectID": "e6c0ce40-15b1-4c28-8f08-885243b01f2b", + "objectID": "dab75b57-6a3a-45a2-82eb-a1bf30bfea5c", "type": "lvl2", "url": "/docs/components/user#import", "hierarchy": { "lvl1": "User", "lvl2": "Import", "lvl3": null } }, { "content": "Usage", - "objectID": "2cbf6875-8699-4cbf-b616-d81d7494ef72", + "objectID": "5384f41f-eece-4e7c-a44d-9a2baea98adc", "type": "lvl2", "url": "/docs/components/user#usage", "hierarchy": { "lvl1": "User", "lvl2": "Usage", "lvl3": null } }, { "content": "Link Description", - "objectID": "4b732a90-651f-4bfe-b5d1-dcede99e5cc8", + "objectID": "9fb0ef2e-3688-43f6-abec-13bbf77bd69e", "type": "lvl3", "url": "/docs/components/user#link-description", "hierarchy": { "lvl1": "User", "lvl2": "Usage", "lvl3": "Link Description" } }, { "content": "Slots", - "objectID": "f00a6428-1901-4e2c-ae20-6beadbecce87", + "objectID": "9e395f2f-0282-4718-999a-36fd9633d77f", "type": "lvl2", "url": "/docs/components/user#slots", "hierarchy": { "lvl1": "User", "lvl2": "Slots", "lvl3": null } }, { "content": "Data Attributes", - "objectID": "3ee5b8ad-2b80-4b6b-a6f6-3528c53e5e39", + "objectID": "b6d591a1-1643-49de-a925-4963308ec304", "type": "lvl2", "url": "/docs/components/user#data-attributes", "hierarchy": { "lvl1": "User", "lvl2": "Data Attributes", "lvl3": null } }, { "content": "API", - "objectID": "95c747e5-0d44-45c4-946a-1b231f2ecc45", + "objectID": "f8464365-9163-4480-840c-3e118f083bac", "type": "lvl2", "url": "/docs/components/user#api", "hierarchy": { "lvl1": "User", "lvl2": "API", "lvl3": null } }, { "content": "User Props", - "objectID": "2907eeb4-13b4-4abe-9007-f6000ef25454", + "objectID": "dcec19cf-9f04-45c4-a42a-203363d8a45e", "type": "lvl3", "url": "/docs/components/user#user-props", "hierarchy": { "lvl1": "User", "lvl2": "API", "lvl3": "User Props" } }, { "content": "Colors", - "objectID": "8a3c793f-1047-4793-83d6-c920cecfcba1", + "objectID": "dc5f7af3-1547-412d-a58b-3acd408f841e", "type": "lvl1", "url": "/docs/customization/colors", "hierarchy": { "lvl1": "Colors" } }, { "content": "Default Colors", - "objectID": "1baae163-9e77-45bd-9a58-752aea95229b", + "objectID": "585546a0-cb53-4cf9-b48b-f65cc9f203a9", "type": "lvl2", "url": "/docs/customization/colors#default-colors", "hierarchy": { "lvl1": "Colors", "lvl2": "Default Colors", "lvl3": null } }, { "content": "Common Colors", - "objectID": "67f3f971-fd53-46a1-9c7a-2272187bdbb0", + "objectID": "75d21340-203a-4713-920c-c63a6d29b4b4", "type": "lvl3", "url": "/docs/customization/colors#common-colors", "hierarchy": { @@ -9307,7 +9307,7 @@ }, { "content": "Semantic Colors", - "objectID": "9381936d-4338-4ca5-a9d0-4ad42f1d692a", + "objectID": "377a6ee4-2086-458e-b728-3c0b3420050c", "type": "lvl3", "url": "/docs/customization/colors#semantic-colors", "hierarchy": { @@ -9318,7 +9318,7 @@ }, { "content": "Using Semantic Colors", - "objectID": "bcaa1105-723e-45e0-8611-3792f7fe2d9e", + "objectID": "9b8b74f9-6424-4902-b267-d905dfda1a2d", "type": "lvl3", "url": "/docs/customization/colors#using-semantic-colors", "hierarchy": { @@ -9329,7 +9329,7 @@ }, { "content": "Javascript Variables", - "objectID": "a96313dd-12e6-464e-b6c5-1d11a944e74c", + "objectID": "809b0cb6-0759-4e62-bfe0-c9cc12906e33", "type": "lvl3", "url": "/docs/customization/colors#javascript-variables", "hierarchy": { @@ -9340,7 +9340,7 @@ }, { "content": "CSS Variables", - "objectID": "30a6eeb1-b37a-4bdd-a6cf-4ca981433a83", + "objectID": "e6651647-1784-45e5-a171-836ff7e709bf", "type": "lvl3", "url": "/docs/customization/colors#css-variables", "hierarchy": { @@ -9351,14 +9351,14 @@ }, { "content": "Create theme", - "objectID": "3cc4cfdd-b7d9-4c12-96e2-eee3e4c921f9", + "objectID": "d1ae4c9e-58b6-4b8e-b5b0-8645905426af", "type": "lvl1", "url": "/docs/customization/create-theme", "hierarchy": { "lvl1": "Create theme" } }, { "content": "Add the new theme to the plugin", - "objectID": "35e1f9b8-386a-49cd-9dde-d865a857ca74", + "objectID": "305c84f8-c88f-4f1a-931d-31ff408d4fba", "type": "lvl3", "url": "/docs/customization/create-theme#add-the-new-theme-to-the-plugin", "hierarchy": { @@ -9369,7 +9369,7 @@ }, { "content": "Apply the new theme", - "objectID": "817458b9-139a-46ff-8b90-d5a5374a1338", + "objectID": "e660664c-92ac-4b66-9573-ae3be22ba215", "type": "lvl3", "url": "/docs/customization/create-theme#apply-the-new-theme", "hierarchy": { @@ -9380,7 +9380,7 @@ }, { "content": "Use the new theme", - "objectID": "f8969efc-0854-4fab-bf66-cd2e578c57ab", + "objectID": "08c35d43-a4b6-4897-b80b-ab9292271592", "type": "lvl3", "url": "/docs/customization/create-theme#use-the-new-theme", "hierarchy": { @@ -9391,14 +9391,14 @@ }, { "content": "Custom Variants", - "objectID": "7f519bfb-35ee-4a2b-a482-abde0ab91dd8", + "objectID": "ce7f8aae-f463-4b4b-944a-d4d7648fa4f5", "type": "lvl1", "url": "/docs/customization/custom-variants", "hierarchy": { "lvl1": "Custom Variants" } }, { "content": "Creating new variants for non-slots components", - "objectID": "b4bb3f25-8238-4cac-ae46-c3d5719479ed", + "objectID": "3f6141ac-5900-43b7-bd51-408466bb68f8", "type": "lvl2", "url": "/docs/customization/custom-variants#creating-new-variants-for-non-slots-components", "hierarchy": { @@ -9409,7 +9409,7 @@ }, { "content": "Extend the original component variants", - "objectID": "c72858f7-b88f-47cf-a30b-6e844338522d", + "objectID": "ee99c484-98a2-43e0-812d-e45f371ae077", "type": "lvl3", "url": "/docs/customization/custom-variants#extend-the-original-component-variants", "hierarchy": { @@ -9420,7 +9420,7 @@ }, { "content": "Use your custom component in your application", - "objectID": "607e1162-83c3-4c5f-894a-a0fa6d74aed4", + "objectID": "d1dda4b1-b79e-4900-af36-f26c3a8970d2", "type": "lvl3", "url": "/docs/customization/custom-variants#use-your-custom-component-in-your-application", "hierarchy": { @@ -9431,7 +9431,7 @@ }, { "content": "Creating new variants for slots components", - "objectID": "4e3120ab-c970-4d04-b3be-07e451550ec5", + "objectID": "4eb4623e-6a8f-4987-ab43-0caea4b8e019", "type": "lvl2", "url": "/docs/customization/custom-variants#creating-new-variants-for-slots-components", "hierarchy": { @@ -9442,7 +9442,7 @@ }, { "content": "Extend the original component variants", - "objectID": "bdadff92-b16b-4548-bfe3-e5f9449136a8", + "objectID": "ad230367-c387-47dc-b66a-6801f0c9febc", "type": "lvl3", "url": "/docs/customization/custom-variants#extend-the-original-component-variants-1", "hierarchy": { @@ -9453,7 +9453,7 @@ }, { "content": "Use your custom component in your application", - "objectID": "3fbbee67-f1f3-49b7-9312-ed1a54457a90", + "objectID": "caa6588e-369a-4424-baad-fb8bf23b9b9d", "type": "lvl3", "url": "/docs/customization/custom-variants#use-your-custom-component-in-your-application-1", "hierarchy": { @@ -9464,7 +9464,7 @@ }, { "content": "Types", - "objectID": "7f39afbd-cd91-4f0d-9fac-b7a2806ebdf9", + "objectID": "892a8159-c015-40e0-8645-d0b5c6b38173", "type": "lvl3", "url": "/docs/customization/custom-variants#types", "hierarchy": { @@ -9475,7 +9475,7 @@ }, { "content": "Main Function", - "objectID": "fda33a3e-874b-4dfa-98fd-b9418e2dd9cd", + "objectID": "205aebab-0b16-4bc0-952e-ec7ddbdcda61", "type": "lvl3", "url": "/docs/customization/custom-variants#main-function", "hierarchy": { @@ -9486,7 +9486,7 @@ }, { "content": "Options", - "objectID": "1a518f09-c9d1-43db-9911-698dd54ac690", + "objectID": "6db009d3-a417-4805-b647-c237a3c1041c", "type": "lvl3", "url": "/docs/customization/custom-variants#options", "hierarchy": { @@ -9497,7 +9497,7 @@ }, { "content": "Config", - "objectID": "f589dfed-1c35-4ba3-929f-825acda68f11", + "objectID": "363d42cb-231d-406d-a3fe-f0f57cde88c1", "type": "lvl3", "url": "/docs/customization/custom-variants#config", "hierarchy": { @@ -9508,14 +9508,14 @@ }, { "content": "Customize theme", - "objectID": "b6832733-f680-4519-8305-1d052cf5aaca", + "objectID": "94a01752-ab64-43e9-b002-b10c932d07e6", "type": "lvl1", "url": "/docs/customization/customize-theme", "hierarchy": { "lvl1": "Customize theme" } }, { "content": "Customizing Layout", - "objectID": "d4464e48-45ed-41b3-b5f1-715dce661883", + "objectID": "fc93c8e0-a6e3-4317-8e91-41b86e4d5705", "type": "lvl2", "url": "/docs/customization/customize-theme#customizing-layout", "hierarchy": { @@ -9526,7 +9526,7 @@ }, { "content": "Global Layout Customization", - "objectID": "c9de2e8e-ab49-4c90-a468-317dcc7e0eb5", + "objectID": "4a797faf-9399-4ddd-8b59-49c3c4ab9595", "type": "lvl3", "url": "/docs/customization/customize-theme#global-layout-customization", "hierarchy": { @@ -9537,7 +9537,7 @@ }, { "content": "Customizing Colors", - "objectID": "0577544b-4856-485d-8a44-0409edb8a644", + "objectID": "f1b7c537-5a3e-424f-a51f-778a7504bfa4", "type": "lvl3", "url": "/docs/customization/customize-theme#customizing-colors", "hierarchy": { @@ -9548,14 +9548,14 @@ }, { "content": "Dark mode", - "objectID": "0a594b47-367f-4a07-a127-658d6322a321", + "objectID": "28305611-d488-4b5d-b8be-5d9e50bb1255", "type": "lvl1", "url": "/docs/customization/dark-mode", "hierarchy": { "lvl1": "Dark mode" } }, { "content": "Using next-themes", - "objectID": "7acf09da-e21d-4551-8148-436b16a9b753", + "objectID": "db4bf331-00ae-4ff3-b33f-fb425474919d", "type": "lvl2", "url": "/docs/customization/dark-mode#using-next-themes", "hierarchy": { @@ -9566,7 +9566,7 @@ }, { "content": "Next.js App Directory Setup", - "objectID": "22c6cd25-b845-441d-b4c2-fc576c17f1c2", + "objectID": "dd2ce926-a047-493a-8f39-ce8627d23409", "type": "lvl3", "url": "/docs/customization/dark-mode#nextjs-app-directory-setup", "hierarchy": { @@ -9577,7 +9577,7 @@ }, { "content": "Install next-themes", - "objectID": "2292047e-cd93-4fad-84d5-3d42dbd8083a", + "objectID": "3089f51e-5477-40f7-858d-949086ea71ab", "type": "lvl3", "url": "/docs/customization/dark-mode#install-next-themes", "hierarchy": { @@ -9588,7 +9588,7 @@ }, { "content": "Add next-themes provider", - "objectID": "859c8b3e-61cf-4f8c-a5da-a3af1c8c3c92", + "objectID": "47e4609e-6795-42df-8012-f6a2e9188653", "type": "lvl3", "url": "/docs/customization/dark-mode#add-next-themes-provider", "hierarchy": { @@ -9599,7 +9599,7 @@ }, { "content": "Add the theme switcher", - "objectID": "d005317a-ca2d-4249-bb6b-778399283ccc", + "objectID": "7fa8735a-f375-409d-b24e-068495dc541d", "type": "lvl3", "url": "/docs/customization/dark-mode#add-the-theme-switcher", "hierarchy": { @@ -9610,7 +9610,7 @@ }, { "content": "Next.js Pages Directory Setup", - "objectID": "8c230538-90bd-44dd-b3e6-34e59361c09d", + "objectID": "2f72bc56-635e-4003-acd2-75e524ce067d", "type": "lvl3", "url": "/docs/customization/dark-mode#nextjs-pages-directory-setup", "hierarchy": { @@ -9621,7 +9621,7 @@ }, { "content": "Install next-themes", - "objectID": "bafecc6c-61f4-42d4-92ce-a7fc174cec09", + "objectID": "c2065396-36ed-4e67-9b96-bace79189b5d", "type": "lvl3", "url": "/docs/customization/dark-mode#install-next-themes-1", "hierarchy": { @@ -9632,7 +9632,7 @@ }, { "content": "Add next-themes provider", - "objectID": "8be4341d-5149-427e-a1c3-41230eb1cde0", + "objectID": "2b43c165-bc04-4f4e-bca7-1c8d683ae2d8", "type": "lvl3", "url": "/docs/customization/dark-mode#add-next-themes-provider-1", "hierarchy": { @@ -9643,7 +9643,7 @@ }, { "content": "Add the theme switcher", - "objectID": "e7befc6c-04f6-48c0-b79c-5f1de8062a23", + "objectID": "3a67d15a-f069-4b21-95c6-f8b8e9232955", "type": "lvl3", "url": "/docs/customization/dark-mode#add-the-theme-switcher-1", "hierarchy": { @@ -9654,7 +9654,7 @@ }, { "content": "Using use-theme hook", - "objectID": "acc4cd8d-2dd5-4708-a09f-3c210baa4ca6", + "objectID": "bba9891f-09d8-4016-9ee2-758e68772102", "type": "lvl2", "url": "/docs/customization/dark-mode#using-use-theme-hook", "hierarchy": { @@ -9665,7 +9665,7 @@ }, { "content": "Install @nextui-org/use-theme", - "objectID": "86930da7-5dc1-46b4-8420-5709e5b0e2c0", + "objectID": "db94bbb6-1945-4abe-b8c3-1669bffccbbc", "type": "lvl3", "url": "/docs/customization/dark-mode#install-nextui-orguse-theme", "hierarchy": { @@ -9676,7 +9676,7 @@ }, { "content": "Add the current theme to the main element", - "objectID": "7f72e6b1-99bb-46cd-aa6a-f30b629850ad", + "objectID": "8eded558-b0e4-4c23-9aa3-9758a329d726", "type": "lvl3", "url": "/docs/customization/dark-mode#add-the-current-theme-to-the-main-element", "hierarchy": { @@ -9687,7 +9687,7 @@ }, { "content": "Add the theme switcher", - "objectID": "61df2187-4cb3-4ff9-a4b2-7ed93f3fbeb0", + "objectID": "c2197380-fdea-44c2-b779-5d36bcbc3ed0", "type": "lvl3", "url": "/docs/customization/dark-mode#add-the-theme-switcher-2", "hierarchy": { @@ -9698,21 +9698,21 @@ }, { "content": "Layout", - "objectID": "e1bdb7f0-4a68-4820-b448-37e6cab2ac7a", + "objectID": "0d4074dc-a32f-4e17-9bdc-ba54a6753c8f", "type": "lvl1", "url": "/docs/customization/layout", "hierarchy": { "lvl1": "Layout" } }, { "content": "Default Layout", - "objectID": "fc6cc7bc-de7d-48ed-87b4-8bbd2e3623e5", + "objectID": "af66a0c0-7b35-4cbd-b574-9bd751de8edf", "type": "lvl2", "url": "/docs/customization/layout#default-layout", "hierarchy": { "lvl1": "Layout", "lvl2": "Default Layout", "lvl3": null } }, { "content": "CSS Variables", - "objectID": "20c68bce-813e-4783-9f43-6f5c41b84f79", + "objectID": "92d009b0-f256-4ccb-b9a7-0d0220a68b70", "type": "lvl3", "url": "/docs/customization/layout#css-variables", "hierarchy": { @@ -9723,35 +9723,35 @@ }, { "content": "API Reference", - "objectID": "7aca8c2d-1804-491f-809f-75f723caa5f8", + "objectID": "525ed382-bc0d-4e7d-bcc0-b56f4a51a2bf", "type": "lvl4", "url": "/docs/customization/layout#api-reference", "hierarchy": { "lvl1": "Layout", "lvl2": "CSS Variables", "lvl3": null } }, { "content": "BaseThemeUnit", - "objectID": "63679f99-7185-4d87-a499-605552820517", + "objectID": "71be840b-3915-4936-bb23-9f2ccb674ae9", "type": "lvl4", "url": "/docs/customization/layout#basethemeunit", "hierarchy": { "lvl1": "Layout", "lvl2": "API Reference", "lvl3": null } }, { "content": "FontThemeUnit", - "objectID": "61948a9c-1046-4318-a479-6f9c39efcae8", + "objectID": "31b54270-c8e0-40f1-b32e-870cbfb7c1fc", "type": "lvl4", "url": "/docs/customization/layout#fontthemeunit", "hierarchy": { "lvl1": "Layout", "lvl2": "BaseThemeUnit", "lvl3": null } }, { "content": "Override styles", - "objectID": "8c93cdd5-140e-4239-8e85-04465a8ca94b", + "objectID": "6c44d533-b85c-48bf-9b9f-e6f01d2f6a1e", "type": "lvl1", "url": "/docs/customization/override-styles", "hierarchy": { "lvl1": "Override styles" } }, { "content": "What is a Slot?", - "objectID": "701f1f77-8a15-4bc3-9450-c7c0cdd01818", + "objectID": "86bfd9dd-ee5d-4422-92fc-b9cdd3224f38", "type": "lvl3", "url": "/docs/customization/override-styles#what-is-a-slot", "hierarchy": { @@ -9762,7 +9762,7 @@ }, { "content": "Overriding a component", - "objectID": "602b9f6a-b185-4f4c-bbb9-077526ed4c5b", + "objectID": "029fc72b-dc96-49ed-bce7-f617ed0ffcc0", "type": "lvl3", "url": "/docs/customization/override-styles#overriding-a-component", "hierarchy": { @@ -9773,7 +9773,7 @@ }, { "content": "Components with slots", - "objectID": "b32ee00b-9d84-4e46-926a-1557b8b5c525", + "objectID": "c8f74b95-8123-455d-83ad-b1aabfc971d4", "type": "lvl3", "url": "/docs/customization/override-styles#components-with-slots", "hierarchy": { @@ -9784,7 +9784,7 @@ }, { "content": "CSS Modules", - "objectID": "be716ddb-fed5-48a4-9e31-e55812c4a430", + "objectID": "8d35d9c1-698a-4867-ab14-c0cc5b42af57", "type": "lvl3", "url": "/docs/customization/override-styles#css-modules", "hierarchy": { @@ -9795,7 +9795,7 @@ }, { "content": "CSS-in-JS", - "objectID": "2593af52-add4-4416-956f-41e45a9601c0", + "objectID": "8a1ab774-3d2c-4f33-b35d-943fd8cc3733", "type": "lvl3", "url": "/docs/customization/override-styles#css-in-js", "hierarchy": { @@ -9806,35 +9806,35 @@ }, { "content": "Theme", - "objectID": "2b5c99f8-bec9-48b8-91a3-8318cf820b74", + "objectID": "72bfd76b-2193-4331-a677-d31c7a70b461", "type": "lvl1", "url": "/docs/customization/theme", "hierarchy": { "lvl1": "Theme" } }, { "content": "What is a Theme?", - "objectID": "f6c48629-4a22-4ef2-b60d-97cec75a17b2", + "objectID": "28fbb554-03e2-4d62-b225-bdb38d792ec7", "type": "lvl2", "url": "/docs/customization/theme#what-is-a-theme", "hierarchy": { "lvl1": "Theme", "lvl2": "What is a Theme?", "lvl3": null } }, { "content": "Setup", - "objectID": "2afd5f71-ec89-43da-938f-1b9f3d91c241", + "objectID": "589e113b-f8ec-46a5-83e3-7868f32dbb3f", "type": "lvl2", "url": "/docs/customization/theme#setup", "hierarchy": { "lvl1": "Theme", "lvl2": "Setup", "lvl3": null } }, { "content": "Usage", - "objectID": "66d02bc2-44bd-427b-9cb7-737b07feee34", + "objectID": "98e4b872-b4af-4b10-aecf-66c0c06e7f5a", "type": "lvl3", "url": "/docs/customization/theme#usage", "hierarchy": { "lvl1": "Theme", "lvl2": "Setup", "lvl3": "Usage" } }, { "content": "Default Plugin Options", - "objectID": "ce70c0df-0fd7-4648-a5c7-9ec68598b882", + "objectID": "ca1400d3-c06c-47cb-8490-d2b7ac8891d8", "type": "lvl3", "url": "/docs/customization/theme#default-plugin-options", "hierarchy": { @@ -9845,7 +9845,7 @@ }, { "content": "Themes Options", - "objectID": "d6688334-2f00-438e-bdb7-441d3f819621", + "objectID": "23a90d5c-0f7e-44ad-986d-490e210baa3a", "type": "lvl3", "url": "/docs/customization/theme#themes-options", "hierarchy": { @@ -9856,7 +9856,7 @@ }, { "content": "Nested themes", - "objectID": "e799f7e0-f89d-4a0b-91d1-465dd4b2bb2d", + "objectID": "09c1ee6b-f86b-4b0d-976b-a26b638e4099", "type": "lvl3", "url": "/docs/customization/theme#nested-themes", "hierarchy": { @@ -9867,7 +9867,7 @@ }, { "content": "Theme based variants", - "objectID": "593ff52e-3296-455d-9963-4d9108922598", + "objectID": "1b08882d-df65-442c-9998-95f3adfd5364", "type": "lvl3", "url": "/docs/customization/theme#theme-based-variants", "hierarchy": { @@ -9878,7 +9878,7 @@ }, { "content": "API Reference", - "objectID": "38db41fa-2545-4f29-a233-d493b3988657", + "objectID": "b495bf6d-42d4-4437-aeae-647d50efdc89", "type": "lvl3", "url": "/docs/customization/theme#api-reference", "hierarchy": { @@ -9889,49 +9889,49 @@ }, { "content": "Types", - "objectID": "88db6144-629c-4d81-b076-d93d7395c392", + "objectID": "328472ee-cb35-4a94-8864-8d0105dafb56", "type": "lvl3", "url": "/docs/customization/theme#types", "hierarchy": { "lvl1": "Theme", "lvl2": "API Reference", "lvl3": "Types" } }, { "content": "ConfigThemes", - "objectID": "8fd9e230-69c2-4c03-9c15-b0047d284d20", + "objectID": "05595e8b-d2ee-49a4-937c-33ea820ca113", "type": "lvl4", "url": "/docs/customization/theme#configthemes", "hierarchy": { "lvl1": "Theme", "lvl2": "Types", "lvl3": null } }, { "content": "LayoutTheme", - "objectID": "102ac800-7fb5-420f-b938-8cd6b40c96d5", + "objectID": "a7f9bf97-0ef6-489c-9dfc-609932fca0bd", "type": "lvl4", "url": "/docs/customization/theme#layouttheme", "hierarchy": { "lvl1": "Theme", "lvl2": "ConfigThemes", "lvl3": null } }, { "content": "ThemeColors", - "objectID": "226e338c-fb58-41f0-93f6-d5505227ed0d", + "objectID": "4f3aac71-f8be-41c3-a0cf-a7b19e30f53b", "type": "lvl4", "url": "/docs/customization/theme#themecolors", "hierarchy": { "lvl1": "Theme", "lvl2": "LayoutTheme", "lvl3": null } }, { "content": "Astro", - "objectID": "af6b286c-96e0-4804-8f54-7dde2d14e054", + "objectID": "87437207-e982-4d56-a75f-ee93c0c62cab", "type": "lvl1", "url": "/docs/frameworks/astro", "hierarchy": { "lvl1": "Astro" } }, { "content": "Install React", - "objectID": "d94723de-be61-4e91-b71f-6e9e424f8e5a", + "objectID": "c60dc80a-1f2b-4c33-a820-f1cf4d171a73", "type": "lvl3", "url": "/docs/frameworks/astro#install-react", "hierarchy": { "lvl1": "Astro", "lvl2": "Astro", "lvl3": "Install React" } }, { "content": "Install NextUI", - "objectID": "b201a861-612e-4eb2-abe7-46ce9719e501", + "objectID": "84bfa562-a453-44ac-8aec-4edd7152a126", "type": "lvl3", "url": "/docs/frameworks/astro#install-nextui", "hierarchy": { @@ -9942,7 +9942,7 @@ }, { "content": "Hoisted Dependencies Setup", - "objectID": "a8fac643-38fe-4a57-aa5d-6dc593bfdc6f", + "objectID": "c762cbde-834f-408a-aeea-cbaf6135ba18", "type": "lvl3", "url": "/docs/frameworks/astro#hoisted-dependencies-setup", "hierarchy": { @@ -9953,7 +9953,7 @@ }, { "content": "Tailwind CSS Setup", - "objectID": "78e8c83a-dc44-4157-bc0e-74f4c42c5037", + "objectID": "e6d9e5f3-f5ae-4e05-8c0e-efc7fe04c8be", "type": "lvl3", "url": "/docs/frameworks/astro#tailwind-css-setup", "hierarchy": { @@ -9964,7 +9964,7 @@ }, { "content": "Usage", - "objectID": "60b9301d-ce0a-44b8-a51d-04877813bbbc", + "objectID": "03d2cc75-eb40-4957-b9e1-878d80f31eb3", "type": "lvl3", "url": "/docs/frameworks/astro#usage", "hierarchy": { @@ -9975,14 +9975,14 @@ }, { "content": "Next.js", - "objectID": "64ccddba-9490-4edb-80cd-2ffbd1296027", + "objectID": "d61d5a75-9682-426b-8bbf-6a8afec41544", "type": "lvl1", "url": "/docs/frameworks/nextjs", "hierarchy": { "lvl1": "Next.js" } }, { "content": "App Directory Setup", - "objectID": "bfd01c78-d912-44e8-b8f0-680bd133c06f", + "objectID": "1c148d4c-3c75-4307-a235-2f0c2a9a2140", "type": "lvl2", "url": "/docs/frameworks/nextjs#app-directory-setup", "hierarchy": { @@ -9993,7 +9993,7 @@ }, { "content": "NextUI CLI (recommended)", - "objectID": "4d0bbb8d-9316-44c2-acd7-0f70c4aa0fad", + "objectID": "47048aea-eba2-48b5-84ed-563c3b296d7a", "type": "lvl3", "url": "/docs/frameworks/nextjs#nextui-cli-recommended", "hierarchy": { @@ -10004,7 +10004,7 @@ }, { "content": "create-next-app", - "objectID": "e1941e22-0f8c-4b22-9e36-4bfdbf90bbed", + "objectID": "c13edd37-17fb-4175-9392-90bd012f5c5a", "type": "lvl3", "url": "/docs/frameworks/nextjs#create-next-app", "hierarchy": { @@ -10015,7 +10015,7 @@ }, { "content": "Automatic Installation", - "objectID": "c253b4fa-729d-4566-a277-b7b2ffca2d36", + "objectID": "cd1d239b-5d4c-4452-85df-d1c674cf5644", "type": "lvl3", "url": "/docs/frameworks/nextjs#automatic-installation", "hierarchy": { @@ -10026,7 +10026,7 @@ }, { "content": "Manual Installation", - "objectID": "11e085aa-f9a5-4f06-8bf3-47a0a70006b4", + "objectID": "e4e59d3f-ebb9-4905-b80e-4946ceb8b793", "type": "lvl3", "url": "/docs/frameworks/nextjs#manual-installation", "hierarchy": { @@ -10037,7 +10037,7 @@ }, { "content": "Add dependencies", - "objectID": "5294a07b-42ad-46c4-9117-e57d9a936c48", + "objectID": "0f64fcf2-6e1a-4461-82b3-c2b8dd8b29de", "type": "lvl3", "url": "/docs/frameworks/nextjs#add-dependencies", "hierarchy": { @@ -10048,7 +10048,7 @@ }, { "content": "Hoisted Dependencies Setup", - "objectID": "bf65cd6f-e632-426b-b2ee-1669abf1de31", + "objectID": "3f423717-e66e-4d8e-bcbc-9ed947125eb2", "type": "lvl3", "url": "/docs/frameworks/nextjs#hoisted-dependencies-setup", "hierarchy": { @@ -10059,7 +10059,7 @@ }, { "content": "Tailwind CSS Setup", - "objectID": "99d1b101-f431-4c82-a6fa-d2b63f1987e5", + "objectID": "96ed1c74-9552-4c22-8cc9-b9d3fd4877e6", "type": "lvl3", "url": "/docs/frameworks/nextjs#tailwind-css-setup", "hierarchy": { @@ -10070,7 +10070,7 @@ }, { "content": "Setup Provider", - "objectID": "e9febe10-c4a0-4ebb-bbd4-9599c2efca52", + "objectID": "c4c19221-07d3-41cb-a013-e5b8114fd310", "type": "lvl3", "url": "/docs/frameworks/nextjs#setup-provider", "hierarchy": { @@ -10081,7 +10081,7 @@ }, { "content": "Add Provider to Root", - "objectID": "70b4e227-69dd-4d4b-a479-97b7d75b59eb", + "objectID": "02d83fc0-3d14-4704-90eb-ad5a8af978d4", "type": "lvl3", "url": "/docs/frameworks/nextjs#add-provider-to-root", "hierarchy": { @@ -10092,7 +10092,7 @@ }, { "content": "Use NextUI Components", - "objectID": "7c3e42f8-b8c0-4e49-8e63-b95c97ce9228", + "objectID": "cc2667b0-a7ff-481b-b3c2-864d9712f29e", "type": "lvl3", "url": "/docs/frameworks/nextjs#use-nextui-components", "hierarchy": { @@ -10103,7 +10103,7 @@ }, { "content": "Pages Directory Setup", - "objectID": "81d4ceed-6f7e-4d32-affe-c90dedafe328", + "objectID": "00724efb-c3dd-409a-a56e-274c2a5b7d90", "type": "lvl2", "url": "/docs/frameworks/nextjs#pages-directory-setup", "hierarchy": { @@ -10114,7 +10114,7 @@ }, { "content": "NextUI CLI (recommended)", - "objectID": "0115a6f4-c6e0-47fa-b182-bfd648234cdd", + "objectID": "dd084b60-0c8f-460f-b88c-d2adaa7f8d0d", "type": "lvl3", "url": "/docs/frameworks/nextjs#nextui-cli-recommended-1", "hierarchy": { @@ -10125,7 +10125,7 @@ }, { "content": "create-next-app", - "objectID": "e481e272-5094-4043-bab1-2bef151812d9", + "objectID": "e6f84468-f5d6-4a30-9679-7b6da87ae263", "type": "lvl3", "url": "/docs/frameworks/nextjs#create-next-app-1", "hierarchy": { @@ -10136,7 +10136,7 @@ }, { "content": "Automatic Installation", - "objectID": "cb8e654b-49c4-4c83-bb1c-e422eee86ccb", + "objectID": "4cd83484-777f-4253-b032-987ec833fb8b", "type": "lvl3", "url": "/docs/frameworks/nextjs#automatic-installation-1", "hierarchy": { @@ -10147,7 +10147,7 @@ }, { "content": "Manual Installation", - "objectID": "9b30d8ca-f758-4a6c-afd9-edfd67836e2a", + "objectID": "9ca34b3a-787b-4254-b270-7f9ab0b64c25", "type": "lvl3", "url": "/docs/frameworks/nextjs#manual-installation-1", "hierarchy": { @@ -10158,7 +10158,7 @@ }, { "content": "Add dependencies", - "objectID": "dd9baaa3-130b-4857-8b6e-6a101a9f4e3c", + "objectID": "28b87b3b-d8df-4ad5-8ea2-79c781d54a36", "type": "lvl3", "url": "/docs/frameworks/nextjs#add-dependencies-1", "hierarchy": { @@ -10169,7 +10169,7 @@ }, { "content": "Hoisted Dependencies Setup", - "objectID": "f380a6ce-ccf6-4dbb-9843-9622115dfe99", + "objectID": "ee7af8f1-d575-4dda-82ce-f714ebe559c8", "type": "lvl3", "url": "/docs/frameworks/nextjs#hoisted-dependencies-setup-1", "hierarchy": { @@ -10180,7 +10180,7 @@ }, { "content": "Tailwind CSS Setup", - "objectID": "f2399a3d-353b-4efa-827c-cab4fd372f9c", + "objectID": "41930d20-2e4f-4b8f-9fa2-b937debcb7a1", "type": "lvl3", "url": "/docs/frameworks/nextjs#tailwind-css-setup-1", "hierarchy": { @@ -10191,7 +10191,7 @@ }, { "content": "Setup Provider", - "objectID": "c89afa40-4427-475c-b1f2-883a8e744cbc", + "objectID": "accf37e8-2af8-48da-9e31-ac28263300de", "type": "lvl3", "url": "/docs/frameworks/nextjs#setup-provider-1", "hierarchy": { @@ -10202,7 +10202,7 @@ }, { "content": "Use NextUI Components", - "objectID": "6b35121d-e816-48d4-9906-a50bda0ccf88", + "objectID": "cf86ded6-1d23-4ed0-99bc-dcfff4b5e26d", "type": "lvl3", "url": "/docs/frameworks/nextjs#use-nextui-components-1", "hierarchy": { @@ -10213,21 +10213,21 @@ }, { "content": "Remix", - "objectID": "5aaafc0a-118e-4274-aafd-ab99d304b368", + "objectID": "d1a32e55-afe4-445f-ab66-465c06605200", "type": "lvl1", "url": "/docs/frameworks/remix", "hierarchy": { "lvl1": "Remix" } }, { "content": "Installation", - "objectID": "5d820d18-c33a-4b90-9b4b-c5645f4b5c71", + "objectID": "8db24e4e-3fa9-43b4-8e6f-481a05c5f7b2", "type": "lvl3", "url": "/docs/frameworks/remix#installation", "hierarchy": { "lvl1": "Remix", "lvl2": "Remix", "lvl3": "Installation" } }, { "content": "Hoisted Dependencies Setup", - "objectID": "b819b409-7093-4ae1-95e6-ff058adaa250", + "objectID": "d5bfb0c6-fd23-4dad-acad-1c947986823d", "type": "lvl3", "url": "/docs/frameworks/remix#hoisted-dependencies-setup", "hierarchy": { @@ -10238,7 +10238,7 @@ }, { "content": "Tailwind CSS Setup", - "objectID": "cabb4b12-0825-4419-9d1e-909e64c430ba", + "objectID": "85f6f4ea-cf5e-4b0f-b62c-02260d26bc27", "type": "lvl3", "url": "/docs/frameworks/remix#tailwind-css-setup", "hierarchy": { @@ -10249,7 +10249,7 @@ }, { "content": "Provider Setup", - "objectID": "b5eddeb4-573f-413f-9f79-b1e53109d46b", + "objectID": "7155fc0a-73ec-4095-bc64-a1f103344c95", "type": "lvl3", "url": "/docs/frameworks/remix#provider-setup", "hierarchy": { @@ -10260,21 +10260,21 @@ }, { "content": "Vite", - "objectID": "35b0b277-f8e7-4360-8895-d674b77e4e4c", + "objectID": "d93cca98-0b14-420a-99f1-676c4bc9e7d6", "type": "lvl1", "url": "/docs/frameworks/vite", "hierarchy": { "lvl1": "Vite" } }, { "content": "Installation", - "objectID": "51ed8169-0577-41d7-b655-8932b9a63f68", + "objectID": "21af62ad-a1b7-42be-94e5-29b6aaafe700", "type": "lvl3", "url": "/docs/frameworks/vite#installation", "hierarchy": { "lvl1": "Vite", "lvl2": "Vite", "lvl3": "Installation" } }, { "content": "Hoisted Dependencies Setup", - "objectID": "1a616db0-9716-47e9-85e4-f4c05b012125", + "objectID": "1d3cdcc3-bc2d-4eb4-8a91-8f1acd91d6af", "type": "lvl3", "url": "/docs/frameworks/vite#hoisted-dependencies-setup", "hierarchy": { @@ -10285,7 +10285,7 @@ }, { "content": "Tailwind CSS Setup", - "objectID": "6e731fb1-1f9b-4523-863b-59504668e4e4", + "objectID": "ee3c9744-4492-4059-943f-84924f6d1c57", "type": "lvl3", "url": "/docs/frameworks/vite#tailwind-css-setup", "hierarchy": { @@ -10296,7 +10296,7 @@ }, { "content": "Provider Setup", - "objectID": "09b47051-dbcc-40a2-896d-33eb4ff3daad", + "objectID": "24ef67f1-01e4-46e4-bbbf-c6b6d92c7b9e", "type": "lvl3", "url": "/docs/frameworks/vite#provider-setup", "hierarchy": { @@ -10307,21 +10307,21 @@ }, { "content": "CLI", - "objectID": "ce118d44-19db-45ef-a06a-e67e65aa59ec", + "objectID": "70bec007-e74c-4424-bc26-8cddb65a91ca", "type": "lvl1", "url": "/docs/guide/cli", "hierarchy": { "lvl1": "CLI" } }, { "content": "Installation", - "objectID": "45e09a11-5648-4ced-96ab-a32892de22b6", + "objectID": "a53b65fd-8816-4845-843a-3605ca927c1d", "type": "lvl2", "url": "/docs/guide/cli#installation", "hierarchy": { "lvl1": "CLI", "lvl2": "Installation", "lvl3": null } }, { "content": "Global Installation", - "objectID": "8a76cfd3-0cdb-4731-89d7-6fcada4e8dc7", + "objectID": "f942e878-96d2-4eee-93c3-4d54e481480d", "type": "lvl3", "url": "/docs/guide/cli#global-installation", "hierarchy": { @@ -10332,7 +10332,7 @@ }, { "content": "Without Installation", - "objectID": "40ba2ff3-e02a-494c-b745-f89405f632eb", + "objectID": "7211ad4f-ae7a-43db-8fd4-c617caa11773", "type": "lvl3", "url": "/docs/guide/cli#without-installation", "hierarchy": { @@ -10343,77 +10343,77 @@ }, { "content": "Quick Start", - "objectID": "17d16543-c130-4bfb-8435-9634646512f8", + "objectID": "4b5b81c5-bed0-45b6-8a5e-adb0e77e961c", "type": "lvl2", "url": "/docs/guide/cli#quick-start", "hierarchy": { "lvl1": "CLI", "lvl2": "Quick Start", "lvl3": null } }, { "content": "init", - "objectID": "fc88ff39-3f14-4e26-af3e-5215ab29fa7e", + "objectID": "fea8aaef-a177-418e-a23c-e4ea3b5b2d4f", "type": "lvl2", "url": "/docs/guide/cli#init", "hierarchy": { "lvl1": "CLI", "lvl2": "init", "lvl3": null } }, { "content": "add", - "objectID": "1499509c-0b4c-4878-8eed-b40bbbe6e3be", + "objectID": "39bd5bc9-f5c5-4a20-b70b-198080df9303", "type": "lvl2", "url": "/docs/guide/cli#add", "hierarchy": { "lvl1": "CLI", "lvl2": "add", "lvl3": null } }, { "content": "upgrade", - "objectID": "d4135f88-12c4-4722-b5c8-f5f71cf865f8", + "objectID": "35dba68c-6485-46f1-81b7-87f276fc198c", "type": "lvl2", "url": "/docs/guide/cli#upgrade", "hierarchy": { "lvl1": "CLI", "lvl2": "upgrade", "lvl3": null } }, { "content": "remove", - "objectID": "e53546a5-7f86-4e8d-bc20-f2445e7f9c36", + "objectID": "c2e7ce65-7dab-4fc5-bae1-8d5e2f63e6b9", "type": "lvl2", "url": "/docs/guide/cli#remove", "hierarchy": { "lvl1": "CLI", "lvl2": "remove", "lvl3": null } }, { "content": "list", - "objectID": "09706322-f5cd-4aa6-824a-7bcb9a0307a2", + "objectID": "bad485fb-c4b3-4fcd-bc1a-0f5ee7892273", "type": "lvl2", "url": "/docs/guide/cli#list", "hierarchy": { "lvl1": "CLI", "lvl2": "list", "lvl3": null } }, { "content": "doctor", - "objectID": "4eacbd55-0966-4910-b811-3c9247b04fd7", + "objectID": "2a9604b2-3434-45da-9640-37688990b621", "type": "lvl2", "url": "/docs/guide/cli#doctor", "hierarchy": { "lvl1": "CLI", "lvl2": "doctor", "lvl3": null } }, { "content": "env", - "objectID": "37306dcb-fb48-4c5b-b386-7434aee6f0ae", + "objectID": "a4fa138d-91e9-478a-b622-801457d8a188", "type": "lvl2", "url": "/docs/guide/cli#env", "hierarchy": { "lvl1": "CLI", "lvl2": "env", "lvl3": null } }, { "content": "API Reference", - "objectID": "b7d07c99-c52f-4558-8810-215c24b93783", + "objectID": "430dec24-5a5c-405f-b2bb-2545c001d739", "type": "lvl2", "url": "/docs/guide/cli#api-reference", "hierarchy": { "lvl1": "CLI", "lvl2": "API Reference", "lvl3": null } }, { "content": "Design Principles", - "objectID": "e11c22b9-31a2-4e1a-8903-0df95c7cf3fd", + "objectID": "d35ab799-f08d-4a0c-b6e4-1a87b2d78c0c", "type": "lvl1", "url": "/docs/guide/design-principles", "hierarchy": { "lvl1": "Design Principles" } }, { "content": "Simplicity and Usability", - "objectID": "eef8dfa8-ca91-435f-bc2a-dc812cdfd0a3", + "objectID": "626e5017-395d-4169-a293-522db137a032", "type": "lvl3", "url": "/docs/guide/design-principles#simplicity-and-usability", "hierarchy": { @@ -10424,7 +10424,7 @@ }, { "content": "Modular Design", - "objectID": "ee99cc09-aac5-4249-92d5-3b948a71e8d8", + "objectID": "4a55599e-5394-42d1-86d3-96adee253978", "type": "lvl3", "url": "/docs/guide/design-principles#modular-design", "hierarchy": { @@ -10435,7 +10435,7 @@ }, { "content": "Customization and Flexibility", - "objectID": "307e3108-8931-4dcd-b22e-2cfb45b0dd53", + "objectID": "171d36ba-2d8f-4fec-9304-966a30bff53c", "type": "lvl3", "url": "/docs/guide/design-principles#customization-and-flexibility", "hierarchy": { @@ -10446,7 +10446,7 @@ }, { "content": "Consistent API", - "objectID": "6da9e056-1aef-42fb-8a31-f4a2d37bf7e5", + "objectID": "5b821d5f-b087-4221-9fc6-24e7c462c026", "type": "lvl3", "url": "/docs/guide/design-principles#consistent-api", "hierarchy": { @@ -10457,7 +10457,7 @@ }, { "content": "Accessibility", - "objectID": "1b7d98f2-e3cc-4f2b-aa85-e0585e63b0c6", + "objectID": "b339d2c7-a96e-4905-a13f-7586f9d9f47a", "type": "lvl3", "url": "/docs/guide/design-principles#accessibility", "hierarchy": { @@ -10468,7 +10468,7 @@ }, { "content": "Component Slots", - "objectID": "501a706f-6f36-4a90-89e7-891f24c44d32", + "objectID": "28c2b6d8-e6f9-4139-a19f-ef449541280d", "type": "lvl3", "url": "/docs/guide/design-principles#component-slots", "hierarchy": { @@ -10479,14 +10479,14 @@ }, { "content": "Installation", - "objectID": "a8339227-e524-4ddb-9839-868342ea1a55", + "objectID": "3ab02f5a-4b0a-42cb-903a-53707b0bcfaf", "type": "lvl1", "url": "/docs/guide/installation", "hierarchy": { "lvl1": "Installation" } }, { "content": "Automatic Installation", - "objectID": "0309c051-e2e7-4b87-a046-bdfdca3b6844", + "objectID": "ffb5b04d-c41f-46df-b400-0d34e45ca357", "type": "lvl2", "url": "/docs/guide/installation#automatic-installation", "hierarchy": { @@ -10497,7 +10497,7 @@ }, { "content": "Initialization and Starting the App", - "objectID": "2814a261-e7fd-41d0-af4a-d135812a281b", + "objectID": "a87dc747-386a-41b1-b2d1-a1f52840a520", "type": "lvl3", "url": "/docs/guide/installation#initialization-and-starting-the-app", "hierarchy": { @@ -10508,7 +10508,7 @@ }, { "content": "Adding the Components", - "objectID": "fc3c4e8b-c482-4e41-bf9e-f1000cbaad0d", + "objectID": "292f97e6-ec91-45e8-a45c-6397c3da01b0", "type": "lvl3", "url": "/docs/guide/installation#adding-the-components", "hierarchy": { @@ -10519,7 +10519,7 @@ }, { "content": "Manual Installation", - "objectID": "645ed12b-9371-4644-919d-50c600d9b3e8", + "objectID": "c13ff57f-9b7c-419e-b6e1-e3c581603983", "type": "lvl2", "url": "/docs/guide/installation#manual-installation", "hierarchy": { @@ -10530,7 +10530,7 @@ }, { "content": "Global Installation", - "objectID": "eb6016c4-d5b8-4323-861b-0a500da4a4be", + "objectID": "0756420e-0977-44e8-93c9-8332a1552b00", "type": "lvl3", "url": "/docs/guide/installation#global-installation", "hierarchy": { @@ -10541,7 +10541,7 @@ }, { "content": "Install Packages", - "objectID": "6b28ac02-963f-45e1-8b1a-1cbe7fb5cf46", + "objectID": "03986dab-c53d-4971-b614-c4b4e3c91e6e", "type": "lvl4", "url": "/docs/guide/installation#install-packages", "hierarchy": { @@ -10552,7 +10552,7 @@ }, { "content": "Hoisted Dependencies Setup", - "objectID": "de8fdd4f-48ad-4e50-9883-94a4a3954068", + "objectID": "47a99581-f153-421c-b1e4-45d020991793", "type": "lvl4", "url": "/docs/guide/installation#hoisted-dependencies-setup", "hierarchy": { @@ -10563,7 +10563,7 @@ }, { "content": "Tailwind CSS Setup", - "objectID": "210f12e8-6b42-4bb7-b065-3b57785b05f4", + "objectID": "37f839f5-5d53-422d-a813-cc6f1bfe8392", "type": "lvl4", "url": "/docs/guide/installation#tailwind-css-setup", "hierarchy": { @@ -10574,7 +10574,7 @@ }, { "content": "Provider Setup", - "objectID": "90c317a0-a490-47b2-9598-24c184a4b774", + "objectID": "96d357c5-aebc-43d8-a60f-ef7314558aa4", "type": "lvl4", "url": "/docs/guide/installation#provider-setup", "hierarchy": { @@ -10585,7 +10585,7 @@ }, { "content": "Individual Installation", - "objectID": "9c4caefc-8fc9-4b5a-8854-130342126f7a", + "objectID": "0298c192-5ee6-4fae-943a-f9dd2a96f866", "type": "lvl3", "url": "/docs/guide/installation#individual-installation", "hierarchy": { @@ -10596,7 +10596,7 @@ }, { "content": "Install Core Packages", - "objectID": "6acc8886-43d3-4128-979d-00fc4c3f42d6", + "objectID": "c5c47bc9-46b9-4da8-aec1-80a5d3ae86b6", "type": "lvl4", "url": "/docs/guide/installation#install-core-packages", "hierarchy": { @@ -10607,7 +10607,7 @@ }, { "content": "Install Component", - "objectID": "ff91012b-efa4-4671-bfbf-c822879e23fb", + "objectID": "1f5c4c89-492f-4e4f-9f38-9d0d4f33416a", "type": "lvl4", "url": "/docs/guide/installation#install-component", "hierarchy": { @@ -10618,7 +10618,7 @@ }, { "content": "Hoisted Dependencies Setup", - "objectID": "25793ec9-566b-4587-81a8-201456088ee2", + "objectID": "5279037a-9993-4785-950e-c98ad40211a7", "type": "lvl4", "url": "/docs/guide/installation#hoisted-dependencies-setup-1", "hierarchy": { @@ -10629,7 +10629,7 @@ }, { "content": "Tailwind CSS Setup", - "objectID": "9889857a-22b1-446d-bf09-2a011114bf18", + "objectID": "797695dc-8197-4ec0-b9ab-8e69f64d4bdc", "type": "lvl4", "url": "/docs/guide/installation#tailwind-css-setup-1", "hierarchy": { @@ -10640,7 +10640,7 @@ }, { "content": "Provider Setup", - "objectID": "f9284991-c216-42d1-9db0-16eba5f63854", + "objectID": "c9b0ea70-325c-4160-973d-8daa51fa4e9a", "type": "lvl4", "url": "/docs/guide/installation#provider-setup-1", "hierarchy": { @@ -10651,7 +10651,7 @@ }, { "content": "Use the Component", - "objectID": "6e996362-466d-4167-9eac-925529623723", + "objectID": "7ce0bd7f-1ee2-4045-b2f0-aaec709927be", "type": "lvl4", "url": "/docs/guide/installation#use-the-component", "hierarchy": { @@ -10662,7 +10662,7 @@ }, { "content": "Framework Guides", - "objectID": "5e3f45c9-d579-4855-8a6a-e4f6ab8b1db7", + "objectID": "9f7d75b3-9948-484c-81ec-ac59d7f8b76d", "type": "lvl2", "url": "/docs/guide/installation#framework-guides", "hierarchy": { @@ -10673,14 +10673,14 @@ }, { "content": "Introduction", - "objectID": "28e23e4c-bec1-4b4b-ad22-9da9fbbb73eb", + "objectID": "df268096-bd94-4090-8144-26eff660470e", "type": "lvl1", "url": "/docs/guide/introduction", "hierarchy": { "lvl1": "Introduction" } }, { "content": "What is NextUI?", - "objectID": "20e5173e-5652-463a-9322-407b7600aa34", + "objectID": "67f9e727-cae6-4ed8-84bf-7a6d76fcef34", "type": "lvl2", "url": "/docs/guide/introduction#what-is-nextui", "hierarchy": { @@ -10691,14 +10691,14 @@ }, { "content": "FAQ", - "objectID": "db34fb06-6e39-4ee8-89e1-f6ac1f82527e", + "objectID": "018c53d9-38b7-490c-90a9-2a3af819bdf7", "type": "lvl2", "url": "/docs/guide/introduction#faq", "hierarchy": { "lvl1": "Introduction", "lvl2": "FAQ", "lvl3": null } }, { "content": "Is NextUI a Vercel related project?", - "objectID": "38093ac0-6364-487d-b306-fcefa03f4e04", + "objectID": "c0fc6188-c42b-412d-aacd-939dbc0e2bdf", "type": "lvl3", "url": "/docs/guide/introduction#is-nextui-a-vercel-related-project", "hierarchy": { @@ -10709,7 +10709,7 @@ }, { "content": "How is NextUI different from TailwindCSS?", - "objectID": "dd7f0855-9048-4c42-bf38-29ccb48ce62a", + "objectID": "f2a8bbbf-289e-4f06-b415-bb999d3a3dff", "type": "lvl3", "url": "/docs/guide/introduction#how-is-nextui-different-from-tailwindcss", "hierarchy": { @@ -10720,7 +10720,7 @@ }, { "content": "How is NextUI different from TailwindCSS components libraries?", - "objectID": "853c65be-b69e-45b8-b5d1-69d60dd53be9", + "objectID": "ddf06574-4267-4527-a7a6-b29abcccb48a", "type": "lvl3", "url": "/docs/guide/introduction#how-is-nextui-different-from-tailwindcss-components-libraries", "hierarchy": { @@ -10731,7 +10731,7 @@ }, { "content": "How NextUI deals with TailwindCSS classes conflicts?", - "objectID": "7739972f-8386-479e-8ccd-9d819d691532", + "objectID": "d90ea7d7-0bb0-4e94-af88-31d3a91dd75e", "type": "lvl3", "url": "/docs/guide/introduction#how-nextui-deals-with-tailwindcss-classes-conflicts", "hierarchy": { @@ -10742,7 +10742,7 @@ }, { "content": "Does NextUI use runtime CSS?", - "objectID": "4f07b5cd-2806-44af-a3c6-abd0600aeaac", + "objectID": "2953bb1e-ccf9-4371-a5cf-5ca0c9265240", "type": "lvl3", "url": "/docs/guide/introduction#does-nextui-use-runtime-css", "hierarchy": { @@ -10753,7 +10753,7 @@ }, { "content": "Does NextUI support TypeScript?", - "objectID": "d0703a95-c818-453f-b286-c30f9a29eafb", + "objectID": "c9f02419-a5ef-4d40-89c5-97fd50dd41f7", "type": "lvl3", "url": "/docs/guide/introduction#does-nextui-support-typescript", "hierarchy": { @@ -10764,7 +10764,7 @@ }, { "content": "Can I use NextUI with other front-end frameworks or libraries, such as Vue or Angular?", - "objectID": "939fcc49-ca86-43d2-a152-fd6419204265", + "objectID": "2940e2d9-0e3b-4fb4-b3c1-7cb23daf5c3b", "type": "lvl3", "url": "/docs/guide/introduction#can-i-use-nextui-with-other-front-end-frameworks-or-libraries-such-as-vue-or-angular", "hierarchy": { @@ -10775,7 +10775,7 @@ }, { "content": "Why does NextUI use Framer Motion?", - "objectID": "99e4df4e-019b-4ff2-999a-eebc624d8de4", + "objectID": "d76533f7-0ca8-40cd-b77a-80f708d8d744", "type": "lvl3", "url": "/docs/guide/introduction#why-does-nextui-use-framer-motion", "hierarchy": { @@ -10786,14 +10786,14 @@ }, { "content": "Community", - "objectID": "d7ea9a65-6c17-4991-8a47-f4bffc9ed15a", + "objectID": "1cbcb410-0895-44cc-8a41-7f4242538a8f", "type": "lvl2", "url": "/docs/guide/introduction#community", "hierarchy": { "lvl1": "Introduction", "lvl2": "Community", "lvl3": null } }, { "content": "Contributing", - "objectID": "ff639e5b-3531-49a8-ae6f-98e12e0ae5ea", + "objectID": "404efed4-330b-4a8d-930b-5ae47363253d", "type": "lvl2", "url": "/docs/guide/introduction#contributing", "hierarchy": { @@ -10804,21 +10804,21 @@ }, { "content": "Routing", - "objectID": "3f96cdcf-65ce-4c99-9e5d-7d736e5cbfe8", + "objectID": "b02be4cb-e596-44ca-8f81-3533a3d8e1be", "type": "lvl1", "url": "/docs/guide/routing", "hierarchy": { "lvl1": "Routing" } }, { "content": "Introduction", - "objectID": "7af2f804-ea2f-4f8b-a723-f97136fa27b5", + "objectID": "caaf1ce0-1bc6-4ac3-b086-a4334a373a31", "type": "lvl2", "url": "/docs/guide/routing#introduction", "hierarchy": { "lvl1": "Routing", "lvl2": "Introduction", "lvl3": null } }, { "content": "NextUIProvider Setup", - "objectID": "ab1f9415-1af8-4c41-866f-c0bee5807bf5", + "objectID": "251cc161-b490-4bdf-9014-a6a8b4914118", "type": "lvl2", "url": "/docs/guide/routing#nextuiprovider-setup", "hierarchy": { @@ -10829,28 +10829,28 @@ }, { "content": "Next.js", - "objectID": "534aacb3-4d93-4d90-94a2-8bb222d84ef8", + "objectID": "6ea17e7e-dc90-47d7-8ed7-cb501e4d5ca4", "type": "lvl2", "url": "/docs/guide/routing#nextjs", "hierarchy": { "lvl1": "Routing", "lvl2": "Next.js", "lvl3": null } }, { "content": "App Router", - "objectID": "fd915711-2493-40a6-b91c-b6c6433225de", + "objectID": "5825fa3b-bd9f-49f8-9c50-e044adb52aa9", "type": "lvl3", "url": "/docs/guide/routing#app-router", "hierarchy": { "lvl1": "Routing", "lvl2": "Next.js", "lvl3": "App Router" } }, { "content": "Add the `useRouter`", - "objectID": "f8fcef78-c2ee-4c00-aab2-0101e753c163", + "objectID": "618dfed9-dd4d-42f7-9b9c-e30e3a7ce193", "type": "lvl4", "url": "/docs/guide/routing#add-the-userouter", "hierarchy": { "lvl1": "Routing", "lvl2": "App Router", "lvl3": null } }, { "content": "Add Provider to Root", - "objectID": "84aa895d-29a9-4a70-a57b-9729ec8501a1", + "objectID": "7f1742cc-47d8-4078-acb2-341c38a7024c", "type": "lvl4", "url": "/docs/guide/routing#add-provider-to-root", "hierarchy": { @@ -10861,7 +10861,7 @@ }, { "content": "Add useHref (Optional)", - "objectID": "1f20a6ef-7642-4f5d-b2e4-4f56dc4a9249", + "objectID": "2b7a1096-e967-495f-8d47-84ea88b3e15e", "type": "lvl4", "url": "/docs/guide/routing#add-usehref-optional", "hierarchy": { @@ -10872,7 +10872,7 @@ }, { "content": "Pages Router", - "objectID": "cbfb5cf9-68e7-455b-8568-518d63aa0273", + "objectID": "d0fdc1a7-c3c6-4cfb-8126-35cdf6101927", "type": "lvl3", "url": "/docs/guide/routing#pages-router", "hierarchy": { @@ -10883,42 +10883,42 @@ }, { "content": "React Router", - "objectID": "798f5d3a-2c18-4769-bbc8-a3153ae486d1", + "objectID": "0f39e4d0-bae2-419f-a1f8-54b173f7b8f3", "type": "lvl2", "url": "/docs/guide/routing#react-router", "hierarchy": { "lvl1": "Routing", "lvl2": "React Router", "lvl3": null } }, { "content": "Remix", - "objectID": "cd187935-9d6b-4117-8af9-89c09e1b37f2", + "objectID": "6a4ddd1a-4907-4bf6-852d-a4e1401150e5", "type": "lvl2", "url": "/docs/guide/routing#remix", "hierarchy": { "lvl1": "Routing", "lvl2": "Remix", "lvl3": null } }, { "content": "TanStack", - "objectID": "871ecf39-5cc2-4ba9-989b-c133e2c8e5cd", + "objectID": "8941adbd-c59d-4289-ad36-79327e55db0a", "type": "lvl2", "url": "/docs/guide/routing#tanstack", "hierarchy": { "lvl1": "Routing", "lvl2": "TanStack", "lvl3": null } }, { "content": "Usage examples", - "objectID": "69a8850d-50e5-464c-a38e-bfc385d30f11", + "objectID": "3515b496-832b-41cc-8b9f-027c9f099fae", "type": "lvl2", "url": "/docs/guide/routing#usage-examples", "hierarchy": { "lvl1": "Routing", "lvl2": "Usage examples", "lvl3": null } }, { "content": "Upgrade to v2", - "objectID": "ea1f424f-40dd-42e6-99ba-7a7bc05470c4", + "objectID": "86737414-0586-42a3-86ba-a741f9ec3216", "type": "lvl1", "url": "/docs/guide/upgrade-to-v2", "hierarchy": { "lvl1": "Upgrade to v2" } }, { "content": "Next.js upgrade steps", - "objectID": "be88ce15-4b12-4429-a32a-381b59c1b7ae", + "objectID": "7f9293c1-b92f-4601-a2c0-330f98777374", "type": "lvl2", "url": "/docs/guide/upgrade-to-v2#nextjs-upgrade-steps", "hierarchy": { @@ -10929,7 +10929,7 @@ }, { "content": "App directory Setup", - "objectID": "4c119a93-ed75-4660-baa9-6384ea73c0cc", + "objectID": "3546c271-cadc-496d-a0ef-0506fa9a6f4f", "type": "lvl2", "url": "/docs/guide/upgrade-to-v2#app-directory-setup", "hierarchy": { @@ -10940,7 +10940,7 @@ }, { "content": "Installation", - "objectID": "7c1fbe0f-0da4-48cc-acca-f504deb85f71", + "objectID": "9b88d2e0-18b4-45e7-a715-27da51ba7e9d", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#installation", "hierarchy": { @@ -10951,7 +10951,7 @@ }, { "content": "Hoisted Dependencies Setup", - "objectID": "5cfefede-df2a-4917-b51f-c93daf52ef95", + "objectID": "3a57f57b-7161-43c8-b6fb-ebcb1b70f6db", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#hoisted-dependencies-setup", "hierarchy": { @@ -10962,7 +10962,7 @@ }, { "content": "Tailwind CSS Setup", - "objectID": "066eb46a-1df1-4c5f-8f51-66f2a1361e20", + "objectID": "76b03efd-4ac0-4482-9545-3cb6ee2e2a83", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#tailwind-css-setup", "hierarchy": { @@ -10973,7 +10973,7 @@ }, { "content": "Setup Provider", - "objectID": "bcfb93ea-d812-43c6-ad13-2a5d144e683b", + "objectID": "b1d710b9-4551-4772-96ad-a13e4089dac0", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#setup-provider", "hierarchy": { @@ -10984,7 +10984,7 @@ }, { "content": "Add Provider to Root", - "objectID": "6f05ce5c-f3ad-4df7-8c35-b6cd52cd926e", + "objectID": "3da86865-1020-4409-8725-4b03fa68ed0a", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#add-provider-to-root", "hierarchy": { @@ -10995,7 +10995,7 @@ }, { "content": "Use NextUI Components", - "objectID": "b844ecc6-fe6a-4fd7-9808-e1e28942e3d0", + "objectID": "457cbe55-8ca7-4ea6-bb2a-396a97adf6dc", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#use-nextui-components", "hierarchy": { @@ -11006,7 +11006,7 @@ }, { "content": "Pages Directory Setup", - "objectID": "b54f6744-b32f-43b9-a953-8b69277e0d88", + "objectID": "ee3adae5-da6b-4643-b1a4-d026c4c62b0d", "type": "lvl2", "url": "/docs/guide/upgrade-to-v2#pages-directory-setup", "hierarchy": { @@ -11017,7 +11017,7 @@ }, { "content": "Installation", - "objectID": "7253de4e-f7ab-4d31-bc12-341386a7bd23", + "objectID": "450cd6d1-649a-423d-b549-3c92ad9cecf8", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#installation-1", "hierarchy": { @@ -11028,7 +11028,7 @@ }, { "content": "Hoisted Dependencies Setup", - "objectID": "8926440d-cc1e-4c46-9d97-fb9c8e8fc686", + "objectID": "f31900b2-8753-4196-aefa-05938002f9c4", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#hoisted-dependencies-setup-1", "hierarchy": { @@ -11039,7 +11039,7 @@ }, { "content": "Tailwind CSS Setup", - "objectID": "af349e8b-5f45-476b-9ca6-2cdcf1978321", + "objectID": "9dbd9403-296c-4524-a9da-68271aac3e40", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#tailwind-css-setup-1", "hierarchy": { @@ -11050,7 +11050,7 @@ }, { "content": "Setup Provider", - "objectID": "8bb5b7ae-aa3c-4eeb-8400-b087916aa01f", + "objectID": "3946b174-2cbb-44d0-a551-30dfb801108f", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#setup-provider-1", "hierarchy": { @@ -11061,7 +11061,7 @@ }, { "content": "Use NextUI Components", - "objectID": "9414fe4c-5937-46ed-ac40-0b0fe38eb693", + "objectID": "f6124e7f-60ca-4eef-a3cf-532190b5c241", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#use-nextui-components-1", "hierarchy": { @@ -11072,7 +11072,7 @@ }, { "content": "React upgrade steps", - "objectID": "20ae3dfb-90a9-48ed-ad9a-ffd9ff790d57", + "objectID": "b3905f7b-77f9-42f7-87f0-5d8ceabd4566", "type": "lvl2", "url": "/docs/guide/upgrade-to-v2#react-upgrade-steps", "hierarchy": { @@ -11083,7 +11083,7 @@ }, { "content": "Upgrade React version", - "objectID": "078383ee-baa7-40b0-b24d-ab629f4e4d6c", + "objectID": "4199b145-dac1-4b0b-96d7-706643ebbc03", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#upgrade-react-version", "hierarchy": { @@ -11094,7 +11094,7 @@ }, { "content": "Install Framer motion", - "objectID": "4d677923-6dd3-46e9-8dc6-b8383a92a7a2", + "objectID": "ef778f69-5c80-44b6-a995-1385c7136cdf", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#install-framer-motion", "hierarchy": { @@ -11105,7 +11105,7 @@ }, { "content": "Hoisted Dependencies Setup", - "objectID": "039e763d-8a92-4e6e-bad0-131ed6cee8c1", + "objectID": "234c3efc-173f-4094-9551-4fb2f90ae374", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#hoisted-dependencies-setup-2", "hierarchy": { @@ -11116,7 +11116,7 @@ }, { "content": "TailwindCSS Setup", - "objectID": "76199e66-723b-48ba-8897-5b4920211d8c", + "objectID": "4ad10a62-fa6d-4a97-a509-4f3e6e3f6ffd", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#tailwindcss-setup", "hierarchy": { @@ -11127,7 +11127,7 @@ }, { "content": "Provider Setup", - "objectID": "32c5a58a-fcfb-41dc-988c-9ea6f0a56235", + "objectID": "3a0f1eb7-dc53-4601-b4c7-c8a8203080e3", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#provider-setup", "hierarchy": { @@ -11138,7 +11138,7 @@ }, { "content": "Use NextUI Components", - "objectID": "55e021e0-fba1-4a99-9976-cced048573e9", + "objectID": "4469d00e-f102-447d-8efc-c675a3394458", "type": "lvl3", "url": "/docs/guide/upgrade-to-v2#use-nextui-components-2", "hierarchy": { diff --git a/apps/docs/package.json b/apps/docs/package.json index b1dfea40ba..464b8195a1 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -4,7 +4,7 @@ "private": true, "scripts": { "dev": "rimraf .contentlayer && concurrently \"contentlayer2 dev\" \"next dev\"", - "build": "contentlayer2 build && next build && pnpm update:github-info && pnpm update:search-meta", + "build": "contentlayer2 build && next build ", "build:analyze": "ANALYZE=true next build", "start": "next start", "lint": "next lint", @@ -17,6 +17,7 @@ }, "dependencies": { "@codesandbox/sandpack-react": "^2.6.4", + "@emotion/is-prop-valid": "^1.3.1", "@iconify/icons-solar": "^1.2.3", "@iconify/react": "^4.1.1", "@internationalized/date": "3.5.5", diff --git a/apps/docs/public/sitemap-0.xml b/apps/docs/public/sitemap-0.xml index e0043d15d6..3e8de3be73 100644 --- a/apps/docs/public/sitemap-0.xml +++ b/apps/docs/public/sitemap-0.xml @@ -1,78 +1,78 @@ -https://nextui.org/feed.xml2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/blog/nextui-v22024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/blog/v2.1.02024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/blog/v2.2.02024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/blog/v2.3.02024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/blog/v2.4.02024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/api-references/cli-api2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/api-references/nextui-provider2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/customization/colors2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/customization/create-theme2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/customization/custom-variants2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/customization/customize-theme2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/customization/dark-mode2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/customization/layout2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/customization/override-styles2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/customization/theme2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/accordion2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/alert2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/autocomplete2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/avatar2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/badge2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/breadcrumbs2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/button2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/calendar2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/card2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/checkbox-group2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/checkbox2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/chip2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/circular-progress2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/code2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/date-input2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/date-picker2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/date-range-picker2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/divider2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/drawer2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/dropdown2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/image2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/input2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/kbd2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/link2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/listbox2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/modal2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/navbar2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/pagination2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/popover2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/progress2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/radio-group2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/range-calendar2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/scroll-shadow2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/select2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/skeleton2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/slider2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/snippet2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/spacer2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/spinner2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/switch2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/table2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/tabs2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/textarea2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/time-input2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/tooltip2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/components/user2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/frameworks/astro2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/frameworks/nextjs2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/frameworks/remix2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/frameworks/vite2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/guide/cli2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/guide/design-principles2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/guide/installation2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/guide/introduction2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/guide/routing2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/docs/guide/upgrade-to-v22024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/blog2024-11-16T12:16:07.054Zdaily0.7 -https://nextui.org/figma2024-11-16T12:16:07.054Zdaily0.7 +https://nextui.org/feed.xml2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/figma2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/blog/nextui-v22024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/blog/v2.1.02024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/blog/v2.2.02024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/blog/v2.3.02024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/blog/v2.4.02024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/blog2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/api-references/cli-api2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/api-references/nextui-provider2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/customization/colors2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/customization/create-theme2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/customization/custom-variants2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/customization/customize-theme2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/customization/dark-mode2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/customization/layout2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/customization/override-styles2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/customization/theme2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/accordion2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/alert2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/autocomplete2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/avatar2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/badge2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/breadcrumbs2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/button2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/calendar2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/card2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/checkbox-group2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/checkbox2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/chip2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/circular-progress2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/code2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/date-input2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/date-picker2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/date-range-picker2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/divider2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/drawer2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/dropdown2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/image2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/input2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/kbd2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/link2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/listbox2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/modal2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/navbar2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/pagination2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/popover2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/progress2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/radio-group2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/range-calendar2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/scroll-shadow2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/select2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/skeleton2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/slider2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/snippet2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/spacer2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/spinner2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/switch2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/table2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/tabs2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/textarea2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/time-input2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/tooltip2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/components/user2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/frameworks/astro2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/frameworks/nextjs2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/frameworks/remix2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/frameworks/vite2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/guide/cli2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/guide/design-principles2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/guide/installation2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/guide/introduction2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/guide/routing2024-11-16T13:54:50.591Zdaily0.7 +https://nextui.org/docs/guide/upgrade-to-v22024-11-16T13:54:50.591Zdaily0.7 \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ef886d7058..435786500e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -267,6 +267,9 @@ importers: '@codesandbox/sandpack-react': specifier: ^2.6.4 version: 2.19.9(@lezer/common@1.2.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@emotion/is-prop-valid': + specifier: ^1.3.1 + version: 1.3.1 '@iconify/icons-solar': specifier: ^1.2.3 version: 1.2.3 @@ -386,7 +389,7 @@ importers: version: 2.30.0 framer-motion: specifier: 11.9.0 - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) github-slugger: specifier: ^2.0.0 version: 2.0.0 @@ -664,7 +667,7 @@ importers: version: 2.2.0 framer-motion: specifier: 11.9.0 - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -801,7 +804,7 @@ importers: version: 2.2.0 framer-motion: specifier: 11.9.0 - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -978,7 +981,7 @@ importers: version: 3.24.1(react@18.3.1) framer-motion: specifier: '>=11.5.6 || >=12.0.0-alpha.1' - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@nextui-org/shared-icons': specifier: workspace:* @@ -1082,7 +1085,7 @@ importers: version: 2.2.0 framer-motion: specifier: 11.9.0 - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -1121,7 +1124,7 @@ importers: version: 3.24.1(react@18.3.1) framer-motion: specifier: '>=11.5.6 || >=12.0.0-alpha.1' - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@nextui-org/avatar': specifier: workspace:* @@ -1577,7 +1580,7 @@ importers: version: 2.2.0 framer-motion: specifier: 11.9.0 - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -1956,7 +1959,7 @@ importers: version: 2.2.0 framer-motion: specifier: 11.9.0 - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -2007,7 +2010,7 @@ importers: version: 3.10.3(react@18.3.1) framer-motion: specifier: '>=11.5.6 || >=12.0.0-alpha.1' - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-remove-scroll: specifier: ^2.5.6 version: 2.6.0(@types/react@18.2.8)(react@18.3.1) @@ -2166,7 +2169,7 @@ importers: version: 2.2.0 framer-motion: specifier: 11.9.0 - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -2295,7 +2298,7 @@ importers: version: 2.2.0 framer-motion: specifier: 11.9.0 - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -2423,7 +2426,7 @@ importers: version: 2.2.0 framer-motion: specifier: 11.9.0 - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -2548,7 +2551,7 @@ importers: version: 3.25.2(react@18.3.1) framer-motion: specifier: '>=11.5.6 || >=12.0.0-alpha.1' - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@nextui-org/system': specifier: workspace:* @@ -2830,7 +2833,7 @@ importers: version: 2.2.0 framer-motion: specifier: 11.9.0 - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -2897,7 +2900,7 @@ importers: version: 2.2.0 framer-motion: specifier: 11.9.0 - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -3084,7 +3087,7 @@ importers: version: 3.8.15(react@18.3.1) framer-motion: specifier: '>=11.5.6 || >=12.0.0-alpha.1' - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: clean-package: specifier: 2.2.0 @@ -3128,7 +3131,7 @@ importers: version: 2.2.0 framer-motion: specifier: 11.9.0 - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -3807,7 +3810,7 @@ importers: version: 2.2.0 framer-motion: specifier: 11.9.0 - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) packages/utilities/framer-utils: dependencies: @@ -3826,7 +3829,7 @@ importers: version: 2.2.0 framer-motion: specifier: 11.9.0 - version: 11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: specifier: ^18.2.0 version: 18.3.1 @@ -4925,6 +4928,12 @@ packages: '@effect-ts/system@0.57.5': resolution: {integrity: sha512-/crHGujo0xnuHIYNc1VgP0HGJGFSoSqq88JFXe6FmFyXPpWt8Xu39LyLg7rchsxfXFeEdA9CrIZvLV5eswXV5g==} + '@emotion/is-prop-valid@1.3.1': + resolution: {integrity: sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==} + + '@emotion/memoize@0.9.0': + resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==} + '@emotion/use-insertion-effect-with-fallbacks@1.1.0': resolution: {integrity: sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw==} peerDependencies: @@ -17375,6 +17384,12 @@ snapshots: '@effect-ts/system@0.57.5': {} + '@emotion/is-prop-valid@1.3.1': + dependencies: + '@emotion/memoize': 0.9.0 + + '@emotion/memoize@0.9.0': {} + '@emotion/use-insertion-effect-with-fallbacks@1.1.0(react@18.3.1)': dependencies: react: 18.3.1 @@ -24631,10 +24646,11 @@ snapshots: dependencies: map-cache: 0.2.2 - framer-motion@11.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + framer-motion@11.9.0(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: tslib: 2.8.1 optionalDependencies: + '@emotion/is-prop-valid': 1.3.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) From 7dcb7189270352871f6c39af019fefeb1571f635 Mon Sep 17 00:00:00 2001 From: Junior Garcia Date: Sat, 16 Nov 2024 11:06:33 -0300 Subject: [PATCH 13/28] chore: improve navabr colors --- apps/docs/components/navbar.tsx | 7 ++++++- apps/docs/components/theme-switch.tsx | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/apps/docs/components/navbar.tsx b/apps/docs/components/navbar.tsx index 741e48507d..e7d7f71dda 100644 --- a/apps/docs/components/navbar.tsx +++ b/apps/docs/components/navbar.tsx @@ -312,7 +312,12 @@ export const Navbar: FC = ({children, routes, mobileRoutes = [], sl {githubInfo.stars.formatted} - + {/*