@retailcrm/embed-ui-v1-components 0.5.18 → 0.5.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.
- package/dist/remote.cjs +10 -1
- package/dist/remote.d.ts +18 -0
- package/dist/remote.js +10 -1
- package/package.json +1 -1
package/dist/remote.cjs
CHANGED
|
@@ -61,8 +61,15 @@ const UiCheckbox = defineRemoteComponent(
|
|
|
61
61
|
const UiCopyButtonType = "UiCopyButton";
|
|
62
62
|
const UiCopyButton = defineRemoteComponent(
|
|
63
63
|
UiCopyButtonType,
|
|
64
|
-
["click", "focus", "blur"]
|
|
64
|
+
["click", "focus", "blur"],
|
|
65
|
+
[
|
|
66
|
+
"trigger",
|
|
67
|
+
"hint",
|
|
68
|
+
"hint-copied"
|
|
69
|
+
]
|
|
65
70
|
);
|
|
71
|
+
const UiDateType = "UiDate";
|
|
72
|
+
const UiDate = defineRemoteComponent(UiDateType);
|
|
66
73
|
const UiErrorType = "UiError";
|
|
67
74
|
const UiError = defineRemoteComponent(
|
|
68
75
|
UiErrorType,
|
|
@@ -1831,6 +1838,8 @@ exports.UiCheckbox = UiCheckbox;
|
|
|
1831
1838
|
exports.UiCheckboxType = UiCheckboxType;
|
|
1832
1839
|
exports.UiCopyButton = UiCopyButton;
|
|
1833
1840
|
exports.UiCopyButtonType = UiCopyButtonType;
|
|
1841
|
+
exports.UiDate = UiDate;
|
|
1842
|
+
exports.UiDateType = UiDateType;
|
|
1834
1843
|
exports.UiError = UiError;
|
|
1835
1844
|
exports.UiErrorType = UiErrorType;
|
|
1836
1845
|
exports.UiLink = UiLink;
|
package/dist/remote.d.ts
CHANGED
|
@@ -297,6 +297,24 @@ declare type UiCopyButtonProperties = {
|
|
|
297
297
|
|
|
298
298
|
export declare const UiCopyButtonType: SchemaType<"UiCopyButton", RemoteProperties<UiCopyButtonProperties>>;
|
|
299
299
|
|
|
300
|
+
export declare const UiDate: Component< {
|
|
301
|
+
[x: string]: unknown;
|
|
302
|
+
}, RemoteProperties<UiDateProperties>, {
|
|
303
|
+
[x: string]: never;
|
|
304
|
+
}, {
|
|
305
|
+
[x: string]: never;
|
|
306
|
+
}, MethodOptions, {
|
|
307
|
+
[x: string]: never;
|
|
308
|
+
}>;
|
|
309
|
+
|
|
310
|
+
declare type UiDateProperties = {
|
|
311
|
+
date: Date | string;
|
|
312
|
+
withTime: boolean;
|
|
313
|
+
locale?: Locale;
|
|
314
|
+
};
|
|
315
|
+
|
|
316
|
+
export declare const UiDateType: SchemaType<"UiDate", RemoteProperties<UiDateProperties>>;
|
|
317
|
+
|
|
300
318
|
export declare const UiError: Component< {
|
|
301
319
|
[x: string]: unknown;
|
|
302
320
|
}, RemoteProperties<UiErrorProperties>, {
|
package/dist/remote.js
CHANGED
|
@@ -59,8 +59,15 @@ const UiCheckbox = defineRemoteComponent(
|
|
|
59
59
|
const UiCopyButtonType = "UiCopyButton";
|
|
60
60
|
const UiCopyButton = defineRemoteComponent(
|
|
61
61
|
UiCopyButtonType,
|
|
62
|
-
["click", "focus", "blur"]
|
|
62
|
+
["click", "focus", "blur"],
|
|
63
|
+
[
|
|
64
|
+
"trigger",
|
|
65
|
+
"hint",
|
|
66
|
+
"hint-copied"
|
|
67
|
+
]
|
|
63
68
|
);
|
|
69
|
+
const UiDateType = "UiDate";
|
|
70
|
+
const UiDate = defineRemoteComponent(UiDateType);
|
|
64
71
|
const UiErrorType = "UiError";
|
|
65
72
|
const UiError = defineRemoteComponent(
|
|
66
73
|
UiErrorType,
|
|
@@ -1830,6 +1837,8 @@ export {
|
|
|
1830
1837
|
UiCheckboxType,
|
|
1831
1838
|
UiCopyButton,
|
|
1832
1839
|
UiCopyButtonType,
|
|
1840
|
+
UiDate,
|
|
1841
|
+
UiDateType,
|
|
1833
1842
|
UiError,
|
|
1834
1843
|
UiErrorType,
|
|
1835
1844
|
UiLink,
|
package/package.json
CHANGED