jpf 3.0.19 → 4.0.1
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.
- package/dist/View.d.ts +29 -0
- package/dist/View.js +96 -0
- package/dist/View.js.map +1 -0
- package/dist/ViewModel.d.ts +61 -0
- package/dist/ViewModel.js +404 -0
- package/dist/ViewModel.js.map +1 -0
- package/dist/attributes.d.ts +37 -0
- package/dist/attributes.js +3 -0
- package/dist/attributes.js.map +1 -0
- package/dist/event.d.ts +59 -0
- package/dist/event.js +29 -0
- package/dist/event.js.map +1 -0
- package/dist/examples/example-01.d.ts +1 -0
- package/dist/examples/example-01.js +43 -0
- package/dist/examples/example-01.js.map +1 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.js +17 -8
- package/dist/index.js.map +1 -1
- package/dist/src/View.d.ts +29 -0
- package/dist/src/View.js +96 -0
- package/dist/src/View.js.map +1 -0
- package/dist/src/ViewModel.d.ts +61 -0
- package/dist/src/ViewModel.js +404 -0
- package/dist/src/ViewModel.js.map +1 -0
- package/dist/src/attributes.d.ts +37 -0
- package/dist/src/attributes.js +3 -0
- package/dist/src/attributes.js.map +1 -0
- package/dist/src/event.d.ts +59 -0
- package/dist/src/event.js +29 -0
- package/dist/src/event.js.map +1 -0
- package/dist/src/index.d.ts +7 -0
- package/dist/src/index.js +22 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/style.d.ts +658 -0
- package/dist/src/style.js +158 -0
- package/dist/src/style.js.map +1 -0
- package/dist/src/types.d.ts +85 -0
- package/dist/src/types.js +3 -0
- package/dist/src/types.js.map +1 -0
- package/dist/src/userAgent.d.ts +31 -0
- package/dist/src/userAgent.js +50 -0
- package/dist/src/userAgent.js.map +1 -0
- package/dist/style.d.ts +330 -329
- package/dist/style.js +9 -0
- package/dist/style.js.map +1 -1
- package/dist/types.d.ts +1 -3
- package/dist/userAgent.js +7 -9
- package/dist/userAgent.js.map +1 -1
- package/package.json +13 -9
- package/dist/eventListener.d.ts +0 -30
- package/dist/eventListener.js +0 -12
- package/dist/eventListener.js.map +0 -1
- package/dist/uiElement.d.ts +0 -89
- package/dist/uiElement.js +0 -634
- package/dist/uiElement.js.map +0 -1
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.defaultStyle = exports.extendStyle = void 0;
|
|
4
|
+
const extend = require("extend");
|
|
5
|
+
function extendStyle(target, source) {
|
|
6
|
+
if (source) {
|
|
7
|
+
return extend(true, target, source);
|
|
8
|
+
}
|
|
9
|
+
return target;
|
|
10
|
+
}
|
|
11
|
+
exports.extendStyle = extendStyle;
|
|
12
|
+
exports.defaultStyle = {
|
|
13
|
+
animation: "none",
|
|
14
|
+
animationDelay: 0,
|
|
15
|
+
animationDirection: "normal",
|
|
16
|
+
animationDuration: "0",
|
|
17
|
+
animationFillMode: "none",
|
|
18
|
+
animationIterationCount: 1,
|
|
19
|
+
animationName: "none",
|
|
20
|
+
animationPlayState: "running",
|
|
21
|
+
animationTimingFunction: "ease",
|
|
22
|
+
backfaceVisibility: "visible",
|
|
23
|
+
background: 0,
|
|
24
|
+
backgroundAttachment: "scroll",
|
|
25
|
+
backgroundClip: "border-box",
|
|
26
|
+
backgroundColor: "transparent",
|
|
27
|
+
backgroundImage: "none",
|
|
28
|
+
backgroundOrigin: "padding-box",
|
|
29
|
+
backgroundPosition: "0 0",
|
|
30
|
+
backgroundRepeat: "repeat",
|
|
31
|
+
backgroundSize: "auto auto",
|
|
32
|
+
border: 0,
|
|
33
|
+
borderStyle: "none",
|
|
34
|
+
borderWidth: "medium",
|
|
35
|
+
borderColor: "inherit",
|
|
36
|
+
borderBottom: 0,
|
|
37
|
+
borderBottomColor: "inherit",
|
|
38
|
+
borderBottomLeftRadius: 0,
|
|
39
|
+
borderBottomRightRadius: 0,
|
|
40
|
+
borderBottomStyle: "none",
|
|
41
|
+
borderBottomWidth: "medium",
|
|
42
|
+
borderCollapse: "separate",
|
|
43
|
+
borderImageSource: "none",
|
|
44
|
+
borderLeft: 0,
|
|
45
|
+
borderLeftColor: "inherit",
|
|
46
|
+
borderLeftStyle: "none",
|
|
47
|
+
borderLeftWidth: "medium",
|
|
48
|
+
borderRadius: 0,
|
|
49
|
+
borderRight: 0,
|
|
50
|
+
borderRightColor: "inherit",
|
|
51
|
+
borderRightStyle: "none",
|
|
52
|
+
borderRightWidth: "medium",
|
|
53
|
+
borderSpacing: 0,
|
|
54
|
+
borderTop: 0,
|
|
55
|
+
borderTopColor: "inherit",
|
|
56
|
+
borderTopLeftRadius: 0,
|
|
57
|
+
borderTopRightRadius: 0,
|
|
58
|
+
borderTopStyle: "none",
|
|
59
|
+
borderTopWidth: "medium",
|
|
60
|
+
bottom: "auto",
|
|
61
|
+
boxShadow: "none",
|
|
62
|
+
boxSizing: "content-box",
|
|
63
|
+
captionSide: "top",
|
|
64
|
+
clear: "none",
|
|
65
|
+
clip: "auto",
|
|
66
|
+
color: "inherit",
|
|
67
|
+
columns: "auto",
|
|
68
|
+
columnCount: "auto",
|
|
69
|
+
columnFill: "balance",
|
|
70
|
+
columnGap: "normal",
|
|
71
|
+
columnRule: "medium none currentColor",
|
|
72
|
+
columnRuleColor: "currentColor",
|
|
73
|
+
columnRuleStyle: "none",
|
|
74
|
+
columnRuleWidth: "none",
|
|
75
|
+
columnSpan: 1,
|
|
76
|
+
columnWidth: "auto",
|
|
77
|
+
content: "normal",
|
|
78
|
+
counterIncrement: "none",
|
|
79
|
+
counterReset: "none",
|
|
80
|
+
cursor: "auto",
|
|
81
|
+
direction: "ltr",
|
|
82
|
+
display: "inline",
|
|
83
|
+
emptyCells: "show",
|
|
84
|
+
float: "none",
|
|
85
|
+
font: "normal",
|
|
86
|
+
fontFamily: "inherit",
|
|
87
|
+
fontSize: "medium",
|
|
88
|
+
fontStyle: "normal",
|
|
89
|
+
fontVariant: "normal",
|
|
90
|
+
fontWeight: "normal",
|
|
91
|
+
height: "auto",
|
|
92
|
+
hyphens: "none",
|
|
93
|
+
left: "auto",
|
|
94
|
+
letterSpacing: "normal",
|
|
95
|
+
lineHeight: "normal",
|
|
96
|
+
listStyle: "none",
|
|
97
|
+
listStyleImage: "none",
|
|
98
|
+
listStylePosition: "outside",
|
|
99
|
+
listStyleType: "disc",
|
|
100
|
+
margin: 0,
|
|
101
|
+
marginBottom: 0,
|
|
102
|
+
marginLeft: 0,
|
|
103
|
+
marginRight: 0,
|
|
104
|
+
marginTop: 0,
|
|
105
|
+
maxHeight: "none",
|
|
106
|
+
maxWidth: "none",
|
|
107
|
+
minHeight: 0,
|
|
108
|
+
minWidth: 0,
|
|
109
|
+
opacity: 1,
|
|
110
|
+
orphans: 0,
|
|
111
|
+
outline: 0,
|
|
112
|
+
outlineColor: "invert",
|
|
113
|
+
outlineStyle: "none",
|
|
114
|
+
outlineWidth: "medium",
|
|
115
|
+
overflow: "visible",
|
|
116
|
+
overflowX: "visible",
|
|
117
|
+
overflowY: "visible",
|
|
118
|
+
padding: 0,
|
|
119
|
+
paddingBottom: 0,
|
|
120
|
+
paddingLeft: 0,
|
|
121
|
+
paddingRight: 0,
|
|
122
|
+
paddingTop: 0,
|
|
123
|
+
pageBreakAfter: "auto",
|
|
124
|
+
pageBreakBefore: "auto",
|
|
125
|
+
pageBreakInside: "auto",
|
|
126
|
+
perspective: "none",
|
|
127
|
+
perspectiveOrigin: "50% 50%",
|
|
128
|
+
position: "static",
|
|
129
|
+
right: "auto",
|
|
130
|
+
tabSize: 8,
|
|
131
|
+
tableLayout: "auto",
|
|
132
|
+
textAlign: "inherit",
|
|
133
|
+
textAlignLast: "auto",
|
|
134
|
+
textDecoration: "none",
|
|
135
|
+
textDecorationColor: "inherit",
|
|
136
|
+
textDecorationLine: "none",
|
|
137
|
+
textDecorationStyle: "solid",
|
|
138
|
+
textIndent: 0,
|
|
139
|
+
textShadow: "none",
|
|
140
|
+
textTransform: "none",
|
|
141
|
+
top: "auto",
|
|
142
|
+
transform: "none",
|
|
143
|
+
transformStyle: "flat",
|
|
144
|
+
transition: "none",
|
|
145
|
+
transitionDelay: "0s",
|
|
146
|
+
transitionDuration: "0s",
|
|
147
|
+
transitionProperty: "none",
|
|
148
|
+
transitionTimingFunction: "ease",
|
|
149
|
+
unicodeBidi: "normal",
|
|
150
|
+
verticalAlign: "baseline",
|
|
151
|
+
visibility: "visible",
|
|
152
|
+
whiteSpace: "normal",
|
|
153
|
+
widows: 0,
|
|
154
|
+
width: "auto",
|
|
155
|
+
wordSpacing: "normal",
|
|
156
|
+
zIndex: "auto"
|
|
157
|
+
};
|
|
158
|
+
//# sourceMappingURL=style.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"style.js","sourceRoot":"","sources":["../../src/style.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
export declare type DropEffect = "none" | "copy" | "link" | "move";
|
|
2
|
+
export declare type EffectAllowed = "none" | "copy" | "copyLink" | "copyMove" | "link" | "linkMove" | "move" | "all" | "uninitialized";
|
|
3
|
+
declare type CssPropertyA = "alignContent" | "alignItems" | "alignSelf" | "alignmentAdjust" | "alignmentBaseline" | "animation" | "animationDelay" | "animationDirection" | "animationDuration" | "animationFillMode" | "animationIterationCount" | "animationName" | "animationPlayState" | "animationTimingFunction" | "appearance" | "backfaceVisibility" | "background" | "backgroundAttachment" | "backgroundBlendMode" | "backgroundClip" | "backgroundColor" | "backgroundComposite" | "backgroundImage" | "backgroundOrigin" | "backgroundPosition" | "backgroundRepeat" | "backgroundSize" | "baselineShift" | "behavior" | "border" | "borderBottom" | "borderBottomColor" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderBottomStyle" | "borderBottomWidth" | "borderCollapse" | "borderColor" | "borderCornerShape" | "borderImageSource" | "borderImageWidth" | "borderLeft" | "borderLeftColor" | "borderLeftStyle" | "borderLeftWidth" | "borderRadius" | "borderRight" | "borderRightColor" | "borderRightStyle" | "borderRightWidth" | "borderSpacing" | "borderStyle" | "borderTop" | "borderTopColor" | "borderTopLeftRadius" | "borderTopRightRadius" | "borderTopStyle" | "borderTopWidth" | "borderWidth" | "bottom" | "boxAlign" | "boxDecorationBreak" | "boxDirection" | "boxLineProgression" | "boxLines" | "boxOrdinalGroup" | "boxFlex" | "boxSizing" | "boxShadow" | "boxFlexGroup" | "breakAfter" | "breakBefore" | "breakInside" | "captionSide" | "clear" | "clip" | "clipRule" | "color" | "columnCount" | "columnFill" | "columnGap" | "columnRule" | "columnRuleColor" | "columnRuleWidth" | "columnSpan" | "columnWidth" | "columns" | "content" | "counterIncrement" | "counterReset" | "cue" | "cueAfter" | "cursor" | "direction" | "display" | "dominantBaseline" | "emptyCells" | "fill" | "fillOpacity" | "fillRule" | "filter" | "flex" | "flexAlign" | "flexBasis" | "flexDirection" | "flexFlow" | "flexGrow" | "flexItemAlign" | "flexLinePack" | "flexPositive" | "flexNegative" | "flexOrder" | "flexShrink" | "flexWrap" | "float" | "flowFrom" | "font" | "fontFamily" | "fontKerning" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontSynthesis" | "fontVariant" | "fontVariantAlternates" | "fontWeight" | "gridArea" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumn" | "gridColumnGap" | "gridColumnEnd" | "gridColumnStart" | "gridGap" | "gridRow" | "gridRowEnd" | "gridRowGap" | "gridRowStart" | "gridRowPosition" | "gridRowSpan" | "gridTemplate" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "height" | "hyphenateLimitChars" | "hyphenateLimitLines" | "hyphenateLimitZone" | "hyphens" | "imeMode" | "justifyContent" | "justifyItems" | "justifySelf";
|
|
4
|
+
declare type CssPropertyL = "layoutGrid" | "layoutGridChar" | "layoutGridLine" | "layoutGridMode" | "layoutGridType" | "left" | "letterSpacing" | "lineBreak" | "lineClamp" | "lineHeight" | "listStyle" | "listStyleImage" | "listStylePosition" | "listStyleType" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "marqueeDirection" | "marqueeStyle" | "mask" | "maskBorder" | "maskBorderRepeat" | "maskBorderSlice" | "maskBorderSource" | "maskBorderWidth" | "maskClip" | "maskOrigin" | "maxFontSize" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "mixBlendMode" | "objectFit" | "objectPosition" | "opacity" | "order" | "orphans" | "outline" | "outlineColor" | "outlineStyle" | "outlineOffset" | "outlineWidth" | "overflow" | "overflowStyle" | "overflowWrap" | "overflowX" | "overflowY" | "padding" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "pageBreakAfter" | "pageBreakBefore" | "pageBreakInside" | "pause" | "pauseAfter" | "pauseBefore" | "perspective" | "perspectiveOrigin" | "pointerEvents" | "position" | "punctuationTrim" | "quotes" | "regionFragment" | "resize" | "restAfter" | "restBefore" | "right" | "rubyAlign" | "rubyPosition" | "rx" | "ry" | "shapeImageThreshold" | "shapeInside" | "shapeMargin" | "shapeOutside" | "speak" | "speakAs" | "src" | "stroke" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeOpacity" | "strokeWidth" | "tabSize" | "tableLayout" | "textAnchor" | "textAlign" | "textAlignLast" | "textDecoration" | "textDecorationColor" | "textDecorationLine" | "textDecorationLineThrough" | "textDecorationNone" | "textDecorationOverline" | "textDecorationSkip" | "textDecorationStyle" | "textDecorationUnderline" | "textEmphasis" | "textEmphasisColor" | "textEmphasisStyle" | "textHeight" | "textIndent" | "textJustifyTrim" | "textKashidaSpace" | "textLineThrough" | "textLineThroughColor" | "textLineThroughMode" | "textLineThroughStyle" | "textLineThroughWidth" | "textOverflow" | "textOverline" | "textOverlineColor" | "textOverlineMode" | "textOverlineStyle" | "textOverlineWidth" | "textRendering" | "textScript" | "textShadow" | "textTransform" | "textUnderlinePosition" | "textUnderlineStyle" | "top" | "touchAction" | "transform" | "transformOrigin" | "transformOriginZ" | "transformStyle" | "transition" | "transitionDelay" | "transitionDuration" | "transitionProperty" | "transitionTimingFunction" | "unicodeBidi" | "unicodeRange" | "userFocus" | "userInput" | "userSelect" | "verticalAlign" | "visibility" | "voiceBalance" | "voiceDuration" | "voiceFamily" | "voicePitch" | "voiceRange" | "voiceRate" | "voiceStress" | "voiceVolume" | "whiteSpace" | "whiteSpaceTreatment" | "widows" | "width" | "willChange" | "wordBreak" | "wordSpacing" | "wordWrap" | "wrapFlow" | "wrapMargin" | "wrapOption" | "writingMode" | "zIndex" | "zoom";
|
|
5
|
+
export declare type CssProperty = CssPropertyA | CssPropertyL;
|
|
6
|
+
export declare type CssValue<T> = T | T[];
|
|
7
|
+
export declare type CssValueGeneral = CssValue<number | string>;
|
|
8
|
+
export declare type CssValueString = CssValue<string>;
|
|
9
|
+
export declare type CssGlobalValues = "initial" | "inherit" | "unset" | "revert";
|
|
10
|
+
export interface IFontFace {
|
|
11
|
+
fontFamily?: string;
|
|
12
|
+
src?: CssValueString;
|
|
13
|
+
unicodeRange?: any;
|
|
14
|
+
fontVariant?: "common-ligatures" | "small-caps" | CssGlobalValues;
|
|
15
|
+
fontFeatureSettings?: string;
|
|
16
|
+
fontWeight?: CssFontWeight;
|
|
17
|
+
fontStyle?: "normal" | "italic" | "oblique" | CssGlobalValues;
|
|
18
|
+
}
|
|
19
|
+
export declare type CssAbsoluteSize = "xx-small" | "x-small" | "small" | "medium" | "large" | "x-large" | "xx-large";
|
|
20
|
+
export declare type CssAngle = CssGlobalValues | string | 0;
|
|
21
|
+
export declare type CssAnimationPlayState = CssGlobalValues | string | "paused" | "running";
|
|
22
|
+
export declare type CssBlendMode = "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "color" | "luminosity";
|
|
23
|
+
export declare type CssBorderShorthand = CssGlobalValues | CssColor | CssLength | CssLineStyleSet | string;
|
|
24
|
+
export declare type CssBox = CssGlobalValues | string | "border-box" | "padding-box" | "content-box";
|
|
25
|
+
export declare type CssColor = CssNamedColor | CssGlobalValues | "currentColor" | string;
|
|
26
|
+
export declare type CssNamedColor = "aliceblue" | "antiquewhite" | "aqua" | "aquamarine" | "azure" | "beige" | "bisque" | "black" | "blanchedalmond" | "blue" | "blueviolet" | "brown" | "burlywood" | "cadetblue" | "chartreuse" | "chocolate" | "coral" | "cornflowerblue" | "cornsilk" | "crimson" | "cyan" | "darkblue" | "darkcyan" | "darkgoldenrod" | "darkgray" | "darkgreen" | "darkgrey" | "darkkhaki" | "darkmagenta" | "darkolivegreen" | "darkorange" | "darkorchid" | "darkred" | "darksalmon" | "darkseagreen" | "darkslateblue" | "darkslategray" | "darkslategrey" | "darkturquoise" | "darkviolet" | "deeppink" | "deepskyblue" | "dimgray" | "dimgrey" | "dodgerblue" | "firebrick" | "floralwhite" | "forestgreen" | "fuchsia" | "gainsboro" | "ghostwhite" | "gold" | "goldenrod" | "gray" | "green" | "greenyellow" | "grey" | "honeydew" | "hotpink" | "indianred" | "indigo" | "ivory" | "khaki" | "lavender" | "lavenderblush" | "lawngreen" | "lemonchiffon" | "lightblue" | "lightcoral" | "lightcyan" | "lightgoldenrodyellow" | "lightgray" | "lightgreen" | "lightgrey" | "lightpink" | "lightsalmon" | "lightseagreen" | "lightskyblue" | "lightslategray" | "lightslategrey" | "lightsteelblue" | "lightyellow" | "lime" | "limegreen" | "linen" | "maroon" | "mediumaquamarine" | "mediumblue" | "mediumorchid" | "mediumpurple" | "mediumseagreen" | "mediumslateblue" | "mediumspringgreen" | "mediumturquoise" | "mediumvioletred" | "midnightblue" | "mintcream" | "mistyrose" | "moccasin" | "navajowhite" | "navy" | "oldlace" | "olive" | "olivedrab" | "orange" | "purple" | "rebeccapurple" | "red" | "silver" | "teal" | "transparent" | "white" | "yellow";
|
|
27
|
+
export declare type CssColorSet = string | CssColor;
|
|
28
|
+
export declare type CssDisplay = "" | "inherit" | "initial" | "block" | "inline" | "run-in" | "flow" | "flow-root" | "table" | "flex" | "grid" | "ruby" | "subgrid" | "block flow" | "inline table" | "flex run-in" | "list-item" | "list-item block" | "list-item inline" | "list-item flow" | "list-item flow-root" | "list-item block flow" | "list-item block flow-root" | "flow list-item block" | "table-row-group" | "table-header-group" | "table-footer-group" | "table-row" | "table-cell" | "table-column-group" | "table-column" | "table-caption" | "ruby-base" | "ruby-text" | "ruby-base-container" | "ruby-text-container" | "contents" | "none" | "inline-block" | "inline-list-item" | "inline-table" | "inline-flex" | "inline-grid";
|
|
29
|
+
export declare type CssBoxAlignmentBaselinePosition = "baseline" | "first baseline" | "last baseline";
|
|
30
|
+
export declare type CssBoxAlignmentContentDistribution = "space-between" | "space-around" | "space-evenly" | "stretch";
|
|
31
|
+
export declare type CssBoxAlignmentContentPositionWithOverflow = "center" | "start" | "end" | "flex-start" | "flex-end" | "unsafe center" | "unsafe start" | "unsafe end" | "unsafe flex-start" | "unsafe flex-end" | "safe center" | "safe start" | "safe end" | "safe flex-start" | "safe flex-end";
|
|
32
|
+
export declare type CssBoxAlignmentSelfPositionWithOverflow = "center" | "start" | "end" | "self-start" | "self-end" | "flex-start" | "flex-end" | "unsafe center" | "unsafe start" | "unsafe end" | "unsafe self-start" | "unsafe self-end" | "unsafe flex-start" | "unsafe flex-end" | "safe center" | "safe start" | "safe end" | "safe self-start" | "safe self-end" | "safe flex-start" | "safe flex-end";
|
|
33
|
+
export declare type CssBoxAlignmentLeftRightWithOverflow = "left" | "right" | "unsafe left" | "unsafe right" | "safe left" | "safe right";
|
|
34
|
+
export declare type JustifyContent = "normal" | CssBoxAlignmentContentDistribution | CssBoxAlignmentContentPositionWithOverflow | "left" | "right";
|
|
35
|
+
export declare type AlignContent = "normal" | CssBoxAlignmentBaselinePosition | CssBoxAlignmentContentDistribution | CssBoxAlignmentContentPositionWithOverflow;
|
|
36
|
+
export declare type JustifyItems = "normal" | "stretch" | CssBoxAlignmentBaselinePosition | CssBoxAlignmentSelfPositionWithOverflow | "left" | "right" | "center" | "legacy left" | "legacy right" | "legacy center";
|
|
37
|
+
export declare type AlignItems = "normal" | "stretch" | CssBoxAlignmentBaselinePosition | CssBoxAlignmentSelfPositionWithOverflow;
|
|
38
|
+
export declare type JustifySelf = "auto" | "normal" | "stretch" | CssBoxAlignmentBaselinePosition | CssBoxAlignmentSelfPositionWithOverflow | CssBoxAlignmentLeftRightWithOverflow;
|
|
39
|
+
export declare type AlignSelf = "auto" | "normal" | "stretch" | CssBoxAlignmentBaselinePosition | CssBoxAlignmentSelfPositionWithOverflow;
|
|
40
|
+
export declare type CssGradient = CssGlobalValues | string;
|
|
41
|
+
export declare type CssFontSize = CssGlobalValues | CssLength | CssPercentage | CssAbsoluteSize | CssRelativeSize;
|
|
42
|
+
export declare type CssImage = CssGlobalValues | string | CssGradient | CssUrl;
|
|
43
|
+
export declare type CssLength = CssGlobalValues | string | number;
|
|
44
|
+
export declare type CssLineStyle = string | "none" | "hidden" | "dotted" | "dashed" | "solid" | "double" | "groove" | "ridge" | "inset" | "outset";
|
|
45
|
+
export declare type CssLineStyleSet = string | CssLineStyle;
|
|
46
|
+
export declare type CssObjectFit = "fill" | "contain" | "cover" | "none" | "scale-down" | CssGlobalValues;
|
|
47
|
+
export declare type CssOverflow = "visible" | "hidden" | "scroll" | "clip" | "auto";
|
|
48
|
+
export declare type CssPercentage = CssGlobalValues | string | 0;
|
|
49
|
+
export declare type CssPosition = CssAngle | string;
|
|
50
|
+
export declare type CssRelativeSize = "larger" | "smaller";
|
|
51
|
+
export declare type CssRepeatStyle = "repeat-x" | "repeat-y" | "repeat" | "space" | "round" | "no-repeat" | "repeat repeat" | "repeat space" | "repeat round" | "repeat no-repeat" | "space repeat" | "space space" | "space round" | "space no-repeat" | "round repeat" | "round space" | "round round" | "round no-repeat" | "no-repeat repeat" | "no-repeat space" | "no-repeat round" | "no-repeat no-repeat";
|
|
52
|
+
export declare type CssTransformFunction = string | "none";
|
|
53
|
+
export declare type CssSideOrCorner = CssAngle | "left" | "right" | "top" | "bottom" | "to left" | "to right" | "to top" | "to bottom" | "left top" | "right top" | "left bottom" | "right bottom" | "top left" | "top right" | "bottom left" | "bottom right" | "to left top" | "to right top" | "to left bottom" | "to right bottom" | "to top left" | "to top right" | "to bottom left" | "to bottom right";
|
|
54
|
+
export declare type CssRadialGradientEndingShape = "circle" | "ellipse";
|
|
55
|
+
export declare type CssRadialGradientSize = CssLength | Array<CssLength> | "closest-side" | "farthest-side" | "closest-corner" | "closest-side";
|
|
56
|
+
export declare type CssTimingFunction = string | CssGlobalValues | "ease" | "ease-in" | "ease-out" | "ease-in-out" | "linear" | "step-start" | "step-end";
|
|
57
|
+
export declare type CssUrl = string;
|
|
58
|
+
export declare type CssFontWeight = "normal" | "bold" | "bolder" | "lighter" | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | number | CssGlobalValues;
|
|
59
|
+
export declare type AlignmentBaseline = "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "inherit";
|
|
60
|
+
export declare type AnimationDirection = "normal" | "alternate" | "reverse" | "alternate-reverse";
|
|
61
|
+
export declare type AnimationFillMode = "none" | "forwards" | "backwards" | "both";
|
|
62
|
+
export declare type BackgroundAttachment = "scroll" | "fixed" | "local";
|
|
63
|
+
export declare type BackgroundSize = "auto" | "cover" | "contain";
|
|
64
|
+
export declare type BreakAfter = "auto" | "avoid" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region";
|
|
65
|
+
export declare type BreakBefore = "auto" | "avoid" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region";
|
|
66
|
+
export declare type BreakInside = "auto" | "avoid" | "avoid-page" | "avoid-column" | "avoid-region";
|
|
67
|
+
export declare type CaptionSide = CssGlobalValues | "top" | "bottom" | "block-start" | "block-end" | "inline-start" | "inline-end";
|
|
68
|
+
export declare type Cursor = CssValue<CssGlobalValues | string | "auto" | "default" | "none" | "context-menu" | "help" | "pointer" | "progress" | "wait" | "cell" | "crosshair" | "text" | "vertical-text" | "alias" | "copy" | "move" | "no-drop" | "not-allowed" | "e-resize" | "n-resize" | "ne-resize" | "nw-resize" | "s-resize" | "se-resize" | "sw-resize" | "w-resize" | "ew-resize" | "ns-resize" | "nesw-resize" | "nwse-resize" | "col-resize" | "row-resize" | "all-scroll" | "zoom-in" | "zoom-out" | "grab" | "grabbing">;
|
|
69
|
+
export declare type DominantBaseline = "auto" | "use-script" | "no-change" | "reset-size" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "central" | "middle" | "text-after-edge" | "text-before-edge" | "inherit";
|
|
70
|
+
export declare type FlexDirection = "row" | "row-reverse" | "column" | "column-reverse";
|
|
71
|
+
export declare type FlexWrap = CssGlobalValues | "nowrap" | "wrap" | "wrap-reverse";
|
|
72
|
+
export declare type FontStretch = CssGlobalValues | "normal" | "ultra-condensed" | "extra-condensed" | "condensed" | "semi-condensed" | "semi-expanded" | "expanded" | "extra-expanded" | "ultra-expanded";
|
|
73
|
+
export declare type OutlineStyle = CssGlobalValues | "auto" | "none" | "dotted" | "dashed" | "solid" | "double" | "groove" | "ridge" | "inset" | "outset";
|
|
74
|
+
export declare type PageBreakAfter = CssGlobalValues | "auto" | "always" | "avoid" | "left" | "right" | "recto" | "verso";
|
|
75
|
+
export declare type PageBreakBefore = CssGlobalValues | "auto" | "always" | "avoid" | "left" | "right" | "recto" | "verso";
|
|
76
|
+
export declare type PointerEvents = CssGlobalValues | "auto" | "none" | "visiblePainted" | "visibleFill" | "visibleStroke" | "visible" | "painted" | "fill" | "stroke" | "all";
|
|
77
|
+
export declare type PositionX = CssValue<CssGlobalValues | "static" | "relative" | "absolute" | "sticky" | "-webkit-sticky" | "fixed">;
|
|
78
|
+
export declare type TextAlign = CssGlobalValues | "start" | "end" | "left" | "right" | "center" | "justify" | "justify-all" | "match-parent";
|
|
79
|
+
export declare type TextAlignLast = CssGlobalValues | "auto" | "start" | "end" | "left" | "right" | "center" | "justify";
|
|
80
|
+
export declare type TextTransform = CssGlobalValues | "none" | "capitalize" | "uppercase" | "lowercase" | "full-width";
|
|
81
|
+
export declare type TouchAction = CssGlobalValues | "auto" | "none" | "pan-x" | "pan-left" | "pan-right" | "pan-y" | "pan-up" | "pan-down" | "manipulation";
|
|
82
|
+
export declare type VerticalAlign = CssGlobalValues | "baseline" | "sub" | "super" | "text-top" | "text-bottom" | "middle" | "top" | "bottom" | CssLength | CssPercentage;
|
|
83
|
+
export declare type WritingMode = CssGlobalValues | "horizontal-tb" | "vertical-rl" | "vertical-lr" | "sideways-rl" | "sideways-lr";
|
|
84
|
+
export declare type CssStyleName = "alignContent" | "alignItems";
|
|
85
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export declare const userAgent: {
|
|
2
|
+
browser: {
|
|
3
|
+
isEdgeHtml: boolean;
|
|
4
|
+
isEdgeChromium: boolean;
|
|
5
|
+
isInternetExplorer: boolean;
|
|
6
|
+
isChrome: boolean;
|
|
7
|
+
isFirefox: boolean;
|
|
8
|
+
isAndroid: boolean;
|
|
9
|
+
};
|
|
10
|
+
os: {
|
|
11
|
+
isIos: boolean;
|
|
12
|
+
isAndroid: boolean;
|
|
13
|
+
isWindows: boolean;
|
|
14
|
+
version: string;
|
|
15
|
+
majorVersion: number;
|
|
16
|
+
};
|
|
17
|
+
device: {
|
|
18
|
+
type: string;
|
|
19
|
+
isMobile: boolean;
|
|
20
|
+
isTablet: boolean;
|
|
21
|
+
isSmartTv: boolean;
|
|
22
|
+
supportsMouseEvents: boolean;
|
|
23
|
+
supportsTouchEvents: boolean;
|
|
24
|
+
};
|
|
25
|
+
engine: {
|
|
26
|
+
isWebkit: boolean;
|
|
27
|
+
isBlink: boolean;
|
|
28
|
+
isGecko: boolean;
|
|
29
|
+
isTrident: boolean;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.userAgent = void 0;
|
|
4
|
+
const ua_parser_js_1 = require("ua-parser-js");
|
|
5
|
+
const parser = new ua_parser_js_1.UAParser();
|
|
6
|
+
const result = parser.getResult();
|
|
7
|
+
function supportsTouchEvents() {
|
|
8
|
+
if (("ontouchstart" in window)) {
|
|
9
|
+
return true;
|
|
10
|
+
}
|
|
11
|
+
const prefixes = " -webkit- -moz- -o- -ms- ".split(" ");
|
|
12
|
+
const mq = (query) => window.matchMedia(query).matches;
|
|
13
|
+
const queryString = ["(", prefixes.join("touch-enabled),("), "heartz", ")"].join("");
|
|
14
|
+
return mq(queryString);
|
|
15
|
+
}
|
|
16
|
+
function supportsMouseEvents() {
|
|
17
|
+
return matchMedia('(pointer:fine)').matches || !!window.MouseEvent;
|
|
18
|
+
}
|
|
19
|
+
exports.userAgent = {
|
|
20
|
+
browser: {
|
|
21
|
+
isEdgeHtml: result.browser.name === "Edge",
|
|
22
|
+
isEdgeChromium: result.browser.name === "Edg",
|
|
23
|
+
isInternetExplorer: result.browser.name === "IE",
|
|
24
|
+
isChrome: result.browser.name === "Chrome",
|
|
25
|
+
isFirefox: result.browser.name === "Firefox",
|
|
26
|
+
isAndroid: result.browser.name === "Android Browser"
|
|
27
|
+
},
|
|
28
|
+
os: {
|
|
29
|
+
isIos: result.os.name === "iOS",
|
|
30
|
+
isAndroid: result.os.name === "Android",
|
|
31
|
+
isWindows: result.os.name === "Windows",
|
|
32
|
+
version: result.os.version,
|
|
33
|
+
majorVersion: Number(result.os.version.substring(0, 2))
|
|
34
|
+
},
|
|
35
|
+
device: {
|
|
36
|
+
type: result.device.type,
|
|
37
|
+
isMobile: result.device.type === "mobile",
|
|
38
|
+
isTablet: result.device.type === "tablet",
|
|
39
|
+
isSmartTv: result.device.type === "smarttv",
|
|
40
|
+
supportsMouseEvents: supportsMouseEvents(),
|
|
41
|
+
supportsTouchEvents: supportsTouchEvents()
|
|
42
|
+
},
|
|
43
|
+
engine: {
|
|
44
|
+
isWebkit: result.engine.name === "WebKit",
|
|
45
|
+
isBlink: result.engine.name === "Blink",
|
|
46
|
+
isGecko: result.engine.name === "Gecko",
|
|
47
|
+
isTrident: result.engine.name === "Trident"
|
|
48
|
+
}
|
|
49
|
+
};
|
|
50
|
+
//# sourceMappingURL=userAgent.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"userAgent.js","sourceRoot":"","sources":["../../src/userAgent.ts"],"names":[],"mappings":";;;AAAA,+CAAwC;AAExC,MAAM,MAAM,GAAG,IAAI,uBAAQ,EAAE,CAAC;AAC9B,MAAM,MAAM,GAAG,MAAM,CAAC,SAAS,EAAE,CAAC;AAElC,SAAS,mBAAmB;IACxB,IAAI,CAAC,cAAc,IAAI,MAAM,CAAC,EAAE;QAC5B,OAAO,IAAI,CAAC;KACf;IAED,MAAM,QAAQ,GAAG,2BAA2B,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IACxD,MAAM,EAAE,GAAG,CAAC,KAAK,EAAE,EAAE,CAAC,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC;IACvD,MAAM,WAAW,GAAG,CAAC,GAAG,EAAE,QAAQ,CAAC,IAAI,CAAC,kBAAkB,CAAC,EAAE,QAAQ,EAAE,GAAG,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACrF,OAAO,EAAE,CAAC,WAAW,CAAC,CAAC;AAC3B,CAAC;AAED,SAAS,mBAAmB;IACxB,OAAO,UAAU,CAAC,gBAAgB,CAAC,CAAC,OAAO,IAAI,CAAC,CAAC,MAAM,CAAC,UAAU,CAAC;AACvE,CAAC;AAEY,QAAA,SAAS,GAAG;IACrB,OAAO,EAAE;QACL,UAAU,EAAE,MAAM,CAAC,OAAO,CAAC,IAAI,KAAK,MAAM;QAC1C,cAAc,EAAE,MAAM,CAAC,OAAO,CAAC,IAAI,KAAK,KAAK;QAC7C,kBAAkB,EAAE,MAAM,CAAC,OAAO,CAAC,IAAI,KAAK,IAAI;QAChD,QAAQ,EAAE,MAAM,CAAC,OAAO,CAAC,IAAI,KAAK,QAAQ;QAC1C,SAAS,EAAE,MAAM,CAAC,OAAO,CAAC,IAAI,KAAK,SAAS;QAC5C,SAAS,EAAE,MAAM,CAAC,OAAO,CAAC,IAAI,KAAK,iBAAiB;KACvD;IACD,EAAE,EAAE;QACA,KAAK,EAAE,MAAM,CAAC,EAAE,CAAC,IAAI,KAAK,KAAK;QAC/B,SAAS,EAAE,MAAM,CAAC,EAAE,CAAC,IAAI,KAAK,SAAS;QACvC,SAAS,EAAE,MAAM,CAAC,EAAE,CAAC,IAAI,KAAK,SAAS;QACvC,OAAO,EAAE,MAAM,CAAC,EAAE,CAAC,OAAO;QAC1B,YAAY,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;KAC1D;IACD,MAAM,EAAE;QACJ,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,IAAI;QACxB,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,IAAI,KAAK,QAAQ;QACzC,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,IAAI,KAAK,QAAQ;QACzC,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,IAAI,KAAK,SAAS;QAC3C,mBAAmB,EAAE,mBAAmB,EAAE;QAC1C,mBAAmB,EAAE,mBAAmB,EAAE;KAC7C;IACD,MAAM,EAAE;QACJ,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,IAAI,KAAK,QAAQ;QACzC,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,IAAI,KAAK,OAAO;QACvC,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,IAAI,KAAK,OAAO;QACvC,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,IAAI,KAAK,SAAS;KAC9C;CACJ,CAAA"}
|