@retailcrm/embed-ui-v1-components 0.5.18 → 0.5.19
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 +4 -0
- package/dist/remote.d.ts +18 -0
- package/dist/remote.js +4 -0
- package/package.json +1 -1
package/dist/remote.cjs
CHANGED
|
@@ -63,6 +63,8 @@ const UiCopyButton = defineRemoteComponent(
|
|
|
63
63
|
UiCopyButtonType,
|
|
64
64
|
["click", "focus", "blur"]
|
|
65
65
|
);
|
|
66
|
+
const UiDateType = "UiDate";
|
|
67
|
+
const UiDate = defineRemoteComponent(UiDateType);
|
|
66
68
|
const UiErrorType = "UiError";
|
|
67
69
|
const UiError = defineRemoteComponent(
|
|
68
70
|
UiErrorType,
|
|
@@ -1831,6 +1833,8 @@ exports.UiCheckbox = UiCheckbox;
|
|
|
1831
1833
|
exports.UiCheckboxType = UiCheckboxType;
|
|
1832
1834
|
exports.UiCopyButton = UiCopyButton;
|
|
1833
1835
|
exports.UiCopyButtonType = UiCopyButtonType;
|
|
1836
|
+
exports.UiDate = UiDate;
|
|
1837
|
+
exports.UiDateType = UiDateType;
|
|
1834
1838
|
exports.UiError = UiError;
|
|
1835
1839
|
exports.UiErrorType = UiErrorType;
|
|
1836
1840
|
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
|
@@ -61,6 +61,8 @@ const UiCopyButton = defineRemoteComponent(
|
|
|
61
61
|
UiCopyButtonType,
|
|
62
62
|
["click", "focus", "blur"]
|
|
63
63
|
);
|
|
64
|
+
const UiDateType = "UiDate";
|
|
65
|
+
const UiDate = defineRemoteComponent(UiDateType);
|
|
64
66
|
const UiErrorType = "UiError";
|
|
65
67
|
const UiError = defineRemoteComponent(
|
|
66
68
|
UiErrorType,
|
|
@@ -1830,6 +1832,8 @@ export {
|
|
|
1830
1832
|
UiCheckboxType,
|
|
1831
1833
|
UiCopyButton,
|
|
1832
1834
|
UiCopyButtonType,
|
|
1835
|
+
UiDate,
|
|
1836
|
+
UiDateType,
|
|
1833
1837
|
UiError,
|
|
1834
1838
|
UiErrorType,
|
|
1835
1839
|
UiLink,
|
package/package.json
CHANGED