@yimingliao/cms 0.0.147 → 0.0.148
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/components/editor/index.js +2 -0
- package/dist/export/client/components/index.js +0 -2
- package/dist/src/client/interfaces/components/resources/file/file-card.js +2 -5
- package/dist/src/client/interfaces/components/resources/file/file-list.js +1 -4
- package/dist/src/client/interfaces/components/resources/file/is-locked-buttons.js +1 -4
- package/dist/src/client/interfaces/components/resources/file/type-buttons.js +1 -4
- package/dist/src/client/interfaces/components/ui/blocks/list-cards-container/list-cards-container.js +0 -12
- package/dist/src/client/interfaces/components/ui/blocks/list-cards-container/page-size-selector.js +1 -13
- package/dist/src/client/interfaces/components/ui/inputs/editor/base/base-editor.js +1 -0
- package/dist/src/client/interfaces/components/ui/inputs/editor/use-init-editor/use-init-editor.js +1 -0
- package/dist/src/client/interfaces/pages/auth/change-password/page.js +3 -6
- package/dist/src/client/interfaces/pages/auth/email-unverified/page.js +0 -3
- package/dist/src/client/interfaces/pages/auth/forgot-password/page.js +3 -6
- package/dist/src/client/interfaces/pages/auth/layout.js +0 -3
- package/dist/src/client/interfaces/pages/auth/reset-password/page.js +3 -6
- package/dist/src/client/interfaces/pages/auth/sign-in/page.js +2 -5
- package/dist/src/client/interfaces/pages/dashboard/layout.js +0 -3
- package/dist/types/export/client/components/editor/index.d.ts +2 -0
- package/dist/types/export/client/components/editor/index.d.ts.map +1 -0
- package/dist/types/export/client/components/index.d.ts +1 -1
- package/dist/types/export/client/components/index.d.ts.map +1 -1
- 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/ui/index.d.ts +1 -1
- package/dist/types/src/client/interfaces/components/ui/index.d.ts.map +1 -1
- package/dist/types/src/client/interfaces/components/ui/inputs/editor/base/base-editor.d.ts.map +1 -1
- package/dist/types/src/client/interfaces/components/ui/inputs/editor/use-init-editor/use-init-editor.d.ts.map +1 -1
- package/dist/types/src/client/interfaces/components/ui/inputs/index.d.ts +0 -1
- package/dist/types/src/client/interfaces/components/ui/inputs/index.d.ts.map +1 -1
- package/package.json +6 -1
|
@@ -30,8 +30,6 @@ export { SideFields } from '../../../src/client/interfaces/components/ui/form/co
|
|
|
30
30
|
export { IndexField } from '../../../src/client/interfaces/components/ui/form/index-field.js';
|
|
31
31
|
export { SlugField } from '../../../src/client/interfaces/components/ui/form/slug-field.js';
|
|
32
32
|
export { ControlFields } from '../../../src/client/interfaces/components/ui/form/control-fields/control-fields.js';
|
|
33
|
-
export { createEditor } from '../../../src/client/interfaces/components/ui/inputs/editor/editor.js';
|
|
34
|
-
export { createUploadAdapter } from '../../../src/client/interfaces/components/ui/inputs/editor/plugins/file-repository/upload-adapter.js';
|
|
35
33
|
export { ArrayInput } from '../../../src/client/interfaces/components/ui/inputs/array-input.js';
|
|
36
34
|
export { Checkbox } from '../../../src/client/interfaces/components/ui/inputs/checkbox.js';
|
|
37
35
|
export { Input } from '../../../src/client/interfaces/components/ui/inputs/input.js';
|
|
@@ -25,16 +25,13 @@ import '@radix-ui/react-select';
|
|
|
25
25
|
import '@radix-ui/react-separator';
|
|
26
26
|
import '../../shadcn/sidebar.js';
|
|
27
27
|
import '@radix-ui/react-tooltip';
|
|
28
|
-
import 'next/link';
|
|
29
28
|
import { ResourceCard } from '../../ui/cards/resource-card/resource-card.js';
|
|
29
|
+
import 'next/link';
|
|
30
30
|
import 'next/image';
|
|
31
|
-
import 'ckeditor5';
|
|
32
|
-
import 'ckeditor5/translations/en.js';
|
|
33
|
-
import 'ckeditor5/translations/zh.js';
|
|
34
|
-
import 'sonner';
|
|
35
31
|
import '../../../../infrastructure/contexts/admin.js';
|
|
36
32
|
import 'next-themes';
|
|
37
33
|
import '@tanstack/react-query';
|
|
34
|
+
import 'sonner';
|
|
38
35
|
import 'intor/next';
|
|
39
36
|
|
|
40
37
|
const WIDTH = 160;
|
|
@@ -32,13 +32,10 @@ import 'next/link';
|
|
|
32
32
|
import '../../../../../domain/resources/admin/constants.js';
|
|
33
33
|
import 'next/image';
|
|
34
34
|
import { Tick } from '../../ui/features/tick.js';
|
|
35
|
-
import 'ckeditor5';
|
|
36
|
-
import 'ckeditor5/translations/en.js';
|
|
37
|
-
import 'ckeditor5/translations/zh.js';
|
|
38
|
-
import 'sonner';
|
|
39
35
|
import '../../../../infrastructure/contexts/admin.js';
|
|
40
36
|
import 'next-themes';
|
|
41
37
|
import '@tanstack/react-query';
|
|
38
|
+
import 'sonner';
|
|
42
39
|
import 'intor/next';
|
|
43
40
|
import { IsLockedButtons } from './is-locked-buttons.js';
|
|
44
41
|
import { TypeButtons } from './type-buttons.js';
|
|
@@ -26,13 +26,10 @@ import '../../../../../constants/redirect-paths.js';
|
|
|
26
26
|
import 'mime-types';
|
|
27
27
|
import '../../../../../domain/resources/admin/constants.js';
|
|
28
28
|
import 'next/image';
|
|
29
|
-
import 'ckeditor5';
|
|
30
|
-
import 'ckeditor5/translations/en.js';
|
|
31
|
-
import 'ckeditor5/translations/zh.js';
|
|
32
|
-
import 'sonner';
|
|
33
29
|
import '../../../../infrastructure/contexts/admin.js';
|
|
34
30
|
import 'next-themes';
|
|
35
31
|
import '@tanstack/react-query';
|
|
32
|
+
import 'sonner';
|
|
36
33
|
import 'intor/next';
|
|
37
34
|
|
|
38
35
|
function IsLockedButtons({
|
|
@@ -27,13 +27,10 @@ import '../../../../../constants/paths/resources.js';
|
|
|
27
27
|
import '../../../../../constants/redirect-paths.js';
|
|
28
28
|
import 'mime-types';
|
|
29
29
|
import 'next/image';
|
|
30
|
-
import 'ckeditor5';
|
|
31
|
-
import 'ckeditor5/translations/en.js';
|
|
32
|
-
import 'ckeditor5/translations/zh.js';
|
|
33
|
-
import 'sonner';
|
|
34
30
|
import '../../../../infrastructure/contexts/admin.js';
|
|
35
31
|
import 'next-themes';
|
|
36
32
|
import '@tanstack/react-query';
|
|
33
|
+
import 'sonner';
|
|
37
34
|
import 'intor/next';
|
|
38
35
|
|
|
39
36
|
function TypeButtons({ type, setType }) {
|
package/dist/src/client/interfaces/components/ui/blocks/list-cards-container/list-cards-container.js
CHANGED
|
@@ -20,18 +20,6 @@ import '@radix-ui/react-separator';
|
|
|
20
20
|
import '../../../shadcn/sidebar.js';
|
|
21
21
|
import { Spinner } from '../../../shadcn/spinner.js';
|
|
22
22
|
import '@radix-ui/react-tooltip';
|
|
23
|
-
import 'next/link';
|
|
24
|
-
import '../../../../../../constants/paths/auth.js';
|
|
25
|
-
import '../../../../../../constants/paths/main.js';
|
|
26
|
-
import '../../../../../../constants/paths/resources.js';
|
|
27
|
-
import '../../../../../../constants/redirect-paths.js';
|
|
28
|
-
import 'mime-types';
|
|
29
|
-
import '../../../../../../domain/resources/admin/constants.js';
|
|
30
|
-
import 'next/image';
|
|
31
|
-
import 'ckeditor5';
|
|
32
|
-
import 'ckeditor5/translations/en.js';
|
|
33
|
-
import 'ckeditor5/translations/zh.js';
|
|
34
|
-
import 'sonner';
|
|
35
23
|
import { SearchInput } from '../../inputs/search-input.js';
|
|
36
24
|
import { PageSizeSelector } from './page-size-selector.js';
|
|
37
25
|
import { Pagination } from './pagination.js';
|
package/dist/src/client/interfaces/components/ui/blocks/list-cards-container/page-size-selector.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
3
3
|
import { useTranslator } from 'intor/react';
|
|
4
|
+
import 'lucide-react';
|
|
4
5
|
import 'react';
|
|
5
6
|
import 'ua-parser-js';
|
|
6
7
|
import 'clsx';
|
|
7
8
|
import 'tailwind-merge';
|
|
8
9
|
import 'next/navigation';
|
|
9
|
-
import 'lucide-react';
|
|
10
10
|
import '@radix-ui/react-avatar';
|
|
11
11
|
import '../../../shadcn/badge.js';
|
|
12
12
|
import '../../../shadcn/button.js';
|
|
@@ -19,18 +19,6 @@ import '@radix-ui/react-select';
|
|
|
19
19
|
import '@radix-ui/react-separator';
|
|
20
20
|
import '../../../shadcn/sidebar.js';
|
|
21
21
|
import '@radix-ui/react-tooltip';
|
|
22
|
-
import 'next/link';
|
|
23
|
-
import '../../../../../../constants/paths/auth.js';
|
|
24
|
-
import '../../../../../../constants/paths/main.js';
|
|
25
|
-
import '../../../../../../constants/paths/resources.js';
|
|
26
|
-
import '../../../../../../constants/redirect-paths.js';
|
|
27
|
-
import 'mime-types';
|
|
28
|
-
import '../../../../../../domain/resources/admin/constants.js';
|
|
29
|
-
import 'next/image';
|
|
30
|
-
import 'ckeditor5';
|
|
31
|
-
import 'ckeditor5/translations/en.js';
|
|
32
|
-
import 'ckeditor5/translations/zh.js';
|
|
33
|
-
import 'sonner';
|
|
34
22
|
import { Select, Option } from '../../inputs/select.js';
|
|
35
23
|
|
|
36
24
|
function PageSizeSelector({
|
|
@@ -23,19 +23,16 @@ import '@radix-ui/react-separator';
|
|
|
23
23
|
import '../../../components/shadcn/sidebar.js';
|
|
24
24
|
import '@radix-ui/react-tooltip';
|
|
25
25
|
import { Button } from '../../../components/ui/buttons/button.js';
|
|
26
|
-
import '
|
|
26
|
+
import { PasswordInput } from '../../../components/ui/inputs/password-input.js';
|
|
27
27
|
import { Form } from '../../../components/ui/form/form.js';
|
|
28
28
|
import { Field } from '../../../components/ui/form/field.js';
|
|
29
|
+
import 'mime-types';
|
|
29
30
|
import '../../../../../domain/resources/admin/constants.js';
|
|
30
31
|
import 'next/image';
|
|
31
|
-
import 'ckeditor5';
|
|
32
|
-
import 'ckeditor5/translations/en.js';
|
|
33
|
-
import 'ckeditor5/translations/zh.js';
|
|
34
|
-
import 'sonner';
|
|
35
|
-
import { PasswordInput } from '../../../components/ui/inputs/password-input.js';
|
|
36
32
|
import '../../../../infrastructure/contexts/admin.js';
|
|
37
33
|
import 'next-themes';
|
|
38
34
|
import '@tanstack/react-query';
|
|
35
|
+
import 'sonner';
|
|
39
36
|
import 'intor/next';
|
|
40
37
|
|
|
41
38
|
function createChangePasswordPage({
|
|
@@ -33,9 +33,6 @@ import 'next/link';
|
|
|
33
33
|
import { Form } from '../../../components/ui/form/form.js';
|
|
34
34
|
import '../../../../../domain/resources/admin/constants.js';
|
|
35
35
|
import 'next/image';
|
|
36
|
-
import 'ckeditor5';
|
|
37
|
-
import 'ckeditor5/translations/en.js';
|
|
38
|
-
import 'ckeditor5/translations/zh.js';
|
|
39
36
|
import 'intor/next';
|
|
40
37
|
|
|
41
38
|
function createEmailUnverifiedPage({
|
|
@@ -24,19 +24,16 @@ import '@radix-ui/react-separator';
|
|
|
24
24
|
import '../../../components/shadcn/sidebar.js';
|
|
25
25
|
import '@radix-ui/react-tooltip';
|
|
26
26
|
import { Button } from '../../../components/ui/buttons/button.js';
|
|
27
|
-
import '
|
|
27
|
+
import { Input } from '../../../components/ui/inputs/input.js';
|
|
28
28
|
import { Form } from '../../../components/ui/form/form.js';
|
|
29
29
|
import { Field } from '../../../components/ui/form/field.js';
|
|
30
|
-
import
|
|
30
|
+
import 'mime-types';
|
|
31
31
|
import '../../../../../domain/resources/admin/constants.js';
|
|
32
32
|
import 'next/image';
|
|
33
|
-
import 'ckeditor5';
|
|
34
|
-
import 'ckeditor5/translations/en.js';
|
|
35
|
-
import 'ckeditor5/translations/zh.js';
|
|
36
|
-
import 'sonner';
|
|
37
33
|
import '../../../../infrastructure/contexts/admin.js';
|
|
38
34
|
import 'next-themes';
|
|
39
35
|
import '@tanstack/react-query';
|
|
36
|
+
import 'sonner';
|
|
40
37
|
import 'intor/next';
|
|
41
38
|
|
|
42
39
|
function createForgotPasswordPage({
|
|
@@ -29,9 +29,6 @@ import '@radix-ui/react-tooltip';
|
|
|
29
29
|
import 'next/link';
|
|
30
30
|
import '../../../../domain/resources/admin/constants.js';
|
|
31
31
|
import 'next/image';
|
|
32
|
-
import 'ckeditor5';
|
|
33
|
-
import 'ckeditor5/translations/en.js';
|
|
34
|
-
import 'ckeditor5/translations/zh.js';
|
|
35
32
|
import { AuthSkeleton } from '../../components/ui/layouts/auth-skeleton.js';
|
|
36
33
|
import 'intor/next';
|
|
37
34
|
|
|
@@ -23,19 +23,16 @@ import '@radix-ui/react-separator';
|
|
|
23
23
|
import '../../../components/shadcn/sidebar.js';
|
|
24
24
|
import '@radix-ui/react-tooltip';
|
|
25
25
|
import { Button } from '../../../components/ui/buttons/button.js';
|
|
26
|
-
import '
|
|
26
|
+
import { PasswordInput } from '../../../components/ui/inputs/password-input.js';
|
|
27
27
|
import { Form } from '../../../components/ui/form/form.js';
|
|
28
28
|
import { Field } from '../../../components/ui/form/field.js';
|
|
29
|
+
import 'mime-types';
|
|
29
30
|
import '../../../../../domain/resources/admin/constants.js';
|
|
30
31
|
import 'next/image';
|
|
31
|
-
import 'ckeditor5';
|
|
32
|
-
import 'ckeditor5/translations/en.js';
|
|
33
|
-
import 'ckeditor5/translations/zh.js';
|
|
34
|
-
import 'sonner';
|
|
35
|
-
import { PasswordInput } from '../../../components/ui/inputs/password-input.js';
|
|
36
32
|
import '../../../../infrastructure/contexts/admin.js';
|
|
37
33
|
import 'next-themes';
|
|
38
34
|
import '@tanstack/react-query';
|
|
35
|
+
import 'sonner';
|
|
39
36
|
import 'intor/next';
|
|
40
37
|
|
|
41
38
|
function createResetPasswordPage({
|
|
@@ -28,15 +28,12 @@ import '@radix-ui/react-separator';
|
|
|
28
28
|
import '../../../components/shadcn/sidebar.js';
|
|
29
29
|
import '@radix-ui/react-tooltip';
|
|
30
30
|
import { Button } from '../../../components/ui/buttons/button.js';
|
|
31
|
+
import { Input } from '../../../components/ui/inputs/input.js';
|
|
32
|
+
import { PasswordInput } from '../../../components/ui/inputs/password-input.js';
|
|
31
33
|
import { Form } from '../../../components/ui/form/form.js';
|
|
32
34
|
import { Field } from '../../../components/ui/form/field.js';
|
|
33
|
-
import { Input } from '../../../components/ui/inputs/input.js';
|
|
34
35
|
import '../../../../../domain/resources/admin/constants.js';
|
|
35
36
|
import 'next/image';
|
|
36
|
-
import 'ckeditor5';
|
|
37
|
-
import 'ckeditor5/translations/en.js';
|
|
38
|
-
import 'ckeditor5/translations/zh.js';
|
|
39
|
-
import { PasswordInput } from '../../../components/ui/inputs/password-input.js';
|
|
40
37
|
import 'intor/next';
|
|
41
38
|
|
|
42
39
|
function createSignInPage({
|
|
@@ -30,9 +30,6 @@ import '@radix-ui/react-tooltip';
|
|
|
30
30
|
import 'next/link';
|
|
31
31
|
import '../../../../domain/resources/admin/constants.js';
|
|
32
32
|
import 'next/image';
|
|
33
|
-
import 'ckeditor5';
|
|
34
|
-
import 'ckeditor5/translations/en.js';
|
|
35
|
-
import 'ckeditor5/translations/zh.js';
|
|
36
33
|
import { DashboardSkeleton } from '../../components/ui/layouts/dashboard-skeleton.js';
|
|
37
34
|
import 'intor/next';
|
|
38
35
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../export/client/components/editor/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,YAAY,EACZ,mBAAmB,GACpB,MAAM,+DAA+D,CAAC"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { createAdminInitializer, PageHeader, ListCardsContainer, Button, type ButtonProps, ReturnButton, ActionButtonsCard, ResourceCard, ArrayList, Badge, HtmlDisplay, ObjectArrayList, Accordion, AccordionContainer, ExpandableList, createFileInfo, createFilePicker, createFilePreview, createFilePreviewList, createUploader, ExternalLink, PickModal, createSmartImage, Tick, Form, Field, FieldBody, FieldsContainer, MainFields, SideFields, IndexField, SlugField, ControlFields, type ControlMeta,
|
|
1
|
+
export { createAdminInitializer, PageHeader, ListCardsContainer, Button, type ButtonProps, ReturnButton, ActionButtonsCard, ResourceCard, ArrayList, Badge, HtmlDisplay, ObjectArrayList, Accordion, AccordionContainer, ExpandableList, createFileInfo, 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, createFileCard, createFileList, } from "../../../src/client/interfaces/components";
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../export/client/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,sBAAsB,EAGtB,UAAU,EACV,kBAAkB,EAGlB,MAAM,EACN,KAAK,WAAW,EAChB,YAAY,EAGZ,iBAAiB,EACjB,YAAY,EAGZ,SAAS,EACT,KAAK,EACL,WAAW,EACX,eAAe,EAGf,SAAS,EACT,kBAAkB,EAClB,cAAc,EACd,cAAc,EACd,gBAAgB,EAChB,iBAAiB,EACjB,qBAAqB,EACrB,cAAc,EACd,YAAY,EACZ,SAAS,EACT,gBAAgB,EAChB,IAAI,EAGJ,IAAI,EACJ,KAAK,EACL,SAAS,EACT,eAAe,EACf,UAAU,EACV,UAAU,EACV,UAAU,EACV,SAAS,EACT,aAAa,EACb,KAAK,WAAW,EAGhB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../export/client/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,sBAAsB,EAGtB,UAAU,EACV,kBAAkB,EAGlB,MAAM,EACN,KAAK,WAAW,EAChB,YAAY,EAGZ,iBAAiB,EACjB,YAAY,EAGZ,SAAS,EACT,KAAK,EACL,WAAW,EACX,eAAe,EAGf,SAAS,EACT,kBAAkB,EAClB,cAAc,EACd,cAAc,EACd,gBAAgB,EAChB,iBAAiB,EACjB,qBAAqB,EACrB,cAAc,EACd,YAAY,EACZ,SAAS,EACT,gBAAgB,EAChB,IAAI,EAGJ,IAAI,EACJ,KAAK,EACL,SAAS,EACT,eAAe,EACf,UAAU,EACV,UAAU,EACV,UAAU,EACV,SAAS,EACT,aAAa,EACb,KAAK,WAAW,EAGhB,UAAU,EACV,QAAQ,EACR,KAAK,EACL,KAAK,UAAU,EACf,aAAa,EACb,WAAW,EACX,MAAM,EACN,MAAM,EACN,QAAQ,EAGR,gBAAgB,EAChB,iBAAiB,EACjB,YAAY,EACZ,KAAK,OAAO,EACZ,OAAO,EACP,eAAe,EACf,OAAO,EACP,YAAY,EACZ,cAAc,EACd,UAAU,EACV,YAAY,EACZ,kBAAkB,EAClB,mBAAmB,EAGnB,cAAc,EACd,cAAc,GACf,MAAM,2CAA2C,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { createAdminInitializer } from "./admin-initializer";
|
|
2
|
-
export { PageHeader, ListCardsContainer, Button, type ButtonProps, ReturnButton, ActionButtonsCard, ResourceCard, ArrayList, Badge, HtmlDisplay, ObjectArrayList, Accordion, AccordionContainer, ExpandableList, createFileInfo, createFilePicker, createFilePreview, createFilePreviewList, createUploader, ExternalLink, PickModal, createSmartImage, Tick, Form, Field, FieldBody, FieldsContainer, MainFields, SideFields, IndexField, SlugField, ControlFields, type ControlMeta,
|
|
2
|
+
export { PageHeader, ListCardsContainer, Button, type ButtonProps, ReturnButton, ActionButtonsCard, ResourceCard, ArrayList, Badge, HtmlDisplay, ObjectArrayList, Accordion, AccordionContainer, ExpandableList, createFileInfo, 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 "./ui";
|
|
3
3
|
export { createFileCard, createFileList } from "./resources";
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/client/interfaces/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAE7D,OAAO,EAEL,UAAU,EACV,kBAAkB,EAElB,MAAM,EACN,KAAK,WAAW,EAChB,YAAY,EAEZ,iBAAiB,EACjB,YAAY,EAEZ,SAAS,EACT,KAAK,EACL,WAAW,EACX,eAAe,EAEf,SAAS,EACT,kBAAkB,EAClB,cAAc,EACd,cAAc,EACd,gBAAgB,EAChB,iBAAiB,EACjB,qBAAqB,EACrB,cAAc,EACd,YAAY,EACZ,SAAS,EACT,gBAAgB,EAChB,IAAI,EAEJ,IAAI,EACJ,KAAK,EACL,SAAS,EACT,eAAe,EACf,UAAU,EACV,UAAU,EACV,UAAU,EACV,SAAS,EACT,aAAa,EACb,KAAK,WAAW,EAEhB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/client/interfaces/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAE7D,OAAO,EAEL,UAAU,EACV,kBAAkB,EAElB,MAAM,EACN,KAAK,WAAW,EAChB,YAAY,EAEZ,iBAAiB,EACjB,YAAY,EAEZ,SAAS,EACT,KAAK,EACL,WAAW,EACX,eAAe,EAEf,SAAS,EACT,kBAAkB,EAClB,cAAc,EACd,cAAc,EACd,gBAAgB,EAChB,iBAAiB,EACjB,qBAAqB,EACrB,cAAc,EACd,YAAY,EACZ,SAAS,EACT,gBAAgB,EAChB,IAAI,EAEJ,IAAI,EACJ,KAAK,EACL,SAAS,EACT,eAAe,EACf,UAAU,EACV,UAAU,EACV,UAAU,EACV,SAAS,EACT,aAAa,EACb,KAAK,WAAW,EAEhB,UAAU,EACV,QAAQ,EACR,KAAK,EACL,KAAK,UAAU,EACf,aAAa,EACb,WAAW,EACX,MAAM,EACN,MAAM,EACN,QAAQ,EAER,gBAAgB,EAChB,iBAAiB,EACjB,YAAY,EACZ,KAAK,OAAO,EACZ,OAAO,EACP,eAAe,EACf,OAAO,EACP,YAAY,EACZ,cAAc,EACd,UAAU,EACV,YAAY,EACZ,kBAAkB,EAClB,mBAAmB,GACpB,MAAM,MAAM,CAAC;AAEd,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC"}
|
|
@@ -4,6 +4,6 @@ export { ActionButtonsCard, ResourceCard } from "./cards";
|
|
|
4
4
|
export { ArrayList, Badge, HtmlDisplay, ObjectArrayList } from "./display";
|
|
5
5
|
export { Accordion, AccordionContainer, ExpandableList, createFileInfo, createFilePicker, createFilePreview, createFilePreviewList, createUploader, ExternalLink, PickModal, createSmartImage, Tick, } from "./features";
|
|
6
6
|
export { Form, Field, FieldBody, FieldsContainer, MainFields, SideFields, IndexField, SlugField, ControlFields, type ControlMeta, } from "./form";
|
|
7
|
-
export {
|
|
7
|
+
export { ArrayInput, Checkbox, Input, type InputProps, PasswordInput, SearchInput, Select, Option, Textarea, } from "./inputs";
|
|
8
8
|
export { ContentContainer, DashboardSkeleton, AuthSkeleton, type NavItem, NavMain, SidebarProvider, Sidebar, SidebarInset, SidebarContent, useSidebar, createNavbar, createI18nSelector, createSignOutButton, } from "./layouts";
|
|
9
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,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,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,
|
|
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,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"}
|
package/dist/types/src/client/interfaces/components/ui/inputs/editor/base/base-editor.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base-editor.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/client/interfaces/components/ui/inputs/editor/base/base-editor.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"base-editor.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/client/interfaces/components/ui/inputs/editor/base/base-editor.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAQ1C,qBAAa,UAAW,SAAQ,aAAa;IAC3C,OAAgB,cAAc,4uDAAkB;IAChD,OAAgB,aAAa,EAAE,YAAY,CAuFzC;CACH"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"use-init-editor.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/client/interfaces/components/ui/inputs/editor/use-init-editor/use-init-editor.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"use-init-editor.d.ts","sourceRoot":"","sources":["../../../../../../../../../../src/client/interfaces/components/ui/inputs/editor/use-init-editor/use-init-editor.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAInD,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AAQrC,eAAO,MAAM,aAAa,GAAI,kGAQ3B,mBAAmB,iDA4CrB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/client/interfaces/components/ui/inputs/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../src/client/interfaces/components/ui/inputs/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACtC,OAAO,EAAE,KAAK,EAAE,KAAK,UAAU,EAAE,MAAM,SAAS,CAAC;AACjD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAC1C,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yimingliao/cms",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.148",
|
|
4
4
|
"author": "Yiming Liao",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -23,6 +23,11 @@
|
|
|
23
23
|
"import": "./dist/export/client/components/index.js",
|
|
24
24
|
"require": "./dist/export/client/components/index.js"
|
|
25
25
|
},
|
|
26
|
+
"./client/editor": {
|
|
27
|
+
"types": "./dist/types/export/client/editor/index.d.ts",
|
|
28
|
+
"import": "./dist/export/client/editor/index.js",
|
|
29
|
+
"require": "./dist/export/client/editor/index.js"
|
|
30
|
+
},
|
|
26
31
|
"./client/pages": {
|
|
27
32
|
"types": "./dist/types/export/client/pages/index.d.ts",
|
|
28
33
|
"import": "./dist/export/client/pages/index.js",
|