kang-components 0.9.7 → 0.9.9
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/error-boundary.d.ts +41 -0
- package/dist/error-boundary.d.ts.map +1 -0
- package/dist/error-boundary.js +44 -0
- package/dist/error-boundary.js.map +1 -0
- package/dist/error-boundary.styles.d.ts +6 -0
- package/dist/error-boundary.styles.d.ts.map +1 -0
- package/dist/error-boundary.styles.js +66 -0
- package/dist/error-boundary.styles.js.map +1 -0
- package/dist/index.d.ts +5 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/long-press-tooltip.d.ts +24 -0
- package/dist/long-press-tooltip.d.ts.map +1 -0
- package/dist/long-press-tooltip.js +143 -0
- package/dist/long-press-tooltip.js.map +1 -0
- package/dist/long-press-tooltip.styles.d.ts +2318 -0
- package/dist/long-press-tooltip.styles.d.ts.map +1 -0
- package/dist/long-press-tooltip.styles.js +55 -0
- package/dist/long-press-tooltip.styles.js.map +1 -0
- package/dist/spring.d.ts +10 -0
- package/dist/spring.d.ts.map +1 -1
- package/dist/spring.js +10 -0
- package/dist/spring.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"long-press-tooltip.styles.d.ts","sourceRoot":"","sources":["../src/long-press-tooltip.styles.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
// Named import (not the default) so styled-components resolves consistently
|
|
2
|
+
// when this file is consumed as a published node_modules ESM module.
|
|
3
|
+
import { styled } from 'styled-components';
|
|
4
|
+
import { animated } from '@react-spring/web';
|
|
5
|
+
/**
|
|
6
|
+
* Transparent block wrapper that sits inside a list (e.g. a flex column with no
|
|
7
|
+
* `gap`), so it doesn't alter row spacing. It owns the long-press gesture and
|
|
8
|
+
* suppresses the native callout / text selection that iOS and Android trigger
|
|
9
|
+
* on touch-and-hold.
|
|
10
|
+
*/
|
|
11
|
+
export const TooltipWrapper = styled.div `
|
|
12
|
+
width: 100%;
|
|
13
|
+
/*
|
|
14
|
+
* Let the browser keep vertical scrolling, but claim every other gesture
|
|
15
|
+
* (incl. the press-and-hold) for us. Without this, Chrome on Android
|
|
16
|
+
* optimistically hands the touch to the compositor and fires pointercancel
|
|
17
|
+
* before our long-press timer completes — so a still hold "does nothing".
|
|
18
|
+
*/
|
|
19
|
+
touch-action: pan-y;
|
|
20
|
+
-webkit-touch-callout: none;
|
|
21
|
+
-webkit-user-select: none;
|
|
22
|
+
user-select: none;
|
|
23
|
+
`;
|
|
24
|
+
/**
|
|
25
|
+
* Floating bubble. Uses the inverted scheme (onSurface background / surface
|
|
26
|
+
* text) for consistency with other transient overlays. Portaled to <body> so it
|
|
27
|
+
* escapes any clipped (`overflow: hidden`) ancestor.
|
|
28
|
+
*/
|
|
29
|
+
export const TooltipPopover = styled(animated.div) `
|
|
30
|
+
position: fixed;
|
|
31
|
+
z-index: 9999;
|
|
32
|
+
box-sizing: border-box;
|
|
33
|
+
max-width: min(20rem, calc(100vw - 2rem));
|
|
34
|
+
padding: 0.75rem 0.875rem;
|
|
35
|
+
border-radius: 12px;
|
|
36
|
+
background: ${({ theme }) => theme?.colors?.onSurface ?? '#1a1a1a'};
|
|
37
|
+
color: ${({ theme }) => theme?.colors?.surface ?? '#ffffff'};
|
|
38
|
+
font-size: 0.8125rem;
|
|
39
|
+
line-height: 1.45;
|
|
40
|
+
box-shadow: 0 8px 24px ${({ theme }) => theme?.colors?.shadowLight ?? 'rgba(0, 0, 0, 0.15)'};
|
|
41
|
+
/* Informational only — taps anywhere dismiss it via a document listener. */
|
|
42
|
+
pointer-events: none;
|
|
43
|
+
will-change: transform, opacity;
|
|
44
|
+
`;
|
|
45
|
+
/** Small caret that points from the bubble back toward the long-pressed row. */
|
|
46
|
+
export const TooltipArrow = styled.div `
|
|
47
|
+
position: absolute;
|
|
48
|
+
left: var(--arrow-left, 1rem);
|
|
49
|
+
${({ $placement }) => ($placement === 'below' ? 'top: -5px;' : 'bottom: -5px;')}
|
|
50
|
+
width: 10px;
|
|
51
|
+
height: 10px;
|
|
52
|
+
background: ${({ theme }) => theme?.colors?.onSurface ?? '#1a1a1a'};
|
|
53
|
+
transform: rotate(45deg);
|
|
54
|
+
`;
|
|
55
|
+
//# sourceMappingURL=long-press-tooltip.styles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"long-press-tooltip.styles.js","sourceRoot":"","sources":["../src/long-press-tooltip.styles.ts"],"names":[],"mappings":"AAAA,4EAA4E;AAC5E,qEAAqE;AACrE,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAC3C,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAa7C;;;;;GAKG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,MAAM,CAAC,GAAG,CAAA;;;;;;;;;;;;CAYvC,CAAC;AAEF;;;;GAIG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAA;;;;;;;eAOnC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAE,KAAqB,EAAE,MAAM,EAAE,SAAS,IAAI,SAAS;UAC1E,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAE,KAAqB,EAAE,MAAM,EAAE,OAAO,IAAI,SAAS;;;0BAGnD,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAE,KAAqB,EAAE,MAAM,EAAE,WAAW,IAAI,qBAAqB;;;;CAI5G,CAAC;AAEF,gFAAgF;AAChF,MAAM,CAAC,MAAM,YAAY,GAAG,MAAM,CAAC,GAAG,CAAmC;;;GAGtE,CAAC,EAAE,UAAU,EAAE,EAAE,EAAE,CAAC,CAAC,UAAU,KAAK,OAAO,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,eAAe,CAAC;;;eAGjE,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAE,KAAqB,EAAE,MAAM,EAAE,SAAS,IAAI,SAAS;;CAEnF,CAAC"}
|
package/dist/spring.d.ts
CHANGED
|
@@ -38,4 +38,14 @@ export declare const SPRING_VERY_SLOW: SpringConfigConstant;
|
|
|
38
38
|
export declare const SPRING_LANDING: SpringConfigConstant;
|
|
39
39
|
/** Rising config — for reverse hero animations, smoother deceleration. */
|
|
40
40
|
export declare const SPRING_RISING: SpringConfigConstant;
|
|
41
|
+
/**
|
|
42
|
+
* Tracking config — for elements that follow a pointer drag/scroll and settle
|
|
43
|
+
* (sheet drags, scroll-restore, card carousels). Looser than RESPONSIVE so the
|
|
44
|
+
* follow feels physical rather than snappy.
|
|
45
|
+
*/
|
|
46
|
+
export declare const SPRING_TRACKING: SpringConfigConstant;
|
|
47
|
+
/** Brisk config — quick UI feedback a touch livelier than RESPONSIVE (keyboards, nav). */
|
|
48
|
+
export declare const SPRING_BRISK: SpringConfigConstant;
|
|
49
|
+
/** Float config — slow ambient drift for decorative/background motion (watermarks). */
|
|
50
|
+
export declare const SPRING_FLOAT: SpringConfigConstant;
|
|
41
51
|
//# sourceMappingURL=spring.d.ts.map
|
package/dist/spring.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"spring.d.ts","sourceRoot":"","sources":["../src/spring.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAEH,4FAA4F;AAC5F,MAAM,WAAW,oBAAoB;IACpC,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;CACd;AAED,4DAA4D;AAC5D,eAAO,MAAM,kBAAkB,EAAE,oBAAqD,CAAC;AAEvF,sEAAsE;AACtE,eAAO,MAAM,uBAAuB,EAAE,oBAAqD,CAAC;AAE5F,oDAAoD;AACpD,eAAO,MAAM,aAAa,EAAE,oBAAqD,CAAC;AAElF,oEAAoE;AACpE,eAAO,MAAM,iBAAiB,EAAE,oBAAqD,CAAC;AAEtF,0DAA0D;AAC1D,eAAO,MAAM,gBAAgB,EAAE,oBAAqD,CAAC;AAErF,mDAAmD;AACnD,eAAO,MAAM,cAAc,EAAE,oBAAqD,CAAC;AAEnF,sDAAsD;AACtD,eAAO,MAAM,aAAa,EAAE,oBAAqD,CAAC;AAElF,8DAA8D;AAC9D,eAAO,MAAM,gBAAgB,EAAE,oBAAoD,CAAC;AAEpF,6EAA6E;AAC7E,eAAO,MAAM,cAAc,EAAE,oBAA8D,CAAC;AAE5F,0EAA0E;AAC1E,eAAO,MAAM,aAAa,EAAE,oBAA8D,CAAC"}
|
|
1
|
+
{"version":3,"file":"spring.d.ts","sourceRoot":"","sources":["../src/spring.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAEH,4FAA4F;AAC5F,MAAM,WAAW,oBAAoB;IACpC,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;CACd;AAED,4DAA4D;AAC5D,eAAO,MAAM,kBAAkB,EAAE,oBAAqD,CAAC;AAEvF,sEAAsE;AACtE,eAAO,MAAM,uBAAuB,EAAE,oBAAqD,CAAC;AAE5F,oDAAoD;AACpD,eAAO,MAAM,aAAa,EAAE,oBAAqD,CAAC;AAElF,oEAAoE;AACpE,eAAO,MAAM,iBAAiB,EAAE,oBAAqD,CAAC;AAEtF,0DAA0D;AAC1D,eAAO,MAAM,gBAAgB,EAAE,oBAAqD,CAAC;AAErF,mDAAmD;AACnD,eAAO,MAAM,cAAc,EAAE,oBAAqD,CAAC;AAEnF,sDAAsD;AACtD,eAAO,MAAM,aAAa,EAAE,oBAAqD,CAAC;AAElF,8DAA8D;AAC9D,eAAO,MAAM,gBAAgB,EAAE,oBAAoD,CAAC;AAEpF,6EAA6E;AAC7E,eAAO,MAAM,cAAc,EAAE,oBAA8D,CAAC;AAE5F,0EAA0E;AAC1E,eAAO,MAAM,aAAa,EAAE,oBAA8D,CAAC;AAE3F;;;;GAIG;AACH,eAAO,MAAM,eAAe,EAAE,oBAAqD,CAAC;AAEpF,0FAA0F;AAC1F,eAAO,MAAM,YAAY,EAAE,oBAAqD,CAAC;AAEjF,uFAAuF;AACvF,eAAO,MAAM,YAAY,EAAE,oBAAoD,CAAC"}
|
package/dist/spring.js
CHANGED
|
@@ -32,4 +32,14 @@ export const SPRING_VERY_SLOW = { tension: 50, friction: 20 };
|
|
|
32
32
|
export const SPRING_LANDING = { tension: 280, friction: 22, mass: 1 };
|
|
33
33
|
/** Rising config — for reverse hero animations, smoother deceleration. */
|
|
34
34
|
export const SPRING_RISING = { tension: 220, friction: 26, mass: 1 };
|
|
35
|
+
/**
|
|
36
|
+
* Tracking config — for elements that follow a pointer drag/scroll and settle
|
|
37
|
+
* (sheet drags, scroll-restore, card carousels). Looser than RESPONSIVE so the
|
|
38
|
+
* follow feels physical rather than snappy.
|
|
39
|
+
*/
|
|
40
|
+
export const SPRING_TRACKING = { tension: 170, friction: 26 };
|
|
41
|
+
/** Brisk config — quick UI feedback a touch livelier than RESPONSIVE (keyboards, nav). */
|
|
42
|
+
export const SPRING_BRISK = { tension: 300, friction: 26 };
|
|
43
|
+
/** Float config — slow ambient drift for decorative/background motion (watermarks). */
|
|
44
|
+
export const SPRING_FLOAT = { tension: 60, friction: 20 };
|
|
35
45
|
//# sourceMappingURL=spring.js.map
|
package/dist/spring.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"spring.js","sourceRoot":"","sources":["../src/spring.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AASH,4DAA4D;AAC5D,MAAM,CAAC,MAAM,kBAAkB,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAEvF,sEAAsE;AACtE,MAAM,CAAC,MAAM,uBAAuB,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAE5F,oDAAoD;AACpD,MAAM,CAAC,MAAM,aAAa,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAElF,oEAAoE;AACpE,MAAM,CAAC,MAAM,iBAAiB,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAEtF,0DAA0D;AAC1D,MAAM,CAAC,MAAM,gBAAgB,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAErF,mDAAmD;AACnD,MAAM,CAAC,MAAM,cAAc,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAEnF,sDAAsD;AACtD,MAAM,CAAC,MAAM,aAAa,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAElF,8DAA8D;AAC9D,MAAM,CAAC,MAAM,gBAAgB,GAAyB,EAAE,OAAO,EAAE,EAAE,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAEpF,6EAA6E;AAC7E,MAAM,CAAC,MAAM,cAAc,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC;AAE5F,0EAA0E;AAC1E,MAAM,CAAC,MAAM,aAAa,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC"}
|
|
1
|
+
{"version":3,"file":"spring.js","sourceRoot":"","sources":["../src/spring.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AASH,4DAA4D;AAC5D,MAAM,CAAC,MAAM,kBAAkB,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAEvF,sEAAsE;AACtE,MAAM,CAAC,MAAM,uBAAuB,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAE5F,oDAAoD;AACpD,MAAM,CAAC,MAAM,aAAa,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAElF,oEAAoE;AACpE,MAAM,CAAC,MAAM,iBAAiB,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAEtF,0DAA0D;AAC1D,MAAM,CAAC,MAAM,gBAAgB,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAErF,mDAAmD;AACnD,MAAM,CAAC,MAAM,cAAc,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAEnF,sDAAsD;AACtD,MAAM,CAAC,MAAM,aAAa,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAElF,8DAA8D;AAC9D,MAAM,CAAC,MAAM,gBAAgB,GAAyB,EAAE,OAAO,EAAE,EAAE,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAEpF,6EAA6E;AAC7E,MAAM,CAAC,MAAM,cAAc,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC;AAE5F,0EAA0E;AAC1E,MAAM,CAAC,MAAM,aAAa,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC;AAE3F;;;;GAIG;AACH,MAAM,CAAC,MAAM,eAAe,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAEpF,0FAA0F;AAC1F,MAAM,CAAC,MAAM,YAAY,GAAyB,EAAE,OAAO,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;AAEjF,uFAAuF;AACvF,MAAM,CAAC,MAAM,YAAY,GAAyB,EAAE,OAAO,EAAE,EAAE,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kang-components",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.9",
|
|
4
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",
|