@club-employes/utopia 2.15.0 → 2.16.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 +256 -103
- package/dist/icons-list.json +1 -1
- package/dist/index.d.ts +71 -1
- package/dist/index.js +1503 -823
- package/dist/light-B30P2O83.js +4 -0
- package/dist/tokens/club-employes/light.css +2 -2
- package/dist/tokens/club-employes/light.js +2 -2
- package/dist/utopia.css +1 -1
- package/package.json +28 -6
- package/dist/light-Br4Gysa0.js +0 -4
package/README.md
CHANGED
|
@@ -1,158 +1,311 @@
|
|
|
1
1
|
# 🎨 Utopia Design System
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@club-employes/utopia)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
[](https://vuejs.org/)
|
|
6
|
+
[](https://www.typescriptlang.org/)
|
|
4
7
|
|
|
5
|
-
|
|
8
|
+
> **Modern Vue 3 design system** with multi-brand theming, design tokens, and 30+ production-ready components. Built for **Club Employés** & **Gifteo** with full TypeScript support.
|
|
6
9
|
|
|
7
|
-
|
|
8
|
-
src/
|
|
9
|
-
├── tokens/ # Sources des design tokens
|
|
10
|
-
│ ├── core/ # Tokens communs (spacing, typography, etc.)
|
|
11
|
-
│ ├── brands/ # Tokens spécifiques par marque
|
|
12
|
-
│ │ └── club-employes/ # Couleurs Club Employés
|
|
13
|
-
│ ├── themes/ # Combinaisons marque + mode
|
|
14
|
-
│ └── generated/ # Fichiers CSS/JS générés
|
|
15
|
-
├── theme-provider/ # Composant ThemeProvider Vue
|
|
16
|
-
├── themes/ # Packages de thèmes exportés
|
|
17
|
-
└── components/ # Composants de démo
|
|
18
|
-
```
|
|
10
|
+
## ✨ Features
|
|
19
11
|
|
|
20
|
-
|
|
12
|
+
- 🧩 **30+ Vue 3 Components** - Atoms, Molecules, Organisms, Layouts
|
|
13
|
+
- 🎨 **Multi-brand Theming** - Club Employés & Gifteo brands
|
|
14
|
+
- 🌙 **Dark Mode Support** - Light/dark variants for all themes
|
|
15
|
+
- 🎯 **Design Tokens** - CSS variables generated with Style Dictionary
|
|
16
|
+
- 📱 **Responsive** - Mobile-first approach with breakpoint utilities
|
|
17
|
+
- ♿ **Accessible** - WCAG 2.1 AA compliant components
|
|
18
|
+
- 🔧 **TypeScript** - Full type definitions included
|
|
19
|
+
- 🚀 **Tree Shakeable** - Import only what you need
|
|
20
|
+
- 📦 **Zero Config** - Works out of the box
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
## 🚀 Quick Start
|
|
23
|
+
|
|
24
|
+
### Installation
|
|
23
25
|
|
|
24
26
|
```bash
|
|
25
|
-
npm install @
|
|
27
|
+
npm install @club-employes/utopia vue@^3.5.0
|
|
26
28
|
```
|
|
27
29
|
|
|
28
|
-
###
|
|
30
|
+
### Basic Usage
|
|
29
31
|
|
|
30
32
|
```vue
|
|
31
33
|
<template>
|
|
32
34
|
<ThemeProvider :theme="clubEmployesLight">
|
|
33
|
-
<
|
|
35
|
+
<div class="app">
|
|
36
|
+
<Button variant="primary" size="medium" @click="handleClick">
|
|
37
|
+
Get Started
|
|
38
|
+
</Button>
|
|
39
|
+
|
|
40
|
+
<Card variant="elevated">
|
|
41
|
+
<Icon name="heart" size="large" />
|
|
42
|
+
<h2>Welcome to Utopia</h2>
|
|
43
|
+
<p>Modern design system for Vue 3</p>
|
|
44
|
+
</Card>
|
|
45
|
+
</div>
|
|
34
46
|
</ThemeProvider>
|
|
35
47
|
</template>
|
|
36
48
|
|
|
37
|
-
<script setup>
|
|
38
|
-
import {
|
|
39
|
-
|
|
49
|
+
<script setup lang="ts">
|
|
50
|
+
import {
|
|
51
|
+
Button,
|
|
52
|
+
Card,
|
|
53
|
+
Icon,
|
|
54
|
+
ThemeProvider,
|
|
55
|
+
clubEmployesLight
|
|
56
|
+
} from '@club-employes/utopia'
|
|
57
|
+
import '@club-employes/utopia/styles'
|
|
58
|
+
|
|
59
|
+
const handleClick = () => {
|
|
60
|
+
console.log('Button clicked!')
|
|
61
|
+
}
|
|
40
62
|
</script>
|
|
41
63
|
```
|
|
42
64
|
|
|
43
|
-
###
|
|
65
|
+
### Import Styles
|
|
44
66
|
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
padding: var(--spacing-4);
|
|
49
|
-
border-radius: var(--border-radius-base);
|
|
50
|
-
font-size: var(--font-size-base);
|
|
51
|
-
}
|
|
67
|
+
```javascript
|
|
68
|
+
// Import all styles (recommended)
|
|
69
|
+
import '@club-employes/utopia/styles'
|
|
52
70
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
}
|
|
71
|
+
// Or import specific theme tokens
|
|
72
|
+
import '@club-employes/utopia/tokens/club-employes/light'
|
|
73
|
+
import '@club-employes/utopia/tokens/gifteo/dark'
|
|
57
74
|
```
|
|
58
75
|
|
|
59
|
-
##
|
|
76
|
+
## 🎨 Available Themes
|
|
60
77
|
|
|
61
|
-
|
|
78
|
+
```javascript
|
|
79
|
+
import {
|
|
80
|
+
clubEmployesLight, // Club Employés light theme
|
|
81
|
+
clubEmployesDark, // Club Employés dark theme
|
|
82
|
+
gifteoLight, // Gifteo light theme
|
|
83
|
+
gifteoDark // Gifteo dark theme
|
|
84
|
+
} from '@club-employes/utopia'
|
|
85
|
+
```
|
|
62
86
|
|
|
63
|
-
|
|
64
|
-
- `--color-blue-25` à `--color-blue-950`
|
|
87
|
+
## 🧩 Components
|
|
65
88
|
|
|
66
|
-
|
|
67
|
-
-
|
|
68
|
-
-
|
|
69
|
-
-
|
|
70
|
-
-
|
|
71
|
-
-
|
|
72
|
-
-
|
|
73
|
-
-
|
|
89
|
+
### Atoms (Building Blocks)
|
|
90
|
+
- **Button** - Interactive buttons with variants
|
|
91
|
+
- **Icon** - 1200+ Lucide icons
|
|
92
|
+
- **Logo** - Multi-brand logos
|
|
93
|
+
- **Badge** - Status indicators
|
|
94
|
+
- **Card** - Content containers
|
|
95
|
+
- **Input** - Form controls
|
|
96
|
+
- **Checkbox** - Boolean inputs
|
|
97
|
+
- **Switch** - Toggle controls
|
|
74
98
|
|
|
75
|
-
|
|
76
|
-
-
|
|
77
|
-
-
|
|
99
|
+
### Molecules (Simple Combinations)
|
|
100
|
+
- **SearchBox** - Search input with icon
|
|
101
|
+
- **InputSelect** - Dropdown with filtering
|
|
78
102
|
|
|
79
|
-
###
|
|
80
|
-
-
|
|
103
|
+
### Organisms (Complex Components)
|
|
104
|
+
- **DataTable** - Advanced data tables
|
|
105
|
+
- **Header** - Navigation headers
|
|
106
|
+
- **Menu** - Sidebar navigation
|
|
81
107
|
|
|
82
|
-
###
|
|
83
|
-
-
|
|
84
|
-
- Poids: `--font-weight-light` à `--font-weight-bold`
|
|
85
|
-
- Familles: `--font-family-sans`, `--font-family-mono`
|
|
108
|
+
### Layouts (Page Structures)
|
|
109
|
+
- **DefaultLayout** - Main application layout
|
|
86
110
|
|
|
87
|
-
|
|
88
|
-
- Rayons: `--border-radius-none` à `--border-radius-full`
|
|
89
|
-
- Largeurs: `--border-width-0` à `--border-width-4`
|
|
111
|
+
## 🔧 Composables
|
|
90
112
|
|
|
91
|
-
|
|
92
|
-
|
|
113
|
+
```javascript
|
|
114
|
+
import { useTheme, useFavicon, useScrollShadows } from '@club-employes/utopia'
|
|
93
115
|
|
|
94
|
-
|
|
116
|
+
// Theme management
|
|
117
|
+
const { theme, setTheme } = useTheme()
|
|
118
|
+
setTheme('club-employes', 'dark')
|
|
95
119
|
|
|
96
|
-
|
|
120
|
+
// Dynamic favicon
|
|
121
|
+
const { setFavicon } = useFavicon()
|
|
97
122
|
|
|
98
|
-
|
|
99
|
-
|
|
123
|
+
// Scroll shadows
|
|
124
|
+
const { shadowTop, shadowBottom } = useScrollShadows(containerRef)
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
## 🎯 Design Tokens
|
|
128
|
+
|
|
129
|
+
All components use CSS custom properties (design tokens):
|
|
130
|
+
|
|
131
|
+
```css
|
|
132
|
+
.my-component {
|
|
133
|
+
/* Colors */
|
|
134
|
+
background: var(--utopia-color-surface);
|
|
135
|
+
color: var(--utopia-color-text-primary);
|
|
136
|
+
|
|
137
|
+
/* Spacing */
|
|
138
|
+
padding: var(--utopia-space-md);
|
|
139
|
+
margin: var(--utopia-space-lg);
|
|
140
|
+
|
|
141
|
+
/* Typography */
|
|
142
|
+
font-family: var(--utopia-font-family);
|
|
143
|
+
font-size: var(--utopia-font-size-base);
|
|
144
|
+
|
|
145
|
+
/* Borders */
|
|
146
|
+
border-radius: var(--utopia-radius-md);
|
|
147
|
+
border: 1px solid var(--utopia-color-border);
|
|
148
|
+
}
|
|
100
149
|
```
|
|
101
150
|
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
151
|
+
## 🌈 Theme Switching
|
|
152
|
+
|
|
153
|
+
```vue
|
|
154
|
+
<template>
|
|
155
|
+
<div>
|
|
156
|
+
<ThemeProvider :theme="currentTheme">
|
|
157
|
+
<Button @click="toggleTheme">
|
|
158
|
+
Switch to {{ isDark ? 'Light' : 'Dark' }} Mode
|
|
159
|
+
</Button>
|
|
160
|
+
<YourApp />
|
|
161
|
+
</ThemeProvider>
|
|
162
|
+
</div>
|
|
163
|
+
</template>
|
|
164
|
+
|
|
165
|
+
<script setup lang="ts">
|
|
166
|
+
import { ref, computed } from 'vue'
|
|
167
|
+
import {
|
|
168
|
+
ThemeProvider,
|
|
169
|
+
clubEmployesLight,
|
|
170
|
+
clubEmployesDark
|
|
171
|
+
} from '@club-employes/utopia'
|
|
172
|
+
|
|
173
|
+
const isDark = ref(false)
|
|
174
|
+
const currentTheme = computed(() =>
|
|
175
|
+
isDark.value ? clubEmployesDark : clubEmployesLight
|
|
176
|
+
)
|
|
177
|
+
|
|
178
|
+
const toggleTheme = () => {
|
|
179
|
+
isDark.value = !isDark.value
|
|
121
180
|
}
|
|
181
|
+
</script>
|
|
122
182
|
```
|
|
123
183
|
|
|
124
|
-
##
|
|
184
|
+
## 📦 Package Exports
|
|
125
185
|
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
186
|
+
```javascript
|
|
187
|
+
// Main export
|
|
188
|
+
import { Button, Icon, ThemeProvider } from '@club-employes/utopia'
|
|
129
189
|
|
|
130
|
-
|
|
190
|
+
// Styles
|
|
191
|
+
import '@club-employes/utopia/styles'
|
|
131
192
|
|
|
132
|
-
|
|
193
|
+
// Specific theme tokens
|
|
194
|
+
import '@club-employes/utopia/tokens/club-employes/light'
|
|
195
|
+
import '@club-employes/utopia/tokens/club-employes/dark'
|
|
196
|
+
import '@club-employes/utopia/tokens/gifteo/light'
|
|
197
|
+
import '@club-employes/utopia/tokens/gifteo/dark'
|
|
133
198
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
199
|
+
// Icons list (JSON)
|
|
200
|
+
import iconsList from '@club-employes/utopia/icons'
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
## 🏗️ Advanced Usage
|
|
204
|
+
|
|
205
|
+
### Custom Theme Configuration
|
|
206
|
+
|
|
207
|
+
```vue
|
|
208
|
+
<script setup lang="ts">
|
|
209
|
+
import { ThemeProvider } from '@club-employes/utopia'
|
|
210
|
+
|
|
211
|
+
const customTheme = {
|
|
212
|
+
colors: {
|
|
213
|
+
primary: '#your-brand-color',
|
|
214
|
+
secondary: '#your-secondary-color'
|
|
215
|
+
},
|
|
216
|
+
// ... other theme properties
|
|
138
217
|
}
|
|
218
|
+
</script>
|
|
139
219
|
```
|
|
140
220
|
|
|
221
|
+
### Tree Shaking
|
|
222
|
+
|
|
223
|
+
```javascript
|
|
224
|
+
// Import only what you need
|
|
225
|
+
import { Button } from '@club-employes/utopia/components/Button'
|
|
226
|
+
import { Icon } from '@club-employes/utopia/components/Icon'
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
## 📱 Responsive Design
|
|
230
|
+
|
|
231
|
+
Components are mobile-first and responsive by default:
|
|
232
|
+
|
|
233
|
+
```vue
|
|
234
|
+
<template>
|
|
235
|
+
<Button
|
|
236
|
+
size="small" <!-- Mobile -->
|
|
237
|
+
:size-md="'medium'" <!-- Tablet -->
|
|
238
|
+
:size-lg="'large'" <!-- Desktop -->
|
|
239
|
+
>
|
|
240
|
+
Responsive Button
|
|
241
|
+
</Button>
|
|
242
|
+
</template>
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
## ♿ Accessibility
|
|
246
|
+
|
|
247
|
+
All components follow WCAG 2.1 AA guidelines:
|
|
248
|
+
|
|
249
|
+
- ✅ Keyboard navigation
|
|
250
|
+
- ✅ Screen reader support
|
|
251
|
+
- ✅ High contrast modes
|
|
252
|
+
- ✅ Focus management
|
|
253
|
+
- ✅ ARIA attributes
|
|
254
|
+
|
|
255
|
+
## 🔧 TypeScript Support
|
|
256
|
+
|
|
257
|
+
Full TypeScript definitions included:
|
|
258
|
+
|
|
141
259
|
```typescript
|
|
142
|
-
|
|
143
|
-
import { clubEmployesLight } from '@clubemployes/theme-club-employes'
|
|
260
|
+
import type { ButtonProps, IconProps, ThemeConfig } from '@club-employes/utopia'
|
|
144
261
|
|
|
145
|
-
|
|
146
|
-
|
|
262
|
+
const buttonProps: ButtonProps = {
|
|
263
|
+
variant: 'primary',
|
|
264
|
+
size: 'medium',
|
|
265
|
+
disabled: false
|
|
266
|
+
}
|
|
147
267
|
```
|
|
148
268
|
|
|
149
|
-
##
|
|
269
|
+
## 📊 Bundle Size
|
|
270
|
+
|
|
271
|
+
- **Full package**: ~150KB (minified + gzipped)
|
|
272
|
+
- **Single component**: ~5-15KB (tree-shaken)
|
|
273
|
+
- **Tokens only**: ~10KB (CSS variables)
|
|
274
|
+
|
|
275
|
+
## 🌐 Browser Support
|
|
276
|
+
|
|
277
|
+
- ✅ Chrome 90+
|
|
278
|
+
- ✅ Firefox 88+
|
|
279
|
+
- ✅ Safari 14+
|
|
280
|
+
- ✅ Edge 90+
|
|
281
|
+
|
|
282
|
+
## 📚 Documentation & Resources
|
|
283
|
+
|
|
284
|
+
- 📖 **[Complete Documentation](https://ds-utopia.vercel.app/)** - Interactive examples and guides
|
|
285
|
+
- 🎨 **[Storybook](https://main--673cf2b1e9d0b7c5f2b7b7e7.chromatic.com/)** - Component stories and visual tests
|
|
286
|
+
- 🐙 **[GitHub Repository](https://github.com/club-employes/ds)** - Source code and issues
|
|
287
|
+
- 📦 **[NPM Package](https://www.npmjs.com/package/@club-employes/utopia)** - Package details
|
|
150
288
|
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
289
|
+
## 🤝 Contributing
|
|
290
|
+
|
|
291
|
+
We welcome contributions! Please see our [Contributing Guide](https://github.com/club-employes/ds/blob/main/CONTRIBUTING.md).
|
|
292
|
+
|
|
293
|
+
1. Fork the repository
|
|
294
|
+
2. Create a feature branch
|
|
295
|
+
3. Make your changes
|
|
296
|
+
4. Add tests and documentation
|
|
297
|
+
5. Submit a pull request
|
|
298
|
+
|
|
299
|
+
## 📄 License
|
|
300
|
+
|
|
301
|
+
MIT © [Club Employés](https://github.com/club-employes)
|
|
155
302
|
|
|
156
303
|
---
|
|
157
304
|
|
|
158
|
-
|
|
305
|
+
<div align="center">
|
|
306
|
+
|
|
307
|
+
**Made with ❤️ by the Club Employés team**
|
|
308
|
+
|
|
309
|
+
[Website](https://ds-utopia.vercel.app/) • [GitHub](https://github.com/club-employes/ds) • [NPM](https://www.npmjs.com/package/@club-employes/utopia)
|
|
310
|
+
|
|
311
|
+
</div>
|
package/dist/icons-list.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -32,7 +32,10 @@ export interface LogoProps {
|
|
|
32
32
|
|
|
33
33
|
export interface CardProps {
|
|
34
34
|
variant?: 'default' | 'elevated' | 'outlined'
|
|
35
|
-
|
|
35
|
+
size?: 'small' | 'medium' | 'large'
|
|
36
|
+
disabled?: boolean
|
|
37
|
+
interactive?: boolean
|
|
38
|
+
active?: boolean
|
|
36
39
|
}
|
|
37
40
|
|
|
38
41
|
export interface SearchBoxProps {
|
|
@@ -68,6 +71,69 @@ export interface SwitchProps {
|
|
|
68
71
|
label?: string
|
|
69
72
|
}
|
|
70
73
|
|
|
74
|
+
export interface ChipProps {
|
|
75
|
+
variant?: 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'danger'
|
|
76
|
+
size?: 'small' | 'medium' | 'large'
|
|
77
|
+
disabled?: boolean
|
|
78
|
+
removable?: boolean
|
|
79
|
+
leftIcon?: string
|
|
80
|
+
actionable?: boolean
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export interface InputTextProps {
|
|
84
|
+
modelValue?: string
|
|
85
|
+
label?: string
|
|
86
|
+
placeholder?: string
|
|
87
|
+
type?: 'text' | 'email' | 'password' | 'number' | 'tel' | 'url'
|
|
88
|
+
state?: 'default' | 'error' | 'valid' | 'incomplete' | 'completed'
|
|
89
|
+
size?: 'small' | 'medium' | 'large'
|
|
90
|
+
disabled?: boolean
|
|
91
|
+
readonly?: boolean
|
|
92
|
+
icon?: string
|
|
93
|
+
message?: string
|
|
94
|
+
required?: boolean
|
|
95
|
+
min?: number
|
|
96
|
+
max?: number
|
|
97
|
+
step?: number
|
|
98
|
+
isCode?: boolean
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
export interface DropDownOption {
|
|
102
|
+
value: string | number
|
|
103
|
+
label: string
|
|
104
|
+
disabled?: boolean
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export interface DropDownProps {
|
|
108
|
+
modelValue?: string | number | (string | number)[]
|
|
109
|
+
label?: string
|
|
110
|
+
placeholder?: string
|
|
111
|
+
options?: DropDownOption[]
|
|
112
|
+
state?: 'default' | 'error' | 'valid' | 'incomplete' | 'completed'
|
|
113
|
+
size?: 'small' | 'medium' | 'large'
|
|
114
|
+
disabled?: boolean
|
|
115
|
+
readonly?: boolean
|
|
116
|
+
multiple?: boolean
|
|
117
|
+
searchable?: boolean
|
|
118
|
+
clearable?: boolean
|
|
119
|
+
message?: string
|
|
120
|
+
required?: boolean
|
|
121
|
+
maxHeight?: string
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
export interface InputCodeProps {
|
|
125
|
+
modelValue?: string
|
|
126
|
+
label?: string
|
|
127
|
+
length?: number
|
|
128
|
+
type?: 'text' | 'number'
|
|
129
|
+
size?: 'small' | 'medium' | 'large'
|
|
130
|
+
state?: 'default' | 'error' | 'valid'
|
|
131
|
+
disabled?: boolean
|
|
132
|
+
message?: string
|
|
133
|
+
required?: boolean
|
|
134
|
+
autoFocus?: boolean
|
|
135
|
+
}
|
|
136
|
+
|
|
71
137
|
export interface DataTableProps {
|
|
72
138
|
columns: Array<{
|
|
73
139
|
key: string
|
|
@@ -101,6 +167,7 @@ export declare const Badge: DefineComponent<BadgeProps>
|
|
|
101
167
|
export declare const Button: DefineComponent<ButtonProps>
|
|
102
168
|
export declare const Card: DefineComponent<CardProps>
|
|
103
169
|
export declare const Checkbox: DefineComponent<CheckboxProps>
|
|
170
|
+
export declare const Chip: DefineComponent<ChipProps>
|
|
104
171
|
export declare const Header: DefineComponent<{}>
|
|
105
172
|
export declare const Icon: DefineComponent<IconProps>
|
|
106
173
|
export declare const Input: DefineComponent<InputProps>
|
|
@@ -110,6 +177,9 @@ export declare const Menu: DefineComponent<{}>
|
|
|
110
177
|
export declare const NavItem: DefineComponent<{}>
|
|
111
178
|
export declare const SearchBox: DefineComponent<SearchBoxProps>
|
|
112
179
|
export declare const Switch: DefineComponent<SwitchProps>
|
|
180
|
+
export declare const InputText: DefineComponent<InputTextProps>
|
|
181
|
+
export declare const DropDown: DefineComponent<DropDownProps>
|
|
182
|
+
export declare const InputCode: DefineComponent<InputCodeProps>
|
|
113
183
|
export declare const DataTable: DefineComponent<DataTableProps>
|
|
114
184
|
export declare const ThemeProvider: DefineComponent<ThemeProviderProps>
|
|
115
185
|
export declare const DefaultLayout: DefineComponent<{}>
|