@plitzi/sdk-shared 0.32.19 → 0.32.21
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/CHANGELOG.md
CHANGED
|
@@ -40,6 +40,7 @@ declare const styleConstants: {
|
|
|
40
40
|
readonly BACKGROUND_ORIGIN: "background-origin";
|
|
41
41
|
readonly BACKGROUND_CLIP: "background-clip";
|
|
42
42
|
readonly BACKGROUND_ATTACHMENT: "background-attachment";
|
|
43
|
+
readonly BACKGROUND_BLEND_MODE: "background-blend-mode";
|
|
43
44
|
readonly MASK_IMAGE: "mask-image";
|
|
44
45
|
readonly BORDER_TOP_STYLE: "border-top-style";
|
|
45
46
|
readonly BORDER_TOP_WIDTH: "border-top-width";
|
|
@@ -57,7 +58,11 @@ declare const styleConstants: {
|
|
|
57
58
|
readonly BORDER_TOP_RIGHT_RADIUS: "border-top-right-radius";
|
|
58
59
|
readonly BORDER_BOTTOM_LEFT_RADIUS: "border-bottom-left-radius";
|
|
59
60
|
readonly BORDER_BOTTOM_RIGHT_RADIUS: "border-bottom-right-radius";
|
|
61
|
+
readonly BORDER_COLLAPSE: "border-collapse";
|
|
62
|
+
readonly BORDER_SPACING: "border-spacing";
|
|
63
|
+
readonly TABLE_LAYOUT: "table-layout";
|
|
60
64
|
readonly OPACITY: "opacity";
|
|
65
|
+
readonly VISIBILITY: "visibility";
|
|
61
66
|
readonly CURSOR: "cursor";
|
|
62
67
|
readonly TRANSITION: "transition";
|
|
63
68
|
readonly TRANSITION_PROPERTY: "transition-property";
|
|
@@ -75,10 +80,28 @@ declare const styleConstants: {
|
|
|
75
80
|
readonly ANIMATION_PLAY_STATE: "animation-play-state";
|
|
76
81
|
readonly BOX_SHADOW: "box-shadow";
|
|
77
82
|
readonly FILTER: "filter";
|
|
83
|
+
readonly BACKDROP_FILTER: "backdrop-filter";
|
|
84
|
+
readonly MIX_BLEND_MODE: "mix-blend-mode";
|
|
85
|
+
readonly ISOLATION: "isolation";
|
|
86
|
+
readonly CLIP_PATH: "clip-path";
|
|
78
87
|
readonly TRANSFORM: "transform";
|
|
88
|
+
readonly TRANSFORM_ORIGIN: "transform-origin";
|
|
89
|
+
readonly PERSPECTIVE: "perspective";
|
|
90
|
+
readonly WILL_CHANGE: "will-change";
|
|
79
91
|
readonly OUTLINE_WIDTH: "outline-width";
|
|
80
92
|
readonly OUTLINE_STYLE: "outline-style";
|
|
81
93
|
readonly OUTLINE_COLOR: "outline-color";
|
|
94
|
+
readonly OUTLINE_OFFSET: "outline-offset";
|
|
95
|
+
readonly POINTER_EVENTS: "pointer-events";
|
|
96
|
+
readonly USER_SELECT: "user-select";
|
|
97
|
+
readonly TOUCH_ACTION: "touch-action";
|
|
98
|
+
readonly RESIZE: "resize";
|
|
99
|
+
readonly APPEARANCE: "appearance";
|
|
100
|
+
readonly SCROLL_BEHAVIOR: "scroll-behavior";
|
|
101
|
+
readonly OVERSCROLL_BEHAVIOR: "overscroll-behavior";
|
|
102
|
+
readonly ACCENT_COLOR: "accent-color";
|
|
103
|
+
readonly CARET_COLOR: "caret-color";
|
|
104
|
+
readonly COLOR_SCHEME: "color-scheme";
|
|
82
105
|
readonly POSITION: "position";
|
|
83
106
|
readonly FLOAT: "float";
|
|
84
107
|
readonly CLEAR: "clear";
|
|
@@ -87,6 +110,8 @@ declare const styleConstants: {
|
|
|
87
110
|
readonly BOTTOM: "bottom";
|
|
88
111
|
readonly LEFT: "left";
|
|
89
112
|
readonly RIGHT: "right";
|
|
113
|
+
readonly BOX_SIZING: "box-sizing";
|
|
114
|
+
readonly ASPECT_RATIO: "aspect-ratio";
|
|
90
115
|
readonly WIDTH: "width";
|
|
91
116
|
readonly HEIGHT: "height";
|
|
92
117
|
readonly MIN_WIDTH: "min-width";
|
|
@@ -120,19 +145,32 @@ declare const styleConstants: {
|
|
|
120
145
|
readonly TEXT_DECORATION_LINE: "text-decoration-line";
|
|
121
146
|
readonly TEXT_DECORATION_COLOR: "text-decoration-color";
|
|
122
147
|
readonly TEXT_DECORATION_STYLE: "text-decoration-style";
|
|
148
|
+
readonly TEXT_DECORATION_THICKNESS: "text-decoration-thickness";
|
|
149
|
+
readonly TEXT_UNDERLINE_OFFSET: "text-underline-offset";
|
|
123
150
|
readonly LETTER_SPACING: "letter-spacing";
|
|
151
|
+
readonly WORD_SPACING: "word-spacing";
|
|
124
152
|
readonly TEXT_INDENT: "text-indent";
|
|
125
153
|
readonly TEXT_TRANSFORM: "text-transform";
|
|
126
154
|
readonly DIRECTION: "direction";
|
|
127
155
|
readonly WHITE_SPACE: "white-space";
|
|
128
156
|
readonly TEXT_WRAP: "text-wrap";
|
|
157
|
+
readonly WORD_BREAK: "word-break";
|
|
158
|
+
readonly OVERFLOW_WRAP: "overflow-wrap";
|
|
159
|
+
readonly HYPHENS: "hyphens";
|
|
160
|
+
readonly VERTICAL_ALIGN: "vertical-align";
|
|
129
161
|
readonly TEXT_OVERFLOW: "text-overflow";
|
|
130
162
|
readonly TEXT_SHADOW: "text-shadow";
|
|
163
|
+
readonly LINE_CLAMP: "line-clamp";
|
|
164
|
+
readonly WEBKIT_LINE_CLAMP: "-webkit-line-clamp";
|
|
165
|
+
readonly WEBKIT_BOX_ORIENT: "-webkit-box-orient";
|
|
166
|
+
readonly FILL: "fill";
|
|
167
|
+
readonly STROKE: "stroke";
|
|
168
|
+
readonly STROKE_WIDTH: "stroke-width";
|
|
131
169
|
};
|
|
132
170
|
export declare const inheritableAttributesBase: StyleCategory[];
|
|
133
171
|
export declare const StyleBindingsAllowed: {
|
|
134
|
-
path: "display" | "flex-wrap" | "flex-direction" | "align-items" | "justify-items" | "justify-content" | "align-content" | "row-gap" | "column-gap" | "grid-row-gap" | "grid-column-gap" | "grid-template-areas" | "grid-template-columns" | "grid-template-rows" | "grid-auto-flow" | "grid-auto-rows" | "grid-auto-columns" | "grid-row-start" | "grid-column-start" | "grid-row-end" | "grid-column-end" | "align-self" | "justify-self" | "order" | "flex-grow" | "flex-shrink" | "flex-basis" | "list-style" | "list-style-type" | "list-style-position" | "list-style-image" | "background-color" | "background-image" | "background-position" | "background-size" | "background-repeat" | "background-origin" | "background-clip" | "background-attachment" | "mask-image" | "border-top-style" | "border-top-width" | "border-top-color" | "border-bottom-style" | "border-bottom-width" | "border-bottom-color" | "border-left-style" | "border-left-width" | "border-left-color" | "border-right-style" | "border-right-width" | "border-right-color" | "border-top-left-radius" | "border-top-right-radius" | "border-bottom-left-radius" | "border-bottom-right-radius" | "opacity" | "cursor" | "transition" | "transition-property" | "transition-duration" | "transition-timing-function" | "transition-delay" | "animation" | "animation-name" | "animation-duration" | "animation-timing-function" | "animation-delay" | "animation-iteration-count" | "animation-direction" | "animation-fill-mode" | "animation-play-state" | "box-shadow" | "filter" | "transform" | "outline-width" | "outline-style" | "outline-color" | "position" | "float" | "clear" | "z-index" | "top" | "bottom" | "left" | "right" | "width" | "height" | "min-width" | "min-height" | "max-width" | "max-height" | "overflow" | "overflow-x" | "overflow-y" | "object-fit" | "object-position" | "column-width" | "column-count" | "margin-top" | "margin-bottom" | "margin-left" | "margin-right" | "padding-top" | "padding-bottom" | "padding-left" | "padding-right" | "font-family" | "font-weight" | "font-size" | "line-height" | "color" | "text-align" | "font-style" | "font-variant" | "text-decoration" | "text-decoration-line" | "text-decoration-color" | "text-decoration-style" | "letter-spacing" | "text-indent" | "text-transform" | "direction" | "white-space" | "text-wrap" | "text-overflow" | "text-shadow";
|
|
135
|
-
label: "display" | "flex-wrap" | "flex-direction" | "align-items" | "justify-items" | "justify-content" | "align-content" | "row-gap" | "column-gap" | "grid-row-gap" | "grid-column-gap" | "grid-template-areas" | "grid-template-columns" | "grid-template-rows" | "grid-auto-flow" | "grid-auto-rows" | "grid-auto-columns" | "grid-row-start" | "grid-column-start" | "grid-row-end" | "grid-column-end" | "align-self" | "justify-self" | "order" | "flex-grow" | "flex-shrink" | "flex-basis" | "list-style" | "list-style-type" | "list-style-position" | "list-style-image" | "background-color" | "background-image" | "background-position" | "background-size" | "background-repeat" | "background-origin" | "background-clip" | "background-attachment" | "mask-image" | "border-top-style" | "border-top-width" | "border-top-color" | "border-bottom-style" | "border-bottom-width" | "border-bottom-color" | "border-left-style" | "border-left-width" | "border-left-color" | "border-right-style" | "border-right-width" | "border-right-color" | "border-top-left-radius" | "border-top-right-radius" | "border-bottom-left-radius" | "border-bottom-right-radius" | "opacity" | "cursor" | "transition" | "transition-property" | "transition-duration" | "transition-timing-function" | "transition-delay" | "animation" | "animation-name" | "animation-duration" | "animation-timing-function" | "animation-delay" | "animation-iteration-count" | "animation-direction" | "animation-fill-mode" | "animation-play-state" | "box-shadow" | "filter" | "transform" | "outline-width" | "outline-style" | "outline-color" | "position" | "float" | "clear" | "z-index" | "top" | "bottom" | "left" | "right" | "width" | "height" | "min-width" | "min-height" | "max-width" | "max-height" | "overflow" | "overflow-x" | "overflow-y" | "object-fit" | "object-position" | "column-width" | "column-count" | "margin-top" | "margin-bottom" | "margin-left" | "margin-right" | "padding-top" | "padding-bottom" | "padding-left" | "padding-right" | "font-family" | "font-weight" | "font-size" | "line-height" | "color" | "text-align" | "font-style" | "font-variant" | "text-decoration" | "text-decoration-line" | "text-decoration-color" | "text-decoration-style" | "letter-spacing" | "text-indent" | "text-transform" | "direction" | "white-space" | "text-wrap" | "text-overflow" | "text-shadow";
|
|
172
|
+
path: "display" | "flex-wrap" | "flex-direction" | "align-items" | "justify-items" | "justify-content" | "align-content" | "row-gap" | "column-gap" | "grid-row-gap" | "grid-column-gap" | "grid-template-areas" | "grid-template-columns" | "grid-template-rows" | "grid-auto-flow" | "grid-auto-rows" | "grid-auto-columns" | "grid-row-start" | "grid-column-start" | "grid-row-end" | "grid-column-end" | "align-self" | "justify-self" | "order" | "flex-grow" | "flex-shrink" | "flex-basis" | "list-style" | "list-style-type" | "list-style-position" | "list-style-image" | "background-color" | "background-image" | "background-position" | "background-size" | "background-repeat" | "background-origin" | "background-clip" | "background-attachment" | "background-blend-mode" | "mask-image" | "border-top-style" | "border-top-width" | "border-top-color" | "border-bottom-style" | "border-bottom-width" | "border-bottom-color" | "border-left-style" | "border-left-width" | "border-left-color" | "border-right-style" | "border-right-width" | "border-right-color" | "border-top-left-radius" | "border-top-right-radius" | "border-bottom-left-radius" | "border-bottom-right-radius" | "border-collapse" | "border-spacing" | "table-layout" | "opacity" | "visibility" | "cursor" | "transition" | "transition-property" | "transition-duration" | "transition-timing-function" | "transition-delay" | "animation" | "animation-name" | "animation-duration" | "animation-timing-function" | "animation-delay" | "animation-iteration-count" | "animation-direction" | "animation-fill-mode" | "animation-play-state" | "box-shadow" | "filter" | "backdrop-filter" | "mix-blend-mode" | "isolation" | "clip-path" | "transform" | "transform-origin" | "perspective" | "will-change" | "outline-width" | "outline-style" | "outline-color" | "outline-offset" | "pointer-events" | "user-select" | "touch-action" | "resize" | "appearance" | "scroll-behavior" | "overscroll-behavior" | "accent-color" | "caret-color" | "color-scheme" | "position" | "float" | "clear" | "z-index" | "top" | "bottom" | "left" | "right" | "box-sizing" | "aspect-ratio" | "width" | "height" | "min-width" | "min-height" | "max-width" | "max-height" | "overflow" | "overflow-x" | "overflow-y" | "object-fit" | "object-position" | "column-width" | "column-count" | "margin-top" | "margin-bottom" | "margin-left" | "margin-right" | "padding-top" | "padding-bottom" | "padding-left" | "padding-right" | "font-family" | "font-weight" | "font-size" | "line-height" | "color" | "text-align" | "font-style" | "font-variant" | "text-decoration" | "text-decoration-line" | "text-decoration-color" | "text-decoration-style" | "text-decoration-thickness" | "text-underline-offset" | "letter-spacing" | "word-spacing" | "text-indent" | "text-transform" | "direction" | "white-space" | "text-wrap" | "word-break" | "overflow-wrap" | "hyphens" | "vertical-align" | "text-overflow" | "text-shadow" | "line-clamp" | "-webkit-line-clamp" | "-webkit-box-orient" | "fill" | "stroke" | "stroke-width";
|
|
173
|
+
label: "display" | "flex-wrap" | "flex-direction" | "align-items" | "justify-items" | "justify-content" | "align-content" | "row-gap" | "column-gap" | "grid-row-gap" | "grid-column-gap" | "grid-template-areas" | "grid-template-columns" | "grid-template-rows" | "grid-auto-flow" | "grid-auto-rows" | "grid-auto-columns" | "grid-row-start" | "grid-column-start" | "grid-row-end" | "grid-column-end" | "align-self" | "justify-self" | "order" | "flex-grow" | "flex-shrink" | "flex-basis" | "list-style" | "list-style-type" | "list-style-position" | "list-style-image" | "background-color" | "background-image" | "background-position" | "background-size" | "background-repeat" | "background-origin" | "background-clip" | "background-attachment" | "background-blend-mode" | "mask-image" | "border-top-style" | "border-top-width" | "border-top-color" | "border-bottom-style" | "border-bottom-width" | "border-bottom-color" | "border-left-style" | "border-left-width" | "border-left-color" | "border-right-style" | "border-right-width" | "border-right-color" | "border-top-left-radius" | "border-top-right-radius" | "border-bottom-left-radius" | "border-bottom-right-radius" | "border-collapse" | "border-spacing" | "table-layout" | "opacity" | "visibility" | "cursor" | "transition" | "transition-property" | "transition-duration" | "transition-timing-function" | "transition-delay" | "animation" | "animation-name" | "animation-duration" | "animation-timing-function" | "animation-delay" | "animation-iteration-count" | "animation-direction" | "animation-fill-mode" | "animation-play-state" | "box-shadow" | "filter" | "backdrop-filter" | "mix-blend-mode" | "isolation" | "clip-path" | "transform" | "transform-origin" | "perspective" | "will-change" | "outline-width" | "outline-style" | "outline-color" | "outline-offset" | "pointer-events" | "user-select" | "touch-action" | "resize" | "appearance" | "scroll-behavior" | "overscroll-behavior" | "accent-color" | "caret-color" | "color-scheme" | "position" | "float" | "clear" | "z-index" | "top" | "bottom" | "left" | "right" | "box-sizing" | "aspect-ratio" | "width" | "height" | "min-width" | "min-height" | "max-width" | "max-height" | "overflow" | "overflow-x" | "overflow-y" | "object-fit" | "object-position" | "column-width" | "column-count" | "margin-top" | "margin-bottom" | "margin-left" | "margin-right" | "padding-top" | "padding-bottom" | "padding-left" | "padding-right" | "font-family" | "font-weight" | "font-size" | "line-height" | "color" | "text-align" | "font-style" | "font-variant" | "text-decoration" | "text-decoration-line" | "text-decoration-color" | "text-decoration-style" | "text-decoration-thickness" | "text-underline-offset" | "letter-spacing" | "word-spacing" | "text-indent" | "text-transform" | "direction" | "white-space" | "text-wrap" | "word-break" | "overflow-wrap" | "hyphens" | "vertical-align" | "text-overflow" | "text-shadow" | "line-clamp" | "-webkit-line-clamp" | "-webkit-box-orient" | "fill" | "stroke" | "stroke-width";
|
|
136
174
|
}[];
|
|
137
175
|
export declare const baseDefaultValue: Record<StyleCategory, StyleValue>;
|
|
138
176
|
export default styleConstants;
|
|
@@ -52,6 +52,7 @@ var e = {
|
|
|
52
52
|
BACKGROUND_ORIGIN: "background-origin",
|
|
53
53
|
BACKGROUND_CLIP: "background-clip",
|
|
54
54
|
BACKGROUND_ATTACHMENT: "background-attachment",
|
|
55
|
+
BACKGROUND_BLEND_MODE: "background-blend-mode",
|
|
55
56
|
MASK_IMAGE: "mask-image",
|
|
56
57
|
BORDER_TOP_STYLE: "border-top-style",
|
|
57
58
|
BORDER_TOP_WIDTH: "border-top-width",
|
|
@@ -69,7 +70,11 @@ var e = {
|
|
|
69
70
|
BORDER_TOP_RIGHT_RADIUS: "border-top-right-radius",
|
|
70
71
|
BORDER_BOTTOM_LEFT_RADIUS: "border-bottom-left-radius",
|
|
71
72
|
BORDER_BOTTOM_RIGHT_RADIUS: "border-bottom-right-radius",
|
|
73
|
+
BORDER_COLLAPSE: "border-collapse",
|
|
74
|
+
BORDER_SPACING: "border-spacing",
|
|
75
|
+
TABLE_LAYOUT: "table-layout",
|
|
72
76
|
OPACITY: "opacity",
|
|
77
|
+
VISIBILITY: "visibility",
|
|
73
78
|
CURSOR: "cursor",
|
|
74
79
|
TRANSITION: "transition",
|
|
75
80
|
TRANSITION_PROPERTY: "transition-property",
|
|
@@ -87,10 +92,28 @@ var e = {
|
|
|
87
92
|
ANIMATION_PLAY_STATE: "animation-play-state",
|
|
88
93
|
BOX_SHADOW: "box-shadow",
|
|
89
94
|
FILTER: "filter",
|
|
95
|
+
BACKDROP_FILTER: "backdrop-filter",
|
|
96
|
+
MIX_BLEND_MODE: "mix-blend-mode",
|
|
97
|
+
ISOLATION: "isolation",
|
|
98
|
+
CLIP_PATH: "clip-path",
|
|
90
99
|
TRANSFORM: "transform",
|
|
100
|
+
TRANSFORM_ORIGIN: "transform-origin",
|
|
101
|
+
PERSPECTIVE: "perspective",
|
|
102
|
+
WILL_CHANGE: "will-change",
|
|
91
103
|
OUTLINE_WIDTH: "outline-width",
|
|
92
104
|
OUTLINE_STYLE: "outline-style",
|
|
93
105
|
OUTLINE_COLOR: "outline-color",
|
|
106
|
+
OUTLINE_OFFSET: "outline-offset",
|
|
107
|
+
POINTER_EVENTS: "pointer-events",
|
|
108
|
+
USER_SELECT: "user-select",
|
|
109
|
+
TOUCH_ACTION: "touch-action",
|
|
110
|
+
RESIZE: "resize",
|
|
111
|
+
APPEARANCE: "appearance",
|
|
112
|
+
SCROLL_BEHAVIOR: "scroll-behavior",
|
|
113
|
+
OVERSCROLL_BEHAVIOR: "overscroll-behavior",
|
|
114
|
+
ACCENT_COLOR: "accent-color",
|
|
115
|
+
CARET_COLOR: "caret-color",
|
|
116
|
+
COLOR_SCHEME: "color-scheme",
|
|
94
117
|
POSITION: "position",
|
|
95
118
|
FLOAT: "float",
|
|
96
119
|
CLEAR: "clear",
|
|
@@ -99,6 +122,8 @@ var e = {
|
|
|
99
122
|
BOTTOM: "bottom",
|
|
100
123
|
LEFT: "left",
|
|
101
124
|
RIGHT: "right",
|
|
125
|
+
BOX_SIZING: "box-sizing",
|
|
126
|
+
ASPECT_RATIO: "aspect-ratio",
|
|
102
127
|
WIDTH: "width",
|
|
103
128
|
HEIGHT: "height",
|
|
104
129
|
MIN_WIDTH: "min-width",
|
|
@@ -132,14 +157,27 @@ var e = {
|
|
|
132
157
|
TEXT_DECORATION_LINE: "text-decoration-line",
|
|
133
158
|
TEXT_DECORATION_COLOR: "text-decoration-color",
|
|
134
159
|
TEXT_DECORATION_STYLE: "text-decoration-style",
|
|
160
|
+
TEXT_DECORATION_THICKNESS: "text-decoration-thickness",
|
|
161
|
+
TEXT_UNDERLINE_OFFSET: "text-underline-offset",
|
|
135
162
|
LETTER_SPACING: "letter-spacing",
|
|
163
|
+
WORD_SPACING: "word-spacing",
|
|
136
164
|
TEXT_INDENT: "text-indent",
|
|
137
165
|
TEXT_TRANSFORM: "text-transform",
|
|
138
166
|
DIRECTION: "direction",
|
|
139
167
|
WHITE_SPACE: "white-space",
|
|
140
168
|
TEXT_WRAP: "text-wrap",
|
|
169
|
+
WORD_BREAK: "word-break",
|
|
170
|
+
OVERFLOW_WRAP: "overflow-wrap",
|
|
171
|
+
HYPHENS: "hyphens",
|
|
172
|
+
VERTICAL_ALIGN: "vertical-align",
|
|
141
173
|
TEXT_OVERFLOW: "text-overflow",
|
|
142
|
-
TEXT_SHADOW: "text-shadow"
|
|
174
|
+
TEXT_SHADOW: "text-shadow",
|
|
175
|
+
LINE_CLAMP: "line-clamp",
|
|
176
|
+
WEBKIT_LINE_CLAMP: "-webkit-line-clamp",
|
|
177
|
+
WEBKIT_BOX_ORIENT: "-webkit-box-orient",
|
|
178
|
+
FILL: "fill",
|
|
179
|
+
STROKE: "stroke",
|
|
180
|
+
STROKE_WIDTH: "stroke-width"
|
|
143
181
|
}, n = [
|
|
144
182
|
t.FONT_FAMILY,
|
|
145
183
|
t.FONT_SIZE,
|
|
@@ -204,6 +242,7 @@ var e = {
|
|
|
204
242
|
[t.BACKGROUND_ORIGIN]: "padding-box",
|
|
205
243
|
[t.BACKGROUND_REPEAT]: "repeat",
|
|
206
244
|
[t.BACKGROUND_ATTACHMENT]: "scroll",
|
|
245
|
+
[t.BACKGROUND_BLEND_MODE]: "normal",
|
|
207
246
|
[t.MASK_IMAGE]: "none",
|
|
208
247
|
[t.BORDER_TOP_STYLE]: "solid",
|
|
209
248
|
[t.BORDER_TOP_WIDTH]: "0px",
|
|
@@ -221,7 +260,11 @@ var e = {
|
|
|
221
260
|
[t.BORDER_TOP_RIGHT_RADIUS]: "0px",
|
|
222
261
|
[t.BORDER_BOTTOM_LEFT_RADIUS]: "0px",
|
|
223
262
|
[t.BORDER_BOTTOM_RIGHT_RADIUS]: "0px",
|
|
263
|
+
[t.BORDER_COLLAPSE]: "separate",
|
|
264
|
+
[t.BORDER_SPACING]: "0px",
|
|
265
|
+
[t.TABLE_LAYOUT]: "auto",
|
|
224
266
|
[t.OPACITY]: "1",
|
|
267
|
+
[t.VISIBILITY]: "visible",
|
|
225
268
|
[t.CURSOR]: "auto",
|
|
226
269
|
[t.TRANSITION]: "opacity 200ms ease 0ms",
|
|
227
270
|
[t.TRANSITION_PROPERTY]: "all",
|
|
@@ -239,10 +282,28 @@ var e = {
|
|
|
239
282
|
[t.ANIMATION_PLAY_STATE]: "running",
|
|
240
283
|
[t.BOX_SHADOW]: "1px 1px 3px 1px black",
|
|
241
284
|
[t.FILTER]: "blur(5px)",
|
|
285
|
+
[t.BACKDROP_FILTER]: "blur(5px)",
|
|
286
|
+
[t.MIX_BLEND_MODE]: "normal",
|
|
287
|
+
[t.ISOLATION]: "auto",
|
|
288
|
+
[t.CLIP_PATH]: "none",
|
|
242
289
|
[t.TRANSFORM]: "translate3d(0px, 0px, 0px)",
|
|
290
|
+
[t.TRANSFORM_ORIGIN]: "50% 50%",
|
|
291
|
+
[t.PERSPECTIVE]: "none",
|
|
292
|
+
[t.WILL_CHANGE]: "auto",
|
|
243
293
|
[t.OUTLINE_WIDTH]: "medium",
|
|
244
294
|
[t.OUTLINE_STYLE]: "none",
|
|
245
295
|
[t.OUTLINE_COLOR]: "currentColor",
|
|
296
|
+
[t.OUTLINE_OFFSET]: "0px",
|
|
297
|
+
[t.POINTER_EVENTS]: "auto",
|
|
298
|
+
[t.USER_SELECT]: "auto",
|
|
299
|
+
[t.TOUCH_ACTION]: "auto",
|
|
300
|
+
[t.RESIZE]: "none",
|
|
301
|
+
[t.APPEARANCE]: "none",
|
|
302
|
+
[t.SCROLL_BEHAVIOR]: "auto",
|
|
303
|
+
[t.OVERSCROLL_BEHAVIOR]: "auto",
|
|
304
|
+
[t.ACCENT_COLOR]: "auto",
|
|
305
|
+
[t.CARET_COLOR]: "auto",
|
|
306
|
+
[t.COLOR_SCHEME]: "normal",
|
|
246
307
|
[t.POSITION]: "static",
|
|
247
308
|
[t.FLOAT]: "none",
|
|
248
309
|
[t.CLEAR]: "none",
|
|
@@ -251,6 +312,8 @@ var e = {
|
|
|
251
312
|
[t.BOTTOM]: "auto",
|
|
252
313
|
[t.LEFT]: "auto",
|
|
253
314
|
[t.RIGHT]: "auto",
|
|
315
|
+
[t.BOX_SIZING]: "border-box",
|
|
316
|
+
[t.ASPECT_RATIO]: "auto",
|
|
254
317
|
[t.WIDTH]: "auto",
|
|
255
318
|
[t.HEIGHT]: "auto",
|
|
256
319
|
[t.MIN_WIDTH]: "0px",
|
|
@@ -284,14 +347,27 @@ var e = {
|
|
|
284
347
|
[t.TEXT_DECORATION_LINE]: "none",
|
|
285
348
|
[t.TEXT_DECORATION_COLOR]: "currentColor",
|
|
286
349
|
[t.TEXT_DECORATION_STYLE]: "solid",
|
|
350
|
+
[t.TEXT_DECORATION_THICKNESS]: "auto",
|
|
351
|
+
[t.TEXT_UNDERLINE_OFFSET]: "auto",
|
|
287
352
|
[t.LETTER_SPACING]: "0px",
|
|
353
|
+
[t.WORD_SPACING]: "normal",
|
|
288
354
|
[t.TEXT_INDENT]: "0px",
|
|
289
355
|
[t.TEXT_TRANSFORM]: "none",
|
|
290
356
|
[t.DIRECTION]: "ltr",
|
|
291
357
|
[t.WHITE_SPACE]: "normal",
|
|
292
358
|
[t.TEXT_WRAP]: "wrap",
|
|
359
|
+
[t.WORD_BREAK]: "normal",
|
|
360
|
+
[t.OVERFLOW_WRAP]: "normal",
|
|
361
|
+
[t.HYPHENS]: "manual",
|
|
362
|
+
[t.VERTICAL_ALIGN]: "baseline",
|
|
293
363
|
[t.TEXT_OVERFLOW]: "clip",
|
|
294
|
-
[t.TEXT_SHADOW]: ""
|
|
364
|
+
[t.TEXT_SHADOW]: "",
|
|
365
|
+
[t.LINE_CLAMP]: "none",
|
|
366
|
+
[t.WEBKIT_LINE_CLAMP]: "none",
|
|
367
|
+
[t.WEBKIT_BOX_ORIENT]: "horizontal",
|
|
368
|
+
[t.FILL]: "currentColor",
|
|
369
|
+
[t.STROKE]: "none",
|
|
370
|
+
[t.STROKE_WIDTH]: "1"
|
|
295
371
|
};
|
|
296
372
|
//#endregion
|
|
297
373
|
export { e as EMPTY_STYLE_SCHEMA, r as StyleBindingsAllowed, i as baseDefaultValue, t as default, n as inheritableAttributesBase };
|
|
@@ -292,6 +292,11 @@ export type SSRServerConfig = {
|
|
|
292
292
|
mcpAi?: {
|
|
293
293
|
enabled?: boolean;
|
|
294
294
|
path?: string;
|
|
295
|
+
/** Whether the plitzi_render view may paint from the tool arguments while the host is still STREAMING them:
|
|
296
|
+
* a placeholder that grows with the widget being authored, instead of the static "Rendering…" held for as
|
|
297
|
+
* long as the model takes to write the batch. Defaults to true; hosts that stream nothing are unaffected
|
|
298
|
+
* either way. Set false to keep every view blank until the finished widget arrives. */
|
|
299
|
+
renderStreaming?: boolean;
|
|
295
300
|
};
|
|
296
301
|
/** Receives a {@link ServerLogEvent} for every HTTP request this server answers — whatever stage answered it
|
|
297
302
|
* and whatever the outcome — plus every MCP tool call and resource read inside those requests. Without it the
|