mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-04-30 23:37:49 +08:00
### What problem does this PR solve? Feat: Rename the files in the jsonjoy-builder directory to lowercase. #10866 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -2,8 +2,8 @@ import type {
|
||||
JSONSchema,
|
||||
NewField,
|
||||
ObjectJSONSchema,
|
||||
} from '../types/jsonSchema.ts';
|
||||
import { isBooleanSchema, isObjectSchema } from '../types/jsonSchema.ts';
|
||||
} from '../types/json-schema';
|
||||
import { isBooleanSchema, isObjectSchema } from '../types/json-schema';
|
||||
|
||||
export type Property = {
|
||||
name: string;
|
||||
@ -1,4 +1,4 @@
|
||||
import { asObjectSchema, type JSONSchema } from '../types/jsonSchema.ts';
|
||||
import { asObjectSchema, type JSONSchema } from '../types/json-schema';
|
||||
|
||||
/**
|
||||
* Merges two JSON schemas.
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
import { clsx, type ClassValue } from 'clsx';
|
||||
import { twMerge } from 'tailwind-merge';
|
||||
import type { Translation } from '../i18n/translation-keys.ts';
|
||||
import type { SchemaType } from '../types/jsonSchema.ts';
|
||||
import type { SchemaType } from '../types/json-schema';
|
||||
|
||||
export function cn(...inputs: ClassValue[]) {
|
||||
return twMerge(clsx(inputs));
|
||||
|
||||
Reference in New Issue
Block a user