@surgeui/ds-vue 1.2.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.
- package/README.md +183 -30
- package/dist/components/atoms/Avatar.vue.d.ts.map +1 -1
- package/dist/components/atoms/Badge.vue.d.ts.map +1 -1
- package/dist/components/atoms/Button.vue.d.ts.map +1 -1
- package/dist/components/atoms/CheckboxGroup.vue.d.ts.map +1 -1
- package/dist/components/atoms/FileUpload.vue.d.ts.map +1 -1
- package/dist/components/atoms/FormField.vue.d.ts.map +1 -1
- package/dist/components/atoms/Heading.vue.d.ts.map +1 -1
- package/dist/components/atoms/Image.vue.d.ts.map +1 -1
- package/dist/components/atoms/Input.vue.d.ts.map +1 -1
- package/dist/components/atoms/Link.vue.d.ts.map +1 -1
- package/dist/components/atoms/Panel.vue.d.ts.map +1 -1
- package/dist/components/atoms/Progress.vue.d.ts +1 -1
- package/dist/components/atoms/Progress.vue.d.ts.map +1 -1
- package/dist/components/atoms/RadioGroup.vue.d.ts.map +1 -1
- package/dist/components/atoms/SelectBox.vue.d.ts.map +1 -1
- package/dist/components/atoms/Slider.vue.d.ts +2 -2
- package/dist/components/atoms/Slider.vue.d.ts.map +1 -1
- package/dist/components/atoms/Switch.vue.d.ts.map +1 -1
- package/dist/components/atoms/Textarea.vue.d.ts.map +1 -1
- package/dist/components/molecules/AccordionItem.vue.d.ts.map +1 -1
- package/dist/components/molecules/AvatarGroup.vue.d.ts +1 -1
- package/dist/components/molecules/AvatarGroup.vue.d.ts.map +1 -1
- package/dist/components/molecules/ButtonGroup.vue.d.ts.map +1 -1
- package/dist/components/molecules/Dropdown.vue.d.ts.map +1 -1
- package/dist/components/molecules/FileUploadField.vue.d.ts.map +1 -1
- package/dist/components/molecules/FloatButton.vue.d.ts.map +1 -1
- package/dist/components/molecules/{FormFields.vue.d.ts → FormFieldGroup.vue.d.ts} +3 -3
- package/dist/components/molecules/FormFieldGroup.vue.d.ts.map +1 -0
- package/dist/components/molecules/InputField.vue.d.ts +1 -0
- package/dist/components/molecules/InputField.vue.d.ts.map +1 -1
- package/dist/components/molecules/LinkGroup.vue.d.ts.map +1 -1
- package/dist/components/molecules/Password.vue.d.ts.map +1 -1
- package/dist/components/molecules/PasswordField.vue.d.ts +85 -0
- package/dist/components/molecules/PasswordField.vue.d.ts.map +1 -0
- package/dist/components/molecules/SliderField.vue.d.ts +1 -1
- package/dist/components/molecules/SliderField.vue.d.ts.map +1 -1
- package/dist/components/organisms/Accordion.vue.d.ts.map +1 -1
- package/dist/components/organisms/Alert.vue.d.ts.map +1 -1
- package/dist/components/organisms/Dialog.vue.d.ts.map +1 -1
- package/dist/components/organisms/Tabs.vue.d.ts.map +1 -1
- package/dist/composables/index.d.ts +3 -0
- package/dist/composables/index.d.ts.map +1 -0
- package/dist/composables/useTheme.d.ts +18 -14
- package/dist/composables/useTheme.d.ts.map +1 -1
- package/dist/{index-Bco9gSGG.js → index-7PaC4pth.js} +1 -1
- package/dist/index-CWUPixNs.js +5852 -0
- package/dist/index.d.ts +5 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.es.js +34 -32
- package/dist/index.umd.js +1 -1
- package/dist/plugin/theme.d.ts +59 -16
- package/dist/plugin/theme.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/theme.config.d.ts +10 -0
- package/dist/theme.config.d.ts.map +1 -0
- package/dist/types/index.d.ts +4 -3
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/theme.d.ts +76 -6
- package/dist/types/theme.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/components/molecules/FormFields.vue.d.ts.map +0 -1
- package/dist/index-CnZnylJC.js +0 -5504
package/README.md
CHANGED
|
@@ -8,13 +8,6 @@ A modern **Vue.js 3** component library with Composition API, designed to create
|
|
|
8
8
|
[](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
|
-
|
|
71
|
+
Configure the design system when installing:
|
|
71
72
|
|
|
72
73
|
```ts
|
|
73
|
-
import
|
|
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
|
|
81
|
+
const themeConfig = {
|
|
76
82
|
// Component prefix (default: 'Su')
|
|
77
83
|
prefix: 'My', // Components become MyButton, MyInput, etc.
|
|
78
84
|
|
|
79
|
-
//
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
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
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/FormField.vue"],"names":[],"mappings":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SelectBox.vue.d.ts","sourceRoot":"","sources":["../../../src/components/atoms/SelectBox.vue"],"names":[],"mappings":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
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":"
|
|
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":"
|
|
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 {
|
|
2
|
-
export interface Props extends
|
|
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=
|
|
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
|
|
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":"
|
|
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":"
|
|
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"}
|
|
@@ -40,13 +40,13 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
40
40
|
onChange?: ((value: number | [number, number]) => any) | undefined;
|
|
41
41
|
"onUpdate:modelValue"?: ((value: number | [number, number]) => any) | undefined;
|
|
42
42
|
}>, {
|
|
43
|
-
max: number;
|
|
44
43
|
size: import('../../types').Size;
|
|
45
44
|
disabled: boolean;
|
|
46
45
|
state: import('../../types').State;
|
|
47
46
|
required: boolean;
|
|
48
47
|
readonly: boolean;
|
|
49
48
|
min: number;
|
|
49
|
+
max: number;
|
|
50
50
|
step: number;
|
|
51
51
|
orientation: import('../../types').Orientation;
|
|
52
52
|
tooltip: "none" | "top" | "bottom";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SliderField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/SliderField.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SliderField.vue.d.ts","sourceRoot":"","sources":["../../../src/components/molecules/SliderField.vue"],"names":[],"mappings":"AA+jCA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAE/C,MAAM,WAAW,KAAM,SAAQ,IAAI,CAAC,gBAAgB,EAAE,OAAO,CAAC;CAAG;AAEjE,KAAK,WAAW,GAAG,KAAK,CAAC;AAmYzB,KAAK,iBAAiB,GAAG;IACzB,UAAU,CAAC,EAAE,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACtC,GAAG,WAAW,CAAC;AAKhB,iBAAS,cAAc;WAkQT,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":"Accordion.vue.d.ts","sourceRoot":"","sources":["../../../src/components/organisms/Accordion.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Accordion.vue.d.ts","sourceRoot":"","sources":["../../../src/components/organisms/Accordion.vue"],"names":[],"mappings":"AAiSA,OAAO,KAAK,EAAE,iBAAiB,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AA+NhE,iBAAS,cAAc;WAwET,OAAO,IAA6B;;yBAXrB,GAAG;;;;;;EAgB/B;AAgBD,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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Alert.vue.d.ts","sourceRoot":"","sources":["../../../src/components/organisms/Alert.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Alert.vue.d.ts","sourceRoot":"","sources":["../../../src/components/organisms/Alert.vue"],"names":[],"mappings":"AA+YA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAiFzC,iBAAS,cAAc;WAyFT,OAAO,IAA6B;;uBAZvB,GAAG;6BACG,GAAG;yBACP,GAAG;;;;EAe/B;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":"Dialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/organisms/Dialog.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Dialog.vue.d.ts","sourceRoot":"","sources":["../../../src/components/organisms/Dialog.vue"],"names":[],"mappings":"AA8cA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAA;AAoK1C,iBAAS,cAAc;WAmHT,OAAO,IAA6B;;sBAbvB,GAAG;yBACA,GAAG;wBACJ,GAAG;;;;;;EAgB/B;AAsBD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;OAWnB,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"}
|