RTL
This commit is contained in:
parent
1f2cde6d04
commit
0e490542a7
196 changed files with 2117 additions and 1217 deletions
|
@ -40,6 +40,7 @@ export const rendererConfigSchema = z.object({
|
|||
homePath: configRequiredStringSchema,
|
||||
hostname: configRequiredStringSchema,
|
||||
resolvedTranslationsLocale: configRequiredStringSchema,
|
||||
resolvedTranslationsLocaleDirection: z.enum(['ltr', 'rtl']),
|
||||
preferredSystemLocales: z.array(configRequiredStringSchema),
|
||||
name: configRequiredStringSchema,
|
||||
nodeVersion: configRequiredStringSchema,
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
import type { IntlShape } from 'react-intl';
|
||||
import type { UUIDStringType } from './UUID';
|
||||
import type { LocaleDirection } from '../../app/locale';
|
||||
|
||||
export type StoryContextType = {
|
||||
authorUuid?: UUIDStringType;
|
||||
|
@ -23,6 +24,7 @@ export type LocalizerType = {
|
|||
getIntl(): IntlShape;
|
||||
isLegacyFormat(key: string): boolean;
|
||||
getLocale(): string;
|
||||
getLocaleDirection(): LocaleDirection;
|
||||
};
|
||||
|
||||
export enum SentMediaQualityType {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue