@albank/vue-ui-kit 2.5.0-mr.235-update-fileattach → 2.5.0-mr.237-update-codeinput
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.
|
@@ -6,6 +6,7 @@ export interface CodeInputProps {
|
|
|
6
6
|
hasError?: boolean;
|
|
7
7
|
showTimer?: boolean;
|
|
8
8
|
isAutofocus?: boolean;
|
|
9
|
+
phoneNumber?: string;
|
|
9
10
|
}
|
|
10
11
|
export interface CodeInputEmits {
|
|
11
12
|
codeCompleted: [code: string];
|
|
@@ -28,6 +29,7 @@ declare const _default: import('vue').DefineComponent<CodeInputProps, {}, {}, {}
|
|
|
28
29
|
codeLength: 4 | 6;
|
|
29
30
|
showTimer: boolean;
|
|
30
31
|
isAutofocus: boolean;
|
|
32
|
+
phoneNumber: string;
|
|
31
33
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
32
34
|
inputRef: HTMLInputElement;
|
|
33
35
|
}, HTMLDivElement>;
|
|
@@ -1,19 +1,65 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
1
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
|
+
title: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
layoutMod: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
documentList: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
maxFilesLength: {
|
|
15
|
+
type: NumberConstructor;
|
|
16
|
+
default: number;
|
|
17
|
+
};
|
|
18
|
+
showPassportInput: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
22
|
+
showDocumentList: {
|
|
23
|
+
type: BooleanConstructor;
|
|
24
|
+
default: boolean;
|
|
25
|
+
};
|
|
26
|
+
fileTypeMessage: {
|
|
27
|
+
type: StringConstructor;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
14
31
|
changeListEvent: (...args: any[]) => void;
|
|
15
32
|
maxFilesLengthError: (...args: any[]) => void;
|
|
16
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
33
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
34
|
+
title: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
layoutMod: {
|
|
39
|
+
type: StringConstructor;
|
|
40
|
+
default: string;
|
|
41
|
+
};
|
|
42
|
+
documentList: {
|
|
43
|
+
type: StringConstructor;
|
|
44
|
+
default: string;
|
|
45
|
+
};
|
|
46
|
+
maxFilesLength: {
|
|
47
|
+
type: NumberConstructor;
|
|
48
|
+
default: number;
|
|
49
|
+
};
|
|
50
|
+
showPassportInput: {
|
|
51
|
+
type: BooleanConstructor;
|
|
52
|
+
default: boolean;
|
|
53
|
+
};
|
|
54
|
+
showDocumentList: {
|
|
55
|
+
type: BooleanConstructor;
|
|
56
|
+
default: boolean;
|
|
57
|
+
};
|
|
58
|
+
fileTypeMessage: {
|
|
59
|
+
type: StringConstructor;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
}>> & Readonly<{
|
|
17
63
|
onChangeListEvent?: ((...args: any[]) => any) | undefined;
|
|
18
64
|
onMaxFilesLengthError?: ((...args: any[]) => any) | undefined;
|
|
19
65
|
}>, {
|
|
@@ -23,15 +69,13 @@ declare const _default: import('vue').DefineComponent<FileAttachProps, {}, {}, {
|
|
|
23
69
|
maxFilesLength: number;
|
|
24
70
|
showPassportInput: boolean;
|
|
25
71
|
showDocumentList: boolean;
|
|
26
|
-
buttonText: string;
|
|
27
72
|
fileTypeMessage: string;
|
|
28
|
-
buttonVariant: ButtonVariantType;
|
|
29
73
|
}, {}, {}, {
|
|
30
74
|
aebDragAndDrop: {
|
|
31
75
|
beforeMount: (el: any, binding: any) => void;
|
|
32
76
|
beforeUnmounted: (el: any, binding: any) => void;
|
|
33
77
|
};
|
|
34
|
-
}, string, import('vue').ComponentProvideOptions,
|
|
78
|
+
}, string, import('vue').ComponentProvideOptions, true, {
|
|
35
79
|
fileInputRef: HTMLInputElement;
|
|
36
80
|
}, HTMLDivElement>;
|
|
37
81
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{ "name": "@albank/vue-ui-kit", "version": "2.5.0-mr.
|
|
1
|
+
{ "name": "@albank/vue-ui-kit", "version": "2.5.0-mr.237-update-codeinput", "type": "module", "types": "./dist/main.d.ts", "files": [ "dist" ], "main": "./dist/aeb-ui-kit.umd.cjs", "module": "./dist/aeb-ui-kit.js", "exports": { ".": { "types": "./dist/main.d.ts", "import": "./dist/aeb-ui-kit.js", "require": "./dist/aeb-ui-kit.umd.cjs" }, "./style.css": { "import": "./dist/style.css", "require": "./dist/style.css" } }, "scripts": { "serve": "vite", "build": "vue-tsc --noEmit && vite build", "test": "vitest --coverage", "lint": "npm run lint:scripts && npm run lint:styles", "lint:fix": "npm run lint:scripts:fix && npm run lint:styles:fix", "lint:scripts": "eslint src/ *.{js,jsx,ts,tsx,vue}", "lint:scripts:fix": "eslint src/ *.{js,jsx,ts,tsx,vue} --fix", "lint:styles": "stylelint ./src/**/*.scss", "lint:styles:fix": "stylelint ./src/styles/styles.scss ./src/styles/tokens.scss ./src/styles/variables.scss --fix", "prettier": "prettier src/**/*.{js,ts,vue,mjs,cjs,json}'", "prettier:fix": "prettier src/**/*.{js,ts,vue,mjs,cjs,json}' --write", "build-storybook": "vite build && storybook build", "storybook": "storybook dev -p 6006", "push": "npm publish", "push:beta": "npm publish --tag beta" }, "devDependencies": { "@storybook/addon-actions": "^8.6.4", "@storybook/addon-essentials": "^8.6.4", "@storybook/addon-interactions": "^8.6.4", "@storybook/addon-links": "^8.6.4", "@storybook/manager-api": "^8.6.4", "@storybook/preview-api": "^8.6.4", "@storybook/test": "^8.6.4", "@storybook/theming": "^8.6.4", "@storybook/vue3": "^8.6.4", "@storybook/vue3-vite": "^8.6.4", "@stylistic/eslint-plugin": "^4.2.0", "@types/node": "^22.13.9", "@typescript-eslint/eslint-plugin": "^8.26.0", "@typescript-eslint/parser": "^8.26.0", "@vitejs/plugin-vue": "^5.2.1", "@vitest/coverage-v8": "^3.0.7", "@vue/eslint-config-typescript": "^14.4.0", "@vue/test-utils": "^2.4.6", "code-tag": "^1.2.0", "date-fns": "^4.1.0", "eslint": "^9.21.0", "eslint-config-prettier": "^10.0.2", "eslint-plugin-vue": "^9.33.0", "happy-dom": "^17.2.2", "prettier": "^3.5.3", "prettier-plugin-organize-imports": "^4.1.0", "react": "^19.0.0", "react-dom": "^19.0.0", "sass": "^1.85.1", "storybook": "^8.6.4", "storybook-dark-mode": "^4.0.2", "stylelint": "^16.15.0", "stylelint-config-html": "^1.1.0", "stylelint-config-property-sort-order-smacss": "^10.0.0", "stylelint-config-recommended-scss": "^14.1.0", "typescript": "^5.8.2", "typescript-eslint": "^8.26.0", "vite": "^6.2.0", "vite-plugin-dts": "^4.5.3", "vitest": "^3.0.7", "vitest-sonar-reporter": "^2.0.0", "vue": "^3.5.13", "vue-eslint-parser": "^9.4.3", "vue-imask": "^6.6.3", "vue-tsc": "^2.2.8" } }
|