nuclo 0.1.57 → 0.1.59
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/core/conditionalRenderer.d.ts +2 -1
- package/dist/core/conditionalRenderer.d.ts.map +1 -1
- package/dist/core/conditionalUpdater.d.ts.map +1 -1
- package/dist/core/elementFactory.d.ts +8 -2
- package/dist/core/elementFactory.d.ts.map +1 -1
- package/dist/core/runtimeBootstrap.d.ts.map +1 -1
- package/dist/core/tagConstants.d.ts +4 -0
- package/dist/core/tagConstants.d.ts.map +1 -0
- package/dist/core/tagRegistry.d.ts +2 -3
- package/dist/core/tagRegistry.d.ts.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/internal/applyModifiers.d.ts +6 -3
- package/dist/internal/applyModifiers.d.ts.map +1 -1
- package/dist/nuclo.cjs +1 -1
- package/dist/nuclo.cjs.map +1 -1
- package/dist/nuclo.js +1 -1
- package/dist/nuclo.js.map +1 -1
- package/dist/nuclo.umd.js +1 -1
- package/dist/nuclo.umd.js.map +1 -1
- package/dist/style/cssPropertyTypes.d.ts +98 -0
- package/dist/style/cssPropertyTypes.d.ts.map +1 -0
- package/dist/style/styleBuilder.d.ts +293 -166
- package/dist/style/styleBuilder.d.ts.map +1 -1
- package/dist/style/styleProperties.d.ts.map +1 -1
- package/dist/utility/conditionalInfo.d.ts +1 -0
- package/dist/utility/conditionalInfo.d.ts.map +1 -1
- package/package.json +1 -1
- package/types/features/style.d.ts +1428 -664
- package/types/svg/tags.d.ts +65 -65
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
export type DisplayValue = "block" | "inline" | "flex" | "grid" | "inline-block" | "inline-flex" | "inline-grid" | "none" | "contents" | "table" | "table-row" | "table-cell" | "list-item" | "run-in" | "flow" | "flow-root" | "ruby" | "ruby-base" | "ruby-text" | "ruby-base-container" | "ruby-text-container" | string;
|
|
2
|
+
export type PositionValue = "static" | "relative" | "absolute" | "fixed" | "sticky" | string;
|
|
3
|
+
export type TextAlignValue = "left" | "right" | "center" | "justify" | "start" | "end" | "match-parent" | string;
|
|
4
|
+
export type FontWeightValue = "normal" | "bold" | "bolder" | "lighter" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | number | string;
|
|
5
|
+
export type FontStyleValue = "normal" | "italic" | "oblique" | `oblique ${string}` | string;
|
|
6
|
+
export type TextTransformValue = "none" | "capitalize" | "uppercase" | "lowercase" | "full-width" | "full-size-kana" | string;
|
|
7
|
+
export type TextDecorationValue = "none" | "underline" | "overline" | "line-through" | "blink" | string;
|
|
8
|
+
export type TextDecorationStyleValue = "solid" | "double" | "dotted" | "dashed" | "wavy" | string;
|
|
9
|
+
export type TextDecorationLineValue = "none" | "underline" | "overline" | "line-through" | "blink" | string;
|
|
10
|
+
export type WhiteSpaceValue = "normal" | "nowrap" | "pre" | "pre-wrap" | "pre-line" | "break-spaces" | string;
|
|
11
|
+
export type OverflowValue = "visible" | "hidden" | "clip" | "scroll" | "auto" | string;
|
|
12
|
+
export type VisibilityValue = "visible" | "hidden" | "collapse" | string;
|
|
13
|
+
export type FlexDirectionValue = "row" | "row-reverse" | "column" | "column-reverse" | string;
|
|
14
|
+
export type FlexWrapValue = "nowrap" | "wrap" | "wrap-reverse" | string;
|
|
15
|
+
export type AlignItemsValue = "normal" | "stretch" | "flex-start" | "flex-end" | "center" | "baseline" | "first baseline" | "last baseline" | "start" | "end" | "self-start" | "self-end" | string;
|
|
16
|
+
export type JustifyContentValue = "normal" | "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | "stretch" | "start" | "end" | "left" | "right" | string;
|
|
17
|
+
export type AlignSelfValue = "auto" | "normal" | "stretch" | "flex-start" | "flex-end" | "center" | "baseline" | "first baseline" | "last baseline" | "start" | "end" | "self-start" | "self-end" | string;
|
|
18
|
+
export type AlignContentValue = "normal" | "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | "stretch" | "start" | "end" | "baseline" | "first baseline" | "last baseline" | string;
|
|
19
|
+
export type JustifySelfValue = "auto" | "normal" | "stretch" | "flex-start" | "flex-end" | "center" | "baseline" | "first baseline" | "last baseline" | "start" | "end" | "self-start" | "self-end" | "left" | "right" | string;
|
|
20
|
+
export type JustifyItemsValue = "normal" | "stretch" | "flex-start" | "flex-end" | "center" | "baseline" | "first baseline" | "last baseline" | "start" | "end" | "self-start" | "self-end" | "left" | "right" | "legacy" | string;
|
|
21
|
+
export type GridAutoFlowValue = "row" | "column" | "dense" | "row dense" | "column dense" | string;
|
|
22
|
+
export type BorderStyleValue = "none" | "hidden" | "dotted" | "dashed" | "solid" | "double" | "groove" | "ridge" | "inset" | "outset" | string;
|
|
23
|
+
export type OutlineStyleValue = "none" | "hidden" | "dotted" | "dashed" | "solid" | "double" | "groove" | "ridge" | "inset" | "outset" | string;
|
|
24
|
+
export type BoxSizingValue = "content-box" | "border-box" | string;
|
|
25
|
+
export type ObjectFitValue = "fill" | "contain" | "cover" | "none" | "scale-down" | string;
|
|
26
|
+
export type VerticalAlignValue = "baseline" | "sub" | "super" | "text-top" | "text-bottom" | "middle" | "top" | "bottom" | string | `${number}%` | `${number}px` | `${number}em` | `${number}rem`;
|
|
27
|
+
export type TextAlignLastValue = "auto" | "left" | "right" | "center" | "justify" | "start" | "end" | string;
|
|
28
|
+
export type TextJustifyValue = "auto" | "inter-word" | "inter-character" | "none" | string;
|
|
29
|
+
export type TextOverflowValue = "clip" | "ellipsis" | string;
|
|
30
|
+
export type WordWrapValue = "normal" | "break-word" | "anywhere" | string;
|
|
31
|
+
export type OverflowWrapValue = "normal" | "break-word" | "anywhere" | string;
|
|
32
|
+
export type BackgroundRepeatValue = "repeat" | "repeat-x" | "repeat-y" | "no-repeat" | "space" | "round" | string;
|
|
33
|
+
export type BackgroundAttachmentValue = "scroll" | "fixed" | "local" | string;
|
|
34
|
+
export type BackgroundClipValue = "border-box" | "padding-box" | "content-box" | "text" | string;
|
|
35
|
+
export type BackgroundOriginValue = "border-box" | "padding-box" | "content-box" | string;
|
|
36
|
+
export type TransformStyleValue = "flat" | "preserve-3d" | string;
|
|
37
|
+
export type BackfaceVisibilityValue = "visible" | "hidden" | string;
|
|
38
|
+
export type AnimationDirectionValue = "normal" | "reverse" | "alternate" | "alternate-reverse" | string;
|
|
39
|
+
export type AnimationFillModeValue = "none" | "forwards" | "backwards" | "both" | string;
|
|
40
|
+
export type AnimationPlayStateValue = "running" | "paused" | string;
|
|
41
|
+
export type ListStyleTypeValue = "none" | "disc" | "circle" | "square" | "decimal" | "decimal-leading-zero" | "lower-roman" | "upper-roman" | "lower-greek" | "lower-latin" | "upper-latin" | "armenian" | "georgian" | "lower-alpha" | "upper-alpha" | string;
|
|
42
|
+
export type ListStylePositionValue = "inside" | "outside" | string;
|
|
43
|
+
export type BorderCollapseValue = "separate" | "collapse" | string;
|
|
44
|
+
export type CaptionSideValue = "top" | "bottom" | "left" | "right" | string;
|
|
45
|
+
export type EmptyCellsValue = "show" | "hide" | string;
|
|
46
|
+
export type TableLayoutValue = "auto" | "fixed" | string;
|
|
47
|
+
export type AppearanceValue = "none" | "auto" | "button" | "textfield" | "menulist-button" | "searchfield" | "textarea" | "push-button" | "slider-horizontal" | "checkbox" | "radio" | "square-button" | "menulist" | "listbox" | "meter" | "progress-bar" | string;
|
|
48
|
+
export type UserSelectValue = "none" | "auto" | "text" | "contain" | "all" | string;
|
|
49
|
+
export type PointerEventsValue = "auto" | "none" | "visiblePainted" | "visibleFill" | "visibleStroke" | "visible" | "painted" | "fill" | "stroke" | "all" | string;
|
|
50
|
+
export type ResizeValue = "none" | "both" | "horizontal" | "vertical" | "block" | "inline" | string;
|
|
51
|
+
export type ScrollBehaviorValue = "auto" | "smooth" | string;
|
|
52
|
+
export type IsolationValue = "auto" | "isolate" | string;
|
|
53
|
+
export type MixBlendModeValue = "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "color" | "luminosity" | string;
|
|
54
|
+
export type ContainValue = "none" | "strict" | "content" | "size" | "layout" | "style" | "paint" | string;
|
|
55
|
+
export type PageBreakValue = "auto" | "always" | "avoid" | "left" | "right" | "recto" | "verso" | string;
|
|
56
|
+
export type BreakValue = "auto" | "avoid" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region" | string;
|
|
57
|
+
export type ColumnFillValue = "auto" | "balance" | "balance-all" | string;
|
|
58
|
+
export type ColumnRuleStyleValue = "none" | "hidden" | "dotted" | "dashed" | "solid" | "double" | "groove" | "ridge" | "inset" | "outset" | string;
|
|
59
|
+
export type ColumnSpanValue = "none" | "all" | string;
|
|
60
|
+
export type CursorValue = "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" | string;
|
|
61
|
+
export type FloatValue = "none" | "left" | "right" | "inline-start" | "inline-end" | string;
|
|
62
|
+
export type ClearValue = "none" | "left" | "right" | "both" | "inline-start" | "inline-end" | string;
|
|
63
|
+
export type WritingModeValue = "horizontal-tb" | "vertical-rl" | "vertical-lr" | "sideways-rl" | "sideways-lr" | string;
|
|
64
|
+
export type DirectionValue = "ltr" | "rtl" | string;
|
|
65
|
+
export type UnicodeBidiValue = "normal" | "embed" | "bidi-override" | "isolate" | "isolate-override" | "plaintext" | string;
|
|
66
|
+
export type TextOrientationValue = "mixed" | "upright" | "sideways" | "sideways-right" | "use-glyph-orientation" | string;
|
|
67
|
+
export type HyphensValue = "none" | "manual" | "auto" | string;
|
|
68
|
+
export type LineBreakValue = "auto" | "loose" | "normal" | "strict" | "anywhere" | string;
|
|
69
|
+
export type WordBreakValue = "normal" | "break-all" | "keep-all" | "break-word" | string;
|
|
70
|
+
export type TouchActionValue = "auto" | "none" | "pan-x" | "pan-y" | "pan-left" | "pan-right" | "pan-up" | "pan-down" | "pinch-zoom" | "manipulation" | string;
|
|
71
|
+
export type OverscrollBehaviorValue = "auto" | "contain" | "none" | string;
|
|
72
|
+
export type ImageRenderingValue = "auto" | "smooth" | "crisp-edges" | "pixelated" | string;
|
|
73
|
+
export type ColorSchemeValue = "normal" | "light" | "dark" | "light dark" | "only light" | "only dark" | string;
|
|
74
|
+
export type CaretColorValue = CSSColorValue | "auto";
|
|
75
|
+
export type CaretShapeValue = "auto" | "bar" | "block" | "underscore" | string;
|
|
76
|
+
export type BackgroundBlendModeValue = "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "color" | "luminosity" | string;
|
|
77
|
+
export type ContentVisibilityValue = "visible" | "auto" | "hidden" | string;
|
|
78
|
+
export type ContainerTypeValue = "normal" | "size" | "inline-size" | "block-size" | string;
|
|
79
|
+
export type FontKerningValue = "auto" | "normal" | "none" | string;
|
|
80
|
+
export type FontSynthesisValue = "none" | "weight" | "style" | "small-caps" | "weight style" | "weight small-caps" | "style small-caps" | "weight style small-caps" | string;
|
|
81
|
+
export type FontOpticalSizingValue = "auto" | "none" | string;
|
|
82
|
+
export type FontDisplayValue = "auto" | "block" | "swap" | "fallback" | "optional" | string;
|
|
83
|
+
export type FontVariantCapsValue = "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | string;
|
|
84
|
+
export type TextRenderingValue = "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision" | string;
|
|
85
|
+
export type TextCombineUprightValue = "none" | "all" | "digits" | string;
|
|
86
|
+
export type MaskCompositeValue = "add" | "subtract" | "intersect" | "exclude" | string;
|
|
87
|
+
export type ClipRuleValue = "nonzero" | "evenodd" | string;
|
|
88
|
+
export type CSSLengthValue = string | number | `${number}px` | `${number}em` | `${number}rem` | `${number}%` | `${number}vw` | `${number}vh` | `${number}vmin` | `${number}vmax` | `${number}ch` | `${number}ex` | `${number}cm` | `${number}mm` | `${number}in` | `${number}pt` | `${number}pc`;
|
|
89
|
+
export type CSSColorValue = string;
|
|
90
|
+
export type CSSFontFamilyValue = string;
|
|
91
|
+
export type CSSTimingFunctionValue = string;
|
|
92
|
+
export type CSSTransformValue = string;
|
|
93
|
+
export type CSSFilterValue = string;
|
|
94
|
+
export type CSSBackgroundImageValue = string;
|
|
95
|
+
export type CSSAnimationNameValue = string;
|
|
96
|
+
export type CSSContentValue = string;
|
|
97
|
+
export type CSSAspectRatioValue = string | number | "auto" | `${number} / ${number}`;
|
|
98
|
+
//# sourceMappingURL=cssPropertyTypes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cssPropertyTypes.d.ts","sourceRoot":"","sources":["../../src/style/cssPropertyTypes.ts"],"names":[],"mappings":"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"}
|