@appkit/dek-lib 0.19.0 → 0.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/CommandGroup/CommandGroup.styled.d.ts +2 -298
- package/dist/components/Header/Header.styled.d.ts +3 -816
- package/dist/components/Router/Router.styled.d.ts +1 -272
- package/dist/icon-192x192.png +0 -0
- package/dist/icon-256x256.png +0 -0
- package/dist/icon-384x384.png +0 -0
- package/dist/icon-512x512.png +0 -0
- package/dist/index.es.js +39880 -31383
- package/dist/index.umd.js +39899 -31402
- package/dist/manifest.webmanifest +32 -0
- package/dist/plugins/base/components/Greeting/Greeting.styled.d.ts +2 -544
- package/dist/plugins/base/components/backgrounds/BlurredLightsBackground/BlurredLightsBackground.styled.d.ts +19 -5168
- package/dist/plugins/base/screens/dev/ComponentScreen/ComponentScreen.styled.d.ts +1 -50
- package/dist/plugins/calendar/CalendarTiles/CalendarTiles.styled.d.ts +3 -816
- package/dist/plugins/calendar/screens/EventScreen/EventScreen.styled.d.ts +1 -272
- package/dist/plugins/home-assistant/MediaView/MediaView.styled.d.ts +5 -1114
- package/dist/plugins/sample/boards/SampleBoard.d.ts +4 -0
- package/dist/plugins/sample/components/CenteredText.d.ts +6 -0
- package/dist/plugins/sample/components/JsonView.d.ts +6 -0
- package/dist/plugins/sample/components/ToggleButton.d.ts +5 -0
- package/dist/plugins/sample/plugin.d.ts +11 -0
- package/dist/plugins/sample/screens/SampleScreen/SampleScreen.d.ts +4 -0
- package/dist/plugins/weather/WeatherComponent/WeatherComponent.styled.d.ts +3 -816
- package/dist/plugins/weather/WeatherDisplay/WeatherDisplay.styled.d.ts +3 -816
- package/package.json +6 -5
|
@@ -1,52 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import AceEditor from 'react-ace';
|
|
3
|
-
export declare const AceEditorStyled: import("styled-components").IStyledComponent<"web", {
|
|
4
|
-
name?: string | undefined;
|
|
5
|
-
style?: import("react").CSSProperties | undefined;
|
|
6
|
-
mode?: string | object | undefined;
|
|
7
|
-
theme?: string | undefined;
|
|
8
|
-
height?: string | undefined;
|
|
9
|
-
width?: string | undefined;
|
|
10
|
-
className?: string | undefined;
|
|
11
|
-
fontSize?: string | number | undefined;
|
|
12
|
-
showGutter?: boolean | undefined;
|
|
13
|
-
showPrintMargin?: boolean | undefined;
|
|
14
|
-
highlightActiveLine?: boolean | undefined;
|
|
15
|
-
focus?: boolean | undefined;
|
|
16
|
-
cursorStart?: number | undefined;
|
|
17
|
-
wrapEnabled?: boolean | undefined;
|
|
18
|
-
readOnly?: boolean | undefined;
|
|
19
|
-
minLines?: number | undefined;
|
|
20
|
-
maxLines?: number | undefined;
|
|
21
|
-
navigateToFileEnd?: boolean | undefined;
|
|
22
|
-
debounceChangePeriod?: number | undefined;
|
|
23
|
-
enableBasicAutocompletion?: boolean | string[] | undefined;
|
|
24
|
-
enableLiveAutocompletion?: boolean | string[] | undefined;
|
|
25
|
-
tabSize?: number | undefined;
|
|
26
|
-
value?: string | undefined;
|
|
27
|
-
placeholder?: string | undefined;
|
|
28
|
-
defaultValue?: string | undefined;
|
|
29
|
-
scrollMargin?: number[] | undefined;
|
|
30
|
-
enableSnippets?: boolean | undefined;
|
|
31
|
-
onSelectionChange?: ((value: any, event?: any) => void) | undefined;
|
|
32
|
-
onCursorChange?: ((value: any, event?: any) => void) | undefined;
|
|
33
|
-
onInput?: ((event?: any) => void) | undefined;
|
|
34
|
-
onLoad?: ((editor: import("ace-builds").Ace.Editor) => void) | undefined;
|
|
35
|
-
onValidate?: ((annotations: import("ace-builds").Ace.Annotation[]) => void) | undefined;
|
|
36
|
-
onBeforeLoad?: ((ace: typeof import("ace-builds")) => void) | undefined;
|
|
37
|
-
onChange?: ((value: string, event?: any) => void) | undefined;
|
|
38
|
-
onSelection?: ((selectedText: string, event?: any) => void) | undefined;
|
|
39
|
-
onCopy?: ((value: string) => void) | undefined;
|
|
40
|
-
onPaste?: ((value: string) => void) | undefined;
|
|
41
|
-
onFocus?: ((event: any, editor?: import("ace-builds").Ace.Editor | undefined) => void) | undefined;
|
|
42
|
-
onBlur?: ((event: any, editor?: import("ace-builds").Ace.Editor | undefined) => void) | undefined;
|
|
43
|
-
onScroll?: ((editor: import("react-ace").IEditorProps) => void) | undefined;
|
|
44
|
-
editorProps?: import("react-ace").IEditorProps | undefined;
|
|
45
|
-
setOptions?: import("react-ace").IAceOptions | undefined;
|
|
46
|
-
keyboardHandler?: string | undefined;
|
|
47
|
-
commands?: import("react-ace").ICommand[] | undefined;
|
|
48
|
-
annotations?: import("ace-builds").Ace.Annotation[] | undefined;
|
|
49
|
-
markers?: import("react-ace").IMarker[] | undefined;
|
|
50
|
-
ref?: import("react").Ref<AceEditor> | undefined;
|
|
51
|
-
key?: import("react").Key | null | undefined;
|
|
52
|
-
}> & typeof AceEditor;
|
|
3
|
+
export declare const AceEditorStyled: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").FastOmit<import("react-ace").IAceEditorProps & import("react").RefAttributes<AceEditor>, never>> & Omit<typeof AceEditor, keyof import("react").Component<any, {}, any>>;
|