@lumiastream/ui 0.2.8-alpha.8 → 0.2.9
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/README.md +6 -6
- package/dist/LSButton.d.ts +32 -0
- package/dist/LSButton.js +80 -0
- package/dist/LSCheckbox.d.ts +21 -0
- package/dist/LSCheckbox.js +113 -0
- package/dist/LSColorPicker.d.ts +19 -0
- package/dist/LSColorPicker.js +316 -0
- package/dist/LSDatePicker.d.ts +15 -0
- package/dist/LSDatePicker.js +198 -0
- package/dist/LSFontPicker.d.ts +17 -0
- package/dist/LSFontPicker.js +179 -0
- package/dist/LSInput.d.ts +32 -0
- package/dist/LSInput.js +159 -0
- package/dist/LSMultiSelect.d.ts +16 -0
- package/dist/LSMultiSelect.js +274 -0
- package/dist/LSRadio.d.ts +17 -0
- package/dist/LSRadio.js +52 -0
- package/dist/LSSelect.d.ts +12 -0
- package/dist/LSSelect.js +140 -0
- package/dist/LSSliderInput.d.ts +39 -0
- package/dist/LSSliderInput.js +342 -0
- package/dist/LSTextField.d.ts +9 -0
- package/dist/LSTextField.js +63 -0
- package/dist/LSVariableInputField.d.ts +96 -0
- package/dist/LSVariableInputField.js +1402 -0
- package/dist/components.d.ts +22 -0
- package/dist/components.js +2317 -0
- package/dist/index.d.ts +26 -863
- package/dist/index.js +3104 -1393
- package/dist/se-import.d.ts +444 -0
- package/dist/se-import.js +8094 -0
- package/dist/utils/chatMedia.d.ts +106 -0
- package/dist/utils/chatMedia.js +611 -0
- package/dist/utils.d.ts +111 -0
- package/dist/utils.js +830 -0
- package/package.json +73 -6
package/dist/utils.d.ts
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { CompletionContext } from '@codemirror/autocomplete';
|
|
2
|
+
export { BuildChatMessageContentOptions, ChatMessageContentItem, ChatMessageEmoteStore, ChatMessageToken, ChatMessageTokenizationOptions, ChatboxMediaPreview, ChatboxMediaPreviewKind, ChatterProfileResolver, ChatterProfileResolverPayload, ChatterProfileUrlInput, MEDIA_PREVIEW_USER_LEVEL_VALUES, MediaPreviewRoleSettings, MediaPreviewRoleSettingsInput, MediaPreviewUserLevel, MessageLinkPart, ResolveChatterProfileUrlWithResolversInput, buildChatMessageContent, getMediaPreviewFromUrl, getNormalizedUserLevels, isMediaPreviewAllowedForUser, normalizeHttpUrl, normalizeMediaPreviewUserLevels, parseMessageLinks, resolveChatterProfileUrlWithResolvers, resolveMediaPreviewRoleSettings, resolveMediaPreviewSetting, resolvePlatformChatterProfileUrl, tokenizeChatMessage } from './utils/chatMedia.js';
|
|
3
|
+
|
|
4
|
+
declare function variableCompletionOptions(context: CompletionContext, variables: {
|
|
5
|
+
label: string;
|
|
6
|
+
displayLabel: string;
|
|
7
|
+
type: string;
|
|
8
|
+
info: string;
|
|
9
|
+
shouldWrap?: boolean;
|
|
10
|
+
}[]): {
|
|
11
|
+
from: number;
|
|
12
|
+
options: {
|
|
13
|
+
label: string;
|
|
14
|
+
displayLabel: string;
|
|
15
|
+
type: string;
|
|
16
|
+
info: string;
|
|
17
|
+
}[];
|
|
18
|
+
validFor: RegExp;
|
|
19
|
+
} | null;
|
|
20
|
+
|
|
21
|
+
declare const codeMirrorlinterOptions: (type: "overlay" | "code", language?: "js" | "css" | "html" | "json") => {
|
|
22
|
+
languageOptions: {
|
|
23
|
+
ecmaVersion: number;
|
|
24
|
+
sourceType: string;
|
|
25
|
+
globals: {
|
|
26
|
+
_: string;
|
|
27
|
+
moment: string;
|
|
28
|
+
dayjs: string;
|
|
29
|
+
axios: string;
|
|
30
|
+
d3: string;
|
|
31
|
+
Chart: string;
|
|
32
|
+
anime: string;
|
|
33
|
+
gsap: string;
|
|
34
|
+
TweenMax: string;
|
|
35
|
+
TweenLite: string;
|
|
36
|
+
Vue: string;
|
|
37
|
+
angular: string;
|
|
38
|
+
ReactDOM: string;
|
|
39
|
+
$: string;
|
|
40
|
+
jQuery: string;
|
|
41
|
+
React: string;
|
|
42
|
+
BABYLON: string;
|
|
43
|
+
createjs: string;
|
|
44
|
+
p5: string;
|
|
45
|
+
fabric: string;
|
|
46
|
+
THREE: string;
|
|
47
|
+
Phaser: string;
|
|
48
|
+
Pixi: string;
|
|
49
|
+
PixiJS: string;
|
|
50
|
+
L: string;
|
|
51
|
+
mapboxgl: string;
|
|
52
|
+
io: string;
|
|
53
|
+
Pusher: string;
|
|
54
|
+
Echo: string;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
rules: {
|
|
58
|
+
"no-unused-vars": string;
|
|
59
|
+
"no-undef": string;
|
|
60
|
+
"no-use-before-define": (string | {
|
|
61
|
+
functions: boolean;
|
|
62
|
+
classes: boolean;
|
|
63
|
+
})[];
|
|
64
|
+
"no-shadow": string;
|
|
65
|
+
"no-redeclare": string;
|
|
66
|
+
eqeqeq: (string | {
|
|
67
|
+
null: string;
|
|
68
|
+
})[];
|
|
69
|
+
"no-eval": string;
|
|
70
|
+
"no-implied-eval": string;
|
|
71
|
+
"no-new-func": string;
|
|
72
|
+
"no-return-await": string;
|
|
73
|
+
"require-await": string;
|
|
74
|
+
"no-throw-literal": string;
|
|
75
|
+
"no-unmodified-loop-condition": string;
|
|
76
|
+
"no-constant-condition": string;
|
|
77
|
+
"no-debugger": string;
|
|
78
|
+
"no-duplicate-case": string;
|
|
79
|
+
"no-empty": (string | {
|
|
80
|
+
allowEmptyCatch: boolean;
|
|
81
|
+
})[];
|
|
82
|
+
"no-empty-pattern": string;
|
|
83
|
+
"no-fallthrough": string;
|
|
84
|
+
"no-sparse-arrays": string;
|
|
85
|
+
"no-unreachable": string;
|
|
86
|
+
"use-isnan": string;
|
|
87
|
+
"valid-typeof": string;
|
|
88
|
+
"prefer-const": string;
|
|
89
|
+
"no-var": string;
|
|
90
|
+
"prefer-template": string;
|
|
91
|
+
"no-useless-concat": string;
|
|
92
|
+
"no-cond-assign": string;
|
|
93
|
+
"no-constant-binary-expression": string;
|
|
94
|
+
"no-dupe-args": string;
|
|
95
|
+
"no-dupe-keys": string;
|
|
96
|
+
"no-duplicate-imports": string;
|
|
97
|
+
"no-ex-assign": string;
|
|
98
|
+
"no-func-assign": string;
|
|
99
|
+
"no-import-assign": string;
|
|
100
|
+
"no-irregular-whitespace": string;
|
|
101
|
+
"no-misleading-character-class": string;
|
|
102
|
+
"no-prototype-builtins": string;
|
|
103
|
+
"no-unexpected-multiline": string;
|
|
104
|
+
"no-script-url": string;
|
|
105
|
+
"no-unsafe-optional-chaining": string;
|
|
106
|
+
"no-loop-func": string;
|
|
107
|
+
"no-await-in-loop": string;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
export { codeMirrorlinterOptions, variableCompletionOptions };
|