tinacms 0.0.0-d8a1127-20250829061530 → 0.0.0-d9487bf-20251119052214

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.
Files changed (42) hide show
  1. package/dist/auth/AuthModal.d.ts +1 -4
  2. package/dist/auth/TinaCloudProvider.d.ts +0 -1
  3. package/dist/client.js +2 -2
  4. package/dist/client.mjs +2 -2
  5. package/dist/index.js +1594 -1133
  6. package/dist/index.mjs +1594 -1131
  7. package/dist/rich-text/index.d.ts +6 -0
  8. package/dist/rich-text/index.js +8 -1
  9. package/dist/rich-text/index.mjs +8 -1
  10. package/dist/rich-text/static.d.ts +6 -0
  11. package/dist/rich-text/static.js +8 -1
  12. package/dist/rich-text/static.mjs +8 -1
  13. package/dist/tina-cms.d.ts +1 -1
  14. package/dist/toolkit/fields/components/select.d.ts +1 -1
  15. package/dist/toolkit/fields/plugins/dnd-kit-wrapper.d.ts +49 -0
  16. package/dist/toolkit/fields/plugins/group-list-field-plugin.d.ts +2 -1
  17. package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/components/plate-ui/blockquote-element.d.ts +1 -1
  18. package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/components/plate-ui/button.d.ts +2 -2
  19. package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/components/plate-ui/code-block/code-block-element.d.ts +1 -1
  20. package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/components/plate-ui/code-line-element.d.ts +1 -1
  21. package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/components/plate-ui/list-element.d.ts +2 -2
  22. package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/components/plate-ui/paragraph-element.d.ts +1 -1
  23. package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/components/plate-ui/slash-input-element.d.ts +1 -1
  24. package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/components/plate-ui/table/table-cell-element.d.ts +2 -2
  25. package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/components/plate-ui/table/table-element.d.ts +1 -1
  26. package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/components/plate-ui/table/table-row-element.d.ts +1 -1
  27. package/dist/toolkit/fields/plugins/mdx-field-plugin/plate/plugins/ui/components.d.ts +18 -18
  28. package/dist/toolkit/form-builder/create-branch-modal.d.ts +13 -0
  29. package/dist/toolkit/form-builder/form-builder.d.ts +0 -11
  30. package/dist/toolkit/form-builder/index.d.ts +1 -0
  31. package/dist/toolkit/icons/TinaExtended.d.ts +4 -0
  32. package/dist/toolkit/icons/index.d.ts +1 -0
  33. package/dist/toolkit/plugin-branch-switcher/branch-button.d.ts +3 -1
  34. package/dist/toolkit/react-modals/modal/modal-actions.d.ts +2 -1
  35. package/dist/toolkit/react-modals/modal/modal-header.d.ts +1 -1
  36. package/dist/toolkit/react-sidebar/components/badge.d.ts +6 -0
  37. package/dist/toolkit/react-sidebar/components/callout.d.ts +5 -0
  38. package/dist/toolkit/react-sidebar/components/local-warning.d.ts +3 -1
  39. package/dist/toolkit/styles/dropdown-button.d.ts +75 -0
  40. package/dist/toolkit/styles/index.d.ts +1 -0
  41. package/package.json +8 -9
  42. package/dist/toolkit/react-sidebar/components/alert.d.ts +0 -5
@@ -0,0 +1,13 @@
1
+ import * as React from 'react';
2
+ export declare const CreateBranchModal: ({ close, safeSubmit, path, values, crudType, }: {
3
+ safeSubmit: () => Promise<void>;
4
+ close: () => void;
5
+ path: string;
6
+ values: Record<string, unknown>;
7
+ crudType: string;
8
+ }) => React.JSX.Element;
9
+ export declare const PrefixedTextField: ({ label, prefix, ...props }: {
10
+ [x: string]: any;
11
+ label?: any;
12
+ prefix?: string;
13
+ }) => React.JSX.Element;
@@ -29,14 +29,3 @@ export declare const CreateBranchModel: ({ close, safeSubmit, relativePath, valu
29
29
  values: Record<string, unknown>;
30
30
  crudType: string;
31
31
  }) => React.JSX.Element;
32
- export declare const CreateBranchModal: ({ close, safeSubmit, path, values, crudType, }: {
33
- safeSubmit: () => Promise<void>;
34
- close: () => void;
35
- path: string;
36
- values: Record<string, unknown>;
37
- crudType: string;
38
- }) => React.JSX.Element;
39
- export declare const PrefixedTextField: ({ prefix, ...props }: {
40
- [x: string]: any;
41
- prefix?: string;
42
- }) => React.JSX.Element;
@@ -7,4 +7,5 @@ export * from './form-portal';
7
7
  export * from './loading-dots';
8
8
  export * from './reset-form';
9
9
  export * from './form-actions';
10
+ export * from './create-branch-modal';
10
11
  export type { FieldRenderProps } from 'react-final-form';
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ export declare const TinaExtendedIcon: ({ ...props }: {
3
+ [x: string]: any;
4
+ }) => React.JSX.Element;
@@ -52,3 +52,4 @@ export * from './Folder';
52
52
  export * from './File';
53
53
  export * from './Circle';
54
54
  export * from './CircleCheck';
55
+ export * from './TinaExtended';
@@ -1,3 +1,5 @@
1
1
  import * as React from 'react';
2
- export declare const BranchButton: () => React.JSX.Element;
2
+ export declare const BranchButton: ({ className }: {
3
+ className?: string;
4
+ }) => React.JSX.Element;
3
5
  export declare const BranchPreviewButton: (props: React.ButtonHTMLAttributes<HTMLButtonElement>) => React.JSX.Element;
@@ -1,4 +1,5 @@
1
1
  import * as React from 'react';
2
- export declare const ModalActions: ({ children }: {
2
+ export declare const ModalActions: ({ align, children }: {
3
+ align?: string;
3
4
  children: any;
4
5
  }) => React.JSX.Element;
@@ -1,6 +1,6 @@
1
1
  import * as React from 'react';
2
2
  export interface ModalHeaderProps {
3
- children: React.ReactChild | React.ReactChild[];
3
+ children: React.ReactNode;
4
4
  close?(): void;
5
5
  }
6
6
  export declare const ModalHeader: ({ children, close }: ModalHeaderProps) => React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import * as React from 'react';
2
+ export declare const Badge: ({ children, calloutStyle, className, displayIcon, ...props }: {
3
+ children?: React.ReactNode;
4
+ calloutStyle?: "warning" | "info" | "success" | "error";
5
+ displayIcon?: boolean;
6
+ } & React.HTMLProps<HTMLDivElement>) => React.JSX.Element;
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ export declare const Callout: ({ children, calloutStyle, className, ...props }: {
3
+ children?: React.ReactNode;
4
+ calloutStyle?: "warning" | "info" | "success" | "error";
5
+ } & React.HTMLProps<HTMLDivElement>) => React.JSX.Element;
@@ -1,3 +1,5 @@
1
1
  import * as React from 'react';
2
- export declare const LocalWarning: () => React.JSX.Element;
2
+ export declare const LocalWarning: ({ className }: {
3
+ className?: string;
4
+ }) => React.JSX.Element;
3
5
  export declare const BillingWarning: () => React.JSX.Element;
@@ -0,0 +1,75 @@
1
+ import * as React from 'react';
2
+ import { ButtonProps } from './button';
3
+ export interface DropdownButtonItem {
4
+ label: string;
5
+ onClick: () => void;
6
+ variant?: 'default' | 'destructive';
7
+ icon?: React.ReactNode;
8
+ disabled?: boolean;
9
+ }
10
+ export interface DropdownButtonProps extends Omit<ButtonProps, 'onClick'> {
11
+ /**
12
+ * The main action to perform when the button is clicked
13
+ */
14
+ onMainAction?: () => void;
15
+ /**
16
+ * Array of dropdown menu items
17
+ */
18
+ items: DropdownButtonItem[];
19
+ /**
20
+ * Whether to show the dropdown arrow in a split button style
21
+ * @default true
22
+ */
23
+ showSplitButton?: boolean;
24
+ /**
25
+ * Alignment of the dropdown menu
26
+ * @default 'end'
27
+ */
28
+ align?: 'start' | 'center' | 'end';
29
+ }
30
+ /**
31
+ * A button component that combines a primary action with a dropdown menu of additional options.
32
+ *
33
+ * This component follows the split-button pattern found in TinaCMS, where the main button
34
+ * performs a primary action and a small arrow button opens a dropdown menu with additional options.
35
+ *
36
+ * @example
37
+ * // Basic usage with split button
38
+ * <DropdownButton
39
+ * variant="primary"
40
+ * onMainAction={() => console.log('Save to new branch')}
41
+ * items={[
42
+ * { label: 'Save to protected branch', onClick: () => console.log('Protected') },
43
+ * { label: 'Save and publish', onClick: () => console.log('Publish') },
44
+ * ]}
45
+ * >
46
+ * Save to new branch
47
+ * </DropdownButton>
48
+ *
49
+ * @example
50
+ * // Dropdown-only button (no main action)
51
+ * <DropdownButton
52
+ * variant="secondary"
53
+ * showSplitButton={false}
54
+ * items={[
55
+ * { label: 'Save to new branch', onClick: () => console.log('New branch') },
56
+ * { label: 'Save to protected branch', onClick: () => console.log('Protected') },
57
+ * ]}
58
+ * >
59
+ * Save options
60
+ * </DropdownButton>
61
+ *
62
+ * @example
63
+ * // With icons and destructive action
64
+ * <DropdownButton
65
+ * variant="primary"
66
+ * onMainAction={() => console.log('Save')}
67
+ * items={[
68
+ * { label: 'Duplicate', onClick: () => console.log('Duplicate'), icon: <CopyIcon /> },
69
+ * { label: 'Delete', onClick: () => console.log('Delete'), variant: 'destructive', icon: <TrashIcon /> },
70
+ * ]}
71
+ * >
72
+ * Save
73
+ * </DropdownButton>
74
+ */
75
+ export declare const DropdownButton: React.ForwardRefExoticComponent<DropdownButtonProps & React.RefAttributes<HTMLButtonElement>>;
@@ -2,3 +2,4 @@ export * from './button';
2
2
  export * from './font-loader';
3
3
  export * from './overflow-menu';
4
4
  export * from './message';
5
+ export * from './dropdown-button';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tinacms",
3
- "version": "0.0.0-d8a1127-20250829061530",
3
+ "version": "0.0.0-d9487bf-20251119052214",
4
4
  "main": "dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "exports": {
@@ -127,11 +127,11 @@
127
127
  "monaco-editor": "0.31.0",
128
128
  "prism-react-renderer": "^2.4.1",
129
129
  "prop-types": "15.7.2",
130
- "react-beautiful-dnd": "^13.1.1",
130
+ "@dnd-kit/core": "^6.1.0",
131
+ "@dnd-kit/sortable": "^8.0.0",
132
+ "@dnd-kit/utilities": "^3.2.2",
131
133
  "react-color": "^2.19.3",
132
134
  "react-datetime": "^3.3.1",
133
- "react-dnd": "^16.0.1",
134
- "react-dnd-html5-backend": "^16.0.1",
135
135
  "react-dropzone": "14.2.3",
136
136
  "react-final-form": "^6.5.9",
137
137
  "react-icons": "^5.4.0",
@@ -141,9 +141,9 @@
141
141
  "webfontloader": "1.6.28",
142
142
  "yup": "^1.6.1",
143
143
  "zod": "^3.24.2",
144
- "@tinacms/mdx": "1.8.1",
145
- "@tinacms/search": "1.1.1",
146
- "@tinacms/schema-tools": "1.9.1"
144
+ "@tinacms/mdx": "0.0.0-d9487bf-20251119052214",
145
+ "@tinacms/search": "0.0.0-d9487bf-20251119052214",
146
+ "@tinacms/schema-tools": "0.0.0-d9487bf-20251119052214"
147
147
  },
148
148
  "devDependencies": {
149
149
  "@graphql-tools/utils": "^10.8.1",
@@ -159,7 +159,6 @@
159
159
  "@types/node": "^22.13.1",
160
160
  "@types/prop-types": "^15.7.14",
161
161
  "@types/react": "^18.3.18",
162
- "@types/react-beautiful-dnd": "^13.1.8",
163
162
  "@types/react-color": "^3.0.13",
164
163
  "@types/react-dom": "^18.3.5",
165
164
  "@types/yup": "^0.32.0",
@@ -177,7 +176,7 @@
177
176
  "typescript": "^5.7.3",
178
177
  "vite": "^5.4.14",
179
178
  "vitest": "^2.1.9",
180
- "@tinacms/scripts": "1.4.0"
179
+ "@tinacms/scripts": "0.0.0-d9487bf-20251119052214"
181
180
  },
182
181
  "peerDependencies": {
183
182
  "react": ">=16.14.0",
@@ -1,5 +0,0 @@
1
- import * as React from 'react';
2
- export declare const Alert: ({ children, alertStyle, className, ...props }: {
3
- children?: React.ReactNode;
4
- alertStyle?: "warning";
5
- } & React.HTMLProps<HTMLDivElement>) => React.JSX.Element;