@contember/echo 0.0.28 → 0.0.29
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/atoms/inputs/CheckboxGroup.d.ts +9 -0
- package/dist/components/atoms/inputs/InputWrapper.d.ts +8 -0
- package/dist/components/atoms/inputs/RadioGroup.d.ts +9 -0
- package/dist/components/atoms/inputs/Select.d.ts +9 -0
- package/dist/components/atoms/inputs/TextArea.d.ts +9 -0
- package/dist/components/atoms/inputs/TextInput.d.ts +9 -0
- package/dist/components/molecules/CustomInput.d.ts +9 -0
- package/dist/components/molecules/LauncherButton.d.ts +1 -1
- package/dist/components/molecules/index.d.ts +8 -0
- package/dist/components/organisms/index.d.ts +2 -0
- package/dist/echo.es.js +1743 -1173
- package/dist/echo.umd.js +8 -8
- package/dist/hooks/useInputHandler.d.ts +7 -0
- package/dist/hooks/usePageHeight.d.ts +4 -0
- package/dist/hooks/usePageStateSync.d.ts +4 -0
- package/dist/index.d.ts +41 -2
- package/dist/stores/echoStore.d.ts +1 -0
- package/dist/stores/feedbackStore.d.ts +8 -3
- package/dist/stores/widgetStore.d.ts +3 -1
- package/dist/style.css +1 -1
- package/dist/types.d.ts +68 -4
- package/dist/utils/common.d.ts +1 -0
- package/dist/utils/index.d.ts +0 -1
- package/dist/utils/listeners.d.ts +3 -1
- package/dist/utils/metadata.d.ts +2 -0
- package/dist/utils/monkeyPatch.d.ts +4 -0
- package/dist/utils/notifications.d.ts +6 -0
- package/dist/utils/stateManagement.d.ts +8 -0
- package/dist/utils/storage.d.ts +5 -3
- package/package.json +1 -1
- package/dist/utils/debounce.d.ts +0 -1
@@ -0,0 +1,9 @@
|
|
1
|
+
import { Component } from 'solid-js';
|
2
|
+
import { CheckboxInputConfig } from '~/types';
|
3
|
+
type CheckboxGroupProps = {
|
4
|
+
config: CheckboxInputConfig;
|
5
|
+
value: string[];
|
6
|
+
onChange: (value: string[]) => void;
|
7
|
+
};
|
8
|
+
export declare const CheckboxGroup: Component<CheckboxGroupProps>;
|
9
|
+
export {};
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { Component } from 'solid-js';
|
2
|
+
import { RadioInputConfig } from '~/types';
|
3
|
+
type RadioGroupProps = {
|
4
|
+
config: RadioInputConfig;
|
5
|
+
value: string;
|
6
|
+
onChange: (value: string) => void;
|
7
|
+
};
|
8
|
+
export declare const RadioGroup: Component<RadioGroupProps>;
|
9
|
+
export {};
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { Component } from 'solid-js';
|
2
|
+
import type { SelectInputConfig } from '~/types';
|
3
|
+
type SelectProps = {
|
4
|
+
config: SelectInputConfig;
|
5
|
+
value: string;
|
6
|
+
onChange: (value: string) => void;
|
7
|
+
};
|
8
|
+
export declare const Select: Component<SelectProps>;
|
9
|
+
export {};
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { Component } from 'solid-js';
|
2
|
+
import type { TextAreaConfig } from '~/types';
|
3
|
+
type TextAreaProps = {
|
4
|
+
config: TextAreaConfig;
|
5
|
+
value: string;
|
6
|
+
onChange: (value: string) => void;
|
7
|
+
};
|
8
|
+
export declare const TextArea: Component<TextAreaProps>;
|
9
|
+
export {};
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { Component } from 'solid-js';
|
2
|
+
import { TextInputConfig } from '~/types';
|
3
|
+
type TextInputProps = {
|
4
|
+
config: TextInputConfig;
|
5
|
+
value: string;
|
6
|
+
onChange: (value: string) => void;
|
7
|
+
};
|
8
|
+
export declare const TextInput: Component<TextInputProps>;
|
9
|
+
export {};
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import { Component } from 'solid-js';
|
2
|
+
import type { CustomInputConfig, CustomInputValue } from '~/types';
|
3
|
+
type CustomInputProps = {
|
4
|
+
config: CustomInputConfig;
|
5
|
+
value: CustomInputValue;
|
6
|
+
onChange: (value: CustomInputValue) => void;
|
7
|
+
};
|
8
|
+
export declare const CustomInput: Component<CustomInputProps>;
|
9
|
+
export {};
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import type
|
1
|
+
import { type Component } from 'solid-js';
|
2
2
|
export declare const LauncherButton: Component;
|
@@ -0,0 +1,8 @@
|
|
1
|
+
export * from './ColorSelector';
|
2
|
+
export * from './DrawingToolbar';
|
3
|
+
export * from './DrawingTooltip';
|
4
|
+
export * from './LauncherButton';
|
5
|
+
export * from './Notification';
|
6
|
+
export * from './ShapeActions';
|
7
|
+
export * from './StoredFeedback';
|
8
|
+
export * from './WelcomeMessage';
|