@monkvision/inspection-capture-web 4.6.0 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -48,7 +48,6 @@ function DamageDisclosure(_a) {
48
48
  });
49
49
  var t = (0, react_i18next_1.useTranslation)().t;
50
50
  var _j = (0, react_1.useState)(types_2.CaptureScreen.CAMERA), currentScreen = _j[0], setCurrentScreen = _j[1];
51
- var dimensions = (0, common_1.useWindowDimensions)();
52
51
  var analytics = (0, analytics_1.useAnalytics)();
53
52
  var loading = (0, common_1.useLoadingState)();
54
53
  var handleOpenGallery = function () {
@@ -89,8 +88,6 @@ function DamageDisclosure(_a) {
89
88
  var handleGalleryBack = function () {
90
89
  setCurrentScreen(types_2.CaptureScreen.CAMERA);
91
90
  };
92
- var isViolatingEnforcedOrientation = enforceOrientation &&
93
- (enforceOrientation === types_1.DeviceOrientation.PORTRAIT) !== dimensions.isPortrait;
94
91
  var hudProps = {
95
92
  inspectionId: inspectionId,
96
93
  mode: addDamageHandle.mode,
@@ -108,7 +105,8 @@ function DamageDisclosure(_a) {
108
105
  addDamage: addDamage,
109
106
  onValidateVehicleParts: addDamageHandle.handleValidateVehicleParts,
110
107
  vehicleType: vehicleType,
108
+ enforceOrientation: enforceOrientation,
111
109
  };
112
- return ((0, jsx_runtime_1.jsxs)("div", __assign({ style: DamageDisclosure_styles_1.styles['container'] }, { children: [currentScreen === types_2.CaptureScreen.CAMERA && isViolatingEnforcedOrientation && ((0, jsx_runtime_1.jsxs)("div", __assign({ style: DamageDisclosure_styles_1.styles['orientationErrorContainer'] }, { children: [(0, jsx_runtime_1.jsxs)("div", __assign({ style: DamageDisclosure_styles_1.styles['orientationErrorTitleContainer'] }, { children: [(0, jsx_runtime_1.jsx)(common_ui_web_1.Icon, { icon: 'rotate', primaryColor: 'text-primary', size: 30 }), (0, jsx_runtime_1.jsx)("div", __assign({ style: DamageDisclosure_styles_1.styles['orientationErrorTitle'] }, { children: t('photo.orientationError.title') }))] })), (0, jsx_runtime_1.jsx)("div", __assign({ style: DamageDisclosure_styles_1.styles['orientationErrorDescription'] }, { children: t('photo.orientationError.description') }))] }))), currentScreen === types_2.CaptureScreen.CAMERA && !isViolatingEnforcedOrientation && ((0, jsx_runtime_1.jsx)(camera_web_1.Camera, __assign({ HUDComponent: DamageDisclosureHUD_1.DamageDisclosureHUD, onPictureTaken: handlePictureTaken, hudProps: hudProps }, adaptiveCameraConfig))), currentScreen === types_2.CaptureScreen.GALLERY && ((0, jsx_runtime_1.jsx)(common_ui_web_1.InspectionGallery, { inspectionId: inspectionId, sights: [], apiConfig: apiConfig, captureMode: true, lang: lang, showBackButton: true, onBack: handleGalleryBack, onNavigateToCapture: handleGalleryBack, onValidate: onComplete, addDamage: addDamage, validateButtonLabel: t('photo.gallery.next'), isInspectionCompleted: false, filterByImageType: types_1.ImageType.CLOSE_UP })), (0, jsx_runtime_1.jsx)(common_ui_web_1.BackdropDialog, { show: isBadConnectionWarningDialogDisplayed, showCancelButton: false, dialogIcon: 'warning-outline', dialogIconPrimaryColor: 'caution-base', message: t('photo.badConnectionWarning.message'), confirmLabel: t('photo.badConnectionWarning.confirm'), onConfirm: closeBadConnectionWarningDialog })] })));
110
+ return ((0, jsx_runtime_1.jsxs)("div", __assign({ style: DamageDisclosure_styles_1.styles['container'] }, { children: [currentScreen === types_2.CaptureScreen.CAMERA && ((0, jsx_runtime_1.jsx)(camera_web_1.Camera, __assign({ HUDComponent: DamageDisclosureHUD_1.DamageDisclosureHUD, onPictureTaken: handlePictureTaken, hudProps: hudProps }, adaptiveCameraConfig))), currentScreen === types_2.CaptureScreen.GALLERY && ((0, jsx_runtime_1.jsx)(common_ui_web_1.InspectionGallery, { inspectionId: inspectionId, sights: [], apiConfig: apiConfig, captureMode: true, lang: lang, showBackButton: true, onBack: handleGalleryBack, onNavigateToCapture: handleGalleryBack, onValidate: onComplete, addDamage: addDamage, validateButtonLabel: t('photo.gallery.next'), isInspectionCompleted: false, filterByImageType: types_1.ImageType.CLOSE_UP })), (0, jsx_runtime_1.jsx)(common_ui_web_1.BackdropDialog, { show: isBadConnectionWarningDialogDisplayed, showCancelButton: false, dialogIcon: 'warning-outline', dialogIconPrimaryColor: 'caution-base', message: t('photo.badConnectionWarning.message'), confirmLabel: t('photo.badConnectionWarning.confirm'), onConfirm: closeBadConnectionWarningDialog })] })));
113
111
  }
114
112
  exports.DamageDisclosure = DamageDisclosure;
@@ -6,7 +6,7 @@ import { CaptureMode } from '../../types';
6
6
  /**
7
7
  * Props of the DamageDisclosureHUD component.
8
8
  */
9
- export interface DamageDisclosureHUDProps extends CameraHUDProps, Pick<PhotoCaptureAppConfig, 'addDamage' | 'showCloseButton'> {
9
+ export interface DamageDisclosureHUDProps extends CameraHUDProps, Pick<PhotoCaptureAppConfig, 'addDamage' | 'showCloseButton' | 'enforceOrientation'> {
10
10
  /**
11
11
  * The inspection ID.
12
12
  */
@@ -70,4 +70,4 @@ export interface DamageDisclosureHUDProps extends CameraHUDProps, Pick<PhotoCapt
70
70
  * over the Camera preview. It implements elements such as buttons to interact with
71
71
  * the camera, DamageDisclosure indicators, error messages, loaders etc.
72
72
  */
73
- export declare function DamageDisclosureHUD({ inspectionId, lastPictureTakenUri, mode, vehicleParts, addDamage, onAddDamage, onAddDamagePartsSelected, onValidateVehicleParts, onCancelAddDamage, onOpenGallery, onClose, onRetry, showCloseButton, loading, handle, cameraPreview, images, vehicleType, }: DamageDisclosureHUDProps): JSX.Element;
73
+ export declare function DamageDisclosureHUD({ inspectionId, lastPictureTakenUri, mode, vehicleParts, addDamage, onAddDamage, onAddDamagePartsSelected, onValidateVehicleParts, onCancelAddDamage, onOpenGallery, onClose, onRetry, showCloseButton, loading, handle, cameraPreview, enforceOrientation, images, vehicleType, }: DamageDisclosureHUDProps): JSX.Element;
@@ -23,6 +23,7 @@ var types_2 = require("../../types");
23
23
  var HUDButtons_1 = require("../../components/HUDButtons");
24
24
  var DamageDisclosureHUDElements_1 = require("./DamageDisclosureHUDElements");
25
25
  var HUDOverlay_1 = require("../../components/HUDOverlay");
26
+ var components_1 = require("../../components");
26
27
  /**
27
28
  * This component implements the Camera HUD (head-up display) displayed in the DamageDisclosure component
28
29
  * over the Camera preview. It implements elements such as buttons to interact with
@@ -30,7 +31,7 @@ var HUDOverlay_1 = require("../../components/HUDOverlay");
30
31
  */
31
32
  function DamageDisclosureHUD(_a) {
32
33
  var _b;
33
- var inspectionId = _a.inspectionId, lastPictureTakenUri = _a.lastPictureTakenUri, mode = _a.mode, vehicleParts = _a.vehicleParts, addDamage = _a.addDamage, onAddDamage = _a.onAddDamage, onAddDamagePartsSelected = _a.onAddDamagePartsSelected, onValidateVehicleParts = _a.onValidateVehicleParts, onCancelAddDamage = _a.onCancelAddDamage, onOpenGallery = _a.onOpenGallery, onClose = _a.onClose, onRetry = _a.onRetry, showCloseButton = _a.showCloseButton, loading = _a.loading, handle = _a.handle, cameraPreview = _a.cameraPreview, images = _a.images, vehicleType = _a.vehicleType;
34
+ var inspectionId = _a.inspectionId, lastPictureTakenUri = _a.lastPictureTakenUri, mode = _a.mode, vehicleParts = _a.vehicleParts, addDamage = _a.addDamage, onAddDamage = _a.onAddDamage, onAddDamagePartsSelected = _a.onAddDamagePartsSelected, onValidateVehicleParts = _a.onValidateVehicleParts, onCancelAddDamage = _a.onCancelAddDamage, onOpenGallery = _a.onOpenGallery, onClose = _a.onClose, onRetry = _a.onRetry, showCloseButton = _a.showCloseButton, loading = _a.loading, handle = _a.handle, cameraPreview = _a.cameraPreview, enforceOrientation = _a.enforceOrientation, images = _a.images, vehicleType = _a.vehicleType;
34
35
  var t = (0, react_i18next_1.useTranslation)().t;
35
36
  var _c = (0, react_1.useState)(false), showCloseModal = _c[0], setShowCloseModal = _c[1];
36
37
  var trackEvent = (0, analytics_1.useAnalytics)().trackEvent;
@@ -44,6 +45,6 @@ function DamageDisclosureHUD(_a) {
44
45
  trackEvent('Disclosure Closed');
45
46
  onClose === null || onClose === void 0 ? void 0 : onClose();
46
47
  };
47
- return ((0, jsx_runtime_1.jsxs)("div", __assign({ style: DamageDisclosureHUD_styles_1.styles['container'] }, { children: [(0, jsx_runtime_1.jsxs)("div", __assign({ style: DamageDisclosureHUD_styles_1.styles['previewContainer'], "data-testid": 'camera-preview' }, { children: [cameraPreview, (0, jsx_runtime_1.jsx)(DamageDisclosureHUDElements_1.DamageDisclosureHUDElements, { mode: mode, addDamage: addDamage, vehicleParts: vehicleParts, onAddDamage: onAddDamage, onCancelAddDamage: onCancelAddDamage, onAddDamagePartsSelected: onAddDamagePartsSelected, onValidateVehicleParts: onValidateVehicleParts, isLoading: loading.isLoading, error: (_b = loading.error) !== null && _b !== void 0 ? _b : handle.error, previewDimensions: handle.previewDimensions, vehicleType: vehicleType })] })), mode !== types_2.CaptureMode.ADD_DAMAGE_PART_SELECT && ((0, jsx_runtime_1.jsx)(HUDButtons_1.HUDButtons, { onOpenGallery: onOpenGallery, onTakePicture: handle === null || handle === void 0 ? void 0 : handle.takePicture, onClose: function () { return setShowCloseModal(true); }, galleryPreview: lastPictureTakenUri !== null && lastPictureTakenUri !== void 0 ? lastPictureTakenUri : undefined, closeDisabled: !!loading.error || !!handle.error, galleryDisabled: !!loading.error || !!handle.error, takePictureDisabled: !!loading.error || !!handle.error || handle.isLoading || loading.isLoading, showCloseButton: showCloseButton, showGalleryBadge: retakeCount > 0, retakeCount: retakeCount })), (0, jsx_runtime_1.jsx)(HUDOverlay_1.HUDOverlay, { inspectionId: inspectionId, handle: handle, isCaptureLoading: loading.isLoading, captureError: loading.error, onRetry: onRetry }), (0, jsx_runtime_1.jsx)(common_ui_web_1.BackdropDialog, { show: showCloseModal, message: t('photo.hud.closeConfirm.message'), cancelLabel: t('photo.hud.closeConfirm.cancel'), confirmLabel: t('photo.hud.closeConfirm.confirm'), onCancel: function () { return setShowCloseModal(false); }, onConfirm: handleCloseConfirm })] })));
48
+ return ((0, jsx_runtime_1.jsxs)("div", __assign({ style: DamageDisclosureHUD_styles_1.styles['container'] }, { children: [(0, jsx_runtime_1.jsxs)("div", __assign({ style: DamageDisclosureHUD_styles_1.styles['previewContainer'], "data-testid": 'camera-preview' }, { children: [cameraPreview, (0, jsx_runtime_1.jsx)(DamageDisclosureHUDElements_1.DamageDisclosureHUDElements, { mode: mode, addDamage: addDamage, vehicleParts: vehicleParts, onAddDamage: onAddDamage, onCancelAddDamage: onCancelAddDamage, onAddDamagePartsSelected: onAddDamagePartsSelected, onValidateVehicleParts: onValidateVehicleParts, isLoading: loading.isLoading, error: (_b = loading.error) !== null && _b !== void 0 ? _b : handle.error, previewDimensions: handle.previewDimensions, vehicleType: vehicleType })] })), mode !== types_2.CaptureMode.ADD_DAMAGE_PART_SELECT && ((0, jsx_runtime_1.jsx)(HUDButtons_1.HUDButtons, { onOpenGallery: onOpenGallery, onTakePicture: handle === null || handle === void 0 ? void 0 : handle.takePicture, onClose: function () { return setShowCloseModal(true); }, galleryPreview: lastPictureTakenUri !== null && lastPictureTakenUri !== void 0 ? lastPictureTakenUri : undefined, closeDisabled: !!loading.error || !!handle.error, galleryDisabled: !!loading.error || !!handle.error, takePictureDisabled: !!loading.error || !!handle.error || handle.isLoading || loading.isLoading, showCloseButton: showCloseButton, showGalleryBadge: retakeCount > 0, retakeCount: retakeCount })), (0, jsx_runtime_1.jsx)(HUDOverlay_1.HUDOverlay, { inspectionId: inspectionId, handle: handle, isCaptureLoading: loading.isLoading, captureError: loading.error, onRetry: onRetry }), (0, jsx_runtime_1.jsx)(common_ui_web_1.BackdropDialog, { show: showCloseModal, message: t('photo.hud.closeConfirm.message'), cancelLabel: t('photo.hud.closeConfirm.cancel'), confirmLabel: t('photo.hud.closeConfirm.confirm'), onCancel: function () { return setShowCloseModal(false); }, onConfirm: handleCloseConfirm }), (0, jsx_runtime_1.jsx)(components_1.OrientationEnforcer, { orientation: enforceOrientation })] })));
48
49
  }
49
50
  exports.DamageDisclosureHUD = DamageDisclosureHUD;
@@ -20,6 +20,7 @@ exports.styles = {
20
20
  __media: { portrait: true },
21
21
  bottom: "".concat(HUDButtons_styles_1.PHOTO_CAPTURE_HUD_BUTTONS_BAR_WIDTH * 1.5, "px"),
22
22
  right: 0,
23
+ paddingLeft: '30%',
23
24
  paddingRight: '45%',
24
25
  },
25
26
  button: {
@@ -21,6 +21,7 @@ var PhotoCaptureHUDElementsSight_1 = require("../PhotoCaptureHUDElementsSight");
21
21
  var ArrowIcon_1 = require("./ArrowIcon");
22
22
  var DisplayText_1 = require("./DisplayText");
23
23
  var hooks_2 = require("../../../hooks");
24
+ var hooks_3 = require("./hooks");
24
25
  function getButtonStyle(enableAddDamage) {
25
26
  return { visibility: enableAddDamage ? 'visible' : 'hidden' };
26
27
  }
@@ -31,6 +32,7 @@ function PhotoCaptureHUDTutorial(_a) {
31
32
  var currentTutorialStep = _a.currentTutorialStep, allowSkipTutorial = _a.allowSkipTutorial, sightGuidelines = _a.sightGuidelines, sightId = _a.sightId, onNextTutorialStep = _a.onNextTutorialStep, onCloseTutorial = _a.onCloseTutorial, addDamage = _a.addDamage;
32
33
  var t = (0, react_i18next_1.useTranslation)().t;
33
34
  var primaryColor = (0, hooks_2.useColorBackground)();
34
- return currentTutorialStep ? ((0, jsx_runtime_1.jsx)("div", __assign({ style: PhotoCaptureHUDTutorial_styles_1.styles['backdropContainer'], "data-testid": 'backdrop' }, { children: (0, jsx_runtime_1.jsxs)("div", __assign({ style: PhotoCaptureHUDTutorial_styles_1.styles['elementsContainer'] }, { children: [(0, jsx_runtime_1.jsxs)("div", __assign({ style: PhotoCaptureHUDTutorial_styles_1.styles['topContainer'] }, { children: [(0, jsx_runtime_1.jsxs)("div", __assign({ style: PhotoCaptureHUDTutorial_styles_1.styles['buttonsContainer'] }, { children: [(0, jsx_runtime_1.jsx)("div", { style: PhotoCaptureHUDTutorial_styles_1.styles['closeButtonTwin'] }), (0, jsx_runtime_1.jsx)(PhotoCaptureHUDElementsSight_1.SightGuideline, { sightId: sightId, sightGuidelines: sightGuidelines, enableSightGuidelines: currentTutorialStep === hooks_1.TutorialSteps.GUIDELINE, addDamage: addDamage, enableDefaultMessage: true }), (0, jsx_runtime_1.jsx)(common_ui_web_1.Button, { style: __assign(__assign({}, PhotoCaptureHUDTutorial_styles_1.styles['closeButton']), getButtonStyle(allowSkipTutorial)), disabled: !allowSkipTutorial, icon: 'close', primaryColor: primaryColor, onClick: onCloseTutorial })] })), (0, jsx_runtime_1.jsx)("div", __assign({ style: PhotoCaptureHUDTutorial_styles_1.styles['arrows'] }, { children: (0, jsx_runtime_1.jsx)(ArrowIcon_1.ArrowIcon, { tutorialStep: currentTutorialStep }) }))] })), (0, jsx_runtime_1.jsx)(DisplayText_1.DisplayText, { tutorialStep: currentTutorialStep }), (0, jsx_runtime_1.jsx)(common_ui_web_1.Button, __assign({ style: PhotoCaptureHUDTutorial_styles_1.styles['nextButton'], primaryColor: 'primary', onClick: onNextTutorialStep }, { children: t('photo.hud.tutorial.next') }))] })) }))) : null;
35
+ var style = (0, hooks_3.usePhotoCaptureHUDTutorialStyle)();
36
+ return currentTutorialStep ? ((0, jsx_runtime_1.jsx)("div", __assign({ style: PhotoCaptureHUDTutorial_styles_1.styles['backdropContainer'], "data-testid": 'backdrop' }, { children: (0, jsx_runtime_1.jsxs)("div", __assign({ style: style.elementsContainer }, { children: [(0, jsx_runtime_1.jsxs)("div", __assign({ style: PhotoCaptureHUDTutorial_styles_1.styles['topContainer'] }, { children: [(0, jsx_runtime_1.jsxs)("div", __assign({ style: PhotoCaptureHUDTutorial_styles_1.styles['buttonsContainer'] }, { children: [(0, jsx_runtime_1.jsx)("div", { style: PhotoCaptureHUDTutorial_styles_1.styles['closeButtonTwin'] }), (0, jsx_runtime_1.jsx)(PhotoCaptureHUDElementsSight_1.SightGuideline, { sightId: sightId, sightGuidelines: sightGuidelines, enableSightGuidelines: currentTutorialStep === hooks_1.TutorialSteps.GUIDELINE, addDamage: addDamage, enableDefaultMessage: true }), (0, jsx_runtime_1.jsx)(common_ui_web_1.Button, { style: __assign(__assign({}, PhotoCaptureHUDTutorial_styles_1.styles['closeButton']), getButtonStyle(allowSkipTutorial)), disabled: !allowSkipTutorial, icon: 'close', primaryColor: primaryColor, onClick: onCloseTutorial })] })), (0, jsx_runtime_1.jsx)("div", __assign({ style: PhotoCaptureHUDTutorial_styles_1.styles['arrows'] }, { children: (0, jsx_runtime_1.jsx)(ArrowIcon_1.ArrowIcon, { tutorialStep: currentTutorialStep }) }))] })), (0, jsx_runtime_1.jsx)(DisplayText_1.DisplayText, { tutorialStep: currentTutorialStep }), (0, jsx_runtime_1.jsx)(common_ui_web_1.Button, __assign({ style: PhotoCaptureHUDTutorial_styles_1.styles['nextButton'], primaryColor: 'primary', onClick: onNextTutorialStep }, { children: t('photo.hud.tutorial.next') }))] })) }))) : null;
35
37
  }
36
38
  exports.PhotoCaptureHUDTutorial = PhotoCaptureHUDTutorial;
@@ -23,6 +23,13 @@ exports.styles = {
23
23
  justifyContent: 'space-between',
24
24
  alignItems: 'center',
25
25
  },
26
+ elementsContainerPortrait: {
27
+ __media: { portrait: true },
28
+ width: 'auto',
29
+ right: '10px',
30
+ left: '10px',
31
+ bottom: "".concat(HUDButtons_styles_1.PHOTO_CAPTURE_HUD_BUTTONS_BAR_WIDTH * 1.8, "px"),
32
+ },
26
33
  topContainer: {
27
34
  width: '100%',
28
35
  display: 'flex',
@@ -0,0 +1,813 @@
1
+ export declare function usePhotoCaptureHUDTutorialStyle(): {
2
+ elementsContainer: {
3
+ accentColor?: import("csstype").Property.AccentColor | undefined;
4
+ alignContent?: import("csstype").Property.AlignContent | undefined;
5
+ alignItems?: import("csstype").Property.AlignItems | undefined;
6
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
7
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
8
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
9
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
10
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
11
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
12
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
13
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
14
+ animationName?: import("csstype").Property.AnimationName | undefined;
15
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
16
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
17
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
18
+ appearance?: import("csstype").Property.Appearance | undefined;
19
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
20
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
21
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
22
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
23
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
24
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
25
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
26
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
27
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
28
+ backgroundPositionX?: string | number | undefined;
29
+ backgroundPositionY?: string | number | undefined;
30
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
31
+ backgroundSize?: string | number | undefined;
32
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
33
+ blockSize?: string | number | undefined;
34
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
35
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
36
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
37
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
38
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
39
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
40
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
41
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
42
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
43
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
44
+ borderBottomLeftRadius?: string | number | undefined;
45
+ borderBottomRightRadius?: string | number | undefined;
46
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
47
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
48
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
49
+ borderEndEndRadius?: string | number | undefined;
50
+ borderEndStartRadius?: string | number | undefined;
51
+ borderImageOutset?: string | number | undefined;
52
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
53
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
54
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
55
+ borderImageWidth?: string | number | undefined;
56
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
57
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
58
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
59
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
60
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
61
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
62
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
63
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
64
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
65
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
66
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
67
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
68
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
69
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
70
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
71
+ borderSpacing?: string | number | undefined;
72
+ borderStartEndRadius?: string | number | undefined;
73
+ borderStartStartRadius?: string | number | undefined;
74
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
75
+ borderTopLeftRadius?: string | number | undefined;
76
+ borderTopRightRadius?: string | number | undefined;
77
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
78
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
79
+ bottom?: string | number | undefined;
80
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
81
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
82
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
83
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
84
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
85
+ breakInside?: import("csstype").Property.BreakInside | undefined;
86
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
87
+ caretColor?: import("csstype").Property.CaretColor | undefined;
88
+ caretShape?: import("csstype").Property.CaretShape | undefined;
89
+ clear?: import("csstype").Property.Clear | undefined;
90
+ clipPath?: import("csstype").Property.ClipPath | undefined;
91
+ color?: import("csstype").Property.Color | undefined;
92
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
93
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
94
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
95
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
96
+ columnGap?: string | number | undefined;
97
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
98
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
99
+ columnRuleWidth?: string | number | undefined;
100
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
101
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
102
+ contain?: import("csstype").Property.Contain | undefined;
103
+ containIntrinsicBlockSize?: string | number | undefined;
104
+ containIntrinsicHeight?: string | number | undefined;
105
+ containIntrinsicInlineSize?: string | number | undefined;
106
+ containIntrinsicWidth?: string | number | undefined;
107
+ containerName?: import("csstype").Property.ContainerName | undefined;
108
+ containerType?: import("csstype").Property.ContainerType | undefined;
109
+ content?: import("csstype").Property.Content | undefined;
110
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
111
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
112
+ counterReset?: import("csstype").Property.CounterReset | undefined;
113
+ counterSet?: import("csstype").Property.CounterSet | undefined;
114
+ cursor?: import("csstype").Property.Cursor | undefined;
115
+ direction?: import("csstype").Property.Direction | undefined;
116
+ display?: import("csstype").Property.Display | undefined;
117
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
118
+ filter?: import("csstype").Property.Filter | undefined;
119
+ flexBasis?: string | number | undefined;
120
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
121
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
122
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
123
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
124
+ float?: import("csstype").Property.Float | undefined;
125
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
126
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
127
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
128
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
129
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
130
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
131
+ fontSize?: string | number | undefined;
132
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
133
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
134
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
135
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
136
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
137
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
138
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
139
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
140
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
141
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
142
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
143
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
144
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
145
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
146
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
147
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
148
+ gridAutoColumns?: string | number | undefined;
149
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
150
+ gridAutoRows?: string | number | undefined;
151
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
152
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
153
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
154
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
155
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
156
+ gridTemplateColumns?: string | number | undefined;
157
+ gridTemplateRows?: string | number | undefined;
158
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
159
+ height?: string | number | undefined;
160
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
161
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
162
+ hyphens?: import("csstype").Property.Hyphens | undefined;
163
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
164
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
165
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
166
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
167
+ inlineSize?: string | number | undefined;
168
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
169
+ insetBlockEnd?: string | number | undefined;
170
+ insetBlockStart?: string | number | undefined;
171
+ insetInlineEnd?: string | number | undefined;
172
+ insetInlineStart?: string | number | undefined;
173
+ isolation?: import("csstype").Property.Isolation | undefined;
174
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
175
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
176
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
177
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
178
+ left?: string | number | undefined;
179
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
180
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
181
+ lineHeight?: string | number | undefined;
182
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
183
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
184
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
185
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
186
+ marginBlockEnd?: string | number | undefined;
187
+ marginBlockStart?: string | number | undefined;
188
+ marginBottom?: string | number | undefined;
189
+ marginInlineEnd?: string | number | undefined;
190
+ marginInlineStart?: string | number | undefined;
191
+ marginLeft?: string | number | undefined;
192
+ marginRight?: string | number | undefined;
193
+ marginTop?: string | number | undefined;
194
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
195
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
196
+ maskBorderOutset?: string | number | undefined;
197
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
198
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
199
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
200
+ maskBorderWidth?: string | number | undefined;
201
+ maskClip?: import("csstype").Property.MaskClip | undefined;
202
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
203
+ maskImage?: import("csstype").Property.MaskImage | undefined;
204
+ maskMode?: import("csstype").Property.MaskMode | undefined;
205
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
206
+ maskPosition?: string | number | undefined;
207
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
208
+ maskSize?: string | number | undefined;
209
+ maskType?: import("csstype").Property.MaskType | undefined;
210
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
211
+ mathShift?: import("csstype").Property.MathShift | undefined;
212
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
213
+ maxBlockSize?: string | number | undefined;
214
+ maxHeight?: string | number | undefined;
215
+ maxInlineSize?: string | number | undefined;
216
+ maxLines?: import("csstype").Property.MaxLines | undefined;
217
+ maxWidth?: string | number | undefined;
218
+ minBlockSize?: string | number | undefined;
219
+ minHeight?: string | number | undefined;
220
+ minInlineSize?: string | number | undefined;
221
+ minWidth?: string | number | undefined;
222
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
223
+ motionDistance?: string | number | undefined;
224
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
225
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
226
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
227
+ objectPosition?: string | number | undefined;
228
+ offsetAnchor?: string | number | undefined;
229
+ offsetDistance?: string | number | undefined;
230
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
231
+ offsetPosition?: string | number | undefined;
232
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
233
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
234
+ opacity?: import("csstype").Property.Opacity | undefined;
235
+ order?: import("csstype").Property.Order | undefined;
236
+ orphans?: import("csstype").Property.Orphans | undefined;
237
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
238
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
239
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
240
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
241
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
242
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
243
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
244
+ overflowClipMargin?: string | number | undefined;
245
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
246
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
247
+ overflowX?: import("csstype").Property.OverflowX | undefined;
248
+ overflowY?: import("csstype").Property.OverflowY | undefined;
249
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
250
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
251
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
252
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
253
+ paddingBlockEnd?: string | number | undefined;
254
+ paddingBlockStart?: string | number | undefined;
255
+ paddingBottom?: string | number | undefined;
256
+ paddingInlineEnd?: string | number | undefined;
257
+ paddingInlineStart?: string | number | undefined;
258
+ paddingLeft?: string | number | undefined;
259
+ paddingRight?: string | number | undefined;
260
+ paddingTop?: string | number | undefined;
261
+ page?: import("csstype").Property.Page | undefined;
262
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
263
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
264
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
265
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
266
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
267
+ perspectiveOrigin?: string | number | undefined;
268
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
269
+ position?: import("csstype").Property.Position | undefined;
270
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
271
+ quotes?: import("csstype").Property.Quotes | undefined;
272
+ resize?: import("csstype").Property.Resize | undefined;
273
+ right?: string | number | undefined;
274
+ rotate?: import("csstype").Property.Rotate | undefined;
275
+ rowGap?: string | number | undefined;
276
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
277
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
278
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
279
+ scale?: import("csstype").Property.Scale | undefined;
280
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
281
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
282
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
283
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
284
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
285
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
286
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
287
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
288
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
289
+ scrollPaddingBlockEnd?: string | number | undefined;
290
+ scrollPaddingBlockStart?: string | number | undefined;
291
+ scrollPaddingBottom?: string | number | undefined;
292
+ scrollPaddingInlineEnd?: string | number | undefined;
293
+ scrollPaddingInlineStart?: string | number | undefined;
294
+ scrollPaddingLeft?: string | number | undefined;
295
+ scrollPaddingRight?: string | number | undefined;
296
+ scrollPaddingTop?: string | number | undefined;
297
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
298
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
299
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
300
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
301
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
302
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
303
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
304
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
305
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
306
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
307
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
308
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
309
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
310
+ shapeMargin?: string | number | undefined;
311
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
312
+ tabSize?: string | number | undefined;
313
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
314
+ textAlign?: import("csstype").Property.TextAlign | undefined;
315
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
316
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
317
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
318
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
319
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
320
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
321
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
322
+ textDecorationThickness?: string | number | undefined;
323
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
324
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
325
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
326
+ textIndent?: string | number | undefined;
327
+ textJustify?: import("csstype").Property.TextJustify | undefined;
328
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
329
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
330
+ textRendering?: import("csstype").Property.TextRendering | undefined;
331
+ textShadow?: import("csstype").Property.TextShadow | undefined;
332
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
333
+ textTransform?: import("csstype").Property.TextTransform | undefined;
334
+ textUnderlineOffset?: string | number | undefined;
335
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
336
+ top?: string | number | undefined;
337
+ touchAction?: import("csstype").Property.TouchAction | undefined;
338
+ transform?: import("csstype").Property.Transform | undefined;
339
+ transformBox?: import("csstype").Property.TransformBox | undefined;
340
+ transformOrigin?: string | number | undefined;
341
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
342
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
343
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
344
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
345
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
346
+ translate?: string | number | undefined;
347
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
348
+ userSelect?: import("csstype").Property.UserSelect | undefined;
349
+ verticalAlign?: string | number | undefined;
350
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
351
+ visibility?: import("csstype").Property.Visibility | undefined;
352
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
353
+ widows?: import("csstype").Property.Widows | undefined;
354
+ width?: string | number | undefined;
355
+ willChange?: import("csstype").Property.WillChange | undefined;
356
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
357
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
358
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
359
+ writingMode?: import("csstype").Property.WritingMode | undefined;
360
+ zIndex?: import("csstype").Property.ZIndex | undefined;
361
+ zoom?: import("csstype").Property.Zoom | undefined;
362
+ all?: import("csstype").Globals | undefined;
363
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
364
+ background?: string | number | undefined;
365
+ backgroundPosition?: string | number | undefined;
366
+ border?: string | number | undefined;
367
+ borderBlock?: string | number | undefined;
368
+ borderBlockEnd?: string | number | undefined;
369
+ borderBlockStart?: string | number | undefined;
370
+ borderBottom?: string | number | undefined;
371
+ borderColor?: import("csstype").Property.BorderColor | undefined;
372
+ borderImage?: import("csstype").Property.BorderImage | undefined;
373
+ borderInline?: string | number | undefined;
374
+ borderInlineEnd?: string | number | undefined;
375
+ borderInlineStart?: string | number | undefined;
376
+ borderLeft?: string | number | undefined;
377
+ borderRadius?: string | number | undefined;
378
+ borderRight?: string | number | undefined;
379
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
380
+ borderTop?: string | number | undefined;
381
+ borderWidth?: string | number | undefined;
382
+ caret?: import("csstype").Property.Caret | undefined;
383
+ columnRule?: string | number | undefined;
384
+ columns?: string | number | undefined;
385
+ containIntrinsicSize?: string | number | undefined;
386
+ container?: import("csstype").Property.Container | undefined;
387
+ flex?: string | number | undefined;
388
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
389
+ font?: import("csstype").Property.Font | undefined;
390
+ gap?: string | number | undefined;
391
+ grid?: import("csstype").Property.Grid | undefined;
392
+ gridArea?: import("csstype").Property.GridArea | undefined;
393
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
394
+ gridRow?: import("csstype").Property.GridRow | undefined;
395
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
396
+ inset?: string | number | undefined;
397
+ insetBlock?: string | number | undefined;
398
+ insetInline?: string | number | undefined;
399
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
400
+ listStyle?: import("csstype").Property.ListStyle | undefined;
401
+ margin?: string | number | undefined;
402
+ marginBlock?: string | number | undefined;
403
+ marginInline?: string | number | undefined;
404
+ mask?: string | number | undefined;
405
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
406
+ motion?: string | number | undefined;
407
+ offset?: string | number | undefined;
408
+ outline?: string | number | undefined;
409
+ overflow?: import("csstype").Property.Overflow | undefined;
410
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
411
+ padding?: string | number | undefined;
412
+ paddingBlock?: string | number | undefined;
413
+ paddingInline?: string | number | undefined;
414
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
415
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
416
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
417
+ scrollMargin?: string | number | undefined;
418
+ scrollMarginBlock?: string | number | undefined;
419
+ scrollMarginInline?: string | number | undefined;
420
+ scrollPadding?: string | number | undefined;
421
+ scrollPaddingBlock?: string | number | undefined;
422
+ scrollPaddingInline?: string | number | undefined;
423
+ scrollSnapMargin?: string | number | undefined;
424
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
425
+ textDecoration?: string | number | undefined;
426
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
427
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
428
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
429
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
430
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
431
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
432
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
433
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
434
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
435
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
436
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
437
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
438
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
439
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
440
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
441
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
442
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
443
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
444
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
445
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
446
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
447
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
448
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
449
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
450
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
451
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
452
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
453
+ MozColumnRuleWidth?: string | number | undefined;
454
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
455
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
456
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
457
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
458
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
459
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
460
+ MozMarginEnd?: string | number | undefined;
461
+ MozMarginStart?: string | number | undefined;
462
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
463
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
464
+ MozPaddingEnd?: string | number | undefined;
465
+ MozPaddingStart?: string | number | undefined;
466
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
467
+ MozPerspectiveOrigin?: string | number | undefined;
468
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
469
+ MozTabSize?: string | number | undefined;
470
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
471
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
472
+ MozTransformOrigin?: string | number | undefined;
473
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
474
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
475
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
476
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
477
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
478
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
479
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
480
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
481
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
482
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
483
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
484
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
485
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
486
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
487
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
488
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
489
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
490
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
491
+ msFilter?: import("csstype").Property.MsFilter | undefined;
492
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
493
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
494
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
495
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
496
+ msGridColumns?: string | number | undefined;
497
+ msGridRows?: string | number | undefined;
498
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
499
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
500
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
501
+ msHyphenateLimitZone?: string | number | undefined;
502
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
503
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
504
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
505
+ msOrder?: import("csstype").Property.Order | undefined;
506
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
507
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
508
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
509
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
510
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
511
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
512
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
513
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
514
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
515
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
516
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
517
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
518
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
519
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
520
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
521
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
522
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
523
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
524
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
525
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
526
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
527
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
528
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
529
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
530
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
531
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
532
+ msTransform?: import("csstype").Property.Transform | undefined;
533
+ msTransformOrigin?: string | number | undefined;
534
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
535
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
536
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
537
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
538
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
539
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
540
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
541
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
542
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
543
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
544
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
545
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
546
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
547
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
548
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
549
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
550
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
551
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
552
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
553
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
554
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
555
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
556
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
557
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
558
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
559
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
560
+ WebkitBackgroundSize?: string | number | undefined;
561
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
562
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
563
+ WebkitBorderBeforeWidth?: string | number | undefined;
564
+ WebkitBorderBottomLeftRadius?: string | number | undefined;
565
+ WebkitBorderBottomRightRadius?: string | number | undefined;
566
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
567
+ WebkitBorderTopLeftRadius?: string | number | undefined;
568
+ WebkitBorderTopRightRadius?: string | number | undefined;
569
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
570
+ WebkitBoxReflect?: string | number | undefined;
571
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
572
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
573
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
574
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
575
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
576
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
577
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
578
+ WebkitColumnRuleWidth?: string | number | undefined;
579
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
580
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
581
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
582
+ WebkitFlexBasis?: string | number | undefined;
583
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
584
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
585
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
586
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
587
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
588
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
589
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
590
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
591
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
592
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
593
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
594
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
595
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
596
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
597
+ WebkitMarginEnd?: string | number | undefined;
598
+ WebkitMarginStart?: string | number | undefined;
599
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
600
+ WebkitMaskBoxImageOutset?: string | number | undefined;
601
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
602
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
603
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
604
+ WebkitMaskBoxImageWidth?: string | number | undefined;
605
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
606
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
607
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
608
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
609
+ WebkitMaskPosition?: string | number | undefined;
610
+ WebkitMaskPositionX?: string | number | undefined;
611
+ WebkitMaskPositionY?: string | number | undefined;
612
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
613
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
614
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
615
+ WebkitMaskSize?: string | number | undefined;
616
+ WebkitMaxInlineSize?: string | number | undefined;
617
+ WebkitOrder?: import("csstype").Property.Order | undefined;
618
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
619
+ WebkitPaddingEnd?: string | number | undefined;
620
+ WebkitPaddingStart?: string | number | undefined;
621
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
622
+ WebkitPerspectiveOrigin?: string | number | undefined;
623
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
624
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
625
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
626
+ WebkitShapeMargin?: string | number | undefined;
627
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
628
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
629
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
630
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
631
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
632
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
633
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
634
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
635
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
636
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
637
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
638
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
639
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
640
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
641
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
642
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
643
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
644
+ WebkitTransformOrigin?: string | number | undefined;
645
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
646
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
647
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
648
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
649
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
650
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
651
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
652
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
653
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
654
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
655
+ MozColumnRule?: string | number | undefined;
656
+ MozColumns?: string | number | undefined;
657
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
658
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
659
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
660
+ msFlex?: string | number | undefined;
661
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
662
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
663
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
664
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
665
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
666
+ WebkitBorderBefore?: string | number | undefined;
667
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
668
+ WebkitBorderRadius?: string | number | undefined;
669
+ WebkitColumnRule?: string | number | undefined;
670
+ WebkitColumns?: string | number | undefined;
671
+ WebkitFlex?: string | number | undefined;
672
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
673
+ WebkitMask?: string | number | undefined;
674
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
675
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
676
+ WebkitTextStroke?: string | number | undefined;
677
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
678
+ azimuth?: import("csstype").Property.Azimuth | undefined;
679
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
680
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
681
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
682
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
683
+ boxLines?: import("csstype").Property.BoxLines | undefined;
684
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
685
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
686
+ boxPack?: import("csstype").Property.BoxPack | undefined;
687
+ clip?: import("csstype").Property.Clip | undefined;
688
+ gridColumnGap?: string | number | undefined;
689
+ gridGap?: string | number | undefined;
690
+ gridRowGap?: string | number | undefined;
691
+ imeMode?: import("csstype").Property.ImeMode | undefined;
692
+ offsetBlock?: string | number | undefined;
693
+ offsetBlockEnd?: string | number | undefined;
694
+ offsetBlockStart?: string | number | undefined;
695
+ offsetInline?: string | number | undefined;
696
+ offsetInlineEnd?: string | number | undefined;
697
+ offsetInlineStart?: string | number | undefined;
698
+ scrollSnapCoordinate?: string | number | undefined;
699
+ scrollSnapDestination?: string | number | undefined;
700
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
701
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
702
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
703
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
704
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
705
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
706
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
707
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
708
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
709
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
710
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
711
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
712
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
713
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
714
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
715
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
716
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
717
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
718
+ MozBackgroundSize?: string | number | undefined;
719
+ MozBorderRadius?: string | number | undefined;
720
+ MozBorderRadiusBottomleft?: string | number | undefined;
721
+ MozBorderRadiusBottomright?: string | number | undefined;
722
+ MozBorderRadiusTopleft?: string | number | undefined;
723
+ MozBorderRadiusTopright?: string | number | undefined;
724
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
725
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
726
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
727
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
728
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
729
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
730
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
731
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
732
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
733
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
734
+ MozOutline?: string | number | undefined;
735
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
736
+ MozOutlineRadius?: string | number | undefined;
737
+ MozOutlineRadiusBottomleft?: string | number | undefined;
738
+ MozOutlineRadiusBottomright?: string | number | undefined;
739
+ MozOutlineRadiusTopleft?: string | number | undefined;
740
+ MozOutlineRadiusTopright?: string | number | undefined;
741
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
742
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
743
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
744
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
745
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
746
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
747
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
748
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
749
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
750
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
751
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
752
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
753
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
754
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
755
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
756
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
757
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
758
+ OBackgroundSize?: string | number | undefined;
759
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
760
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
761
+ OObjectPosition?: string | number | undefined;
762
+ OTabSize?: string | number | undefined;
763
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
764
+ OTransform?: import("csstype").Property.Transform | undefined;
765
+ OTransformOrigin?: string | number | undefined;
766
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
767
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
768
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
769
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
770
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
771
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
772
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
773
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
774
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
775
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
776
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
777
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
778
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
779
+ WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
780
+ WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
781
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
782
+ baselineShift?: string | number | undefined;
783
+ clipRule?: import("csstype").Property.ClipRule | undefined;
784
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
785
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
786
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
787
+ fill?: import("csstype").Property.Fill | undefined;
788
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
789
+ fillRule?: import("csstype").Property.FillRule | undefined;
790
+ floodColor?: import("csstype").Property.FloodColor | undefined;
791
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
792
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
793
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
794
+ marker?: import("csstype").Property.Marker | undefined;
795
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
796
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
797
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
798
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
799
+ stopColor?: import("csstype").Property.StopColor | undefined;
800
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
801
+ stroke?: import("csstype").Property.Stroke | undefined;
802
+ strokeDasharray?: string | number | undefined;
803
+ strokeDashoffset?: string | number | undefined;
804
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
805
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
806
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
807
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
808
+ strokeWidth?: string | number | undefined;
809
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
810
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
811
+ __media?: import("@monkvision/types").CSSMediaQuery | undefined;
812
+ };
813
+ };
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.usePhotoCaptureHUDTutorialStyle = void 0;
15
+ var common_1 = require("@monkvision/common");
16
+ var PhotoCaptureHUDTutorial_styles_1 = require("./PhotoCaptureHUDTutorial.styles");
17
+ function usePhotoCaptureHUDTutorialStyle() {
18
+ var responsive = (0, common_1.useResponsiveStyle)().responsive;
19
+ return {
20
+ elementsContainer: __assign(__assign({}, PhotoCaptureHUDTutorial_styles_1.styles['elementsContainer']), responsive(PhotoCaptureHUDTutorial_styles_1.styles['elementsContainerPortrait'])),
21
+ };
22
+ }
23
+ exports.usePhotoCaptureHUDTutorialStyle = usePhotoCaptureHUDTutorialStyle;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monkvision/inspection-capture-web",
3
- "version": "4.6.0",
3
+ "version": "5.0.0",
4
4
  "license": "BSD-3-Clause-Clear",
5
5
  "packageManager": "yarn@3.2.4",
6
6
  "description": "MonkJs inspection capture package for React (web) used to implement the Monk inspection capture workflow",
@@ -28,12 +28,12 @@
28
28
  "lint:fix": "yarn run prettier:fix && yarn run eslint:fix"
29
29
  },
30
30
  "dependencies": {
31
- "@monkvision/analytics": "4.6.0",
32
- "@monkvision/camera-web": "4.6.0",
33
- "@monkvision/common": "4.6.0",
34
- "@monkvision/common-ui-web": "4.6.0",
35
- "@monkvision/network": "4.6.0",
36
- "@monkvision/sights": "4.6.0",
31
+ "@monkvision/analytics": "5.0.0",
32
+ "@monkvision/camera-web": "5.0.0",
33
+ "@monkvision/common": "5.0.0",
34
+ "@monkvision/common-ui-web": "5.0.0",
35
+ "@monkvision/network": "5.0.0",
36
+ "@monkvision/sights": "5.0.0",
37
37
  "i18next": "^23.4.5",
38
38
  "react-i18next": "^13.2.0"
39
39
  },
@@ -44,13 +44,13 @@
44
44
  "react-router-dom": "^6.22.3"
45
45
  },
46
46
  "devDependencies": {
47
- "@monkvision/eslint-config-base": "4.6.0",
48
- "@monkvision/eslint-config-typescript": "4.6.0",
49
- "@monkvision/eslint-config-typescript-react": "4.6.0",
50
- "@monkvision/jest-config": "4.6.0",
51
- "@monkvision/prettier-config": "4.6.0",
52
- "@monkvision/test-utils": "4.6.0",
53
- "@monkvision/typescript-config": "4.6.0",
47
+ "@monkvision/eslint-config-base": "5.0.0",
48
+ "@monkvision/eslint-config-typescript": "5.0.0",
49
+ "@monkvision/eslint-config-typescript-react": "5.0.0",
50
+ "@monkvision/jest-config": "5.0.0",
51
+ "@monkvision/prettier-config": "5.0.0",
52
+ "@monkvision/test-utils": "5.0.0",
53
+ "@monkvision/typescript-config": "5.0.0",
54
54
  "@testing-library/react": "^12.1.5",
55
55
  "@testing-library/react-hooks": "^8.0.1",
56
56
  "@types/copyfiles": "^2",
@@ -93,5 +93,5 @@
93
93
  "url": "https://github.com/monkvision/monkjs/issues"
94
94
  },
95
95
  "homepage": "https://github.com/monkvision/monkjs",
96
- "gitHead": "68caf5a157e344b2187519616c9fe35eecafc65b"
96
+ "gitHead": "6426efb1b64fde310666b5556fc76aeb7c8f2584"
97
97
  }