@everymatrix/general-input 1.65.3 → 1.66.1
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/cjs/checkbox-group-input_10.cjs.entry.js +41 -18
- package/dist/cjs/general-input.cjs.entry.js +258 -258
- package/dist/cjs/toggle-checkbox-input.cjs.entry.js +2 -2
- package/dist/collection/components/select-input/select-input.css +3 -4
- package/dist/collection/components/select-input/select-input.js +30 -9
- package/dist/collection/components/tel-input/tel-input.js +2 -2
- package/dist/collection/components/text-input/text-input.css +0 -1
- package/dist/collection/components/text-input/text-input.js +7 -5
- package/dist/collection/components/toggle-checkbox-input/toggle-checkbox-input.js +2 -2
- package/dist/esm/checkbox-group-input_10.entry.js +41 -18
- package/dist/esm/general-input.entry.js +258 -258
- package/dist/esm/toggle-checkbox-input.entry.js +2 -2
- package/dist/general-input/general-input.esm.js +1 -1
- package/dist/general-input/{p-eab6dd39.entry.js → p-8174f03d.entry.js} +1 -1
- package/dist/general-input/{p-e6ce8179.entry.js → p-a0e75840.entry.js} +1 -1
- package/dist/general-input/{p-d60ab9f7.entry.js → p-b78847ce.entry.js} +217 -217
- package/dist/types/components/select-input/select-input.d.ts +3 -1
- package/dist/types/utils/types.d.ts +19 -0
- package/package.json +1 -1
- /package/dist/types/Users/{raul.vasile/workspace/everymatrix → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/general-input/.stencil/libs/common/src/storybook/storybook-utils.d.ts +0 -0
- /package/dist/types/Users/{raul.vasile/workspace/everymatrix → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/general-input/.stencil/packages/stencil/general-input/stencil.config.d.ts +0 -0
- /package/dist/types/Users/{raul.vasile/workspace/everymatrix → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/general-input/.stencil/packages/stencil/general-input/stencil.config.dev.d.ts +0 -0
- /package/dist/types/Users/{raul.vasile/workspace/everymatrix → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/general-input/.stencil/packages/stencil/general-input/storybook/main.d.ts +0 -0
- /package/dist/types/Users/{raul.vasile/workspace/everymatrix → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/general-input/.stencil/packages/stencil/general-input/storybook/preview.d.ts +0 -0
- /package/dist/types/Users/{raul.vasile/workspace/everymatrix → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/general-input/.stencil/tools/plugins/index.d.ts +0 -0
- /package/dist/types/Users/{raul.vasile/workspace/everymatrix → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/general-input/.stencil/tools/plugins/stencil-clean-deps-plugin.d.ts +0 -0
- /package/dist/types/Users/{raul.vasile/workspace/everymatrix → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/general-input/.stencil/tools/plugins/vite-chunk-plugin.d.ts +0 -0
- /package/dist/types/Users/{raul.vasile/workspace/everymatrix → adrian.pripon/Documents/Work}/widgets-monorepo/packages/stencil/general-input/.stencil/tools/plugins/vite-clean-deps-plugin.d.ts +0 -0
|
@@ -53,6 +53,7 @@ export declare class SelectInput {
|
|
|
53
53
|
isValid: boolean;
|
|
54
54
|
private limitStylingAppends;
|
|
55
55
|
showTooltip: boolean;
|
|
56
|
+
isComboBox: boolean;
|
|
56
57
|
private vaadinCombo;
|
|
57
58
|
private inputReference;
|
|
58
59
|
private stylingContainer;
|
|
@@ -74,8 +75,9 @@ export declare class SelectInput {
|
|
|
74
75
|
componentDidRender(): void;
|
|
75
76
|
componentDidLoad(): void;
|
|
76
77
|
getOptions(endpoint: string): Promise<unknown>;
|
|
77
|
-
|
|
78
|
+
handleComboChange: (event: Event) => void;
|
|
78
79
|
handleBlur: (event: Event) => void;
|
|
80
|
+
handleSelectChange: (event: Event) => void;
|
|
79
81
|
setValidity(): boolean;
|
|
80
82
|
setErrorMessage(): string;
|
|
81
83
|
setClientStyling: () => void;
|
|
@@ -84,4 +84,23 @@ export interface PasswordComplexity {
|
|
|
84
84
|
export interface ValueObject {
|
|
85
85
|
name: string;
|
|
86
86
|
}
|
|
87
|
+
export interface InputType {
|
|
88
|
+
name: string;
|
|
89
|
+
inputType: string;
|
|
90
|
+
displayName: string;
|
|
91
|
+
validate: ValidationSchema;
|
|
92
|
+
action: any;
|
|
93
|
+
data: {
|
|
94
|
+
subFields: unknown;
|
|
95
|
+
values: unknown;
|
|
96
|
+
};
|
|
97
|
+
defaultValue: unknown;
|
|
98
|
+
autofill: boolean;
|
|
99
|
+
isDuplicateInput: boolean;
|
|
100
|
+
tooltip: string;
|
|
101
|
+
placeholder: string;
|
|
102
|
+
customInfo: {
|
|
103
|
+
description: any;
|
|
104
|
+
};
|
|
105
|
+
}
|
|
87
106
|
export {};
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|