tsv2-library 0.0.12 → 0.0.13
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/v2/Button/Button.vue.d.ts +12 -14
- package/dist/components/v2/ButtonLogHistory/ButtonLogHistory.vue.d.ts +16 -0
- package/dist/components/v2/ButtonViewLog/ButtonViewLog.vue.d.ts +16 -0
- package/dist/components/v2/Checkbox/Checkbox.vue.d.ts +13 -15
- package/dist/components/v2/Dropdown/Dropdown.vue.d.ts +1 -0
- package/dist/components/v2/FieldWrapper/FieldWrapper.vue.d.ts +11 -0
- package/dist/components/v2/MultiSelect/MultiSelect.vue.d.ts +1 -0
- package/dist/components/v2/ValidatorMessage/ValidatorMessage.vue.d.ts +9 -0
- package/dist/components/v2/index.d.ts +11 -1
- package/dist/style.css +1 -1
- package/dist/tsv2-library.cjs.js +22 -17
- package/dist/tsv2-library.cjs.js.map +1 -1
- package/dist/tsv2-library.es.js +5037 -971
- package/dist/tsv2-library.es.js.map +1 -1
- package/dist/tsv2-library.umd.js +34 -29
- package/dist/tsv2-library.umd.js.map +1 -1
- package/dist/types/fieldValidation.type.d.ts +9 -0
- package/dist/utils/exportToExcel.util.d.ts +7 -0
- package/dist/utils/index.d.ts +8 -0
- package/dist/utils/textFormater.util.d.ts +3 -0
- package/package.json +1 -1
- package/src/components/v2/Button/Button.vue.d.ts +12 -0
- package/src/components/v2/ButtonLogHistory/ButtonLogHistory.vue.d.ts +16 -0
- package/src/components/v2/ButtonViewLog/ButtonViewLog.vue.d.ts +16 -0
- package/src/components/v2/Checkbox/Checkbox.vue.d.ts +13 -0
- package/src/components/v2/Dropdown/Dropdown.vue.d.ts +1 -0
- package/src/components/v2/FieldWrapper/FieldWrapper.vue.d.ts +11 -0
- package/src/components/v2/MultiSelect/MultiSelect.vue.d.ts +1 -0
- package/src/components/v2/ValidatorMessage/ValidatorMessage.vue.d.ts +9 -0
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
}>>, {}, {}>;
|
|
14
|
-
export default _sfc_main;
|
|
1
|
+
import { DefineComponent } from 'vue';
|
|
2
|
+
import { ButtonProps } from '../../../../node_modules/primevue/button';
|
|
3
|
+
import type { TSVueIcons } from '../../../components/v2/Icon/Icon.vue.d';
|
|
4
|
+
|
|
5
|
+
export interface TSButtonProps
|
|
6
|
+
extends /* @vue-ignore */ Omit<ButtonProps, 'icon'> {
|
|
7
|
+
icon?: TSVueIcons;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
declare const TSButton: DefineComponent<TSButtonProps>;
|
|
11
|
+
|
|
12
|
+
export default TSButton;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { DefineComponent } from 'vue';
|
|
2
|
+
|
|
3
|
+
export interface ButtonLogHistoryProps {
|
|
4
|
+
showHistoryLog?: boolean;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export type ButtonLogHistoryEmits = {
|
|
8
|
+
'update:showHistoryLog': [state: boolean];
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
declare const ButtonLogHistory: DefineComponent<
|
|
12
|
+
ButtonLogHistoryProps,
|
|
13
|
+
ButtonLogHistoryEmits
|
|
14
|
+
>;
|
|
15
|
+
|
|
16
|
+
export default ButtonLogHistory;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { DefineComponent } from 'vue';
|
|
2
|
+
|
|
3
|
+
export interface ButtonViewLogProps {
|
|
4
|
+
showLog?: boolean;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export type ButtonViewLogEmits = {
|
|
8
|
+
'update:showLog': [state: boolean];
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
declare const ButtonViewLog: DefineComponent<
|
|
12
|
+
ButtonViewLogProps,
|
|
13
|
+
ButtonViewLogEmits
|
|
14
|
+
>;
|
|
15
|
+
|
|
16
|
+
export default ButtonViewLog;
|
|
@@ -1,15 +1,13 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
}, {}, {}>;
|
|
15
|
-
export default _sfc_main;
|
|
1
|
+
import { DefineComponent } from 'vue';
|
|
2
|
+
|
|
3
|
+
export interface CheckboxProps {
|
|
4
|
+
modelValue: boolean;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export type CheckboxEmits = {
|
|
8
|
+
'update:modelValue': [state: boolean];
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
declare const Checkbox: DefineComponent<CheckboxProps, CheckboxEmits>;
|
|
12
|
+
|
|
13
|
+
export default Checkbox;
|
|
@@ -1,4 +1,14 @@
|
|
|
1
|
+
import TSBadge from './Badge/Badge.vue';
|
|
2
|
+
import TSBreadcrumb from './Breadcrumb/Breadcrumb.vue';
|
|
1
3
|
import TSButton from './Button/Button.vue';
|
|
4
|
+
import TSButtonLogHistory from './ButtonLogHistory/ButtonLogHistory.vue';
|
|
5
|
+
import TSButtonViewLog from './ButtonViewLog/ButtonViewLog.vue';
|
|
2
6
|
import TSCheckbox from './Checkbox/Checkbox.vue';
|
|
7
|
+
import TSFilterContainer from './FilterContainer/FilterContainer.vue';
|
|
8
|
+
import TSForm from './Form/Form.vue';
|
|
9
|
+
import TSInputEmail from './InputEmail/InputEmail.vue';
|
|
10
|
+
import TSInputNumber from './InputNumber/InputNumber.vue';
|
|
11
|
+
import TSInputText from './InputText/InputText.vue';
|
|
3
12
|
import TSTabMenu from './TabMenu/TabMenu.vue';
|
|
4
|
-
|
|
13
|
+
import TSValidatorMessage from './ValidatorMessage/ValidatorMessage.vue';
|
|
14
|
+
export { TSBadge, TSBreadcrumb, TSButton, TSButtonLogHistory, TSButtonViewLog, TSCheckbox, TSFilterContainer, TSForm, TSInputEmail, TSInputNumber, TSInputText, TSTabMenu, TSValidatorMessage, };
|