querysub 0.437.0 → 0.438.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.
Files changed (73) hide show
  1. package/.eslintrc.js +50 -50
  2. package/bin/deploy.js +0 -0
  3. package/bin/function.js +0 -0
  4. package/bin/server.js +0 -0
  5. package/costsBenefits.txt +115 -115
  6. package/deploy.ts +2 -2
  7. package/package.json +1 -1
  8. package/spec.txt +1192 -1192
  9. package/src/-a-archives/archives.ts +202 -202
  10. package/src/-a-archives/archivesDisk.ts +454 -454
  11. package/src/-a-auth/certs.ts +540 -540
  12. package/src/-a-auth/node-forge-ed25519.d.ts +16 -16
  13. package/src/-b-authorities/dnsAuthority.ts +138 -138
  14. package/src/-c-identity/IdentityController.ts +258 -258
  15. package/src/-d-trust/NetworkTrust2.ts +180 -180
  16. package/src/-e-certs/EdgeCertController.ts +252 -252
  17. package/src/-e-certs/certAuthority.ts +201 -201
  18. package/src/-f-node-discovery/NodeDiscovery.ts +640 -640
  19. package/src/-g-core-values/NodeCapabilities.ts +200 -200
  20. package/src/-h-path-value-serialize/stringSerializer.ts +175 -175
  21. package/src/0-path-value-core/PathValueCommitter.ts +468 -468
  22. package/src/0-path-value-core/PathValueController.ts +0 -2
  23. package/src/2-proxy/PathValueProxyWatcher.ts +2542 -2542
  24. package/src/2-proxy/TransactionDelayer.ts +94 -94
  25. package/src/2-proxy/pathDatabaseProxyBase.ts +36 -36
  26. package/src/2-proxy/pathValueProxy.ts +159 -159
  27. package/src/3-path-functions/PathFunctionRunnerMain.ts +87 -87
  28. package/src/3-path-functions/pathFunctionLoader.ts +516 -516
  29. package/src/3-path-functions/tests/rejectTest.ts +76 -76
  30. package/src/4-deploy/deployCheck.ts +6 -6
  31. package/src/4-dom/css.tsx +29 -29
  32. package/src/4-dom/cssTypes.d.ts +211 -211
  33. package/src/4-dom/qreact.tsx +2799 -2799
  34. package/src/4-dom/qreactTest.tsx +410 -410
  35. package/src/4-querysub/permissions.ts +335 -335
  36. package/src/4-querysub/querysubPrediction.ts +483 -483
  37. package/src/5-diagnostics/qreactDebug.tsx +377 -346
  38. package/src/TestController.ts +34 -34
  39. package/src/bits.ts +104 -104
  40. package/src/buffers.ts +69 -69
  41. package/src/diagnostics/ActionsHistory.ts +57 -57
  42. package/src/diagnostics/listenOnDebugger.ts +71 -71
  43. package/src/diagnostics/periodic.ts +111 -111
  44. package/src/diagnostics/trackResources.ts +91 -91
  45. package/src/diagnostics/watchdog.ts +120 -120
  46. package/src/errors.ts +133 -133
  47. package/src/forceProduction.ts +2 -2
  48. package/src/fs.ts +80 -80
  49. package/src/functional/diff.ts +857 -857
  50. package/src/functional/promiseCache.ts +78 -78
  51. package/src/functional/random.ts +8 -8
  52. package/src/functional/stats.ts +60 -60
  53. package/src/heapDumps.ts +665 -665
  54. package/src/https.ts +1 -1
  55. package/src/library-components/AspectSizedComponent.tsx +87 -87
  56. package/src/library-components/ButtonSelector.tsx +64 -64
  57. package/src/library-components/DropdownCustom.tsx +150 -150
  58. package/src/library-components/DropdownSelector.tsx +31 -31
  59. package/src/library-components/InlinePopup.tsx +66 -66
  60. package/src/misc/color.ts +29 -29
  61. package/src/misc/hash.ts +83 -83
  62. package/src/misc/ipPong.js +13 -13
  63. package/src/misc/networking.ts +1 -1
  64. package/src/misc/random.ts +44 -44
  65. package/src/misc.ts +196 -196
  66. package/src/path.ts +255 -255
  67. package/src/persistentLocalStore.ts +41 -41
  68. package/src/promise.ts +14 -14
  69. package/src/storage/fileSystemPointer.ts +71 -71
  70. package/src/test/heapProcess.ts +35 -35
  71. package/src/zip.ts +15 -15
  72. package/tsconfig.json +26 -26
  73. package/yarnSpec.txt +56 -56
@@ -1,212 +1,212 @@
1
-
2
- export type Length = number | `${number}px` | `${number}%` | `${number}em` | `${number}rem` | `${number}vh` | `${number}vw` | `${number}vmin` | `${number}vmax` | `${number}ex` | `${number}ch` | `${number}cm` | `${number}mm` | `${number}in` | `${number}pt` | `${number}pc`;
3
- export type LengthOrPercentage = Length | `${number}%`;
4
- export type LengthOrPercentageOrAuto = Length | `${number}%` | "auto";
5
- export type Rotate = `${number}deg` | `${number}grad` | `${number}rad` | `${number}turn`;
6
- export type StrictStyles = {
7
- display?: "block" | "inline" | "inline-block" | "flex" | "inline-flex" | "grid" | "inline-grid" | "none" | "contents" | "flow-root" | "table" | "table-row-group" | "table-header-group" | "table-footer-group" | "table-row" | "table-cell" | "table-column-group" | "table-column" | "table-caption";
8
- flexDirection?: "row" | "row-reverse" | "column" | "column-reverse";
9
- justifyContent?: "start" | "end" | "left" | "right" | "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
10
- alignItems?: "start" | "end" | "self-start" | "self-end" | "flex-start" | "flex-end" | "center" | "baseline" | "stretch";
11
- alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch";
12
- flexWrap?: "nowrap" | "wrap" | "wrap-reverse";
13
- flexGrow?: number;
14
- flexShrink?: number;
15
- flexBasis?: string | number; // Generally a length value (e.g., "0%", "50px", "auto")
16
- order?: number;
17
- alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "baseline" | "stretch" | "start" | "end";
18
- position?: "static" | "relative" | "fixed" | "absolute" | "sticky";
19
- top?: LengthOrPercentage; // Length values or percentages
20
- right?: LengthOrPercentage; // Length values or percentages
21
- bottom?: LengthOrPercentage; // Length values or percentages
22
- left?: LengthOrPercentage; // Length values or percentages
23
- width?: LengthOrPercentageOrAuto; // Length values, percentages, or "auto"
24
- height?: LengthOrPercentageOrAuto; // Length values, percentages, or "auto"
25
- minWidth?: LengthOrPercentage; // Length values or percentages
26
- minHeight?: LengthOrPercentage; // Length values or percentages
27
- maxWidth?: LengthOrPercentage; // Length values or percentages
28
- maxHeight?: LengthOrPercentage; // Length values or percentages
29
- margin?: LengthOrPercentageOrAuto; // Length values, percentages, or "auto"
30
- padding?: LengthOrPercentage; // Length values or percentages
31
- paddingTop?: LengthOrPercentage; // Length values or percentages
32
- paddingRight?: LengthOrPercentage; // Length values or percentages
33
- paddingBottom?: LengthOrPercentage; // Length values or percentages
34
- paddingLeft?: LengthOrPercentage; // Length values or percentages
35
- marginTop?: LengthOrPercentage; // Length values or percentages
36
- marginRight?: LengthOrPercentage; // Length values or percentages
37
- marginBottom?: LengthOrPercentage; // Length values or percentages
38
- marginLeft?: LengthOrPercentage; // Length values or percentages
39
- backgroundColor?: string; // Color values
40
- color?: string; // Color values
41
- fontSize?: string | number; // Length values, percentages, or keyword sizes (e.g., "small", "medium", "large")
42
- fontFamily?: string;
43
- fontWeight?: "normal" | "bold" | "bolder" | "lighter" | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
44
- textAlign?: "left" | "right" | "center" | "justify" | "justify-all" | "start" | "end";
45
- textTransform?: "none" | "capitalize" | "uppercase" | "lowercase" | "full-width" | "full-size-kana";
46
- textDecoration?: "none" | "underline" | "overline" | "line-through";
47
- border?: string; // A shorthand property for border-width, border-style, and border-color
48
- borderRadius?: LengthOrPercentage; // Length values or percentages
49
- opacity?: number; // A number between 0 (fully transparent) and 1 (fully opaque)
50
- zIndex?: number;
51
- rotate?: Rotate;
52
-
53
- overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip";
54
- overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip";
55
- overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip";
56
- cursor?: "auto" | "default" | "none" | "context-menu" | "help" | "pointer" | "progress" | "wait" | "cell" | "crosshair" | "text" | "vertical-text" | "alias" | "copy" | "move" | "no-drop" | "not-allowed" | "grab" | "grabbing" | "all-scroll" | "col-resize" | "row-resize" | "n-resize" | "e-resize" | "s-resize" | "w-resize" | "ne-resize" | "nw-resize" | "se-resize" | "sw-resize" | "ew-resize" | "ns-resize" | "nesw-resize" | "nwse-resize" | "zoom-in" | "zoom-out";
57
- boxSizing?: "content-box" | "border-box";
58
- boxShadow?: string; // e.g., "10px 5px 5px black"
59
- transition?: string; // e.g., "all 0.3s ease-out"
60
- transform?: string; // e.g., "rotate(90deg)"
61
- background?: string; // Color values, gradients, images
62
- backgroundImage?: string; // URL or gradient
63
- backgroundPosition?: string; // e.g., "top left", "center center"
64
- backgroundSize?: string; // e.g., "cover", "contain", "50%"
65
- backgroundRepeat?: "repeat" | "repeat-x" | "repeat-y" | "no-repeat";
66
- backgroundAttachment?: "scroll" | "fixed" | "local";
67
- borderBottom?: string; // Border shorthand property
68
- borderLeft?: string; // Border shorthand property
69
- borderRight?: string; // Border shorthand property
70
- borderTop?: string; // Border shorthand property
71
- borderBottomColor?: string; // Color values
72
- borderLeftColor?: string; // Color values
73
- borderRightColor?: string; // Color values
74
- borderTopColor?: string; // Color values
75
- borderBottomStyle?: "none" | "hidden" | "dotted" | "dashed" | "solid" | "double" | "groove" | "ridge" | "inset" | "outset";
76
- borderLeftStyle?: "none" | "hidden" | "dotted" | "dashed" | "solid" | "double" | "groove" | "ridge" | "inset" | "outset";
77
- borderRightStyle?: "none" | "hidden" | "dotted" | "dashed" | "solid" | "double" | "groove" | "ridge" | "inset" | "outset";
78
- borderTopStyle?: "none" | "hidden" | "dotted" | "dashed" | "solid" | "double" | "groove" | "ridge" | "inset" | "outset";
79
- borderBottomWidth?: string | number; // Length values
80
- borderLeftWidth?: string | number; // Length values
81
- borderRightWidth?: string | number; // Length values
82
- borderTopWidth?: string | number; // Length values
83
- borderRadiusTopLeft?: LengthOrPercentage; // Length values or percentages
84
- borderRadiusTopRight?: LengthOrPercentage; // Length values or percentages
85
- borderRadiusBottomLeft?: LengthOrPercentage; // Length values or percentages
86
- borderRadiusBottomRight?: LengthOrPercentage; // Length values or percentages
87
- visibility?: "visible" | "hidden" | "collapse";
88
- whiteSpace?: "normal" | "nowrap" | "pre" | "pre-wrap" | "pre-line";
89
- letterSpacing?: string | number; // Length values
90
- lineHeight?: string; // Number, length values, or percentages
91
- textShadow?: string; // e.g., "1px 1px 2px black"
92
- verticalAlign?: "baseline" | "sub" | "super" | "text-top" | "text-bottom" | "middle" | "top" | "bottom";
93
- listStyle?: string; // e.g., "square inside"
94
- listStyleType?: "disc" | "circle" | "square" | "decimal" | "lower-roman" | "upper-roman" | "lower-greek" | "lower-latin" | "upper-latin" | "armenian" | "georgian" | "lower-alpha" | "upper-alpha" | "none";
95
- listStylePosition?: "inside" | "outside";
96
- listStyleImage?: string; // URL of an image or "none"
97
- tableLayout?: "auto" | "fixed";
98
- borderCollapse?: "collapse" | "separate";
99
- borderSpacing?: string; // e.g., "5px", "10px 15px"
100
- captionSide?: "top" | "bottom";
101
- emptyCells?: "show" | "hide";
102
- backfaceVisibility?: "visible" | "hidden";
103
- perspective?: string | number; // Length values
104
- perspectiveOrigin?: string; // Percentage or length values
105
- transformOrigin?: string; // e.g., "left top", "50% 50%", "100px 100px"
106
- transformStyle?: "flat" | "preserve-3d";
107
- clip?: string; // Deprecated, but sometimes used, e.g., "rect(1px, 1px, 1px, 1px)"
108
- clipPath?: string; // e.g., "circle(50%)", "url(#myClip)"
109
- filter?: string; // e.g., "blur(5px)", "brightness(0.4)"
110
- backdropFilter?: string; // e.g., "blur(5px)", "brightness(0.4)"
111
- gridTemplateColumns?: string; // e.g., "auto 1fr auto", "repeat(3, 1fr)"
112
- gridTemplateRows?: string; // e.g., "auto 1fr auto", "repeat(3, 1fr)"
113
- gridColumnGap?: string | number; // Length values
114
- gridRowGap?: string | number; // Length values
115
- gridColumnStart?: string; // e.g., "1", "2", "span 2"
116
- gridColumnEnd?: string; // e.g., "1", "2", "span 2"
117
- gridRowStart?: string; // e.g., "1", "2", "span 2"
118
- gridRowEnd?: string; // e.g., "1", "2", "span 2"
119
- gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense";
120
- gridAutoColumns?: string; // e.g., "auto", "minmax(100px, auto)"
121
- gridAutoRows?: string; // e.g., "auto", "minmax(100px, auto)"
122
- gap?: string | number; // e.g., "10px", "10px 20px"
123
- rowGap?: string | number; // e.g., "10px", "10px 20px"
124
- columnGap?: string | number; // e.g., "10px", "10px 20px"
125
- justifyContentSelf?: "start" | "end" | "center" | "stretch" | "self-start" | "self-end";
126
- alignContentSelf?: "start" | "end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly" | "baseline";
127
- placeContent?: string; // Combination of align-content and justify-content values
128
- placeItems?: string; // Combination of align-items and justify-items values
129
- placeSelf?: string; // Combination of align-self and justify-self values
130
- writingMode?: "horizontal-tb" | "vertical-rl" | "vertical-lr";
131
- textOrientation?: "mixed" | "upright" | "sideways";
132
- textOverflow?: "clip" | "ellipsis";
133
- unicodeBidi?: "normal" | "embed" | "bidi-override" | "isolate" | "isolate-override" | "plaintext";
134
- userSelect?: "none" | "auto" | "text" | "contain" | "all";
135
- pointerEvents?: "auto" | "none" | "visiblePainted" | "visibleFill" | "visibleStroke" | "visible" | "painted" | "fill" | "stroke" | "all";
136
- resize?: "none" | "both" | "horizontal" | "vertical" | "block" | "inline";
137
- scrollBehavior?: "auto" | "smooth";
138
- willChange?: string; // e.g., "opacity", "transform"
139
- gridColumn?: string; // e.g., "1 / span 2", "1 / 3"
140
- gridRow?: string; // e.g., "1 / span 2", "1 / 3"
141
- gridArea?: string; // e.g., "1 / col4-start / last-line / 6"
142
- columnCount?: number | "auto";
143
- columnFill?: "auto" | "balance";
144
- columnGap?: string | number; // Length values or "normal"
145
- columnRule?: string; // A shorthand property for column-rule-width, column-rule-style, and column-rule-color
146
- columnRuleColor?: string; // Color values
147
- columnRuleStyle?: "none" | "hidden" | "dotted" | "dashed" | "solid" | "double" | "groove" | "ridge" | "inset" | "outset";
148
- columnRuleWidth?: string | number; // Length values
149
- columnSpan?: "none" | "all";
150
- columnWidth?: string | "auto"; // Length values
151
- columns?: string; // A shorthand property for column-width and column-count
152
- flexFlow?: string; // A shorthand property for flex-direction and flex-wrap
153
- orphans?: number;
154
- widows?: number;
155
- animation?: string; // e.g., "slidein 3s ease-in 1s infinite reverse both paused"
156
- animationDelay?: string; // e.g., "1s", "100ms"
157
- animationDirection?: "normal" | "reverse" | "alternate" | "alternate-reverse";
158
- animationDuration?: string; // e.g., "3s", "200ms"
159
- animationFillMode?: "none" | "forwards" | "backwards" | "both";
160
- animationIterationCount?: number | "infinite";
161
- animationName?: string; // e.g., "slidein", "fadeIn"
162
- animationPlayState?: "paused" | "running";
163
- animationTimingFunction?: "linear" | "ease" | "ease-in" | "ease-out" | "ease-in-out" | "step-start" | "step-end" | string; // Custom timing function
164
- backgroundClip?: "border-box" | "padding-box" | "content-box" | "text";
165
- backgroundOrigin?: "padding-box" | "border-box" | "content-box";
166
- blockSize?: LengthOrPercentage; // Length values or percentages
167
- borderImage?: string; // e.g., "url(border.png) 30 round"
168
- borderImageOutset?: string; // e.g., "30px"
169
- borderImageRepeat?: "stretch" | "repeat" | "round" | "space";
170
- borderImageSlice?: string; // e.g., "30%"
171
- borderImageSource?: string; // e.g., "url(border.png)"
172
- borderImageWidth?: string; // e.g., "10px", "1em", "30%"
173
- borderWidth?: string | number; // Length values
174
- boxDecorationBreak?: "slice" | "clone";
175
- breakAfter?: "auto" | "avoid" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso";
176
- breakBefore?: "auto" | "avoid" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso";
177
- breakInside?: "auto" | "avoid" | "avoid-page" | "avoid-column" | "avoid-region";
178
- caretColor?: string; // Color values or "auto"
179
- clear?: "none" | "left" | "right" | "both";
180
- // Existing definitions...
181
- // Further properties
182
- clipRule?: "nonzero" | "evenodd";
183
- colorAdjust?: "economy" | "exact";
184
- contain?: "none" | "strict" | "content" | "size" | "layout" | "style" | "paint";
185
- content?: string; // e.g., "'Hello'", "attr(data-name)"
186
- counterIncrement?: string; // e.g., "section"
187
- counterReset?: string; // e.g., "section"
188
- counterSet?: string; // e.g., "item 1", "section"
189
- direction?: "ltr" | "rtl";
190
- dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging" | "text-top";
191
- fill?: string; // Color values or "none"
192
- fillOpacity?: number; // From 0 to 1
193
- fillRule?: "nonzero" | "evenodd";
194
- flex?: string; // e.g., "1 1 auto", "0 1 auto"
195
- float?: "left" | "right" | "none" | "inline-start" | "inline-end";
196
- floodColor?: string; // Color values
197
- floodOpacity?: number; // From 0 to 1
198
- font?: string; // e.g., "12px/14px Arial, sans-serif"
199
- fontFeatureSettings?: string; // e.g., "'liga' 1", "'frac' 0"
200
- fontKerning?: "auto" | "normal" | "none";
201
- fontLanguageOverride?: string;
202
- fontSizeAdjust?: string | "none";
203
- fontStretch?: "normal" | "condensed" | "semi-condensed" | "extra-condensed" | "expanded" | "semi-expanded" | "extra-expanded";
204
- fontStyle?: "normal" | "italic" | "oblique";
205
- fontSynthesis?: "none" | "weight" | "style";
206
- fontVariant?: string; // e.g., "small-caps", "oldstyle-nums"
207
- fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps";
208
- objectFit?: "fill" | "contain" | "cover" | "none" | "scale-down";
209
- // top | center | bottom | left | right | "25% 75%"
210
- objectPosition?: string;
211
- outline?: string; // A shorthand property for outline-width, outline-style, and outline-color
1
+
2
+ export type Length = number | `${number}px` | `${number}%` | `${number}em` | `${number}rem` | `${number}vh` | `${number}vw` | `${number}vmin` | `${number}vmax` | `${number}ex` | `${number}ch` | `${number}cm` | `${number}mm` | `${number}in` | `${number}pt` | `${number}pc`;
3
+ export type LengthOrPercentage = Length | `${number}%`;
4
+ export type LengthOrPercentageOrAuto = Length | `${number}%` | "auto";
5
+ export type Rotate = `${number}deg` | `${number}grad` | `${number}rad` | `${number}turn`;
6
+ export type StrictStyles = {
7
+ display?: "block" | "inline" | "inline-block" | "flex" | "inline-flex" | "grid" | "inline-grid" | "none" | "contents" | "flow-root" | "table" | "table-row-group" | "table-header-group" | "table-footer-group" | "table-row" | "table-cell" | "table-column-group" | "table-column" | "table-caption";
8
+ flexDirection?: "row" | "row-reverse" | "column" | "column-reverse";
9
+ justifyContent?: "start" | "end" | "left" | "right" | "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly";
10
+ alignItems?: "start" | "end" | "self-start" | "self-end" | "flex-start" | "flex-end" | "center" | "baseline" | "stretch";
11
+ alignContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "stretch";
12
+ flexWrap?: "nowrap" | "wrap" | "wrap-reverse";
13
+ flexGrow?: number;
14
+ flexShrink?: number;
15
+ flexBasis?: string | number; // Generally a length value (e.g., "0%", "50px", "auto")
16
+ order?: number;
17
+ alignSelf?: "auto" | "flex-start" | "flex-end" | "center" | "baseline" | "stretch" | "start" | "end";
18
+ position?: "static" | "relative" | "fixed" | "absolute" | "sticky";
19
+ top?: LengthOrPercentage; // Length values or percentages
20
+ right?: LengthOrPercentage; // Length values or percentages
21
+ bottom?: LengthOrPercentage; // Length values or percentages
22
+ left?: LengthOrPercentage; // Length values or percentages
23
+ width?: LengthOrPercentageOrAuto; // Length values, percentages, or "auto"
24
+ height?: LengthOrPercentageOrAuto; // Length values, percentages, or "auto"
25
+ minWidth?: LengthOrPercentage; // Length values or percentages
26
+ minHeight?: LengthOrPercentage; // Length values or percentages
27
+ maxWidth?: LengthOrPercentage; // Length values or percentages
28
+ maxHeight?: LengthOrPercentage; // Length values or percentages
29
+ margin?: LengthOrPercentageOrAuto; // Length values, percentages, or "auto"
30
+ padding?: LengthOrPercentage; // Length values or percentages
31
+ paddingTop?: LengthOrPercentage; // Length values or percentages
32
+ paddingRight?: LengthOrPercentage; // Length values or percentages
33
+ paddingBottom?: LengthOrPercentage; // Length values or percentages
34
+ paddingLeft?: LengthOrPercentage; // Length values or percentages
35
+ marginTop?: LengthOrPercentage; // Length values or percentages
36
+ marginRight?: LengthOrPercentage; // Length values or percentages
37
+ marginBottom?: LengthOrPercentage; // Length values or percentages
38
+ marginLeft?: LengthOrPercentage; // Length values or percentages
39
+ backgroundColor?: string; // Color values
40
+ color?: string; // Color values
41
+ fontSize?: string | number; // Length values, percentages, or keyword sizes (e.g., "small", "medium", "large")
42
+ fontFamily?: string;
43
+ fontWeight?: "normal" | "bold" | "bolder" | "lighter" | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
44
+ textAlign?: "left" | "right" | "center" | "justify" | "justify-all" | "start" | "end";
45
+ textTransform?: "none" | "capitalize" | "uppercase" | "lowercase" | "full-width" | "full-size-kana";
46
+ textDecoration?: "none" | "underline" | "overline" | "line-through";
47
+ border?: string; // A shorthand property for border-width, border-style, and border-color
48
+ borderRadius?: LengthOrPercentage; // Length values or percentages
49
+ opacity?: number; // A number between 0 (fully transparent) and 1 (fully opaque)
50
+ zIndex?: number;
51
+ rotate?: Rotate;
52
+
53
+ overflow?: "visible" | "hidden" | "scroll" | "auto" | "clip";
54
+ overflowX?: "visible" | "hidden" | "scroll" | "auto" | "clip";
55
+ overflowY?: "visible" | "hidden" | "scroll" | "auto" | "clip";
56
+ cursor?: "auto" | "default" | "none" | "context-menu" | "help" | "pointer" | "progress" | "wait" | "cell" | "crosshair" | "text" | "vertical-text" | "alias" | "copy" | "move" | "no-drop" | "not-allowed" | "grab" | "grabbing" | "all-scroll" | "col-resize" | "row-resize" | "n-resize" | "e-resize" | "s-resize" | "w-resize" | "ne-resize" | "nw-resize" | "se-resize" | "sw-resize" | "ew-resize" | "ns-resize" | "nesw-resize" | "nwse-resize" | "zoom-in" | "zoom-out";
57
+ boxSizing?: "content-box" | "border-box";
58
+ boxShadow?: string; // e.g., "10px 5px 5px black"
59
+ transition?: string; // e.g., "all 0.3s ease-out"
60
+ transform?: string; // e.g., "rotate(90deg)"
61
+ background?: string; // Color values, gradients, images
62
+ backgroundImage?: string; // URL or gradient
63
+ backgroundPosition?: string; // e.g., "top left", "center center"
64
+ backgroundSize?: string; // e.g., "cover", "contain", "50%"
65
+ backgroundRepeat?: "repeat" | "repeat-x" | "repeat-y" | "no-repeat";
66
+ backgroundAttachment?: "scroll" | "fixed" | "local";
67
+ borderBottom?: string; // Border shorthand property
68
+ borderLeft?: string; // Border shorthand property
69
+ borderRight?: string; // Border shorthand property
70
+ borderTop?: string; // Border shorthand property
71
+ borderBottomColor?: string; // Color values
72
+ borderLeftColor?: string; // Color values
73
+ borderRightColor?: string; // Color values
74
+ borderTopColor?: string; // Color values
75
+ borderBottomStyle?: "none" | "hidden" | "dotted" | "dashed" | "solid" | "double" | "groove" | "ridge" | "inset" | "outset";
76
+ borderLeftStyle?: "none" | "hidden" | "dotted" | "dashed" | "solid" | "double" | "groove" | "ridge" | "inset" | "outset";
77
+ borderRightStyle?: "none" | "hidden" | "dotted" | "dashed" | "solid" | "double" | "groove" | "ridge" | "inset" | "outset";
78
+ borderTopStyle?: "none" | "hidden" | "dotted" | "dashed" | "solid" | "double" | "groove" | "ridge" | "inset" | "outset";
79
+ borderBottomWidth?: string | number; // Length values
80
+ borderLeftWidth?: string | number; // Length values
81
+ borderRightWidth?: string | number; // Length values
82
+ borderTopWidth?: string | number; // Length values
83
+ borderRadiusTopLeft?: LengthOrPercentage; // Length values or percentages
84
+ borderRadiusTopRight?: LengthOrPercentage; // Length values or percentages
85
+ borderRadiusBottomLeft?: LengthOrPercentage; // Length values or percentages
86
+ borderRadiusBottomRight?: LengthOrPercentage; // Length values or percentages
87
+ visibility?: "visible" | "hidden" | "collapse";
88
+ whiteSpace?: "normal" | "nowrap" | "pre" | "pre-wrap" | "pre-line";
89
+ letterSpacing?: string | number; // Length values
90
+ lineHeight?: string; // Number, length values, or percentages
91
+ textShadow?: string; // e.g., "1px 1px 2px black"
92
+ verticalAlign?: "baseline" | "sub" | "super" | "text-top" | "text-bottom" | "middle" | "top" | "bottom";
93
+ listStyle?: string; // e.g., "square inside"
94
+ listStyleType?: "disc" | "circle" | "square" | "decimal" | "lower-roman" | "upper-roman" | "lower-greek" | "lower-latin" | "upper-latin" | "armenian" | "georgian" | "lower-alpha" | "upper-alpha" | "none";
95
+ listStylePosition?: "inside" | "outside";
96
+ listStyleImage?: string; // URL of an image or "none"
97
+ tableLayout?: "auto" | "fixed";
98
+ borderCollapse?: "collapse" | "separate";
99
+ borderSpacing?: string; // e.g., "5px", "10px 15px"
100
+ captionSide?: "top" | "bottom";
101
+ emptyCells?: "show" | "hide";
102
+ backfaceVisibility?: "visible" | "hidden";
103
+ perspective?: string | number; // Length values
104
+ perspectiveOrigin?: string; // Percentage or length values
105
+ transformOrigin?: string; // e.g., "left top", "50% 50%", "100px 100px"
106
+ transformStyle?: "flat" | "preserve-3d";
107
+ clip?: string; // Deprecated, but sometimes used, e.g., "rect(1px, 1px, 1px, 1px)"
108
+ clipPath?: string; // e.g., "circle(50%)", "url(#myClip)"
109
+ filter?: string; // e.g., "blur(5px)", "brightness(0.4)"
110
+ backdropFilter?: string; // e.g., "blur(5px)", "brightness(0.4)"
111
+ gridTemplateColumns?: string; // e.g., "auto 1fr auto", "repeat(3, 1fr)"
112
+ gridTemplateRows?: string; // e.g., "auto 1fr auto", "repeat(3, 1fr)"
113
+ gridColumnGap?: string | number; // Length values
114
+ gridRowGap?: string | number; // Length values
115
+ gridColumnStart?: string; // e.g., "1", "2", "span 2"
116
+ gridColumnEnd?: string; // e.g., "1", "2", "span 2"
117
+ gridRowStart?: string; // e.g., "1", "2", "span 2"
118
+ gridRowEnd?: string; // e.g., "1", "2", "span 2"
119
+ gridAutoFlow?: "row" | "column" | "dense" | "row dense" | "column dense";
120
+ gridAutoColumns?: string; // e.g., "auto", "minmax(100px, auto)"
121
+ gridAutoRows?: string; // e.g., "auto", "minmax(100px, auto)"
122
+ gap?: string | number; // e.g., "10px", "10px 20px"
123
+ rowGap?: string | number; // e.g., "10px", "10px 20px"
124
+ columnGap?: string | number; // e.g., "10px", "10px 20px"
125
+ justifyContentSelf?: "start" | "end" | "center" | "stretch" | "self-start" | "self-end";
126
+ alignContentSelf?: "start" | "end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly" | "baseline";
127
+ placeContent?: string; // Combination of align-content and justify-content values
128
+ placeItems?: string; // Combination of align-items and justify-items values
129
+ placeSelf?: string; // Combination of align-self and justify-self values
130
+ writingMode?: "horizontal-tb" | "vertical-rl" | "vertical-lr";
131
+ textOrientation?: "mixed" | "upright" | "sideways";
132
+ textOverflow?: "clip" | "ellipsis";
133
+ unicodeBidi?: "normal" | "embed" | "bidi-override" | "isolate" | "isolate-override" | "plaintext";
134
+ userSelect?: "none" | "auto" | "text" | "contain" | "all";
135
+ pointerEvents?: "auto" | "none" | "visiblePainted" | "visibleFill" | "visibleStroke" | "visible" | "painted" | "fill" | "stroke" | "all";
136
+ resize?: "none" | "both" | "horizontal" | "vertical" | "block" | "inline";
137
+ scrollBehavior?: "auto" | "smooth";
138
+ willChange?: string; // e.g., "opacity", "transform"
139
+ gridColumn?: string; // e.g., "1 / span 2", "1 / 3"
140
+ gridRow?: string; // e.g., "1 / span 2", "1 / 3"
141
+ gridArea?: string; // e.g., "1 / col4-start / last-line / 6"
142
+ columnCount?: number | "auto";
143
+ columnFill?: "auto" | "balance";
144
+ columnGap?: string | number; // Length values or "normal"
145
+ columnRule?: string; // A shorthand property for column-rule-width, column-rule-style, and column-rule-color
146
+ columnRuleColor?: string; // Color values
147
+ columnRuleStyle?: "none" | "hidden" | "dotted" | "dashed" | "solid" | "double" | "groove" | "ridge" | "inset" | "outset";
148
+ columnRuleWidth?: string | number; // Length values
149
+ columnSpan?: "none" | "all";
150
+ columnWidth?: string | "auto"; // Length values
151
+ columns?: string; // A shorthand property for column-width and column-count
152
+ flexFlow?: string; // A shorthand property for flex-direction and flex-wrap
153
+ orphans?: number;
154
+ widows?: number;
155
+ animation?: string; // e.g., "slidein 3s ease-in 1s infinite reverse both paused"
156
+ animationDelay?: string; // e.g., "1s", "100ms"
157
+ animationDirection?: "normal" | "reverse" | "alternate" | "alternate-reverse";
158
+ animationDuration?: string; // e.g., "3s", "200ms"
159
+ animationFillMode?: "none" | "forwards" | "backwards" | "both";
160
+ animationIterationCount?: number | "infinite";
161
+ animationName?: string; // e.g., "slidein", "fadeIn"
162
+ animationPlayState?: "paused" | "running";
163
+ animationTimingFunction?: "linear" | "ease" | "ease-in" | "ease-out" | "ease-in-out" | "step-start" | "step-end" | string; // Custom timing function
164
+ backgroundClip?: "border-box" | "padding-box" | "content-box" | "text";
165
+ backgroundOrigin?: "padding-box" | "border-box" | "content-box";
166
+ blockSize?: LengthOrPercentage; // Length values or percentages
167
+ borderImage?: string; // e.g., "url(border.png) 30 round"
168
+ borderImageOutset?: string; // e.g., "30px"
169
+ borderImageRepeat?: "stretch" | "repeat" | "round" | "space";
170
+ borderImageSlice?: string; // e.g., "30%"
171
+ borderImageSource?: string; // e.g., "url(border.png)"
172
+ borderImageWidth?: string; // e.g., "10px", "1em", "30%"
173
+ borderWidth?: string | number; // Length values
174
+ boxDecorationBreak?: "slice" | "clone";
175
+ breakAfter?: "auto" | "avoid" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso";
176
+ breakBefore?: "auto" | "avoid" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso";
177
+ breakInside?: "auto" | "avoid" | "avoid-page" | "avoid-column" | "avoid-region";
178
+ caretColor?: string; // Color values or "auto"
179
+ clear?: "none" | "left" | "right" | "both";
180
+ // Existing definitions...
181
+ // Further properties
182
+ clipRule?: "nonzero" | "evenodd";
183
+ colorAdjust?: "economy" | "exact";
184
+ contain?: "none" | "strict" | "content" | "size" | "layout" | "style" | "paint";
185
+ content?: string; // e.g., "'Hello'", "attr(data-name)"
186
+ counterIncrement?: string; // e.g., "section"
187
+ counterReset?: string; // e.g., "section"
188
+ counterSet?: string; // e.g., "item 1", "section"
189
+ direction?: "ltr" | "rtl";
190
+ dominantBaseline?: "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging" | "text-top";
191
+ fill?: string; // Color values or "none"
192
+ fillOpacity?: number; // From 0 to 1
193
+ fillRule?: "nonzero" | "evenodd";
194
+ flex?: string; // e.g., "1 1 auto", "0 1 auto"
195
+ float?: "left" | "right" | "none" | "inline-start" | "inline-end";
196
+ floodColor?: string; // Color values
197
+ floodOpacity?: number; // From 0 to 1
198
+ font?: string; // e.g., "12px/14px Arial, sans-serif"
199
+ fontFeatureSettings?: string; // e.g., "'liga' 1", "'frac' 0"
200
+ fontKerning?: "auto" | "normal" | "none";
201
+ fontLanguageOverride?: string;
202
+ fontSizeAdjust?: string | "none";
203
+ fontStretch?: "normal" | "condensed" | "semi-condensed" | "extra-condensed" | "expanded" | "semi-expanded" | "extra-expanded";
204
+ fontStyle?: "normal" | "italic" | "oblique";
205
+ fontSynthesis?: "none" | "weight" | "style";
206
+ fontVariant?: string; // e.g., "small-caps", "oldstyle-nums"
207
+ fontVariantCaps?: "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps";
208
+ objectFit?: "fill" | "contain" | "cover" | "none" | "scale-down";
209
+ // top | center | bottom | left | right | "25% 75%"
210
+ objectPosition?: string;
211
+ outline?: string; // A shorthand property for outline-width, outline-style, and outline-color
212
212
  };