node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import * as React from 'react';
import { FlexProps } from '../../primitives/Flex';
import { Field } from '../Field';
interface JSONInputProps extends Omit<FlexProps, 'onChange'>, Pick<Field.InputProps, 'hasError' | 'required' | 'id'> {
value?: string;
disabled?: boolean;
onChange?: (value: string) => void;
}
interface JSONInputRef extends Partial<HTMLElement> {
focus(): void;
}
declare const JSONInput: React.ForwardRefExoticComponent<Omit<JSONInputProps, "ref"> & React.RefAttributes<JSONInputRef>>;
export { JSONInput };
export type { JSONInputProps, JSONInputRef };
//# sourceMappingURL=JSONInput.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"JSONInput.d.ts","sourceRoot":"","sources":["../../../src/components/JSONInput/JSONInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAO/B,OAAO,EAAuB,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAEvE,OAAO,EAAE,KAAK,EAAY,MAAM,UAAU,CAAC;AAM3C,UAAU,cAAe,SAAQ,IAAI,CAAC,SAAS,EAAE,UAAU,CAAC,EAAE,IAAI,CAAC,KAAK,CAAC,UAAU,EAAE,UAAU,GAAG,UAAU,GAAG,IAAI,CAAC;IAClH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACpC;AAED,UAAU,YAAa,SAAQ,OAAO,CAAC,WAAW,CAAC;IACjD,KAAK,IAAI,IAAI,CAAC;CACf;AAED,QAAA,MAAM,SAAS,kGA+Id,CAAC;AAqCF,OAAO,EAAE,SAAS,EAAE,CAAC;AACrB,YAAY,EAAE,cAAc,EAAE,YAAY,EAAE,CAAC"}

View File

@@ -0,0 +1,2 @@
export * from './JSONInput';
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/JSONInput/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC"}

View File

@@ -0,0 +1,8 @@
import { StateField, type Range } from '@codemirror/state';
import { Decoration } from '@codemirror/view';
declare const addMarks: import("@codemirror/state").StateEffectType<Range<Decoration>[]>;
declare const filterMarks: import("@codemirror/state").StateEffectType<(_from: number, _to: number, _value: Decoration) => boolean>;
declare const lineHighlightMark: Decoration;
declare const markField: StateField<import("@codemirror/view").DecorationSet>;
export { addMarks, filterMarks, lineHighlightMark, markField };
//# sourceMappingURL=decorationExtension.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"decorationExtension.d.ts","sourceRoot":"","sources":["../../../../src/components/JSONInput/utils/decorationExtension.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAe,KAAK,KAAK,EAAE,MAAM,mBAAmB,CAAC;AACxE,OAAO,EAAc,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAG1D,QAAA,MAAM,QAAQ,kEAA4C,CAAC;AAC3D,QAAA,MAAM,WAAW,sDAA8B,MAAM,OAAO,MAAM,UAAU,UAAU,KAAK,OAAO,CAAG,CAAC;AAEtG,QAAA,MAAM,iBAAiB,YAErB,CAAC;AAEH,QAAA,MAAM,SAAS,sDAwBb,CAAC;AAEH,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,iBAAiB,EAAE,SAAS,EAAE,CAAC"}