@spark-ui/checkbox 1.4.1 → 1.6.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/CHANGELOG.md +12 -0
- package/dist/Checkbox.d.ts +4 -38
- package/dist/CheckboxInput.d.ts +38 -0
- package/dist/{Checkbox.variants.d.ts → CheckboxInput.styles.d.ts} +2 -2
- package/dist/CheckboxLabel.d.ts +17 -0
- package/dist/CheckboxLabel.styles.d.ts +5 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +63 -7
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,18 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
# [1.6.0](https://github.com/adevinta/spark/compare/@spark-ui/checkbox@1.5.0...@spark-ui/checkbox@1.6.0) (2023-04-12)
|
7
|
+
|
8
|
+
### Features
|
9
|
+
|
10
|
+
- **checkbox:** wrap every checkbox with its label ([19e8b6b](https://github.com/adevinta/spark/commit/19e8b6be965ec32a81e7b128f9fad373c3131a99))
|
11
|
+
|
12
|
+
# [1.5.0](https://github.com/adevinta/spark/compare/@spark-ui/checkbox@1.4.1...@spark-ui/checkbox@1.5.0) (2023-04-12)
|
13
|
+
|
14
|
+
### Features
|
15
|
+
|
16
|
+
- **checkbox:** keep versions ([a80adb5](https://github.com/adevinta/spark/commit/a80adb5b51680c4dc9a9b3e30d08c8f18698dbc6))
|
17
|
+
|
6
18
|
## [1.4.1](https://github.com/adevinta/spark/compare/@spark-ui/checkbox@1.4.0...@spark-ui/checkbox@1.4.1) (2023-04-11)
|
7
19
|
|
8
20
|
**Note:** Version bump only for package @spark-ui/checkbox
|
package/dist/Checkbox.d.ts
CHANGED
@@ -1,38 +1,4 @@
|
|
1
|
-
import React
|
2
|
-
import { type
|
3
|
-
|
4
|
-
|
5
|
-
* The checked icon to use
|
6
|
-
*/
|
7
|
-
icon?: ReactNode;
|
8
|
-
/**
|
9
|
-
* The checked state of the checkbox when it is initially rendered. Use when you do not need to control its checked state.
|
10
|
-
*/
|
11
|
-
defaultChecked?: boolean;
|
12
|
-
/**
|
13
|
-
* The controlled checked state of the checkbox. Must be used in conjunction with onCheckedChange.
|
14
|
-
*/
|
15
|
-
checked?: boolean;
|
16
|
-
/**
|
17
|
-
* Event handler called when the checked state of the checkbox changes.
|
18
|
-
*/
|
19
|
-
onCheckedChange?: (checked: boolean) => void;
|
20
|
-
/**
|
21
|
-
* When true, prevents the user from interacting with the checkbox.
|
22
|
-
*/
|
23
|
-
disabled?: boolean;
|
24
|
-
/**
|
25
|
-
* When true, indicates that the user must check the checkbox before the owning form can be submitted.
|
26
|
-
*/
|
27
|
-
required?: boolean;
|
28
|
-
/**
|
29
|
-
* The name of the checkbox. Submitted with its owning form as part of a name/value pair.
|
30
|
-
*/
|
31
|
-
name?: string;
|
32
|
-
}
|
33
|
-
export interface CheckboxProps extends CheckboxRadixProps, // Radix props
|
34
|
-
StylesProps, // CVA props (variants)
|
35
|
-
Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'value'> {
|
36
|
-
}
|
37
|
-
export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLButtonElement>>;
|
38
|
-
export {};
|
1
|
+
import React from 'react';
|
2
|
+
import { type InputProps } from './CheckboxInput';
|
3
|
+
export type CheckboxProps = InputProps;
|
4
|
+
export declare const Checkbox: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLButtonElement>>;
|
@@ -0,0 +1,38 @@
|
|
1
|
+
import React, { ReactNode } from 'react';
|
2
|
+
import { type InputStylesProps } from './CheckboxInput.styles';
|
3
|
+
interface RadixProps {
|
4
|
+
/**
|
5
|
+
* The checked icon to use
|
6
|
+
*/
|
7
|
+
icon?: ReactNode;
|
8
|
+
/**
|
9
|
+
* The checked state of the checkbox when it is initially rendered. Use when you do not need to control its checked state.
|
10
|
+
*/
|
11
|
+
defaultChecked?: boolean;
|
12
|
+
/**
|
13
|
+
* The controlled checked state of the checkbox. Must be used in conjunction with onCheckedChange.
|
14
|
+
*/
|
15
|
+
checked?: boolean;
|
16
|
+
/**
|
17
|
+
* Event handler called when the checked state of the checkbox changes.
|
18
|
+
*/
|
19
|
+
onCheckedChange?: (checked: boolean) => void;
|
20
|
+
/**
|
21
|
+
* When true, prevents the user from interacting with the checkbox.
|
22
|
+
*/
|
23
|
+
disabled?: boolean;
|
24
|
+
/**
|
25
|
+
* When true, indicates that the user must check the checkbox before the owning form can be submitted.
|
26
|
+
*/
|
27
|
+
required?: boolean;
|
28
|
+
/**
|
29
|
+
* The name of the checkbox. Submitted with its owning form as part of a name/value pair.
|
30
|
+
*/
|
31
|
+
name?: string;
|
32
|
+
}
|
33
|
+
export interface InputProps extends RadixProps, // Radix props
|
34
|
+
InputStylesProps, // CVA props (variants)
|
35
|
+
Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'value'> {
|
36
|
+
}
|
37
|
+
export declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLButtonElement>>;
|
38
|
+
export {};
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { VariantProps } from 'class-variance-authority';
|
2
|
-
export declare const
|
2
|
+
export declare const inputStyles: (props?: ({
|
3
3
|
intent?: "primary" | "success" | "alert" | "error" | null | undefined;
|
4
4
|
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
5
|
-
export type
|
5
|
+
export type InputStylesProps = VariantProps<typeof inputStyles>;
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { PropsWithChildren } from 'react';
|
2
|
+
import { type LabelStylesProps } from './CheckboxLabel.styles';
|
3
|
+
export interface LabelProps extends LabelStylesProps, PropsWithChildren<React.HTMLAttributes<HTMLLabelElement>> {
|
4
|
+
/**
|
5
|
+
* Change the component to the HTML tag or custom component of the only child.
|
6
|
+
*/
|
7
|
+
asChild?: boolean;
|
8
|
+
/**
|
9
|
+
* The id of the element the label is associated with.
|
10
|
+
*/
|
11
|
+
htmlFor?: string;
|
12
|
+
/**
|
13
|
+
* When true, prevents the user from interacting with the checkbox item.
|
14
|
+
*/
|
15
|
+
disabled?: boolean;
|
16
|
+
}
|
17
|
+
export declare const Label: ({ className, disabled, ...others }: LabelProps) => JSX.Element;
|
@@ -0,0 +1,5 @@
|
|
1
|
+
import { VariantProps } from 'class-variance-authority';
|
2
|
+
export declare const labelStyles: (props?: ({
|
3
|
+
disabled?: boolean | null | undefined;
|
4
|
+
} & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
|
5
|
+
export type LabelStylesProps = VariantProps<typeof labelStyles>;
|
package/dist/index.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("react"),b=require("@radix-ui/react-checkbox"),h=require("@spark-ui/icons"),k=require("@spark-ui/internal-utils"),m=require("class-variance-authority");function g(r){const n=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(r){for(const e in r)if(e!=="default"){const t=Object.getOwnPropertyDescriptor(r,e);Object.defineProperty(n,e,t.get?t:{enumerable:!0,get:()=>r[e]})}}return n.default=r,Object.freeze(n)}require("react-dom");const f=g(b),y=m.cva(["h-sz-20 w-sz-20 border-md peer items-center justify-center rounded-sm bg-transparent","spark-disabled:opacity-dim-3 spark-disabled:cursor-not-allowed spark-disabled:hover:ring-0","focus-visible:ring-outline-high focus-visible:outline-none focus-visible:ring-2","hover:border-primary-container hover:outline-none hover:ring-2"],{variants:{intent:k.makeVariants({primary:["spark-state-unchecked:border-outline","spark-state-checked:border-primary spark-state-checked:bg-primary"],success:["spark-state-unchecked:border-success","spark-state-checked:border-success spark-state-checked:bg-success"],alert:["spark-state-unchecked:border-alert","spark-state-checked:border-alert spark-state-checked:bg-alert"],error:["spark-state-unchecked:border-error","spark-state-checked:border-error spark-state-checked:bg-error"]})},defaultVariants:{intent:"primary"}}),v=a.forwardRef(({intent:r,icon:n=a.createElement(h.Check,null),...e},t)=>a.createElement(f.Root,{ref:t,className:y({intent:r}),...e},a.createElement(f.Indicator,{className:"text-surface flex items-center justify-center"},n)));function c(){return c=Object.assign?Object.assign.bind():function(r){for(var n=1;n<arguments.length;n++){var e=arguments[n];for(var t in e)Object.prototype.hasOwnProperty.call(e,t)&&(r[t]=e[t])}return r},c.apply(this,arguments)}function E(...r){return n=>r.forEach(e=>function(t,s){typeof t=="function"?t(s):t!=null&&(t.current=s)}(e,n))}const p=a.forwardRef((r,n)=>{const{children:e,...t}=r,s=a.Children.toArray(e),l=s.find(j);if(l){const o=l.props.children,i=s.map(u=>u===l?a.Children.count(o)>1?a.Children.only(null):a.isValidElement(o)?o.props.children:null:u);return a.createElement(d,c({},t,{ref:n}),a.isValidElement(o)?a.cloneElement(o,void 0,i):null)}return a.createElement(d,c({},t,{ref:n}),e)});p.displayName="Slot";const d=a.forwardRef((r,n)=>{const{children:e,...t}=r;return a.isValidElement(e)?a.cloneElement(e,{...O(t,e.props),ref:E(n,e.ref)}):a.Children.count(e)>1?a.Children.only(null):null});d.displayName="SlotClone";const w=({children:r})=>a.createElement(a.Fragment,null,r);function j(r){return a.isValidElement(r)&&r.type===w}function O(r,n){const e={...n};for(const t in n){const s=r[t],l=n[t];/^on[A-Z]/.test(t)?s&&l?e[t]=(...o)=>{l(...o),s(...o)}:s&&(e[t]=s):t==="style"?e[t]={...s,...l}:t==="className"&&(e[t]=[s,l].filter(Boolean).join(" "))}return{...r,...e}}const C=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","span","svg","ul"].reduce((r,n)=>{const e=a.forwardRef((t,s)=>{const{asChild:l,...o}=t,i=l?p:n;return a.useEffect(()=>{window[Symbol.for("radix-ui")]=!0},[]),a.createElement(i,c({},o,{ref:s}))});return e.displayName=`Primitive.${n}`,{...r,[n]:e}},{}),N=a.forwardRef((r,n)=>a.createElement(C.label,c({},r,{ref:n,onMouseDown:e=>{var t;(t=r.onMouseDown)===null||t===void 0||t.call(r,e),!e.defaultPrevented&&e.detail>1&&e.preventDefault()}}))),x=m.cva(["flex","items-center","gap-md","text-body-1"],{variants:{disabled:{true:["text-neutral/dim-2","cursor-not-allowed"],false:["cursor-pointer"]}},defaultVariants:{disabled:!1}}),R=({className:r,disabled:n,...e})=>a.createElement(N,{className:x({className:r,disabled:n}),...e}),S=a.forwardRef(({children:r,...n},e)=>a.createElement(R,{disabled:n.disabled},a.createElement(v,{ref:e,...n}),r));exports.Checkbox=S;
|
package/dist/index.mjs
CHANGED
@@ -1,9 +1,65 @@
|
|
1
|
-
import
|
2
|
-
import
|
3
|
-
import
|
4
|
-
import { makeVariants as
|
5
|
-
import { cva as
|
6
|
-
|
1
|
+
import c, { forwardRef as p, Children as i, isValidElement as u, createElement as d, cloneElement as k, Fragment as g, useEffect as w } from "react";
|
2
|
+
import * as h from "@radix-ui/react-checkbox";
|
3
|
+
import { Check as E } from "@spark-ui/icons";
|
4
|
+
import { makeVariants as N } from "@spark-ui/internal-utils";
|
5
|
+
import { cva as v } from "class-variance-authority";
|
6
|
+
import "react-dom";
|
7
|
+
const x = v(["h-sz-20 w-sz-20 border-md peer items-center justify-center rounded-sm bg-transparent", "spark-disabled:opacity-dim-3 spark-disabled:cursor-not-allowed spark-disabled:hover:ring-0", "focus-visible:ring-outline-high focus-visible:outline-none focus-visible:ring-2", "hover:border-primary-container hover:outline-none hover:ring-2"], { variants: { intent: N({ primary: ["spark-state-unchecked:border-outline", "spark-state-checked:border-primary spark-state-checked:bg-primary"], success: ["spark-state-unchecked:border-success", "spark-state-checked:border-success spark-state-checked:bg-success"], alert: ["spark-state-unchecked:border-alert", "spark-state-checked:border-alert spark-state-checked:bg-alert"], error: ["spark-state-unchecked:border-error", "spark-state-checked:border-error spark-state-checked:bg-error"] }) }, defaultVariants: { intent: "primary" } }), j = c.forwardRef(({ intent: t, icon: a = c.createElement(E, null), ...e }, r) => c.createElement(h.Root, { ref: r, className: x({ intent: t }), ...e }, c.createElement(h.Indicator, { className: "text-surface flex items-center justify-center" }, a)));
|
8
|
+
function l() {
|
9
|
+
return l = Object.assign ? Object.assign.bind() : function(t) {
|
10
|
+
for (var a = 1; a < arguments.length; a++) {
|
11
|
+
var e = arguments[a];
|
12
|
+
for (var r in e)
|
13
|
+
Object.prototype.hasOwnProperty.call(e, r) && (t[r] = e[r]);
|
14
|
+
}
|
15
|
+
return t;
|
16
|
+
}, l.apply(this, arguments);
|
17
|
+
}
|
18
|
+
function C(...t) {
|
19
|
+
return (a) => t.forEach((e) => function(r, n) {
|
20
|
+
typeof r == "function" ? r(n) : r != null && (r.current = n);
|
21
|
+
}(e, a));
|
22
|
+
}
|
23
|
+
const y = p((t, a) => {
|
24
|
+
const { children: e, ...r } = t, n = i.toArray(e), s = n.find(R);
|
25
|
+
if (s) {
|
26
|
+
const o = s.props.children, m = n.map((b) => b === s ? i.count(o) > 1 ? i.only(null) : u(o) ? o.props.children : null : b);
|
27
|
+
return d(f, l({}, r, { ref: a }), u(o) ? k(o, void 0, m) : null);
|
28
|
+
}
|
29
|
+
return d(f, l({}, r, { ref: a }), e);
|
30
|
+
});
|
31
|
+
y.displayName = "Slot";
|
32
|
+
const f = p((t, a) => {
|
33
|
+
const { children: e, ...r } = t;
|
34
|
+
return u(e) ? k(e, { ...V(r, e.props), ref: C(a, e.ref) }) : i.count(e) > 1 ? i.only(null) : null;
|
35
|
+
});
|
36
|
+
f.displayName = "SlotClone";
|
37
|
+
const O = ({ children: t }) => d(g, null, t);
|
38
|
+
function R(t) {
|
39
|
+
return u(t) && t.type === O;
|
40
|
+
}
|
41
|
+
function V(t, a) {
|
42
|
+
const e = { ...a };
|
43
|
+
for (const r in a) {
|
44
|
+
const n = t[r], s = a[r];
|
45
|
+
/^on[A-Z]/.test(r) ? n && s ? e[r] = (...o) => {
|
46
|
+
s(...o), n(...o);
|
47
|
+
} : n && (e[r] = n) : r === "style" ? e[r] = { ...n, ...s } : r === "className" && (e[r] = [n, s].filter(Boolean).join(" "));
|
48
|
+
}
|
49
|
+
return { ...t, ...e };
|
50
|
+
}
|
51
|
+
const D = ["a", "button", "div", "form", "h2", "h3", "img", "input", "label", "li", "nav", "ol", "p", "span", "svg", "ul"].reduce((t, a) => {
|
52
|
+
const e = p((r, n) => {
|
53
|
+
const { asChild: s, ...o } = r, m = s ? y : a;
|
54
|
+
return w(() => {
|
55
|
+
window[Symbol.for("radix-ui")] = !0;
|
56
|
+
}, []), d(m, l({}, o, { ref: n }));
|
57
|
+
});
|
58
|
+
return e.displayName = `Primitive.${a}`, { ...t, [a]: e };
|
59
|
+
}, {}), P = p((t, a) => d(D.label, l({}, t, { ref: a, onMouseDown: (e) => {
|
60
|
+
var r;
|
61
|
+
(r = t.onMouseDown) === null || r === void 0 || r.call(t, e), !e.defaultPrevented && e.detail > 1 && e.preventDefault();
|
62
|
+
} }))), S = v(["flex", "items-center", "gap-md", "text-body-1"], { variants: { disabled: { true: ["text-neutral/dim-2", "cursor-not-allowed"], false: ["cursor-pointer"] } }, defaultVariants: { disabled: !1 } }), z = ({ className: t, disabled: a, ...e }) => c.createElement(P, { className: S({ className: t, disabled: a }), ...e }), Z = c.forwardRef(({ children: t, ...a }, e) => c.createElement(z, { disabled: a.disabled }, c.createElement(j, { ref: e, ...a }), t));
|
7
63
|
export {
|
8
|
-
|
64
|
+
Z as Checkbox
|
9
65
|
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@spark-ui/checkbox",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.6.0",
|
4
4
|
"description": "A control that allows the user to toggle between checked and not checked.",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
@@ -12,8 +12,8 @@
|
|
12
12
|
"build": "vite build"
|
13
13
|
},
|
14
14
|
"dependencies": {
|
15
|
-
"@radix-ui/react-checkbox": "
|
16
|
-
"@spark-ui/icons": "^1.
|
15
|
+
"@radix-ui/react-checkbox": "1",
|
16
|
+
"@spark-ui/icons": "^1.5.0",
|
17
17
|
"@spark-ui/internal-utils": "1",
|
18
18
|
"class-variance-authority": "^0.4.0"
|
19
19
|
},
|
@@ -22,5 +22,5 @@
|
|
22
22
|
"react-dom": "^16.8 || ^17.0 || ^18.0",
|
23
23
|
"tailwindcss": "^3.0.0"
|
24
24
|
},
|
25
|
-
"gitHead": "
|
25
|
+
"gitHead": "5f2066658e5bc8e0a3281abdd777a3b6df7bba9e"
|
26
26
|
}
|