uilint-react 0.2.64 → 0.2.65
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/devtools.js +100 -95
- package/dist/devtools.js.map +1 -1
- package/dist/index.js +3659 -3120
- package/dist/index.js.map +1 -1
- package/dist/ui/components/CommandPalette/AnimatedListItem.d.ts +31 -0
- package/dist/ui/components/CommandPalette/AnimatedListItem.d.ts.map +1 -0
- package/dist/ui/components/CommandPalette/CommandPalette.d.ts.map +1 -1
- package/dist/ui/components/CommandPalette/IssuesSummaryCard.d.ts +18 -0
- package/dist/ui/components/CommandPalette/IssuesSummaryCard.d.ts.map +1 -0
- package/dist/ui/components/CommandPalette/SearchInput.d.ts +1 -1
- package/dist/ui/components/CommandPalette/SearchInput.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
interface AnimatedListItemProps {
|
|
3
|
+
children: React.ReactNode;
|
|
4
|
+
index: number;
|
|
5
|
+
/** Optional key for AnimatePresence tracking */
|
|
6
|
+
layoutId?: string;
|
|
7
|
+
/** Max delay cap to prevent slow renders on long lists */
|
|
8
|
+
maxDelay?: number;
|
|
9
|
+
/** Base delay between items */
|
|
10
|
+
staggerDelay?: number;
|
|
11
|
+
}
|
|
12
|
+
export declare function AnimatedListItem({ children, index, layoutId, maxDelay, staggerDelay, }: AnimatedListItemProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
/**
|
|
14
|
+
* AnimatedSection - Wrapper for section headers with slide-in animation
|
|
15
|
+
*/
|
|
16
|
+
export declare function AnimatedSection({ children, delay, }: {
|
|
17
|
+
children: React.ReactNode;
|
|
18
|
+
delay?: number;
|
|
19
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
/**
|
|
21
|
+
* SelectionIndicator - Animated selection background
|
|
22
|
+
*
|
|
23
|
+
* Provides a smooth morphing selection indicator like Raycast
|
|
24
|
+
*/
|
|
25
|
+
export declare function SelectionIndicator({ isSelected, children, variant, }: {
|
|
26
|
+
isSelected: boolean;
|
|
27
|
+
children: React.ReactNode;
|
|
28
|
+
variant?: "default" | "command" | "issue";
|
|
29
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
30
|
+
export {};
|
|
31
|
+
//# sourceMappingURL=AnimatedListItem.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AnimatedListItem.d.ts","sourceRoot":"","sources":["../../../../src/ui/components/CommandPalette/AnimatedListItem.tsx"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,UAAU,qBAAqB;IAC7B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,gDAAgD;IAChD,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,0DAA0D;IAC1D,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,+BAA+B;IAC/B,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAKD,wBAAgB,gBAAgB,CAAC,EAC/B,QAAQ,EACR,KAAK,EACL,QAAQ,EACR,QAAe,EACf,YAAmB,GACpB,EAAE,qBAAqB,2CAmBvB;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,EAC9B,QAAQ,EACR,KAAS,GACV,EAAE;IACD,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,2CAcA;AAED;;;;GAIG;AACH,wBAAgB,kBAAkB,CAAC,EACjC,UAAU,EACV,QAAQ,EACR,OAAmB,GACpB,EAAE;IACD,UAAU,EAAE,OAAO,CAAC;IACpB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,GAAG,OAAO,CAAC;CAC3C,2CAiDA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CommandPalette.d.ts","sourceRoot":"","sources":["../../../../src/ui/components/CommandPalette/CommandPalette.tsx"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"CommandPalette.d.ts","sourceRoot":"","sources":["../../../../src/ui/components/CommandPalette/CommandPalette.tsx"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AACH,OAAO,KAAyC,MAAM,OAAO,CAAC;AAgO9D,wBAAgB,cAAc,sBAkd7B"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Issue } from '../../types';
|
|
2
|
+
interface IssuesSummaryCardProps {
|
|
3
|
+
issues: Issue[];
|
|
4
|
+
isSelected: boolean;
|
|
5
|
+
onClick: () => void;
|
|
6
|
+
}
|
|
7
|
+
export declare function IssuesSummaryCard({ issues, isSelected, onClick }: IssuesSummaryCardProps): import("react/jsx-runtime").JSX.Element | null;
|
|
8
|
+
/**
|
|
9
|
+
* TopIssuesPreview - Shows a few critical issues as a preview
|
|
10
|
+
*/
|
|
11
|
+
export declare function TopIssuesPreview({ issues, onSelectIssue, startIndex, selectedIndex, }: {
|
|
12
|
+
issues: Issue[];
|
|
13
|
+
onSelectIssue: (issue: Issue) => void;
|
|
14
|
+
startIndex: number;
|
|
15
|
+
selectedIndex: number;
|
|
16
|
+
}): import("react/jsx-runtime").JSX.Element | null;
|
|
17
|
+
export {};
|
|
18
|
+
//# sourceMappingURL=IssuesSummaryCard.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IssuesSummaryCard.d.ts","sourceRoot":"","sources":["../../../../src/ui/components/CommandPalette/IssuesSummaryCard.tsx"],"names":[],"mappings":"AASA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AAEzC,UAAU,sBAAsB;IAC9B,MAAM,EAAE,KAAK,EAAE,CAAC;IAChB,UAAU,EAAE,OAAO,CAAC;IACpB,OAAO,EAAE,MAAM,IAAI,CAAC;CACrB;AAQD,wBAAgB,iBAAiB,CAAC,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO,EAAE,EAAE,sBAAsB,kDAyIxF;AAyCD;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,EAC/B,MAAM,EACN,aAAa,EACb,UAAU,EACV,aAAa,GACd,EAAE;IACD,MAAM,EAAE,KAAK,EAAE,CAAC;IAChB,aAAa,EAAE,CAAC,KAAK,EAAE,KAAK,KAAK,IAAI,CAAC;IACtC,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;CACvB,kDAmCA"}
|
|
@@ -3,6 +3,6 @@ interface SearchInputProps {
|
|
|
3
3
|
onChange: (value: string) => void;
|
|
4
4
|
placeholder?: string;
|
|
5
5
|
}
|
|
6
|
-
export declare function SearchInput({ value, onChange, placeholder }: SearchInputProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare function SearchInput({ value, onChange, placeholder, }: SearchInputProps): import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export {};
|
|
8
8
|
//# sourceMappingURL=SearchInput.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SearchInput.d.ts","sourceRoot":"","sources":["../../../../src/ui/components/CommandPalette/SearchInput.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SearchInput.d.ts","sourceRoot":"","sources":["../../../../src/ui/components/CommandPalette/SearchInput.tsx"],"names":[],"mappings":"AAaA,UAAU,gBAAgB;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,wBAAgB,WAAW,CAAC,EAC1B,KAAK,EACL,QAAQ,EACR,WAAiD,GAClD,EAAE,gBAAgB,2CA2GlB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uilint-react",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.65",
|
|
4
4
|
"description": "React component for AI-powered UI consistency checking",
|
|
5
5
|
"author": "Peter Suggate",
|
|
6
6
|
"repository": {
|
|
@@ -47,8 +47,8 @@
|
|
|
47
47
|
"react-use-measure": "^2.1.7",
|
|
48
48
|
"tw-animate-css": "^1.4.0",
|
|
49
49
|
"zustand": "^5.0.10",
|
|
50
|
-
"uilint-
|
|
51
|
-
"uilint-
|
|
50
|
+
"uilint-core": "0.2.65",
|
|
51
|
+
"uilint-eslint": "0.2.65"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"react": "^19.0.0",
|