@flysk-tech/amocrm-kommo-vue-ui-kit 0.2.0 → 0.2.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/index.d.ts +19 -5
- package/dist/index.js +671 -660
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -697,9 +697,9 @@ declare const __VLS_component_29: DefineComponent<ItemRootProps, {}, {}, {}, {},
|
|
|
697
697
|
|
|
698
698
|
declare const __VLS_component_3: DefineComponent<RadioGroupItemRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<RadioGroupItemRootProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
699
699
|
|
|
700
|
-
declare const __VLS_component_30: DefineComponent<
|
|
700
|
+
declare const __VLS_component_30: DefineComponent<Props_6, {
|
|
701
701
|
buttonRef: Ref<HTMLButtonElement | null, HTMLButtonElement | null>;
|
|
702
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<
|
|
702
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props_6> & Readonly<{}>, {
|
|
703
703
|
class: string;
|
|
704
704
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
705
705
|
buttonRef: HTMLButtonElement;
|
|
@@ -5179,7 +5179,7 @@ export declare type FilterTabsThemeType = {
|
|
|
5179
5179
|
|
|
5180
5180
|
export declare function generateId(prefix?: string): string;
|
|
5181
5181
|
|
|
5182
|
-
export declare const InlineInput: DefineComponent<
|
|
5182
|
+
export declare const InlineInput: DefineComponent<Props_5, {
|
|
5183
5183
|
inputRef: Ref<CreateComponentPublicInstanceWithMixins<Readonly<BaseInputProps> & Readonly<{}>, {
|
|
5184
5184
|
inputRef: Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
5185
5185
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
@@ -5223,8 +5223,18 @@ isDisabled: boolean;
|
|
|
5223
5223
|
isReadonly: boolean;
|
|
5224
5224
|
isPlaceholderVisibleOnFocus: boolean;
|
|
5225
5225
|
}> | null>;
|
|
5226
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}
|
|
5226
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
5227
|
+
input: (event: Event) => any;
|
|
5228
|
+
"update:modelValue": (value: string) => any;
|
|
5229
|
+
}, string, PublicProps, Readonly<Props_5> & Readonly<{
|
|
5230
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
5231
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
5232
|
+
}>, {
|
|
5233
|
+
isDisabled: boolean;
|
|
5234
|
+
isReadonly: boolean;
|
|
5235
|
+
isPlaceholderVisibleOnFocus: boolean;
|
|
5227
5236
|
isInvalid: boolean;
|
|
5237
|
+
modelValue: string | number | null;
|
|
5228
5238
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
5229
5239
|
inputRef: CreateComponentPublicInstanceWithMixins<Readonly<BaseInputProps> & Readonly<{}>, {
|
|
5230
5240
|
inputRef: Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -5680,7 +5690,11 @@ declare type Props_4 = TextAreaProps & {
|
|
|
5680
5690
|
modelValue?: string | number;
|
|
5681
5691
|
};
|
|
5682
5692
|
|
|
5683
|
-
declare type Props_5 =
|
|
5693
|
+
declare type Props_5 = InlineInputProps & {
|
|
5694
|
+
modelValue?: string | number | null;
|
|
5695
|
+
};
|
|
5696
|
+
|
|
5697
|
+
declare type Props_6 = TabProps & {
|
|
5684
5698
|
class?: string;
|
|
5685
5699
|
};
|
|
5686
5700
|
|