@lssm/lib.ui-kit 1.11.1 → 1.41.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/dist/-core/src/utils.js +10 -0
- package/dist/_virtual/rolldown_runtime.js +33 -0
- package/dist/node_modules/@hookform/resolvers/dist/resolvers.js +34 -0
- package/dist/node_modules/@hookform/resolvers/zod/dist/zod.js +118 -0
- package/dist/node_modules/@swc/helpers/cjs/_interop_require_default.js +14 -0
- package/dist/node_modules/@swc/helpers/cjs/_interop_require_wildcard.js +35 -0
- package/dist/node_modules/lucide-react/dist/esm/Icon.js +25 -0
- package/dist/node_modules/lucide-react/dist/esm/createLucideIcon.js +24 -0
- package/dist/node_modules/lucide-react/dist/esm/defaultAttributes.js +21 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-down.js +17 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-left.js +17 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-right.js +17 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevron-up.js +17 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-left.js +20 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/chevrons-right.js +20 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/ellipsis.js +33 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/funnel.js +17 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/house.js +20 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/loader-circle.js +17 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/plus.js +20 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/refresh-ccw.js +31 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/refresh-cw.js +31 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/search.js +22 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/triangle-alert.js +27 -0
- package/dist/node_modules/lucide-react/dist/esm/icons/x.js +20 -0
- package/dist/node_modules/lucide-react/dist/esm/shared/src/utils.js +22 -0
- package/dist/node_modules/next/dist/client/add-base-path.js +30 -0
- package/dist/node_modules/next/dist/client/add-locale.js +29 -0
- package/dist/node_modules/next/dist/client/detect-domain-locale.js +26 -0
- package/dist/node_modules/next/dist/client/get-domain-locale.js +41 -0
- package/dist/node_modules/next/dist/client/has-base-path.js +28 -0
- package/dist/node_modules/next/dist/client/link.js +311 -0
- package/dist/node_modules/next/dist/client/normalize-locale-path.js +30 -0
- package/dist/node_modules/next/dist/client/normalize-trailing-slash.js +34 -0
- package/dist/node_modules/next/dist/client/request-idle-callback.js +44 -0
- package/dist/node_modules/next/dist/client/resolve-href.js +86 -0
- package/dist/node_modules/next/dist/client/use-intersection.js +104 -0
- package/dist/node_modules/next/dist/client/use-merged-ref.js +56 -0
- package/dist/node_modules/next/dist/compiled/path-to-regexp/index.js +372 -0
- package/dist/node_modules/next/dist/lib/constants.js +316 -0
- package/dist/node_modules/next/dist/lib/route-pattern-normalizer.js +69 -0
- package/dist/node_modules/next/dist/shared/lib/escape-regexp.js +23 -0
- package/dist/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js +22 -0
- package/dist/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js +42 -0
- package/dist/node_modules/next/dist/shared/lib/invariant-error.js +23 -0
- package/dist/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js +23 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/add-locale.js +30 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js +24 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/app-paths.js +41 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/format-url.js +78 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js +151 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/get-segment-param.js +77 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/index.js +32 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/interception-routes.js +92 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js +41 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js +26 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/is-local-url.js +31 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/omit.js +24 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/parse-loader-tree.js +33 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/parse-path.js +36 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js +24 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/querystring.js +56 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js +26 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js +94 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/route-matcher.js +46 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/route-regex.js +203 -0
- package/dist/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js +167 -0
- package/dist/node_modules/next/dist/shared/lib/router-context.shared-runtime.js +20 -0
- package/dist/node_modules/next/dist/shared/lib/segment.js +80 -0
- package/dist/node_modules/next/dist/shared/lib/utils/error-once.js +25 -0
- package/dist/node_modules/next/dist/shared/lib/utils.js +172 -0
- package/dist/node_modules/next/link.js +12 -0
- package/dist/node_modules/react-hook-form/dist/index.esm.js +2074 -0
- package/dist/node_modules/zod/v4/classic/errors.js +29 -0
- package/dist/node_modules/zod/v4/classic/iso.js +37 -0
- package/dist/node_modules/zod/v4/classic/parse.js +19 -0
- package/dist/node_modules/zod/v4/classic/schemas.js +418 -0
- package/dist/node_modules/zod/v4/core/api.js +404 -0
- package/dist/node_modules/zod/v4/core/checks.js +225 -0
- package/dist/node_modules/zod/v4/core/core.js +61 -0
- package/dist/node_modules/zod/v4/core/errors.js +62 -0
- package/dist/node_modules/zod/v4/core/json-schema-processors.js +148 -0
- package/dist/node_modules/zod/v4/core/parse.js +109 -0
- package/dist/node_modules/zod/v4/core/regexes.js +57 -0
- package/dist/node_modules/zod/v4/core/registries.js +52 -0
- package/dist/node_modules/zod/v4/core/schemas.js +744 -0
- package/dist/node_modules/zod/v4/core/to-json-schema.js +260 -0
- package/dist/node_modules/zod/v4/core/util.js +155 -0
- package/dist/node_modules/zod/v4/core/versions.js +9 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/ui/accordion.js +1 -1
- package/dist/ui/alert-dialog.js +1 -1
- package/dist/ui/alert.js +1 -1
- package/dist/ui/atoms/LoadingSpinner/LoadingSpinner.js +3 -3
- package/dist/ui/atoms/Pagination/Pagination.js +4 -1
- package/dist/ui/atoms/SearchInput/SearchInput.js +2 -1
- package/dist/ui/avatar.js +1 -1
- package/dist/ui/badge.js +1 -1
- package/dist/ui/breadcrumb.js +4 -3
- package/dist/ui/button.js +1 -1
- package/dist/ui/card.js +1 -1
- package/dist/ui/checkbox.js +1 -1
- package/dist/ui/context-menu.js +1 -1
- package/dist/ui/date-picker.js +1 -1
- package/dist/ui/date-range-picker.js +1 -1
- package/dist/ui/dialog.js +1 -1
- package/dist/ui/dropdown-menu.js +1 -1
- package/dist/ui/empty-state.js +1 -1
- package/dist/ui/empty.js +1 -1
- package/dist/ui/fab.js +1 -1
- package/dist/ui/field.js +1 -1
- package/dist/ui/form.js +1 -1
- package/dist/ui/hover-card.js +1 -1
- package/dist/ui/input.js +1 -1
- package/dist/ui/label.js +1 -1
- package/dist/ui/link.js +1 -1
- package/dist/ui/marketing/Hero.js +1 -1
- package/dist/ui/marketing/PricingTable.js +1 -1
- package/dist/ui/menubar.js +1 -1
- package/dist/ui/molecules/SearchAndFilter/SearchAndFilter.js +4 -2
- package/dist/ui/nativewind-env.d.js +0 -0
- package/dist/ui/navigation-menu.js +1 -1
- package/dist/ui/organisms/ErrorBoundary/ErrorBoundary.js +5 -3
- package/dist/ui/organisms/ListPage/ListPage.js +12 -7
- package/dist/ui/page-header.js +1 -1
- package/dist/ui/popover.js +1 -1
- package/dist/ui/progress.js +1 -1
- package/dist/ui/radio-group.js +1 -1
- package/dist/ui/select.js +1 -1
- package/dist/ui/separator.js +1 -1
- package/dist/ui/skeleton.js +1 -1
- package/dist/ui/stack.js +1 -1
- package/dist/ui/stepper.js +1 -1
- package/dist/ui/switch.js +1 -1
- package/dist/ui/table.js +1 -1
- package/dist/ui/tabs.js +1 -1
- package/dist/ui/text.js +1 -1
- package/dist/ui/textarea.js +1 -1
- package/dist/ui/time-picker.js +1 -1
- package/dist/ui/toggle-group.js +1 -1
- package/dist/ui/toggle.js +1 -1
- package/dist/ui/tooltip.js +1 -1
- package/dist/ui/typography.js +1 -1
- package/package.json +204 -114
- package/dist/index.d.ts +0 -4
- package/dist/ui/accordion.d.ts +0 -35
- package/dist/ui/alert-dialog.d.ts +0 -71
- package/dist/ui/alert.d.ts +0 -36
- package/dist/ui/aspect-ratio.d.ts +0 -11
- package/dist/ui/atoms/FilterSelect/FilterSelect.d.ts +0 -7
- package/dist/ui/atoms/FilterSelect/index.d.ts +0 -3
- package/dist/ui/atoms/FilterSelect/types.d.ts +0 -18
- package/dist/ui/atoms/LoadingSpinner/LoadingSpinner.d.ts +0 -22
- package/dist/ui/atoms/LoadingSpinner/index.d.ts +0 -2
- package/dist/ui/atoms/Pagination/Pagination.d.ts +0 -7
- package/dist/ui/atoms/Pagination/index.d.ts +0 -3
- package/dist/ui/atoms/Pagination/types.d.ts +0 -15
- package/dist/ui/atoms/SearchInput/SearchInput.d.ts +0 -7
- package/dist/ui/atoms/SearchInput/index.d.ts +0 -3
- package/dist/ui/atoms/SearchInput/types.d.ts +0 -12
- package/dist/ui/avatar.d.ts +0 -27
- package/dist/ui/badge.d.ts +0 -21
- package/dist/ui/breadcrumb.d.ts +0 -38
- package/dist/ui/button.d.ts +0 -25
- package/dist/ui/card.d.ts +0 -43
- package/dist/ui/carousel.d.ts +0 -4
- package/dist/ui/checkbox.d.ts +0 -16
- package/dist/ui/collapsible.d.ts +0 -24
- package/dist/ui/command.d.ts +0 -4
- package/dist/ui/context-menu.d.ts +0 -109
- package/dist/ui/date-picker.d.ts +0 -23
- package/dist/ui/date-range-picker.d.ts +0 -30
- package/dist/ui/datetime-picker.d.ts +0 -27
- package/dist/ui/dialog.d.ts +0 -68
- package/dist/ui/dropdown-menu.d.ts +0 -111
- package/dist/ui/empty-state.d.ts +0 -28
- package/dist/ui/empty.d.ts +0 -36
- package/dist/ui/fab.d.ts +0 -35
- package/dist/ui/field.d.ts +0 -66
- package/dist/ui/form.d.ts +0 -49
- package/dist/ui/hover-card.d.ts +0 -29
- package/dist/ui/icons/Check.d.ts +0 -2
- package/dist/ui/icons/ChevronDown.d.ts +0 -2
- package/dist/ui/icons/ChevronRight.d.ts +0 -2
- package/dist/ui/icons/ChevronUp.d.ts +0 -2
- package/dist/ui/icons/CircleUser.d.ts +0 -2
- package/dist/ui/icons/Info.d.ts +0 -2
- package/dist/ui/icons/Key.d.ts +0 -2
- package/dist/ui/icons/MoonStar.d.ts +0 -2
- package/dist/ui/icons/Sun.d.ts +0 -2
- package/dist/ui/icons/X.d.ts +0 -2
- package/dist/ui/icons/iconWithClassName.d.ts +0 -6
- package/dist/ui/input.d.ts +0 -14
- package/dist/ui/label.d.ts +0 -15
- package/dist/ui/link.d.ts +0 -13
- package/dist/ui/loading-button.d.ts +0 -19
- package/dist/ui/loading-overlay.d.ts +0 -15
- package/dist/ui/loading-screen.d.ts +0 -13
- package/dist/ui/marketing/FeatureGrid.d.ts +0 -20
- package/dist/ui/marketing/Hero.d.ts +0 -27
- package/dist/ui/marketing/PricingTable.d.ts +0 -24
- package/dist/ui/marketing/index.d.ts +0 -4
- package/dist/ui/menubar.d.ts +0 -114
- package/dist/ui/molecules/Autocomplete/index.d.ts +0 -4
- package/dist/ui/molecules/SearchAndFilter/SearchAndFilter.d.ts +0 -7
- package/dist/ui/molecules/SearchAndFilter/index.d.ts +0 -3
- package/dist/ui/molecules/SearchAndFilter/types.d.ts +0 -24
- package/dist/ui/molecules/SkeletonList.d.ts +0 -15
- package/dist/ui/nativewind-env.d.ts +0 -1
- package/dist/ui/navigation-menu.d.ts +0 -67
- package/dist/ui/organisms/ErrorBoundary/ErrorBoundary.d.ts +0 -29
- package/dist/ui/organisms/ErrorBoundary/index.d.ts +0 -2
- package/dist/ui/organisms/ListPage/ListPage.d.ts +0 -28
- package/dist/ui/organisms/ListPage/index.d.ts +0 -3
- package/dist/ui/organisms/ListPage/types.d.ts +0 -41
- package/dist/ui/page-header.d.ts +0 -26
- package/dist/ui/password-strength.d.ts +0 -20
- package/dist/ui/popover.d.ts +0 -29
- package/dist/ui/progress.d.ts +0 -16
- package/dist/ui/radio-group.d.ts +0 -14
- package/dist/ui/select.d.ts +0 -83
- package/dist/ui/separator.d.ts +0 -15
- package/dist/ui/sheet.d.ts +0 -4
- package/dist/ui/sidebar.d.ts +0 -4
- package/dist/ui/skeleton.d.ts +0 -11
- package/dist/ui/stack.d.ts +0 -76
- package/dist/ui/stepper.d.ts +0 -22
- package/dist/ui/switch.d.ts +0 -14
- package/dist/ui/table.d.ts +0 -50
- package/dist/ui/tabs.d.ts +0 -32
- package/dist/ui/text.d.ts +0 -20
- package/dist/ui/textarea.d.ts +0 -9
- package/dist/ui/time-picker.d.ts +0 -21
- package/dist/ui/toggle-group.d.ts +0 -35
- package/dist/ui/toggle.d.ts +0 -33
- package/dist/ui/tooltip.d.ts +0 -31
- package/dist/ui/typography.d.ts +0 -64
- package/dist/ui/useColorScheme.d.ts +0 -11
- package/dist/ui/useListState.d.ts +0 -33
- package/dist/ui/usecases/UseCaseCard.d.ts +0 -18
- package/dist/ui/usecases/UserStoryCard.d.ts +0 -14
- package/dist/ui/usecases/index.d.ts +0 -3
- package/dist/ui/utils.d.ts +0 -6
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
//#region ui/atoms/SearchInput/types.d.ts
|
|
2
|
-
interface SearchInputProps {
|
|
3
|
-
value: string;
|
|
4
|
-
onChange: (value: string) => void;
|
|
5
|
-
placeholder?: string;
|
|
6
|
-
onClear?: () => void;
|
|
7
|
-
disabled?: boolean;
|
|
8
|
-
className?: string;
|
|
9
|
-
autoFocus?: boolean;
|
|
10
|
-
}
|
|
11
|
-
//#endregion
|
|
12
|
-
export { SearchInputProps };
|
package/dist/ui/avatar.d.ts
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import * as React$1 from "react";
|
|
2
|
-
import * as react_jsx_runtime7 from "react/jsx-runtime";
|
|
3
|
-
import * as AvatarPrimitive from "@rn-primitives/avatar";
|
|
4
|
-
|
|
5
|
-
//#region ui/avatar.d.ts
|
|
6
|
-
declare function Avatar({
|
|
7
|
-
className,
|
|
8
|
-
...props
|
|
9
|
-
}: AvatarPrimitive.RootProps & {
|
|
10
|
-
ref?: React$1.RefObject<AvatarPrimitive.RootRef>;
|
|
11
|
-
}): react_jsx_runtime7.JSX.Element;
|
|
12
|
-
declare function AvatarImage({
|
|
13
|
-
className,
|
|
14
|
-
alt,
|
|
15
|
-
...props
|
|
16
|
-
}: AvatarPrimitive.ImageProps & {
|
|
17
|
-
ref?: React$1.RefObject<AvatarPrimitive.ImageRef>;
|
|
18
|
-
alt?: string;
|
|
19
|
-
}): react_jsx_runtime7.JSX.Element;
|
|
20
|
-
declare function AvatarFallback({
|
|
21
|
-
className,
|
|
22
|
-
...props
|
|
23
|
-
}: AvatarPrimitive.FallbackProps & {
|
|
24
|
-
ref?: React$1.RefObject<AvatarPrimitive.FallbackRef>;
|
|
25
|
-
}): react_jsx_runtime7.JSX.Element;
|
|
26
|
-
//#endregion
|
|
27
|
-
export { Avatar, AvatarFallback, AvatarImage };
|
package/dist/ui/badge.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import * as React$1 from "react";
|
|
2
|
-
import { View } from "react-native";
|
|
3
|
-
import * as react_jsx_runtime17 from "react/jsx-runtime";
|
|
4
|
-
import { VariantProps } from "class-variance-authority";
|
|
5
|
-
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
6
|
-
|
|
7
|
-
//#region ui/badge.d.ts
|
|
8
|
-
declare const badgeVariants: (props?: ({
|
|
9
|
-
variant?: "default" | "destructive" | "secondary" | "outline" | null | undefined;
|
|
10
|
-
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
11
|
-
type BadgeProps = React$1.ComponentProps<typeof View> & VariantProps<typeof badgeVariants> & {
|
|
12
|
-
labelClassName?: string;
|
|
13
|
-
};
|
|
14
|
-
declare function Badge({
|
|
15
|
-
className,
|
|
16
|
-
variant,
|
|
17
|
-
labelClassName,
|
|
18
|
-
...props
|
|
19
|
-
}: BadgeProps): react_jsx_runtime17.JSX.Element;
|
|
20
|
-
//#endregion
|
|
21
|
-
export { Badge, badgeVariants };
|
package/dist/ui/breadcrumb.d.ts
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import * as React$1 from "react";
|
|
2
|
-
import { View } from "react-native";
|
|
3
|
-
import * as react_jsx_runtime19 from "react/jsx-runtime";
|
|
4
|
-
|
|
5
|
-
//#region ui/breadcrumb.d.ts
|
|
6
|
-
declare function Breadcrumb({
|
|
7
|
-
...props
|
|
8
|
-
}: React$1.ComponentProps<'nav'>): react_jsx_runtime19.JSX.Element;
|
|
9
|
-
declare function BreadcrumbList({
|
|
10
|
-
className,
|
|
11
|
-
...props
|
|
12
|
-
}: React$1.ComponentProps<typeof View>): react_jsx_runtime19.JSX.Element;
|
|
13
|
-
declare function BreadcrumbItem({
|
|
14
|
-
className,
|
|
15
|
-
...props
|
|
16
|
-
}: React$1.ComponentProps<typeof View>): react_jsx_runtime19.JSX.Element;
|
|
17
|
-
declare function BreadcrumbLink({
|
|
18
|
-
asChild,
|
|
19
|
-
className,
|
|
20
|
-
...props
|
|
21
|
-
}: React$1.ComponentProps<typeof View> & {
|
|
22
|
-
asChild?: boolean;
|
|
23
|
-
}): react_jsx_runtime19.JSX.Element;
|
|
24
|
-
declare function BreadcrumbPage({
|
|
25
|
-
className,
|
|
26
|
-
...props
|
|
27
|
-
}: React$1.ComponentProps<typeof View>): react_jsx_runtime19.JSX.Element;
|
|
28
|
-
declare function BreadcrumbSeparator({
|
|
29
|
-
children,
|
|
30
|
-
className,
|
|
31
|
-
...props
|
|
32
|
-
}: React$1.ComponentProps<typeof View>): react_jsx_runtime19.JSX.Element;
|
|
33
|
-
declare function BreadcrumbEllipsis({
|
|
34
|
-
className,
|
|
35
|
-
...props
|
|
36
|
-
}: React$1.ComponentProps<typeof View>): react_jsx_runtime19.JSX.Element;
|
|
37
|
-
//#endregion
|
|
38
|
-
export { Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator };
|
package/dist/ui/button.d.ts
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import * as React$1 from "react";
|
|
2
|
-
import { Pressable } from "react-native";
|
|
3
|
-
import * as react_jsx_runtime18 from "react/jsx-runtime";
|
|
4
|
-
import { VariantProps } from "class-variance-authority";
|
|
5
|
-
import * as class_variance_authority_types1 from "class-variance-authority/types";
|
|
6
|
-
|
|
7
|
-
//#region ui/button.d.ts
|
|
8
|
-
declare const buttonVariants: (props?: ({
|
|
9
|
-
variant?: "default" | "destructive" | "secondary" | "outline" | "ghost" | "link" | null | undefined;
|
|
10
|
-
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
11
|
-
} & class_variance_authority_types1.ClassProp) | undefined) => string;
|
|
12
|
-
declare const buttonTextVariants: (props?: ({
|
|
13
|
-
variant?: "default" | "destructive" | "secondary" | "outline" | "ghost" | "link" | null | undefined;
|
|
14
|
-
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
15
|
-
} & class_variance_authority_types1.ClassProp) | undefined) => string;
|
|
16
|
-
type ButtonProps = React$1.ComponentProps<typeof Pressable> & VariantProps<typeof buttonVariants>;
|
|
17
|
-
declare function Button({
|
|
18
|
-
ref,
|
|
19
|
-
className,
|
|
20
|
-
variant,
|
|
21
|
-
size,
|
|
22
|
-
...props
|
|
23
|
-
}: ButtonProps): react_jsx_runtime18.JSX.Element;
|
|
24
|
-
//#endregion
|
|
25
|
-
export { Button, type ButtonProps, buttonTextVariants, buttonVariants };
|
package/dist/ui/card.d.ts
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import * as React$1 from "react";
|
|
2
|
-
import { Text, TextProps, View, ViewProps } from "react-native";
|
|
3
|
-
import * as react_jsx_runtime27 from "react/jsx-runtime";
|
|
4
|
-
|
|
5
|
-
//#region ui/card.d.ts
|
|
6
|
-
declare function Card({
|
|
7
|
-
className,
|
|
8
|
-
...props
|
|
9
|
-
}: ViewProps & {
|
|
10
|
-
ref?: React$1.RefObject<View>;
|
|
11
|
-
}): react_jsx_runtime27.JSX.Element;
|
|
12
|
-
declare function CardHeader({
|
|
13
|
-
className,
|
|
14
|
-
...props
|
|
15
|
-
}: ViewProps & {
|
|
16
|
-
ref?: React$1.RefObject<View>;
|
|
17
|
-
}): react_jsx_runtime27.JSX.Element;
|
|
18
|
-
declare function CardTitle({
|
|
19
|
-
className,
|
|
20
|
-
...props
|
|
21
|
-
}: TextProps & {
|
|
22
|
-
ref?: React$1.RefObject<Text>;
|
|
23
|
-
}): react_jsx_runtime27.JSX.Element;
|
|
24
|
-
declare function CardDescription({
|
|
25
|
-
className,
|
|
26
|
-
...props
|
|
27
|
-
}: TextProps & {
|
|
28
|
-
ref?: React$1.RefObject<Text>;
|
|
29
|
-
}): react_jsx_runtime27.JSX.Element;
|
|
30
|
-
declare function CardContent({
|
|
31
|
-
className,
|
|
32
|
-
...props
|
|
33
|
-
}: ViewProps & {
|
|
34
|
-
ref?: React$1.RefObject<View>;
|
|
35
|
-
}): react_jsx_runtime27.JSX.Element;
|
|
36
|
-
declare function CardFooter({
|
|
37
|
-
className,
|
|
38
|
-
...props
|
|
39
|
-
}: ViewProps & {
|
|
40
|
-
ref?: React$1.RefObject<View>;
|
|
41
|
-
}): react_jsx_runtime27.JSX.Element;
|
|
42
|
-
//#endregion
|
|
43
|
-
export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle };
|
package/dist/ui/carousel.d.ts
DELETED
package/dist/ui/checkbox.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import * as React$1 from "react";
|
|
2
|
-
import * as react_native5 from "react-native";
|
|
3
|
-
|
|
4
|
-
//#region ui/checkbox.d.ts
|
|
5
|
-
declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<Omit<react_native5.PressableProps & React$1.RefAttributes<react_native5.View>, "ref"> & {
|
|
6
|
-
asChild?: boolean;
|
|
7
|
-
} & {
|
|
8
|
-
onKeyDown?: (ev: React$1.KeyboardEvent) => void;
|
|
9
|
-
onKeyUp?: (ev: React$1.KeyboardEvent) => void;
|
|
10
|
-
} & {
|
|
11
|
-
checked: boolean;
|
|
12
|
-
onCheckedChange: (checked: boolean) => void;
|
|
13
|
-
disabled?: boolean;
|
|
14
|
-
} & React$1.RefAttributes<react_native5.View>, "ref"> & React$1.RefAttributes<react_native5.View>>;
|
|
15
|
-
//#endregion
|
|
16
|
-
export { Checkbox };
|
package/dist/ui/collapsible.d.ts
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import * as react1 from "react";
|
|
2
|
-
import * as react_native9 from "react-native";
|
|
3
|
-
import * as _rn_primitives_types0 from "@rn-primitives/types";
|
|
4
|
-
|
|
5
|
-
//#region ui/collapsible.d.ts
|
|
6
|
-
declare const Collapsible: react1.ForwardRefExoticComponent<react_native9.ViewProps & {
|
|
7
|
-
asChild?: boolean;
|
|
8
|
-
} & {
|
|
9
|
-
open?: boolean;
|
|
10
|
-
defaultOpen?: boolean;
|
|
11
|
-
onOpenChange?: (open: boolean) => void;
|
|
12
|
-
disabled?: boolean;
|
|
13
|
-
} & react1.RefAttributes<react_native9.View>>;
|
|
14
|
-
declare const CollapsibleTrigger: react1.ForwardRefExoticComponent<Omit<react_native9.PressableProps & react1.RefAttributes<react_native9.View>, "ref"> & {
|
|
15
|
-
asChild?: boolean;
|
|
16
|
-
} & {
|
|
17
|
-
onKeyDown?: (ev: React.KeyboardEvent) => void;
|
|
18
|
-
onKeyUp?: (ev: React.KeyboardEvent) => void;
|
|
19
|
-
} & react1.RefAttributes<react_native9.View>>;
|
|
20
|
-
declare const CollapsibleContent: react1.ForwardRefExoticComponent<_rn_primitives_types0.ForceMountable & react_native9.ViewProps & {
|
|
21
|
-
asChild?: boolean;
|
|
22
|
-
} & react1.RefAttributes<react_native9.View>>;
|
|
23
|
-
//#endregion
|
|
24
|
-
export { Collapsible, CollapsibleContent, CollapsibleTrigger };
|
package/dist/ui/command.d.ts
DELETED
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
import * as React$1 from "react";
|
|
2
|
-
import * as react_native28 from "react-native";
|
|
3
|
-
import { StyleProp, TextProps, View, ViewStyle } from "react-native";
|
|
4
|
-
import * as react_jsx_runtime47 from "react/jsx-runtime";
|
|
5
|
-
import * as _rn_primitives_context_menu0 from "@rn-primitives/context-menu";
|
|
6
|
-
|
|
7
|
-
//#region ui/context-menu.d.ts
|
|
8
|
-
declare const ContextMenu: React$1.ForwardRefExoticComponent<react_native28.ViewProps & {
|
|
9
|
-
asChild?: boolean;
|
|
10
|
-
} & {
|
|
11
|
-
onOpenChange?: (open: boolean) => void;
|
|
12
|
-
relativeTo?: "longPress" | "trigger";
|
|
13
|
-
} & React$1.RefAttributes<View>>;
|
|
14
|
-
declare const ContextMenuTrigger: React$1.ForwardRefExoticComponent<Omit<react_native28.PressableProps & React$1.RefAttributes<View>, "ref"> & {
|
|
15
|
-
asChild?: boolean;
|
|
16
|
-
} & {
|
|
17
|
-
onKeyDown?: (ev: React$1.KeyboardEvent) => void;
|
|
18
|
-
onKeyUp?: (ev: React$1.KeyboardEvent) => void;
|
|
19
|
-
} & React$1.RefAttributes<_rn_primitives_context_menu0.TriggerRef>>;
|
|
20
|
-
declare const ContextMenuGroup: React$1.ForwardRefExoticComponent<react_native28.ViewProps & {
|
|
21
|
-
asChild?: boolean;
|
|
22
|
-
} & React$1.RefAttributes<View>>;
|
|
23
|
-
declare const ContextMenuSub: React$1.ForwardRefExoticComponent<react_native28.ViewProps & {
|
|
24
|
-
asChild?: boolean;
|
|
25
|
-
} & {
|
|
26
|
-
defaultOpen?: boolean;
|
|
27
|
-
open?: boolean;
|
|
28
|
-
onOpenChange?: (value: boolean) => void;
|
|
29
|
-
} & React$1.RefAttributes<View>>;
|
|
30
|
-
declare const ContextMenuRadioGroup: React$1.ForwardRefExoticComponent<react_native28.ViewProps & {
|
|
31
|
-
asChild?: boolean;
|
|
32
|
-
} & {
|
|
33
|
-
value: string | undefined;
|
|
34
|
-
onValueChange: (value: string) => void;
|
|
35
|
-
} & React$1.RefAttributes<View>>;
|
|
36
|
-
declare function ContextMenuSubTrigger({
|
|
37
|
-
className,
|
|
38
|
-
inset,
|
|
39
|
-
children,
|
|
40
|
-
...props
|
|
41
|
-
}: _rn_primitives_context_menu0.SubTriggerProps & {
|
|
42
|
-
ref?: React$1.RefObject<_rn_primitives_context_menu0.SubTriggerRef>;
|
|
43
|
-
children?: React$1.ReactNode;
|
|
44
|
-
inset?: boolean;
|
|
45
|
-
}): react_jsx_runtime47.JSX.Element;
|
|
46
|
-
declare function ContextMenuSubContent({
|
|
47
|
-
className,
|
|
48
|
-
...props
|
|
49
|
-
}: _rn_primitives_context_menu0.SubContentProps & {
|
|
50
|
-
ref?: React$1.RefObject<_rn_primitives_context_menu0.SubContentRef>;
|
|
51
|
-
}): react_jsx_runtime47.JSX.Element;
|
|
52
|
-
declare function ContextMenuContent({
|
|
53
|
-
className,
|
|
54
|
-
overlayClassName,
|
|
55
|
-
overlayStyle,
|
|
56
|
-
portalHost,
|
|
57
|
-
...props
|
|
58
|
-
}: _rn_primitives_context_menu0.ContentProps & {
|
|
59
|
-
ref?: React$1.RefObject<_rn_primitives_context_menu0.ContentRef>;
|
|
60
|
-
overlayStyle?: StyleProp<ViewStyle>;
|
|
61
|
-
overlayClassName?: string;
|
|
62
|
-
portalHost?: string;
|
|
63
|
-
}): react_jsx_runtime47.JSX.Element;
|
|
64
|
-
declare function ContextMenuItem({
|
|
65
|
-
className,
|
|
66
|
-
inset,
|
|
67
|
-
...props
|
|
68
|
-
}: _rn_primitives_context_menu0.ItemProps & {
|
|
69
|
-
ref?: React$1.RefObject<_rn_primitives_context_menu0.ItemRef>;
|
|
70
|
-
className?: string;
|
|
71
|
-
inset?: boolean;
|
|
72
|
-
}): react_jsx_runtime47.JSX.Element;
|
|
73
|
-
declare function ContextMenuCheckboxItem({
|
|
74
|
-
className,
|
|
75
|
-
children,
|
|
76
|
-
...props
|
|
77
|
-
}: _rn_primitives_context_menu0.CheckboxItemProps & {
|
|
78
|
-
ref?: React$1.RefObject<_rn_primitives_context_menu0.CheckboxItemRef>;
|
|
79
|
-
children?: React$1.ReactNode;
|
|
80
|
-
}): react_jsx_runtime47.JSX.Element;
|
|
81
|
-
declare function ContextMenuRadioItem({
|
|
82
|
-
className,
|
|
83
|
-
children,
|
|
84
|
-
...props
|
|
85
|
-
}: _rn_primitives_context_menu0.RadioItemProps & {
|
|
86
|
-
ref?: React$1.RefObject<_rn_primitives_context_menu0.RadioItemRef>;
|
|
87
|
-
children?: React$1.ReactNode;
|
|
88
|
-
}): react_jsx_runtime47.JSX.Element;
|
|
89
|
-
declare function ContextMenuLabel({
|
|
90
|
-
className,
|
|
91
|
-
inset,
|
|
92
|
-
...props
|
|
93
|
-
}: _rn_primitives_context_menu0.LabelProps & {
|
|
94
|
-
ref?: React$1.RefObject<_rn_primitives_context_menu0.LabelRef>;
|
|
95
|
-
className?: string;
|
|
96
|
-
inset?: boolean;
|
|
97
|
-
}): react_jsx_runtime47.JSX.Element;
|
|
98
|
-
declare function ContextMenuSeparator({
|
|
99
|
-
className,
|
|
100
|
-
...props
|
|
101
|
-
}: _rn_primitives_context_menu0.SeparatorProps & {
|
|
102
|
-
ref?: React$1.RefObject<_rn_primitives_context_menu0.SeparatorRef>;
|
|
103
|
-
}): react_jsx_runtime47.JSX.Element;
|
|
104
|
-
declare function ContextMenuShortcut({
|
|
105
|
-
className,
|
|
106
|
-
...props
|
|
107
|
-
}: TextProps): react_jsx_runtime47.JSX.Element;
|
|
108
|
-
//#endregion
|
|
109
|
-
export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger };
|
package/dist/ui/date-picker.d.ts
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import * as react_jsx_runtime46 from "react/jsx-runtime";
|
|
2
|
-
|
|
3
|
-
//#region ui/date-picker.d.ts
|
|
4
|
-
interface DatePickerProps {
|
|
5
|
-
value: Date | null;
|
|
6
|
-
onChange: (date: Date | null) => void;
|
|
7
|
-
disabled?: boolean;
|
|
8
|
-
minDate?: Date;
|
|
9
|
-
maxDate?: Date;
|
|
10
|
-
placeholder?: string;
|
|
11
|
-
className?: string;
|
|
12
|
-
}
|
|
13
|
-
declare function DatePicker({
|
|
14
|
-
value,
|
|
15
|
-
onChange,
|
|
16
|
-
disabled,
|
|
17
|
-
minDate,
|
|
18
|
-
maxDate,
|
|
19
|
-
placeholder,
|
|
20
|
-
className
|
|
21
|
-
}: DatePickerProps): react_jsx_runtime46.JSX.Element;
|
|
22
|
-
//#endregion
|
|
23
|
-
export { DatePicker, DatePickerProps };
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import * as react_jsx_runtime58 from "react/jsx-runtime";
|
|
2
|
-
|
|
3
|
-
//#region ui/date-range-picker.d.ts
|
|
4
|
-
interface DateRange {
|
|
5
|
-
start: Date | null;
|
|
6
|
-
end: Date | null;
|
|
7
|
-
}
|
|
8
|
-
interface DateRangePickerProps {
|
|
9
|
-
value: DateRange;
|
|
10
|
-
onChange: (range: DateRange) => void;
|
|
11
|
-
disabled?: boolean;
|
|
12
|
-
minDate?: Date;
|
|
13
|
-
maxDate?: Date;
|
|
14
|
-
placeholders?: {
|
|
15
|
-
start?: string;
|
|
16
|
-
end?: string;
|
|
17
|
-
};
|
|
18
|
-
className?: string;
|
|
19
|
-
}
|
|
20
|
-
declare function DateRangePicker({
|
|
21
|
-
value,
|
|
22
|
-
onChange,
|
|
23
|
-
disabled,
|
|
24
|
-
minDate,
|
|
25
|
-
maxDate,
|
|
26
|
-
placeholders,
|
|
27
|
-
className
|
|
28
|
-
}: DateRangePickerProps): react_jsx_runtime58.JSX.Element;
|
|
29
|
-
//#endregion
|
|
30
|
-
export { DateRange, DateRangePicker, DateRangePickerProps };
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import * as react_jsx_runtime57 from "react/jsx-runtime";
|
|
2
|
-
|
|
3
|
-
//#region ui/datetime-picker.d.ts
|
|
4
|
-
interface DateTimePickerProps {
|
|
5
|
-
value: Date | null;
|
|
6
|
-
onChange: (date: Date | null) => void;
|
|
7
|
-
disabled?: boolean;
|
|
8
|
-
minDate?: Date;
|
|
9
|
-
maxDate?: Date;
|
|
10
|
-
datePlaceholder?: string;
|
|
11
|
-
timePlaceholder?: string;
|
|
12
|
-
is24Hour?: boolean;
|
|
13
|
-
className?: string;
|
|
14
|
-
}
|
|
15
|
-
declare function DateTimePicker({
|
|
16
|
-
value,
|
|
17
|
-
onChange,
|
|
18
|
-
disabled,
|
|
19
|
-
minDate,
|
|
20
|
-
maxDate,
|
|
21
|
-
datePlaceholder,
|
|
22
|
-
timePlaceholder,
|
|
23
|
-
is24Hour,
|
|
24
|
-
className
|
|
25
|
-
}: DateTimePickerProps): react_jsx_runtime57.JSX.Element;
|
|
26
|
-
//#endregion
|
|
27
|
-
export { DateTimePicker, DateTimePickerProps };
|
package/dist/ui/dialog.d.ts
DELETED
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import * as React$1 from "react";
|
|
2
|
-
import * as react_native33 from "react-native";
|
|
3
|
-
import { View, ViewProps } from "react-native";
|
|
4
|
-
import * as react_jsx_runtime62 from "react/jsx-runtime";
|
|
5
|
-
import * as DialogPrimitive from "@rn-primitives/dialog";
|
|
6
|
-
|
|
7
|
-
//#region ui/dialog.d.ts
|
|
8
|
-
declare const Dialog: React$1.ForwardRefExoticComponent<ViewProps & {
|
|
9
|
-
asChild?: boolean;
|
|
10
|
-
} & {
|
|
11
|
-
open?: boolean;
|
|
12
|
-
defaultOpen?: boolean;
|
|
13
|
-
onOpenChange?: (value: boolean) => void;
|
|
14
|
-
} & React$1.RefAttributes<View>>;
|
|
15
|
-
declare const DialogTrigger: React$1.ForwardRefExoticComponent<Omit<react_native33.PressableProps & React$1.RefAttributes<View>, "ref"> & {
|
|
16
|
-
asChild?: boolean;
|
|
17
|
-
} & {
|
|
18
|
-
onKeyDown?: (ev: React$1.KeyboardEvent) => void;
|
|
19
|
-
onKeyUp?: (ev: React$1.KeyboardEvent) => void;
|
|
20
|
-
} & React$1.RefAttributes<View>>;
|
|
21
|
-
declare const DialogPortal: typeof DialogPrimitive.Portal;
|
|
22
|
-
declare const DialogClose: React$1.ForwardRefExoticComponent<Omit<react_native33.PressableProps & React$1.RefAttributes<View>, "ref"> & {
|
|
23
|
-
asChild?: boolean;
|
|
24
|
-
} & {
|
|
25
|
-
onKeyDown?: (ev: React$1.KeyboardEvent) => void;
|
|
26
|
-
onKeyUp?: (ev: React$1.KeyboardEvent) => void;
|
|
27
|
-
} & React$1.RefAttributes<View>>;
|
|
28
|
-
declare function DialogOverlayNative({
|
|
29
|
-
className,
|
|
30
|
-
children,
|
|
31
|
-
...props
|
|
32
|
-
}: DialogPrimitive.OverlayProps & {
|
|
33
|
-
ref?: React$1.RefObject<DialogPrimitive.OverlayRef>;
|
|
34
|
-
children?: React$1.ReactNode;
|
|
35
|
-
}): react_jsx_runtime62.JSX.Element;
|
|
36
|
-
declare const DialogOverlay: typeof DialogOverlayNative;
|
|
37
|
-
declare function DialogContent({
|
|
38
|
-
className,
|
|
39
|
-
children,
|
|
40
|
-
portalHost,
|
|
41
|
-
...props
|
|
42
|
-
}: DialogPrimitive.ContentProps & {
|
|
43
|
-
ref?: React$1.RefObject<DialogPrimitive.ContentRef>;
|
|
44
|
-
className?: string;
|
|
45
|
-
portalHost?: string;
|
|
46
|
-
}): react_jsx_runtime62.JSX.Element;
|
|
47
|
-
declare function DialogHeader({
|
|
48
|
-
className,
|
|
49
|
-
...props
|
|
50
|
-
}: ViewProps): react_jsx_runtime62.JSX.Element;
|
|
51
|
-
declare function DialogFooter({
|
|
52
|
-
className,
|
|
53
|
-
...props
|
|
54
|
-
}: ViewProps): react_jsx_runtime62.JSX.Element;
|
|
55
|
-
declare function DialogTitle({
|
|
56
|
-
className,
|
|
57
|
-
...props
|
|
58
|
-
}: DialogPrimitive.TitleProps & {
|
|
59
|
-
ref?: React$1.RefObject<DialogPrimitive.TitleRef>;
|
|
60
|
-
}): react_jsx_runtime62.JSX.Element;
|
|
61
|
-
declare function DialogDescription({
|
|
62
|
-
className,
|
|
63
|
-
...props
|
|
64
|
-
}: DialogPrimitive.DescriptionProps & {
|
|
65
|
-
ref?: React$1.RefObject<DialogPrimitive.DescriptionRef>;
|
|
66
|
-
}): react_jsx_runtime62.JSX.Element;
|
|
67
|
-
//#endregion
|
|
68
|
-
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger };
|
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
import * as React$1 from "react";
|
|
2
|
-
import * as react_native35 from "react-native";
|
|
3
|
-
import { StyleProp, TextProps, View, ViewStyle } from "react-native";
|
|
4
|
-
import * as react_jsx_runtime70 from "react/jsx-runtime";
|
|
5
|
-
import * as _rn_primitives_dropdown_menu0 from "@rn-primitives/dropdown-menu";
|
|
6
|
-
|
|
7
|
-
//#region ui/dropdown-menu.d.ts
|
|
8
|
-
declare const DropdownMenu: React$1.ForwardRefExoticComponent<react_native35.ViewProps & {
|
|
9
|
-
asChild?: boolean;
|
|
10
|
-
} & {
|
|
11
|
-
onOpenChange?: (open: boolean) => void;
|
|
12
|
-
} & React$1.RefAttributes<View>>;
|
|
13
|
-
declare const DropdownMenuTrigger: React$1.ForwardRefExoticComponent<Omit<react_native35.PressableProps & React$1.RefAttributes<View>, "ref"> & {
|
|
14
|
-
asChild?: boolean;
|
|
15
|
-
} & {
|
|
16
|
-
onKeyDown?: (ev: React$1.KeyboardEvent) => void;
|
|
17
|
-
onKeyUp?: (ev: React$1.KeyboardEvent) => void;
|
|
18
|
-
} & React$1.RefAttributes<_rn_primitives_dropdown_menu0.TriggerRef>>;
|
|
19
|
-
declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<react_native35.ViewProps & {
|
|
20
|
-
asChild?: boolean;
|
|
21
|
-
} & React$1.RefAttributes<View>>;
|
|
22
|
-
declare const DropdownMenuPortal: typeof _rn_primitives_dropdown_menu0.Portal;
|
|
23
|
-
declare const DropdownMenuSub: React$1.ForwardRefExoticComponent<react_native35.ViewProps & {
|
|
24
|
-
asChild?: boolean;
|
|
25
|
-
} & {
|
|
26
|
-
defaultOpen?: boolean;
|
|
27
|
-
open?: boolean;
|
|
28
|
-
onOpenChange?: (value: boolean) => void;
|
|
29
|
-
} & React$1.RefAttributes<View>>;
|
|
30
|
-
declare const DropdownMenuRadioGroup: React$1.ForwardRefExoticComponent<react_native35.ViewProps & {
|
|
31
|
-
asChild?: boolean;
|
|
32
|
-
} & {
|
|
33
|
-
value: string | undefined;
|
|
34
|
-
onValueChange: (value: string) => void;
|
|
35
|
-
} & React$1.RefAttributes<View>>;
|
|
36
|
-
declare function DropdownMenuSubTrigger({
|
|
37
|
-
className,
|
|
38
|
-
inset,
|
|
39
|
-
children,
|
|
40
|
-
...props
|
|
41
|
-
}: _rn_primitives_dropdown_menu0.SubTriggerProps & {
|
|
42
|
-
ref?: React$1.RefObject<_rn_primitives_dropdown_menu0.SubTriggerRef>;
|
|
43
|
-
className?: string;
|
|
44
|
-
inset?: boolean;
|
|
45
|
-
children?: React$1.ReactNode;
|
|
46
|
-
}): react_jsx_runtime70.JSX.Element;
|
|
47
|
-
declare function DropdownMenuSubContent({
|
|
48
|
-
className,
|
|
49
|
-
...props
|
|
50
|
-
}: _rn_primitives_dropdown_menu0.SubContentProps & {
|
|
51
|
-
ref?: React$1.RefObject<_rn_primitives_dropdown_menu0.SubContentRef>;
|
|
52
|
-
}): react_jsx_runtime70.JSX.Element;
|
|
53
|
-
declare function DropdownMenuContent({
|
|
54
|
-
className,
|
|
55
|
-
overlayClassName,
|
|
56
|
-
overlayStyle,
|
|
57
|
-
portalHost,
|
|
58
|
-
...props
|
|
59
|
-
}: _rn_primitives_dropdown_menu0.ContentProps & {
|
|
60
|
-
ref?: React$1.RefObject<_rn_primitives_dropdown_menu0.ContentRef>;
|
|
61
|
-
overlayStyle?: StyleProp<ViewStyle>;
|
|
62
|
-
overlayClassName?: string;
|
|
63
|
-
portalHost?: string;
|
|
64
|
-
}): react_jsx_runtime70.JSX.Element;
|
|
65
|
-
declare function DropdownMenuItem({
|
|
66
|
-
className,
|
|
67
|
-
inset,
|
|
68
|
-
...props
|
|
69
|
-
}: _rn_primitives_dropdown_menu0.ItemProps & {
|
|
70
|
-
ref?: React$1.RefObject<_rn_primitives_dropdown_menu0.ItemRef>;
|
|
71
|
-
className?: string;
|
|
72
|
-
inset?: boolean;
|
|
73
|
-
}): react_jsx_runtime70.JSX.Element;
|
|
74
|
-
declare function DropdownMenuCheckboxItem({
|
|
75
|
-
className,
|
|
76
|
-
children,
|
|
77
|
-
checked,
|
|
78
|
-
...props
|
|
79
|
-
}: _rn_primitives_dropdown_menu0.CheckboxItemProps & {
|
|
80
|
-
ref?: React$1.RefObject<_rn_primitives_dropdown_menu0.CheckboxItemRef>;
|
|
81
|
-
children?: React$1.ReactNode;
|
|
82
|
-
}): react_jsx_runtime70.JSX.Element;
|
|
83
|
-
declare function DropdownMenuRadioItem({
|
|
84
|
-
className,
|
|
85
|
-
children,
|
|
86
|
-
...props
|
|
87
|
-
}: _rn_primitives_dropdown_menu0.RadioItemProps & {
|
|
88
|
-
ref?: React$1.RefObject<_rn_primitives_dropdown_menu0.RadioItemRef>;
|
|
89
|
-
children?: React$1.ReactNode;
|
|
90
|
-
}): react_jsx_runtime70.JSX.Element;
|
|
91
|
-
declare function DropdownMenuLabel({
|
|
92
|
-
className,
|
|
93
|
-
inset,
|
|
94
|
-
...props
|
|
95
|
-
}: _rn_primitives_dropdown_menu0.LabelProps & {
|
|
96
|
-
ref?: React$1.RefObject<_rn_primitives_dropdown_menu0.LabelRef>;
|
|
97
|
-
className?: string;
|
|
98
|
-
inset?: boolean;
|
|
99
|
-
}): react_jsx_runtime70.JSX.Element;
|
|
100
|
-
declare function DropdownMenuSeparator({
|
|
101
|
-
className,
|
|
102
|
-
...props
|
|
103
|
-
}: _rn_primitives_dropdown_menu0.SeparatorProps & {
|
|
104
|
-
ref?: React$1.RefObject<_rn_primitives_dropdown_menu0.SeparatorRef>;
|
|
105
|
-
}): react_jsx_runtime70.JSX.Element;
|
|
106
|
-
declare function DropdownMenuShortcut({
|
|
107
|
-
className,
|
|
108
|
-
...props
|
|
109
|
-
}: TextProps): react_jsx_runtime70.JSX.Element;
|
|
110
|
-
//#endregion
|
|
111
|
-
export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger };
|
package/dist/ui/empty-state.d.ts
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import * as React$1 from "react";
|
|
2
|
-
import * as react_jsx_runtime80 from "react/jsx-runtime";
|
|
3
|
-
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as class_variance_authority_types9 from "class-variance-authority/types";
|
|
5
|
-
|
|
6
|
-
//#region ui/empty-state.d.ts
|
|
7
|
-
declare const containerVariants: (props?: ({
|
|
8
|
-
density?: "default" | "compact" | null | undefined;
|
|
9
|
-
} & class_variance_authority_types9.ClassProp) | undefined) => string;
|
|
10
|
-
interface EmptyStateProps extends VariantProps<typeof containerVariants> {
|
|
11
|
-
icon?: React$1.ReactNode;
|
|
12
|
-
title: React$1.ReactNode;
|
|
13
|
-
description?: React$1.ReactNode;
|
|
14
|
-
primaryAction?: React$1.ReactNode;
|
|
15
|
-
secondaryAction?: React$1.ReactNode;
|
|
16
|
-
className?: string;
|
|
17
|
-
}
|
|
18
|
-
declare function EmptyState({
|
|
19
|
-
icon,
|
|
20
|
-
title,
|
|
21
|
-
description,
|
|
22
|
-
primaryAction,
|
|
23
|
-
secondaryAction,
|
|
24
|
-
className,
|
|
25
|
-
density
|
|
26
|
-
}: EmptyStateProps): react_jsx_runtime80.JSX.Element;
|
|
27
|
-
//#endregion
|
|
28
|
-
export { EmptyState, EmptyStateProps };
|
package/dist/ui/empty.d.ts
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { ViewProps } from "react-native";
|
|
2
|
-
import * as react_jsx_runtime92 from "react/jsx-runtime";
|
|
3
|
-
import { VariantProps } from "class-variance-authority";
|
|
4
|
-
import * as class_variance_authority_types10 from "class-variance-authority/types";
|
|
5
|
-
|
|
6
|
-
//#region ui/empty.d.ts
|
|
7
|
-
declare function Empty({
|
|
8
|
-
className,
|
|
9
|
-
...props
|
|
10
|
-
}: ViewProps): react_jsx_runtime92.JSX.Element;
|
|
11
|
-
declare function EmptyHeader({
|
|
12
|
-
className,
|
|
13
|
-
...props
|
|
14
|
-
}: ViewProps): react_jsx_runtime92.JSX.Element;
|
|
15
|
-
declare const emptyMediaVariants: (props?: ({
|
|
16
|
-
variant?: "default" | "icon" | null | undefined;
|
|
17
|
-
} & class_variance_authority_types10.ClassProp) | undefined) => string;
|
|
18
|
-
declare function EmptyMedia({
|
|
19
|
-
className,
|
|
20
|
-
variant,
|
|
21
|
-
...props
|
|
22
|
-
}: ViewProps & VariantProps<typeof emptyMediaVariants>): react_jsx_runtime92.JSX.Element;
|
|
23
|
-
declare function EmptyTitle({
|
|
24
|
-
className,
|
|
25
|
-
...props
|
|
26
|
-
}: ViewProps): react_jsx_runtime92.JSX.Element;
|
|
27
|
-
declare function EmptyDescription({
|
|
28
|
-
className,
|
|
29
|
-
...props
|
|
30
|
-
}: ViewProps): react_jsx_runtime92.JSX.Element;
|
|
31
|
-
declare function EmptyContent({
|
|
32
|
-
className,
|
|
33
|
-
...props
|
|
34
|
-
}: ViewProps): react_jsx_runtime92.JSX.Element;
|
|
35
|
-
//#endregion
|
|
36
|
-
export { Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle };
|