@choosemycompany/ui 0.9.3 → 0.10.0

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 CHANGED
@@ -29,10 +29,10 @@ declare const __VLS_component_4: DefineComponent<__VLS_PublicProps_2, {}, {}, {}
29
29
  }, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
30
30
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
31
31
  }>, {
32
- type: InputTextType;
32
+ type: inputType;
33
33
  required: boolean;
34
- variant: InputTextVariant;
35
- size: InputTextSize;
34
+ variant: inputVariant;
35
+ size: inputSize;
36
36
  disabled: boolean;
37
37
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
38
38
 
@@ -96,8 +96,8 @@ declare type __VLS_Props_4 = {
96
96
  };
97
97
 
98
98
  declare type __VLS_Props_5 = {
99
- size?: InputTextSize;
100
- variant?: InputTextVariant;
99
+ size?: inputSize;
100
+ variant?: inputVariant;
101
101
  placeholder?: string;
102
102
  };
103
103
 
@@ -108,9 +108,9 @@ declare type __VLS_Props_6 = {
108
108
  required?: boolean;
109
109
  disabled?: boolean;
110
110
  errorMessage?: string;
111
- type?: InputTextType;
112
- variant?: InputTextVariant;
113
- size?: InputTextSize;
111
+ type?: inputType;
112
+ variant?: inputVariant;
113
+ size?: inputSize;
114
114
  description?: string;
115
115
  };
116
116
 
@@ -286,7 +286,7 @@ export declare const CmcIcon: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, Com
286
286
  name: IconName;
287
287
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
288
288
 
289
- export declare const CmcInputText: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
289
+ export declare const CmcInput: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
290
290
 
291
291
  export declare const CmcLoading: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLImageElement>;
292
292
 
@@ -312,7 +312,7 @@ export declare const CmcSearch: DefineComponent<__VLS_PublicProps, {}, {}, {}, {
312
312
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
313
313
  }>, {
314
314
  placeholder: string;
315
- size: InputTextSize;
315
+ size: inputSize;
316
316
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
317
317
 
318
318
  export declare const CmcSelect: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
@@ -375,23 +375,24 @@ declare type IconName = keyof typeof iconNameOptions;
375
375
 
376
376
  export declare const iconNameOptions: Record<string, string>;
377
377
 
378
- declare type InputTextSize = keyof typeof inputTextSizeOptions;
378
+ declare type inputSize = keyof typeof inputSizeOptions;
379
379
 
380
- export declare const inputTextSizeOptions: {
380
+ export declare const inputSizeOptions: {
381
381
  readonly small: "small";
382
382
  readonly medium: "medium";
383
383
  };
384
384
 
385
- declare type InputTextType = keyof typeof inputTextTypeOptions;
385
+ declare type inputType = keyof typeof inputTypeOptions;
386
386
 
387
- export declare const inputTextTypeOptions: {
387
+ export declare const inputTypeOptions: {
388
388
  readonly text: "text";
389
+ readonly number: "number";
389
390
  readonly search: "search";
390
391
  };
391
392
 
392
- declare type InputTextVariant = keyof typeof inputTextVariantOptions;
393
+ declare type inputVariant = keyof typeof inputVariantOptions;
393
394
 
394
- export declare const inputTextVariantOptions: {
395
+ export declare const inputVariantOptions: {
395
396
  readonly outlined: "outlined";
396
397
  readonly filled: "filled";
397
398
  readonly underline: "underline";