@texturehq/edges 1.33.2 → 1.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +57 -3
- package/dist/{RichTextEditor-CxrunTg7.d.cts → RichTextEditor-diZqy_s1.d.cts} +1 -1
- package/dist/{RichTextEditor-CxrunTg7.d.ts → RichTextEditor-diZqy_s1.d.ts} +1 -1
- package/dist/{TimeField-DRQshIHX.d.ts → TimeField-7pTUPh11.d.ts} +32 -17
- package/dist/{TimeField-WCmeiLu3.d.cts → TimeField-CqmVrAdn.d.cts} +32 -17
- package/dist/{colors-Cgs2MGZ8.d.ts → colors-CoULWZ5j.d.ts} +53 -18
- package/dist/{colors-DGRiGzgj.d.cts → colors-upTGgIQe.d.cts} +53 -18
- package/dist/form/index.cjs +1 -1
- package/dist/form/index.cjs.map +1 -1
- package/dist/form/index.d.cts +1 -1
- package/dist/form/index.d.ts +1 -1
- package/dist/form/index.js +1 -1
- package/dist/form/index.js.map +1 -1
- package/dist/{index-BqpWEc_N.d.ts → index-dofSwYId.d.cts} +5 -5
- package/dist/{index-BqpWEc_N.d.cts → index-dofSwYId.d.ts} +5 -5
- package/dist/index.cjs +10 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +161 -41
- package/dist/index.d.ts +161 -41
- package/dist/index.js +10 -10
- package/dist/index.js.map +1 -1
- package/dist/prose.css +202 -0
- package/dist/rhf/index.cjs +1 -1
- package/dist/rhf/index.cjs.map +1 -1
- package/dist/rhf/index.d.cts +2 -2
- package/dist/rhf/index.d.ts +2 -2
- package/dist/rhf/index.js +1 -1
- package/dist/rhf/index.js.map +1 -1
- package/dist/server.cjs +2 -2
- package/dist/server.cjs.map +1 -1
- package/dist/server.d.cts +2 -2
- package/dist/server.d.ts +2 -2
- package/dist/server.js +2 -2
- package/dist/server.js.map +1 -1
- package/dist/styles/computed.css +2 -2
- package/dist/styles/responsive-typography.css +9 -7
- package/dist/styles/theme-light-override.css +26 -15
- package/dist/styles.css +953 -877
- package/dist/theme.css +20 -7
- package/dist/typography.css +150 -0
- package/package.json +10 -12
- package/scripts/check-legacy-action-variants.mjs +96 -0
- package/scripts/check-legacy-font-colors.mjs +92 -0
- package/scripts/copy-assets.js +12 -0
- package/templates/claude-rules/.claude +5 -5
- package/templates/claude-rules/claude.md +5 -5
- package/templates/codex-rules/codex.md +5 -5
- package/dist/generated/tailwind-tokens-dark.css +0 -397
- package/dist/generated/tailwind-tokens-light.css +0 -611
- package/dist/generated/viz-runtime.css +0 -243
- package/scripts/generate-viz-runtime.js +0 -107
- package/scripts/validate-tokens.js +0 -176
|
@@ -11,7 +11,7 @@ interface DialogAction {
|
|
|
11
11
|
* Click handler. Not required if formId is provided.
|
|
12
12
|
*/
|
|
13
13
|
onPress?: () => void;
|
|
14
|
-
variant?: "
|
|
14
|
+
variant?: "primary" | "secondary" | "destructive" | "icon" | "link" | "unstyled" | "ghost";
|
|
15
15
|
size?: "sm" | "md" | "lg";
|
|
16
16
|
isLoading?: boolean;
|
|
17
17
|
isDisabled?: boolean;
|
|
@@ -244,8 +244,8 @@ interface DialogFormProps extends Omit<DialogProps, "children" | "footerContent"
|
|
|
244
244
|
primaryLabel?: string;
|
|
245
245
|
secondaryLabel?: string;
|
|
246
246
|
onCancel?: () => void;
|
|
247
|
-
primaryVariant?: "
|
|
248
|
-
secondaryVariant?: "
|
|
247
|
+
primaryVariant?: "primary" | "secondary" | "destructive" | "icon" | "link" | "unstyled" | "ghost";
|
|
248
|
+
secondaryVariant?: "primary" | "secondary" | "destructive" | "icon" | "link" | "unstyled" | "ghost";
|
|
249
249
|
children?: React.ReactNode;
|
|
250
250
|
}
|
|
251
251
|
declare function DialogForm({ formId, onSubmit, primaryLabel, secondaryLabel, onCancel, primaryVariant, secondaryVariant, children, title, ...dialogProps }: DialogFormProps): react_jsx_runtime.JSX.Element;
|
|
@@ -256,8 +256,8 @@ interface DrawerFormProps extends Omit<DrawerProps, "children" | "footerContent"
|
|
|
256
256
|
primaryLabel?: string;
|
|
257
257
|
secondaryLabel?: string;
|
|
258
258
|
onCancel?: () => void;
|
|
259
|
-
primaryVariant?: "
|
|
260
|
-
secondaryVariant?: "
|
|
259
|
+
primaryVariant?: "primary" | "secondary" | "destructive" | "icon" | "link" | "unstyled" | "ghost";
|
|
260
|
+
secondaryVariant?: "primary" | "secondary" | "destructive" | "icon" | "link" | "unstyled" | "ghost";
|
|
261
261
|
children?: React.ReactNode;
|
|
262
262
|
}
|
|
263
263
|
declare function DrawerForm({ formId, onSubmit, primaryLabel, secondaryLabel, onCancel, primaryVariant, secondaryVariant, children, ...drawerProps }: DrawerFormProps): react_jsx_runtime.JSX.Element;
|
|
@@ -11,7 +11,7 @@ interface DialogAction {
|
|
|
11
11
|
* Click handler. Not required if formId is provided.
|
|
12
12
|
*/
|
|
13
13
|
onPress?: () => void;
|
|
14
|
-
variant?: "
|
|
14
|
+
variant?: "primary" | "secondary" | "destructive" | "icon" | "link" | "unstyled" | "ghost";
|
|
15
15
|
size?: "sm" | "md" | "lg";
|
|
16
16
|
isLoading?: boolean;
|
|
17
17
|
isDisabled?: boolean;
|
|
@@ -244,8 +244,8 @@ interface DialogFormProps extends Omit<DialogProps, "children" | "footerContent"
|
|
|
244
244
|
primaryLabel?: string;
|
|
245
245
|
secondaryLabel?: string;
|
|
246
246
|
onCancel?: () => void;
|
|
247
|
-
primaryVariant?: "
|
|
248
|
-
secondaryVariant?: "
|
|
247
|
+
primaryVariant?: "primary" | "secondary" | "destructive" | "icon" | "link" | "unstyled" | "ghost";
|
|
248
|
+
secondaryVariant?: "primary" | "secondary" | "destructive" | "icon" | "link" | "unstyled" | "ghost";
|
|
249
249
|
children?: React.ReactNode;
|
|
250
250
|
}
|
|
251
251
|
declare function DialogForm({ formId, onSubmit, primaryLabel, secondaryLabel, onCancel, primaryVariant, secondaryVariant, children, title, ...dialogProps }: DialogFormProps): react_jsx_runtime.JSX.Element;
|
|
@@ -256,8 +256,8 @@ interface DrawerFormProps extends Omit<DrawerProps, "children" | "footerContent"
|
|
|
256
256
|
primaryLabel?: string;
|
|
257
257
|
secondaryLabel?: string;
|
|
258
258
|
onCancel?: () => void;
|
|
259
|
-
primaryVariant?: "
|
|
260
|
-
secondaryVariant?: "
|
|
259
|
+
primaryVariant?: "primary" | "secondary" | "destructive" | "icon" | "link" | "unstyled" | "ghost";
|
|
260
|
+
secondaryVariant?: "primary" | "secondary" | "destructive" | "icon" | "link" | "unstyled" | "ghost";
|
|
261
261
|
children?: React.ReactNode;
|
|
262
262
|
}
|
|
263
263
|
declare function DrawerForm({ formId, onSubmit, primaryLabel, secondaryLabel, onCancel, primaryVariant, secondaryVariant, children, ...drawerProps }: DrawerFormProps): react_jsx_runtime.JSX.Element;
|