restore styles sets exports (#1512)
This PR restores the sets into schema exports so that they can be picked up by check translations script. ### Change Type - [x] `internal` — Any other changes that don't affect the published package (will not publish a new version)
This commit is contained in:
parent
4b6383ed90
commit
10bb677035
2 changed files with 73 additions and 10 deletions
|
@ -476,9 +476,36 @@ export const sizeValidator: T.Validator<"l" | "m" | "s" | "xl">;
|
||||||
// @internal (undocumented)
|
// @internal (undocumented)
|
||||||
export const splineValidator: T.Validator<"cubic" | "line">;
|
export const splineValidator: T.Validator<"cubic" | "line">;
|
||||||
|
|
||||||
|
// @public (undocumented)
|
||||||
|
export const TL_ALIGN_TYPES: Set<"end" | "middle" | "start">;
|
||||||
|
|
||||||
|
// @public (undocumented)
|
||||||
|
export const TL_ARROWHEAD_TYPES: Set<"arrow" | "bar" | "diamond" | "dot" | "inverted" | "none" | "pipe" | "square" | "triangle">;
|
||||||
|
|
||||||
|
// @public
|
||||||
|
export const TL_COLOR_TYPES: Set<"accent" | "black" | "laser" | "muted-1" | "selection-fill" | "selection-stroke" | "white">;
|
||||||
|
|
||||||
|
// @public (undocumented)
|
||||||
|
export const TL_DASH_TYPES: Set<"dashed" | "dotted" | "draw" | "solid">;
|
||||||
|
|
||||||
|
// @public (undocumented)
|
||||||
|
export const TL_FILL_TYPES: Set<"none" | "pattern" | "semi" | "solid">;
|
||||||
|
|
||||||
|
// @public (undocumented)
|
||||||
|
export const TL_FONT_TYPES: Set<"draw" | "mono" | "sans" | "serif">;
|
||||||
|
|
||||||
// @public (undocumented)
|
// @public (undocumented)
|
||||||
export const TL_GEO_TYPES: Set<"arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "check-box" | "diamond" | "ellipse" | "hexagon" | "octagon" | "oval" | "pentagon" | "rectangle" | "rhombus-2" | "rhombus" | "star" | "trapezoid" | "triangle" | "x-box">;
|
export const TL_GEO_TYPES: Set<"arrow-down" | "arrow-left" | "arrow-right" | "arrow-up" | "check-box" | "diamond" | "ellipse" | "hexagon" | "octagon" | "oval" | "pentagon" | "rectangle" | "rhombus-2" | "rhombus" | "star" | "trapezoid" | "triangle" | "x-box">;
|
||||||
|
|
||||||
|
// @public (undocumented)
|
||||||
|
export const TL_OPACITY_TYPES: Set<"0.1" | "0.25" | "0.5" | "0.75" | "1">;
|
||||||
|
|
||||||
|
// @public (undocumented)
|
||||||
|
export const TL_SIZE_TYPES: Set<"l" | "m" | "s" | "xl">;
|
||||||
|
|
||||||
|
// @public (undocumented)
|
||||||
|
export const TL_SPLINE_TYPES: Set<"cubic" | "line">;
|
||||||
|
|
||||||
// @public (undocumented)
|
// @public (undocumented)
|
||||||
export const TL_STYLE_TYPES: Set<"align" | "arrowheadEnd" | "arrowheadStart" | "color" | "dash" | "fill" | "font" | "geo" | "icon" | "labelColor" | "opacity" | "size" | "spline" | "verticalAlign">;
|
export const TL_STYLE_TYPES: Set<"align" | "arrowheadEnd" | "arrowheadStart" | "color" | "dash" | "fill" | "font" | "geo" | "icon" | "labelColor" | "opacity" | "size" | "spline" | "verticalAlign">;
|
||||||
|
|
||||||
|
@ -620,7 +647,7 @@ export interface TLCamera extends BaseRecord<'camera', TLCameraId> {
|
||||||
export type TLCameraId = RecordId<TLCamera>;
|
export type TLCameraId = RecordId<TLCamera>;
|
||||||
|
|
||||||
// @public
|
// @public
|
||||||
export type TLColor = SetValue<typeof TL_COLOR_TYPES_2>;
|
export type TLColor = SetValue<typeof TL_COLOR_TYPES>;
|
||||||
|
|
||||||
// @public (undocumented)
|
// @public (undocumented)
|
||||||
export interface TLColorStyle extends TLBaseStyle {
|
export interface TLColorStyle extends TLBaseStyle {
|
||||||
|
@ -631,7 +658,7 @@ export interface TLColorStyle extends TLBaseStyle {
|
||||||
}
|
}
|
||||||
|
|
||||||
// @public (undocumented)
|
// @public (undocumented)
|
||||||
export type TLColorType = SetValue<typeof TL_COLOR_TYPES>;
|
export type TLColorType = SetValue<typeof TL_COLOR_TYPES_2>;
|
||||||
|
|
||||||
// @public
|
// @public
|
||||||
export interface TLCursor {
|
export interface TLCursor {
|
||||||
|
|
|
@ -11,7 +11,7 @@ export { type TLVideoAsset } from './assets/TLVideoAsset'
|
||||||
export { createPresenceStateDerivation } from './createPresenceStateDerivation'
|
export { createPresenceStateDerivation } from './createPresenceStateDerivation'
|
||||||
export { createTLSchema } from './createTLSchema'
|
export { createTLSchema } from './createTLSchema'
|
||||||
export { CLIENT_FIXUP_SCRIPT, fixupRecord } from './fixup'
|
export { CLIENT_FIXUP_SCRIPT, fixupRecord } from './fixup'
|
||||||
export { colorTypeValidator, type TLColor } from './misc/TLColor'
|
export { TL_COLOR_TYPES, colorTypeValidator, type TLColor } from './misc/TLColor'
|
||||||
export { type TLCursor, type TLCursorType } from './misc/TLCursor'
|
export { type TLCursor, type TLCursorType } from './misc/TLCursor'
|
||||||
export { type TLHandle, type TLHandleType } from './misc/TLHandle'
|
export { type TLHandle, type TLHandleType } from './misc/TLHandle'
|
||||||
export { scribbleValidator, type TLScribble } from './misc/TLScribble'
|
export { scribbleValidator, type TLScribble } from './misc/TLScribble'
|
||||||
|
@ -87,22 +87,58 @@ export { type TLLineShape } from './shapes/TLLineShape'
|
||||||
export { type TLNoteShape } from './shapes/TLNoteShape'
|
export { type TLNoteShape } from './shapes/TLNoteShape'
|
||||||
export { type TLTextShape, type TLTextShapeProps } from './shapes/TLTextShape'
|
export { type TLTextShape, type TLTextShapeProps } from './shapes/TLTextShape'
|
||||||
export { type TLVideoShape } from './shapes/TLVideoShape'
|
export { type TLVideoShape } from './shapes/TLVideoShape'
|
||||||
export { alignValidator, type TLAlignStyle, type TLAlignType } from './styles/TLAlignStyle'
|
|
||||||
export {
|
export {
|
||||||
|
TL_ALIGN_TYPES,
|
||||||
|
alignValidator,
|
||||||
|
type TLAlignStyle,
|
||||||
|
type TLAlignType,
|
||||||
|
} from './styles/TLAlignStyle'
|
||||||
|
export {
|
||||||
|
TL_ARROWHEAD_TYPES,
|
||||||
type TLArrowheadEndStyle,
|
type TLArrowheadEndStyle,
|
||||||
type TLArrowheadStartStyle,
|
type TLArrowheadStartStyle,
|
||||||
type TLArrowheadType,
|
type TLArrowheadType,
|
||||||
} from './styles/TLArrowheadStyle'
|
} from './styles/TLArrowheadStyle'
|
||||||
export { TL_STYLE_TYPES, type TLStyleType } from './styles/TLBaseStyle'
|
export { TL_STYLE_TYPES, type TLStyleType } from './styles/TLBaseStyle'
|
||||||
export { colorValidator, type TLColorStyle, type TLColorType } from './styles/TLColorStyle'
|
export { colorValidator, type TLColorStyle, type TLColorType } from './styles/TLColorStyle'
|
||||||
export { dashValidator, type TLDashStyle, type TLDashType } from './styles/TLDashStyle'
|
export {
|
||||||
export { fillValidator, type TLFillStyle, type TLFillType } from './styles/TLFillStyle'
|
TL_DASH_TYPES,
|
||||||
export { fontValidator, type TLFontStyle, type TLFontType } from './styles/TLFontStyle'
|
dashValidator,
|
||||||
|
type TLDashStyle,
|
||||||
|
type TLDashType,
|
||||||
|
} from './styles/TLDashStyle'
|
||||||
|
export {
|
||||||
|
TL_FILL_TYPES,
|
||||||
|
fillValidator,
|
||||||
|
type TLFillStyle,
|
||||||
|
type TLFillType,
|
||||||
|
} from './styles/TLFillStyle'
|
||||||
|
export {
|
||||||
|
TL_FONT_TYPES,
|
||||||
|
fontValidator,
|
||||||
|
type TLFontStyle,
|
||||||
|
type TLFontType,
|
||||||
|
} from './styles/TLFontStyle'
|
||||||
export { TL_GEO_TYPES, geoValidator, type TLGeoStyle, type TLGeoType } from './styles/TLGeoStyle'
|
export { TL_GEO_TYPES, geoValidator, type TLGeoStyle, type TLGeoType } from './styles/TLGeoStyle'
|
||||||
export { iconValidator, type TLIconStyle, type TLIconType } from './styles/TLIconStyle'
|
export { iconValidator, type TLIconStyle, type TLIconType } from './styles/TLIconStyle'
|
||||||
export { opacityValidator, type TLOpacityStyle, type TLOpacityType } from './styles/TLOpacityStyle'
|
export {
|
||||||
export { sizeValidator, type TLSizeStyle, type TLSizeType } from './styles/TLSizeStyle'
|
TL_OPACITY_TYPES,
|
||||||
export { splineValidator, type TLSplineStyle, type TLSplineType } from './styles/TLSplineStyle'
|
opacityValidator,
|
||||||
|
type TLOpacityStyle,
|
||||||
|
type TLOpacityType,
|
||||||
|
} from './styles/TLOpacityStyle'
|
||||||
|
export {
|
||||||
|
TL_SIZE_TYPES,
|
||||||
|
sizeValidator,
|
||||||
|
type TLSizeStyle,
|
||||||
|
type TLSizeType,
|
||||||
|
} from './styles/TLSizeStyle'
|
||||||
|
export {
|
||||||
|
TL_SPLINE_TYPES,
|
||||||
|
splineValidator,
|
||||||
|
type TLSplineStyle,
|
||||||
|
type TLSplineType,
|
||||||
|
} from './styles/TLSplineStyle'
|
||||||
export { verticalAlignValidator, type TLVerticalAlignType } from './styles/TLVerticalAlignStyle'
|
export { verticalAlignValidator, type TLVerticalAlignType } from './styles/TLVerticalAlignStyle'
|
||||||
export { type TLStyleCollections, type TLStyleItem, type TLStyleProps } from './styles/style-types'
|
export { type TLStyleCollections, type TLStyleItem, type TLStyleProps } from './styles/style-types'
|
||||||
export {
|
export {
|
||||||
|
|
Loading…
Reference in a new issue