@yimingliao/cms 0.0.136 → 0.0.138
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/dist/export/client/index.js +47 -27
- package/dist/export/client/shadcn/index.js +2 -0
- package/dist/src/client/interfaces/components/shadcn/badge.js +37 -0
- package/dist/src/client/interfaces/components/shadcn/dialog.js +132 -0
- package/dist/src/client/interfaces/components/shadcn/sheet.js +10 -10
- package/dist/src/client/interfaces/components/ui/blocks/list-cards-container/list-cards-container.js +3 -2
- package/dist/src/client/interfaces/components/ui/blocks/list-cards-container/page-size-selector.js +2 -1
- package/dist/src/client/interfaces/components/ui/blocks/list-cards-container/pagination.js +3 -2
- package/dist/src/client/interfaces/components/ui/blocks/page-header/page-header.js +2 -1
- package/dist/src/client/interfaces/components/ui/blocks/page-header/presets/batch-create.js +2 -1
- package/dist/src/client/interfaces/components/ui/blocks/page-header/presets/create.js +2 -1
- package/dist/src/client/interfaces/components/ui/blocks/page-header/presets/edit.js +2 -1
- package/dist/src/client/interfaces/components/ui/buttons/button.js +3 -2
- package/dist/src/client/interfaces/components/ui/cards/action-buttons-card.js +82 -0
- package/dist/src/client/interfaces/components/ui/cards/resource-card/card-status-bar.js +51 -0
- package/dist/src/client/interfaces/components/ui/cards/resource-card/card-text-content.js +38 -0
- package/dist/src/client/interfaces/components/ui/cards/resource-card/resource-card.js +77 -0
- package/dist/src/client/interfaces/components/ui/display/array-list.js +69 -0
- package/dist/src/client/interfaces/components/ui/display/badge.js +41 -0
- package/dist/src/client/interfaces/components/ui/display/html-display.js +32 -0
- package/dist/src/client/interfaces/components/ui/display/object-array-list.js +75 -0
- package/dist/src/client/interfaces/components/ui/features/accordion/accordion-container.js +31 -0
- package/dist/src/client/interfaces/components/ui/features/accordion/accordion-header.js +34 -0
- package/dist/src/client/interfaces/components/ui/features/accordion/accordion.js +81 -0
- package/dist/src/client/interfaces/components/ui/features/expandable-list/expand-bar.js +2 -1
- package/dist/src/client/interfaces/components/ui/features/external-link.js +15 -0
- package/dist/src/client/interfaces/components/ui/features/file/file-picker/file-picker-container.js +74 -0
- package/dist/src/client/interfaces/components/ui/features/file/file-picker/file-picker-placeholder.js +48 -0
- package/dist/src/client/interfaces/components/ui/features/file/file-picker/file-picker.js +109 -0
- package/dist/src/client/interfaces/components/ui/features/file/file-preview/file-preview-list.js +85 -0
- package/dist/src/client/interfaces/components/ui/features/file/file-preview/file-preview-meta.js +40 -0
- package/dist/src/client/interfaces/components/ui/features/file/file-preview/file-preview.js +113 -0
- package/dist/src/client/interfaces/components/ui/features/file/uploader.js +101 -0
- package/dist/src/client/interfaces/components/ui/features/pick-modal/pick-modal-body.js +112 -0
- package/dist/src/client/interfaces/components/ui/features/pick-modal/pick-modal-trigger.js +97 -0
- package/dist/src/client/interfaces/components/ui/features/pick-modal/pick-modal.js +77 -0
- package/dist/src/client/interfaces/components/ui/features/smart-image.js +60 -0
- package/dist/src/client/interfaces/components/ui/features/tick.js +27 -0
- package/dist/src/client/interfaces/components/ui/form/control-fields/control-fields-display.js +2 -1
- package/dist/src/client/interfaces/components/ui/form/control-fields/control-fields-input.js +2 -1
- package/dist/src/client/interfaces/components/ui/form/control-fields/control-fields.js +3 -2
- package/dist/src/client/interfaces/components/ui/form/field-body.js +3 -2
- package/dist/src/client/interfaces/components/ui/form/field.js +2 -1
- package/dist/src/client/interfaces/components/ui/form/index-field.js +2 -1
- package/dist/src/client/interfaces/components/ui/form/slug-field.js +2 -1
- package/dist/src/client/interfaces/components/ui/inputs/array-input.js +2 -1
- package/dist/src/client/interfaces/components/ui/inputs/checkbox.js +3 -2
- package/dist/src/client/interfaces/components/ui/inputs/input.js +3 -2
- package/dist/src/client/interfaces/components/ui/inputs/password-input.js +2 -1
- package/dist/src/client/interfaces/components/ui/inputs/search-input.js +2 -1
- package/dist/src/client/interfaces/components/ui/inputs/select.js +3 -2
- package/dist/src/client/interfaces/components/ui/inputs/textarea.js +3 -2
- package/dist/src/client/interfaces/components/ui/layouts/auth-skeleton.js +3 -2
- package/dist/src/client/interfaces/components/ui/layouts/dashboard-skeleton.js +3 -2
- package/dist/src/client/interfaces/components/ui/layouts/navbar/i18n-selector.js +2 -1
- package/dist/src/client/interfaces/components/ui/layouts/navbar/nav-user.js +2 -1
- package/dist/src/client/interfaces/components/ui/layouts/navbar/navbar.js +5 -4
- package/dist/src/client/interfaces/components/ui/layouts/navbar/sign-out-button.js +5 -4
- package/dist/src/client/interfaces/components/ui/layouts/navbar/theme-selector.js +2 -1
- package/dist/src/client/interfaces/components/ui/layouts/sidebar/nav-main.js +2 -1
- package/dist/src/client/interfaces/pages/auth/change-password/page.js +11 -8
- package/dist/src/client/interfaces/pages/auth/email-unverified/page.js +9 -6
- package/dist/src/client/interfaces/pages/auth/forgot-password/page.js +11 -8
- package/dist/src/client/interfaces/pages/auth/layout.js +9 -6
- package/dist/src/client/interfaces/pages/auth/reset-password/page.js +11 -8
- package/dist/src/client/interfaces/pages/auth/sign-in/page.js +9 -6
- package/dist/src/client/interfaces/pages/auth/verify-email/page.js +3 -2
- package/dist/src/client/interfaces/pages/dashboard/layout.js +9 -6
- package/dist/src/constants/file.js +27 -0
- package/dist/src/server/infrastructure/zod/schemas/schemas.js +1 -1
- package/dist/src/server/interfaces/actions/resources/post/commands/create/post-create-validator.js +1 -1
- package/dist/src/server/interfaces/actions/resources/post/commands/update/post-update-validator.js +1 -1
- package/dist/types/export/client/index.d.ts +1 -1
- package/dist/types/export/client/index.d.ts.map +1 -1
- package/dist/types/src/client/index.d.ts +1 -1
- package/dist/types/src/client/index.d.ts.map +1 -1
- package/dist/types/src/client/infrastructure/index.d.ts +3 -2
- package/dist/types/src/client/infrastructure/index.d.ts.map +1 -1
- package/dist/types/src/client/infrastructure/internal-api/file-upload-api.d.ts +5 -0
- package/dist/types/src/client/infrastructure/internal-api/file-upload-api.d.ts.map +1 -0
- package/dist/types/src/client/infrastructure/internal-api/index.d.ts +3 -0
- package/dist/types/src/client/infrastructure/internal-api/index.d.ts.map +1 -0
- package/dist/types/src/client/infrastructure/internal-api/multi-files-upload-api.d.ts +5 -0
- package/dist/types/src/client/infrastructure/internal-api/multi-files-upload-api.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/index.d.ts +1 -1
- package/dist/types/src/client/interfaces/components/index.d.ts.map +1 -1
- package/dist/types/src/client/interfaces/components/shadcn/badge.d.ts +11 -0
- package/dist/types/src/client/interfaces/components/shadcn/badge.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/shadcn/button.d.ts +1 -1
- package/dist/types/src/client/interfaces/components/shadcn/dialog.d.ts +16 -0
- package/dist/types/src/client/interfaces/components/shadcn/dialog.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/shadcn/index.d.ts +2 -0
- package/dist/types/src/client/interfaces/components/shadcn/index.d.ts.map +1 -1
- package/dist/types/src/client/interfaces/components/shadcn/input-group.d.ts +1 -1
- package/dist/types/src/client/interfaces/components/ui/cards/action-buttons-card.d.ts +11 -0
- package/dist/types/src/client/interfaces/components/ui/cards/action-buttons-card.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/cards/index.d.ts +3 -0
- package/dist/types/src/client/interfaces/components/ui/cards/index.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/cards/resource-card/card-status-bar.d.ts +8 -0
- package/dist/types/src/client/interfaces/components/ui/cards/resource-card/card-status-bar.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/cards/resource-card/card-text-content.d.ts +7 -0
- package/dist/types/src/client/interfaces/components/ui/cards/resource-card/card-text-content.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/cards/resource-card/index.d.ts +2 -0
- package/dist/types/src/client/interfaces/components/ui/cards/resource-card/index.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/cards/resource-card/resource-card.d.ts +15 -0
- package/dist/types/src/client/interfaces/components/ui/cards/resource-card/resource-card.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/display/array-list.d.ts +8 -0
- package/dist/types/src/client/interfaces/components/ui/display/array-list.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/display/badge.d.ts +5 -0
- package/dist/types/src/client/interfaces/components/ui/display/badge.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/display/html-display.d.ts +8 -0
- package/dist/types/src/client/interfaces/components/ui/display/html-display.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/display/index.d.ts +5 -0
- package/dist/types/src/client/interfaces/components/ui/display/index.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/display/object-array-list.d.ts +13 -0
- package/dist/types/src/client/interfaces/components/ui/display/object-array-list.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/accordion/accordion-container.d.ts +3 -0
- package/dist/types/src/client/interfaces/components/ui/features/accordion/accordion-container.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/accordion/accordion-header.d.ts +8 -0
- package/dist/types/src/client/interfaces/components/ui/features/accordion/accordion-header.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/accordion/accordion.d.ts +13 -0
- package/dist/types/src/client/interfaces/components/ui/features/accordion/accordion.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/accordion/index.d.ts +3 -0
- package/dist/types/src/client/interfaces/components/ui/features/accordion/index.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/external-link.d.ts +4 -0
- package/dist/types/src/client/interfaces/components/ui/features/external-link.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-info/file-info.d.ts +12 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-info/file-info.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-info/file-name.d.ts +4 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-info/file-name.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-info/index.d.ts +2 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-info/index.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-picker/file-picker-container.d.ts +13 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-picker/file-picker-container.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-picker/file-picker-placeholder.d.ts +2 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-picker/file-picker-placeholder.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-picker/file-picker.d.ts +15 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-picker/file-picker.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-picker/index.d.ts +2 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-picker/index.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-preview/file-preview-list.d.ts +11 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-preview/file-preview-list.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-preview/file-preview-meta.d.ts +6 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-preview/file-preview-meta.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-preview/file-preview.d.ts +13 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-preview/file-preview.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-preview/index.d.ts +3 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/file-preview/index.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/index.d.ts +4 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/index.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/uploader.d.ts +19 -0
- package/dist/types/src/client/interfaces/components/ui/features/file/uploader.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/index.d.ts +6 -0
- package/dist/types/src/client/interfaces/components/ui/features/index.d.ts.map +1 -1
- package/dist/types/src/client/interfaces/components/ui/features/pick-modal/index.d.ts +2 -0
- package/dist/types/src/client/interfaces/components/ui/features/pick-modal/index.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/pick-modal/pick-modal-body.d.ts +15 -0
- package/dist/types/src/client/interfaces/components/ui/features/pick-modal/pick-modal-body.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/pick-modal/pick-modal-trigger.d.ts +12 -0
- package/dist/types/src/client/interfaces/components/ui/features/pick-modal/pick-modal-trigger.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/pick-modal/pick-modal.d.ts +14 -0
- package/dist/types/src/client/interfaces/components/ui/features/pick-modal/pick-modal.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/smart-image.d.ts +15 -0
- package/dist/types/src/client/interfaces/components/ui/features/smart-image.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/features/tick.d.ts +8 -0
- package/dist/types/src/client/interfaces/components/ui/features/tick.d.ts.map +1 -0
- package/dist/types/src/client/interfaces/components/ui/index.d.ts +5 -2
- package/dist/types/src/client/interfaces/components/ui/index.d.ts.map +1 -1
- package/dist/types/src/client/interfaces/index.d.ts +1 -1
- package/dist/types/src/client/interfaces/index.d.ts.map +1 -1
- package/dist/types/src/client/interfaces/pages/auth/layout.d.ts +1 -1
- package/dist/types/src/constants/file.d.ts +3 -0
- package/dist/types/src/constants/file.d.ts.map +1 -0
- package/dist/types/src/constants/index.d.ts +1 -0
- package/dist/types/src/constants/index.d.ts.map +1 -1
- package/dist/types/src/server/infrastructure/zod/schemas/schemas.d.ts +1 -1
- package/dist/types/src/server/interfaces/actions/resources/admin/commands/create/admin-create-validator.d.ts +2 -2
- package/dist/types/src/server/interfaces/actions/resources/admin/commands/update/admin-update-validator.d.ts +2 -2
- package/dist/types/src/server/interfaces/actions/resources/post/commands/create/post-create-validator.d.ts +1 -1
- package/dist/types/src/server/interfaces/actions/resources/post/commands/update/post-update-validator.d.ts +1 -1
- package/dist/types/src/server/interfaces/actions/resources/seo-metadata/commands/upsert/seo-metadata-upsert-validator.d.ts +8 -8
- package/dist/types/src/shared/index.d.ts +1 -0
- package/dist/types/src/shared/index.d.ts.map +1 -1
- package/dist/types/src/shared/list-items.d.ts +9 -0
- package/dist/types/src/shared/list-items.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@ import * as React from "react";
|
|
|
3
3
|
import { Button } from "./button";
|
|
4
4
|
declare function InputGroup({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
declare const inputGroupAddonVariants: (props?: ({
|
|
6
|
-
align?: "inline-
|
|
6
|
+
align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
|
|
7
7
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
8
8
|
declare function InputGroupAddon({ className, align, ...props }: React.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
declare const inputGroupButtonVariants: (props?: ({
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type ButtonProps } from "../buttons";
|
|
2
|
+
interface ActionButtonsCardProps {
|
|
3
|
+
action?: "create" | "update" | "confirm";
|
|
4
|
+
cancelButtonProps?: ButtonProps;
|
|
5
|
+
actionButtonProps?: ButtonProps;
|
|
6
|
+
isProcessing?: boolean;
|
|
7
|
+
isInitializing?: boolean;
|
|
8
|
+
}
|
|
9
|
+
export declare function ActionButtonsCard({ action, cancelButtonProps, actionButtonProps, isProcessing, isInitializing, }: ActionButtonsCardProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
11
|
+
//# sourceMappingURL=action-buttons-card.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action-buttons-card.d.ts","sourceRoot":"","sources":["../../../../../../../../src/client/interfaces/components/ui/cards/action-buttons-card.tsx"],"names":[],"mappings":"AAIA,OAAO,EAAwB,KAAK,WAAW,EAAE,MAAM,YAAY,CAAC;AAEpE,UAAU,sBAAsB;IAC9B,MAAM,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,SAAS,CAAC;IACzC,iBAAiB,CAAC,EAAE,WAAW,CAAC;IAChC,iBAAiB,CAAC,EAAE,WAAW,CAAC;IAChC,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,cAAc,CAAC,EAAE,OAAO,CAAC;CAC1B;AAED,wBAAgB,iBAAiB,CAAC,EAChC,MAAiB,EAEjB,iBAAiB,EACjB,iBAAiB,EAEjB,YAAoB,EACpB,cAAsB,GACvB,EAAE,sBAAsB,2CAoDxB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/client/interfaces/components/ui/cards/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC"}
|
package/dist/types/src/client/interfaces/components/ui/cards/resource-card/card-status-bar.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { ReactNode } from "react";
|
|
2
|
+
export interface CardStatusBarProps {
|
|
3
|
+
badge?: ReactNode;
|
|
4
|
+
className?: string;
|
|
5
|
+
children?: ReactNode;
|
|
6
|
+
}
|
|
7
|
+
export declare function CardStatusBar({ badge, className, children, }: CardStatusBarProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
//# sourceMappingURL=card-status-bar.d.ts.map
|
package/dist/types/src/client/interfaces/components/ui/cards/resource-card/card-status-bar.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"card-status-bar.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/client/interfaces/components/ui/cards/resource-card/card-status-bar.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIvC,MAAM,WAAW,kBAAkB;IACjC,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB;AAED,wBAAgB,aAAa,CAAC,EAC5B,KAAK,EACL,SAAS,EACT,QAAQ,GACT,EAAE,kBAAkB,2CAyBpB"}
|
package/dist/types/src/client/interfaces/components/ui/cards/resource-card/card-text-content.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { ReactNode } from "react";
|
|
2
|
+
export interface CardTextContentProps {
|
|
3
|
+
title?: ReactNode;
|
|
4
|
+
children?: ReactNode;
|
|
5
|
+
}
|
|
6
|
+
export declare function CardTextContent({ title, children }: CardTextContentProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
//# sourceMappingURL=card-text-content.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"card-text-content.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/client/interfaces/components/ui/cards/resource-card/card-text-content.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIvC,MAAM,WAAW,oBAAoB;IACnC,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB;AAED,wBAAgB,eAAe,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAE,oBAAoB,2CAyBxE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/client/interfaces/components/ui/cards/resource-card/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { CardStatusBarProps } from "./card-status-bar";
|
|
2
|
+
import type { CardTextContentProps } from "./card-text-content";
|
|
3
|
+
import type { ComponentProps, ReactNode } from "react";
|
|
4
|
+
interface ResourceCardProps extends ComponentProps<"div"> {
|
|
5
|
+
href?: string;
|
|
6
|
+
openNewTab?: boolean;
|
|
7
|
+
anchorProps?: ComponentProps<"a">;
|
|
8
|
+
cardStatusBarProps?: CardStatusBarProps;
|
|
9
|
+
cardTextContentProps?: CardTextContentProps;
|
|
10
|
+
className?: string;
|
|
11
|
+
children?: ReactNode;
|
|
12
|
+
}
|
|
13
|
+
export declare function ResourceCard({ href, openNewTab, anchorProps, cardStatusBarProps, cardTextContentProps, className, style, children, }: ResourceCardProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=resource-card.d.ts.map
|
package/dist/types/src/client/interfaces/components/ui/cards/resource-card/resource-card.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resource-card.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/client/interfaces/components/ui/cards/resource-card/resource-card.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAC5D,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AAChE,OAAO,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAQvD,UAAU,iBAAkB,SAAQ,cAAc,CAAC,KAAK,CAAC;IACvD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,WAAW,CAAC,EAAE,cAAc,CAAC,GAAG,CAAC,CAAC;IAClC,kBAAkB,CAAC,EAAE,kBAAkB,CAAC;IACxC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC;IAC5C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB;AAED,wBAAgB,YAAY,CAAC,EAE3B,IAAS,EACT,UAAkB,EAClB,WAAW,EAEX,kBAAkB,EAClB,oBAAoB,EAEpB,SAAc,EACd,KAAK,EACL,QAAQ,GACT,EAAE,iBAAiB,2CA+BnB"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { UIStates } from "../../../../../shared";
|
|
2
|
+
interface ArrayListProps extends UIStates {
|
|
3
|
+
values?: string[];
|
|
4
|
+
isLink?: boolean;
|
|
5
|
+
}
|
|
6
|
+
export declare function ArrayList({ values, isLink, isLoading }: ArrayListProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=array-list.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"array-list.d.ts","sourceRoot":"","sources":["../../../../../../../../src/client/interfaces/components/ui/display/array-list.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAQtD,UAAU,cAAe,SAAQ,QAAQ;IACvC,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,wBAAgB,SAAS,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,EAAE,cAAc,2CAkDtE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"badge.d.ts","sourceRoot":"","sources":["../../../../../../../../src/client/interfaces/components/ui/display/badge.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAI/C,wBAAgB,KAAK,CAAC,EAEpB,SAAiB,EAEjB,OAAqB,EACrB,SAAS,EACT,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,UAAU,GAAG;IAAE,SAAS,CAAC,EAAE,OAAO,CAAA;CAAE,2CAUtC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { HTMLAttributes } from "react";
|
|
2
|
+
interface HtmlDisplayProps extends HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
html?: string | null;
|
|
4
|
+
textOnly?: boolean;
|
|
5
|
+
}
|
|
6
|
+
export declare function HtmlDisplay({ html, textOnly, className, ...props }: HtmlDisplayProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
8
|
+
//# sourceMappingURL=html-display.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"html-display.d.ts","sourceRoot":"","sources":["../../../../../../../../src/client/interfaces/components/ui/display/html-display.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAG5C,UAAU,gBAAiB,SAAQ,cAAc,CAAC,cAAc,CAAC;IAC/D,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,wBAAgB,WAAW,CAAC,EAC1B,IAAS,EACT,QAAQ,EACR,SAAc,EACd,GAAG,KAAK,EACT,EAAE,gBAAgB,2CAalB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/client/interfaces/components/ui/display/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { UIStates } from "../../../../../shared";
|
|
2
|
+
interface ObjectArrayListProps extends UIStates {
|
|
3
|
+
items?: Record<string, string>[];
|
|
4
|
+
fields?: {
|
|
5
|
+
key: string;
|
|
6
|
+
placeholder?: string;
|
|
7
|
+
isLink?: boolean;
|
|
8
|
+
}[];
|
|
9
|
+
isLink?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare function ObjectArrayList({ items, fields, isLoading, }: ObjectArrayListProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export {};
|
|
13
|
+
//# sourceMappingURL=object-array-list.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"object-array-list.d.ts","sourceRoot":"","sources":["../../../../../../../../src/client/interfaces/components/ui/display/object-array-list.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AAQtD,UAAU,oBAAqB,SAAQ,QAAQ;IAC7C,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EAAE,CAAC;IACjC,MAAM,CAAC,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,WAAW,CAAC,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,OAAO,CAAA;KAAE,EAAE,CAAC;IACnE,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,wBAAgB,eAAe,CAAC,EAC9B,KAAK,EACL,MAAM,EACN,SAAS,GACV,EAAE,oBAAoB,2CA6DtB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"accordion-container.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/client/interfaces/components/ui/features/accordion/accordion-container.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAG5C,wBAAgB,kBAAkB,CAAC,EACjC,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,KAAK,CAAC,2CASvB"}
|
package/dist/types/src/client/interfaces/components/ui/features/accordion/accordion-header.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { ReactNode } from "react";
|
|
2
|
+
export interface AccordionHeaderProps {
|
|
3
|
+
isRelated?: boolean;
|
|
4
|
+
count?: number;
|
|
5
|
+
children?: ReactNode;
|
|
6
|
+
}
|
|
7
|
+
export default function AccordionHeader({ isRelated, count, children, }: AccordionHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
//# sourceMappingURL=accordion-header.d.ts.map
|
package/dist/types/src/client/interfaces/components/ui/features/accordion/accordion-header.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"accordion-header.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/client/interfaces/components/ui/features/accordion/accordion-header.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIvC,MAAM,WAAW,oBAAoB;IACnC,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB;AAED,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,EACtC,SAAiB,EACjB,KAAK,EACL,QAAQ,GACT,EAAE,oBAAoB,2CA0BtB"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { AccordionHeaderProps } from "./accordion-header";
|
|
2
|
+
import type { ReactNode, HTMLAttributes } from "react";
|
|
3
|
+
interface AccordionProps extends HTMLAttributes<HTMLDivElement> {
|
|
4
|
+
initialOpen?: boolean;
|
|
5
|
+
hasBorder?: boolean;
|
|
6
|
+
deps?: unknown[];
|
|
7
|
+
children: ReactNode;
|
|
8
|
+
accordionHeaderProps?: AccordionHeaderProps;
|
|
9
|
+
className?: string;
|
|
10
|
+
}
|
|
11
|
+
export declare function Accordion({ initialOpen, deps, children, accordionHeaderProps, hasBorder, className, ...props }: AccordionProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export {};
|
|
13
|
+
//# sourceMappingURL=accordion.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"accordion.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/client/interfaces/components/ui/features/accordion/accordion.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;AAC/D,OAAO,KAAK,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAMvD,UAAU,cAAe,SAAQ,cAAc,CAAC,cAAc,CAAC;IAC7D,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,IAAI,CAAC,EAAE,OAAO,EAAE,CAAC;IACjB,QAAQ,EAAE,SAAS,CAAC;IACpB,oBAAoB,CAAC,EAAE,oBAAoB,CAAC;IAC5C,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,SAAS,CAAC,EACxB,WAAmB,EACnB,IAAI,EAEJ,QAAQ,EACR,oBAAoB,EAEpB,SAAS,EACT,SAAS,EACT,GAAG,KAAK,EACT,EAAE,cAAc,2CA6DhB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/client/interfaces/components/ui/features/accordion/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACxC,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"external-link.d.ts","sourceRoot":"","sources":["../../../../../../../../src/client/interfaces/components/ui/features/external-link.tsx"],"names":[],"mappings":"AAGA,wBAAgB,YAAY,CAAC,EAAE,IAAS,EAAE,EAAE;IAAE,IAAI,CAAC,EAAE,MAAM,CAAA;CAAE,2CAM5D"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { File } from "../../../../../../../domain";
|
|
2
|
+
import { type BlobFile } from "../../../../../../../shared";
|
|
3
|
+
interface FileInfoProps {
|
|
4
|
+
file: BlobFile | File;
|
|
5
|
+
isExpand?: boolean;
|
|
6
|
+
}
|
|
7
|
+
export declare function createFileInfo({ maxSize, storageUrl, }: {
|
|
8
|
+
maxSize: number;
|
|
9
|
+
storageUrl: string;
|
|
10
|
+
}): ({ file, isExpand, }: FileInfoProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
12
|
+
//# sourceMappingURL=file-info.d.ts.map
|
package/dist/types/src/client/interfaces/components/ui/features/file/file-info/file-info.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-info.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/client/interfaces/components/ui/features/file/file-info/file-info.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,6BAA6B,CAAC;AAKxD,OAAO,EAKL,KAAK,QAAQ,EACd,MAAM,6BAA6B,CAAC;AAMrC,UAAU,aAAa;IACrB,IAAI,EAAE,QAAQ,GAAG,IAAI,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,wBAAgB,cAAc,CAAC,EAC7B,OAAO,EACP,UAAU,GACX,EAAE;IACD,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;CACpB,IAC0B,qBAGtB,aAAa,6CA2FjB"}
|
package/dist/types/src/client/interfaces/components/ui/features/file/file-info/file-name.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-name.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/client/interfaces/components/ui/features/file/file-info/file-name.tsx"],"names":[],"mappings":"AAaA,wBAAgB,QAAQ,CAAC,EAAE,QAAQ,EAAE,EAAE;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,2CAwB1D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/client/interfaces/components/ui/features/file/file-info/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { FormFieldController } from "../../../../../../../shared";
|
|
2
|
+
import type { Dispatch, InputHTMLAttributes, RefObject, SetStateAction } from "react";
|
|
3
|
+
interface FilePickerContainerProps extends InputHTMLAttributes<HTMLInputElement>, FormFieldController {
|
|
4
|
+
inputRef: RefObject<HTMLInputElement | null>;
|
|
5
|
+
hasSingleFile?: boolean;
|
|
6
|
+
isDragOver: boolean;
|
|
7
|
+
setIsDragOver: Dispatch<SetStateAction<boolean>>;
|
|
8
|
+
processFiles: (files: FileList) => void | Promise<void>;
|
|
9
|
+
isDisplay?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare function FilePickerContainer({ inputRef, hasSingleFile, isDragOver, setIsDragOver, processFiles, isLoading, isDisabled, isDisplay, className, children, }: FilePickerContainerProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export {};
|
|
13
|
+
//# sourceMappingURL=file-picker-container.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-picker-container.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/client/interfaces/components/ui/features/file/file-picker/file-picker-container.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AACvE,OAAO,KAAK,EACV,QAAQ,EAER,mBAAmB,EACnB,SAAS,EACT,cAAc,EACf,MAAM,OAAO,CAAC;AAKf,UAAU,wBACR,SAAQ,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,mBAAmB;IAClE,QAAQ,EAAE,SAAS,CAAC,gBAAgB,GAAG,IAAI,CAAC,CAAC;IAC7C,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,UAAU,EAAE,OAAO,CAAC;IACpB,aAAa,EAAE,QAAQ,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC;IACjD,YAAY,EAAE,CAAC,KAAK,EAAE,QAAQ,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IACxD,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,wBAAgB,mBAAmB,CAAC,EAClC,QAAQ,EACR,aAAqB,EACrB,UAAU,EACV,aAAa,EACb,YAAY,EAEZ,SAAiB,EACjB,UAAkB,EAClB,SAAiB,EAEjB,SAAc,EACd,QAAQ,GACT,EAAE,wBAAwB,2CA+C1B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-picker-placeholder.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/client/interfaces/components/ui/features/file/file-picker/file-picker-placeholder.tsx"],"names":[],"mappings":"AAKA,wBAAgB,qBAAqB,4CAoBpC"}
|
package/dist/types/src/client/interfaces/components/ui/features/file/file-picker/file-picker.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { File } from "../../../../../../../domain";
|
|
2
|
+
import type { createFileInfo } from "../file-info";
|
|
3
|
+
import type { createFilePreview } from "../file-preview";
|
|
4
|
+
import type { InputHTMLAttributes } from "react";
|
|
5
|
+
import { type FormData, type FormFieldController } from "../../../../../../../shared";
|
|
6
|
+
interface FilePickerProps<T extends FormData> extends InputHTMLAttributes<HTMLInputElement>, FormFieldController<T> {
|
|
7
|
+
file?: File | null;
|
|
8
|
+
isDisplay?: boolean;
|
|
9
|
+
}
|
|
10
|
+
export declare function createFilePicker({ FileInfo, FilePreview, }: {
|
|
11
|
+
FileInfo: ReturnType<typeof createFileInfo>;
|
|
12
|
+
FilePreview: ReturnType<typeof createFilePreview>;
|
|
13
|
+
}): <T extends FormData>({ file, fieldName, formData, setFormData, isLoading, isDisabled, isDisplay, className, ...props }: FilePickerProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=file-picker.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-picker.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/client/interfaces/components/ui/features/file/file-picker/file-picker.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,6BAA6B,CAAC;AACxD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AACnD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,OAAO,CAAC;AAEjD,OAAO,EAGL,KAAK,QAAQ,EACb,KAAK,mBAAmB,EACzB,MAAM,6BAA6B,CAAC;AAIrC,UAAU,eAAe,CAAC,CAAC,SAAS,QAAQ,CAC1C,SAAQ,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,mBAAmB,CAAC,CAAC,CAAC;IACrE,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IACnB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,QAAQ,EACR,WAAW,GACZ,EAAE;IACD,QAAQ,EAAE,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;IAC5C,WAAW,EAAE,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC;CACnD,IAC4B,CAAC,SAAS,QAAQ,EAAE,mGAc5C,eAAe,CAAC,CAAC,CAAC,6CAmFtB"}
|
package/dist/types/src/client/interfaces/components/ui/features/file/file-picker/index.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/client/interfaces/components/ui/features/file/file-picker/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { FormData, FormFieldController } from "../../../../../../../shared";
|
|
2
|
+
import type { createFileInfo } from "../file-info";
|
|
3
|
+
import type { createFilePreview } from "./file-preview";
|
|
4
|
+
export declare function createFilePreviewList({ FileInfo, FilePreview, maxSize, }: {
|
|
5
|
+
FileInfo: ReturnType<typeof createFileInfo>;
|
|
6
|
+
FilePreview: ReturnType<typeof createFilePreview>;
|
|
7
|
+
maxSize: number;
|
|
8
|
+
}): <T extends FormData>({ fieldName, formData, setFormData, isDisabled, className, }: FormFieldController<T> & {
|
|
9
|
+
className?: string;
|
|
10
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
//# sourceMappingURL=file-preview-list.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-preview-list.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/client/interfaces/components/ui/features/file/file-preview/file-preview-list.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAEV,QAAQ,EACR,mBAAmB,EACpB,MAAM,6BAA6B,CAAC;AACrC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AACnD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAOxD,wBAAgB,qBAAqB,CAAC,EACpC,QAAQ,EACR,WAAW,EACX,OAAO,GACR,EAAE;IACD,QAAQ,EAAE,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;IAC5C,WAAW,EAAE,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC;IAClD,OAAO,EAAE,MAAM,CAAC;CACjB,IACiC,CAAC,SAAS,QAAQ,EAAE,8DASjD,mBAAmB,CAAC,CAAC,CAAC,GAAG;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,6CA0EnD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-preview-meta.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/client/interfaces/components/ui/features/file/file-preview/file-preview-meta.tsx"],"names":[],"mappings":"AAEA,wBAAgB,eAAe,CAAC,EAC9B,KAAK,EACL,MAAM,EACN,QAAQ,GACT,EAAE;IACD,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;CACzB,uDAuBA"}
|
package/dist/types/src/client/interfaces/components/ui/features/file/file-preview/file-preview.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { createSmartImage } from "../../smart-image";
|
|
2
|
+
import { type HTMLAttributes } from "react";
|
|
3
|
+
import { type BlobFile, type FormData, type FormFieldController } from "../../../../../../../shared";
|
|
4
|
+
interface FilePreviewProps<T extends FormData> extends HTMLAttributes<HTMLDivElement>, FormFieldController<T> {
|
|
5
|
+
fileKey?: string;
|
|
6
|
+
blobFile?: BlobFile | null;
|
|
7
|
+
}
|
|
8
|
+
export declare function createFilePreview({ SmartImage, storageUrl, }: {
|
|
9
|
+
SmartImage: ReturnType<typeof createSmartImage>;
|
|
10
|
+
storageUrl: string;
|
|
11
|
+
}): <T extends FormData>({ blobFile, fileKey, isLoading, className, ...props }: FilePreviewProps<T>) => import("react/jsx-runtime").JSX.Element | null;
|
|
12
|
+
export {};
|
|
13
|
+
//# sourceMappingURL=file-preview.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"file-preview.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/client/interfaces/components/ui/features/file/file-preview/file-preview.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAC1D,OAAO,EAAuB,KAAK,cAAc,EAAE,MAAM,OAAO,CAAC;AAKjE,OAAO,EAEL,KAAK,QAAQ,EACb,KAAK,QAAQ,EACb,KAAK,mBAAmB,EACzB,MAAM,6BAA6B,CAAC;AAKrC,UAAU,gBAAgB,CAAC,CAAC,SAAS,QAAQ,CAC3C,SAAQ,cAAc,CAAC,cAAc,CAAC,EAAE,mBAAmB,CAAC,CAAC,CAAC;IAC9D,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,QAAQ,GAAG,IAAI,CAAC;CAC5B;AAED,wBAAgB,iBAAiB,CAAC,EAChC,UAAU,EACV,UAAU,GACX,EAAE;IACD,UAAU,EAAE,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;IAChD,UAAU,EAAE,MAAM,CAAC;CACpB,IAC6B,CAAC,SAAS,QAAQ,EAAE,uDAQ7C,gBAAgB,CAAC,CAAC,CAAC,oDA8EvB"}
|
package/dist/types/src/client/interfaces/components/ui/features/file/file-preview/index.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/client/interfaces/components/ui/features/file/file-preview/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACnD,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/client/interfaces/components/ui/features/file/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,MAAM,gBAAgB,CAAC;AAC1E,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { createFileCreateAction } from "../../../../../../server";
|
|
2
|
+
import type { createBuildTranslations } from "../../../../../../shared";
|
|
3
|
+
import type { createFileUploadApi, createUseCommand } from "../../../../../infrastructure";
|
|
4
|
+
import type { QueryClient } from "@tanstack/react-query";
|
|
5
|
+
import type { Dispatch, InputHTMLAttributes, SetStateAction } from "react";
|
|
6
|
+
import { type MultiItems } from "../../../../../../domain";
|
|
7
|
+
import { type FormData, type FormFieldController } from "../../../../../../shared";
|
|
8
|
+
interface UploaderProps<T extends FormData> extends InputHTMLAttributes<HTMLInputElement>, FormFieldController<T> {
|
|
9
|
+
setPickedItems?: Dispatch<SetStateAction<MultiItems>>;
|
|
10
|
+
}
|
|
11
|
+
export declare function createUploader({ useCommand, fileUploadApi, fileCreateAction, buildTranslations, queryClient, }: {
|
|
12
|
+
useCommand: ReturnType<typeof createUseCommand>;
|
|
13
|
+
fileUploadApi: ReturnType<typeof createFileUploadApi>;
|
|
14
|
+
fileCreateAction: ReturnType<typeof createFileCreateAction>;
|
|
15
|
+
buildTranslations: ReturnType<typeof createBuildTranslations>;
|
|
16
|
+
queryClient: QueryClient;
|
|
17
|
+
}): <T extends FormData>({ setPickedItems, isLoading, isDisabled, className, ...props }: UploaderProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export {};
|
|
19
|
+
//# sourceMappingURL=uploader.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"uploader.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/client/interfaces/components/ui/features/file/uploader.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,sBAAsB,EAEvB,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAC;AACxE,OAAO,KAAK,EACV,mBAAmB,EACnB,gBAAgB,EACjB,MAAM,+BAA+B,CAAC;AACvC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,KAAK,EAAE,QAAQ,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAG3E,OAAO,EAEL,KAAK,UAAU,EAChB,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAGL,KAAK,QAAQ,EACb,KAAK,mBAAmB,EACzB,MAAM,0BAA0B,CAAC;AAIlC,UAAU,aAAa,CAAC,CAAC,SAAS,QAAQ,CACxC,SAAQ,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,mBAAmB,CAAC,CAAC,CAAC;IACrE,cAAc,CAAC,EAAE,QAAQ,CAAC,cAAc,CAAC,UAAU,CAAC,CAAC,CAAC;CACvD;AAED,wBAAgB,cAAc,CAAC,EAC7B,UAAU,EACV,aAAa,EACb,gBAAgB,EAChB,iBAAiB,EACjB,WAAW,GACZ,EAAE;IACD,UAAU,EAAE,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;IAChD,aAAa,EAAE,UAAU,CAAC,OAAO,mBAAmB,CAAC,CAAC;IACtD,gBAAgB,EAAE,UAAU,CAAC,OAAO,sBAAsB,CAAC,CAAC;IAC5D,iBAAiB,EAAE,UAAU,CAAC,OAAO,uBAAuB,CAAC,CAAC;IAC9D,WAAW,EAAE,WAAW,CAAC;CAC1B,IAC0B,CAAC,SAAS,QAAQ,EAAE,gEAQ1C,aAAa,CAAC,CAAC,CAAC,6CA0EpB"}
|
|
@@ -1,2 +1,8 @@
|
|
|
1
|
+
export { Accordion, AccordionContainer } from "./accordion";
|
|
1
2
|
export { ExpandableList } from "./expandable-list";
|
|
3
|
+
export { createFilePicker, createFilePreview, createFilePreviewList, createUploader, } from "./file";
|
|
4
|
+
export { PickModal } from "./pick-modal";
|
|
5
|
+
export { ExternalLink } from "./external-link";
|
|
6
|
+
export { createSmartImage } from "./smart-image";
|
|
7
|
+
export { Tick } from "./tick";
|
|
2
8
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/client/interfaces/components/ui/features/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/client/interfaces/components/ui/features/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAC5D,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EACL,gBAAgB,EAChB,iBAAiB,EACjB,qBAAqB,EACrB,cAAc,GACf,MAAM,QAAQ,CAAC;AAChB,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/client/interfaces/components/ui/features/pick-modal/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC"}
|
package/dist/types/src/client/interfaces/components/ui/features/pick-modal/pick-modal-body.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { MultiItems } from "../../../../../../domain";
|
|
2
|
+
import type { FormData, FormFieldController } from "../../../../../../shared";
|
|
3
|
+
import type { ReactNode } from "react";
|
|
4
|
+
import { type Dispatch, type SetStateAction } from "react";
|
|
5
|
+
interface PickModalBodyProps<T extends FormData> extends FormFieldController<T> {
|
|
6
|
+
setIsOpen: Dispatch<SetStateAction<boolean>>;
|
|
7
|
+
pickedItems: MultiItems;
|
|
8
|
+
setPickedItems?: Dispatch<SetStateAction<MultiItems>>;
|
|
9
|
+
isMultiPick?: boolean;
|
|
10
|
+
itemList: ReactNode;
|
|
11
|
+
aboveManagementCard?: ReactNode;
|
|
12
|
+
}
|
|
13
|
+
export declare function PickModalBody<T extends FormData>({ fieldName, setFormData, setIsOpen, pickedItems, setPickedItems, isMultiPick, itemList, aboveManagementCard, }: PickModalBodyProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=pick-modal-body.d.ts.map
|
package/dist/types/src/client/interfaces/components/ui/features/pick-modal/pick-modal-body.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pick-modal-body.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/client/interfaces/components/ui/features/pick-modal/pick-modal-body.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAc,MAAM,0BAA0B,CAAC;AACvE,OAAO,KAAK,EACV,QAAQ,EACR,mBAAmB,EAEpB,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAgB,SAAS,EAAE,MAAM,OAAO,CAAC;AAErD,OAAO,EAIL,KAAK,QAAQ,EACb,KAAK,cAAc,EACpB,MAAM,OAAO,CAAC;AAOf,UAAU,kBAAkB,CAC1B,CAAC,SAAS,QAAQ,CAClB,SAAQ,mBAAmB,CAAC,CAAC,CAAC;IAC9B,SAAS,EAAE,QAAQ,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC;IAC7C,WAAW,EAAE,UAAU,CAAC;IACxB,cAAc,CAAC,EAAE,QAAQ,CAAC,cAAc,CAAC,UAAU,CAAC,CAAC,CAAC;IACtD,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,EAAE,SAAS,CAAC;IACpB,mBAAmB,CAAC,EAAE,SAAS,CAAC;CACjC;AAED,wBAAgB,aAAa,CAAC,CAAC,SAAS,QAAQ,EAAE,EAEhD,SAAS,EACT,WAAW,EAEX,SAAS,EAET,WAAW,EACX,cAAc,EACd,WAAmB,EAEnB,QAAQ,EACR,mBAAmB,GACpB,EAAE,kBAAkB,CAAC,CAAC,CAAC,2CAyGvB"}
|
package/dist/types/src/client/interfaces/components/ui/features/pick-modal/pick-modal-trigger.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { MultiItems } from "../../../../../../domain";
|
|
2
|
+
import type { FormData, FormFieldController } from "../../../../../../shared";
|
|
3
|
+
import type { Dispatch, ReactNode, SetStateAction } from "react";
|
|
4
|
+
interface PickModalTriggerProps<T extends FormData> extends FormFieldController<T> {
|
|
5
|
+
setIsOpen?: Dispatch<SetStateAction<boolean>>;
|
|
6
|
+
isMultiPick?: boolean;
|
|
7
|
+
setPickedItems: (value: SetStateAction<MultiItems>) => void;
|
|
8
|
+
pickedDisplay?: ReactNode;
|
|
9
|
+
}
|
|
10
|
+
export declare function PickModalTrigger<T extends FormData>({ fieldName, formData, isLoading, isDisabled, setIsOpen, isMultiPick, setPickedItems, pickedDisplay, }: PickModalTriggerProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
12
|
+
//# sourceMappingURL=pick-modal-trigger.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pick-modal-trigger.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/client/interfaces/components/ui/features/pick-modal/pick-modal-trigger.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAc,MAAM,0BAA0B,CAAC;AACvE,OAAO,KAAK,EAAE,QAAQ,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC9E,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAQjE,UAAU,qBAAqB,CAC7B,CAAC,SAAS,QAAQ,CAClB,SAAQ,mBAAmB,CAAC,CAAC,CAAC;IAC9B,SAAS,CAAC,EAAE,QAAQ,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC;IAC9C,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,cAAc,EAAE,CAAC,KAAK,EAAE,cAAc,CAAC,UAAU,CAAC,KAAK,IAAI,CAAC;IAC5D,aAAa,CAAC,EAAE,SAAS,CAAC;CAC3B;AAED,wBAAgB,gBAAgB,CAAC,CAAC,SAAS,QAAQ,EAAE,EAEnD,SAAS,EACT,QAAQ,EAER,SAAiB,EACjB,UAAkB,EAElB,SAAS,EAET,WAAmB,EACnB,cAAc,EAEd,aAAa,GACd,EAAE,qBAAqB,CAAC,CAAC,CAAC,2CAmE1B"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import type { FormData, FormFieldController } from "../../../../../../shared";
|
|
2
|
+
import type { Dispatch, ReactNode, SetStateAction } from "react";
|
|
3
|
+
interface PickModalProps<T extends FormData> extends FormFieldController<T> {
|
|
4
|
+
isOpen?: boolean;
|
|
5
|
+
setIsOpen?: Dispatch<SetStateAction<boolean>>;
|
|
6
|
+
isMultiPick?: boolean;
|
|
7
|
+
pickedDisplay?: ReactNode;
|
|
8
|
+
itemList: ReactNode;
|
|
9
|
+
aboveManagementCard?: ReactNode;
|
|
10
|
+
}
|
|
11
|
+
export declare function PickModal<T extends FormData>({ fieldName, formData, setFormData, isLoading, isDisabled, isOpen: externalIsOpen, setIsOpen: externalSetIsOpen, isMultiPick, pickedDisplay, // Can be array
|
|
12
|
+
itemList, aboveManagementCard, }: PickModalProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export {};
|
|
14
|
+
//# sourceMappingURL=pick-modal.d.ts.map
|
package/dist/types/src/client/interfaces/components/ui/features/pick-modal/pick-modal.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pick-modal.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/client/interfaces/components/ui/features/pick-modal/pick-modal.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC9E,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,OAAO,CAAC;AAMjE,UAAU,cAAc,CAAC,CAAC,SAAS,QAAQ,CAAE,SAAQ,mBAAmB,CAAC,CAAC,CAAC;IACzE,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,SAAS,CAAC,EAAE,QAAQ,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC;IAC9C,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,aAAa,CAAC,EAAE,SAAS,CAAC;IAC1B,QAAQ,EAAE,SAAS,CAAC;IACpB,mBAAmB,CAAC,EAAE,SAAS,CAAC;CACjC;AAED,wBAAgB,SAAS,CAAC,CAAC,SAAS,QAAQ,EAAE,EAE5C,SAAS,EACT,QAAQ,EACR,WAAW,EAEX,SAAiB,EACjB,UAAkB,EAElB,MAAM,EAAE,cAAc,EACtB,SAAS,EAAE,iBAAiB,EAE5B,WAAmB,EAEnB,aAAa,EAAE,eAAe;AAC9B,QAAQ,EACR,mBAAmB,GACpB,EAAE,cAAc,CAAC,CAAC,CAAC,2CAqCnB"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { StaticImport } from "next/dist/shared/lib/get-img-props";
|
|
2
|
+
import type { ImageProps } from "next/image";
|
|
3
|
+
interface SmartImageProps extends Omit<ImageProps, "sizes" | "src" | "alt"> {
|
|
4
|
+
sizes?: string | {
|
|
5
|
+
desktop: string;
|
|
6
|
+
mobile?: string;
|
|
7
|
+
};
|
|
8
|
+
fileKey?: string | undefined;
|
|
9
|
+
src?: string | StaticImport | undefined;
|
|
10
|
+
alt?: string;
|
|
11
|
+
imageClassName?: string;
|
|
12
|
+
}
|
|
13
|
+
export declare function createSmartImage(storageUrl: string): ({ sizes, fill, placeholder, src, fileKey, alt, width, height, className, imageClassName, ...props }: SmartImageProps) => import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=smart-image.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"smart-image.d.ts","sourceRoot":"","sources":["../../../../../../../../src/client/interfaces/components/ui/features/smart-image.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AACvE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAK7C,UAAU,eAAgB,SAAQ,IAAI,CAAC,UAAU,EAAE,OAAO,GAAG,KAAK,GAAG,KAAK,CAAC;IACzE,KAAK,CAAC,EAAE,MAAM,GAAG;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,MAAM,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACtD,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B,GAAG,CAAC,EAAE,MAAM,GAAG,YAAY,GAAG,SAAS,CAAC;IACxC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAKD,wBAAgB,gBAAgB,CAAC,UAAU,EAAE,MAAM,IACtB,qGAexB,eAAe,6CA2CnB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tick.d.ts","sourceRoot":"","sources":["../../../../../../../../src/client/interfaces/components/ui/features/tick.tsx"],"names":[],"mappings":"AAGA,UAAU,SAAS;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,wBAAgB,IAAI,CAAC,EAAE,QAAgB,EAAE,SAAc,EAAE,EAAE,SAAS,2CAiBnE"}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
-
export { ContentContainer, DashboardSkeleton, AuthSkeleton, type NavItem, NavMain, SidebarProvider, Sidebar, SidebarInset, SidebarContent, useSidebar, createNavbar, createI18nSelector, createSignOutButton, } from "./layouts";
|
|
2
1
|
export { PageHeader, ListCardsContainer } from "./blocks";
|
|
3
|
-
export { Form, Field, FieldBody, FieldsContainer, MainFields, SideFields, IndexField, SlugField, ControlFields, type ControlMeta, } from "./form";
|
|
4
2
|
export { Button, type ButtonProps, ReturnButton } from "./buttons";
|
|
3
|
+
export { ActionButtonsCard, ResourceCard } from "./cards";
|
|
4
|
+
export { ArrayList, Badge, HtmlDisplay, ObjectArrayList } from "./display";
|
|
5
|
+
export { Accordion, AccordionContainer, ExpandableList, createFilePicker, createFilePreview, createFilePreviewList, createUploader, ExternalLink, PickModal, createSmartImage, Tick, } from "./features";
|
|
6
|
+
export { Form, Field, FieldBody, FieldsContainer, MainFields, SideFields, IndexField, SlugField, ControlFields, type ControlMeta, } from "./form";
|
|
5
7
|
export { ArrayInput, Checkbox, Input, type InputProps, PasswordInput, SearchInput, Select, Option, Textarea, } from "./inputs";
|
|
8
|
+
export { ContentContainer, DashboardSkeleton, AuthSkeleton, type NavItem, NavMain, SidebarProvider, Sidebar, SidebarInset, SidebarContent, useSidebar, createNavbar, createI18nSelector, createSignOutButton, } from "./layouts";
|
|
6
9
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/client/interfaces/components/ui/index.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/client/interfaces/components/ui/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAC1D,OAAO,EAAE,MAAM,EAAE,KAAK,WAAW,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AACnE,OAAO,EAAE,iBAAiB,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AAC1D,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAC3E,OAAO,EACL,SAAS,EACT,kBAAkB,EAClB,cAAc,EACd,gBAAgB,EAChB,iBAAiB,EACjB,qBAAqB,EACrB,cAAc,EACd,YAAY,EACZ,SAAS,EACT,gBAAgB,EAChB,IAAI,GACL,MAAM,YAAY,CAAC;AACpB,OAAO,EACL,IAAI,EACJ,KAAK,EACL,SAAS,EACT,eAAe,EACf,UAAU,EACV,UAAU,EACV,UAAU,EACV,SAAS,EACT,aAAa,EACb,KAAK,WAAW,GACjB,MAAM,QAAQ,CAAC;AAChB,OAAO,EACL,UAAU,EACV,QAAQ,EACR,KAAK,EACL,KAAK,UAAU,EACf,aAAa,EACb,WAAW,EACX,MAAM,EACN,MAAM,EACN,QAAQ,GACT,MAAM,UAAU,CAAC;AAClB,OAAO,EACL,gBAAgB,EAChB,iBAAiB,EACjB,YAAY,EAEZ,KAAK,OAAO,EACZ,OAAO,EACP,eAAe,EACf,OAAO,EACP,YAAY,EACZ,cAAc,EACd,UAAU,EAEV,YAAY,EACZ,kBAAkB,EAClB,mBAAmB,GACpB,MAAM,WAAW,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { createAdminInitializer,
|
|
1
|
+
export { createAdminInitializer, PageHeader, ListCardsContainer, Button, type ButtonProps, ReturnButton, ActionButtonsCard, ResourceCard, ArrayList, Badge, HtmlDisplay, ObjectArrayList, Accordion, AccordionContainer, ExpandableList, createFilePicker, createFilePreview, createFilePreviewList, createUploader, ExternalLink, PickModal, createSmartImage, Tick, Form, Field, FieldBody, FieldsContainer, MainFields, SideFields, IndexField, SlugField, ControlFields, type ControlMeta, ArrayInput, Checkbox, Input, type InputProps, PasswordInput, SearchInput, Select, Option, Textarea, ContentContainer, DashboardSkeleton, AuthSkeleton, type NavItem, NavMain, SidebarProvider, Sidebar, SidebarInset, SidebarContent, useSidebar, createNavbar, createI18nSelector, createSignOutButton, } from "./components";
|
|
2
2
|
export { createSignInPage, createVerifyEmailPage, createEmailUnverifiedPage, createForgotPasswordPage, createResetPasswordPage, createChangePasswordPage, createAuthLayout, createDashboardLayout, } from "./pages";
|
|
3
3
|
export { NAVBAR_HEIGHT, SIDEBAR_WIDTH, PAGE_HEADER_HEIGHT } from "./styles";
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|