sep-yui 0.0.80 → 0.1.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/README.md CHANGED
@@ -42,5 +42,18 @@ App.vue
42
42
  <Toggle :disabled="true" :backgroundColor="'red'" />
43
43
  </template>
44
44
  <script setup lang="ts"></script>
45
- <styles lang="scss"></styles>
45
+ <styles scoped></styles>
46
46
  ```
47
+
48
+ ## Разработка
49
+
50
+ ### Публикация пакетов
51
+
52
+ Обязательно через команду, так как генерятся changelog. Для этого используем:
53
+ [changeloggen](https://unjs.io/packages/changelogen/)
54
+
55
+ ```sh
56
+ pnpm run build:lib
57
+ ```
58
+
59
+ Токен можно для публикации можно получить у менеджера.
@@ -7,6 +7,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
7
7
  inputMessage: string;
8
8
  modelValue: string;
9
9
  hideClearButton: boolean;
10
+ modelModifiers: () => {};
10
11
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
11
12
  "update:modelValue": (value: string) => void;
12
13
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IInputProps>, {
@@ -15,12 +16,14 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
15
16
  inputMessage: string;
16
17
  modelValue: string;
17
18
  hideClearButton: boolean;
19
+ modelModifiers: () => {};
18
20
  }>>> & {
19
21
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
20
22
  }, {
21
23
  type: TextFieldEnum;
22
24
  required: boolean;
23
25
  modelValue: string;
26
+ modelModifiers: object;
24
27
  inputMessage: string;
25
28
  hideClearButton: boolean;
26
29
  }, {}>;
@@ -8,6 +8,7 @@ export interface IInputProps {
8
8
  modelValue?: string;
9
9
  hideClearButton?: boolean;
10
10
  autocomplete?: string;
11
+ modelModifiers: object;
11
12
  }
12
13
  export interface IInputEmit {
13
14
  (e: 'update:modelValue', value: string): void;
@@ -6,6 +6,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
6
6
  min: number;
7
7
  max: number;
8
8
  size: SizesEnum;
9
+ modelModifiers: () => {};
9
10
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
11
  "update:modelValue": (value: number) => void;
11
12
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IInputNumberProps>, {
@@ -13,11 +14,13 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
13
14
  min: number;
14
15
  max: number;
15
16
  size: SizesEnum;
17
+ modelModifiers: () => {};
16
18
  }>>> & {
17
19
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
18
20
  }, {
19
21
  size: SizesEnum.small | SizesEnum.medium;
20
22
  modelValue: number;
23
+ modelModifiers: object;
21
24
  min: number;
22
25
  max: number;
23
26
  }, {}>;
@@ -7,6 +7,7 @@ export interface IInputNumberProps {
7
7
  min?: number;
8
8
  max?: number;
9
9
  size?: SizesEnum.small | SizesEnum.medium;
10
+ modelModifiers: object;
10
11
  }
11
12
  export interface IState {
12
13
  isPressed: boolean;
@@ -6,6 +6,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
6
6
  modelValue: string;
7
7
  readonly: boolean;
8
8
  type: TextareaTypeEnum;
9
+ modelModifiers: () => {};
9
10
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
10
11
  "update:modelValue": (value: string) => void;
11
12
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITextareaProps>, {
@@ -13,12 +14,14 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
13
14
  modelValue: string;
14
15
  readonly: boolean;
15
16
  type: TextareaTypeEnum;
17
+ modelModifiers: () => {};
16
18
  }>>> & {
17
19
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
18
20
  }, {
19
21
  type: TextareaTypeEnum;
20
22
  required: boolean;
21
23
  modelValue: string;
24
+ modelModifiers: object;
22
25
  readonly: boolean;
23
26
  }, {}>;
24
27
  export default _default;
@@ -8,4 +8,5 @@ export interface ITextareaProps {
8
8
  modelValue: string;
9
9
  readonly?: boolean;
10
10
  type?: TextareaTypeEnum;
11
+ modelModifiers: object;
11
12
  }