@surgeui/ds-vue 1.1.0 → 2.0.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.
Files changed (67) hide show
  1. package/README.md +183 -30
  2. package/dist/components/atoms/Avatar.vue.d.ts.map +1 -1
  3. package/dist/components/atoms/Badge.vue.d.ts.map +1 -1
  4. package/dist/components/atoms/Button.vue.d.ts.map +1 -1
  5. package/dist/components/atoms/CheckboxGroup.vue.d.ts.map +1 -1
  6. package/dist/components/atoms/FileUpload.vue.d.ts.map +1 -1
  7. package/dist/components/atoms/FormField.vue.d.ts +19 -0
  8. package/dist/components/atoms/FormField.vue.d.ts.map +1 -1
  9. package/dist/components/atoms/Heading.vue.d.ts.map +1 -1
  10. package/dist/components/atoms/Image.vue.d.ts.map +1 -1
  11. package/dist/components/atoms/Input.vue.d.ts.map +1 -1
  12. package/dist/components/atoms/Link.vue.d.ts.map +1 -1
  13. package/dist/components/atoms/Panel.vue.d.ts.map +1 -1
  14. package/dist/components/atoms/Progress.vue.d.ts +1 -1
  15. package/dist/components/atoms/Progress.vue.d.ts.map +1 -1
  16. package/dist/components/atoms/RadioGroup.vue.d.ts.map +1 -1
  17. package/dist/components/atoms/SelectBox.vue.d.ts +0 -1
  18. package/dist/components/atoms/SelectBox.vue.d.ts.map +1 -1
  19. package/dist/components/atoms/Slider.vue.d.ts +2 -2
  20. package/dist/components/atoms/Slider.vue.d.ts.map +1 -1
  21. package/dist/components/atoms/Switch.vue.d.ts.map +1 -1
  22. package/dist/components/atoms/Textarea.vue.d.ts.map +1 -1
  23. package/dist/components/molecules/AccordionItem.vue.d.ts.map +1 -1
  24. package/dist/components/molecules/AvatarGroup.vue.d.ts +1 -1
  25. package/dist/components/molecules/AvatarGroup.vue.d.ts.map +1 -1
  26. package/dist/components/molecules/ButtonGroup.vue.d.ts.map +1 -1
  27. package/dist/components/molecules/Dropdown.vue.d.ts.map +1 -1
  28. package/dist/components/molecules/FileUploadField.vue.d.ts.map +1 -1
  29. package/dist/components/molecules/FloatButton.vue.d.ts.map +1 -1
  30. package/dist/components/molecules/{FormFields.vue.d.ts → FormFieldGroup.vue.d.ts} +3 -3
  31. package/dist/components/molecules/FormFieldGroup.vue.d.ts.map +1 -0
  32. package/dist/components/molecules/InputField.vue.d.ts +1 -0
  33. package/dist/components/molecules/InputField.vue.d.ts.map +1 -1
  34. package/dist/components/molecules/LinkGroup.vue.d.ts.map +1 -1
  35. package/dist/components/molecules/Password.vue.d.ts.map +1 -1
  36. package/dist/components/molecules/PasswordField.vue.d.ts +85 -0
  37. package/dist/components/molecules/PasswordField.vue.d.ts.map +1 -0
  38. package/dist/components/molecules/SelectBoxField.vue.d.ts +0 -3
  39. package/dist/components/molecules/SelectBoxField.vue.d.ts.map +1 -1
  40. package/dist/components/molecules/SliderField.vue.d.ts +1 -1
  41. package/dist/components/molecules/SliderField.vue.d.ts.map +1 -1
  42. package/dist/components/organisms/Accordion.vue.d.ts.map +1 -1
  43. package/dist/components/organisms/Alert.vue.d.ts.map +1 -1
  44. package/dist/components/organisms/Dialog.vue.d.ts.map +1 -1
  45. package/dist/components/organisms/Tabs.vue.d.ts.map +1 -1
  46. package/dist/composables/index.d.ts +3 -0
  47. package/dist/composables/index.d.ts.map +1 -0
  48. package/dist/composables/useTheme.d.ts +18 -14
  49. package/dist/composables/useTheme.d.ts.map +1 -1
  50. package/dist/{index-BuLJg9Es.js → index-7PaC4pth.js} +1 -1
  51. package/dist/index-CWUPixNs.js +5852 -0
  52. package/dist/index.d.ts +5 -3
  53. package/dist/index.d.ts.map +1 -1
  54. package/dist/index.es.js +34 -32
  55. package/dist/index.umd.js +1 -1
  56. package/dist/plugin/theme.d.ts +59 -16
  57. package/dist/plugin/theme.d.ts.map +1 -1
  58. package/dist/style.css +1 -1
  59. package/dist/theme.config.d.ts +10 -0
  60. package/dist/theme.config.d.ts.map +1 -0
  61. package/dist/types/index.d.ts +5 -4
  62. package/dist/types/index.d.ts.map +1 -1
  63. package/dist/types/theme.d.ts +76 -6
  64. package/dist/types/theme.d.ts.map +1 -1
  65. package/package.json +1 -1
  66. package/dist/components/molecules/FormFields.vue.d.ts.map +0 -1
  67. package/dist/index-BTQ892Rw.js +0 -5485
package/README.md CHANGED
@@ -8,13 +8,6 @@ A modern **Vue.js 3** component library with Composition API, designed to create
8
8
  [![TypeScript](https://img.shields.io/badge/TypeScript-Ready-3178C6.svg)](https://www.typescriptlang.org/)
9
9
 
10
10
 
11
- > This release is intended entirely for testing and solution optimization.
12
- > The goal is to explore different technical approaches in order to identify the best way to build and structure the design system.
13
- >
14
- > Therefore, this is not a stable release.
15
- > The first officially stable version will be 2.0.
16
-
17
-
18
11
  ## ✨ Features
19
12
 
20
13
  - 🎨 **Modern Design** - Polished and professional components
@@ -65,43 +58,203 @@ app.use(SurgeUpDS)
65
58
  app.mount('#app')
66
59
  ```
67
60
 
61
+ ## 🎨 Customization & Theming
62
+
63
+ SurgeUI provides a **declarative, CSS-based theming system** that allows you to customize colors and styles by defining custom CSS variables.
64
+
65
+ ### How It Works
66
+
67
+ The customization system automatically converts theme properties into CSS variables with the `--su-custom-` prefix. These variables can override the default theme tokens when defined.
68
+
68
69
  ### Global Configuration
69
70
 
70
- Customize default component behavior when installing:
71
+ Configure the design system when installing:
71
72
 
72
73
  ```ts
73
- import type { SurgeuiTheme } from '@surgeui/ds-vue'
74
+ import { createApp } from 'vue'
75
+ import SurgeUpDS from '@surgeui/ds-vue'
76
+ import '@surgeui/ds-vue/style.css'
77
+ import App from './App.vue'
78
+
79
+ const app = createApp(App)
74
80
 
75
- const options: SurgeuiTheme = {
81
+ const themeConfig = {
76
82
  // Component prefix (default: 'Su')
77
83
  prefix: 'My', // Components become MyButton, MyInput, etc.
78
84
 
79
- // custom text color
80
- textPrimaryColor: '#213222',
81
- textSecondaryColor: '#454344',
82
- textTeriaryColor: '#676965',
83
-
84
- // Custom Button style
85
- button: {
86
- bg: '#101010',
87
- color: '#FFFFFF',
88
- border: 'none',
89
- hoverBackground: '#383838',
90
- hoverShadow: '0 0'
85
+ // Theme customization via CSS variables
86
+ theme: {
87
+ // Text colors
88
+ textPrimary: '#1f2937',
89
+ textSecondary: '#6b7280',
90
+ textTertiary: '#9ca3af',
91
+ textDisabled: '#d1d5db',
92
+
93
+ // Background colors
94
+ bgCanvas: '#ffffff',
95
+ bgSurface: '#f9fafb',
96
+ bgOverlay: 'rgba(0, 0, 0, 0.5)',
97
+
98
+ // Border colors
99
+ borderDefault: '#e5e7eb',
100
+ borderFocus: '#3b82f6',
101
+
102
+ // Action colors
103
+ primaryDefault: '#3b82f6',
104
+ primaryHover: '#2563eb',
105
+ primaryText: '#ffffff',
106
+
107
+ // State colors
108
+ stateSuccess: '#10b981',
109
+ stateWarning: '#f59e0b',
110
+ stateError: '#ef4444',
91
111
  }
112
+ }
113
+
114
+ app.use(SurgeUpDS, themeConfig)
115
+ app.mount('#app')
116
+ ```
117
+
118
+ ### CSS Variable Generation
119
+
120
+ All theme properties are automatically converted to CSS custom properties with the `--su-custom-` prefix:
92
121
 
93
- // custom link style
94
- link?: {
95
- color: '#2563eb',
96
- hoverColor: '#1e40af',
97
- hoverBackground: 'none',
98
- activeColor: '#1e3a8a',
122
+ ```ts
123
+ theme: {
124
+ textPrimary: '#1f2937' // → --su-custom-text-primary
125
+ bgSurface: '#f9fafb' // → --su-custom-bg-surface
126
+ primaryDefault: '#3b82f6' // → --su-custom-primary-default
127
+ stateSuccessBg: '#d1fae5' // → --su-custom-state-success-bg
128
+ }
129
+ ```
130
+
131
+ ### Using Custom Variables in CSS
132
+
133
+ Define custom variables in your CSS and they will automatically take precedence over default theme tokens:
134
+
135
+ ```css
136
+ /* In your global CSS file */
137
+ :root {
138
+ /* Text customization */
139
+ --su-custom-text-primary: #1f2937;
140
+ --su-custom-text-secondary: #6b7280;
141
+
142
+ /* Background customization */
143
+ --su-custom-bg-canvas: #ffffff;
144
+ --su-custom-bg-surface: #f9fafb;
145
+
146
+ /* Button customization */
147
+ --su-custom-primary-default: #3b82f6;
148
+ --su-custom-primary-hover: #2563eb;
149
+ --su-custom-primary-text: #ffffff;
150
+
151
+ /* State customization */
152
+ --su-custom-state-success: #10b981;
153
+ --su-custom-state-error: #ef4444;
154
+ }
155
+
156
+ /* Dark mode example */
157
+ @media (prefers-color-scheme: dark) {
158
+ :root {
159
+ --su-custom-text-primary: #f3f4f6;
160
+ --su-custom-bg-canvas: #111827;
161
+ --su-custom-bg-surface: #1f2937;
99
162
  }
163
+ }
164
+ ```
100
165
 
101
- // Other options are currently under development.
166
+ ### Available Theme Tokens
167
+
168
+ #### Text Tokens
169
+ - `textPrimary` - Primary text color
170
+ - `textSecondary` - Secondary text color
171
+ - `textTertiary` - Tertiary text color
172
+ - `textDisabled` - Disabled text color
173
+ - `textInverse` - Inverse text color (for contrast backgrounds)
174
+
175
+ #### Background Tokens
176
+ - `bgCanvas` - Canvas/page background
177
+ - `bgSurface` - Card and modal backgrounds
178
+ - `bgSurfaceElevated` - Elevated surface backgrounds
179
+ - `bgHover` - Hover state background
180
+ - `bgActive` - Active state background
181
+ - `bgSelected` - Selected state background
182
+ - `bgOverlay` - Overlay/backdrop background
183
+
184
+ #### Border Tokens
185
+ - `borderDefault` - Default border color
186
+ - `borderSubtle` - Subtle border color
187
+ - `borderStrong` - Strong border color
188
+ - `borderFocus` - Focus state border
189
+ - `borderDisabled` - Disabled border
190
+
191
+ #### Action Tokens
192
+ - `primaryDefault` - Primary action default
193
+ - `primaryHover` - Primary action hover
194
+ - `primaryActive` - Primary action active
195
+ - `primaryDisabled` - Primary action disabled
196
+ - `primaryText` - Primary action text
197
+ - `secondaryDefault` - Secondary action default
198
+ - `secondaryHover` - Secondary action hover
199
+ - `secondaryText` - Secondary action text
200
+
201
+ #### State Tokens
202
+ - `stateSuccess` - Success state color
203
+ - `stateSuccessBg` - Success background
204
+ - `stateWarning` - Warning state color
205
+ - `stateWarningBg` - Warning background
206
+ - `stateError` - Error state color
207
+ - `stateErrorBg` - Error background
208
+ - `stateInfo` - Info state color
209
+ - `stateInfoBg` - Info background
210
+
211
+ #### Link Tokens (legacy configuration)
212
+ - `linkVariant` - Default link variant
213
+ - `linkSize` - Default link size
214
+ - `linkUnderline` - Default underline style
215
+ - `dialogDisplay` - Default dialog display mode
216
+
217
+ ### Variable Priority & Fallback
218
+
219
+ Variables follow this priority order:
220
+
221
+ 1. **Custom CSS variables** (`--su-custom-*`) - Highest priority
222
+ 2. **Theme configuration** - Applied during plugin initialization
223
+ 3. **Default theme tokens** - Fallbacks from theme definitions
224
+
225
+ This means:
226
+ - CSS variables defined in `:root` or element styles always take precedence
227
+ - Variables not defined in the theme config fall back to default tokens
228
+ - You can override specific tokens without defining the entire theme
229
+
230
+ ### Scoped Customization
231
+
232
+ Apply different themes to different parts of your application:
233
+
234
+ ```vue
235
+ <template>
236
+ <!-- Light theme section -->
237
+ <section class="light-section">
238
+ <SuButton>Light Button</SuButton>
239
+ </section>
240
+
241
+ <!-- Dark theme section -->
242
+ <section class="dark-section">
243
+ <SuButton>Dark Button</SuButton>
244
+ </section>
245
+ </template>
246
+
247
+ <style scoped>
248
+ .light-section {
249
+ --su-custom-text-primary: #1f2937;
250
+ --su-custom-bg-surface: #ffffff;
102
251
  }
103
252
 
104
- app.use(SurgeUpDS, options)
253
+ .dark-section {
254
+ --su-custom-text-primary: #f3f4f6;
255
+ --su-custom-bg-surface: #1f2937;
256
+ }
257
+ </style>
105
258
  ```
106
259
 
107
260
  ### With Icons
@@ -1 +1 @@
1
- {"version":3,"file":"Avatar.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Avatar.vue"],"names":[],"mappings":"AA+cA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;;;;;;;;;;;;;;;;;;;;AAgT1C,wBAWG"}
1
+ {"version":3,"file":"Avatar.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Avatar.vue"],"names":[],"mappings":"AA8cA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;;;;;;;;;;;;;;;;;;;;AA2S1C,wBAWG"}
@@ -1 +1 @@
1
- {"version":3,"file":"Badge.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Badge.vue"],"names":[],"mappings":"AAuRA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAwFzC,iBAAS,cAAc;WA0CT,OAAO,IAA6B;;oBAvHpC,GAAG;;oBAAH,GAAG;;;;EA4HhB;AAaD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;yFAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"Badge.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Badge.vue"],"names":[],"mappings":"AAoRA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAwFzC,iBAAS,cAAc;WA0CT,OAAO,IAA6B;;oBAvHpC,GAAG;;oBAAH,GAAG;;;;EA4HhB;AAaD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;yFAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Button.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Button.vue"],"names":[],"mappings":"AAkYA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AA4G1C,iBAAS,cAAc;WA+DT,OAAO,IAA6B;;yBAVpB,GAAG;;;;EAehC;AAkBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;2FASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"Button.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Button.vue"],"names":[],"mappings":"AAyVA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AA4G1C,iBAAS,cAAc;WA+DT,OAAO,IAA6B;;yBAVpB,GAAG;;;;EAehC;AAkBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;2FASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"CheckboxGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/CheckboxGroup.vue"],"names":[],"mappings":"AA4sBA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAA;AAIjD,KAAK,WAAW,GAAG,kBAAkB,CAAC;AAqItC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,CAAC;CAChC,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA2GT,OAAO,IAA6B;;wBAXtB,GAAG;uBACH,GAAG;;;;EAe9B;AAqBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;6EAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"CheckboxGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/CheckboxGroup.vue"],"names":[],"mappings":"AAqpBA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAA;AAIjD,KAAK,WAAW,GAAG,kBAAkB,CAAC;AAqItC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,CAAC;CAChC,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA2GT,OAAO,IAA6B;;wBAXtB,GAAG;uBACH,GAAG;;;;EAe9B;AAqBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;6EAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"FileUpload.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/FileUpload.vue"],"names":[],"mappings":"AA8/BA,OAAO,KAAK,EAAE,mBAAmB,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAGhE,KAAK,WAAW,GAAG,mBAAmB,CAAC;AAoWvC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,YAAY,EAAE,CAAC;CAC3B,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+ThB,wBAWG"}
1
+ {"version":3,"file":"FileUpload.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/FileUpload.vue"],"names":[],"mappings":"AAggCA,OAAO,KAAK,EAAE,mBAAmB,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAGhE,KAAK,WAAW,GAAG,mBAAmB,CAAC;AAoWvC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,YAAY,EAAE,CAAC;CAC3B,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+ThB,wBAWG"}
@@ -2,9 +2,27 @@ import { FormFieldProps } from '../../types';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
5
+ label?(_: {
6
+ label: string | undefined;
7
+ fieldId: string;
8
+ state: import('../../types').State;
9
+ size: import('../../types').Size;
10
+ required: boolean;
11
+ disabled: boolean;
12
+ }): any;
5
13
  default?(_: {
6
14
  fieldId: string;
7
15
  messageId: string | undefined;
16
+ state: import('../../types').State;
17
+ size: import('../../types').Size;
18
+ required: boolean;
19
+ disabled: boolean;
20
+ }): any;
21
+ message?(_: {
22
+ message: string;
23
+ messageId: string | undefined;
24
+ state: import('../../types').State;
25
+ size: import('../../types').Size;
8
26
  }): any;
9
27
  };
10
28
  refs: {};
@@ -12,6 +30,7 @@ declare function __VLS_template(): {
12
30
  };
13
31
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
32
  declare const __VLS_component: import('vue').DefineComponent<FormFieldProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FormFieldProps> & Readonly<{}>, {
33
+ size: import('../../types').Size;
15
34
  disabled: boolean;
16
35
  state: import('../../types').State;
17
36
  required: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"FormField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/FormField.vue"],"names":[],"mappings":"AAwLA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAoD7C,iBAAS,cAAc;WAiDT,OAAO,IAA6B;;;;;YAVrB,GAAG;;;;EAe/B;AAcD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;wFAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"FormField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/FormField.vue"],"names":[],"mappings":"AAuMA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAsD7C,iBAAS,cAAc;WAqET,OAAO,IAA6B;;;;;;;;;YAZvB,GAAG;;;;;;;;YACD,GAAG;;;;;;YACH,GAAG;;;;EAe/B;AAcD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;wFAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Heading.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Heading.vue"],"names":[],"mappings":"AAwJA,iBAAS,cAAc;WA6DT,OAAO,IAA6B;;wBAZtB,GAAG;yBACF,GAAG;uBACL,GAAG;;;;EAe7B;AA2BD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;2BASE,MAAM,GAAG,MAAM;;;;;yBAQjB,MAAM;;;;;;;;;;2BARJ,MAAM,GAAG,MAAM;;;;;yBAQjB,MAAM;;;;;;;;;;4EAQzB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAEpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"Heading.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Heading.vue"],"names":[],"mappings":"AAwKA,iBAAS,cAAc;WA6DT,OAAO,IAA6B;;wBAZtB,GAAG;yBACF,GAAG;uBACL,GAAG;;;;EAe7B;AA2BD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;2BASE,MAAM,GAAG,MAAM;;;;;yBAQjB,MAAM;;;;;;;;;;2BARJ,MAAM,GAAG,MAAM;;;;;yBAQjB,MAAM;;;;;;;;;;4EAQzB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAEpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Image.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Image.vue"],"names":[],"mappings":"AAmZA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;;;;;;;;;;;;;;;;;;;;;AA8RzC,wBAWG"}
1
+ {"version":3,"file":"Image.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Image.vue"],"names":[],"mappings":"AAoZA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;;;;;;;;;;;;;;;;;;;;;AA8RzC,wBAWG"}
@@ -1 +1 @@
1
- {"version":3,"file":"Input.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Input.vue"],"names":[],"mappings":"AAuZA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAIzC,KAAK,WAAW,GAAG,UAAU,CAAC;AAqJ9B,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC5B,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA+HT,OAAO,IAA6B;;;;YAZtB,GAAG;;;YACF,GAAG;;;;;;EAgB/B;AAgCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAUnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"Input.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Input.vue"],"names":[],"mappings":"AA2WA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAIzC,KAAK,WAAW,GAAG,UAAU,CAAC;AA8I9B,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC5B,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA+HT,OAAO,IAA6B;;;;YAZtB,GAAG;;;YACF,GAAG;;;;;;EAgB/B;AA+BD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAUnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Link.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Link.vue"],"names":[],"mappings":"AAwbA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AA2HxC,iBAAS,cAAc;WAqFT,OAAO,IAA6B;;yBAVpB,GAAG;;;;EAehC;AAoBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;6EASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"Link.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Link.vue"],"names":[],"mappings":"AAybA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,SAAS,CAAA;AA2HxC,iBAAS,cAAc;WAqFT,OAAO,IAA6B;;yBAVpB,GAAG;;;;EAehC;AAoBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;6EASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Panel.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Panel.vue"],"names":[],"mappings":"AAoFA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAoBzC,iBAAS,cAAc;WAiET,OAAO,IAA6B;;sBAZxB,GAAG;yBACA,GAAG;wBACJ,GAAG;;;;EAe9B;AASD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;6EAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"Panel.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Panel.vue"],"names":[],"mappings":"AAqFA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAoBzC,iBAAS,cAAc;WAiET,OAAO,IAA6B;;sBAZxB,GAAG;yBACA,GAAG;wBACJ,GAAG;;;;EAe9B;AASD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;6EAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -9,12 +9,12 @@ declare function __VLS_template(): {
9
9
  };
10
10
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
11
  declare const __VLS_component: import('vue').DefineComponent<ProgressProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ProgressProps> & Readonly<{}>, {
12
- max: number;
13
12
  size: "sm" | "md" | "lg";
14
13
  color: string;
15
14
  backgroundColor: string;
16
15
  state: "default" | "error" | "success" | "warning";
17
16
  min: number;
17
+ max: number;
18
18
  formatValue: (value: number) => string;
19
19
  modelValue: number;
20
20
  showLabel: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"Progress.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Progress.vue"],"names":[],"mappings":"AAyOA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAoF5C,iBAAS,cAAc;WAsET,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAaD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;wFAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"Progress.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Progress.vue"],"names":[],"mappings":"AA0OA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAoF5C,iBAAS,cAAc;WAsET,OAAO,IAA6B;;yBAVrB,GAAG;;;;EAe/B;AAaD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;wFAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"RadioGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/RadioGroup.vue"],"names":[],"mappings":"AAoqBA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AAI9C,KAAK,WAAW,GAAG,eAAe,CAAC;AAmGnC,KAAK,iBAAiB,GAAG;IACzB,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC9B,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAoGT,OAAO,IAA6B;;wBAXtB,GAAG;uBACJ,GAAG;;;;EAe7B;AAmBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;6EAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"RadioGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/RadioGroup.vue"],"names":[],"mappings":"AAqqBA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AAI9C,KAAK,WAAW,GAAG,eAAe,CAAC;AAmGnC,KAAK,iBAAiB,GAAG;IACzB,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC9B,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAoGT,OAAO,IAA6B;;wBAXtB,GAAG;uBACJ,GAAG;;;;EAe7B;AAmBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;6EAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -43,7 +43,6 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
43
43
  searchPlaceholder: string;
44
44
  noOptionsText: string;
45
45
  noResultsText: string;
46
- dir: "ltr" | "rtl" | "auto";
47
46
  closeOnSelect: boolean;
48
47
  maxSelectedItems: number;
49
48
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
@@ -1 +1 @@
1
- {"version":3,"file":"SelectBox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/SelectBox.vue"],"names":[],"mappings":"AAmuCA,OAAO,KAAK,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAI3D,KAAK,WAAW,GAAG,cAAc,CAAC;AA0blC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,GAAG,SAAS,CAAC;CAC9D,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA2YhB,wBAUG"}
1
+ {"version":3,"file":"SelectBox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/SelectBox.vue"],"names":[],"mappings":"AA0tCA,OAAO,KAAK,EAAE,YAAY,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAI3D,KAAK,WAAW,GAAG,cAAc,CAAC;AAublC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,GAAG,SAAS,CAAC;CAC9D,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA0YhB,wBAUG"}
@@ -19,7 +19,7 @@ declare function __VLS_template(): {
19
19
  };
20
20
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
21
21
  declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {
22
- focus: () => void;
22
+ focus: () => void | undefined;
23
23
  sliderRef: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
24
24
  thumb1Ref: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
25
25
  thumb2Ref: import('vue').Ref<HTMLDivElement | undefined, HTMLDivElement | undefined>;
@@ -38,13 +38,13 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
38
38
  onChange?: ((value: number | [number, number]) => any) | undefined;
39
39
  "onUpdate:modelValue"?: ((value: number | [number, number]) => any) | undefined;
40
40
  }>, {
41
- max: number;
42
41
  size: import('../../types').Size;
43
42
  disabled: boolean;
44
43
  state: import('../../types').State;
45
44
  required: boolean;
46
45
  readonly: boolean;
47
46
  min: number;
47
+ max: number;
48
48
  step: number;
49
49
  orientation: import('../../types').Orientation;
50
50
  tooltip: "none" | "top" | "bottom";
@@ -1 +1 @@
1
- {"version":3,"file":"Slider.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Slider.vue"],"names":[],"mappings":"AA6kCA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAE1C,KAAK,WAAW,GAAG,WAAW,CAAC;AAkY/B,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACtC,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAsOT,OAAO,IAA6B;;wBAftB,GAAG;uBACJ,GAAG;;;;;;;;;EAmB7B;AAsCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAWnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"Slider.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Slider.vue"],"names":[],"mappings":"AAykCA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAE1C,KAAK,WAAW,GAAG,WAAW,CAAC;AAiY/B,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACtC,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA8OT,OAAO,IAA6B;;wBAftB,GAAG;uBACJ,GAAG;;;;;;;;;EAmB7B;AAuCD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAWnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Switch.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Switch.vue"],"names":[],"mappings":"AA2VA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAI1C,KAAK,WAAW,GAAG,WAAW,CAAC;AA0G/B,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;gBADH,OAAO;;;;AA8GpB,wBAUG"}
1
+ {"version":3,"file":"Switch.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Switch.vue"],"names":[],"mappings":"AA4VA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAI1C,KAAK,WAAW,GAAG,WAAW,CAAC;AA0G/B,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;CACpB,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;gBADH,OAAO;;;;AA8GpB,wBAUG"}
@@ -1 +1 @@
1
- {"version":3,"file":"Textarea.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Textarea.vue"],"names":[],"mappings":"AA4UA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAI5C,KAAK,WAAW,GAAG,aAAa,CAAC;AAiNjC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuGhB,wBAUG"}
1
+ {"version":3,"file":"Textarea.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/Textarea.vue"],"names":[],"mappings":"AAgVA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;AAI5C,KAAK,WAAW,GAAG,aAAa,CAAC;AAiNjC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuGhB,wBAUG"}
@@ -1 +1 @@
1
- {"version":3,"file":"AccordionItem.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/AccordionItem.vue"],"names":[],"mappings":"AAoZA,OAAO,KAAK,EAAoB,kBAAkB,EAAE,MAAM,SAAS,CAAC;AA+GpE,iBAAS,cAAc;WAqGT,OAAO,IAA6B;;;;;;;;;;YAZtB,GAAG;;;;;;;;;YACD,GAAG;;;;;;EAgBhC;AAmBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;kBAUnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"AccordionItem.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/AccordionItem.vue"],"names":[],"mappings":"AAyZA,OAAO,KAAK,EAAoB,kBAAkB,EAAE,MAAM,SAAS,CAAC;AA+GpE,iBAAS,cAAc;WAoGT,OAAO,IAA6B;;;;;;;;;;YAZtB,GAAG;;;;;;;;;YACD,GAAG;;;;;;EAgBhC;AAmBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;kBAUnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -17,10 +17,10 @@ declare const __VLS_component: import('vue').DefineComponent<AvatarGroupProps, {
17
17
  }, string, import('vue').PublicProps, Readonly<AvatarGroupProps> & Readonly<{
18
18
  "onAvatar-click"?: ((avatar: any, index: number, event: MouseEvent) => any) | undefined;
19
19
  }>, {
20
- max: number;
21
20
  size: import('../../types').AvatarSize;
22
21
  variant: import('../../types').AvatarVariant;
23
22
  clickable: boolean;
23
+ max: number;
24
24
  avatars: import('../../types').AvatarProps[];
25
25
  spacing: "none" | "sm" | "md" | "lg";
26
26
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
@@ -1 +1 @@
1
- {"version":3,"file":"AvatarGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/AvatarGroup.vue"],"names":[],"mappings":"AAyQA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAuF/C,iBAAS,cAAc;WAiGT,OAAO,IAA6B;;mBAtKrC,GAAG;kBACJ,GAAG;;mBADF,GAAG;kBACJ,GAAG;;;;EA0Kd;AAkBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;wFASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"AvatarGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/AvatarGroup.vue"],"names":[],"mappings":"AAkQA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAuF/C,iBAAS,cAAc;WAyGT,OAAO,IAA6B;;mBA9KrC,GAAG;kBACJ,GAAG;;mBADF,GAAG;kBACJ,GAAG;;;;EAkLd;AAkBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;wFASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"ButtonGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/ButtonGroup.vue"],"names":[],"mappings":"AAiHA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAgF/C,iBAAS,cAAc;WA+BT,OAAO,IAA6B;;mBAvGrC,GAAG;;mBAAH,GAAG;;;;EA4Gf;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;wFAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"ButtonGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/ButtonGroup.vue"],"names":[],"mappings":"AAgJA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAgF/C,iBAAS,cAAc;WAiCT,OAAO,IAA6B;;mBAzGrC,GAAG;;mBAAH,GAAG;;;;EA8Gf;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;wFAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Dropdown.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/Dropdown.vue"],"names":[],"mappings":"AA65BA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyjB5C,wBAWG"}
1
+ {"version":3,"file":"Dropdown.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/Dropdown.vue"],"names":[],"mappings":"AA65BA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,SAAS,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8kB5C,wBAWG"}
@@ -1 +1 @@
1
- {"version":3,"file":"FileUploadField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/FileUploadField.vue"],"names":[],"mappings":"AAghCA,OAAO,KAAK,EAAE,oBAAoB,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAEjE,UAAU,KAAM,SAAQ,IAAI,CAAC,oBAAoB,EAAE,OAAO,CAAC;CAAG;AAE9D,KAAK,WAAW,GAAG,KAAK,CAAC;AAqWzB,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,YAAY,EAAE,CAAC;CAC3B,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA4VhB,wBAWG"}
1
+ {"version":3,"file":"FileUploadField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/FileUploadField.vue"],"names":[],"mappings":"AAqhCA,OAAO,KAAK,EAAE,oBAAoB,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAEjE,UAAU,KAAM,SAAQ,IAAI,CAAC,oBAAoB,EAAE,OAAO,CAAC;CAAG;AAE9D,KAAK,WAAW,GAAG,KAAK,CAAC;AAqWzB,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,YAAY,EAAE,CAAC;CAC3B,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA4VhB,wBAWG"}
@@ -1 +1 @@
1
- {"version":3,"file":"FloatButton.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/FloatButton.vue"],"names":[],"mappings":"AA+kBA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAE/C,MAAM,WAAW,KAAM,SAAQ,gBAAgB;CAAG;AAuLlD,iBAAS,cAAc;WA6GT,OAAO,IAA6B;;oBA5QpC,GAAG;;oBAAH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA0UspG,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;EAzD5xG;AAwBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAgCkpG,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;kBArB3xG,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"FloatButton.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/FloatButton.vue"],"names":[],"mappings":"AAgkBA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAE/C,MAAM,WAAW,KAAM,SAAQ,gBAAgB;CAAG;AAuLlD,iBAAS,cAAc;WAyHT,OAAO,IAA6B;;oBAxRpC,GAAG;;oBAAH,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAsVm+D,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;EAzDzmE;AAwBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAgC+9D,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCAAtH,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;kBArBxmE,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1,5 +1,5 @@
1
- import { FormFieldsProps } from '../../types';
2
- export interface Props extends FormFieldsProps {
1
+ import { FormFieldGroupProps } from '../../types';
2
+ export interface Props extends FormFieldGroupProps {
3
3
  }
4
4
  declare function __VLS_template(): {
5
5
  attrs: Partial<{}>;
@@ -28,4 +28,4 @@ type __VLS_WithTemplateSlots<T, S> = T & {
28
28
  $slots: S;
29
29
  };
30
30
  };
31
- //# sourceMappingURL=FormFields.vue.d.ts.map
31
+ //# sourceMappingURL=FormFieldGroup.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"FormFieldGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/FormFieldGroup.vue"],"names":[],"mappings":"AAkOA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAElD,MAAM,WAAW,KAAM,SAAQ,mBAAmB;CAAG;AAuGrD,iBAAS,cAAc;WAiDT,OAAO,IAA6B;;iBA9IvC,GAAG;mBACD,GAAG;mBACH,GAAG;;iBAFL,GAAG;mBACD,GAAG;mBACH,GAAG;;;;EAiJf;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;wFAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -45,6 +45,7 @@ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {
45
45
  $data: {};
46
46
  $props: {
47
47
  readonly modelValue?: string | number | undefined;
48
+ readonly name?: string | undefined;
48
49
  readonly type?: import('../../types').InputType | undefined;
49
50
  readonly size?: import('../../types').Size | undefined;
50
51
  readonly state?: import('../../types').State | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"InputField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/InputField.vue"],"names":[],"mappings":"AAgGA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AAE9C,KAAK,WAAW,GAAG,eAAe,CAAC;AA6EnC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC5B,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA6K6kc,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAzBntc,wBAWG"}
1
+ {"version":3,"file":"InputField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/InputField.vue"],"names":[],"mappings":"AAgGA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AAE9C,KAAK,WAAW,GAAG,eAAe,CAAC;AA6EnC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC5B,GAAG,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oCA6K6kc,GAAG,8CAA8C,GAAG,yBAAyB,GAAG,6DAAmC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAzBntc,wBAWG"}
@@ -1 +1 @@
1
- {"version":3,"file":"LinkGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/LinkGroup.vue"],"names":[],"mappings":"AAoQA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AA2H7C,iBAAS,cAAc;WA+BT,OAAO,IAA6B;;mBAhJrC,GAAG;;mBAAH,GAAG;;;;EAqJf;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;wFAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"LinkGroup.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/LinkGroup.vue"],"names":[],"mappings":"AAmSA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AA2H7C,iBAAS,cAAc;WA+BT,OAAO,IAA6B;;mBAhJrC,GAAG;;mBAAH,GAAG;;;;EAqJf;AAYD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;wFAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Password.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/Password.vue"],"names":[],"mappings":"AA+RA,OAAO,KAAK,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAA;AAIhE,MAAM,WAAW,KAAM,SAAQ,aAAa;CAAG;AAE/C,KAAK,WAAW,GAAG,KAAK,CAAC;AAmNzB,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA6IT,OAAO,IAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAVpB,GAAG;;;;EAehC;AAyBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6EAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"Password.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/Password.vue"],"names":[],"mappings":"AA6RA,OAAO,KAAK,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAA;AAIhE,MAAM,WAAW,KAAM,SAAQ,aAAa;CAAG;AAE/C,KAAK,WAAW,GAAG,KAAK,CAAC;AAmNzB,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WA6IT,OAAO,IAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAVpB,GAAG;;;;EAehC;AAyBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6EAQnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -0,0 +1,85 @@
1
+ import { PasswordFieldProps, PasswordValidation } from '../../types';
2
+ type __VLS_Props = PasswordFieldProps;
3
+ type __VLS_PublicProps = {
4
+ modelValue?: string;
5
+ } & __VLS_Props;
6
+ declare function __VLS_template(): {
7
+ attrs: Partial<{}>;
8
+ slots: {
9
+ default?(_: {
10
+ validation: PasswordValidation;
11
+ isValid: boolean;
12
+ score: number;
13
+ satisfied: string[];
14
+ unsatisfied: string[];
15
+ details: {
16
+ length: {
17
+ required: number;
18
+ current: number;
19
+ satisfied: boolean;
20
+ };
21
+ uppercase: {
22
+ required: number;
23
+ current: number;
24
+ satisfied: boolean;
25
+ };
26
+ lowercase: {
27
+ required: number;
28
+ current: number;
29
+ satisfied: boolean;
30
+ };
31
+ digits: {
32
+ required: number;
33
+ current: number;
34
+ satisfied: boolean;
35
+ };
36
+ specialChars: {
37
+ required: number;
38
+ current: number;
39
+ satisfied: boolean;
40
+ };
41
+ };
42
+ }): any;
43
+ };
44
+ refs: {};
45
+ rootEl: HTMLDivElement;
46
+ };
47
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
48
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
49
+ input: (event: Event) => any;
50
+ focus: (event: FocusEvent) => any;
51
+ blur: (event: FocusEvent) => any;
52
+ keydown: (event: KeyboardEvent) => any;
53
+ change: (event: Event) => any;
54
+ keyup: (event: KeyboardEvent) => any;
55
+ "update:modelValue": (value: string) => any;
56
+ validation: (validation: PasswordValidation) => any;
57
+ "toggle-visibility": (visible: boolean) => any;
58
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
59
+ onInput?: ((event: Event) => any) | undefined;
60
+ onFocus?: ((event: FocusEvent) => any) | undefined;
61
+ onBlur?: ((event: FocusEvent) => any) | undefined;
62
+ onKeydown?: ((event: KeyboardEvent) => any) | undefined;
63
+ onChange?: ((event: Event) => any) | undefined;
64
+ onKeyup?: ((event: KeyboardEvent) => any) | undefined;
65
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
66
+ onValidation?: ((validation: PasswordValidation) => any) | undefined;
67
+ "onToggle-visibility"?: ((visible: boolean) => any) | undefined;
68
+ }>, {
69
+ size: import('../../types').Size;
70
+ disabled: boolean;
71
+ state: import('../../types').State;
72
+ required: boolean;
73
+ readonly: boolean;
74
+ rules: import('../../types').PasswordRules;
75
+ showProgress: boolean;
76
+ showToggle: boolean;
77
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
78
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
79
+ export default _default;
80
+ type __VLS_WithTemplateSlots<T, S> = T & {
81
+ new (): {
82
+ $slots: S;
83
+ };
84
+ };
85
+ //# sourceMappingURL=PasswordField.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PasswordField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/PasswordField.vue"],"names":[],"mappings":"AAwRA,OAAO,KAAK,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,MAAM,SAAS,CAAA;AAErE,KAAK,WAAW,GAAG,kBAAkB,CAAC;AAoNtC,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAsKT,OAAO,IAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAVpB,GAAG;;;;EAehC;AA0BD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wFASnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAapG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}