@prismicio/editor-ui 0.4.79-alpha.jp-release-script.1 → 0.4.79-bump-types-internal.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{BarChart-aK8t7n9B.js → BarChart-NmBMMDYL.js} +1 -1
- package/dist/{BarChart-utAzuJ4N.mjs → BarChart-yEm-2JeH.mjs} +1 -1
- package/dist/components/ActionList/ActionList.d.ts +1 -1
- package/dist/components/EditableText/EditableText.d.ts +1 -3
- package/dist/components/Form/FormInput.d.ts +1 -1
- package/dist/components/Table/Table.d.ts +0 -1
- package/dist/components/TextArea/TextArea.d.ts +0 -1
- package/dist/{index-hu1NIdLv.mjs → index-EbFdiRMR.mjs} +10487 -10677
- package/dist/{index-xECIgubf.js → index-h_wYQy3w.js} +194 -194
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +3 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as _i, g as et, j as w, t as Fi, d as x1 } from "./index-
|
|
1
|
+
import { c as _i, g as et, j as w, t as Fi, d as x1 } from "./index-EbFdiRMR.mjs";
|
|
2
2
|
import * as nn from "react";
|
|
3
3
|
import { useEffect as sn, useLayoutEffect as $1, useState as Tn, useRef as Xe, forwardRef as ir, useCallback as Ce, useContext as kn, useMemo as fe, createContext as si, memo as Oe, createElement as an, cloneElement as w1, isValidElement as T1, Fragment as qc } from "react";
|
|
4
4
|
import { unstable_batchedUpdates as M1 } from "react-dom";
|
|
@@ -2,7 +2,7 @@ import { type MouseEvent, type PropsWithChildren, type ReactNode } from "react";
|
|
|
2
2
|
import type { SX } from "../../theme";
|
|
3
3
|
import { type IconName } from "../Icon";
|
|
4
4
|
import { textVariantMapping } from "../Text";
|
|
5
|
-
export type ActionListVariant = "borderless" | "bordered" | "compact"
|
|
5
|
+
export type ActionListVariant = "borderless" | "bordered" | "compact";
|
|
6
6
|
export interface ActionListProps extends PropsWithChildren {
|
|
7
7
|
variant?: ActionListVariant;
|
|
8
8
|
gap?: 0 | 4 | 8;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { type
|
|
2
|
+
import { type ThemeKeys } from "../../theme";
|
|
3
3
|
import { textVariantMapping } from "../Text";
|
|
4
4
|
export interface EditableTextProps {
|
|
5
|
-
name?: string;
|
|
6
5
|
"aria-label": string;
|
|
7
6
|
value: string;
|
|
8
7
|
color?: ThemeKeys<"color">;
|
|
@@ -10,6 +9,5 @@ export interface EditableTextProps {
|
|
|
10
9
|
disabled?: boolean;
|
|
11
10
|
onBlur?: () => void;
|
|
12
11
|
onChange?: (value: string) => void;
|
|
13
|
-
sx?: SX;
|
|
14
12
|
}
|
|
15
13
|
export declare const EditableText: (props: EditableTextProps & import("react").RefAttributes<HTMLDivElement>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | null;
|
|
@@ -19,5 +19,5 @@ export interface FormInputProps extends Pick<FormInputFieldProps, "disabled" | "
|
|
|
19
19
|
name?: string;
|
|
20
20
|
}
|
|
21
21
|
export declare const FormInput: (props: FormInputProps & import("react").RefAttributes<HTMLInputElement>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | null;
|
|
22
|
-
type AutoCompleteValue = "username" | "current-password"
|
|
22
|
+
type AutoCompleteValue = "username" | "current-password";
|
|
23
23
|
export {};
|
|
@@ -61,7 +61,6 @@ export interface TableCellProps {
|
|
|
61
61
|
align?: "center" | "end";
|
|
62
62
|
/** Whether the content of the cell is interactive, this disables the link properties for that cell. Defaults to `false`. */
|
|
63
63
|
interactive?: boolean;
|
|
64
|
-
alignItems?: "center" | "flex-start" | "flex-end";
|
|
65
64
|
}
|
|
66
65
|
/**
|
|
67
66
|
* Table cells wrap the individual content of the table.
|
|
@@ -13,6 +13,5 @@ export interface TextAreaProps {
|
|
|
13
13
|
paddingRight?: ThemeKeys<"space">;
|
|
14
14
|
sx?: SX;
|
|
15
15
|
onBlur?: () => void;
|
|
16
|
-
onFocus?: () => void;
|
|
17
16
|
}
|
|
18
17
|
export declare const TextArea: (props: TextAreaProps & import("react").RefAttributes<HTMLTextAreaElement>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | null;
|