sprof 0.0.127 → 0.0.129

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.
Files changed (49) hide show
  1. package/dist/core/auth/Auth.d.ts +198 -2
  2. package/dist/core/auth/AuthForm.d.ts +4 -4
  3. package/dist/core/auth/buttons/AuthButton.d.ts +3 -3
  4. package/dist/core/auth/buttons/AuthButtonLogin.d.ts +2 -0
  5. package/dist/core/auth/buttons/AuthButtonRegister.d.ts +2 -0
  6. package/dist/core/auth/index.d.ts +2 -2
  7. package/dist/core/auth/types/{AuthFormStatuses.d.ts → AuthChunks.d.ts} +2 -2
  8. package/dist/core/components/GeneralItem.vue.d.ts +2 -2
  9. package/dist/core/components/GridContainer.vue.d.ts +2 -2
  10. package/dist/core/components/InfoItem.vue.d.ts +2 -2
  11. package/dist/core/components/UploaderImage.vue.d.ts +1 -1
  12. package/dist/core/components/atoms/PButton/PButton.stories.d.ts +18 -18
  13. package/dist/core/components/atoms/PButton/PButton.vue.d.ts +3 -3
  14. package/dist/core/components/atoms/PCheckbox/PCheckBox.stories.d.ts +6 -6
  15. package/dist/core/components/atoms/PCheckbox/PCheckBox.vue.d.ts +3 -3
  16. package/dist/core/components/atoms/PDatePicker/PDatePicker.vue.d.ts +1 -1
  17. package/dist/core/components/atoms/PFlex/PFlex.stories.d.ts +12 -12
  18. package/dist/core/components/atoms/PFlex/PFlex.vue.d.ts +2 -2
  19. package/dist/core/components/atoms/PInputDate/PInputDate.stories.d.ts +4 -4
  20. package/dist/core/components/atoms/PInputDate/PInputDate.vue.d.ts +2 -2
  21. package/dist/core/components/atoms/PList/PList.stories.d.ts +6 -6
  22. package/dist/core/components/atoms/PList/PList.vue.d.ts +1 -1
  23. package/dist/core/components/atoms/PRadio/PRadio.stories.d.ts +6 -6
  24. package/dist/core/components/atoms/PRadio/PRadio.vue.d.ts +3 -3
  25. package/dist/core/components/atoms/PSelect/PSelect.stories.d.ts +12 -12
  26. package/dist/core/components/atoms/PSelect/PSelect.vue.d.ts +2 -2
  27. package/dist/core/components/atoms/PString/PString.stories.d.ts +4 -4
  28. package/dist/core/components/atoms/PString/PString.vue.d.ts +2 -2
  29. package/dist/core/components/atoms/PTable/PTable.storeis.d.ts +6 -6
  30. package/dist/core/components/atoms/PTable/PTable.vue.d.ts +1 -1
  31. package/dist/core/components/index.d.ts +1 -2
  32. package/dist/core/components/molecules/Collapse/CollapseItem.stories.d.ts +2 -2
  33. package/dist/core/components/molecules/Collapse/CollapseItem.vue.d.ts +1 -1
  34. package/dist/core/components/molecules/PAdd/PAdd.vue.d.ts +1 -1
  35. package/dist/core/components/molecules/PAdd/PContainer.vue.d.ts +1 -1
  36. package/dist/core/components/molecules/PAdd/PContainerStickyHead.vue.d.ts +1 -1
  37. package/dist/core/components/molecules/PDel/PDel.vue.d.ts +1 -1
  38. package/dist/core/components/organisms/AuthForm/AuthForm.stories.d.ts +50 -0
  39. package/dist/core/components/organisms/AuthForm/AuthForm.vue.d.ts +1 -1
  40. package/dist/core/components/organisms/PModal.vue.d.ts +2 -2
  41. package/dist/core/components/organisms/UploaderFile/UploaderFile.stories.d.ts +9 -9
  42. package/dist/core/components/organisms/UploaderFile/UploaderFile.vue.d.ts +1 -1
  43. package/dist/core/helpers/BaseRoutes.d.ts +2 -18
  44. package/dist/core/index.d.ts +10 -10
  45. package/dist/sprof.js +2024 -2046
  46. package/dist/sprof.umd.cjs +12 -12
  47. package/dist/style.css +1 -1
  48. package/package.json +1 -1
  49. package/dist/core/components/pages/AuthPage.vue.d.ts +0 -2
@@ -1,11 +1,207 @@
1
- import { default as AuthForm } from './AuthForm';
2
1
  import { default as AuthModal } from './AuthModal';
3
2
  import { default as AuthStatus } from './AuthStatus';
4
3
  declare class Auth<UserT> {
4
+ static instance: unknown | undefined;
5
5
  private form;
6
6
  private status;
7
7
  private modal;
8
- get Form(): AuthForm;
8
+ constructor();
9
+ get Form(): {
10
+ Block: (fn: () => Promise<void>) => Promise<void>;
11
+ GetValues: () => {
12
+ [k: string]: string;
13
+ };
14
+ Validate: () => string[];
15
+ GetFields: () => import('./fields/AuthField').default[];
16
+ GetMethods: () => import('.').AuthMethods[];
17
+ Chunk: () => import('.').AuthChunks;
18
+ readonly Settings: {
19
+ allowRestore: boolean;
20
+ login: {
21
+ methods: import('.').AuthMethods[];
22
+ title: string;
23
+ action: string;
24
+ buttons: ({
25
+ id: string;
26
+ text: string;
27
+ isSubmit: boolean;
28
+ disabled: boolean;
29
+ chunk: import('.').AuthChunks;
30
+ submit: boolean;
31
+ GetChunk: () => import('.').AuthChunks;
32
+ type?: import('../types').Statuses | undefined;
33
+ condition?: boolean | undefined;
34
+ action?: (((next?: import('vue-router').NavigationGuardNext | undefined) => Promise<void>) | (() => Promise<void>) | (() => void)) | undefined;
35
+ } | {
36
+ id: string;
37
+ text: string;
38
+ isSubmit: boolean;
39
+ disabled: boolean;
40
+ chunk: import('.').AuthChunks;
41
+ submit: boolean;
42
+ GetChunk: () => import('.').AuthChunks;
43
+ type?: import('../types').Statuses | undefined;
44
+ condition?: boolean | undefined;
45
+ action?: (((next?: import('vue-router').NavigationGuardNext | undefined) => Promise<void>) | (() => Promise<void>) | (() => void)) | undefined;
46
+ })[];
47
+ fields: ({
48
+ id: string;
49
+ label: string;
50
+ name: string;
51
+ placeholder: string;
52
+ validator?: {
53
+ errors: string[];
54
+ validate: (value?: string | number | undefined) => string[];
55
+ } | undefined;
56
+ method: import('.').AuthMethods;
57
+ value: string;
58
+ Validate: () => string[];
59
+ Reset: () => void;
60
+ } | {
61
+ label: string;
62
+ validator?: {
63
+ errors: string[];
64
+ validate: (value?: string | number | undefined) => string[];
65
+ } | undefined;
66
+ name: string;
67
+ placeholder: string;
68
+ id: string;
69
+ method?: import('.').AuthMethods | undefined;
70
+ value: string;
71
+ Validate: () => string[];
72
+ Reset: () => void;
73
+ })[];
74
+ errorMessage: string;
75
+ successMessage: string;
76
+ };
77
+ register: {
78
+ methods: never[];
79
+ title: string;
80
+ action: string;
81
+ buttons: ({
82
+ id: string;
83
+ text: string;
84
+ isSubmit: boolean;
85
+ disabled: boolean;
86
+ chunk: import('.').AuthChunks;
87
+ submit: boolean;
88
+ GetChunk: () => import('.').AuthChunks;
89
+ type?: import('../types').Statuses | undefined;
90
+ condition?: boolean | undefined;
91
+ action?: (((next?: import('vue-router').NavigationGuardNext | undefined) => Promise<void>) | (() => Promise<void>) | (() => void)) | undefined;
92
+ } | {
93
+ id: string;
94
+ text: string;
95
+ isSubmit: boolean;
96
+ disabled: boolean;
97
+ chunk: import('.').AuthChunks;
98
+ submit: boolean;
99
+ GetChunk: () => import('.').AuthChunks;
100
+ type?: import('../types').Statuses | undefined;
101
+ condition?: boolean | undefined;
102
+ action?: (((next?: import('vue-router').NavigationGuardNext | undefined) => Promise<void>) | (() => Promise<void>) | (() => void)) | undefined;
103
+ })[];
104
+ fields: ({
105
+ id: string;
106
+ label: string;
107
+ name: string;
108
+ placeholder: string;
109
+ validator?: {
110
+ errors: string[];
111
+ validate: (value?: string | number | undefined) => string[];
112
+ } | undefined;
113
+ method: import('.').AuthMethods;
114
+ value: string;
115
+ Validate: () => string[];
116
+ Reset: () => void;
117
+ } | {
118
+ label: string;
119
+ validator?: {
120
+ errors: string[];
121
+ validate: (value?: string | number | undefined) => string[];
122
+ } | undefined;
123
+ name: string;
124
+ placeholder: string;
125
+ id: string;
126
+ method?: import('.').AuthMethods | undefined;
127
+ value: string;
128
+ Validate: () => string[];
129
+ Reset: () => void;
130
+ } | {
131
+ label: string;
132
+ id: string;
133
+ method?: import('.').AuthMethods | undefined;
134
+ name: string;
135
+ value: string;
136
+ placeholder: string;
137
+ validator?: {
138
+ errors: string[];
139
+ validate: (value?: string | number | undefined) => string[];
140
+ } | undefined;
141
+ Validate: () => string[];
142
+ Reset: () => void;
143
+ })[];
144
+ errorMessage: string;
145
+ successMessage: string;
146
+ };
147
+ restore: {
148
+ title: string;
149
+ methods: never[];
150
+ action: string;
151
+ successMessage: string;
152
+ errorMessage: string;
153
+ buttons: never[];
154
+ fields: {
155
+ id: string;
156
+ label: string;
157
+ name: string;
158
+ placeholder: string;
159
+ validator?: {
160
+ errors: string[];
161
+ validate: (value?: string | number | undefined) => string[];
162
+ } | undefined;
163
+ method: import('.').AuthMethods;
164
+ value: string;
165
+ Validate: () => string[];
166
+ Reset: () => void;
167
+ }[];
168
+ };
169
+ refresh: {
170
+ methods: never[];
171
+ title: string;
172
+ action: string;
173
+ successMessage: string;
174
+ errorMessage: string;
175
+ buttons: never[];
176
+ fields: {
177
+ label: string;
178
+ validator?: {
179
+ errors: string[];
180
+ validate: (value?: string | number | undefined) => string[];
181
+ } | undefined;
182
+ name: string;
183
+ placeholder: string;
184
+ id: string;
185
+ method?: import('.').AuthMethods | undefined;
186
+ value: string;
187
+ Validate: () => string[];
188
+ Reset: () => void;
189
+ }[];
190
+ };
191
+ };
192
+ IsLogin: () => boolean;
193
+ IsRegister: () => boolean;
194
+ IsRestore: () => boolean;
195
+ IsRefresh: () => boolean;
196
+ SetChunk: (chunk: import('.').AuthChunks) => void;
197
+ GetTitle: () => string;
198
+ GetButtons: () => import('./buttons/AuthButton').default[];
199
+ GetSuccessMessage: () => string;
200
+ GetErrorMessage: () => string;
201
+ GetAction: () => string;
202
+ ResetFields: () => void;
203
+ Reset: () => void;
204
+ };
9
205
  get Status(): AuthStatus<UserT>;
10
206
  get Modal(): AuthModal;
11
207
  }
@@ -1,10 +1,10 @@
1
1
  import { default as AuthButton } from './buttons/AuthButton';
2
2
  import { default as AuthField } from './fields/AuthField';
3
- import { default as AuthStatuses } from './types/AuthFormStatuses';
3
+ import { default as AuthChunks } from './types/AuthChunks';
4
4
  import { default as AuthMethods } from './types/AuthMethods';
5
5
  export default class AuthForm {
6
6
  private settings;
7
- private status;
7
+ private chunk;
8
8
  private selectedMethod;
9
9
  Block(fn: () => Promise<void>): Promise<void>;
10
10
  GetValues(): {
@@ -13,7 +13,7 @@ export default class AuthForm {
13
13
  Validate(): string[];
14
14
  GetFields(): AuthField[];
15
15
  GetMethods(): AuthMethods[];
16
- Status(): AuthStatuses;
16
+ Chunk(): AuthChunks;
17
17
  get Settings(): {
18
18
  allowRestore: boolean;
19
19
  login: {
@@ -58,7 +58,7 @@ export default class AuthForm {
58
58
  IsRegister(): boolean;
59
59
  IsRestore(): boolean;
60
60
  IsRefresh(): boolean;
61
- SetStatus(status: AuthStatuses): void;
61
+ SetChunk(chunk: AuthChunks): void;
62
62
  GetTitle(): string;
63
63
  GetButtons(): AuthButton[];
64
64
  GetSuccessMessage(): string;
@@ -1,8 +1,8 @@
1
- import { default as AuthFormStatuses } from '../types/AuthFormStatuses';
1
+ import { default as AuthChunks } from '../types/AuthChunks';
2
2
  import { default as Button } from '../../ui/Btn';
3
3
  export default class AuthButton extends Button {
4
4
  id: string;
5
- status: AuthFormStatuses;
5
+ chunk: AuthChunks;
6
6
  submit: boolean;
7
- GetStatus(): AuthFormStatuses;
7
+ GetChunk(): AuthChunks;
8
8
  }
@@ -1,7 +1,9 @@
1
+ import { default as AuthChunks } from '../types/AuthChunks';
1
2
  import { default as AuthButton } from './AuthButton';
2
3
  export default class AuthButtonLogin extends AuthButton {
3
4
  id: string;
4
5
  text: string;
5
6
  isSubmit: boolean;
6
7
  disabled: boolean;
8
+ chunk: AuthChunks;
7
9
  }
@@ -1,7 +1,9 @@
1
+ import { default as AuthChunks } from '../types/AuthChunks';
1
2
  import { default as AuthButton } from './AuthButton';
2
3
  export default class AuthButtonLogin extends AuthButton {
3
4
  id: string;
4
5
  text: string;
5
6
  isSubmit: boolean;
6
7
  disabled: boolean;
8
+ chunk: AuthChunks;
7
9
  }
@@ -6,7 +6,7 @@ import { default as LoginField } from './fields/LoginField';
6
6
  import { default as PasswordField } from './fields/PasswordField';
7
7
  import { default as PasswordRepeatField } from './fields/PasswordRepeatField';
8
8
  import { default as AuthFormSettings } from './settings/AuthFormSettings';
9
+ import { default as AuthChunks } from './types/AuthChunks';
9
10
  import { default as AuthFormSettingsType } from './types/AuthFormSettingsType';
10
- import { default as AuthFormStatuses } from './types/AuthFormStatuses';
11
11
  import { default as AuthMethods } from './types/AuthMethods';
12
- export { Auth, AuthButtonLogin, AuthButtonRegister, AuthFormSettings, AuthFormSettingsType, AuthFormStatuses, AuthMethods, EmailField, LoginField, PasswordField, PasswordRepeatField, };
12
+ export { Auth, AuthButtonLogin, AuthButtonRegister, AuthChunks, AuthFormSettings, AuthFormSettingsType, AuthMethods, EmailField, LoginField, PasswordField, PasswordRepeatField, };
@@ -1,7 +1,7 @@
1
- declare enum AuthFormStatuses {
1
+ declare enum AuthChunks {
2
2
  Login = "login",
3
3
  Register = "register",
4
4
  Restore = "restore",
5
5
  Refresh = "refresh"
6
6
  }
7
- export default AuthFormStatuses;
7
+ export default AuthChunks;
@@ -101,11 +101,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
101
101
  default: boolean;
102
102
  };
103
103
  }>> & Readonly<{}>, {
104
- width: string;
105
- margin: string;
106
104
  background: string;
107
105
  height: string;
106
+ margin: string;
108
107
  padding: string;
108
+ width: string;
109
109
  fontSize: string;
110
110
  borderColor: string;
111
111
  ready: string;
@@ -81,10 +81,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
81
81
  default: string;
82
82
  };
83
83
  }>> & Readonly<{}>, {
84
- width: string;
85
- margin: string;
86
84
  maxWidth: string;
87
85
  background: string;
86
+ margin: string;
87
+ width: string;
88
88
  customClass: string;
89
89
  gridGap: string;
90
90
  gridTemplateColumns: string;
@@ -201,13 +201,13 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
201
201
  }>, {
202
202
  title: string;
203
203
  close: boolean;
204
- width: string;
205
- margin: string;
206
204
  minWidth: string;
207
205
  maxWidth: string;
208
206
  background: string;
209
207
  height: string;
208
+ margin: string;
210
209
  padding: string;
210
+ width: string;
211
211
  borderColor: string;
212
212
  customClass: string;
213
213
  withOpenWindow: boolean;
@@ -66,9 +66,9 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
66
66
  onCrop?: ((...args: any[]) => any) | undefined;
67
67
  onRemoveFile?: ((...args: any[]) => any) | undefined;
68
68
  }>, {
69
- width: number;
70
69
  defaultRatio: number;
71
70
  height: number;
71
+ width: number;
72
72
  withCrop: boolean;
73
73
  cropRatio: boolean;
74
74
  emitCrop: boolean;
@@ -53,13 +53,13 @@ declare const _default: Meta<{
53
53
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
54
54
  click: (...args: any[]) => void;
55
55
  }, import('vue').PublicProps, {
56
- type: Statuses;
57
56
  size: Sizes;
57
+ type: Statuses;
58
58
  text: string;
59
- width: string;
60
- margin: string;
61
59
  height: string;
60
+ margin: string;
62
61
  padding: string;
62
+ width: string;
63
63
  skin: string;
64
64
  fontSize: string;
65
65
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
@@ -118,13 +118,13 @@ declare const _default: Meta<{
118
118
  }>> & Readonly<{
119
119
  onClick?: ((...args: any[]) => any) | undefined;
120
120
  }>, {}, {}, {}, {}, {
121
- type: Statuses;
122
121
  size: Sizes;
122
+ type: Statuses;
123
123
  text: string;
124
- width: string;
125
- margin: string;
126
124
  height: string;
125
+ margin: string;
127
126
  padding: string;
127
+ width: string;
128
128
  skin: string;
129
129
  fontSize: string;
130
130
  }>;
@@ -182,13 +182,13 @@ declare const _default: Meta<{
182
182
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
183
183
  click: (...args: any[]) => void;
184
184
  }, string, {
185
- type: Statuses;
186
185
  size: Sizes;
186
+ type: Statuses;
187
187
  text: string;
188
- width: string;
189
- margin: string;
190
188
  height: string;
189
+ margin: string;
191
190
  padding: string;
191
+ width: string;
192
192
  skin: string;
193
193
  fontSize: string;
194
194
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
@@ -249,13 +249,13 @@ export declare const Base: StoryFn<{
249
249
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
250
250
  click: (...args: any[]) => void;
251
251
  }, import('vue').PublicProps, {
252
- type: Statuses;
253
252
  size: Sizes;
253
+ type: Statuses;
254
254
  text: string;
255
- width: string;
256
- margin: string;
257
255
  height: string;
256
+ margin: string;
258
257
  padding: string;
258
+ width: string;
259
259
  skin: string;
260
260
  fontSize: string;
261
261
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
@@ -314,13 +314,13 @@ export declare const Base: StoryFn<{
314
314
  }>> & Readonly<{
315
315
  onClick?: ((...args: any[]) => any) | undefined;
316
316
  }>, {}, {}, {}, {}, {
317
- type: Statuses;
318
317
  size: Sizes;
318
+ type: Statuses;
319
319
  text: string;
320
- width: string;
321
- margin: string;
322
320
  height: string;
321
+ margin: string;
323
322
  padding: string;
323
+ width: string;
324
324
  skin: string;
325
325
  fontSize: string;
326
326
  }>;
@@ -378,13 +378,13 @@ export declare const Base: StoryFn<{
378
378
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
379
379
  click: (...args: any[]) => void;
380
380
  }, string, {
381
- type: Statuses;
382
381
  size: Sizes;
382
+ type: Statuses;
383
383
  text: string;
384
- width: string;
385
- margin: string;
386
384
  height: string;
385
+ margin: string;
387
386
  padding: string;
387
+ width: string;
388
388
  skin: string;
389
389
  fontSize: string;
390
390
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
@@ -97,13 +97,13 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
97
97
  }>> & Readonly<{
98
98
  onClick?: ((...args: any[]) => any) | undefined;
99
99
  }>, {
100
- type: Statuses;
101
100
  size: Sizes;
101
+ type: Statuses;
102
102
  text: string;
103
- width: string;
104
- margin: string;
105
103
  height: string;
104
+ margin: string;
106
105
  padding: string;
106
+ width: string;
107
107
  skin: string;
108
108
  fontSize: string;
109
109
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
@@ -80,12 +80,12 @@ declare const _default: {
80
80
  onChange?: ((...args: any[]) => any) | undefined;
81
81
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
82
82
  }>, {
83
- label: string;
84
83
  size: string;
85
- width: string;
86
- margin: string;
84
+ label: string;
87
85
  value: string | boolean;
86
+ margin: string;
88
87
  padding: string;
88
+ width: string;
89
89
  fontSize: string;
90
90
  borderRadius: string;
91
91
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
@@ -212,12 +212,12 @@ export declare const Default: StoryFn<import('vue').DefineComponent<globalThis.E
212
212
  onChange?: ((...args: any[]) => any) | undefined;
213
213
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
214
214
  }>, {
215
- label: string;
216
215
  size: string;
217
- width: string;
218
- margin: string;
216
+ label: string;
219
217
  value: string | boolean;
218
+ margin: string;
220
219
  padding: string;
220
+ width: string;
221
221
  fontSize: string;
222
222
  borderRadius: string;
223
223
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>>;
@@ -77,12 +77,12 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
77
77
  onChange?: ((...args: any[]) => any) | undefined;
78
78
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
79
79
  }>, {
80
- label: string;
81
80
  size: string;
82
- width: string;
83
- margin: string;
81
+ label: string;
84
82
  value: string | boolean;
83
+ margin: string;
85
84
  padding: string;
85
+ width: string;
86
86
  fontSize: string;
87
87
  borderRadius: string;
88
88
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
@@ -69,8 +69,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
69
69
  }>, {
70
70
  label: string;
71
71
  text: string;
72
- margin: string;
73
72
  placeholder: string;
73
+ margin: string;
74
74
  padding: string;
75
75
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>, {
76
76
  default?(_: {}): any;
@@ -49,13 +49,13 @@ declare const _default: {
49
49
  required: false;
50
50
  };
51
51
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
52
- width: string;
53
- margin: string;
54
52
  minWidth: string;
55
53
  maxWidth: string;
56
54
  background: string;
57
55
  height: string;
56
+ margin: string;
58
57
  padding: string;
58
+ width: string;
59
59
  justifyContent: string;
60
60
  alignItems: string;
61
61
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
@@ -112,13 +112,13 @@ declare const _default: {
112
112
  required: false;
113
113
  };
114
114
  }>> & Readonly<{}>, {}, {}, {}, {}, {
115
- width: string;
116
- margin: string;
117
115
  minWidth: string;
118
116
  maxWidth: string;
119
117
  background: string;
120
118
  height: string;
119
+ margin: string;
121
120
  padding: string;
121
+ width: string;
122
122
  justifyContent: string;
123
123
  alignItems: string;
124
124
  }>;
@@ -172,13 +172,13 @@ declare const _default: {
172
172
  required: false;
173
173
  };
174
174
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
175
- width: string;
176
- margin: string;
177
175
  minWidth: string;
178
176
  maxWidth: string;
179
177
  background: string;
180
178
  height: string;
179
+ margin: string;
181
180
  padding: string;
181
+ width: string;
182
182
  justifyContent: string;
183
183
  alignItems: string;
184
184
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
@@ -282,13 +282,13 @@ export declare const Default: StoryFn<{
282
282
  required: false;
283
283
  };
284
284
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
285
- width: string;
286
- margin: string;
287
285
  minWidth: string;
288
286
  maxWidth: string;
289
287
  background: string;
290
288
  height: string;
289
+ margin: string;
291
290
  padding: string;
291
+ width: string;
292
292
  justifyContent: string;
293
293
  alignItems: string;
294
294
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
@@ -345,13 +345,13 @@ export declare const Default: StoryFn<{
345
345
  required: false;
346
346
  };
347
347
  }>> & Readonly<{}>, {}, {}, {}, {}, {
348
- width: string;
349
- margin: string;
350
348
  minWidth: string;
351
349
  maxWidth: string;
352
350
  background: string;
353
351
  height: string;
352
+ margin: string;
354
353
  padding: string;
354
+ width: string;
355
355
  justifyContent: string;
356
356
  alignItems: string;
357
357
  }>;
@@ -405,13 +405,13 @@ export declare const Default: StoryFn<{
405
405
  required: false;
406
406
  };
407
407
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
408
- width: string;
409
- margin: string;
410
408
  minWidth: string;
411
409
  maxWidth: string;
412
410
  background: string;
413
411
  height: string;
412
+ margin: string;
414
413
  padding: string;
414
+ width: string;
415
415
  justifyContent: string;
416
416
  alignItems: string;
417
417
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
@@ -91,13 +91,13 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
91
91
  required: false;
92
92
  };
93
93
  }>> & Readonly<{}>, {
94
- width: string;
95
- margin: string;
96
94
  minWidth: string;
97
95
  maxWidth: string;
98
96
  background: string;
99
97
  height: string;
98
+ margin: string;
100
99
  padding: string;
100
+ width: string;
101
101
  justifyContent: string;
102
102
  alignItems: string;
103
103
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
@@ -57,9 +57,9 @@ declare const _default: {
57
57
  onBeforeChange?: ((...args: any[]) => any) | undefined;
58
58
  }>, {
59
59
  label: string;
60
- width: string;
61
- margin: string;
62
60
  placeholder: string;
61
+ margin: string;
62
+ width: string;
63
63
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
64
64
  tags: string[];
65
65
  parameters: {
@@ -145,7 +145,7 @@ export declare const Default: StoryFn<import('vue').DefineComponent<globalThis.E
145
145
  onBeforeChange?: ((...args: any[]) => any) | undefined;
146
146
  }>, {
147
147
  label: string;
148
- width: string;
149
- margin: string;
150
148
  placeholder: string;
149
+ margin: string;
150
+ width: string;
151
151
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>>;