@retailcrm/embed-ui-v1-components 0.9.11-alpha.1 → 0.9.11-alpha.2
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/host.cjs +266 -1809
- package/dist/host.css +36 -0
- package/dist/host.d.ts +30 -1
- package/dist/host.js +220 -1763
- package/dist/remote.cjs +230 -2702
- package/dist/remote.d.ts +5 -1
- package/dist/remote.js +157 -2629
- package/package.json +3 -2
package/dist/remote.d.ts
CHANGED
|
@@ -357,11 +357,11 @@ declare const __VLS_component_2: DefineComponent<ExtractPropTypes<{
|
|
|
357
357
|
popperClass: string;
|
|
358
358
|
popperOptions: Omit<UiPopperProperties, "shown" | "target" | "placement" | "triggers"> | undefined;
|
|
359
359
|
ticker: boolean;
|
|
360
|
+
filterable: boolean;
|
|
360
361
|
multiple: boolean;
|
|
361
362
|
placeholderOnly: boolean;
|
|
362
363
|
textboxSize: "xs" | "sm" | "lg" | "md" | "xl" | SIZE_4;
|
|
363
364
|
popperFitTrigger: boolean;
|
|
364
|
-
filterable: boolean;
|
|
365
365
|
equalsFn: (a: unknown, b: unknown) => boolean;
|
|
366
366
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
367
367
|
declare const __VLS_component_3: DefineComponent<ExtractPropTypes<{
|
|
@@ -646,6 +646,8 @@ declare enum INPUTMODE {
|
|
|
646
646
|
URL = "url"
|
|
647
647
|
}
|
|
648
648
|
declare type Locale = 'en-GB' | 'es-ES' | 'ru-RU';
|
|
649
|
+
declare type MODAL_SIDEBAR_ROLE = 'dialog' | 'alertdialog';
|
|
650
|
+
declare type MODAL_WINDOW_ROLE = 'dialog' | 'alertdialog';
|
|
649
651
|
export declare const mountEndpointRoot: (channel: Channel) => Promise<RemoteRoot<SchemaOf<string>>>;
|
|
650
652
|
declare type Numeric = number | string;
|
|
651
653
|
declare enum PLACEMENT {
|
|
@@ -1944,6 +1946,7 @@ declare type UiModalSidebarProperties = {
|
|
|
1944
1946
|
fixed?: boolean;
|
|
1945
1947
|
scrolling?: SCROLLING | `${SCROLLING}`;
|
|
1946
1948
|
size?: SIZE_6 | `${SIZE_6}`;
|
|
1949
|
+
role?: MODAL_SIDEBAR_ROLE;
|
|
1947
1950
|
};
|
|
1948
1951
|
export declare const UiModalSidebarType: SchemaType<"UiModalSidebar", RemoteProperties<UiModalSidebarProperties>, Record<string, never>>;
|
|
1949
1952
|
export declare const UiModalWindow: {
|
|
@@ -2083,6 +2086,7 @@ declare type UiModalWindowSurfaceProperties = {
|
|
|
2083
2086
|
responsive?: boolean;
|
|
2084
2087
|
disposeTimeout?: number | string | null;
|
|
2085
2088
|
scrolling?: SCROLLING_2 | `${SCROLLING_2}`;
|
|
2089
|
+
role?: MODAL_WINDOW_ROLE;
|
|
2086
2090
|
};
|
|
2087
2091
|
export declare const UiModalWindowSurfaceType: SchemaType<"UiModalWindowSurface", RemoteProperties<UiModalWindowSurfaceProperties>, RemoteCallable<UiModalWindowSurfaceMethods>>;
|
|
2088
2092
|
export declare const UiModalWindowType: SchemaType<"UiModalWindow", RemoteProperties<UiModalWindowProperties>, RemoteCallable<UiModalWindowMethods>>;
|