sep-yui 0.1.102 → 0.1.103

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.
@@ -5,4 +5,5 @@ export interface IAvatar extends IDataTestIdProp {
5
5
  url?: string;
6
6
  isIcon?: boolean;
7
7
  alt?: string;
8
+ defaultImage?: string;
8
9
  }
@@ -3,7 +3,7 @@ import { IDataTestIdProp } from '../../../common/dataTestidProps';
3
3
 
4
4
  export interface IBadgesProps extends IDataTestIdProp {
5
5
  text: string;
6
- type: BadgesTypeEnum;
7
- choosed: boolean;
6
+ type?: BadgesTypeEnum;
7
+ choosed?: boolean;
8
8
  disabled?: boolean;
9
9
  }
@@ -1,4 +1,6 @@
1
- export interface IRadioProps<T> {
1
+ import { IDataTestIdProp } from '../../../common/dataTestidProps';
2
+
3
+ export interface IRadioProps<T> extends IDataTestIdProp {
2
4
  name: string;
3
5
  value: T;
4
6
  disabled?: boolean;
@@ -2,6 +2,10 @@ import { ToggleEnum } from './enums/enums.ts';
2
2
 
3
3
  declare const _default: import('vue').DefineComponent<{
4
4
  modelValue: import('vue').PropType<boolean>;
5
+ dataTestid: {
6
+ type: import('vue').PropType<string>;
7
+ default: string;
8
+ };
5
9
  type: {
6
10
  type: import('vue').PropType<ToggleEnum>;
7
11
  default: ToggleEnum;
@@ -17,6 +21,10 @@ declare const _default: import('vue').DefineComponent<{
17
21
  change: (isChecked: boolean) => void;
18
22
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
19
23
  modelValue: import('vue').PropType<boolean>;
24
+ dataTestid: {
25
+ type: import('vue').PropType<string>;
26
+ default: string;
27
+ };
20
28
  type: {
21
29
  type: import('vue').PropType<ToggleEnum>;
22
30
  default: ToggleEnum;
@@ -31,6 +39,7 @@ declare const _default: import('vue').DefineComponent<{
31
39
  }>> & {
32
40
  onChange?: ((isChecked: boolean) => any) | undefined;
33
41
  }, {
42
+ dataTestid: string;
34
43
  type: ToggleEnum;
35
44
  disabled: boolean;
36
45
  }, {}>;
@@ -1,6 +1,7 @@
1
+ import { IDataTestIdProp } from '../../../common/dataTestidProps';
1
2
  import { ToggleEnum } from '../enums/enums';
2
3
 
3
- export interface IToggleProps {
4
+ export interface IToggleProps extends IDataTestIdProp {
4
5
  disabled?: boolean;
5
6
  backgroundColor?: string;
6
7
  type?: ToggleEnum;
package/dist/index.d.ts CHANGED
@@ -1,7 +1,9 @@
1
1
  import { App } from 'vue';
2
+ import { useSearchStore } from './stores/search';
2
3
 
3
4
  declare const YLibrary: {
4
5
  install(app: App): void;
5
6
  };
6
7
  export default YLibrary;
7
8
  export * from './components';
9
+ export { useSearchStore };