@factoringplus/pl-components-pack-v3 1.3.1-pre-03 → 1.3.1-pre-05
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/components.d.ts +40 -5
- package/dist/components/entry.d.ts +17 -0
- package/dist/pl-components-pack-v3.es.js +5128 -5080
- package/dist/pl-components-pack-v3.umd.js +36 -36
- package/package.json +1 -1
@@ -1,4 +1,42 @@
|
|
1
|
-
import {
|
1
|
+
import { default as PlCurrency } from './deprecated/currency-input';
|
2
|
+
import { default as PlCheckbox } from './deprecated/pl-checkbox';
|
3
|
+
import { default as PlDatePickerPlugin } from './deprecated/pl-date-picker';
|
4
|
+
import { default as PlDatePickerLegacyPlugin } from './deprecated/pl-date-picker-legacy';
|
5
|
+
import { default as PlInput } from './deprecated/pl-input';
|
6
|
+
import { default as PlSelect } from './deprecated/pl-select';
|
7
|
+
import { default as PlSuggestions } from './deprecated/pl-suggestions';
|
8
|
+
import { default as PlTablePlugin } from './deprecated/pl-table';
|
9
|
+
import { default as PlTooltip } from './deprecated/pl-tooltip';
|
10
|
+
import { default as PlUpload } from './deprecated/pl-upload';
|
11
|
+
import { default as PlUploadLegacy } from './deprecated/pl-upload-legacy';
|
12
|
+
import { default as PlDialog } from './deprecated/pl-dialog';
|
13
|
+
import { default as PlButton } from './basic/pl-button';
|
14
|
+
import { default as PlAutocomplete } from './form/pl-autocomplete';
|
15
|
+
import { default as PlCard } from './data/pl-card';
|
16
|
+
import { default as PlCheckboxPlus } from './form/pl-checkbox-plus';
|
17
|
+
import { default as PlDatePickerPlusPlugin } from './form/pl-date-picker-plus';
|
18
|
+
import { default as PlDialogPlus } from './basic/pl-dialog';
|
19
|
+
import { default as PlForm } from './form/pl-form';
|
20
|
+
import { default as PlIcon } from './shared/pl-icon';
|
21
|
+
import { default as PlInputPlus } from './form/pl-input-plus';
|
22
|
+
import { default as PlLink } from './basic/pl-link';
|
23
|
+
import { default as PlMultitab } from './data/pl-multitab';
|
24
|
+
import { default as PlRadio } from './form/pl-radio';
|
25
|
+
import { default as PlScrollbar } from './basic/pl-scrollbar';
|
26
|
+
import { default as PlSelectPlus } from './form/pl-select-plus';
|
27
|
+
import { default as PlMultiSelect } from './form/pl-multi-select';
|
28
|
+
import { default as PlSkeleton } from './basic/pl-skeleton';
|
29
|
+
import { default as PlSnackbar } from './data/pl-snackbar';
|
30
|
+
import { default as PlStepper } from './data/pl-stepper';
|
31
|
+
import { default as PlSwitch } from './form/pl-switch';
|
32
|
+
import { default as PlTabPane } from './shared/pl-tab-pane';
|
33
|
+
import { default as PlTablePlus } from './data/pl-table-plus';
|
34
|
+
import { default as PlTabs } from './data/pl-tabs';
|
35
|
+
import { default as PlTextPlugin } from './shared/pl-text';
|
36
|
+
import { default as PlUploadPlus } from './form/pl-upload-plus';
|
37
|
+
import { default as PlTooltipPlus } from './basic/pl-tooltip-plus';
|
38
|
+
import { default as PlMarkText } from './shared/pl-mark-text';
|
39
|
+
import { default as PlPagination } from './data/pl-table-plus/components/Pagination';
|
2
40
|
|
3
41
|
export * from './deprecated/pl-checkbox';
|
4
42
|
export * from './deprecated/pl-date-picker';
|
@@ -45,7 +83,4 @@ export * from '../utils/deepSet';
|
|
45
83
|
export * from '../utils/dadataParser';
|
46
84
|
export * from '../plugins/filters';
|
47
85
|
export * from '../plugins/api/api';
|
48
|
-
|
49
|
-
[key: string]: Plugin;
|
50
|
-
};
|
51
|
-
export { plugins };
|
86
|
+
export { PlButton, PlCurrency, PlAutocomplete, PlCard, PlCheckbox, PlCheckboxPlus, PlDatePickerPlugin, PlDatePickerLegacyPlugin, PlDatePickerPlusPlugin, PlDialogPlus, PlDialog, PlForm, PlIcon, PlInput, PlInputPlus, PlLink, PlMultitab, PlRadio, PlScrollbar, PlSelect, PlSelectPlus, PlSkeleton, PlSnackbar, PlStepper, PlSuggestions, PlSwitch, PlTabPane, PlTablePlugin, PlTablePlus, PlTabs, PlTextPlugin, PlTooltip, PlUpload, PlUploadLegacy, PlUploadPlus, PlTooltipPlus, PlMultiSelect, PlMarkText, PlPagination, };
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { App } from 'vue';
|
2
|
+
import { default as ApiJs, cancelAllApiRequests } from '../plugins/api/api';
|
3
|
+
import { default as plLoading } from '../services/plLoading';
|
4
|
+
import { default as loadingAndSetup } from '../plugins/loading/loading';
|
5
|
+
import { default as Notification } from './data/pl-snackbar/renderSnackbar';
|
6
|
+
import { default as PlDirectives } from '../directives';
|
7
|
+
import { default as formatCurrency } from '../utils/formatCurrency';
|
8
|
+
import { default as declOfNum } from '../utils/declOfNum';
|
9
|
+
import { default as filters } from '../plugins/filters';
|
10
|
+
import { default as isEqual } from '../utils/isEqual';
|
11
|
+
import { default as formatDate } from '../utils/formatDate';
|
12
|
+
import { default as deepSet } from '../utils/deepSet';
|
13
|
+
import { default as dataParser } from '../utils/dadataParser';
|
14
|
+
|
15
|
+
export declare const install: (app: App) => void;
|
16
|
+
export { Notification as PlNotification, ApiJs as apiJs, plLoading, loadingAndSetup as loader, formatCurrency, filters, declOfNum, isEqual, formatDate, deepSet, dataParser, cancelAllApiRequests, PlDirectives, };
|
17
|
+
export * from './components';
|