kang-components 0.5.0 → 0.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.
@@ -0,0 +1,51 @@
1
+ /**
2
+ * BackButton — a domain-free "go back" control.
3
+ *
4
+ * Ported from ymy-components (`./buttons/BackButton`), where it was a bare
5
+ * `<IoChevronBackOutline onClick={...} />` with no semantics, no press feedback
6
+ * and no theming. The kang port keeps the same public surface (`size`, `onClick`)
7
+ * but upgrades it into a real, accessible control following kang conventions:
8
+ *
9
+ * - Renders a semantic `<button type="button">` (was a bare SVG with a click
10
+ * handler) so it is keyboard-focusable and announced as a button.
11
+ * - Press feedback via the shared `pressPrimary()` CSS primitive — the same
12
+ * scale/bounce language every kang action button uses.
13
+ * - A Material `Ripple` overlay on press, themed off `theme.colors.ripple`.
14
+ * - Icon color reads `theme.colors.onSurface` (falls back to `currentColor`),
15
+ * so it adapts to a styled-components `ThemeProvider` but still works without
16
+ * one.
17
+ * - `disabled` support: blocks the click and dims the control.
18
+ *
19
+ * Icon: ymy hard-depended on `react-icons` (IoChevronBackOutline). To keep kang
20
+ * dependency-light and domain-free, the same chevron-back glyph ships as an
21
+ * inline SVG (identical Ionicons path data), and consumers may override it with
22
+ * any node via `icon` — the same pattern as BannerButton.
23
+ *
24
+ * `styled-components` and `react` are the only things this module pulls in;
25
+ * consumers importing the press/string primitives never touch them.
26
+ */
27
+ import { type ReactElement, type ReactNode } from 'react';
28
+ export type BackButtonProps = {
29
+ /** Icon size (any CSS size value). Defaults to `'1.5rem'` — matching ymy. */
30
+ size?: string;
31
+ /**
32
+ * Optional click handler, invoked on click/activation. If omitted the button
33
+ * is inert (renders, but does nothing on press).
34
+ */
35
+ onClick?: () => void;
36
+ /** Disable the control: blocks the handler and dims the icon. */
37
+ disabled?: boolean;
38
+ /** Accessible label for screen readers. Defaults to `'Back'`. */
39
+ ariaLabel?: string;
40
+ /** Optional class name passthrough for layout/positioning by the consumer. */
41
+ className?: string;
42
+ /**
43
+ * An explicit icon node, overriding the default inline chevron. Lets
44
+ * consumers supply their own glyph (e.g. a react-icons element) without kang
45
+ * depending on an icon library.
46
+ */
47
+ icon?: ReactNode;
48
+ };
49
+ declare const BackButton: ({ size, onClick, disabled, ariaLabel, className, icon, }: BackButtonProps) => ReactElement;
50
+ export default BackButton;
51
+ //# sourceMappingURL=back-button.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"back-button.d.ts","sourceRoot":"","sources":["../src/back-button.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AAEH,OAAO,EAAgC,KAAK,YAAY,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAKxF,MAAM,MAAM,eAAe,GAAG;IAC7B,6EAA6E;IAC7E,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,iEAAiE;IACjE,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,iEAAiE;IACjE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,8EAA8E;IAC9E,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;;;OAIG;IACH,IAAI,CAAC,EAAE,SAAS,CAAC;CACjB,CAAC;AAoDF,QAAA,MAAM,UAAU,6DAOb,eAAe,KAAG,YAyBpB,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -0,0 +1,70 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ /**
3
+ * BackButton — a domain-free "go back" control.
4
+ *
5
+ * Ported from ymy-components (`./buttons/BackButton`), where it was a bare
6
+ * `<IoChevronBackOutline onClick={...} />` with no semantics, no press feedback
7
+ * and no theming. The kang port keeps the same public surface (`size`, `onClick`)
8
+ * but upgrades it into a real, accessible control following kang conventions:
9
+ *
10
+ * - Renders a semantic `<button type="button">` (was a bare SVG with a click
11
+ * handler) so it is keyboard-focusable and announced as a button.
12
+ * - Press feedback via the shared `pressPrimary()` CSS primitive — the same
13
+ * scale/bounce language every kang action button uses.
14
+ * - A Material `Ripple` overlay on press, themed off `theme.colors.ripple`.
15
+ * - Icon color reads `theme.colors.onSurface` (falls back to `currentColor`),
16
+ * so it adapts to a styled-components `ThemeProvider` but still works without
17
+ * one.
18
+ * - `disabled` support: blocks the click and dims the control.
19
+ *
20
+ * Icon: ymy hard-depended on `react-icons` (IoChevronBackOutline). To keep kang
21
+ * dependency-light and domain-free, the same chevron-back glyph ships as an
22
+ * inline SVG (identical Ionicons path data), and consumers may override it with
23
+ * any node via `icon` — the same pattern as BannerButton.
24
+ *
25
+ * `styled-components` and `react` are the only things this module pulls in;
26
+ * consumers importing the press/string primitives never touch them.
27
+ */
28
+ import { useCallback } from 'react';
29
+ import { styled } from 'styled-components';
30
+ import { pressPrimary } from './press.js';
31
+ import { Ripple, useRipple } from './ripple.js';
32
+ /**
33
+ * Inline IoChevronBackOutline (react-icons/io5) — identical Ionicons path data
34
+ * (viewBox + stroke-width 48 outline chevron) so the glyph is unchanged.
35
+ */
36
+ const ChevronBackIcon = ({ size }) => (_jsx("svg", { stroke: "currentColor", fill: "currentColor", strokeWidth: "0", viewBox: "0 0 512 512", height: size, width: size, xmlns: "http://www.w3.org/2000/svg", "aria-hidden": "true", focusable: "false", children: _jsx("path", { fill: "none", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "48", d: "M328 112 184 256l144 144" }) }));
37
+ const StyledBackButton = styled.button `
38
+ position: relative;
39
+ overflow: hidden;
40
+ display: inline-flex;
41
+ align-items: center;
42
+ justify-content: center;
43
+ padding: 0;
44
+ margin: 0;
45
+ border: none;
46
+ background: transparent;
47
+ cursor: ${({ $disabled }) => ($disabled ? 'not-allowed' : 'pointer')};
48
+ color: ${({ theme }) => theme?.colors?.onSurface ?? 'currentColor'};
49
+ opacity: ${({ $disabled }) => ($disabled ? 0.4 : 1)};
50
+ line-height: 0;
51
+ -webkit-tap-highlight-color: transparent;
52
+
53
+ ${pressPrimary()}
54
+
55
+ &:disabled {
56
+ pointer-events: none;
57
+ }
58
+ `;
59
+ const BackButton = ({ size, onClick, disabled = false, ariaLabel = 'Back', className, icon, }) => {
60
+ const { ripple, trigger, isTarget } = useRipple();
61
+ const handleClick = useCallback((e) => {
62
+ if (disabled)
63
+ return;
64
+ trigger(e, 'back');
65
+ onClick?.();
66
+ }, [disabled, onClick, trigger]);
67
+ return (_jsxs(StyledBackButton, { type: "button", className: className, "$disabled": disabled, disabled: disabled, "aria-label": ariaLabel, onClick: handleClick, children: [icon !== undefined ? icon : _jsx(ChevronBackIcon, { size: size != null ? size : '1.5rem' }), isTarget('back') && ripple && _jsx(Ripple, { "$x": ripple.x, "$y": ripple.y }, ripple.key)] }));
68
+ };
69
+ export default BackButton;
70
+ //# sourceMappingURL=back-button.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"back-button.js","sourceRoot":"","sources":["../src/back-button.tsx"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AAEH,OAAO,EAAE,WAAW,EAAsD,MAAM,OAAO,CAAC;AACxF,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAC3C,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAC1C,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAwBhD;;;GAGG;AACH,MAAM,eAAe,GAAG,CAAC,EAAE,IAAI,EAAoB,EAAgB,EAAE,CAAC,CACrE,cACC,MAAM,EAAC,cAAc,EACrB,IAAI,EAAC,cAAc,EACnB,WAAW,EAAC,GAAG,EACf,OAAO,EAAC,aAAa,EACrB,MAAM,EAAE,IAAI,EACZ,KAAK,EAAE,IAAI,EACX,KAAK,EAAC,4BAA4B,iBACtB,MAAM,EAClB,SAAS,EAAC,OAAO,YAEjB,eACC,IAAI,EAAC,MAAM,EACX,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAC,IAAI,EAChB,CAAC,EAAC,0BAA0B,GAC3B,GACG,CACN,CAAC;AAEF,MAAM,gBAAgB,GAAG,MAAM,CAAC,MAAM,CAAwB;;;;;;;;;;WAUnD,CAAC,EAAE,SAAS,EAAE,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;UAC3D,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CACrB,KAA6C,EAAE,MAAM,EAAE,SAAS,IAAI,cAAc;YACzE,CAAC,EAAE,SAAS,EAAE,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;;;;GAIjD,YAAY,EAAE;;;;;CAKhB,CAAC;AAEF,MAAM,UAAU,GAAG,CAAC,EACnB,IAAI,EACJ,OAAO,EACP,QAAQ,GAAG,KAAK,EAChB,SAAS,GAAG,MAAM,EAClB,SAAS,EACT,IAAI,GACa,EAAgB,EAAE;IACnC,MAAM,EAAE,MAAM,EAAE,OAAO,EAAE,QAAQ,EAAE,GAAG,SAAS,EAAU,CAAC;IAE1D,MAAM,WAAW,GAAG,WAAW,CAC9B,CAAC,CAAgC,EAAE,EAAE;QACpC,IAAI,QAAQ;YAAE,OAAO;QACrB,OAAO,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC;QACnB,OAAO,EAAE,EAAE,CAAC;IACb,CAAC,EACD,CAAC,QAAQ,EAAE,OAAO,EAAE,OAAO,CAAC,CAC5B,CAAC;IAEF,OAAO,CACN,MAAC,gBAAgB,IAChB,IAAI,EAAC,QAAQ,EACb,SAAS,EAAE,SAAS,eACT,QAAQ,EACnB,QAAQ,EAAE,QAAQ,gBACN,SAAS,EACrB,OAAO,EAAE,WAAW,aAEnB,IAAI,KAAK,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,KAAC,eAAe,IAAC,IAAI,EAAE,IAAI,IAAI,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,GAAI,EACrF,QAAQ,CAAC,MAAM,CAAC,IAAI,MAAM,IAAI,KAAC,MAAM,UAAsB,MAAM,CAAC,CAAC,QAAM,MAAM,CAAC,CAAC,IAAtC,MAAM,CAAC,GAAG,CAAgC,IACpE,CACnB,CAAC;AACH,CAAC,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -0,0 +1,53 @@
1
+ /**
2
+ * BannerButton — a pill-shaped call-to-action button with a leading icon and
3
+ * cross-fading multilingual label.
4
+ *
5
+ * Ported from ymy-components (`./buttons/BannerButton`). The visual language is
6
+ * preserved (rounded pill, drop shadow, primary/secondary variants, a press
7
+ * "scale-down" feedback) but reconciled onto kang's conventions:
8
+ *
9
+ * - **Theme-driven colors** read off styled-components' `props.theme` (the same
10
+ * tokens {@link buildTheme} produces), with literal fallbacks so the button
11
+ * still renders without a `ThemeProvider`.
12
+ * - **Press feedback** uses kang's CSS-first {@link pressPrimary} primitive
13
+ * instead of a bespoke keyframe, keeping the press language consistent across
14
+ * the library.
15
+ * - **Label** delegates to kang's domain-free {@link AnimatedText}: the
16
+ * multilingual `buttonText` is mapped to `variants` (english ↔ preferred
17
+ * Chinese set) with all three strings reserved as sizers so the box never
18
+ * reflows mid-swap.
19
+ *
20
+ * Icons: ymy hard-depended on `react-icons` (FaPlus / FiSend). To keep kang
21
+ * dependency-light and domain-free, the same two glyphs ship as inline SVGs
22
+ * selectable via `iconComponent`, and consumers may pass any node via `icon`.
23
+ *
24
+ * `styled-components` and `react` are optional peer dependencies, pulled in only
25
+ * by this (and other runtime) modules.
26
+ */
27
+ import { type ReactNode } from 'react';
28
+ import type { CharacterPreference, DynamicLanguage } from './language.js';
29
+ export type BannerButtonProps = {
30
+ /**
31
+ * Which built-in icon to display. `'plus'` and `'send'` ship as inline SVGs.
32
+ * Ignored when an explicit `icon` node is provided.
33
+ */
34
+ iconComponent?: 'plus' | 'send';
35
+ /**
36
+ * An explicit icon node, overriding `iconComponent`. Lets consumers supply
37
+ * their own glyph (e.g. a react-icons element) without kang depending on an
38
+ * icon library.
39
+ */
40
+ icon?: ReactNode;
41
+ /** The button label, available in english / traditional / simplified. */
42
+ buttonText: DynamicLanguage;
43
+ /** Visual variant. Defaults to `'primary'`. */
44
+ buttonType?: 'primary' | 'secondary';
45
+ /** Click handler. */
46
+ onClick?: () => void;
47
+ /** Preferred Chinese character set for the label. Defaults to `'simplified'`. */
48
+ characterPreference?: CharacterPreference;
49
+ /** Whether the label cross-fades between english and Chinese. Defaults to true. */
50
+ animate?: boolean;
51
+ };
52
+ export default function BannerButton({ iconComponent, icon, buttonText, buttonType, onClick, characterPreference, animate, }: BannerButtonProps): import("react").JSX.Element;
53
+ //# sourceMappingURL=banner-button.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"banner-button.d.ts","sourceRoot":"","sources":["../src/banner-button.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AAEH,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAMvC,OAAO,KAAK,EAAE,mBAAmB,EAAE,eAAe,EAAE,MAAM,eAAe,CAAC;AAE1E,MAAM,MAAM,iBAAiB,GAAG;IAC/B;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAChC;;;;OAIG;IACH,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,yEAAyE;IACzE,UAAU,EAAE,eAAe,CAAC;IAC5B,+CAA+C;IAC/C,UAAU,CAAC,EAAE,SAAS,GAAG,WAAW,CAAC;IACrC,qBAAqB;IACrB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,iFAAiF;IACjF,mBAAmB,CAAC,EAAE,mBAAmB,CAAC;IAC1C,mFAAmF;IACnF,OAAO,CAAC,EAAE,OAAO,CAAC;CAClB,CAAC;AA+FF,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,EACpC,aAAa,EACb,IAAI,EACJ,UAAU,EACV,UAAsB,EACtB,OAAO,EACP,mBAAkC,EAClC,OAAc,GACd,EAAE,iBAAiB,+BAwBnB"}
@@ -0,0 +1,69 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ // Named imports (not the default) so this resolves consistently across bundler
3
+ // and raw ESM/CJS environments — see the note in ripple.ts.
4
+ import { styled } from 'styled-components';
5
+ import AnimatedText from './animated-text.js';
6
+ import { pressPrimary } from './press.js';
7
+ const BannerButtonContainer = styled.div `
8
+ display: inline-block;
9
+ position: relative;
10
+ overflow: hidden;
11
+ border-radius: 2.5rem;
12
+ background: ${({ theme }) => theme?.colors?.primary ?? '#489fb5'};
13
+ box-shadow: 0px 4px 4px 0px
14
+ ${({ theme }) => theme?.colors?.shadow ?? 'rgba(0, 0, 0, 0.25)'};
15
+
16
+ ${pressPrimary()}
17
+ `;
18
+ const StyledButton = styled.button `
19
+ display: flex;
20
+ align-items: center;
21
+ position: relative;
22
+ z-index: 10;
23
+ padding: 0.5rem 1rem;
24
+ border: none;
25
+ outline: none;
26
+ cursor: pointer;
27
+ transition: background-color 0.3s;
28
+
29
+ &.primary {
30
+ background-color: ${({ theme }) => theme?.colors?.primary ?? '#489fb5'};
31
+ color: ${({ theme }) => theme?.colors?.onPrimary ?? 'white'};
32
+ }
33
+
34
+ &.secondary {
35
+ background-color: ${({ theme }) => theme?.colors?.secondaryLight ?? '#ffb652'};
36
+ color: ${({ theme }) => theme?.colors?.onSecondary ?? 'black'};
37
+ }
38
+ `;
39
+ const IconContainer = styled.span `
40
+ display: flex;
41
+ margin-right: 1.25rem;
42
+
43
+ @media (min-width: 640px) {
44
+ margin-right: 0.25rem;
45
+ }
46
+ `;
47
+ /** Inline FaPlus (react-icons/fa) — kept identical so the glyph is unchanged. */
48
+ const PlusIcon = () => (_jsx("svg", { stroke: "currentColor", fill: "currentColor", strokeWidth: "0", viewBox: "0 0 448 512", height: "1em", width: "1em", xmlns: "http://www.w3.org/2000/svg", "aria-hidden": "true", focusable: "false", children: _jsx("path", { d: "M416 208H272V64c0-17.67-14.33-32-32-32h-32c-17.67 0-32 14.33-32 32v144H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h144v144c0 17.67 14.33 32 32 32h32c17.67 0 32-14.33 32-32V304h144c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z" }) }));
49
+ /** Inline FiSend (react-icons/fi) — kept identical so the glyph is unchanged. */
50
+ const SendIcon = () => (_jsxs("svg", { stroke: "currentColor", fill: "none", strokeWidth: "2", viewBox: "0 0 24 24", strokeLinecap: "round", strokeLinejoin: "round", height: "1em", width: "1em", xmlns: "http://www.w3.org/2000/svg", "aria-hidden": "true", focusable: "false", children: [_jsx("line", { x1: "22", y1: "2", x2: "11", y2: "13" }), _jsx("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })] }));
51
+ function resolveIcon(icon, iconComponent) {
52
+ if (icon !== undefined)
53
+ return icon;
54
+ if (iconComponent === 'plus')
55
+ return _jsx(PlusIcon, {});
56
+ if (iconComponent === 'send')
57
+ return _jsx(SendIcon, {});
58
+ return null;
59
+ }
60
+ export default function BannerButton({ iconComponent, icon, buttonText, buttonType = 'primary', onClick, characterPreference = 'simplified', animate = true, }) {
61
+ const iconElement = resolveIcon(icon, iconComponent);
62
+ // Map the multilingual label onto AnimatedText's domain-free variant model:
63
+ // cycle english <-> the preferred Chinese set, static index 0 = english
64
+ // (matching ymy's default). All three strings are reserved as sizers so the
65
+ // box is always sized to the widest and never reflows mid-swap.
66
+ const chineseText = characterPreference === 'traditional' ? buttonText.traditional : buttonText.simplified;
67
+ return (_jsx(BannerButtonContainer, { onClick: onClick, children: _jsxs(StyledButton, { type: "button", className: buttonType, children: [iconElement !== null && _jsx(IconContainer, { children: iconElement }), _jsx(AnimatedText, { textStyles: { lineHeight: '0.8rem', minWidth: '3rem' }, variants: [buttonText.english, chineseText], sizers: [buttonText.english, buttonText.simplified, buttonText.traditional], staticIndex: 0, animate: animate })] }) }));
68
+ }
69
+ //# sourceMappingURL=banner-button.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"banner-button.js","sourceRoot":"","sources":["../src/banner-button.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,52 @@
1
+ /**
2
+ * CircleIconButton — a round, themed icon button with a spring entry animation.
3
+ *
4
+ * Ported faithfully from ymy-components (`./buttons/CircleIconButton`). It renders
5
+ * one of a small set of built-in icons (`person`, `qr`) inside a circular outlined
6
+ * button that scales/fades in on mount via react-spring, and fires `onClick` when
7
+ * pressed. The two xunzi sites that consume it (HeroBanner, ProfileButton) drive it
8
+ * purely through the `iconComponent` string + `onClick`, so that API is preserved
9
+ * 1:1 to keep the re-point a pure import swap.
10
+ *
11
+ * Theming: the border reads `theme.colors.onPrimary` and the icon reads
12
+ * `theme.colors.onSurface` off styled-components' `props.theme`, with literal
13
+ * fallbacks so it renders sensibly with or without a `ThemeProvider`.
14
+ *
15
+ * Press feedback: layered on top of ymy's behavior using kang's `pressPrimary`
16
+ * (the icon-button tier). The entry animation owns `transform` via react-spring,
17
+ * so press uses the CSS `scale` property (`pressPrimaryScale`) to avoid fighting it.
18
+ *
19
+ * Icons: ymy hard-depended on `react-icons` (BsPerson / BsQrCodeScan). To keep
20
+ * kang dependency-light and domain-free, the same two glyphs ship as inline SVGs
21
+ * (matching Bootstrap-icons path data) selectable via `iconComponent`, and
22
+ * consumers may pass any node via `icon` — the same pattern as BannerButton.
23
+ *
24
+ * `styled-components` and `@react-spring/web` are optional peer dependencies, used
25
+ * only by this module — consumers importing just the string primitives never pull
26
+ * them in.
27
+ */
28
+ import { type ReactElement, type ReactNode } from 'react';
29
+ /** The built-in icon set this button can render. */
30
+ export type CircleIconName = 'person' | 'qr';
31
+ export type CircleIconButtonProps = {
32
+ /**
33
+ * Which built-in icon to render. Ignored when an explicit `icon` node is
34
+ * provided.
35
+ * - `'person'` — person icon (profile).
36
+ * - `'qr'` — QR-code scan icon (invite/friend).
37
+ */
38
+ iconComponent: CircleIconName;
39
+ /**
40
+ * An explicit icon node, overriding `iconComponent`. Lets consumers supply
41
+ * their own glyph (e.g. a react-icons element) without kang depending on an
42
+ * icon library — the same override pattern as BannerButton.
43
+ */
44
+ icon?: ReactNode;
45
+ /**
46
+ * Optional click handler, invoked when the button is pressed. If omitted the
47
+ * button still renders and is interactive but performs no action.
48
+ */
49
+ onClick?: () => void;
50
+ };
51
+ export default function CircleIconButton({ iconComponent, icon, onClick, }: CircleIconButtonProps): ReactElement;
52
+ //# sourceMappingURL=circle-icon-button.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"circle-icon-button.d.ts","sourceRoot":"","sources":["../src/circle-icon-button.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AAEH,OAAO,EAAE,KAAK,YAAY,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAO1D,oDAAoD;AACpD,MAAM,MAAM,cAAc,GAAG,QAAQ,GAAG,IAAI,CAAC;AAE7C,MAAM,MAAM,qBAAqB,GAAG;IACnC;;;;;OAKG;IACH,aAAa,EAAE,cAAc,CAAC;IAE9B;;;;OAIG;IACH,IAAI,CAAC,EAAE,SAAS,CAAC;IAEjB;;;OAGG;IACH,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACrB,CAAC;AAyEF,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAC,EACxC,aAAa,EACb,IAAI,EACJ,OAAO,GACP,EAAE,qBAAqB,GAAG,YAAY,CAqBtC"}
@@ -0,0 +1,51 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { animated, useSpring } from '@react-spring/web';
3
+ // Named import (not the default) so styled-components resolves consistently
4
+ // across bundler and raw ESM/CJS environments — matches ripple.ts.
5
+ import { styled } from 'styled-components';
6
+ import { pressPrimaryScale } from './press.js';
7
+ const StyledCircleButton = styled(animated.button) `
8
+ width: 2.5rem;
9
+ height: 2.5rem;
10
+ padding: 0;
11
+ border-radius: 50%;
12
+ border: 1px solid
13
+ ${({ theme }) => theme?.colors?.onPrimary ?? 'white'};
14
+ background: transparent;
15
+ display: flex;
16
+ align-items: center;
17
+ justify-content: center;
18
+ cursor: pointer;
19
+ ${pressPrimaryScale()}
20
+ `;
21
+ const StyledIcon = styled.span `
22
+ display: flex;
23
+ color: ${({ theme }) => theme?.colors?.onSurface ?? 'black'};
24
+ font-size: 1.125rem;
25
+ `;
26
+ /** Inline BsPerson (react-icons/bs) — Bootstrap-icons path data, glyph unchanged. */
27
+ const PersonIcon = () => (_jsx("svg", { stroke: "currentColor", fill: "currentColor", strokeWidth: "0", viewBox: "0 0 16 16", height: "1em", width: "1em", xmlns: "http://www.w3.org/2000/svg", "aria-hidden": "true", focusable: "false", children: _jsx("path", { d: "M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6m2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0m4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4m-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10s-3.516.68-4.168 1.332c-.678.678-.83 1.418-.832 1.664z" }) }));
28
+ /** Inline BsQrCodeScan (react-icons/bs) — Bootstrap-icons path data, glyph unchanged. */
29
+ const QrIcon = () => (_jsxs("svg", { stroke: "currentColor", fill: "currentColor", strokeWidth: "0", viewBox: "0 0 16 16", height: "1em", width: "1em", xmlns: "http://www.w3.org/2000/svg", "aria-hidden": "true", focusable: "false", children: [_jsx("path", { d: "M0 .5A.5.5 0 0 1 .5 0h3a.5.5 0 0 1 0 1H1v2.5a.5.5 0 0 1-1 0zm12 0a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0V1h-2.5a.5.5 0 0 1-.5-.5M.5 12a.5.5 0 0 1 .5.5V15h2.5a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5m15 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1H15v-2.5a.5.5 0 0 1 .5-.5M4 4h1v1H4z" }), _jsx("path", { d: "M7 2H2v5h5zM3 3h3v3H3zm2 8H4v1h1z" }), _jsx("path", { d: "M7 9H2v5h5zm-4 1h3v3H3zm8-6h1v1h-1z" }), _jsx("path", { d: "M9 2h5v5H9zm1 1v3h3V3zM8 8v2h1v1H8v1h2v-2h1v2h1v-1h2v-1h-3V8zm2 2H9V9h1zm4 2h-1v1h-2v1h3zm-4 2v-1H8v1z" }), _jsx("path", { d: "M12 9h2V8h-2z" })] }));
30
+ const ICONS = {
31
+ person: _jsx(PersonIcon, {}),
32
+ qr: _jsx(QrIcon, {}),
33
+ };
34
+ function resolveIcon(icon, iconComponent) {
35
+ if (icon !== undefined)
36
+ return icon;
37
+ return ICONS[iconComponent];
38
+ }
39
+ export default function CircleIconButton({ iconComponent, icon, onClick, }) {
40
+ const animatedStyles = useSpring({
41
+ from: { opacity: 0, scale: 0.5 },
42
+ to: { opacity: 1, scale: 1 },
43
+ });
44
+ const handleClick = () => {
45
+ if (onClick) {
46
+ onClick();
47
+ }
48
+ };
49
+ return (_jsx(StyledCircleButton, { type: "button", style: animatedStyles, onClick: handleClick, children: _jsx(StyledIcon, { children: resolveIcon(icon, iconComponent) }) }));
50
+ }
51
+ //# sourceMappingURL=circle-icon-button.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"circle-icon-button.js","sourceRoot":"","sources":["../src/circle-icon-button.tsx"],"names":[],"mappings":";AA6BA,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACxD,4EAA4E;AAC5E,mEAAmE;AACnE,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAC3C,OAAO,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AA8B/C,MAAM,kBAAkB,GAAG,MAAM,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAA;;;;;;IAM9C,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAE,KAAqB,EAAE,MAAM,EAAE,SAAS,IAAI,OAAO;;;;;;GAMpE,iBAAiB,EAAE;CACrB,CAAC;AAEF,MAAM,UAAU,GAAG,MAAM,CAAC,IAAI,CAAA;;UAEpB,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAE,KAAqB,EAAE,MAAM,EAAE,SAAS,IAAI,OAAO;;CAE5E,CAAC;AAEF,qFAAqF;AACrF,MAAM,UAAU,GAAG,GAAiB,EAAE,CAAC,CACtC,cACC,MAAM,EAAC,cAAc,EACrB,IAAI,EAAC,cAAc,EACnB,WAAW,EAAC,GAAG,EACf,OAAO,EAAC,WAAW,EACnB,MAAM,EAAC,KAAK,EACZ,KAAK,EAAC,KAAK,EACX,KAAK,EAAC,4BAA4B,iBACtB,MAAM,EAClB,SAAS,EAAC,OAAO,YAEjB,eAAM,CAAC,EAAC,uOAAuO,GAAG,GAC7O,CACN,CAAC;AAEF,yFAAyF;AACzF,MAAM,MAAM,GAAG,GAAiB,EAAE,CAAC,CAClC,eACC,MAAM,EAAC,cAAc,EACrB,IAAI,EAAC,cAAc,EACnB,WAAW,EAAC,GAAG,EACf,OAAO,EAAC,WAAW,EACnB,MAAM,EAAC,KAAK,EACZ,KAAK,EAAC,KAAK,EACX,KAAK,EAAC,4BAA4B,iBACtB,MAAM,EAClB,SAAS,EAAC,OAAO,aAEjB,eAAM,CAAC,EAAC,gUAAgU,GAAG,EAC3U,eAAM,CAAC,EAAC,mCAAmC,GAAG,EAC9C,eAAM,CAAC,EAAC,qCAAqC,GAAG,EAChD,eAAM,CAAC,EAAC,wGAAwG,GAAG,EACnH,eAAM,CAAC,EAAC,eAAe,GAAG,IACrB,CACN,CAAC;AAEF,MAAM,KAAK,GAAyC;IACnD,MAAM,EAAE,KAAC,UAAU,KAAG;IACtB,EAAE,EAAE,KAAC,MAAM,KAAG;CACd,CAAC;AAEF,SAAS,WAAW,CAAC,IAAe,EAAE,aAA6B;IAClE,IAAI,IAAI,KAAK,SAAS;QAAE,OAAO,IAAI,CAAC;IACpC,OAAO,KAAK,CAAC,aAAa,CAAC,CAAC;AAC7B,CAAC;AAED,MAAM,CAAC,OAAO,UAAU,gBAAgB,CAAC,EACxC,aAAa,EACb,IAAI,EACJ,OAAO,GACgB;IACvB,MAAM,cAAc,GAAG,SAAS,CAAC;QAChC,IAAI,EAAE,EAAE,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,GAAG,EAAE;QAChC,EAAE,EAAE,EAAE,OAAO,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,EAAE;KAC5B,CAAC,CAAC;IAEH,MAAM,WAAW,GAAG,GAAG,EAAE;QACxB,IAAI,OAAO,EAAE,CAAC;YACb,OAAO,EAAE,CAAC;QACX,CAAC;IACF,CAAC,CAAC;IAEF,OAAO,CACN,KAAC,kBAAkB,IAClB,IAAI,EAAC,QAAQ,EACb,KAAK,EAAE,cAAc,EACrB,OAAO,EAAE,WAAW,YAEpB,KAAC,UAAU,cAAE,WAAW,CAAC,IAAI,EAAE,aAAa,CAAC,GAAc,GACvC,CACrB,CAAC;AACH,CAAC"}
package/dist/index.d.ts CHANGED
@@ -7,6 +7,12 @@ export { SPRING_COMFORTABLE, SPRING_COMFORTABLE_SLOW, SPRING_SNAPPY, SPRING_RESP
7
7
  export type { SpringConfigConstant } from './spring.js';
8
8
  export { default as AnimatedText } from './animated-text.js';
9
9
  export type { AnimatedTextProps } from './animated-text.js';
10
+ export { default as BackButton } from './back-button.js';
11
+ export type { BackButtonProps } from './back-button.js';
12
+ export { default as CircleIconButton } from './circle-icon-button.js';
13
+ export type { CircleIconButtonProps, CircleIconName } from './circle-icon-button.js';
14
+ export { default as BannerButton } from './banner-button.js';
15
+ export type { BannerButtonProps } from './banner-button.js';
10
16
  export { buildTheme, theme, hexToRgb } from './theme.js';
11
17
  export type { ThemeType } from './theme.js';
12
18
  export { lightPalette, darkPalette } from './palettes.js';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACN,YAAY,EACZ,mBAAmB,EACnB,kBAAkB,EAClB,YAAY,EACZ,WAAW,EACX,iBAAiB,EACjB,gBAAgB,GAChB,MAAM,YAAY,CAAC;AAEpB,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAE7D,OAAO,EACN,oBAAoB,EACpB,eAAe,EACf,cAAc,GACd,MAAM,mBAAmB,CAAC;AAE3B,OAAO,EAAE,MAAM,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACjE,YAAY,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,OAAO,EACN,kBAAkB,EAClB,uBAAuB,EACvB,aAAa,EACb,iBAAiB,EACjB,gBAAgB,EAChB,cAAc,EACd,aAAa,EACb,gBAAgB,EAChB,cAAc,EACd,aAAa,GACb,MAAM,aAAa,CAAC;AACrB,YAAY,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAExD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAC7D,YAAY,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAE5D,OAAO,EAAE,UAAU,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACzD,YAAY,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC1D,YAAY,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAEtD,YAAY,EACX,eAAe,EACf,mBAAmB,EACnB,cAAc,GACd,MAAM,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACN,YAAY,EACZ,mBAAmB,EACnB,kBAAkB,EAClB,YAAY,EACZ,WAAW,EACX,iBAAiB,EACjB,gBAAgB,GAChB,MAAM,YAAY,CAAC;AAEpB,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAE7D,OAAO,EACN,oBAAoB,EACpB,eAAe,EACf,cAAc,GACd,MAAM,mBAAmB,CAAC;AAE3B,OAAO,EAAE,MAAM,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AACjE,YAAY,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE/C,OAAO,EACN,kBAAkB,EAClB,uBAAuB,EACvB,aAAa,EACb,iBAAiB,EACjB,gBAAgB,EAChB,cAAc,EACd,aAAa,EACb,gBAAgB,EAChB,cAAc,EACd,aAAa,GACb,MAAM,aAAa,CAAC;AACrB,YAAY,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAExD,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAC7D,YAAY,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAE5D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACzD,YAAY,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACxD,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AACtE,YAAY,EAAE,qBAAqB,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AACrF,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAC7D,YAAY,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAC;AAE5D,OAAO,EAAE,UAAU,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AACzD,YAAY,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAC5C,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC1D,YAAY,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAEtD,YAAY,EACX,eAAe,EACf,mBAAmB,EACnB,cAAc,GACd,MAAM,eAAe,CAAC"}
package/dist/index.js CHANGED
@@ -4,6 +4,9 @@ export { actionSheetContainer, actionSheetList, actionSheetRow, } from './action
4
4
  export { Ripple, rippleAnimation, useRipple } from './ripple.js';
5
5
  export { SPRING_COMFORTABLE, SPRING_COMFORTABLE_SLOW, SPRING_SNAPPY, SPRING_RESPONSIVE, SPRING_STAGGERED, SPRING_INSTANT, SPRING_GENTLE, SPRING_VERY_SLOW, SPRING_LANDING, SPRING_RISING, } from './spring.js';
6
6
  export { default as AnimatedText } from './animated-text.js';
7
+ export { default as BackButton } from './back-button.js';
8
+ export { default as CircleIconButton } from './circle-icon-button.js';
9
+ export { default as BannerButton } from './banner-button.js';
7
10
  export { buildTheme, theme, hexToRgb } from './theme.js';
8
11
  export { lightPalette, darkPalette } from './palettes.js';
9
12
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACN,YAAY,EACZ,mBAAmB,EACnB,kBAAkB,EAClB,YAAY,EACZ,WAAW,EACX,iBAAiB,EACjB,gBAAgB,GAChB,MAAM,YAAY,CAAC;AAEpB,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAE7D,OAAO,EACN,oBAAoB,EACpB,eAAe,EACf,cAAc,GACd,MAAM,mBAAmB,CAAC;AAE3B,OAAO,EAAE,MAAM,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAGjE,OAAO,EACN,kBAAkB,EAClB,uBAAuB,EACvB,aAAa,EACb,iBAAiB,EACjB,gBAAgB,EAChB,cAAc,EACd,aAAa,EACb,gBAAgB,EAChB,cAAc,EACd,aAAa,GACb,MAAM,aAAa,CAAC;AAGrB,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAG7D,OAAO,EAAE,UAAU,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACN,YAAY,EACZ,mBAAmB,EACnB,kBAAkB,EAClB,YAAY,EACZ,WAAW,EACX,iBAAiB,EACjB,gBAAgB,GAChB,MAAM,YAAY,CAAC;AAEpB,OAAO,EAAE,iBAAiB,EAAE,MAAM,0BAA0B,CAAC;AAE7D,OAAO,EACN,oBAAoB,EACpB,eAAe,EACf,cAAc,GACd,MAAM,mBAAmB,CAAC;AAE3B,OAAO,EAAE,MAAM,EAAE,eAAe,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAGjE,OAAO,EACN,kBAAkB,EAClB,uBAAuB,EACvB,aAAa,EACb,iBAAiB,EACjB,gBAAgB,EAChB,cAAc,EACd,aAAa,EACb,gBAAgB,EAChB,cAAc,EACd,aAAa,GACb,MAAM,aAAa,CAAC;AAGrB,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAG7D,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAEzD,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAEtE,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAG7D,OAAO,EAAE,UAAU,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "kang-components",
3
- "version": "0.5.0",
4
- "description": "Generic, domain-free React UI primitives (CSS-first press feedback, delayed-action hook, spring presets, cross-fading text).",
3
+ "version": "0.6.0",
4
+ "description": "Generic, domain-free React UI primitives (CSS-first press feedback, delayed-action hook, spring presets, cross-fading text, circle icon button).",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {