- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
70 lines
2.4 KiB
JavaScript
70 lines
2.4 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict-local
|
|
* @format
|
|
*/
|
|
|
|
import type AnimatedNode from '../../Animated/nodes/AnimatedNode';
|
|
|
|
export type ____TransformStyle_Internal = $ReadOnly<{|
|
|
/**
|
|
* `transform` accepts an array of transformation objects. Each object specifies
|
|
* the property that will be transformed as the key, and the value to use in the
|
|
* transformation. Objects should not be combined. Use a single key/value pair
|
|
* per object.
|
|
*
|
|
* The rotate transformations require a string so that the transform may be
|
|
* expressed in degrees (deg) or radians (rad). For example:
|
|
*
|
|
* `transform([{ rotateX: '45deg' }, { rotateZ: '0.785398rad' }])`
|
|
*
|
|
* The skew transformations require a string so that the transform may be
|
|
* expressed in degrees (deg). For example:
|
|
*
|
|
* `transform([{ skewX: '45deg' }])`
|
|
*/
|
|
transform?:
|
|
| $ReadOnlyArray<
|
|
| {|+perspective: number | AnimatedNode|}
|
|
| {|+rotate: string | AnimatedNode|}
|
|
| {|+rotateX: string | AnimatedNode|}
|
|
| {|+rotateY: string | AnimatedNode|}
|
|
| {|+rotateZ: string | AnimatedNode|}
|
|
| {|+scale: number | AnimatedNode|}
|
|
| {|+scaleX: number | AnimatedNode|}
|
|
| {|+scaleY: number | AnimatedNode|}
|
|
| {|+translateX: number | AnimatedNode|}
|
|
| {|+translateY: number | AnimatedNode|}
|
|
| {|
|
|
+translate:
|
|
| [number | AnimatedNode, number | AnimatedNode]
|
|
| AnimatedNode,
|
|
|}
|
|
| {|+skewX: string | AnimatedNode|}
|
|
| {|+skewY: string | AnimatedNode|}
|
|
// TODO: what is the actual type it expects?
|
|
| {|
|
|
+matrix: $ReadOnlyArray<number | AnimatedNode> | AnimatedNode,
|
|
|},
|
|
>
|
|
| string,
|
|
/**
|
|
* `transformOrigin` accepts an array with 3 elements - each element either being
|
|
* a number, or a string of a number ending with `%`. The last element cannot be
|
|
* a percentage, so must be a number.
|
|
*
|
|
* E.g. transformOrigin: ['30%', '80%', 15]
|
|
*
|
|
* Alternatively accepts a string of the CSS syntax. You must use `%` or `px`.
|
|
*
|
|
* E.g. transformOrigin: '30% 80% 15px'
|
|
*/
|
|
transformOrigin?:
|
|
| [string | number, string | number, string | number]
|
|
| string,
|
|
|}>;
|