@yeongseoksong/framework 1.5.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +48 -13
- package/dist/store/index.cjs +11 -2
- package/dist/store/index.d.mts +31 -1
- package/dist/store/index.d.ts +31 -1
- package/dist/store/index.mjs +10 -2
- package/dist/ui/index.cjs +249 -208
- package/dist/ui/index.d.mts +44 -4
- package/dist/ui/index.d.ts +44 -4
- package/dist/ui/index.mjs +206 -168
- package/package.json +1 -1
package/dist/ui/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as _mantine_core from '@mantine/core';
|
|
3
|
-
import { MantineSize, TabsProps, TabsListProps, TabsPanelProps, TitleProps, TextProps, ButtonProps, BoxProps, TableProps, ModalProps, ThemeIconProps, ContainerProps, BadgeProps, TextInputProps, PasswordInputProps, TextareaProps, JsonInputProps, NumberInputProps, SliderProps, InputWrapperProps, RatingProps, PinInputProps, SelectProps, NativeSelectProps, MultiSelectProps, AutocompleteProps, TagsInputProps, RadioGroupProps, SegmentedControlProps, CheckboxProps, SwitchProps, FileInputProps, ColorInputProps, SkeletonProps, AnchorProps, StackProps, StyleProp, MantineColor, SimpleGridProps, CardProps as CardProps$1, MantineColorsTuple } from '@mantine/core';
|
|
3
|
+
import { MantineSize, TabsProps, TabsListProps, TabsPanelProps, TitleProps, TextProps, ButtonProps, BoxProps, TableProps, ModalProps, ThemeIconProps, ContainerProps, BadgeProps, TextInputProps, PasswordInputProps, TextareaProps, JsonInputProps, NumberInputProps, SliderProps, InputWrapperProps, RatingProps, PinInputProps, SelectProps, NativeSelectProps, MultiSelectProps, AutocompleteProps, TagsInputProps, RadioGroupProps, SegmentedControlProps, CheckboxProps, SwitchProps, FileInputProps, ColorInputProps, SkeletonProps, AnchorProps, StackProps, StyleProp, MantineColor, SimpleGridProps, CardProps as CardProps$1, MantineThemeOverride, MantineColorScheme, MantineColorsTuple } from '@mantine/core';
|
|
4
4
|
import React$1, { ReactNode, ComponentPropsWithoutRef, AnchorHTMLAttributes } from 'react';
|
|
5
5
|
import * as _mantine_core_lib_components_Modal_ModalCloseButton from '@mantine/core/lib/components/Modal/ModalCloseButton';
|
|
6
6
|
import * as _mantine_core_lib_components_Modal_ModalBody from '@mantine/core/lib/components/Modal/ModalBody';
|
|
@@ -904,7 +904,7 @@ declare const SdMapSingle: typeof Single;
|
|
|
904
904
|
declare const SdMapTabs: typeof Tabs;
|
|
905
905
|
|
|
906
906
|
interface SdBreadcrumbProps extends BoxProps {
|
|
907
|
-
navItems
|
|
907
|
+
navItems?: NavItem[];
|
|
908
908
|
/** 현재 경로. 생략하면 `usePathname()`으로 자동 추론한다. */
|
|
909
909
|
currentHref?: string;
|
|
910
910
|
/** 홈(첫 크럼) 링크 대상. 기본 `/`. */
|
|
@@ -919,7 +919,7 @@ interface SdBreadcrumbProps extends BoxProps {
|
|
|
919
919
|
* 조상 크럼은 클릭 가능한 링크(`SdLink.Sub`), 마지막(현재 페이지) 크럼은 href 없는
|
|
920
920
|
* `SdLink.Body`라 링크가 아닌 강조 텍스트(`SdText.Body`)로 폴백해 현재 위치를 나타낸다.
|
|
921
921
|
*/
|
|
922
|
-
declare function SdBreadcrumb({ navItems, currentHref, homeHref, homeLabel, ...boxProps }: SdBreadcrumbProps): react_jsx_runtime.JSX.Element;
|
|
922
|
+
declare function SdBreadcrumb({ navItems: navItemsProp, currentHref, homeHref, homeLabel, ...boxProps }: SdBreadcrumbProps): react_jsx_runtime.JSX.Element | undefined;
|
|
923
923
|
|
|
924
924
|
interface HeroCarouselProps {
|
|
925
925
|
slides: HeroSlide[];
|
|
@@ -1147,6 +1147,46 @@ declare const PageLayoutMinimal: typeof Minimal;
|
|
|
1147
1147
|
declare const PageLayoutBrand: typeof Brand;
|
|
1148
1148
|
declare const PageLayoutPlain: typeof Plain;
|
|
1149
1149
|
|
|
1150
|
+
/**
|
|
1151
|
+
* 소비자 앱의 **프로바이더/컨텍스트 조립**을 한 컴포넌트로 묶는다 —
|
|
1152
|
+
* `MantineProvider`(테마) + `SdToastProvider`(토스트 렌더 지점) + `NavProvider`(navItems Context).
|
|
1153
|
+
* 소비자는 이 셋을 매번 손으로 쌓는 대신 `<SdProvider>` 하나만 렌더한다.
|
|
1154
|
+
*
|
|
1155
|
+
* 헤더/푸터 크롬(`MainLayout`)이나 페이지 템플릿(`PageLayout`)은 여기 넣지 않는다 —
|
|
1156
|
+
* 그건 페이지마다 다를 수 있는 **레이아웃**이라 소비자가 `SdProvider` 안쪽에 직접 배치한다.
|
|
1157
|
+
* `SdProvider`가 `NavProvider`로 감싸므로 그 아래 `MainLayout`/`SdBreadcrumb`는 navItems를
|
|
1158
|
+
* Context에서 읽는다(브레드크럼은 prop 없이 동작).
|
|
1159
|
+
*
|
|
1160
|
+
* 담지 않는 것:
|
|
1161
|
+
* - 회사명/로고는 여기 없다 — `NEXT_PUBLIC_*` env var로 남는다. `t()`가 서버
|
|
1162
|
+
* 컴포넌트인 `SdText`/`SdTitle` 안에서 돌기 때문에 Context로 옮기면 `ui/`
|
|
1163
|
+
* 트리 전체가 client가 되어 flat export/서버 렌더 이점을 잃는다. (CLAUDE.md
|
|
1164
|
+
* §Consumer Config Injection 참고.)
|
|
1165
|
+
* - `ColorSchemeScript`와 Mantine CSS import는 `<head>`/서버 layout 몫이라
|
|
1166
|
+
* 여기서 빼둔다.
|
|
1167
|
+
*
|
|
1168
|
+
* 색상 오버라이드는 소비자의 `"use client"` 모듈에서 `mergeThemeOverrides(theme, …)`
|
|
1169
|
+
* 로 합친 결과를 `theme` prop에 넘긴다. 생략하면 프레임워크 기본 테마를 쓴다.
|
|
1170
|
+
*/
|
|
1171
|
+
declare function SdProvider({ children, theme, navItems, defaultColorScheme, }: {
|
|
1172
|
+
children: React.ReactNode;
|
|
1173
|
+
/** 생략 시 프레임워크 기본 테마. 색 오버라이드는 `mergeThemeOverrides`로 합쳐 넘긴다. */
|
|
1174
|
+
theme?: MantineThemeOverride;
|
|
1175
|
+
navItems: NavItem[];
|
|
1176
|
+
defaultColorScheme?: MantineColorScheme;
|
|
1177
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1178
|
+
|
|
1179
|
+
/**
|
|
1180
|
+
* navItems를 하위 트리에 제공한다. `SdProvider`가 자동으로 감싸므로, 그 아래의
|
|
1181
|
+
* `SdBreadcrumb`는 `navItems` prop 없이도 동작한다.
|
|
1182
|
+
*/
|
|
1183
|
+
declare function NavProvider({ children, navItems, }: {
|
|
1184
|
+
children: React.ReactNode;
|
|
1185
|
+
navItems: NavItem[];
|
|
1186
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1187
|
+
/** 가장 가까운 `NavProvider`가 제공하는 navItems. Provider가 없으면 빈 배열. */
|
|
1188
|
+
declare function useNav(): NavItem[];
|
|
1189
|
+
|
|
1150
1190
|
declare const theme: {
|
|
1151
1191
|
focusRing?: "auto" | "always" | "never" | undefined;
|
|
1152
1192
|
scale?: number | undefined;
|
|
@@ -1295,4 +1335,4 @@ declare const theme: {
|
|
|
1295
1335
|
} | undefined;
|
|
1296
1336
|
};
|
|
1297
1337
|
|
|
1298
|
-
export { type HeaderVariant, HeroCarousel, Logo, MainLayout, type NavItem, PageLayout, PageLayoutBrand, PageLayoutImage, PageLayoutMinimal, PageLayoutPlain, SdBadge, SdBadgeDefault, SdBadgePrimary, SdBadgeSuccess, SdBadgeWarning, SdBreadcrumb, SdButton, SdButtonCancel, SdButtonDelete, SdButtonDownload, SdButtonExcel, SdButtonGhost, SdButtonOutline, SdButtonPrimary, SdButtonSecondary, SdButtonSubmit, SdButtonWhite, SdClients, SdClientsGrid, SdClientsMarquee, SdContainer, SdCta, SdCtaBanner, SdCtaInline, SdCtaSubtle, SdErrorView, SdErrorViewNotFound, SdErrorViewPage, SdFaq, SdFaqDefault, SdFaqFilled, SdFaqWithHeader, SdFeatureSection, SdFeatures, SdFooter, SdHeader, SdHeaderMega, SdHeaderPanel, SdHeaderSimple, SdInput, SdInputAutocomplete, SdInputCheckbox, SdInputColor, SdInputDate, SdInputDateRange, SdInputEmail, SdInputFile, SdInputJson, SdInputMultiSelect, SdInputNativeSelect, SdInputNumber, SdInputPassword, SdInputPinCode, SdInputRadioGroup, SdInputRating, SdInputSegmented, SdInputSelect, SdInputSlider, SdInputSwitch, SdInputTags, SdInputText, SdInputTextarea, SdInputTime, SdLink, SdLinkBody, SdLinkHint, SdLinkStrong, SdLinkSub, SdLoginView, SdLoginViewCard, SdLoginViewSplit, SdMap, SdMapSingle, SdMapTabs, SdModal, SdNumberIcon, SdPricingCard, SdPricingCardDefault, SdPricingCardFeatured, SdPricingCardGrid, SdQuote, SdQuoteCard, SdQuotePlain, SdResult, SdResultError, SdResultSuccess, SdSkeleton, SdSkeletonAvatar, SdSkeletonCard, SdSkeletonImage, SdSkeletonText, SdSkeletonTitle, SdSolution, SdSolutionCard, SdSolutionCardGrid, SdSolutionCardItem, SdSolutionFiltered, SdSolutionList, SdSteps, SdStepsBubble, SdStepsCard, SdStepsSection, SdStepsStrip, SdTable, SdTableSpec, SdTabs, SdTabsOutline, SdTabsPills, SdTabsUnderline, SdTestimonial, SdTestimonialCard, SdTestimonialGrid, SdTestimonialStrip, SdText, SdTextBody, SdTextBox, SdTextBoxCard, SdTextBoxHero, SdTextBoxSection, SdTextBoxSub, SdTextError, SdTextEyebrow, SdTextHint, SdTextNumeric, SdTextStrong, SdTextSub, SdTimeline, SdTimelineSection, SdTitle, SdTitleCard, SdTitleDisplay, SdTitleSection, SdTitleSub, SdToast, SdToastClean, SdToastError, SdToastHide, SdToastInfo, SdToastLoading, SdToastProvider, SdToastSuccess, SdToastUpdate, SdToastWarning, theme };
|
|
1338
|
+
export { type HeaderVariant, HeroCarousel, Logo, MainLayout, type NavItem, NavProvider, PageLayout, PageLayoutBrand, PageLayoutImage, PageLayoutMinimal, PageLayoutPlain, SdBadge, SdBadgeDefault, SdBadgePrimary, SdBadgeSuccess, SdBadgeWarning, SdBreadcrumb, SdButton, SdButtonCancel, SdButtonDelete, SdButtonDownload, SdButtonExcel, SdButtonGhost, SdButtonOutline, SdButtonPrimary, SdButtonSecondary, SdButtonSubmit, SdButtonWhite, SdClients, SdClientsGrid, SdClientsMarquee, SdContainer, SdCta, SdCtaBanner, SdCtaInline, SdCtaSubtle, SdErrorView, SdErrorViewNotFound, SdErrorViewPage, SdFaq, SdFaqDefault, SdFaqFilled, SdFaqWithHeader, SdFeatureSection, SdFeatures, SdFooter, SdHeader, SdHeaderMega, SdHeaderPanel, SdHeaderSimple, SdInput, SdInputAutocomplete, SdInputCheckbox, SdInputColor, SdInputDate, SdInputDateRange, SdInputEmail, SdInputFile, SdInputJson, SdInputMultiSelect, SdInputNativeSelect, SdInputNumber, SdInputPassword, SdInputPinCode, SdInputRadioGroup, SdInputRating, SdInputSegmented, SdInputSelect, SdInputSlider, SdInputSwitch, SdInputTags, SdInputText, SdInputTextarea, SdInputTime, SdLink, SdLinkBody, SdLinkHint, SdLinkStrong, SdLinkSub, SdLoginView, SdLoginViewCard, SdLoginViewSplit, SdMap, SdMapSingle, SdMapTabs, SdModal, SdNumberIcon, SdPricingCard, SdPricingCardDefault, SdPricingCardFeatured, SdPricingCardGrid, SdProvider, SdQuote, SdQuoteCard, SdQuotePlain, SdResult, SdResultError, SdResultSuccess, SdSkeleton, SdSkeletonAvatar, SdSkeletonCard, SdSkeletonImage, SdSkeletonText, SdSkeletonTitle, SdSolution, SdSolutionCard, SdSolutionCardGrid, SdSolutionCardItem, SdSolutionFiltered, SdSolutionList, SdSteps, SdStepsBubble, SdStepsCard, SdStepsSection, SdStepsStrip, SdTable, SdTableSpec, SdTabs, SdTabsOutline, SdTabsPills, SdTabsUnderline, SdTestimonial, SdTestimonialCard, SdTestimonialGrid, SdTestimonialStrip, SdText, SdTextBody, SdTextBox, SdTextBoxCard, SdTextBoxHero, SdTextBoxSection, SdTextBoxSub, SdTextError, SdTextEyebrow, SdTextHint, SdTextNumeric, SdTextStrong, SdTextSub, SdTimeline, SdTimelineSection, SdTitle, SdTitleCard, SdTitleDisplay, SdTitleSection, SdTitleSub, SdToast, SdToastClean, SdToastError, SdToastHide, SdToastInfo, SdToastLoading, SdToastProvider, SdToastSuccess, SdToastUpdate, SdToastWarning, theme, useNav };
|
package/dist/ui/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as _mantine_core from '@mantine/core';
|
|
3
|
-
import { MantineSize, TabsProps, TabsListProps, TabsPanelProps, TitleProps, TextProps, ButtonProps, BoxProps, TableProps, ModalProps, ThemeIconProps, ContainerProps, BadgeProps, TextInputProps, PasswordInputProps, TextareaProps, JsonInputProps, NumberInputProps, SliderProps, InputWrapperProps, RatingProps, PinInputProps, SelectProps, NativeSelectProps, MultiSelectProps, AutocompleteProps, TagsInputProps, RadioGroupProps, SegmentedControlProps, CheckboxProps, SwitchProps, FileInputProps, ColorInputProps, SkeletonProps, AnchorProps, StackProps, StyleProp, MantineColor, SimpleGridProps, CardProps as CardProps$1, MantineColorsTuple } from '@mantine/core';
|
|
3
|
+
import { MantineSize, TabsProps, TabsListProps, TabsPanelProps, TitleProps, TextProps, ButtonProps, BoxProps, TableProps, ModalProps, ThemeIconProps, ContainerProps, BadgeProps, TextInputProps, PasswordInputProps, TextareaProps, JsonInputProps, NumberInputProps, SliderProps, InputWrapperProps, RatingProps, PinInputProps, SelectProps, NativeSelectProps, MultiSelectProps, AutocompleteProps, TagsInputProps, RadioGroupProps, SegmentedControlProps, CheckboxProps, SwitchProps, FileInputProps, ColorInputProps, SkeletonProps, AnchorProps, StackProps, StyleProp, MantineColor, SimpleGridProps, CardProps as CardProps$1, MantineThemeOverride, MantineColorScheme, MantineColorsTuple } from '@mantine/core';
|
|
4
4
|
import React$1, { ReactNode, ComponentPropsWithoutRef, AnchorHTMLAttributes } from 'react';
|
|
5
5
|
import * as _mantine_core_lib_components_Modal_ModalCloseButton from '@mantine/core/lib/components/Modal/ModalCloseButton';
|
|
6
6
|
import * as _mantine_core_lib_components_Modal_ModalBody from '@mantine/core/lib/components/Modal/ModalBody';
|
|
@@ -904,7 +904,7 @@ declare const SdMapSingle: typeof Single;
|
|
|
904
904
|
declare const SdMapTabs: typeof Tabs;
|
|
905
905
|
|
|
906
906
|
interface SdBreadcrumbProps extends BoxProps {
|
|
907
|
-
navItems
|
|
907
|
+
navItems?: NavItem[];
|
|
908
908
|
/** 현재 경로. 생략하면 `usePathname()`으로 자동 추론한다. */
|
|
909
909
|
currentHref?: string;
|
|
910
910
|
/** 홈(첫 크럼) 링크 대상. 기본 `/`. */
|
|
@@ -919,7 +919,7 @@ interface SdBreadcrumbProps extends BoxProps {
|
|
|
919
919
|
* 조상 크럼은 클릭 가능한 링크(`SdLink.Sub`), 마지막(현재 페이지) 크럼은 href 없는
|
|
920
920
|
* `SdLink.Body`라 링크가 아닌 강조 텍스트(`SdText.Body`)로 폴백해 현재 위치를 나타낸다.
|
|
921
921
|
*/
|
|
922
|
-
declare function SdBreadcrumb({ navItems, currentHref, homeHref, homeLabel, ...boxProps }: SdBreadcrumbProps): react_jsx_runtime.JSX.Element;
|
|
922
|
+
declare function SdBreadcrumb({ navItems: navItemsProp, currentHref, homeHref, homeLabel, ...boxProps }: SdBreadcrumbProps): react_jsx_runtime.JSX.Element | undefined;
|
|
923
923
|
|
|
924
924
|
interface HeroCarouselProps {
|
|
925
925
|
slides: HeroSlide[];
|
|
@@ -1147,6 +1147,46 @@ declare const PageLayoutMinimal: typeof Minimal;
|
|
|
1147
1147
|
declare const PageLayoutBrand: typeof Brand;
|
|
1148
1148
|
declare const PageLayoutPlain: typeof Plain;
|
|
1149
1149
|
|
|
1150
|
+
/**
|
|
1151
|
+
* 소비자 앱의 **프로바이더/컨텍스트 조립**을 한 컴포넌트로 묶는다 —
|
|
1152
|
+
* `MantineProvider`(테마) + `SdToastProvider`(토스트 렌더 지점) + `NavProvider`(navItems Context).
|
|
1153
|
+
* 소비자는 이 셋을 매번 손으로 쌓는 대신 `<SdProvider>` 하나만 렌더한다.
|
|
1154
|
+
*
|
|
1155
|
+
* 헤더/푸터 크롬(`MainLayout`)이나 페이지 템플릿(`PageLayout`)은 여기 넣지 않는다 —
|
|
1156
|
+
* 그건 페이지마다 다를 수 있는 **레이아웃**이라 소비자가 `SdProvider` 안쪽에 직접 배치한다.
|
|
1157
|
+
* `SdProvider`가 `NavProvider`로 감싸므로 그 아래 `MainLayout`/`SdBreadcrumb`는 navItems를
|
|
1158
|
+
* Context에서 읽는다(브레드크럼은 prop 없이 동작).
|
|
1159
|
+
*
|
|
1160
|
+
* 담지 않는 것:
|
|
1161
|
+
* - 회사명/로고는 여기 없다 — `NEXT_PUBLIC_*` env var로 남는다. `t()`가 서버
|
|
1162
|
+
* 컴포넌트인 `SdText`/`SdTitle` 안에서 돌기 때문에 Context로 옮기면 `ui/`
|
|
1163
|
+
* 트리 전체가 client가 되어 flat export/서버 렌더 이점을 잃는다. (CLAUDE.md
|
|
1164
|
+
* §Consumer Config Injection 참고.)
|
|
1165
|
+
* - `ColorSchemeScript`와 Mantine CSS import는 `<head>`/서버 layout 몫이라
|
|
1166
|
+
* 여기서 빼둔다.
|
|
1167
|
+
*
|
|
1168
|
+
* 색상 오버라이드는 소비자의 `"use client"` 모듈에서 `mergeThemeOverrides(theme, …)`
|
|
1169
|
+
* 로 합친 결과를 `theme` prop에 넘긴다. 생략하면 프레임워크 기본 테마를 쓴다.
|
|
1170
|
+
*/
|
|
1171
|
+
declare function SdProvider({ children, theme, navItems, defaultColorScheme, }: {
|
|
1172
|
+
children: React.ReactNode;
|
|
1173
|
+
/** 생략 시 프레임워크 기본 테마. 색 오버라이드는 `mergeThemeOverrides`로 합쳐 넘긴다. */
|
|
1174
|
+
theme?: MantineThemeOverride;
|
|
1175
|
+
navItems: NavItem[];
|
|
1176
|
+
defaultColorScheme?: MantineColorScheme;
|
|
1177
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1178
|
+
|
|
1179
|
+
/**
|
|
1180
|
+
* navItems를 하위 트리에 제공한다. `SdProvider`가 자동으로 감싸므로, 그 아래의
|
|
1181
|
+
* `SdBreadcrumb`는 `navItems` prop 없이도 동작한다.
|
|
1182
|
+
*/
|
|
1183
|
+
declare function NavProvider({ children, navItems, }: {
|
|
1184
|
+
children: React.ReactNode;
|
|
1185
|
+
navItems: NavItem[];
|
|
1186
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1187
|
+
/** 가장 가까운 `NavProvider`가 제공하는 navItems. Provider가 없으면 빈 배열. */
|
|
1188
|
+
declare function useNav(): NavItem[];
|
|
1189
|
+
|
|
1150
1190
|
declare const theme: {
|
|
1151
1191
|
focusRing?: "auto" | "always" | "never" | undefined;
|
|
1152
1192
|
scale?: number | undefined;
|
|
@@ -1295,4 +1335,4 @@ declare const theme: {
|
|
|
1295
1335
|
} | undefined;
|
|
1296
1336
|
};
|
|
1297
1337
|
|
|
1298
|
-
export { type HeaderVariant, HeroCarousel, Logo, MainLayout, type NavItem, PageLayout, PageLayoutBrand, PageLayoutImage, PageLayoutMinimal, PageLayoutPlain, SdBadge, SdBadgeDefault, SdBadgePrimary, SdBadgeSuccess, SdBadgeWarning, SdBreadcrumb, SdButton, SdButtonCancel, SdButtonDelete, SdButtonDownload, SdButtonExcel, SdButtonGhost, SdButtonOutline, SdButtonPrimary, SdButtonSecondary, SdButtonSubmit, SdButtonWhite, SdClients, SdClientsGrid, SdClientsMarquee, SdContainer, SdCta, SdCtaBanner, SdCtaInline, SdCtaSubtle, SdErrorView, SdErrorViewNotFound, SdErrorViewPage, SdFaq, SdFaqDefault, SdFaqFilled, SdFaqWithHeader, SdFeatureSection, SdFeatures, SdFooter, SdHeader, SdHeaderMega, SdHeaderPanel, SdHeaderSimple, SdInput, SdInputAutocomplete, SdInputCheckbox, SdInputColor, SdInputDate, SdInputDateRange, SdInputEmail, SdInputFile, SdInputJson, SdInputMultiSelect, SdInputNativeSelect, SdInputNumber, SdInputPassword, SdInputPinCode, SdInputRadioGroup, SdInputRating, SdInputSegmented, SdInputSelect, SdInputSlider, SdInputSwitch, SdInputTags, SdInputText, SdInputTextarea, SdInputTime, SdLink, SdLinkBody, SdLinkHint, SdLinkStrong, SdLinkSub, SdLoginView, SdLoginViewCard, SdLoginViewSplit, SdMap, SdMapSingle, SdMapTabs, SdModal, SdNumberIcon, SdPricingCard, SdPricingCardDefault, SdPricingCardFeatured, SdPricingCardGrid, SdQuote, SdQuoteCard, SdQuotePlain, SdResult, SdResultError, SdResultSuccess, SdSkeleton, SdSkeletonAvatar, SdSkeletonCard, SdSkeletonImage, SdSkeletonText, SdSkeletonTitle, SdSolution, SdSolutionCard, SdSolutionCardGrid, SdSolutionCardItem, SdSolutionFiltered, SdSolutionList, SdSteps, SdStepsBubble, SdStepsCard, SdStepsSection, SdStepsStrip, SdTable, SdTableSpec, SdTabs, SdTabsOutline, SdTabsPills, SdTabsUnderline, SdTestimonial, SdTestimonialCard, SdTestimonialGrid, SdTestimonialStrip, SdText, SdTextBody, SdTextBox, SdTextBoxCard, SdTextBoxHero, SdTextBoxSection, SdTextBoxSub, SdTextError, SdTextEyebrow, SdTextHint, SdTextNumeric, SdTextStrong, SdTextSub, SdTimeline, SdTimelineSection, SdTitle, SdTitleCard, SdTitleDisplay, SdTitleSection, SdTitleSub, SdToast, SdToastClean, SdToastError, SdToastHide, SdToastInfo, SdToastLoading, SdToastProvider, SdToastSuccess, SdToastUpdate, SdToastWarning, theme };
|
|
1338
|
+
export { type HeaderVariant, HeroCarousel, Logo, MainLayout, type NavItem, NavProvider, PageLayout, PageLayoutBrand, PageLayoutImage, PageLayoutMinimal, PageLayoutPlain, SdBadge, SdBadgeDefault, SdBadgePrimary, SdBadgeSuccess, SdBadgeWarning, SdBreadcrumb, SdButton, SdButtonCancel, SdButtonDelete, SdButtonDownload, SdButtonExcel, SdButtonGhost, SdButtonOutline, SdButtonPrimary, SdButtonSecondary, SdButtonSubmit, SdButtonWhite, SdClients, SdClientsGrid, SdClientsMarquee, SdContainer, SdCta, SdCtaBanner, SdCtaInline, SdCtaSubtle, SdErrorView, SdErrorViewNotFound, SdErrorViewPage, SdFaq, SdFaqDefault, SdFaqFilled, SdFaqWithHeader, SdFeatureSection, SdFeatures, SdFooter, SdHeader, SdHeaderMega, SdHeaderPanel, SdHeaderSimple, SdInput, SdInputAutocomplete, SdInputCheckbox, SdInputColor, SdInputDate, SdInputDateRange, SdInputEmail, SdInputFile, SdInputJson, SdInputMultiSelect, SdInputNativeSelect, SdInputNumber, SdInputPassword, SdInputPinCode, SdInputRadioGroup, SdInputRating, SdInputSegmented, SdInputSelect, SdInputSlider, SdInputSwitch, SdInputTags, SdInputText, SdInputTextarea, SdInputTime, SdLink, SdLinkBody, SdLinkHint, SdLinkStrong, SdLinkSub, SdLoginView, SdLoginViewCard, SdLoginViewSplit, SdMap, SdMapSingle, SdMapTabs, SdModal, SdNumberIcon, SdPricingCard, SdPricingCardDefault, SdPricingCardFeatured, SdPricingCardGrid, SdProvider, SdQuote, SdQuoteCard, SdQuotePlain, SdResult, SdResultError, SdResultSuccess, SdSkeleton, SdSkeletonAvatar, SdSkeletonCard, SdSkeletonImage, SdSkeletonText, SdSkeletonTitle, SdSolution, SdSolutionCard, SdSolutionCardGrid, SdSolutionCardItem, SdSolutionFiltered, SdSolutionList, SdSteps, SdStepsBubble, SdStepsCard, SdStepsSection, SdStepsStrip, SdTable, SdTableSpec, SdTabs, SdTabsOutline, SdTabsPills, SdTabsUnderline, SdTestimonial, SdTestimonialCard, SdTestimonialGrid, SdTestimonialStrip, SdText, SdTextBody, SdTextBox, SdTextBoxCard, SdTextBoxHero, SdTextBoxSection, SdTextBoxSub, SdTextError, SdTextEyebrow, SdTextHint, SdTextNumeric, SdTextStrong, SdTextSub, SdTimeline, SdTimelineSection, SdTitle, SdTitleCard, SdTitleDisplay, SdTitleSection, SdTitleSub, SdToast, SdToastClean, SdToastError, SdToastHide, SdToastInfo, SdToastLoading, SdToastProvider, SdToastSuccess, SdToastUpdate, SdToastWarning, theme, useNav };
|