@jointhedots/ui 2.0.20

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 (35) hide show
  1. package/bundle.manifest.json +47 -0
  2. package/chunk.73S35ZUP.js +1 -0
  3. package/chunk.7FLBFFZJ.js +1 -0
  4. package/chunk.IWVPDTNR.js +60 -0
  5. package/chunk.J7UOQR25.js +787 -0
  6. package/chunk.NOVIDUKC.js +1 -0
  7. package/chunk.NZRTZDOB.js +1 -0
  8. package/chunk.OW3MI2XU.js +35 -0
  9. package/chunk.S2ABQ2TE.js +51 -0
  10. package/chunk.SOVKFN6E.js +57 -0
  11. package/chunk.TB7PTJUW.js +297 -0
  12. package/chunk.VLRB3H3F.js +12 -0
  13. package/chunk.YJXSWWE6.js +3 -0
  14. package/chunk.ZTJG4JJS.js +26 -0
  15. package/cid.0Z4H3pyI6YJvF25fpMdVxrsrJb2aoHNuRqCW8ykQutc.json +44 -0
  16. package/cid.N30c0jISJNset9Hvr2NLQnsa9sVwvpNmyKx2QZaYQyc.json +10 -0
  17. package/export.applicationboard.js +1 -0
  18. package/export.codeeditor.js +1 -0
  19. package/export.componentslibrary.js +1 -0
  20. package/export.dialog.js +1 -0
  21. package/export.icon.js +1 -0
  22. package/export.inputs.js +1 -0
  23. package/export.items.js +1 -0
  24. package/export.layouts.js +1 -0
  25. package/export.notifications.js +1 -0
  26. package/export.servicepoint.js +1 -0
  27. package/export.theme.js +1 -0
  28. package/lambda.node_modules.monaco_editor.esm.vs.editor.editor_worker_js.js +1 -0
  29. package/lambda.node_modules.monaco_editor.esm.vs.language.css.css_worker.js +66 -0
  30. package/lambda.node_modules.monaco_editor.esm.vs.language.html.html_worker.js +443 -0
  31. package/lambda.node_modules.monaco_editor.esm.vs.language.json.json_worker.js +31 -0
  32. package/lambda.node_modules.monaco_editor.esm.vs.language.typescript.ts_worker.js +67711 -0
  33. package/lambda.src.applicationboard.component.js +1 -0
  34. package/package.json +73 -0
  35. package/types.d.ts +1862 -0
package/types.d.ts ADDED
@@ -0,0 +1,1862 @@
1
+ declare module '@jointhedots/ui/src/computeEdgeBox' {
2
+ const positionsMap: {
3
+ "down-left": number;
4
+ "down-right": number;
5
+ "up-left": number;
6
+ "up-right": number;
7
+ "left-up": number;
8
+ "left-down": number;
9
+ "right-up": number;
10
+ "right-down": number;
11
+ };
12
+ export type PositionType = keyof typeof positionsMap;
13
+ export function computeEdgeBox(position: string, element: HTMLElement, tracked: ClientRect | DOMRect, host: ClientRect | DOMRect): Object;
14
+ export function computeEdgeBoxDOM(position: string, element: HTMLElement, trackedElement: Element, hostElement?: HTMLElement): Object;
15
+ export {};
16
+ }
17
+
18
+ declare module '@jointhedots/ui/src/globals' {
19
+ module '*.jpg'; module '*.jpeg'; module '*.gif'; module '*.png'; module '*.svg'; module 'prismjs/components/prism-*'; module '*.txt' {
20
+ const content: string;
21
+ export default content;
22
+ }
23
+ }
24
+
25
+ declare module '@jointhedots/ui/src/Layouts/Panels/StackedDock' {
26
+ import { type Panel, type PanelDock } from 'src/Layouts/Panels';
27
+ export interface StackedOverlay {
28
+ node: HTMLElement;
29
+ close(): any;
30
+ }
31
+ export const overlays_stack: StackedOverlay[];
32
+ export function getStackZIndex(stackIndex: number): string;
33
+ export abstract class StackedDock implements PanelDock {
34
+ stack: Panel[];
35
+ main: Panel;
36
+ appendPanel(panel: Panel): void;
37
+ removePanel(panel: Panel): void;
38
+ refresh(panel: Panel): void;
39
+ abstract updateStack(previousMain: Panel): any;
40
+ }
41
+ export type OutsideEventID = "mouse" | "open";
42
+ export type OutsideHandler = (type: OutsideEventID, target: HTMLElement) => void;
43
+ export function dispatchOutsideEvent(type: OutsideEventID, target: HTMLElement): void;
44
+ export function addOutsideEventListener(handler: OutsideHandler): void;
45
+ export function removeOutsideEventListener(handler: OutsideHandler): void;
46
+ }
47
+
48
+ declare module '@jointhedots/ui/src/Layouts/Panels/DrawerDock' {
49
+ import ReactDOM from 'react-dom/client';
50
+ import React from 'react';
51
+ import { StackedDock } from '@jointhedots/ui/src/Layouts/Panels/StackedDock';
52
+ import 'src/Layouts/Panels/style.scss'; const ResizableDrawer: (props: {
53
+ open: boolean;
54
+ width: number;
55
+ defaultWidth: number;
56
+ minWidth: number;
57
+ maxWidth: number;
58
+ anchor: "right" | "left";
59
+ children: React.ReactNode;
60
+ setWidth: (width: number) => void;
61
+ }) => import( 'react/jsx-runtime').JSX.Element;
62
+ type Side = 'right' | 'left';
63
+ export class DrawerDock extends StackedDock {
64
+ readonly side: Side;
65
+ node: HTMLDivElement;
66
+ root: ReactDOM.Root;
67
+ width: number;
68
+ constructor(side: Side);
69
+ setWidth: (width: number) => void;
70
+ updateStack(): void;
71
+ }
72
+ export default ResizableDrawer;
73
+ }
74
+
75
+ declare module '@jointhedots/ui/src/Layouts/Panels/ModalDock' {
76
+ import ReactDOMClient from 'react-dom/client';
77
+ import { StackedDock } from '@jointhedots/ui/src/Layouts/Panels/StackedDock';
78
+ import 'src/Layouts/Panels/style.scss';
79
+ export class ModalDock extends StackedDock {
80
+ node: HTMLElement;
81
+ root: ReactDOMClient.Root;
82
+ constructor(height?: string);
83
+ show(): void;
84
+ hide(): void;
85
+ unstack: () => void;
86
+ updateStack(previous: any): void;
87
+ }
88
+ }
89
+
90
+ declare module 'src/Layouts/Panels' {
91
+ import { Async } from '@jointhedots/core';
92
+ import { ToolingProps } from '@jointhedots/ui/Items';
93
+ export type PanelDisplay = {
94
+ icon?: string;
95
+ title?: string;
96
+ content: React.ReactNode;
97
+ tooling?: ToolingProps[];
98
+ closable?: boolean;
99
+ height?: number | string;
100
+ onClose?: () => void;
101
+ };
102
+ export interface Panel<Data = unknown> {
103
+ readonly isOpen: boolean;
104
+ readonly dock: PanelDock;
105
+ readonly displayed: PanelDisplay;
106
+ readonly data: Data;
107
+ open(dock: string | PanelDock): any;
108
+ display(displayed: PanelDisplay): any;
109
+ close(): any;
110
+ }
111
+ export interface PanelDock {
112
+ appendPanel(panel: Panel): any;
113
+ removePanel(panel: Panel): any;
114
+ refresh(panel: Panel): any;
115
+ }
116
+ export class PanelInstance<Data = unknown> implements Panel<Data> {
117
+ dock: PanelDock;
118
+ displayed: PanelDisplay;
119
+ data: Data;
120
+ get isOpen(): boolean;
121
+ open(dock?: string | PanelDock): void;
122
+ close(): void;
123
+ display(displayed: PanelDisplay): void;
124
+ }
125
+ export function getPanelDockFrom(dock?: string | PanelDock): PanelDock;
126
+ export function createPanel<T = unknown>(displayed?: PanelDisplay): Panel;
127
+ export function usePanel<T>(render: (panel: Panel<T>) => Async<PanelDisplay>, deps?: any[]): Panel;
128
+ }
129
+
130
+ declare module '@jointhedots/ui/src/Layouts/Panels/FloatingDock' {
131
+ import React from 'react';
132
+ import ReactDOMClient from 'react-dom/client';
133
+ import { Panel, PanelDisplay, PanelDock } from 'src/Layouts/Panels';
134
+ import { PositionType } from '@jointhedots/ui/src/computeEdgeBox';
135
+ import 'src/Layouts/Panels/style.scss';
136
+ export type StyleType = {
137
+ [key: string]: string;
138
+ };
139
+ export type FloatingTarget = UIEvent | Element | React.Component | React.SyntheticEvent<Element, Event>;
140
+ export type FloatingDockOptions = {
141
+ position?: PositionType;
142
+ variant?: "menu" | "popup";
143
+ className?: string;
144
+ noAutoClose?: boolean;
145
+ }; class FloatingDock implements PanelDock {
146
+ readonly opts: FloatingDockOptions;
147
+ node: HTMLElement;
148
+ root: ReactDOMClient.Root;
149
+ tracked: Element;
150
+ main: Panel;
151
+ stackIndex: number;
152
+ resolve?: (data: any) => void;
153
+ constructor(opts: FloatingDockOptions);
154
+ stick(target: FloatingTarget): this;
155
+ popup(displayed: PanelDisplay): void;
156
+ private show;
157
+ private _handleClickOutside;
158
+ private hide;
159
+ private close;
160
+ appendPanel(panel: Panel): void;
161
+ removePanel(panel: Panel): void;
162
+ refresh(panel: Panel): void;
163
+ }
164
+ export function createFloatingDock(target: FloatingTarget, options?: FloatingDockOptions): FloatingDock;
165
+ export {};
166
+ }
167
+
168
+ declare module '@jointhedots/ui/src/Inputs/getProps' {
169
+ export function getHtmlProps(props: any): {};
170
+ }
171
+
172
+ declare module '@jointhedots/ui/theme' {
173
+ import React from 'react';
174
+ import '@salesforce-ux/design-system/assets/styles/salesforce-lightning-design-system.css';
175
+ import 'src/theme/theme-dark.scss';
176
+ import 'src/theme/theme-light.scss';
177
+ import 'src/theme/theme.scss';
178
+ export enum ThemeLighting {
179
+ Dark = 0,
180
+ Light = 1
181
+ }
182
+ export class ThemeProvider {
183
+ readonly lighting: ThemeLighting;
184
+ static globalTheme: ThemeProvider;
185
+ contrastTheme: ThemeProvider;
186
+ constructor(lighting: ThemeLighting);
187
+ get isLight(): boolean;
188
+ get isDark(): boolean;
189
+ }
190
+ export function LocalTheme(props: {
191
+ theme: ThemeProvider;
192
+ children: any;
193
+ }): import( 'react/jsx-runtime').JSX.Element;
194
+ export const LightTheme: ThemeProvider;
195
+ export const DarkTheme: ThemeProvider;
196
+ export const ThemeContext: React.Context<ThemeProvider>;
197
+ export function getGlobalTheme(): ThemeProvider;
198
+ }
199
+
200
+ declare module '@jointhedots/ui/src/Icon/collections/url' {
201
+ import { IconCollection, IconElement } from '@jointhedots/ui/src/Icon/Icon';
202
+ export class IconUrlCollection implements IconCollection {
203
+ readonly baseUrl: string;
204
+ constructor(baseUrl: string);
205
+ setup(element: IconElement): void;
206
+ draw(element: IconElement): import( 'react/jsx-runtime').JSX.Element;
207
+ }
208
+ }
209
+
210
+ declare module '@jointhedots/ui/src/Icon/collections/defaults' {
211
+ import { IconCollection, IconElement } from '@jointhedots/ui/src/Icon/Icon';
212
+ export class IconError implements IconCollection {
213
+ setup(element: IconElement): void;
214
+ draw(element: IconElement): import( 'react/jsx-runtime').JSX.Element;
215
+ }
216
+ export class IconBlank implements IconCollection {
217
+ setup(element: IconElement): void;
218
+ draw(element: IconElement): import( 'react/jsx-runtime').JSX.Element;
219
+ }
220
+ }
221
+
222
+ declare module '@jointhedots/ui/src/Icon/Icon' {
223
+ import React from 'react';
224
+ import { ThemeProvider } from '@jointhedots/ui/theme';
225
+ import { MapLike } from '@jointhedots/core';
226
+ export interface IconStyle {
227
+ className?: string;
228
+ style?: MapLike<string | number>;
229
+ }
230
+ export interface IconElement extends IconStyle {
231
+ collection: IconCollection;
232
+ name: string;
233
+ [key: string]: any;
234
+ }
235
+ export interface IconComposed extends IconStyle {
236
+ elements: IconElement[];
237
+ }
238
+ export interface IconCollection {
239
+ setup(element: IconElement): any;
240
+ draw(element: IconElement, theme: ThemeProvider): React.ReactElement;
241
+ }
242
+ export enum IconSize {
243
+ xs = "0.8em",
244
+ sm = "1.0em",
245
+ md = "1.5em",
246
+ lg = "2.0em"
247
+ }
248
+ export type IconProps = {
249
+ name: string;
250
+ size?: IconSize | string;
251
+ inverse?: boolean;
252
+ title?: string;
253
+ className?: string;
254
+ style?: React.CSSProperties;
255
+ onClick?: (evt: any) => void;
256
+ };
257
+ export function registerIconCollection(namespace: string, collection: IconCollection): void;
258
+ export function getIconName(icon: string, name: string): string;
259
+ export function Icon(props: IconProps): React.DetailedReactHTMLElement<{
260
+ name: any;
261
+ inversed: any;
262
+ className: string;
263
+ style: {
264
+ accentColor?: import( 'csstype').Property.AccentColor | undefined;
265
+ alignContent?: import( 'csstype').Property.AlignContent | undefined;
266
+ alignItems?: import( 'csstype').Property.AlignItems | undefined;
267
+ alignSelf?: import( 'csstype').Property.AlignSelf | undefined;
268
+ alignTracks?: import( 'csstype').Property.AlignTracks | undefined;
269
+ alignmentBaseline?: import( 'csstype').Property.AlignmentBaseline | undefined;
270
+ anchorName?: import( 'csstype').Property.AnchorName | undefined;
271
+ anchorScope?: import( 'csstype').Property.AnchorScope | undefined;
272
+ animationComposition?: import( 'csstype').Property.AnimationComposition | undefined;
273
+ animationDelay?: import( 'csstype').Property.AnimationDelay<string & {}>;
274
+ animationDirection?: import( 'csstype').Property.AnimationDirection | undefined;
275
+ animationDuration?: import( 'csstype').Property.AnimationDuration<string & {}>;
276
+ animationFillMode?: import( 'csstype').Property.AnimationFillMode | undefined;
277
+ animationIterationCount?: import( 'csstype').Property.AnimationIterationCount | undefined;
278
+ animationName?: import( 'csstype').Property.AnimationName | undefined;
279
+ animationPlayState?: import( 'csstype').Property.AnimationPlayState | undefined;
280
+ animationRangeEnd?: import( 'csstype').Property.AnimationRangeEnd<string | number>;
281
+ animationRangeStart?: import( 'csstype').Property.AnimationRangeStart<string | number>;
282
+ animationTimeline?: import( 'csstype').Property.AnimationTimeline | undefined;
283
+ animationTimingFunction?: import( 'csstype').Property.AnimationTimingFunction | undefined;
284
+ appearance?: import( 'csstype').Property.Appearance | undefined;
285
+ aspectRatio?: import( 'csstype').Property.AspectRatio | undefined;
286
+ backdropFilter?: import( 'csstype').Property.BackdropFilter | undefined;
287
+ backfaceVisibility?: import( 'csstype').Property.BackfaceVisibility | undefined;
288
+ backgroundAttachment?: import( 'csstype').Property.BackgroundAttachment | undefined;
289
+ backgroundBlendMode?: import( 'csstype').Property.BackgroundBlendMode | undefined;
290
+ backgroundClip?: import( 'csstype').Property.BackgroundClip | undefined;
291
+ backgroundColor?: import( 'csstype').Property.BackgroundColor | undefined;
292
+ backgroundImage?: import( 'csstype').Property.BackgroundImage | undefined;
293
+ backgroundOrigin?: import( 'csstype').Property.BackgroundOrigin | undefined;
294
+ backgroundPositionX?: import( 'csstype').Property.BackgroundPositionX<string | number>;
295
+ backgroundPositionY?: import( 'csstype').Property.BackgroundPositionY<string | number>;
296
+ backgroundRepeat?: import( 'csstype').Property.BackgroundRepeat | undefined;
297
+ backgroundSize?: import( 'csstype').Property.BackgroundSize<string | number>;
298
+ baselineShift?: import( 'csstype').Property.BaselineShift<string | number>;
299
+ blockSize?: import( 'csstype').Property.BlockSize<string | number>;
300
+ borderBlockEndColor?: import( 'csstype').Property.BorderBlockEndColor | undefined;
301
+ borderBlockEndStyle?: import( 'csstype').Property.BorderBlockEndStyle | undefined;
302
+ borderBlockEndWidth?: import( 'csstype').Property.BorderBlockEndWidth<string | number>;
303
+ borderBlockStartColor?: import( 'csstype').Property.BorderBlockStartColor | undefined;
304
+ borderBlockStartStyle?: import( 'csstype').Property.BorderBlockStartStyle | undefined;
305
+ borderBlockStartWidth?: import( 'csstype').Property.BorderBlockStartWidth<string | number>;
306
+ borderBottomColor?: import( 'csstype').Property.BorderBottomColor | undefined;
307
+ borderBottomLeftRadius?: import( 'csstype').Property.BorderBottomLeftRadius<string | number>;
308
+ borderBottomRightRadius?: import( 'csstype').Property.BorderBottomRightRadius<string | number>;
309
+ borderBottomStyle?: import( 'csstype').Property.BorderBottomStyle | undefined;
310
+ borderBottomWidth?: import( 'csstype').Property.BorderBottomWidth<string | number>;
311
+ borderCollapse?: import( 'csstype').Property.BorderCollapse | undefined;
312
+ borderEndEndRadius?: import( 'csstype').Property.BorderEndEndRadius<string | number>;
313
+ borderEndStartRadius?: import( 'csstype').Property.BorderEndStartRadius<string | number>;
314
+ borderImageOutset?: import( 'csstype').Property.BorderImageOutset<string | number>;
315
+ borderImageRepeat?: import( 'csstype').Property.BorderImageRepeat | undefined;
316
+ borderImageSlice?: import( 'csstype').Property.BorderImageSlice | undefined;
317
+ borderImageSource?: import( 'csstype').Property.BorderImageSource | undefined;
318
+ borderImageWidth?: import( 'csstype').Property.BorderImageWidth<string | number>;
319
+ borderInlineEndColor?: import( 'csstype').Property.BorderInlineEndColor | undefined;
320
+ borderInlineEndStyle?: import( 'csstype').Property.BorderInlineEndStyle | undefined;
321
+ borderInlineEndWidth?: import( 'csstype').Property.BorderInlineEndWidth<string | number>;
322
+ borderInlineStartColor?: import( 'csstype').Property.BorderInlineStartColor | undefined;
323
+ borderInlineStartStyle?: import( 'csstype').Property.BorderInlineStartStyle | undefined;
324
+ borderInlineStartWidth?: import( 'csstype').Property.BorderInlineStartWidth<string | number>;
325
+ borderLeftColor?: import( 'csstype').Property.BorderLeftColor | undefined;
326
+ borderLeftStyle?: import( 'csstype').Property.BorderLeftStyle | undefined;
327
+ borderLeftWidth?: import( 'csstype').Property.BorderLeftWidth<string | number>;
328
+ borderRightColor?: import( 'csstype').Property.BorderRightColor | undefined;
329
+ borderRightStyle?: import( 'csstype').Property.BorderRightStyle | undefined;
330
+ borderRightWidth?: import( 'csstype').Property.BorderRightWidth<string | number>;
331
+ borderSpacing?: import( 'csstype').Property.BorderSpacing<string | number>;
332
+ borderStartEndRadius?: import( 'csstype').Property.BorderStartEndRadius<string | number>;
333
+ borderStartStartRadius?: import( 'csstype').Property.BorderStartStartRadius<string | number>;
334
+ borderTopColor?: import( 'csstype').Property.BorderTopColor | undefined;
335
+ borderTopLeftRadius?: import( 'csstype').Property.BorderTopLeftRadius<string | number>;
336
+ borderTopRightRadius?: import( 'csstype').Property.BorderTopRightRadius<string | number>;
337
+ borderTopStyle?: import( 'csstype').Property.BorderTopStyle | undefined;
338
+ borderTopWidth?: import( 'csstype').Property.BorderTopWidth<string | number>;
339
+ bottom?: import( 'csstype').Property.Bottom<string | number>;
340
+ boxDecorationBreak?: import( 'csstype').Property.BoxDecorationBreak | undefined;
341
+ boxShadow?: import( 'csstype').Property.BoxShadow | undefined;
342
+ boxSizing?: import( 'csstype').Property.BoxSizing | undefined;
343
+ breakAfter?: import( 'csstype').Property.BreakAfter | undefined;
344
+ breakBefore?: import( 'csstype').Property.BreakBefore | undefined;
345
+ breakInside?: import( 'csstype').Property.BreakInside | undefined;
346
+ captionSide?: import( 'csstype').Property.CaptionSide | undefined;
347
+ caretColor?: import( 'csstype').Property.CaretColor | undefined;
348
+ caretShape?: import( 'csstype').Property.CaretShape | undefined;
349
+ clear?: import( 'csstype').Property.Clear | undefined;
350
+ clipPath?: import( 'csstype').Property.ClipPath | undefined;
351
+ clipRule?: import( 'csstype').Property.ClipRule | undefined;
352
+ color?: import( 'csstype').Property.Color | undefined;
353
+ colorAdjust?: import( 'csstype').Property.PrintColorAdjust | undefined;
354
+ colorInterpolationFilters?: import( 'csstype').Property.ColorInterpolationFilters | undefined;
355
+ colorScheme?: import( 'csstype').Property.ColorScheme | undefined;
356
+ columnCount?: import( 'csstype').Property.ColumnCount | undefined;
357
+ columnFill?: import( 'csstype').Property.ColumnFill | undefined;
358
+ columnGap?: import( 'csstype').Property.ColumnGap<string | number>;
359
+ columnRuleColor?: import( 'csstype').Property.ColumnRuleColor | undefined;
360
+ columnRuleStyle?: import( 'csstype').Property.ColumnRuleStyle | undefined;
361
+ columnRuleWidth?: import( 'csstype').Property.ColumnRuleWidth<string | number>;
362
+ columnSpan?: import( 'csstype').Property.ColumnSpan | undefined;
363
+ columnWidth?: import( 'csstype').Property.ColumnWidth<string | number>;
364
+ contain?: import( 'csstype').Property.Contain | undefined;
365
+ containIntrinsicBlockSize?: import( 'csstype').Property.ContainIntrinsicBlockSize<string | number>;
366
+ containIntrinsicHeight?: import( 'csstype').Property.ContainIntrinsicHeight<string | number>;
367
+ containIntrinsicInlineSize?: import( 'csstype').Property.ContainIntrinsicInlineSize<string | number>;
368
+ containIntrinsicWidth?: import( 'csstype').Property.ContainIntrinsicWidth<string | number>;
369
+ containerName?: import( 'csstype').Property.ContainerName | undefined;
370
+ containerType?: import( 'csstype').Property.ContainerType | undefined;
371
+ content?: import( 'csstype').Property.Content | undefined;
372
+ contentVisibility?: import( 'csstype').Property.ContentVisibility | undefined;
373
+ counterIncrement?: import( 'csstype').Property.CounterIncrement | undefined;
374
+ counterReset?: import( 'csstype').Property.CounterReset | undefined;
375
+ counterSet?: import( 'csstype').Property.CounterSet | undefined;
376
+ cursor?: import( 'csstype').Property.Cursor | undefined;
377
+ cx?: import( 'csstype').Property.Cx<string | number>;
378
+ cy?: import( 'csstype').Property.Cy<string | number>;
379
+ d?: import( 'csstype').Property.D | undefined;
380
+ direction?: import( 'csstype').Property.Direction | undefined;
381
+ display?: import( 'csstype').Property.Display | undefined;
382
+ dominantBaseline?: import( 'csstype').Property.DominantBaseline | undefined;
383
+ emptyCells?: import( 'csstype').Property.EmptyCells | undefined;
384
+ fieldSizing?: import( 'csstype').Property.FieldSizing | undefined;
385
+ fill?: import( 'csstype').Property.Fill | undefined;
386
+ fillOpacity?: import( 'csstype').Property.FillOpacity | undefined;
387
+ fillRule?: import( 'csstype').Property.FillRule | undefined;
388
+ filter?: import( 'csstype').Property.Filter | undefined;
389
+ flexBasis?: import( 'csstype').Property.FlexBasis<string | number>;
390
+ flexDirection?: import( 'csstype').Property.FlexDirection | undefined;
391
+ flexGrow?: import( 'csstype').Property.FlexGrow | undefined;
392
+ flexShrink?: import( 'csstype').Property.FlexShrink | undefined;
393
+ flexWrap?: import( 'csstype').Property.FlexWrap | undefined;
394
+ float?: import( 'csstype').Property.Float | undefined;
395
+ floodColor?: import( 'csstype').Property.FloodColor | undefined;
396
+ floodOpacity?: import( 'csstype').Property.FloodOpacity | undefined;
397
+ fontFamily?: import( 'csstype').Property.FontFamily | undefined;
398
+ fontFeatureSettings?: import( 'csstype').Property.FontFeatureSettings | undefined;
399
+ fontKerning?: import( 'csstype').Property.FontKerning | undefined;
400
+ fontLanguageOverride?: import( 'csstype').Property.FontLanguageOverride | undefined;
401
+ fontOpticalSizing?: import( 'csstype').Property.FontOpticalSizing | undefined;
402
+ fontPalette?: import( 'csstype').Property.FontPalette | undefined;
403
+ fontSize: any;
404
+ fontSizeAdjust?: import( 'csstype').Property.FontSizeAdjust | undefined;
405
+ fontSmooth?: import( 'csstype').Property.FontSmooth<string | number>;
406
+ fontStyle?: import( 'csstype').Property.FontStyle | undefined;
407
+ fontSynthesis?: import( 'csstype').Property.FontSynthesis | undefined;
408
+ fontSynthesisPosition?: import( 'csstype').Property.FontSynthesisPosition | undefined;
409
+ fontSynthesisSmallCaps?: import( 'csstype').Property.FontSynthesisSmallCaps | undefined;
410
+ fontSynthesisStyle?: import( 'csstype').Property.FontSynthesisStyle | undefined;
411
+ fontSynthesisWeight?: import( 'csstype').Property.FontSynthesisWeight | undefined;
412
+ fontVariant?: import( 'csstype').Property.FontVariant | undefined;
413
+ fontVariantAlternates?: import( 'csstype').Property.FontVariantAlternates | undefined;
414
+ fontVariantCaps?: import( 'csstype').Property.FontVariantCaps | undefined;
415
+ fontVariantEastAsian?: import( 'csstype').Property.FontVariantEastAsian | undefined;
416
+ fontVariantEmoji?: import( 'csstype').Property.FontVariantEmoji | undefined;
417
+ fontVariantLigatures?: import( 'csstype').Property.FontVariantLigatures | undefined;
418
+ fontVariantNumeric?: import( 'csstype').Property.FontVariantNumeric | undefined;
419
+ fontVariantPosition?: import( 'csstype').Property.FontVariantPosition | undefined;
420
+ fontVariationSettings?: import( 'csstype').Property.FontVariationSettings | undefined;
421
+ fontWeight?: import( 'csstype').Property.FontWeight | undefined;
422
+ fontWidth?: import( 'csstype').Property.FontWidth | undefined;
423
+ forcedColorAdjust?: import( 'csstype').Property.ForcedColorAdjust | undefined;
424
+ gridAutoColumns?: import( 'csstype').Property.GridAutoColumns<string | number>;
425
+ gridAutoFlow?: import( 'csstype').Property.GridAutoFlow | undefined;
426
+ gridAutoRows?: import( 'csstype').Property.GridAutoRows<string | number>;
427
+ gridColumnEnd?: import( 'csstype').Property.GridColumnEnd | undefined;
428
+ gridColumnStart?: import( 'csstype').Property.GridColumnStart | undefined;
429
+ gridRowEnd?: import( 'csstype').Property.GridRowEnd | undefined;
430
+ gridRowStart?: import( 'csstype').Property.GridRowStart | undefined;
431
+ gridTemplateAreas?: import( 'csstype').Property.GridTemplateAreas | undefined;
432
+ gridTemplateColumns?: import( 'csstype').Property.GridTemplateColumns<string | number>;
433
+ gridTemplateRows?: import( 'csstype').Property.GridTemplateRows<string | number>;
434
+ hangingPunctuation?: import( 'csstype').Property.HangingPunctuation | undefined;
435
+ height?: import( 'csstype').Property.Height<string | number>;
436
+ hyphenateCharacter?: import( 'csstype').Property.HyphenateCharacter | undefined;
437
+ hyphenateLimitChars?: import( 'csstype').Property.HyphenateLimitChars | undefined;
438
+ hyphens?: import( 'csstype').Property.Hyphens | undefined;
439
+ imageOrientation?: import( 'csstype').Property.ImageOrientation | undefined;
440
+ imageRendering?: import( 'csstype').Property.ImageRendering | undefined;
441
+ imageResolution?: import( 'csstype').Property.ImageResolution | undefined;
442
+ initialLetter?: import( 'csstype').Property.InitialLetter | undefined;
443
+ initialLetterAlign?: import( 'csstype').Property.InitialLetterAlign | undefined;
444
+ inlineSize?: import( 'csstype').Property.InlineSize<string | number>;
445
+ insetBlockEnd?: import( 'csstype').Property.InsetBlockEnd<string | number>;
446
+ insetBlockStart?: import( 'csstype').Property.InsetBlockStart<string | number>;
447
+ insetInlineEnd?: import( 'csstype').Property.InsetInlineEnd<string | number>;
448
+ insetInlineStart?: import( 'csstype').Property.InsetInlineStart<string | number>;
449
+ interpolateSize?: import( 'csstype').Property.InterpolateSize | undefined;
450
+ isolation?: import( 'csstype').Property.Isolation | undefined;
451
+ justifyContent?: import( 'csstype').Property.JustifyContent | undefined;
452
+ justifyItems?: import( 'csstype').Property.JustifyItems | undefined;
453
+ justifySelf?: import( 'csstype').Property.JustifySelf | undefined;
454
+ justifyTracks?: import( 'csstype').Property.JustifyTracks | undefined;
455
+ left?: import( 'csstype').Property.Left<string | number>;
456
+ letterSpacing?: import( 'csstype').Property.LetterSpacing<string | number>;
457
+ lightingColor?: import( 'csstype').Property.LightingColor | undefined;
458
+ lineBreak?: import( 'csstype').Property.LineBreak | undefined;
459
+ lineHeight?: import( 'csstype').Property.LineHeight<string | number>;
460
+ lineHeightStep?: import( 'csstype').Property.LineHeightStep<string | number>;
461
+ listStyleImage?: import( 'csstype').Property.ListStyleImage | undefined;
462
+ listStylePosition?: import( 'csstype').Property.ListStylePosition | undefined;
463
+ listStyleType?: import( 'csstype').Property.ListStyleType | undefined;
464
+ marginBlockEnd?: import( 'csstype').Property.MarginBlockEnd<string | number>;
465
+ marginBlockStart?: import( 'csstype').Property.MarginBlockStart<string | number>;
466
+ marginBottom?: import( 'csstype').Property.MarginBottom<string | number>;
467
+ marginInlineEnd?: import( 'csstype').Property.MarginInlineEnd<string | number>;
468
+ marginInlineStart?: import( 'csstype').Property.MarginInlineStart<string | number>;
469
+ marginLeft?: import( 'csstype').Property.MarginLeft<string | number>;
470
+ marginRight?: import( 'csstype').Property.MarginRight<string | number>;
471
+ marginTop?: import( 'csstype').Property.MarginTop<string | number>;
472
+ marginTrim?: import( 'csstype').Property.MarginTrim | undefined;
473
+ marker?: import( 'csstype').Property.Marker | undefined;
474
+ markerEnd?: import( 'csstype').Property.MarkerEnd | undefined;
475
+ markerMid?: import( 'csstype').Property.MarkerMid | undefined;
476
+ markerStart?: import( 'csstype').Property.MarkerStart | undefined;
477
+ maskBorderMode?: import( 'csstype').Property.MaskBorderMode | undefined;
478
+ maskBorderOutset?: import( 'csstype').Property.MaskBorderOutset<string | number>;
479
+ maskBorderRepeat?: import( 'csstype').Property.MaskBorderRepeat | undefined;
480
+ maskBorderSlice?: import( 'csstype').Property.MaskBorderSlice | undefined;
481
+ maskBorderSource?: import( 'csstype').Property.MaskBorderSource | undefined;
482
+ maskBorderWidth?: import( 'csstype').Property.MaskBorderWidth<string | number>;
483
+ maskClip?: import( 'csstype').Property.MaskClip | undefined;
484
+ maskComposite?: import( 'csstype').Property.MaskComposite | undefined;
485
+ maskImage?: import( 'csstype').Property.MaskImage | undefined;
486
+ maskMode?: import( 'csstype').Property.MaskMode | undefined;
487
+ maskOrigin?: import( 'csstype').Property.MaskOrigin | undefined;
488
+ maskPosition?: import( 'csstype').Property.MaskPosition<string | number>;
489
+ maskRepeat?: import( 'csstype').Property.MaskRepeat | undefined;
490
+ maskSize?: import( 'csstype').Property.MaskSize<string | number>;
491
+ maskType?: import( 'csstype').Property.MaskType | undefined;
492
+ masonryAutoFlow?: import( 'csstype').Property.MasonryAutoFlow | undefined;
493
+ mathDepth?: import( 'csstype').Property.MathDepth | undefined;
494
+ mathShift?: import( 'csstype').Property.MathShift | undefined;
495
+ mathStyle?: import( 'csstype').Property.MathStyle | undefined;
496
+ maxBlockSize?: import( 'csstype').Property.MaxBlockSize<string | number>;
497
+ maxHeight?: import( 'csstype').Property.MaxHeight<string | number>;
498
+ maxInlineSize?: import( 'csstype').Property.MaxInlineSize<string | number>;
499
+ maxLines?: import( 'csstype').Property.MaxLines | undefined;
500
+ maxWidth?: import( 'csstype').Property.MaxWidth<string | number>;
501
+ minBlockSize?: import( 'csstype').Property.MinBlockSize<string | number>;
502
+ minHeight?: import( 'csstype').Property.MinHeight<string | number>;
503
+ minInlineSize?: import( 'csstype').Property.MinInlineSize<string | number>;
504
+ minWidth?: import( 'csstype').Property.MinWidth<string | number>;
505
+ mixBlendMode?: import( 'csstype').Property.MixBlendMode | undefined;
506
+ motionDistance?: import( 'csstype').Property.OffsetDistance<string | number>;
507
+ motionPath?: import( 'csstype').Property.OffsetPath | undefined;
508
+ motionRotation?: import( 'csstype').Property.OffsetRotate | undefined;
509
+ objectFit?: import( 'csstype').Property.ObjectFit | undefined;
510
+ objectPosition?: import( 'csstype').Property.ObjectPosition<string | number>;
511
+ objectViewBox?: import( 'csstype').Property.ObjectViewBox | undefined;
512
+ offsetAnchor?: import( 'csstype').Property.OffsetAnchor<string | number>;
513
+ offsetDistance?: import( 'csstype').Property.OffsetDistance<string | number>;
514
+ offsetPath?: import( 'csstype').Property.OffsetPath | undefined;
515
+ offsetPosition?: import( 'csstype').Property.OffsetPosition<string | number>;
516
+ offsetRotate?: import( 'csstype').Property.OffsetRotate | undefined;
517
+ offsetRotation?: import( 'csstype').Property.OffsetRotate | undefined;
518
+ opacity?: import( 'csstype').Property.Opacity | undefined;
519
+ order?: import( 'csstype').Property.Order | undefined;
520
+ orphans?: import( 'csstype').Property.Orphans | undefined;
521
+ outlineColor?: import( 'csstype').Property.OutlineColor | undefined;
522
+ outlineOffset?: import( 'csstype').Property.OutlineOffset<string | number>;
523
+ outlineStyle?: import( 'csstype').Property.OutlineStyle | undefined;
524
+ outlineWidth?: import( 'csstype').Property.OutlineWidth<string | number>;
525
+ overflowAnchor?: import( 'csstype').Property.OverflowAnchor | undefined;
526
+ overflowBlock?: import( 'csstype').Property.OverflowBlock | undefined;
527
+ overflowClipBox?: import( 'csstype').Property.OverflowClipBox | undefined;
528
+ overflowClipMargin?: import( 'csstype').Property.OverflowClipMargin<string | number>;
529
+ overflowInline?: import( 'csstype').Property.OverflowInline | undefined;
530
+ overflowWrap?: import( 'csstype').Property.OverflowWrap | undefined;
531
+ overflowX?: import( 'csstype').Property.OverflowX | undefined;
532
+ overflowY?: import( 'csstype').Property.OverflowY | undefined;
533
+ overlay?: import( 'csstype').Property.Overlay | undefined;
534
+ overscrollBehaviorBlock?: import( 'csstype').Property.OverscrollBehaviorBlock | undefined;
535
+ overscrollBehaviorInline?: import( 'csstype').Property.OverscrollBehaviorInline | undefined;
536
+ overscrollBehaviorX?: import( 'csstype').Property.OverscrollBehaviorX | undefined;
537
+ overscrollBehaviorY?: import( 'csstype').Property.OverscrollBehaviorY | undefined;
538
+ paddingBlockEnd?: import( 'csstype').Property.PaddingBlockEnd<string | number>;
539
+ paddingBlockStart?: import( 'csstype').Property.PaddingBlockStart<string | number>;
540
+ paddingBottom?: import( 'csstype').Property.PaddingBottom<string | number>;
541
+ paddingInlineEnd?: import( 'csstype').Property.PaddingInlineEnd<string | number>;
542
+ paddingInlineStart?: import( 'csstype').Property.PaddingInlineStart<string | number>;
543
+ paddingLeft?: import( 'csstype').Property.PaddingLeft<string | number>;
544
+ paddingRight?: import( 'csstype').Property.PaddingRight<string | number>;
545
+ paddingTop?: import( 'csstype').Property.PaddingTop<string | number>;
546
+ page?: import( 'csstype').Property.Page | undefined;
547
+ paintOrder?: import( 'csstype').Property.PaintOrder | undefined;
548
+ perspective?: import( 'csstype').Property.Perspective<string | number>;
549
+ perspectiveOrigin?: import( 'csstype').Property.PerspectiveOrigin<string | number>;
550
+ pointerEvents?: import( 'csstype').Property.PointerEvents | undefined;
551
+ position?: import( 'csstype').Property.Position | undefined;
552
+ positionAnchor?: import( 'csstype').Property.PositionAnchor | undefined;
553
+ positionArea?: import( 'csstype').Property.PositionArea | undefined;
554
+ positionTryFallbacks?: import( 'csstype').Property.PositionTryFallbacks | undefined;
555
+ positionTryOrder?: import( 'csstype').Property.PositionTryOrder | undefined;
556
+ positionVisibility?: import( 'csstype').Property.PositionVisibility | undefined;
557
+ printColorAdjust?: import( 'csstype').Property.PrintColorAdjust | undefined;
558
+ quotes?: import( 'csstype').Property.Quotes | undefined;
559
+ r?: import( 'csstype').Property.R<string | number>;
560
+ resize?: import( 'csstype').Property.Resize | undefined;
561
+ right?: import( 'csstype').Property.Right<string | number>;
562
+ rotate?: import( 'csstype').Property.Rotate | undefined;
563
+ rowGap?: import( 'csstype').Property.RowGap<string | number>;
564
+ rubyAlign?: import( 'csstype').Property.RubyAlign | undefined;
565
+ rubyMerge?: import( 'csstype').Property.RubyMerge | undefined;
566
+ rubyOverhang?: import( 'csstype').Property.RubyOverhang | undefined;
567
+ rubyPosition?: import( 'csstype').Property.RubyPosition | undefined;
568
+ rx?: import( 'csstype').Property.Rx<string | number>;
569
+ ry?: import( 'csstype').Property.Ry<string | number>;
570
+ scale?: import( 'csstype').Property.Scale | undefined;
571
+ scrollBehavior?: import( 'csstype').Property.ScrollBehavior | undefined;
572
+ scrollInitialTarget?: import( 'csstype').Property.ScrollInitialTarget | undefined;
573
+ scrollMarginBlockEnd?: import( 'csstype').Property.ScrollMarginBlockEnd<string | number>;
574
+ scrollMarginBlockStart?: import( 'csstype').Property.ScrollMarginBlockStart<string | number>;
575
+ scrollMarginBottom?: import( 'csstype').Property.ScrollMarginBottom<string | number>;
576
+ scrollMarginInlineEnd?: import( 'csstype').Property.ScrollMarginInlineEnd<string | number>;
577
+ scrollMarginInlineStart?: import( 'csstype').Property.ScrollMarginInlineStart<string | number>;
578
+ scrollMarginLeft?: import( 'csstype').Property.ScrollMarginLeft<string | number>;
579
+ scrollMarginRight?: import( 'csstype').Property.ScrollMarginRight<string | number>;
580
+ scrollMarginTop?: import( 'csstype').Property.ScrollMarginTop<string | number>;
581
+ scrollPaddingBlockEnd?: import( 'csstype').Property.ScrollPaddingBlockEnd<string | number>;
582
+ scrollPaddingBlockStart?: import( 'csstype').Property.ScrollPaddingBlockStart<string | number>;
583
+ scrollPaddingBottom?: import( 'csstype').Property.ScrollPaddingBottom<string | number>;
584
+ scrollPaddingInlineEnd?: import( 'csstype').Property.ScrollPaddingInlineEnd<string | number>;
585
+ scrollPaddingInlineStart?: import( 'csstype').Property.ScrollPaddingInlineStart<string | number>;
586
+ scrollPaddingLeft?: import( 'csstype').Property.ScrollPaddingLeft<string | number>;
587
+ scrollPaddingRight?: import( 'csstype').Property.ScrollPaddingRight<string | number>;
588
+ scrollPaddingTop?: import( 'csstype').Property.ScrollPaddingTop<string | number>;
589
+ scrollSnapAlign?: import( 'csstype').Property.ScrollSnapAlign | undefined;
590
+ scrollSnapMarginBottom?: import( 'csstype').Property.ScrollMarginBottom<string | number>;
591
+ scrollSnapMarginLeft?: import( 'csstype').Property.ScrollMarginLeft<string | number>;
592
+ scrollSnapMarginRight?: import( 'csstype').Property.ScrollMarginRight<string | number>;
593
+ scrollSnapMarginTop?: import( 'csstype').Property.ScrollMarginTop<string | number>;
594
+ scrollSnapStop?: import( 'csstype').Property.ScrollSnapStop | undefined;
595
+ scrollSnapType?: import( 'csstype').Property.ScrollSnapType | undefined;
596
+ scrollTimelineAxis?: import( 'csstype').Property.ScrollTimelineAxis | undefined;
597
+ scrollTimelineName?: import( 'csstype').Property.ScrollTimelineName | undefined;
598
+ scrollbarColor?: import( 'csstype').Property.ScrollbarColor | undefined;
599
+ scrollbarGutter?: import( 'csstype').Property.ScrollbarGutter | undefined;
600
+ scrollbarWidth?: import( 'csstype').Property.ScrollbarWidth | undefined;
601
+ shapeImageThreshold?: import( 'csstype').Property.ShapeImageThreshold | undefined;
602
+ shapeMargin?: import( 'csstype').Property.ShapeMargin<string | number>;
603
+ shapeOutside?: import( 'csstype').Property.ShapeOutside | undefined;
604
+ shapeRendering?: import( 'csstype').Property.ShapeRendering | undefined;
605
+ speakAs?: import( 'csstype').Property.SpeakAs | undefined;
606
+ stopColor?: import( 'csstype').Property.StopColor | undefined;
607
+ stopOpacity?: import( 'csstype').Property.StopOpacity | undefined;
608
+ stroke?: import( 'csstype').Property.Stroke | undefined;
609
+ strokeColor?: import( 'csstype').Property.StrokeColor | undefined;
610
+ strokeDasharray?: import( 'csstype').Property.StrokeDasharray<string | number>;
611
+ strokeDashoffset?: import( 'csstype').Property.StrokeDashoffset<string | number>;
612
+ strokeLinecap?: import( 'csstype').Property.StrokeLinecap | undefined;
613
+ strokeLinejoin?: import( 'csstype').Property.StrokeLinejoin | undefined;
614
+ strokeMiterlimit?: import( 'csstype').Property.StrokeMiterlimit | undefined;
615
+ strokeOpacity?: import( 'csstype').Property.StrokeOpacity | undefined;
616
+ strokeWidth?: import( 'csstype').Property.StrokeWidth<string | number>;
617
+ tabSize?: import( 'csstype').Property.TabSize<string | number>;
618
+ tableLayout?: import( 'csstype').Property.TableLayout | undefined;
619
+ textAlign?: import( 'csstype').Property.TextAlign | undefined;
620
+ textAlignLast?: import( 'csstype').Property.TextAlignLast | undefined;
621
+ textAnchor?: import( 'csstype').Property.TextAnchor | undefined;
622
+ textAutospace?: import( 'csstype').Property.TextAutospace | undefined;
623
+ textBox?: import( 'csstype').Property.TextBox | undefined;
624
+ textBoxEdge?: import( 'csstype').Property.TextBoxEdge | undefined;
625
+ textBoxTrim?: import( 'csstype').Property.TextBoxTrim | undefined;
626
+ textCombineUpright?: import( 'csstype').Property.TextCombineUpright | undefined;
627
+ textDecorationColor?: import( 'csstype').Property.TextDecorationColor | undefined;
628
+ textDecorationLine?: import( 'csstype').Property.TextDecorationLine | undefined;
629
+ textDecorationSkip?: import( 'csstype').Property.TextDecorationSkip | undefined;
630
+ textDecorationSkipInk?: import( 'csstype').Property.TextDecorationSkipInk | undefined;
631
+ textDecorationStyle?: import( 'csstype').Property.TextDecorationStyle | undefined;
632
+ textDecorationThickness?: import( 'csstype').Property.TextDecorationThickness<string | number>;
633
+ textEmphasisColor?: import( 'csstype').Property.TextEmphasisColor | undefined;
634
+ textEmphasisPosition?: import( 'csstype').Property.TextEmphasisPosition | undefined;
635
+ textEmphasisStyle?: import( 'csstype').Property.TextEmphasisStyle | undefined;
636
+ textIndent?: import( 'csstype').Property.TextIndent<string | number>;
637
+ textJustify?: import( 'csstype').Property.TextJustify | undefined;
638
+ textOrientation?: import( 'csstype').Property.TextOrientation | undefined;
639
+ textOverflow?: import( 'csstype').Property.TextOverflow | undefined;
640
+ textRendering?: import( 'csstype').Property.TextRendering | undefined;
641
+ textShadow?: import( 'csstype').Property.TextShadow | undefined;
642
+ textSizeAdjust?: import( 'csstype').Property.TextSizeAdjust | undefined;
643
+ textSpacingTrim?: import( 'csstype').Property.TextSpacingTrim | undefined;
644
+ textTransform?: import( 'csstype').Property.TextTransform | undefined;
645
+ textUnderlineOffset?: import( 'csstype').Property.TextUnderlineOffset<string | number>;
646
+ textUnderlinePosition?: import( 'csstype').Property.TextUnderlinePosition | undefined;
647
+ textWrapMode?: import( 'csstype').Property.TextWrapMode | undefined;
648
+ textWrapStyle?: import( 'csstype').Property.TextWrapStyle | undefined;
649
+ timelineScope?: import( 'csstype').Property.TimelineScope | undefined;
650
+ top?: import( 'csstype').Property.Top<string | number>;
651
+ touchAction?: import( 'csstype').Property.TouchAction | undefined;
652
+ transform?: import( 'csstype').Property.Transform | undefined;
653
+ transformBox?: import( 'csstype').Property.TransformBox | undefined;
654
+ transformOrigin?: import( 'csstype').Property.TransformOrigin<string | number>;
655
+ transformStyle?: import( 'csstype').Property.TransformStyle | undefined;
656
+ transitionBehavior?: import( 'csstype').Property.TransitionBehavior | undefined;
657
+ transitionDelay?: import( 'csstype').Property.TransitionDelay<string & {}>;
658
+ transitionDuration?: import( 'csstype').Property.TransitionDuration<string & {}>;
659
+ transitionProperty?: import( 'csstype').Property.TransitionProperty | undefined;
660
+ transitionTimingFunction?: import( 'csstype').Property.TransitionTimingFunction | undefined;
661
+ translate?: import( 'csstype').Property.Translate<string | number>;
662
+ unicodeBidi?: import( 'csstype').Property.UnicodeBidi | undefined;
663
+ userSelect?: import( 'csstype').Property.UserSelect | undefined;
664
+ vectorEffect?: import( 'csstype').Property.VectorEffect | undefined;
665
+ verticalAlign?: import( 'csstype').Property.VerticalAlign<string | number>;
666
+ viewTimelineAxis?: import( 'csstype').Property.ViewTimelineAxis | undefined;
667
+ viewTimelineInset?: import( 'csstype').Property.ViewTimelineInset<string | number>;
668
+ viewTimelineName?: import( 'csstype').Property.ViewTimelineName | undefined;
669
+ viewTransitionClass?: import( 'csstype').Property.ViewTransitionClass | undefined;
670
+ viewTransitionName?: import( 'csstype').Property.ViewTransitionName | undefined;
671
+ visibility?: import( 'csstype').Property.Visibility | undefined;
672
+ whiteSpace?: import( 'csstype').Property.WhiteSpace | undefined;
673
+ whiteSpaceCollapse?: import( 'csstype').Property.WhiteSpaceCollapse | undefined;
674
+ widows?: import( 'csstype').Property.Widows | undefined;
675
+ width?: import( 'csstype').Property.Width<string | number>;
676
+ willChange?: import( 'csstype').Property.WillChange | undefined;
677
+ wordBreak?: import( 'csstype').Property.WordBreak | undefined;
678
+ wordSpacing?: import( 'csstype').Property.WordSpacing<string | number>;
679
+ wordWrap?: import( 'csstype').Property.WordWrap | undefined;
680
+ writingMode?: import( 'csstype').Property.WritingMode | undefined;
681
+ x?: import( 'csstype').Property.X<string | number>;
682
+ y?: import( 'csstype').Property.Y<string | number>;
683
+ zIndex?: import( 'csstype').Property.ZIndex | undefined;
684
+ zoom?: import( 'csstype').Property.Zoom | undefined;
685
+ all?: import( 'csstype').Property.All | undefined;
686
+ animation?: import( 'csstype').Property.Animation<string & {}>;
687
+ animationRange?: import( 'csstype').Property.AnimationRange<string | number>;
688
+ background?: import( 'csstype').Property.Background<string | number>;
689
+ backgroundPosition?: import( 'csstype').Property.BackgroundPosition<string | number>;
690
+ border?: import( 'csstype').Property.Border<string | number>;
691
+ borderBlock?: import( 'csstype').Property.BorderBlock<string | number>;
692
+ borderBlockColor?: import( 'csstype').Property.BorderBlockColor | undefined;
693
+ borderBlockEnd?: import( 'csstype').Property.BorderBlockEnd<string | number>;
694
+ borderBlockStart?: import( 'csstype').Property.BorderBlockStart<string | number>;
695
+ borderBlockStyle?: import( 'csstype').Property.BorderBlockStyle | undefined;
696
+ borderBlockWidth?: import( 'csstype').Property.BorderBlockWidth<string | number>;
697
+ borderBottom?: import( 'csstype').Property.BorderBottom<string | number>;
698
+ borderColor?: import( 'csstype').Property.BorderColor | undefined;
699
+ borderImage?: import( 'csstype').Property.BorderImage | undefined;
700
+ borderInline?: import( 'csstype').Property.BorderInline<string | number>;
701
+ borderInlineColor?: import( 'csstype').Property.BorderInlineColor | undefined;
702
+ borderInlineEnd?: import( 'csstype').Property.BorderInlineEnd<string | number>;
703
+ borderInlineStart?: import( 'csstype').Property.BorderInlineStart<string | number>;
704
+ borderInlineStyle?: import( 'csstype').Property.BorderInlineStyle | undefined;
705
+ borderInlineWidth?: import( 'csstype').Property.BorderInlineWidth<string | number>;
706
+ borderLeft?: import( 'csstype').Property.BorderLeft<string | number>;
707
+ borderRadius?: import( 'csstype').Property.BorderRadius<string | number>;
708
+ borderRight?: import( 'csstype').Property.BorderRight<string | number>;
709
+ borderStyle?: import( 'csstype').Property.BorderStyle | undefined;
710
+ borderTop?: import( 'csstype').Property.BorderTop<string | number>;
711
+ borderWidth?: import( 'csstype').Property.BorderWidth<string | number>;
712
+ caret?: import( 'csstype').Property.Caret | undefined;
713
+ columnRule?: import( 'csstype').Property.ColumnRule<string | number>;
714
+ columns?: import( 'csstype').Property.Columns<string | number>;
715
+ containIntrinsicSize?: import( 'csstype').Property.ContainIntrinsicSize<string | number>;
716
+ container?: import( 'csstype').Property.Container | undefined;
717
+ flex?: import( 'csstype').Property.Flex<string | number>;
718
+ flexFlow?: import( 'csstype').Property.FlexFlow | undefined;
719
+ font?: import( 'csstype').Property.Font | undefined;
720
+ gap?: import( 'csstype').Property.Gap<string | number>;
721
+ grid?: import( 'csstype').Property.Grid | undefined;
722
+ gridArea?: import( 'csstype').Property.GridArea | undefined;
723
+ gridColumn?: import( 'csstype').Property.GridColumn | undefined;
724
+ gridRow?: import( 'csstype').Property.GridRow | undefined;
725
+ gridTemplate?: import( 'csstype').Property.GridTemplate | undefined;
726
+ inset?: import( 'csstype').Property.Inset<string | number>;
727
+ insetBlock?: import( 'csstype').Property.InsetBlock<string | number>;
728
+ insetInline?: import( 'csstype').Property.InsetInline<string | number>;
729
+ lineClamp?: import( 'csstype').Property.LineClamp | undefined;
730
+ listStyle?: import( 'csstype').Property.ListStyle | undefined;
731
+ margin?: import( 'csstype').Property.Margin<string | number>;
732
+ marginBlock?: import( 'csstype').Property.MarginBlock<string | number>;
733
+ marginInline?: import( 'csstype').Property.MarginInline<string | number>;
734
+ mask?: import( 'csstype').Property.Mask<string | number>;
735
+ maskBorder?: import( 'csstype').Property.MaskBorder | undefined;
736
+ motion?: import( 'csstype').Property.Offset<string | number>;
737
+ offset?: import( 'csstype').Property.Offset<string | number>;
738
+ outline?: import( 'csstype').Property.Outline<string | number>;
739
+ overflow?: import( 'csstype').Property.Overflow | undefined;
740
+ overscrollBehavior?: import( 'csstype').Property.OverscrollBehavior | undefined;
741
+ padding?: import( 'csstype').Property.Padding<string | number>;
742
+ paddingBlock?: import( 'csstype').Property.PaddingBlock<string | number>;
743
+ paddingInline?: import( 'csstype').Property.PaddingInline<string | number>;
744
+ placeContent?: import( 'csstype').Property.PlaceContent | undefined;
745
+ placeItems?: import( 'csstype').Property.PlaceItems | undefined;
746
+ placeSelf?: import( 'csstype').Property.PlaceSelf | undefined;
747
+ positionTry?: import( 'csstype').Property.PositionTry | undefined;
748
+ scrollMargin?: import( 'csstype').Property.ScrollMargin<string | number>;
749
+ scrollMarginBlock?: import( 'csstype').Property.ScrollMarginBlock<string | number>;
750
+ scrollMarginInline?: import( 'csstype').Property.ScrollMarginInline<string | number>;
751
+ scrollPadding?: import( 'csstype').Property.ScrollPadding<string | number>;
752
+ scrollPaddingBlock?: import( 'csstype').Property.ScrollPaddingBlock<string | number>;
753
+ scrollPaddingInline?: import( 'csstype').Property.ScrollPaddingInline<string | number>;
754
+ scrollSnapMargin?: import( 'csstype').Property.ScrollMargin<string | number>;
755
+ scrollTimeline?: import( 'csstype').Property.ScrollTimeline | undefined;
756
+ textDecoration?: import( 'csstype').Property.TextDecoration<string | number>;
757
+ textEmphasis?: import( 'csstype').Property.TextEmphasis | undefined;
758
+ textWrap?: import( 'csstype').Property.TextWrap | undefined;
759
+ transition?: import( 'csstype').Property.Transition<string & {}>;
760
+ viewTimeline?: import( 'csstype').Property.ViewTimeline | undefined;
761
+ MozAnimationDelay?: import( 'csstype').Property.AnimationDelay<string & {}>;
762
+ MozAnimationDirection?: import( 'csstype').Property.AnimationDirection | undefined;
763
+ MozAnimationDuration?: import( 'csstype').Property.AnimationDuration<string & {}>;
764
+ MozAnimationFillMode?: import( 'csstype').Property.AnimationFillMode | undefined;
765
+ MozAnimationIterationCount?: import( 'csstype').Property.AnimationIterationCount | undefined;
766
+ MozAnimationName?: import( 'csstype').Property.AnimationName | undefined;
767
+ MozAnimationPlayState?: import( 'csstype').Property.AnimationPlayState | undefined;
768
+ MozAnimationTimingFunction?: import( 'csstype').Property.AnimationTimingFunction | undefined;
769
+ MozAppearance?: import( 'csstype').Property.MozAppearance | undefined;
770
+ MozBackfaceVisibility?: import( 'csstype').Property.BackfaceVisibility | undefined;
771
+ MozBinding?: import( 'csstype').Property.MozBinding | undefined;
772
+ MozBorderBottomColors?: import( 'csstype').Property.MozBorderBottomColors | undefined;
773
+ MozBorderEndColor?: import( 'csstype').Property.BorderInlineEndColor | undefined;
774
+ MozBorderEndStyle?: import( 'csstype').Property.BorderInlineEndStyle | undefined;
775
+ MozBorderEndWidth?: import( 'csstype').Property.BorderInlineEndWidth<string | number>;
776
+ MozBorderLeftColors?: import( 'csstype').Property.MozBorderLeftColors | undefined;
777
+ MozBorderRightColors?: import( 'csstype').Property.MozBorderRightColors | undefined;
778
+ MozBorderStartColor?: import( 'csstype').Property.BorderInlineStartColor | undefined;
779
+ MozBorderStartStyle?: import( 'csstype').Property.BorderInlineStartStyle | undefined;
780
+ MozBorderTopColors?: import( 'csstype').Property.MozBorderTopColors | undefined;
781
+ MozBoxSizing?: import( 'csstype').Property.BoxSizing | undefined;
782
+ MozColumnRuleColor?: import( 'csstype').Property.ColumnRuleColor | undefined;
783
+ MozColumnRuleStyle?: import( 'csstype').Property.ColumnRuleStyle | undefined;
784
+ MozColumnRuleWidth?: import( 'csstype').Property.ColumnRuleWidth<string | number>;
785
+ MozColumnWidth?: import( 'csstype').Property.ColumnWidth<string | number>;
786
+ MozContextProperties?: import( 'csstype').Property.MozContextProperties | undefined;
787
+ MozFontFeatureSettings?: import( 'csstype').Property.FontFeatureSettings | undefined;
788
+ MozFontLanguageOverride?: import( 'csstype').Property.FontLanguageOverride | undefined;
789
+ MozHyphens?: import( 'csstype').Property.Hyphens | undefined;
790
+ MozMarginEnd?: import( 'csstype').Property.MarginInlineEnd<string | number>;
791
+ MozMarginStart?: import( 'csstype').Property.MarginInlineStart<string | number>;
792
+ MozOrient?: import( 'csstype').Property.MozOrient | undefined;
793
+ MozOsxFontSmoothing?: import( 'csstype').Property.FontSmooth<string | number>;
794
+ MozOutlineRadiusBottomleft?: import( 'csstype').Property.MozOutlineRadiusBottomleft<string | number>;
795
+ MozOutlineRadiusBottomright?: import( 'csstype').Property.MozOutlineRadiusBottomright<string | number>;
796
+ MozOutlineRadiusTopleft?: import( 'csstype').Property.MozOutlineRadiusTopleft<string | number>;
797
+ MozOutlineRadiusTopright?: import( 'csstype').Property.MozOutlineRadiusTopright<string | number>;
798
+ MozPaddingEnd?: import( 'csstype').Property.PaddingInlineEnd<string | number>;
799
+ MozPaddingStart?: import( 'csstype').Property.PaddingInlineStart<string | number>;
800
+ MozPerspective?: import( 'csstype').Property.Perspective<string | number>;
801
+ MozPerspectiveOrigin?: import( 'csstype').Property.PerspectiveOrigin<string | number>;
802
+ MozStackSizing?: import( 'csstype').Property.MozStackSizing | undefined;
803
+ MozTabSize?: import( 'csstype').Property.TabSize<string | number>;
804
+ MozTextBlink?: import( 'csstype').Property.MozTextBlink | undefined;
805
+ MozTextSizeAdjust?: import( 'csstype').Property.TextSizeAdjust | undefined;
806
+ MozTransform?: import( 'csstype').Property.Transform | undefined;
807
+ MozTransformOrigin?: import( 'csstype').Property.TransformOrigin<string | number>;
808
+ MozTransformStyle?: import( 'csstype').Property.TransformStyle | undefined;
809
+ MozUserModify?: import( 'csstype').Property.MozUserModify | undefined;
810
+ MozUserSelect?: import( 'csstype').Property.UserSelect | undefined;
811
+ MozWindowDragging?: import( 'csstype').Property.MozWindowDragging | undefined;
812
+ MozWindowShadow?: import( 'csstype').Property.MozWindowShadow | undefined;
813
+ msAccelerator?: import( 'csstype').Property.MsAccelerator | undefined;
814
+ msBlockProgression?: import( 'csstype').Property.MsBlockProgression | undefined;
815
+ msContentZoomChaining?: import( 'csstype').Property.MsContentZoomChaining | undefined;
816
+ msContentZoomLimitMax?: import( 'csstype').Property.MsContentZoomLimitMax | undefined;
817
+ msContentZoomLimitMin?: import( 'csstype').Property.MsContentZoomLimitMin | undefined;
818
+ msContentZoomSnapPoints?: import( 'csstype').Property.MsContentZoomSnapPoints | undefined;
819
+ msContentZoomSnapType?: import( 'csstype').Property.MsContentZoomSnapType | undefined;
820
+ msContentZooming?: import( 'csstype').Property.MsContentZooming | undefined;
821
+ msFilter?: import( 'csstype').Property.MsFilter | undefined;
822
+ msFlexDirection?: import( 'csstype').Property.FlexDirection | undefined;
823
+ msFlexPositive?: import( 'csstype').Property.FlexGrow | undefined;
824
+ msFlowFrom?: import( 'csstype').Property.MsFlowFrom | undefined;
825
+ msFlowInto?: import( 'csstype').Property.MsFlowInto | undefined;
826
+ msGridColumns?: import( 'csstype').Property.MsGridColumns<string | number>;
827
+ msGridRows?: import( 'csstype').Property.MsGridRows<string | number>;
828
+ msHighContrastAdjust?: import( 'csstype').Property.MsHighContrastAdjust | undefined;
829
+ msHyphenateLimitChars?: import( 'csstype').Property.MsHyphenateLimitChars | undefined;
830
+ msHyphenateLimitLines?: import( 'csstype').Property.MsHyphenateLimitLines | undefined;
831
+ msHyphenateLimitZone?: import( 'csstype').Property.MsHyphenateLimitZone<string | number>;
832
+ msHyphens?: import( 'csstype').Property.Hyphens | undefined;
833
+ msImeAlign?: import( 'csstype').Property.MsImeAlign | undefined;
834
+ msLineBreak?: import( 'csstype').Property.LineBreak | undefined;
835
+ msOrder?: import( 'csstype').Property.Order | undefined;
836
+ msOverflowStyle?: import( 'csstype').Property.MsOverflowStyle | undefined;
837
+ msOverflowX?: import( 'csstype').Property.OverflowX | undefined;
838
+ msOverflowY?: import( 'csstype').Property.OverflowY | undefined;
839
+ msScrollChaining?: import( 'csstype').Property.MsScrollChaining | undefined;
840
+ msScrollLimitXMax?: import( 'csstype').Property.MsScrollLimitXMax<string | number>;
841
+ msScrollLimitXMin?: import( 'csstype').Property.MsScrollLimitXMin<string | number>;
842
+ msScrollLimitYMax?: import( 'csstype').Property.MsScrollLimitYMax<string | number>;
843
+ msScrollLimitYMin?: import( 'csstype').Property.MsScrollLimitYMin<string | number>;
844
+ msScrollRails?: import( 'csstype').Property.MsScrollRails | undefined;
845
+ msScrollSnapPointsX?: import( 'csstype').Property.MsScrollSnapPointsX | undefined;
846
+ msScrollSnapPointsY?: import( 'csstype').Property.MsScrollSnapPointsY | undefined;
847
+ msScrollSnapType?: import( 'csstype').Property.MsScrollSnapType | undefined;
848
+ msScrollTranslation?: import( 'csstype').Property.MsScrollTranslation | undefined;
849
+ msScrollbar3dlightColor?: import( 'csstype').Property.MsScrollbar3dlightColor | undefined;
850
+ msScrollbarArrowColor?: import( 'csstype').Property.MsScrollbarArrowColor | undefined;
851
+ msScrollbarBaseColor?: import( 'csstype').Property.MsScrollbarBaseColor | undefined;
852
+ msScrollbarDarkshadowColor?: import( 'csstype').Property.MsScrollbarDarkshadowColor | undefined;
853
+ msScrollbarFaceColor?: import( 'csstype').Property.MsScrollbarFaceColor | undefined;
854
+ msScrollbarHighlightColor?: import( 'csstype').Property.MsScrollbarHighlightColor | undefined;
855
+ msScrollbarShadowColor?: import( 'csstype').Property.MsScrollbarShadowColor | undefined;
856
+ msScrollbarTrackColor?: import( 'csstype').Property.MsScrollbarTrackColor | undefined;
857
+ msTextAutospace?: import( 'csstype').Property.MsTextAutospace | undefined;
858
+ msTextCombineHorizontal?: import( 'csstype').Property.TextCombineUpright | undefined;
859
+ msTextOverflow?: import( 'csstype').Property.TextOverflow | undefined;
860
+ msTouchAction?: import( 'csstype').Property.TouchAction | undefined;
861
+ msTouchSelect?: import( 'csstype').Property.MsTouchSelect | undefined;
862
+ msTransform?: import( 'csstype').Property.Transform | undefined;
863
+ msTransformOrigin?: import( 'csstype').Property.TransformOrigin<string | number>;
864
+ msTransitionDelay?: import( 'csstype').Property.TransitionDelay<string & {}>;
865
+ msTransitionDuration?: import( 'csstype').Property.TransitionDuration<string & {}>;
866
+ msTransitionProperty?: import( 'csstype').Property.TransitionProperty | undefined;
867
+ msTransitionTimingFunction?: import( 'csstype').Property.TransitionTimingFunction | undefined;
868
+ msUserSelect?: import( 'csstype').Property.MsUserSelect | undefined;
869
+ msWordBreak?: import( 'csstype').Property.WordBreak | undefined;
870
+ msWrapFlow?: import( 'csstype').Property.MsWrapFlow | undefined;
871
+ msWrapMargin?: import( 'csstype').Property.MsWrapMargin<string | number>;
872
+ msWrapThrough?: import( 'csstype').Property.MsWrapThrough | undefined;
873
+ msWritingMode?: import( 'csstype').Property.WritingMode | undefined;
874
+ WebkitAlignContent?: import( 'csstype').Property.AlignContent | undefined;
875
+ WebkitAlignItems?: import( 'csstype').Property.AlignItems | undefined;
876
+ WebkitAlignSelf?: import( 'csstype').Property.AlignSelf | undefined;
877
+ WebkitAnimationDelay?: import( 'csstype').Property.AnimationDelay<string & {}>;
878
+ WebkitAnimationDirection?: import( 'csstype').Property.AnimationDirection | undefined;
879
+ WebkitAnimationDuration?: import( 'csstype').Property.AnimationDuration<string & {}>;
880
+ WebkitAnimationFillMode?: import( 'csstype').Property.AnimationFillMode | undefined;
881
+ WebkitAnimationIterationCount?: import( 'csstype').Property.AnimationIterationCount | undefined;
882
+ WebkitAnimationName?: import( 'csstype').Property.AnimationName | undefined;
883
+ WebkitAnimationPlayState?: import( 'csstype').Property.AnimationPlayState | undefined;
884
+ WebkitAnimationTimingFunction?: import( 'csstype').Property.AnimationTimingFunction | undefined;
885
+ WebkitAppearance?: import( 'csstype').Property.WebkitAppearance | undefined;
886
+ WebkitBackdropFilter?: import( 'csstype').Property.BackdropFilter | undefined;
887
+ WebkitBackfaceVisibility?: import( 'csstype').Property.BackfaceVisibility | undefined;
888
+ WebkitBackgroundClip?: import( 'csstype').Property.BackgroundClip | undefined;
889
+ WebkitBackgroundOrigin?: import( 'csstype').Property.BackgroundOrigin | undefined;
890
+ WebkitBackgroundSize?: import( 'csstype').Property.BackgroundSize<string | number>;
891
+ WebkitBorderBeforeColor?: import( 'csstype').Property.WebkitBorderBeforeColor | undefined;
892
+ WebkitBorderBeforeStyle?: import( 'csstype').Property.WebkitBorderBeforeStyle | undefined;
893
+ WebkitBorderBeforeWidth?: import( 'csstype').Property.WebkitBorderBeforeWidth<string | number>;
894
+ WebkitBorderBottomLeftRadius?: import( 'csstype').Property.BorderBottomLeftRadius<string | number>;
895
+ WebkitBorderBottomRightRadius?: import( 'csstype').Property.BorderBottomRightRadius<string | number>;
896
+ WebkitBorderImageSlice?: import( 'csstype').Property.BorderImageSlice | undefined;
897
+ WebkitBorderTopLeftRadius?: import( 'csstype').Property.BorderTopLeftRadius<string | number>;
898
+ WebkitBorderTopRightRadius?: import( 'csstype').Property.BorderTopRightRadius<string | number>;
899
+ WebkitBoxDecorationBreak?: import( 'csstype').Property.BoxDecorationBreak | undefined;
900
+ WebkitBoxReflect?: import( 'csstype').Property.WebkitBoxReflect<string | number>;
901
+ WebkitBoxShadow?: import( 'csstype').Property.BoxShadow | undefined;
902
+ WebkitBoxSizing?: import( 'csstype').Property.BoxSizing | undefined;
903
+ WebkitClipPath?: import( 'csstype').Property.ClipPath | undefined;
904
+ WebkitColumnCount?: import( 'csstype').Property.ColumnCount | undefined;
905
+ WebkitColumnFill?: import( 'csstype').Property.ColumnFill | undefined;
906
+ WebkitColumnRuleColor?: import( 'csstype').Property.ColumnRuleColor | undefined;
907
+ WebkitColumnRuleStyle?: import( 'csstype').Property.ColumnRuleStyle | undefined;
908
+ WebkitColumnRuleWidth?: import( 'csstype').Property.ColumnRuleWidth<string | number>;
909
+ WebkitColumnSpan?: import( 'csstype').Property.ColumnSpan | undefined;
910
+ WebkitColumnWidth?: import( 'csstype').Property.ColumnWidth<string | number>;
911
+ WebkitFilter?: import( 'csstype').Property.Filter | undefined;
912
+ WebkitFlexBasis?: import( 'csstype').Property.FlexBasis<string | number>;
913
+ WebkitFlexDirection?: import( 'csstype').Property.FlexDirection | undefined;
914
+ WebkitFlexGrow?: import( 'csstype').Property.FlexGrow | undefined;
915
+ WebkitFlexShrink?: import( 'csstype').Property.FlexShrink | undefined;
916
+ WebkitFlexWrap?: import( 'csstype').Property.FlexWrap | undefined;
917
+ WebkitFontFeatureSettings?: import( 'csstype').Property.FontFeatureSettings | undefined;
918
+ WebkitFontKerning?: import( 'csstype').Property.FontKerning | undefined;
919
+ WebkitFontSmoothing?: import( 'csstype').Property.FontSmooth<string | number>;
920
+ WebkitFontVariantLigatures?: import( 'csstype').Property.FontVariantLigatures | undefined;
921
+ WebkitHyphenateCharacter?: import( 'csstype').Property.HyphenateCharacter | undefined;
922
+ WebkitHyphens?: import( 'csstype').Property.Hyphens | undefined;
923
+ WebkitInitialLetter?: import( 'csstype').Property.InitialLetter | undefined;
924
+ WebkitJustifyContent?: import( 'csstype').Property.JustifyContent | undefined;
925
+ WebkitLineBreak?: import( 'csstype').Property.LineBreak | undefined;
926
+ WebkitLineClamp?: import( 'csstype').Property.WebkitLineClamp | undefined;
927
+ WebkitLogicalHeight?: import( 'csstype').Property.BlockSize<string | number>;
928
+ WebkitLogicalWidth?: import( 'csstype').Property.InlineSize<string | number>;
929
+ WebkitMarginEnd?: import( 'csstype').Property.MarginInlineEnd<string | number>;
930
+ WebkitMarginStart?: import( 'csstype').Property.MarginInlineStart<string | number>;
931
+ WebkitMaskAttachment?: import( 'csstype').Property.WebkitMaskAttachment | undefined;
932
+ WebkitMaskBoxImageOutset?: import( 'csstype').Property.MaskBorderOutset<string | number>;
933
+ WebkitMaskBoxImageRepeat?: import( 'csstype').Property.MaskBorderRepeat | undefined;
934
+ WebkitMaskBoxImageSlice?: import( 'csstype').Property.MaskBorderSlice | undefined;
935
+ WebkitMaskBoxImageSource?: import( 'csstype').Property.MaskBorderSource | undefined;
936
+ WebkitMaskBoxImageWidth?: import( 'csstype').Property.MaskBorderWidth<string | number>;
937
+ WebkitMaskClip?: import( 'csstype').Property.WebkitMaskClip | undefined;
938
+ WebkitMaskComposite?: import( 'csstype').Property.WebkitMaskComposite | undefined;
939
+ WebkitMaskImage?: import( 'csstype').Property.WebkitMaskImage | undefined;
940
+ WebkitMaskOrigin?: import( 'csstype').Property.WebkitMaskOrigin | undefined;
941
+ WebkitMaskPosition?: import( 'csstype').Property.WebkitMaskPosition<string | number>;
942
+ WebkitMaskPositionX?: import( 'csstype').Property.WebkitMaskPositionX<string | number>;
943
+ WebkitMaskPositionY?: import( 'csstype').Property.WebkitMaskPositionY<string | number>;
944
+ WebkitMaskRepeat?: import( 'csstype').Property.WebkitMaskRepeat | undefined;
945
+ WebkitMaskRepeatX?: import( 'csstype').Property.WebkitMaskRepeatX | undefined;
946
+ WebkitMaskRepeatY?: import( 'csstype').Property.WebkitMaskRepeatY | undefined;
947
+ WebkitMaskSize?: import( 'csstype').Property.WebkitMaskSize<string | number>;
948
+ WebkitMaxInlineSize?: import( 'csstype').Property.MaxInlineSize<string | number>;
949
+ WebkitOrder?: import( 'csstype').Property.Order | undefined;
950
+ WebkitOverflowScrolling?: import( 'csstype').Property.WebkitOverflowScrolling | undefined;
951
+ WebkitPaddingEnd?: import( 'csstype').Property.PaddingInlineEnd<string | number>;
952
+ WebkitPaddingStart?: import( 'csstype').Property.PaddingInlineStart<string | number>;
953
+ WebkitPerspective?: import( 'csstype').Property.Perspective<string | number>;
954
+ WebkitPerspectiveOrigin?: import( 'csstype').Property.PerspectiveOrigin<string | number>;
955
+ WebkitPrintColorAdjust?: import( 'csstype').Property.PrintColorAdjust | undefined;
956
+ WebkitRubyPosition?: import( 'csstype').Property.RubyPosition | undefined;
957
+ WebkitScrollSnapType?: import( 'csstype').Property.ScrollSnapType | undefined;
958
+ WebkitShapeMargin?: import( 'csstype').Property.ShapeMargin<string | number>;
959
+ WebkitTapHighlightColor?: import( 'csstype').Property.WebkitTapHighlightColor | undefined;
960
+ WebkitTextCombine?: import( 'csstype').Property.TextCombineUpright | undefined;
961
+ WebkitTextDecorationColor?: import( 'csstype').Property.TextDecorationColor | undefined;
962
+ WebkitTextDecorationLine?: import( 'csstype').Property.TextDecorationLine | undefined;
963
+ WebkitTextDecorationSkip?: import( 'csstype').Property.TextDecorationSkip | undefined;
964
+ WebkitTextDecorationStyle?: import( 'csstype').Property.TextDecorationStyle | undefined;
965
+ WebkitTextEmphasisColor?: import( 'csstype').Property.TextEmphasisColor | undefined;
966
+ WebkitTextEmphasisPosition?: import( 'csstype').Property.TextEmphasisPosition | undefined;
967
+ WebkitTextEmphasisStyle?: import( 'csstype').Property.TextEmphasisStyle | undefined;
968
+ WebkitTextFillColor?: import( 'csstype').Property.WebkitTextFillColor | undefined;
969
+ WebkitTextOrientation?: import( 'csstype').Property.TextOrientation | undefined;
970
+ WebkitTextSizeAdjust?: import( 'csstype').Property.TextSizeAdjust | undefined;
971
+ WebkitTextStrokeColor?: import( 'csstype').Property.WebkitTextStrokeColor | undefined;
972
+ WebkitTextStrokeWidth?: import( 'csstype').Property.WebkitTextStrokeWidth<string | number>;
973
+ WebkitTextUnderlinePosition?: import( 'csstype').Property.TextUnderlinePosition | undefined;
974
+ WebkitTouchCallout?: import( 'csstype').Property.WebkitTouchCallout | undefined;
975
+ WebkitTransform?: import( 'csstype').Property.Transform | undefined;
976
+ WebkitTransformOrigin?: import( 'csstype').Property.TransformOrigin<string | number>;
977
+ WebkitTransformStyle?: import( 'csstype').Property.TransformStyle | undefined;
978
+ WebkitTransitionDelay?: import( 'csstype').Property.TransitionDelay<string & {}>;
979
+ WebkitTransitionDuration?: import( 'csstype').Property.TransitionDuration<string & {}>;
980
+ WebkitTransitionProperty?: import( 'csstype').Property.TransitionProperty | undefined;
981
+ WebkitTransitionTimingFunction?: import( 'csstype').Property.TransitionTimingFunction | undefined;
982
+ WebkitUserModify?: import( 'csstype').Property.WebkitUserModify | undefined;
983
+ WebkitUserSelect?: import( 'csstype').Property.WebkitUserSelect | undefined;
984
+ WebkitWritingMode?: import( 'csstype').Property.WritingMode | undefined;
985
+ MozAnimation?: import( 'csstype').Property.Animation<string & {}>;
986
+ MozBorderImage?: import( 'csstype').Property.BorderImage | undefined;
987
+ MozColumnRule?: import( 'csstype').Property.ColumnRule<string | number>;
988
+ MozColumns?: import( 'csstype').Property.Columns<string | number>;
989
+ MozOutlineRadius?: import( 'csstype').Property.MozOutlineRadius<string | number>;
990
+ MozTransition?: import( 'csstype').Property.Transition<string & {}>;
991
+ msContentZoomLimit?: import( 'csstype').Property.MsContentZoomLimit | undefined;
992
+ msContentZoomSnap?: import( 'csstype').Property.MsContentZoomSnap | undefined;
993
+ msFlex?: import( 'csstype').Property.Flex<string | number>;
994
+ msScrollLimit?: import( 'csstype').Property.MsScrollLimit | undefined;
995
+ msScrollSnapX?: import( 'csstype').Property.MsScrollSnapX | undefined;
996
+ msScrollSnapY?: import( 'csstype').Property.MsScrollSnapY | undefined;
997
+ msTransition?: import( 'csstype').Property.Transition<string & {}>;
998
+ WebkitAnimation?: import( 'csstype').Property.Animation<string & {}>;
999
+ WebkitBorderBefore?: import( 'csstype').Property.WebkitBorderBefore<string | number>;
1000
+ WebkitBorderImage?: import( 'csstype').Property.BorderImage | undefined;
1001
+ WebkitBorderRadius?: import( 'csstype').Property.BorderRadius<string | number>;
1002
+ WebkitColumnRule?: import( 'csstype').Property.ColumnRule<string | number>;
1003
+ WebkitColumns?: import( 'csstype').Property.Columns<string | number>;
1004
+ WebkitFlex?: import( 'csstype').Property.Flex<string | number>;
1005
+ WebkitFlexFlow?: import( 'csstype').Property.FlexFlow | undefined;
1006
+ WebkitMask?: import( 'csstype').Property.WebkitMask<string | number>;
1007
+ WebkitMaskBoxImage?: import( 'csstype').Property.MaskBorder | undefined;
1008
+ WebkitTextEmphasis?: import( 'csstype').Property.TextEmphasis | undefined;
1009
+ WebkitTextStroke?: import( 'csstype').Property.WebkitTextStroke<string | number>;
1010
+ WebkitTransition?: import( 'csstype').Property.Transition<string & {}>;
1011
+ boxAlign?: import( 'csstype').Property.BoxAlign | undefined;
1012
+ boxDirection?: import( 'csstype').Property.BoxDirection | undefined;
1013
+ boxFlex?: import( 'csstype').Property.BoxFlex | undefined;
1014
+ boxFlexGroup?: import( 'csstype').Property.BoxFlexGroup | undefined;
1015
+ boxLines?: import( 'csstype').Property.BoxLines | undefined;
1016
+ boxOrdinalGroup?: import( 'csstype').Property.BoxOrdinalGroup | undefined;
1017
+ boxOrient?: import( 'csstype').Property.BoxOrient | undefined;
1018
+ boxPack?: import( 'csstype').Property.BoxPack | undefined;
1019
+ clip?: import( 'csstype').Property.Clip | undefined;
1020
+ fontStretch?: import( 'csstype').Property.FontStretch | undefined;
1021
+ gridColumnGap?: import( 'csstype').Property.GridColumnGap<string | number>;
1022
+ gridGap?: import( 'csstype').Property.GridGap<string | number>;
1023
+ gridRowGap?: import( 'csstype').Property.GridRowGap<string | number>;
1024
+ imeMode?: import( 'csstype').Property.ImeMode | undefined;
1025
+ insetArea?: import( 'csstype').Property.PositionArea | undefined;
1026
+ offsetBlock?: import( 'csstype').Property.InsetBlock<string | number>;
1027
+ offsetBlockEnd?: import( 'csstype').Property.InsetBlockEnd<string | number>;
1028
+ offsetBlockStart?: import( 'csstype').Property.InsetBlockStart<string | number>;
1029
+ offsetInline?: import( 'csstype').Property.InsetInline<string | number>;
1030
+ offsetInlineEnd?: import( 'csstype').Property.InsetInlineEnd<string | number>;
1031
+ offsetInlineStart?: import( 'csstype').Property.InsetInlineStart<string | number>;
1032
+ pageBreakAfter?: import( 'csstype').Property.PageBreakAfter | undefined;
1033
+ pageBreakBefore?: import( 'csstype').Property.PageBreakBefore | undefined;
1034
+ pageBreakInside?: import( 'csstype').Property.PageBreakInside | undefined;
1035
+ positionTryOptions?: import( 'csstype').Property.PositionTryFallbacks | undefined;
1036
+ scrollSnapCoordinate?: import( 'csstype').Property.ScrollSnapCoordinate<string | number>;
1037
+ scrollSnapDestination?: import( 'csstype').Property.ScrollSnapDestination<string | number>;
1038
+ scrollSnapPointsX?: import( 'csstype').Property.ScrollSnapPointsX | undefined;
1039
+ scrollSnapPointsY?: import( 'csstype').Property.ScrollSnapPointsY | undefined;
1040
+ scrollSnapTypeX?: import( 'csstype').Property.ScrollSnapTypeX | undefined;
1041
+ scrollSnapTypeY?: import( 'csstype').Property.ScrollSnapTypeY | undefined;
1042
+ KhtmlBoxAlign?: import( 'csstype').Property.BoxAlign | undefined;
1043
+ KhtmlBoxDirection?: import( 'csstype').Property.BoxDirection | undefined;
1044
+ KhtmlBoxFlex?: import( 'csstype').Property.BoxFlex | undefined;
1045
+ KhtmlBoxFlexGroup?: import( 'csstype').Property.BoxFlexGroup | undefined;
1046
+ KhtmlBoxLines?: import( 'csstype').Property.BoxLines | undefined;
1047
+ KhtmlBoxOrdinalGroup?: import( 'csstype').Property.BoxOrdinalGroup | undefined;
1048
+ KhtmlBoxOrient?: import( 'csstype').Property.BoxOrient | undefined;
1049
+ KhtmlBoxPack?: import( 'csstype').Property.BoxPack | undefined;
1050
+ KhtmlLineBreak?: import( 'csstype').Property.LineBreak | undefined;
1051
+ KhtmlOpacity?: import( 'csstype').Property.Opacity | undefined;
1052
+ KhtmlUserSelect?: import( 'csstype').Property.UserSelect | undefined;
1053
+ MozBackgroundClip?: import( 'csstype').Property.BackgroundClip | undefined;
1054
+ MozBackgroundOrigin?: import( 'csstype').Property.BackgroundOrigin | undefined;
1055
+ MozBackgroundSize?: import( 'csstype').Property.BackgroundSize<string | number>;
1056
+ MozBorderRadius?: import( 'csstype').Property.BorderRadius<string | number>;
1057
+ MozBorderRadiusBottomleft?: import( 'csstype').Property.BorderBottomLeftRadius<string | number>;
1058
+ MozBorderRadiusBottomright?: import( 'csstype').Property.BorderBottomRightRadius<string | number>;
1059
+ MozBorderRadiusTopleft?: import( 'csstype').Property.BorderTopLeftRadius<string | number>;
1060
+ MozBorderRadiusTopright?: import( 'csstype').Property.BorderTopRightRadius<string | number>;
1061
+ MozBoxAlign?: import( 'csstype').Property.BoxAlign | undefined;
1062
+ MozBoxDirection?: import( 'csstype').Property.BoxDirection | undefined;
1063
+ MozBoxFlex?: import( 'csstype').Property.BoxFlex | undefined;
1064
+ MozBoxOrdinalGroup?: import( 'csstype').Property.BoxOrdinalGroup | undefined;
1065
+ MozBoxOrient?: import( 'csstype').Property.BoxOrient | undefined;
1066
+ MozBoxPack?: import( 'csstype').Property.BoxPack | undefined;
1067
+ MozBoxShadow?: import( 'csstype').Property.BoxShadow | undefined;
1068
+ MozColumnCount?: import( 'csstype').Property.ColumnCount | undefined;
1069
+ MozColumnFill?: import( 'csstype').Property.ColumnFill | undefined;
1070
+ MozFloatEdge?: import( 'csstype').Property.MozFloatEdge | undefined;
1071
+ MozForceBrokenImageIcon?: import( 'csstype').Property.MozForceBrokenImageIcon | undefined;
1072
+ MozOpacity?: import( 'csstype').Property.Opacity | undefined;
1073
+ MozOutline?: import( 'csstype').Property.Outline<string | number>;
1074
+ MozOutlineColor?: import( 'csstype').Property.OutlineColor | undefined;
1075
+ MozOutlineStyle?: import( 'csstype').Property.OutlineStyle | undefined;
1076
+ MozOutlineWidth?: import( 'csstype').Property.OutlineWidth<string | number>;
1077
+ MozTextAlignLast?: import( 'csstype').Property.TextAlignLast | undefined;
1078
+ MozTextDecorationColor?: import( 'csstype').Property.TextDecorationColor | undefined;
1079
+ MozTextDecorationLine?: import( 'csstype').Property.TextDecorationLine | undefined;
1080
+ MozTextDecorationStyle?: import( 'csstype').Property.TextDecorationStyle | undefined;
1081
+ MozTransitionDelay?: import( 'csstype').Property.TransitionDelay<string & {}>;
1082
+ MozTransitionDuration?: import( 'csstype').Property.TransitionDuration<string & {}>;
1083
+ MozTransitionProperty?: import( 'csstype').Property.TransitionProperty | undefined;
1084
+ MozTransitionTimingFunction?: import( 'csstype').Property.TransitionTimingFunction | undefined;
1085
+ MozUserFocus?: import( 'csstype').Property.MozUserFocus | undefined;
1086
+ MozUserInput?: import( 'csstype').Property.MozUserInput | undefined;
1087
+ msImeMode?: import( 'csstype').Property.ImeMode | undefined;
1088
+ OAnimation?: import( 'csstype').Property.Animation<string & {}>;
1089
+ OAnimationDelay?: import( 'csstype').Property.AnimationDelay<string & {}>;
1090
+ OAnimationDirection?: import( 'csstype').Property.AnimationDirection | undefined;
1091
+ OAnimationDuration?: import( 'csstype').Property.AnimationDuration<string & {}>;
1092
+ OAnimationFillMode?: import( 'csstype').Property.AnimationFillMode | undefined;
1093
+ OAnimationIterationCount?: import( 'csstype').Property.AnimationIterationCount | undefined;
1094
+ OAnimationName?: import( 'csstype').Property.AnimationName | undefined;
1095
+ OAnimationPlayState?: import( 'csstype').Property.AnimationPlayState | undefined;
1096
+ OAnimationTimingFunction?: import( 'csstype').Property.AnimationTimingFunction | undefined;
1097
+ OBackgroundSize?: import( 'csstype').Property.BackgroundSize<string | number>;
1098
+ OBorderImage?: import( 'csstype').Property.BorderImage | undefined;
1099
+ OObjectFit?: import( 'csstype').Property.ObjectFit | undefined;
1100
+ OObjectPosition?: import( 'csstype').Property.ObjectPosition<string | number>;
1101
+ OTabSize?: import( 'csstype').Property.TabSize<string | number>;
1102
+ OTextOverflow?: import( 'csstype').Property.TextOverflow | undefined;
1103
+ OTransform?: import( 'csstype').Property.Transform | undefined;
1104
+ OTransformOrigin?: import( 'csstype').Property.TransformOrigin<string | number>;
1105
+ OTransition?: import( 'csstype').Property.Transition<string & {}>;
1106
+ OTransitionDelay?: import( 'csstype').Property.TransitionDelay<string & {}>;
1107
+ OTransitionDuration?: import( 'csstype').Property.TransitionDuration<string & {}>;
1108
+ OTransitionProperty?: import( 'csstype').Property.TransitionProperty | undefined;
1109
+ OTransitionTimingFunction?: import( 'csstype').Property.TransitionTimingFunction | undefined;
1110
+ WebkitBoxAlign?: import( 'csstype').Property.BoxAlign | undefined;
1111
+ WebkitBoxDirection?: import( 'csstype').Property.BoxDirection | undefined;
1112
+ WebkitBoxFlex?: import( 'csstype').Property.BoxFlex | undefined;
1113
+ WebkitBoxFlexGroup?: import( 'csstype').Property.BoxFlexGroup | undefined;
1114
+ WebkitBoxLines?: import( 'csstype').Property.BoxLines | undefined;
1115
+ WebkitBoxOrdinalGroup?: import( 'csstype').Property.BoxOrdinalGroup | undefined;
1116
+ WebkitBoxOrient?: import( 'csstype').Property.BoxOrient | undefined;
1117
+ WebkitBoxPack?: import( 'csstype').Property.BoxPack | undefined;
1118
+ colorInterpolation?: import( 'csstype').Property.ColorInterpolation | undefined;
1119
+ colorRendering?: import( 'csstype').Property.ColorRendering | undefined;
1120
+ glyphOrientationVertical?: import( 'csstype').Property.GlyphOrientationVertical | undefined;
1121
+ };
1122
+ size?: IconSize | string;
1123
+ inverse?: boolean;
1124
+ title?: string;
1125
+ onClick?: (evt: any) => void;
1126
+ }, HTMLElement>;
1127
+ }
1128
+
1129
+ declare module '@jointhedots/ui/src/Icon/collections/avatar' {
1130
+ import { IconCollection, IconElement } from '@jointhedots/ui/src/Icon/Icon';
1131
+ export class IconAvatarCollection implements IconCollection {
1132
+ setup(element: IconElement): void;
1133
+ draw(element: IconElement): import( 'react/jsx-runtime').JSX.Element;
1134
+ }
1135
+ }
1136
+
1137
+ declare module '@jointhedots/ui/src/Icon/collections/font' {
1138
+ import { IconCollection, IconElement } from '@jointhedots/ui/src/Icon/Icon';
1139
+ export class IconFontCollection implements IconCollection {
1140
+ classPrefix: string;
1141
+ constructor(classPrefix: string);
1142
+ setup(element: IconElement): void;
1143
+ draw(element: IconElement): import( 'react/jsx-runtime').JSX.Element;
1144
+ }
1145
+ }
1146
+
1147
+ declare module '@jointhedots/ui/src/Icon/collections/svg' {
1148
+ import { IconCollection, IconElement } from '@jointhedots/ui/src/Icon/Icon';
1149
+ import { ThemeProvider } from '@jointhedots/ui/theme';
1150
+ export class IconSVGCollection implements IconCollection {
1151
+ defaultIcon: string;
1152
+ lights: {
1153
+ [name: string]: string;
1154
+ };
1155
+ darks: {
1156
+ [name: string]: string;
1157
+ };
1158
+ constructor(defaultIcon: string);
1159
+ addIcon(name: string, light_icon: URL, dark_icon: URL): void;
1160
+ setup(element: IconElement): void;
1161
+ draw(element: IconElement, theme: ThemeProvider): import( 'react/jsx-runtime').JSX.Element;
1162
+ }
1163
+ }
1164
+
1165
+ declare module '@jointhedots/ui/src/Icon/collections/svg-inner' {
1166
+ import { IconCollection, IconElement } from '@jointhedots/ui/src/Icon/Icon';
1167
+ import { ThemeProvider } from '@jointhedots/ui/theme';
1168
+ export class IconSVGInnerCollection implements IconCollection {
1169
+ readonly light_url: URL | string;
1170
+ readonly dark_url: URL | string;
1171
+ readonly classNamer?: (element: IconElement) => string;
1172
+ lightRef: string;
1173
+ darkRef: string;
1174
+ constructor(light_url: URL | string, dark_url: URL | string, classNamer?: (element: IconElement) => string);
1175
+ setup(element: IconElement): void;
1176
+ draw(element: IconElement, theme: ThemeProvider): import( 'react/jsx-runtime').JSX.Element;
1177
+ }
1178
+ }
1179
+
1180
+ declare module '@jointhedots/ui/Icon' {
1181
+ import { Icon } from '@jointhedots/ui/src/Icon/Icon';
1182
+ import 'src/Icon/style.scss';
1183
+ export * from '@jointhedots/ui/src/Icon/Icon';
1184
+ export * from '@jointhedots/ui/src/Icon/collections/avatar';
1185
+ export * from '@jointhedots/ui/src/Icon/collections/font';
1186
+ export * from '@jointhedots/ui/src/Icon/collections/svg';
1187
+ export * from '@jointhedots/ui/src/Icon/collections/svg-inner';
1188
+ export * from '@jointhedots/ui/src/Icon/collections/url';
1189
+ export default Icon;
1190
+ }
1191
+
1192
+ declare module '@jointhedots/ui/src/Inputs/Button' {
1193
+ import React from 'react';
1194
+ import { IconSize } from '@jointhedots/ui/Icon';
1195
+ import '@salesforce-ux/design-system/assets/styles/salesforce-lightning-design-system.min.css';
1196
+ import 'src/Inputs/Button.scss';
1197
+ interface ButtonProps {
1198
+ assistiveText?: string;
1199
+ className?: string | object | any[];
1200
+ disabled?: boolean;
1201
+ hint?: boolean;
1202
+ icon?: string;
1203
+ iconPosition?: 'left' | 'right';
1204
+ iconSize?: 'xs' | 'sm' | 'md' | 'lg';
1205
+ iconVariant?: 'bare' | 'container' | 'border' | 'border-filled' | 'brand' | 'more' | 'global-header';
1206
+ id?: string;
1207
+ inverse?: boolean;
1208
+ label?: string | React.ReactNode;
1209
+ onBlur?: (event: React.FocusEvent<HTMLButtonElement>) => void;
1210
+ onClick?: (event: React.MouseEvent<HTMLButtonElement>, data: {}) => void;
1211
+ onFocus?: (event: React.FocusEvent<HTMLButtonElement>) => void;
1212
+ onKeyDown?: (event: React.KeyboardEvent<HTMLButtonElement>) => void;
1213
+ onKeyPress?: (event: React.KeyboardEvent<HTMLButtonElement>) => void;
1214
+ onKeyUp?: (event: React.KeyboardEvent<HTMLButtonElement>) => void;
1215
+ onMouseDown?: (event: React.MouseEvent<HTMLButtonElement>) => void;
1216
+ onMouseEnter?: (event: React.MouseEvent<HTMLButtonElement>) => void;
1217
+ onMouseLeave?: (event: React.MouseEvent<HTMLButtonElement>) => void;
1218
+ onMouseUp?: (event: React.MouseEvent<HTMLButtonElement>) => void;
1219
+ onRequestFocus?: (component: HTMLButtonElement) => void;
1220
+ buttonRef?: (component: HTMLButtonElement | null) => void;
1221
+ requestFocus?: boolean;
1222
+ responsive?: boolean;
1223
+ tabIndex?: string;
1224
+ type?: 'reset' | 'submit' | 'button';
1225
+ title?: string;
1226
+ tooltip?: React.ReactNode;
1227
+ variant?: 'base' | 'link' | 'neutral' | 'brand' | 'outline-brand' | 'destructive' | 'success' | 'text-destructive' | 'icon';
1228
+ style?: React.CSSProperties;
1229
+ children?: React.ReactNode;
1230
+ }
1231
+ export class Button extends React.Component<ButtonProps> {
1232
+ static defaultProps: Partial<ButtonProps>;
1233
+ getClassName: () => string;
1234
+ handleClick: (event: React.MouseEvent<HTMLButtonElement>) => void;
1235
+ renderIcon: (name: string) => React.ReactNode;
1236
+ renderLabel: () => React.ReactNode;
1237
+ renderButton: () => React.ReactElement;
1238
+ renderTooltip: () => React.ReactElement;
1239
+ render(): React.ReactElement;
1240
+ }
1241
+ export type ButtonIconProps = {
1242
+ icon: string;
1243
+ hoveredIcon?: string;
1244
+ size?: IconSize | string;
1245
+ title?: string;
1246
+ inversed?: boolean;
1247
+ variant?: "primary" | "secondary" | "watermark";
1248
+ className?: string;
1249
+ style?: React.CSSProperties;
1250
+ onClick?: React.MouseEventHandler;
1251
+ };
1252
+ export function ButtonIcon(props: ButtonIconProps): import( 'react/jsx-runtime').JSX.Element;
1253
+ export {};
1254
+ }
1255
+
1256
+ declare module '@jointhedots/ui/src/Inputs/InputData' {
1257
+ import React from 'react';
1258
+ import { JSONSchema } from '@jointhedots/core';
1259
+ export type Tooling = {
1260
+ onClick: () => void;
1261
+ icon: string;
1262
+ };
1263
+ type InputProps = {
1264
+ label?: React.ReactNode;
1265
+ icon?: string;
1266
+ tooling?: Tooling[];
1267
+ value: any;
1268
+ schema: JSONSchema;
1269
+ onChange: (value: any) => void;
1270
+ };
1271
+ export const InputData: React.FC<InputProps>;
1272
+ export {};
1273
+ }
1274
+
1275
+ declare module '@jointhedots/ui/Inputs' {
1276
+ export * from '@jointhedots/ui/src/Inputs/Button';
1277
+ export * from '@jointhedots/ui/src/Inputs/InputData';
1278
+ }
1279
+
1280
+ declare module 'src/Layouts/Stack' {
1281
+ import React from 'react'; function FlexDock(props: React.HTMLAttributes<HTMLDivElement> & {
1282
+ weight?: number;
1283
+ width?: number;
1284
+ children?: React.ReactNode;
1285
+ }): import( 'react/jsx-runtime').JSX.Element; function FixedDock(props: React.HTMLAttributes<HTMLDivElement> & {
1286
+ width?: number;
1287
+ children?: React.ReactNode;
1288
+ }): import( 'react/jsx-runtime').JSX.Element;
1289
+ export interface StackProps extends React.HTMLAttributes<HTMLDivElement> {
1290
+ gap?: number;
1291
+ padding?: number;
1292
+ vertical?: boolean;
1293
+ children?: React.ReactNode;
1294
+ }
1295
+ export class Stack extends React.Component<StackProps> {
1296
+ static FlexDock: typeof FlexDock;
1297
+ static FixedDock: typeof FixedDock;
1298
+ render(): React.ReactElement;
1299
+ }
1300
+ export interface OverflowStackProps extends StackProps {
1301
+ overflow?: (props: {
1302
+ children: React.ReactNode;
1303
+ }) => React.ReactNode;
1304
+ }
1305
+ export class OverflowStack extends React.Component<OverflowStackProps, {
1306
+ visibleCount: number;
1307
+ }> {
1308
+ containerRef: React.RefObject<HTMLDivElement>;
1309
+ resizeObserver: ResizeObserver | null;
1310
+ constructor(props: OverflowStackProps);
1311
+ componentDidMount(): void;
1312
+ componentDidUpdate(prevProps: OverflowStackProps): void;
1313
+ componentWillUnmount(): void;
1314
+ updateLayout: () => void;
1315
+ render(): import( 'react/jsx-runtime').JSX.Element;
1316
+ }
1317
+ export {};
1318
+ }
1319
+
1320
+ declare module '@jointhedots/ui/src/Layouts/open' {
1321
+ import { FloatingDockOptions, FloatingTarget } from '@jointhedots/ui/src/Layouts/Panels/FloatingDock';
1322
+ export class PopupCancel extends Error {
1323
+ }
1324
+ export function openDialog<T>(renderer: (resolve: (data: T) => void) => React.ReactNode, height?: string): Promise<T>;
1325
+ export function openContextualMenu<T>(target: FloatingTarget, renderer: (close: (value?: T) => void) => React.ReactNode | Promise<React.ReactNode>, options?: FloatingDockOptions): Promise<T>;
1326
+ }
1327
+
1328
+ declare module '@jointhedots/ui/Layouts' {
1329
+ export * from 'src/Layouts/Panels';
1330
+ export * from '@jointhedots/ui/src/Layouts/Panels/FloatingDock';
1331
+ export * from 'src/Layouts/Menu';
1332
+ export * from 'src/Layouts/Stack';
1333
+ export * from '@jointhedots/ui/src/Layouts/open';
1334
+ }
1335
+
1336
+ declare module 'src/Layouts/Menu' {
1337
+ import React from 'react';
1338
+ import { ItemProps } from '@jointhedots/ui/Items';
1339
+ import 'src/Layouts/Menu/style.scss';
1340
+ export type MenuIcon = string;
1341
+ type MenuItemProps = ItemProps & {
1342
+ children?: React.ReactNode;
1343
+ onClick?: (event: React.SyntheticEvent) => void;
1344
+ onMouseEnter?: (event: React.SyntheticEvent) => void;
1345
+ onElementRef?: (element: HTMLElement) => void;
1346
+ };
1347
+ type AnchorProps = {
1348
+ children?: React.ReactNode;
1349
+ onClick?: (event: React.SyntheticEvent) => void;
1350
+ };
1351
+ export const Menu: {
1352
+ Anchor(props: AnchorProps): import( 'react/jsx-runtime').JSX.Element;
1353
+ Item(props: MenuItemProps): import( 'react/jsx-runtime').JSX.Element;
1354
+ LargeItem(props: MenuItemProps): import( 'react/jsx-runtime').JSX.Element;
1355
+ Separator(): import( 'react/jsx-runtime').JSX.Element;
1356
+ Section(props: {
1357
+ title?: string;
1358
+ children?: React.ReactNode;
1359
+ }): import( 'react/jsx-runtime').JSX.Element;
1360
+ };
1361
+ export {};
1362
+ }
1363
+
1364
+ declare module '@jointhedots/ui/Items' {
1365
+ import React from 'react';
1366
+ import 'src/Items/style.scss';
1367
+ import { PanelDock } from '@jointhedots/ui/Layouts';
1368
+ export type ShapeDecoration = {
1369
+ type: "shape";
1370
+ color: string;
1371
+ };
1372
+ export type BadgeDecoration = {
1373
+ type: "badge";
1374
+ name: string;
1375
+ };
1376
+ export type LabelDecoration = ShapeDecoration | BadgeDecoration;
1377
+ export type LabelProps<T = any> = {
1378
+ name: string;
1379
+ icon?: string;
1380
+ decorations?: LabelDecoration[];
1381
+ tooling?: ToolingProps[];
1382
+ summary?: React.ReactNode;
1383
+ tooltip?: DisplayProps;
1384
+ content?: DisplayProps;
1385
+ data?: T;
1386
+ onActivate?: (label: LabelProps, dock: PanelDock) => void;
1387
+ };
1388
+ export enum LabelSelected {
1389
+ None = 0,
1390
+ Enabled = 1,
1391
+ Disabled = 2,
1392
+ Editable = 4,
1393
+ EnabledEditable = 5,
1394
+ DisabledEditable = 6
1395
+ }
1396
+ export type ToolingProps = LabelProps & {
1397
+ optional?: boolean;
1398
+ };
1399
+ export type ItemProps<T = any> = LabelProps<T> & {
1400
+ tags?: TagProps[];
1401
+ selected?: LabelSelected;
1402
+ onSelect?: (item: ItemProps) => void;
1403
+ };
1404
+ export type DisplayProps = React.ReactNode | ((props: LabelProps) => React.ReactElement);
1405
+ export type TagProps = string | React.ReactElement | LabelProps;
1406
+ export function DrawToolingWidgets(tooling: ToolingProps[]): React.ReactNode;
1407
+ export function LabelButton(label: LabelProps): import( 'react/jsx-runtime').JSX.Element;
1408
+ export function ItemIcon(item: LabelProps): import( 'react/jsx-runtime').JSX.Element;
1409
+ export function ItemRowShort(item: ItemProps): import( 'react/jsx-runtime').JSX.Element;
1410
+ export function ItemRowRich(item: ItemProps): import( 'react/jsx-runtime').JSX.Element;
1411
+ }
1412
+
1413
+ declare module '@jointhedots/ui/src/ApplicationBoard/Utils' {
1414
+ export function SLDSPage({ children, icon, title, onClose, legend, buttons, info, minHeight }: {
1415
+ children: any;
1416
+ icon?: any;
1417
+ title: string;
1418
+ legend?: string;
1419
+ onClose?: Function;
1420
+ buttons?: any;
1421
+ info?: string;
1422
+ minHeight?: string;
1423
+ }): import( 'react/jsx-runtime').JSX.Element;
1424
+ export function isMobile(): boolean;
1425
+ export function NavigationBeacon({ children, component_id }: {
1426
+ children: any;
1427
+ component_id: any;
1428
+ }): import( 'react/jsx-runtime').JSX.Element;
1429
+ export function Box(props: {
1430
+ children?: any;
1431
+ className?: string;
1432
+ sx?: any;
1433
+ }): import( 'react/jsx-runtime').JSX.Element;
1434
+ export function Typography(props: {
1435
+ children?: any;
1436
+ variant?: any;
1437
+ className?: string;
1438
+ sx?: any;
1439
+ }): import( 'react/jsx-runtime').JSX.Element;
1440
+ export function Grid(props: {
1441
+ spacing?: any;
1442
+ md?: any;
1443
+ item?: boolean;
1444
+ container?: boolean;
1445
+ children: any;
1446
+ className?: string;
1447
+ sx?: any;
1448
+ }): import( 'react/jsx-runtime').JSX.Element;
1449
+ }
1450
+
1451
+ declare module '@jointhedots/ui/CodeEditor' {
1452
+ import React from 'react';
1453
+ import * as Monaco from 'monaco-editor';
1454
+ import { editor as Editor, languages as Lang, Uri } from 'monaco-editor';
1455
+ import 'src/CodeEditor/index.scss';
1456
+ export interface CodeLanguageProvider<T> {
1457
+ readonly language: string;
1458
+ readonly uri?: Uri;
1459
+ getContext(model: Editor.ITextModel): T;
1460
+ attachContext(model: Editor.ITextModel, context: T): any;
1461
+ dettachContext(model: Editor.ITextModel): any;
1462
+ checkModel(model: Editor.ITextModel): Promise<Editor.IMarkerData[]>;
1463
+ }
1464
+ export type CodePropsType<T = any> = {
1465
+ value: string;
1466
+ context?: T;
1467
+ className?: string;
1468
+ adjustHeightMax?: number;
1469
+ uri?: Uri;
1470
+ onInit?: (editor: Editor.IStandaloneCodeEditor) => void;
1471
+ onChange?: (model: Editor.ITextModel) => void;
1472
+ };
1473
+ export class StandardLanguageProvider<T> implements CodeLanguageProvider<T> {
1474
+ readonly language: string;
1475
+ readonly uri?: Uri;
1476
+ protected contexts: WeakMap<Monaco.editor.ITextModel, T>;
1477
+ constructor(language: string, uri?: Uri);
1478
+ getContext(model: Editor.ITextModel): T;
1479
+ attachContext(model: Editor.ITextModel, context: T): void;
1480
+ dettachContext(model: Editor.ITextModel): void;
1481
+ checkModel(model: Editor.ITextModel): Promise<Editor.IMarkerData[]>;
1482
+ }
1483
+ export function CodeEditorHOC<T>(provider: CodeLanguageProvider<T>): {
1484
+ new (props: any): {
1485
+ element: HTMLDivElement;
1486
+ editor: Editor.IStandaloneCodeEditor;
1487
+ model: Editor.ITextModel;
1488
+ setting: boolean;
1489
+ getSnapshotBeforeUpdate(_prevProps: any): any;
1490
+ componentDidUpdate(): void;
1491
+ componentWillUnmount(): void;
1492
+ setValue(value: string): void;
1493
+ setDocument(model: Editor.ITextModel): void;
1494
+ useElement: (element: HTMLDivElement) => void;
1495
+ mountEditor(element: HTMLDivElement): void;
1496
+ unmountEditor(): void;
1497
+ adjustHeight(): void;
1498
+ onModelChange: (e: any) => Promise<void>;
1499
+ onContentChange: (e: any) => Promise<void>;
1500
+ render(): import( 'react/jsx-runtime').JSX.Element;
1501
+ context: unknown;
1502
+ setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<CodePropsType<T>>) => {} | Pick<{}, K>) | Pick<{}, K>, callback?: () => void): void;
1503
+ forceUpdate(callback?: () => void): void;
1504
+ readonly props: Readonly<CodePropsType<T>>;
1505
+ state: Readonly<{}>;
1506
+ refs: {
1507
+ [key: string]: React.ReactInstance;
1508
+ };
1509
+ componentDidMount?(): void;
1510
+ shouldComponentUpdate?(nextProps: Readonly<CodePropsType<T>>, nextState: Readonly<{}>, nextContext: any): boolean;
1511
+ componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void;
1512
+ componentWillMount?(): void;
1513
+ UNSAFE_componentWillMount?(): void;
1514
+ componentWillReceiveProps?(nextProps: Readonly<CodePropsType<T>>, nextContext: any): void;
1515
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<CodePropsType<T>>, nextContext: any): void;
1516
+ componentWillUpdate?(nextProps: Readonly<CodePropsType<T>>, nextState: Readonly<{}>, nextContext: any): void;
1517
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<CodePropsType<T>>, nextState: Readonly<{}>, nextContext: any): void;
1518
+ };
1519
+ contextType?: React.Context<any> | undefined;
1520
+ };
1521
+ export function GetLanguageInfos(langId: string): Promise<{
1522
+ conf: Lang.LanguageConfiguration;
1523
+ language: Lang.IMonarchLanguage;
1524
+ }>;
1525
+ }
1526
+
1527
+ declare module '@jointhedots/ui/src/utils/TextInput' {
1528
+ import { HTMLInputTypeAttribute } from 'react';
1529
+ import 'src/utils/Input.scss';
1530
+ export function TextInput({ label, value, onChange, placeholder, type, }: {
1531
+ label: string;
1532
+ onChange: (val: string) => void;
1533
+ placeholder?: string;
1534
+ value: string;
1535
+ type?: HTMLInputTypeAttribute;
1536
+ }): JSX.Element;
1537
+ }
1538
+
1539
+ declare module '@jointhedots/ui/Dialog' {
1540
+ import { JSONSchema } from '@jointhedots/core';
1541
+ export function askQuestion(question: string): Promise<boolean>;
1542
+ export function askData(question: string, schema: JSONSchema, data?: any): Promise<any>;
1543
+ }
1544
+
1545
+ declare module 'src/EmptyListPlaceholder' {
1546
+ import React from 'react';
1547
+ import 'src/EmptyListPlaceholder/style.scss';
1548
+ export interface EmptyListPlaceholderProps {
1549
+ /**
1550
+ * The message to display when the list is empty
1551
+ */
1552
+ message: string;
1553
+ /**
1554
+ * Optional icon name to display above the message
1555
+ * Uses the Icon component from the project
1556
+ */
1557
+ icon?: string;
1558
+ /**
1559
+ * Optional additional className for styling
1560
+ */
1561
+ className?: string;
1562
+ /**
1563
+ * Optional additional inline styles
1564
+ */
1565
+ style?: React.CSSProperties;
1566
+ }
1567
+ /**
1568
+ * EmptyListPlaceholder component
1569
+ *
1570
+ * A reusable component to display a placeholder when a list is empty.
1571
+ * It shows a message and optionally an icon.
1572
+ */
1573
+ export const EmptyListPlaceholder: React.FC<EmptyListPlaceholderProps>;
1574
+ export default EmptyListPlaceholder;
1575
+ }
1576
+
1577
+ declare module '@jointhedots/ui/Notifications' {
1578
+ import { LogInfos, LogObject, QueryLogResult } from '@jointhedots/core';
1579
+ import 'src/Notifications/style.scss';
1580
+ export function useNotificationObjects(count: number, subject_uri?: string): QueryLogResult;
1581
+ export function useNotificationInfos(): LogInfos;
1582
+ export function useNotifications<T>(evaluate: (object?: LogObject) => T, deps?: any[]): T;
1583
+ export function NotificationsBell(): import( 'react/jsx-runtime').JSX.Element;
1584
+ export function NotificationsList(props: {
1585
+ subject_uri?: string;
1586
+ }): import( 'react/jsx-runtime').JSX.Element;
1587
+ export function Notification(props: {
1588
+ object: LogObject;
1589
+ }): import( 'react/jsx-runtime').JSX.Element;
1590
+ }
1591
+
1592
+ declare module '@jointhedots/ui/src/ComponentsLibrary/ComponentsInfos' {
1593
+ import { ComponentPublication } from '@jointhedots/core';
1594
+ export function ComponentCard(props: {
1595
+ entry: ComponentPublication;
1596
+ }): import( 'react/jsx-runtime').JSX.Element;
1597
+ export function ComponentInfos(props: {
1598
+ entry: ComponentPublication;
1599
+ }): import( 'react/jsx-runtime').JSX.Element;
1600
+ }
1601
+
1602
+ declare module '@jointhedots/ui/src/ComponentsLibrary/ComponentsBrowser' {
1603
+ import { ComponentPublication, IComponentProvider, MapLike, ComponentFilter, ComponentManifest } from '@jointhedots/core';
1604
+ import { LabelSelected } from '@jointhedots/ui/Items';
1605
+ import 'src/ComponentsLibrary/index.scss';
1606
+ export function getComponentGroupName(id: string): string;
1607
+ export function getComponentSmallName(id: string): string;
1608
+ export function groupComponentPublications(items: ComponentPublication[]): MapLike<ComponentPublication[]>;
1609
+ export type ComponentItemDisplay = {
1610
+ grouped?: boolean;
1611
+ small?: boolean;
1612
+ allowEdit?: boolean;
1613
+ allowDelete?: boolean;
1614
+ };
1615
+ export function getComponentIcon(entry: ComponentPublication | ComponentManifest): string;
1616
+ export function ComponentLink(props: {
1617
+ id: string;
1618
+ }): import( 'react/jsx-runtime').JSX.Element;
1619
+ export function ComponentItem(props: {
1620
+ entry: ComponentPublication;
1621
+ display?: ComponentItemDisplay;
1622
+ selected?: LabelSelected;
1623
+ onSelect?: (item: ComponentPublication) => void;
1624
+ onActivate?: (item: ComponentPublication) => void;
1625
+ }): import( 'react/jsx-runtime').JSX.Element;
1626
+ export function ComponentsList(props: {
1627
+ entries: ComponentPublication[];
1628
+ display?: ComponentItemDisplay;
1629
+ onSelect?: (infos: ComponentPublication) => void;
1630
+ onActivate?: (infos: ComponentPublication) => void;
1631
+ }): import( 'react/jsx-runtime').JSX.Element | import( 'react/jsx-runtime').JSX.Element[];
1632
+ export function ComponentsFilteredList(props: {
1633
+ filter?: ComponentFilter;
1634
+ provider?: IComponentProvider;
1635
+ display?: ComponentItemDisplay;
1636
+ onSelect?: (infos: ComponentPublication) => void;
1637
+ onActivate?: (infos: ComponentPublication) => void;
1638
+ }): import( 'react/jsx-runtime').JSX.Element;
1639
+ export function ComponentBrowser(props: {
1640
+ filter?: Partial<ComponentFilter>;
1641
+ provider?: IComponentProvider;
1642
+ onSelect?: (infos: ComponentPublication) => void;
1643
+ onActivate?: (infos: ComponentPublication) => void;
1644
+ }): import( 'react/jsx-runtime').JSX.Element;
1645
+ }
1646
+
1647
+ declare module '@jointhedots/ui/src/ComponentsLibrary/ComponentsEditor' {
1648
+ import { ComponentManifest, ComponentEntry, ComponentController, ComponentEditor } from '@jointhedots/core';
1649
+ export function initComponentManifest(driver: ComponentManifest): ComponentManifest;
1650
+ export function createComponent(driver: ComponentEntry, service?: string): Promise<ComponentEntry>;
1651
+ export function editComponent(component: ComponentEntry): Promise<void>;
1652
+ export function ComponentManifestEditor(props: {
1653
+ driver: ComponentEntry;
1654
+ controller: ComponentController;
1655
+ editor?: ComponentEditor;
1656
+ manifest: ComponentManifest;
1657
+ created: boolean;
1658
+ onValidate: (manifest: ComponentManifest) => void;
1659
+ onCancel?: () => void;
1660
+ }): import( 'react/jsx-runtime').JSX.Element;
1661
+ }
1662
+
1663
+ declare module '@jointhedots/ui/src/ComponentsLibrary/ComponentsConfigurator' {
1664
+ import { ComponentFilter, ComponentPublication } from '@jointhedots/core';
1665
+ export function CreateComponentSelector(props: {
1666
+ entries?: ComponentPublication[];
1667
+ service?: string;
1668
+ onCreate?: (pub: ComponentPublication) => void;
1669
+ }): import( 'react/jsx-runtime').JSX.Element;
1670
+ export function NewComponentButton(props: {
1671
+ service?: string;
1672
+ label?: string;
1673
+ onCreate?: (pub: ComponentPublication) => void;
1674
+ }): import( 'react/jsx-runtime').JSX.Element;
1675
+ export function ComponentsConfigurator(props: {
1676
+ title: string;
1677
+ filter?: ComponentFilter;
1678
+ }): import( 'react/jsx-runtime').JSX.Element;
1679
+ }
1680
+
1681
+ declare module '@jointhedots/ui/ComponentsLibrary' {
1682
+ export * from '@jointhedots/ui/src/ComponentsLibrary/ComponentsEditor';
1683
+ export * from '@jointhedots/ui/src/ComponentsLibrary/ComponentsConfigurator';
1684
+ export * from '@jointhedots/ui/src/ComponentsLibrary/ComponentsBrowser';
1685
+ }
1686
+
1687
+ declare module 'src/Layouts/Popup' {
1688
+ export function Popup<D = unknown>(props: {
1689
+ content: React.ReactNode | ((data: D) => Promise<React.ReactNode> | React.ReactNode);
1690
+ data?: D;
1691
+ children: React.ReactNode;
1692
+ }): import( 'react/jsx-runtime').JSX.Element;
1693
+ }
1694
+
1695
+ declare module '@jointhedots/ui/src/ServicePoint/internal' {
1696
+ import { ServicePointSetting, ServicePoint, ComponentPublication } from '@jointhedots/core';
1697
+ import { LabelSelected } from '@jointhedots/ui/Items';
1698
+ export function ServiceConnexionItem(props: {
1699
+ cnx: ComponentPublication;
1700
+ selected?: LabelSelected;
1701
+ selectable?: boolean;
1702
+ onSelect?: (cnx: ComponentPublication) => void;
1703
+ onActivate?: (cnx: ComponentPublication) => void;
1704
+ }): import( 'react/jsx-runtime').JSX.Element;
1705
+ export function switchServiceConnexion(service: ServicePointSetting, multiple: boolean, id: string): ServicePointSetting;
1706
+ export function selectServiceConnexion(service: ServicePointSetting, multiple: boolean, id: string): ServicePointSetting;
1707
+ export function ServiceConnexionSelector(props: {
1708
+ servicePoint: ServicePointSetting;
1709
+ multiple: boolean;
1710
+ colormap?: any[];
1711
+ hasSelectMode?: boolean;
1712
+ onChange: (service: ServicePointSetting, completed: boolean) => void;
1713
+ }): import( 'react/jsx-runtime').JSX.Element;
1714
+ export function ServicePointEditable(props: {
1715
+ servicePoint: ServicePointSetting;
1716
+ providers: ComponentPublication[];
1717
+ colormap?: any[];
1718
+ compact?: boolean;
1719
+ hasSelectMode?: boolean;
1720
+ onChange: (service: ServicePointSetting) => void;
1721
+ }): import( 'react/jsx-runtime').JSX.Element;
1722
+ export function useServiceDescriptor(servicePoint: ServicePoint): ServicePointSetting;
1723
+ }
1724
+
1725
+ declare module '@jointhedots/ui/src/ServicePoint/configurator' {
1726
+ import { ServicePointSetting, ServicePoint } from '@jointhedots/core';
1727
+ export const DefaultColorsMap: ("#00c853" | "#c51162" | "#2962ff" | "#00b8d4" | "#dd2c00" | "#aa00ff" | "#6200ea" | "#ff6d00")[];
1728
+ export function ServicePointStatus(props: {
1729
+ servicePoint: ServicePoint;
1730
+ }): import( 'react/jsx-runtime').JSX.Element;
1731
+ export function ServicePointInput(props: {
1732
+ value: ServicePointSetting;
1733
+ label?: string;
1734
+ type?: string;
1735
+ errorMessage?: string;
1736
+ required?: boolean;
1737
+ disabled?: boolean;
1738
+ onChange: (value: ServicePointSetting) => void;
1739
+ }): import( 'react/jsx-runtime').JSX.Element;
1740
+ export function ServicePointsConfigurator(props: {
1741
+ showAll?: boolean;
1742
+ }): import( 'react/jsx-runtime').JSX.Element;
1743
+ }
1744
+
1745
+ declare module '@jointhedots/ui/src/ServicePoint/boundary' {
1746
+ import React from 'react';
1747
+ import { ServicePoint } from '@jointhedots/core';
1748
+ import { MissingServiceError } from '@jointhedots/core/react';
1749
+ export function DefaultServiceConfigurator(props: {
1750
+ services: ServicePoint[];
1751
+ onApply?: () => void;
1752
+ }): import( 'react/jsx-runtime').JSX.Element;
1753
+ export class ServiceRequirementBoundary extends React.Component<{
1754
+ children: React.ReactNode;
1755
+ }> {
1756
+ state: {
1757
+ error?: MissingServiceError;
1758
+ };
1759
+ componentDidCatch(error: Error): void;
1760
+ render(): import( 'react/jsx-runtime').JSX.Element;
1761
+ }
1762
+ export function registerMissingServiceDisplayer(): void;
1763
+ }
1764
+
1765
+ declare module '@jointhedots/ui/ServicePoint' {
1766
+ export * from '@jointhedots/ui/src/ServicePoint/configurator';
1767
+ export * from '@jointhedots/ui/src/ServicePoint/boundary';
1768
+ }
1769
+
1770
+ declare module '@jointhedots/ui/src/ApplicationBoard/Settings' {
1771
+ export function ApplicationSettings(): React.ReactElement;
1772
+ }
1773
+
1774
+ declare module '@jointhedots/ui/ApplicationBoard' {
1775
+ import { MapLike } from '@jointhedots/core';
1776
+ import { ViewRequirements } from '@jointhedots/core/react';
1777
+ import '@salesforce-ux/design-system/assets/styles/salesforce-lightning-design-system.min.css';
1778
+ import { ViewInfos } from '@jointhedots/core/view';
1779
+ export type AppPage = {
1780
+ icon?: string;
1781
+ view?: string | ViewInfos;
1782
+ description?: string;
1783
+ pages?: MapLike<AppPage>;
1784
+ };
1785
+ export type BaseTooling = {
1786
+ type: string;
1787
+ anchor: "status" | "menu";
1788
+ icon?: string;
1789
+ };
1790
+ export type ServicePointTooling = BaseTooling & {
1791
+ type: "servicePoint";
1792
+ id: string;
1793
+ };
1794
+ export type LinkTooling = BaseTooling & {
1795
+ type: "link";
1796
+ title?: string;
1797
+ url?: string;
1798
+ view?: string | ViewInfos;
1799
+ };
1800
+ export type NotificationsTooling = BaseTooling & {
1801
+ type: "notifications";
1802
+ };
1803
+ export type AppTooling = ServicePointTooling | LinkTooling | NotificationsTooling;
1804
+ export type AppDescriptor = {
1805
+ title?: string;
1806
+ pages?: MapLike<AppPage>;
1807
+ landingPage?: AppPage;
1808
+ toolings?: AppTooling[];
1809
+ requirements?: ViewRequirements;
1810
+ };
1811
+ export function ApplicationPage(props: {
1812
+ title?: string;
1813
+ page: AppPage;
1814
+ origin: ViewInfos;
1815
+ }): import( 'react/jsx-runtime').JSX.Element;
1816
+ export function ApplicationBoard(props: {
1817
+ descriptor: AppDescriptor;
1818
+ placeholder?: React.ReactNode;
1819
+ }): import( 'react/jsx-runtime').JSX.Element;
1820
+ export function ApplicationSelector(): import( 'react/jsx-runtime').JSX.Element;
1821
+ }
1822
+
1823
+ declare module '@jointhedots/ui/src/ApplicationBoard/NavBar' {
1824
+ import { AppDescriptor, AppPage, AppTooling } from '@jointhedots/ui/ApplicationBoard';
1825
+ import { ViewInfos } from '@jointhedots/core/view';
1826
+ export const useOutsideClick: (callback: () => void) => import( 'react').MutableRefObject<HTMLDivElement>;
1827
+ export function PageMenu(props: {
1828
+ title?: string;
1829
+ entry: AppPage;
1830
+ active: string;
1831
+ onGoto: (entry: AppPage) => void;
1832
+ }): import( 'react/jsx-runtime').JSX.Element;
1833
+ export function ApplicationMenu(props: {
1834
+ toolings: AppTooling[];
1835
+ origin: ViewInfos;
1836
+ onClose: () => void;
1837
+ }): import( 'react/jsx-runtime').JSX.Element;
1838
+ export function NavBar(props: {
1839
+ descriptor: AppDescriptor;
1840
+ panel?: boolean;
1841
+ active: string;
1842
+ origin: ViewInfos;
1843
+ }): import( 'react/jsx-runtime').JSX.Element;
1844
+ }
1845
+
1846
+ declare module '@jointhedots/ui/src/ApplicationBoard/component' {
1847
+ import { ComponentEntry, ComponentManifest, ComponentController } from '@jointhedots/core';
1848
+ import { AppDescriptor } from '@jointhedots/ui/ApplicationBoard';
1849
+ export type ApplicationBoardManifest = ComponentManifest & AppDescriptor;
1850
+ export const ApplicationBoardDriver: ComponentController;
1851
+ export function GetApplicationView(component: ComponentEntry): () => import( 'react/jsx-runtime').JSX.Element;
1852
+ }
1853
+
1854
+ declare module '@jointhedots/ui/src/EmptyListPlaceholder/example' {
1855
+ import React from 'react';
1856
+ /**
1857
+ * Example usage of the EmptyListPlaceholder component
1858
+ */
1859
+ export const EmptyListPlaceholderExamples: React.FC;
1860
+ export default EmptyListPlaceholderExamples;
1861
+ }
1862
+