sprof 0.0.126 → 0.0.128

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 (47) hide show
  1. package/dist/core/auth/Auth.d.ts +2 -0
  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/index.d.ts +2 -2
  5. package/dist/core/auth/types/{AuthFormStatuses.d.ts → AuthChunks.d.ts} +2 -2
  6. package/dist/core/components/GeneralItem.vue.d.ts +2 -2
  7. package/dist/core/components/GridContainer.vue.d.ts +2 -2
  8. package/dist/core/components/InfoItem.vue.d.ts +2 -2
  9. package/dist/core/components/UploaderImage.vue.d.ts +1 -1
  10. package/dist/core/components/atoms/PButton/PButton.stories.d.ts +12 -12
  11. package/dist/core/components/atoms/PButton/PButton.vue.d.ts +2 -2
  12. package/dist/core/components/atoms/PCheckbox/PCheckBox.stories.d.ts +4 -4
  13. package/dist/core/components/atoms/PCheckbox/PCheckBox.vue.d.ts +2 -2
  14. package/dist/core/components/atoms/PDatePicker/PDatePicker.vue.d.ts +1 -1
  15. package/dist/core/components/atoms/PFlex/PFlex.stories.d.ts +12 -12
  16. package/dist/core/components/atoms/PFlex/PFlex.vue.d.ts +2 -2
  17. package/dist/core/components/atoms/PInputDate/PInputDate.stories.d.ts +4 -4
  18. package/dist/core/components/atoms/PInputDate/PInputDate.vue.d.ts +2 -2
  19. package/dist/core/components/atoms/PList/PList.stories.d.ts +6 -6
  20. package/dist/core/components/atoms/PList/PList.vue.d.ts +1 -1
  21. package/dist/core/components/atoms/PRadio/PRadio.stories.d.ts +4 -4
  22. package/dist/core/components/atoms/PRadio/PRadio.vue.d.ts +2 -2
  23. package/dist/core/components/atoms/PSelect/PSelect.stories.d.ts +12 -12
  24. package/dist/core/components/atoms/PSelect/PSelect.vue.d.ts +2 -2
  25. package/dist/core/components/atoms/PString/PString.stories.d.ts +4 -4
  26. package/dist/core/components/atoms/PString/PString.vue.d.ts +2 -2
  27. package/dist/core/components/atoms/PTable/PTable.storeis.d.ts +6 -6
  28. package/dist/core/components/atoms/PTable/PTable.vue.d.ts +1 -1
  29. package/dist/core/components/index.d.ts +1 -2
  30. package/dist/core/components/molecules/Collapse/CollapseItem.stories.d.ts +2 -2
  31. package/dist/core/components/molecules/Collapse/CollapseItem.vue.d.ts +1 -1
  32. package/dist/core/components/molecules/PAdd/PAdd.vue.d.ts +1 -1
  33. package/dist/core/components/molecules/PAdd/PContainer.vue.d.ts +1 -1
  34. package/dist/core/components/molecules/PAdd/PContainerStickyHead.vue.d.ts +1 -1
  35. package/dist/core/components/molecules/PDel/PDel.vue.d.ts +1 -1
  36. package/dist/core/components/organisms/AuthForm/AuthForm.stories.d.ts +50 -0
  37. package/dist/core/components/organisms/AuthForm/AuthForm.vue.d.ts +1 -1
  38. package/dist/core/components/organisms/PModal.vue.d.ts +2 -2
  39. package/dist/core/components/organisms/UploaderFile/UploaderFile.stories.d.ts +9 -9
  40. package/dist/core/components/organisms/UploaderFile/UploaderFile.vue.d.ts +1 -1
  41. package/dist/core/helpers/BaseRoutes.d.ts +2 -18
  42. package/dist/core/index.d.ts +10 -10
  43. package/dist/sprof.js +1902 -1926
  44. package/dist/sprof.umd.cjs +12 -12
  45. package/dist/style.css +1 -1
  46. package/package.json +1 -1
  47. package/dist/core/components/pages/AuthPage.vue.d.ts +0 -2
@@ -2,9 +2,11 @@ import { default as AuthForm } from './AuthForm';
2
2
  import { default as AuthModal } from './AuthModal';
3
3
  import { default as AuthStatus } from './AuthStatus';
4
4
  declare class Auth<UserT> {
5
+ static instance: unknown | undefined;
5
6
  private form;
6
7
  private status;
7
8
  private modal;
9
+ constructor();
8
10
  get Form(): AuthForm;
9
11
  get Status(): AuthStatus<UserT>;
10
12
  get Modal(): AuthModal;
@@ -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
  }
@@ -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;
@@ -56,10 +56,10 @@ declare const _default: Meta<{
56
56
  type: Statuses;
57
57
  size: Sizes;
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, {
@@ -121,10 +121,10 @@ declare const _default: Meta<{
121
121
  type: Statuses;
122
122
  size: Sizes;
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
  }>;
@@ -185,10 +185,10 @@ declare const _default: Meta<{
185
185
  type: Statuses;
186
186
  size: Sizes;
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 () => {
@@ -252,10 +252,10 @@ export declare const Base: StoryFn<{
252
252
  type: Statuses;
253
253
  size: Sizes;
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, {
@@ -317,10 +317,10 @@ export declare const Base: StoryFn<{
317
317
  type: Statuses;
318
318
  size: Sizes;
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
  }>;
@@ -381,10 +381,10 @@ export declare const Base: StoryFn<{
381
381
  type: Statuses;
382
382
  size: Sizes;
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 () => {
@@ -100,10 +100,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
100
100
  type: Statuses;
101
101
  size: Sizes;
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>, {
@@ -82,10 +82,10 @@ declare const _default: {
82
82
  }>, {
83
83
  label: string;
84
84
  size: string;
85
- width: string;
86
- margin: 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>;
@@ -214,10 +214,10 @@ export declare const Default: StoryFn<import('vue').DefineComponent<globalThis.E
214
214
  }>, {
215
215
  label: string;
216
216
  size: string;
217
- width: string;
218
- margin: 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>>;
@@ -79,10 +79,10 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
79
79
  }>, {
80
80
  label: string;
81
81
  size: string;
82
- width: string;
83
- margin: 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>>;
@@ -54,8 +54,8 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
54
54
  onBeforeChange?: ((...args: any[]) => any) | undefined;
55
55
  }>, {
56
56
  label: string;
57
- width: string;
58
- margin: string;
59
57
  placeholder: string;
58
+ margin: string;
59
+ width: string;
60
60
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
61
61
  export default _default;
@@ -19,9 +19,9 @@ declare const _default: {
19
19
  default: string;
20
20
  };
21
21
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
22
- width: string;
23
22
  margin: string;
24
23
  padding: string;
24
+ width: string;
25
25
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLUListElement, import('vue').ComponentProvideOptions, {
26
26
  P: {};
27
27
  B: {};
@@ -46,9 +46,9 @@ declare const _default: {
46
46
  default: string;
47
47
  };
48
48
  }>> & Readonly<{}>, {}, {}, {}, {}, {
49
- width: string;
50
49
  margin: string;
51
50
  padding: string;
51
+ width: string;
52
52
  }>;
53
53
  __isFragment?: undefined;
54
54
  __isTeleport?: undefined;
@@ -70,9 +70,9 @@ declare const _default: {
70
70
  default: string;
71
71
  };
72
72
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
73
- width: string;
74
73
  margin: string;
75
74
  padding: string;
75
+ width: string;
76
76
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
77
77
  $slots: {
78
78
  default?(_: {}): any;
@@ -120,9 +120,9 @@ export declare const Default: StoryFn<{
120
120
  default: string;
121
121
  };
122
122
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
123
- width: string;
124
123
  margin: string;
125
124
  padding: string;
125
+ width: string;
126
126
  }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, HTMLUListElement, import('vue').ComponentProvideOptions, {
127
127
  P: {};
128
128
  B: {};
@@ -147,9 +147,9 @@ export declare const Default: StoryFn<{
147
147
  default: string;
148
148
  };
149
149
  }>> & Readonly<{}>, {}, {}, {}, {}, {
150
- width: string;
151
150
  margin: string;
152
151
  padding: string;
152
+ width: string;
153
153
  }>;
154
154
  __isFragment?: undefined;
155
155
  __isTeleport?: undefined;
@@ -171,9 +171,9 @@ export declare const Default: StoryFn<{
171
171
  default: string;
172
172
  };
173
173
  }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
174
- width: string;
175
174
  margin: string;
176
175
  padding: string;
176
+ width: string;
177
177
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
178
178
  $slots: {
179
179
  default?(_: {}): any;
@@ -31,9 +31,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
31
31
  default: string;
32
32
  };
33
33
  }>> & Readonly<{}>, {
34
- width: string;
35
34
  margin: string;
36
35
  padding: string;
36
+ width: string;
37
37
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLUListElement>, {
38
38
  default?(_: {}): any;
39
39
  }>;
@@ -90,11 +90,11 @@ declare const _default: {
90
90
  }>, {
91
91
  label: string;
92
92
  size: string;
93
- width: string;
94
- margin: string;
95
93
  name: string;
96
94
  value: string | boolean;
95
+ margin: string;
97
96
  padding: string;
97
+ width: string;
98
98
  fontSize: string;
99
99
  borderRadius: string;
100
100
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
@@ -227,11 +227,11 @@ export declare const DefaultRadio: StoryFn<import('vue').DefineComponent<globalT
227
227
  }>, {
228
228
  label: string;
229
229
  size: string;
230
- width: string;
231
- margin: string;
232
230
  name: string;
233
231
  value: string | boolean;
232
+ margin: string;
234
233
  padding: string;
234
+ width: string;
235
235
  fontSize: string;
236
236
  borderRadius: string;
237
237
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>>;
@@ -87,11 +87,11 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
87
87
  }>, {
88
88
  label: string;
89
89
  size: string;
90
- width: string;
91
- margin: string;
92
90
  name: string;
93
91
  value: string | boolean;
92
+ margin: string;
94
93
  padding: string;
94
+ width: string;
95
95
  fontSize: string;
96
96
  borderRadius: string;
97
97
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
@@ -72,11 +72,11 @@ declare const _default: {
72
72
  }, import('vue').PublicProps, {
73
73
  label: string;
74
74
  readonly: boolean;
75
- width: string;
76
- margin: string;
77
75
  value: string;
78
76
  placeholder: string;
77
+ margin: string;
79
78
  padding: string;
79
+ width: string;
80
80
  color: string;
81
81
  disabled: boolean;
82
82
  borderColor: string;
@@ -154,11 +154,11 @@ declare const _default: {
154
154
  }>, {}, {}, {}, {}, {
155
155
  label: string;
156
156
  readonly: boolean;
157
- width: string;
158
- margin: string;
159
157
  value: string;
160
158
  placeholder: string;
159
+ margin: string;
161
160
  padding: string;
161
+ width: string;
162
162
  color: string;
163
163
  disabled: boolean;
164
164
  borderColor: string;
@@ -237,11 +237,11 @@ declare const _default: {
237
237
  }, string, {
238
238
  label: string;
239
239
  readonly: boolean;
240
- width: string;
241
- margin: string;
242
240
  value: string;
243
241
  placeholder: string;
242
+ margin: string;
244
243
  padding: string;
244
+ width: string;
245
245
  color: string;
246
246
  disabled: boolean;
247
247
  borderColor: string;
@@ -364,11 +364,11 @@ export declare const Default: StoryFn<{
364
364
  }, import('vue').PublicProps, {
365
365
  label: string;
366
366
  readonly: boolean;
367
- width: string;
368
- margin: string;
369
367
  value: string;
370
368
  placeholder: string;
369
+ margin: string;
371
370
  padding: string;
371
+ width: string;
372
372
  color: string;
373
373
  disabled: boolean;
374
374
  borderColor: string;
@@ -446,11 +446,11 @@ export declare const Default: StoryFn<{
446
446
  }>, {}, {}, {}, {}, {
447
447
  label: string;
448
448
  readonly: boolean;
449
- width: string;
450
- margin: string;
451
449
  value: string;
452
450
  placeholder: string;
451
+ margin: string;
453
452
  padding: string;
453
+ width: string;
454
454
  color: string;
455
455
  disabled: boolean;
456
456
  borderColor: string;
@@ -529,11 +529,11 @@ export declare const Default: StoryFn<{
529
529
  }, string, {
530
530
  label: string;
531
531
  readonly: boolean;
532
- width: string;
533
- margin: string;
534
532
  value: string;
535
533
  placeholder: string;
534
+ margin: string;
536
535
  padding: string;
536
+ width: string;
537
537
  color: string;
538
538
  disabled: boolean;
539
539
  borderColor: string;
@@ -127,11 +127,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<gl
127
127
  }>, {
128
128
  label: string;
129
129
  readonly: boolean;
130
- width: string;
131
- margin: string;
132
130
  value: string;
133
131
  placeholder: string;
132
+ margin: string;
134
133
  padding: string;
134
+ width: string;
135
135
  color: string;
136
136
  disabled: boolean;
137
137
  borderColor: string;
@@ -129,11 +129,11 @@ declare const _default: {
129
129
  onClick?: ((...args: any[]) => any) | undefined;
130
130
  }>, {
131
131
  string: string;
132
- width: string;
133
- margin: string;
134
132
  minWidth: string;
135
133
  background: string;
134
+ margin: string;
136
135
  padding: string;
136
+ width: string;
137
137
  fontSize: string;
138
138
  color: string;
139
139
  justifyContent: string;
@@ -333,11 +333,11 @@ export declare const Default: StoryFn<import('vue').DefineComponent<globalThis.E
333
333
  onClick?: ((...args: any[]) => any) | undefined;
334
334
  }>, {
335
335
  string: string;
336
- width: string;
337
- margin: string;
338
336
  minWidth: string;
339
337
  background: string;
338
+ margin: string;
340
339
  padding: string;
340
+ width: string;
341
341
  fontSize: string;
342
342
  color: string;
343
343
  justifyContent: string;