@ambita/design-system 3.0.28 → 3.0.30-391.0
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/aux.common.js +276 -117
- package/dist/aux.common.js.map +1 -1
- package/dist/aux.umd.js +276 -117
- package/dist/aux.umd.js.map +1 -1
- package/dist/aux.umd.min.js +5 -5
- package/dist/aux.umd.min.js.map +1 -1
- package/dist/types/components/Time/Time.vue.d.ts +25 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { formatDate, FormatTypes } from '@/helpers/formatters/formatDateAndTime/index';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
date: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
format: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
required: false;
|
|
10
|
+
};
|
|
11
|
+
}, {
|
|
12
|
+
formatDate: typeof formatDate;
|
|
13
|
+
formatFirstDate: (date: string, format?: FormatTypes) => string;
|
|
14
|
+
formatSecondDate: (date: string, format?: FormatTypes) => string | undefined;
|
|
15
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
16
|
+
date: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
format: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
required: false;
|
|
23
|
+
};
|
|
24
|
+
}>>, {}>;
|
|
25
|
+
export default _default;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export { default as AuxTextArea } from './components/TextArea/TextArea.vue';
|
|
|
14
14
|
export { default as AuxUpload } from './components/Upload/Upload.vue';
|
|
15
15
|
export { default as AuxCard } from './components/Card/Card.vue';
|
|
16
16
|
export { default as AuxTag } from './components/Tag/Tag.vue';
|
|
17
|
+
export { default as AuxTime } from './components/Time/Time.vue';
|
|
17
18
|
export { default as AuxToggle } from './components/Toggle/Toggle.vue';
|
|
18
19
|
export { default as AuxPagination } from './components/Pagination/Pagination.vue';
|
|
19
20
|
export { default as AuxDirectionalArrow } from './components/DirectionalArrow/DirectionalArrow.vue';
|