@club-employes/utopia 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 +158 -0
- package/dist/index.d.ts +51 -0
- package/dist/index.js +1004 -0
- package/dist/utopia.css +1 -0
- package/package.json +48 -0
package/README.md
ADDED
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
# 🎨 Utopia Design System
|
|
2
|
+
|
|
3
|
+
Système de design multi-marques basé sur des tokens avec Style Dictionary.
|
|
4
|
+
|
|
5
|
+
## 🏗️ Architecture
|
|
6
|
+
|
|
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
|
+
```
|
|
19
|
+
|
|
20
|
+
## 🚀 Utilisation
|
|
21
|
+
|
|
22
|
+
### 1. Installation
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
npm install @clubemployes/design-system
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### 2. Utilisation dans une app Vue
|
|
29
|
+
|
|
30
|
+
```vue
|
|
31
|
+
<template>
|
|
32
|
+
<ThemeProvider :theme="clubEmployesLight">
|
|
33
|
+
<YourApp />
|
|
34
|
+
</ThemeProvider>
|
|
35
|
+
</template>
|
|
36
|
+
|
|
37
|
+
<script setup>
|
|
38
|
+
import { ThemeProvider } from '@clubemployes/design-system'
|
|
39
|
+
import { clubEmployesLight } from '@clubemployes/theme-club-employes'
|
|
40
|
+
</script>
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### 3. Utilisation des CSS variables
|
|
44
|
+
|
|
45
|
+
```css
|
|
46
|
+
.button {
|
|
47
|
+
background-color: var(--color-blue-500);
|
|
48
|
+
padding: var(--spacing-4);
|
|
49
|
+
border-radius: var(--border-radius-base);
|
|
50
|
+
font-size: var(--font-size-base);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.product-card {
|
|
54
|
+
background-color: var(--color-product-exclusive-sale-primary);
|
|
55
|
+
color: white;
|
|
56
|
+
}
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## 🎯 Tokens disponibles
|
|
60
|
+
|
|
61
|
+
### Couleurs
|
|
62
|
+
|
|
63
|
+
#### Palette principale (Bleu)
|
|
64
|
+
- `--color-blue-25` Ă `--color-blue-950`
|
|
65
|
+
|
|
66
|
+
#### Couleurs produits
|
|
67
|
+
- `--color-product-exclusive-sale-primary` - Vente exclusive
|
|
68
|
+
- `--color-product-promo-code-primary` - Code promo
|
|
69
|
+
- `--color-product-physical-product-primary` - Produit physique
|
|
70
|
+
- `--color-product-e-ticket-primary` - E-billet
|
|
71
|
+
- `--color-product-member-card-primary` - Carte membre
|
|
72
|
+
- `--color-product-gift-card-primary` - Carte cadeau
|
|
73
|
+
- `--color-product-e-check-primary` - E-chèque
|
|
74
|
+
|
|
75
|
+
#### Signalétique
|
|
76
|
+
- `--color-semantic-attention-primary` - Erreur/Attention
|
|
77
|
+
- `--color-semantic-success-primary` - Succès
|
|
78
|
+
|
|
79
|
+
### Espacement
|
|
80
|
+
- `--spacing-0` (0px) Ă `--spacing-32` (128px)
|
|
81
|
+
|
|
82
|
+
### Typographie
|
|
83
|
+
- Tailles: `--font-size-xs` Ă `--font-size-5xl`
|
|
84
|
+
- Poids: `--font-weight-light` Ă `--font-weight-bold`
|
|
85
|
+
- Familles: `--font-family-sans`, `--font-family-mono`
|
|
86
|
+
|
|
87
|
+
### Bordures
|
|
88
|
+
- Rayons: `--border-radius-none` Ă `--border-radius-full`
|
|
89
|
+
- Largeurs: `--border-width-0` Ă `--border-width-4`
|
|
90
|
+
|
|
91
|
+
### Ombres
|
|
92
|
+
- `--shadow-none` Ă `--shadow-xl`
|
|
93
|
+
|
|
94
|
+
## 🔧 Développement
|
|
95
|
+
|
|
96
|
+
### Build des tokens
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
npm run build:tokens
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
### Ajouter une nouvelle marque
|
|
103
|
+
|
|
104
|
+
1. Créer `src/tokens/brands/nouvelle-marque/colors.json`
|
|
105
|
+
2. Créer les thèmes light/dark dans `src/tokens/themes/`
|
|
106
|
+
3. Mettre Ă jour `style-dictionary.config.js`
|
|
107
|
+
4. Créer le package thème dans `src/themes/nouvelle-marque/`
|
|
108
|
+
|
|
109
|
+
### Structure d'un token de couleur
|
|
110
|
+
|
|
111
|
+
```json
|
|
112
|
+
{
|
|
113
|
+
"color": {
|
|
114
|
+
"primary": {
|
|
115
|
+
"500": {
|
|
116
|
+
"value": "#3B82F6",
|
|
117
|
+
"type": "color"
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
## �� Packages
|
|
125
|
+
|
|
126
|
+
- `@clubemployes/design-system` - Composants et ThemeProvider
|
|
127
|
+
- `@clubemployes/theme-club-employes` - Thème Club Employés
|
|
128
|
+
- `@clubemployes/theme-ebank` - Thème eBank (à venir)
|
|
129
|
+
|
|
130
|
+
## 🎨 Variables universelles
|
|
131
|
+
|
|
132
|
+
Toutes les apps utilisent les **mêmes noms de variables CSS**. Seules les valeurs changent selon le thème importé.
|
|
133
|
+
|
|
134
|
+
```css
|
|
135
|
+
/* Dans toutes les apps */
|
|
136
|
+
.button {
|
|
137
|
+
background: var(--color-primary-500); /* MĂŞme variable partout */
|
|
138
|
+
}
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
```typescript
|
|
142
|
+
// App Club Employés
|
|
143
|
+
import { clubEmployesLight } from '@clubemployes/theme-club-employes'
|
|
144
|
+
|
|
145
|
+
// App eBank
|
|
146
|
+
import { ebankLight } from '@clubemployes/theme-ebank'
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
## 🔄 Workflow
|
|
150
|
+
|
|
151
|
+
1. **Designer** → Met à jour les tokens JSON
|
|
152
|
+
2. **Build** → `npm run build:tokens` génère les CSS
|
|
153
|
+
3. **Developer** → Importe le bon thème
|
|
154
|
+
4. **Deploy** → Changement de thème = changement d'import
|
|
155
|
+
|
|
156
|
+
---
|
|
157
|
+
|
|
158
|
+
Made with ❤️ by Club Employés
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { DefineComponent } from 'vue'
|
|
2
|
+
|
|
3
|
+
// Types
|
|
4
|
+
export type ButtonVariant = 'primary' | 'secondary' | 'outline' | 'ghost' | 'danger'
|
|
5
|
+
export type ButtonSize = 'small' | 'medium' | 'large'
|
|
6
|
+
export type IconName = string
|
|
7
|
+
export type IconSize = 'small' | 'medium' | 'large'
|
|
8
|
+
export type IconColor = 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'neutral' | 'current'
|
|
9
|
+
|
|
10
|
+
// Theme types
|
|
11
|
+
export interface ThemeConfig {
|
|
12
|
+
name: string
|
|
13
|
+
mode?: 'light' | 'dark'
|
|
14
|
+
cssFile?: string
|
|
15
|
+
logo?: string
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export interface ThemeProviderProps {
|
|
19
|
+
theme: ThemeConfig
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export type ThemeMode = 'light' | 'dark'
|
|
23
|
+
|
|
24
|
+
// Component types
|
|
25
|
+
export interface ButtonProps {
|
|
26
|
+
variant?: ButtonVariant
|
|
27
|
+
size?: ButtonSize
|
|
28
|
+
disabled?: boolean
|
|
29
|
+
loading?: boolean
|
|
30
|
+
block?: boolean
|
|
31
|
+
ariaLabel?: string
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface IconProps {
|
|
35
|
+
name: IconName
|
|
36
|
+
size?: IconSize
|
|
37
|
+
color?: IconColor
|
|
38
|
+
alt?: string
|
|
39
|
+
class?: string
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// Components
|
|
43
|
+
export declare const Button: DefineComponent<ButtonProps>
|
|
44
|
+
export declare const Icon: DefineComponent<IconProps>
|
|
45
|
+
export declare const ThemeProvider: DefineComponent<ThemeProviderProps>
|
|
46
|
+
|
|
47
|
+
// Themes
|
|
48
|
+
export declare const clubEmployesLight: ThemeConfig
|
|
49
|
+
export declare const clubEmployesDark: ThemeConfig
|
|
50
|
+
export declare const gifteoLight: ThemeConfig
|
|
51
|
+
export declare const gifteoDark: ThemeConfig
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,1004 @@
|
|
|
1
|
+
import { defineComponent as f, computed as v, provide as h, onMounted as S, onBeforeUnmount as k, watch as C, createElementBlock as i, openBlock as d, renderSlot as p, mergeProps as A, createCommentVNode as I, createElementVNode as l, normalizeClass as G, ref as b, normalizeStyle as B } from "vue";
|
|
2
|
+
const F = ["data-theme"], T = /* @__PURE__ */ f({
|
|
3
|
+
__name: "ThemeProvider",
|
|
4
|
+
props: {
|
|
5
|
+
theme: {}
|
|
6
|
+
},
|
|
7
|
+
setup(r) {
|
|
8
|
+
const n = r, o = v(() => n.theme.name);
|
|
9
|
+
let c = null;
|
|
10
|
+
const t = () => {
|
|
11
|
+
c && document.head.removeChild(c), c = document.createElement("style"), c.setAttribute("data-theme-provider", o.value), c.textContent = n.theme.cssContent, document.head.appendChild(c);
|
|
12
|
+
}, g = () => {
|
|
13
|
+
c && document.head.contains(c) && (document.head.removeChild(c), c = null);
|
|
14
|
+
};
|
|
15
|
+
return h("theme", {
|
|
16
|
+
name: o,
|
|
17
|
+
config: n.theme
|
|
18
|
+
}), S(() => {
|
|
19
|
+
t();
|
|
20
|
+
}), k(() => {
|
|
21
|
+
g();
|
|
22
|
+
}), C(() => n.theme, () => {
|
|
23
|
+
t();
|
|
24
|
+
}, { deep: !0 }), (s, e) => (d(), i("div", {
|
|
25
|
+
class: "theme-provider",
|
|
26
|
+
"data-theme": o.value
|
|
27
|
+
}, [
|
|
28
|
+
p(s.$slots, "default", {}, void 0, !0)
|
|
29
|
+
], 8, F));
|
|
30
|
+
}
|
|
31
|
+
}), m = (r, n) => {
|
|
32
|
+
const o = r.__vccOpts || r;
|
|
33
|
+
for (const [c, t] of n)
|
|
34
|
+
o[c] = t;
|
|
35
|
+
return o;
|
|
36
|
+
}, E = /* @__PURE__ */ m(T, [["__scopeId", "data-v-0be50703"]]), D = ["disabled", "aria-disabled", "aria-label"], y = {
|
|
37
|
+
key: 0,
|
|
38
|
+
class: "button-spinner",
|
|
39
|
+
"aria-hidden": "true"
|
|
40
|
+
}, x = {
|
|
41
|
+
key: 0,
|
|
42
|
+
class: "button-icon button-icon--before"
|
|
43
|
+
}, P = { class: "button-text" }, L = {
|
|
44
|
+
key: 1,
|
|
45
|
+
class: "button-icon button-icon--after"
|
|
46
|
+
}, w = /* @__PURE__ */ f({
|
|
47
|
+
__name: "Button",
|
|
48
|
+
props: {
|
|
49
|
+
variant: { default: "primary" },
|
|
50
|
+
size: { default: "medium" },
|
|
51
|
+
disabled: { type: Boolean, default: !1 },
|
|
52
|
+
loading: { type: Boolean, default: !1 },
|
|
53
|
+
block: { type: Boolean, default: !1 },
|
|
54
|
+
ariaLabel: {}
|
|
55
|
+
},
|
|
56
|
+
emits: ["click"],
|
|
57
|
+
setup(r, { emit: n }) {
|
|
58
|
+
const o = r, c = n, t = v(() => {
|
|
59
|
+
const s = {
|
|
60
|
+
small: "sm",
|
|
61
|
+
medium: "md",
|
|
62
|
+
large: "lg"
|
|
63
|
+
};
|
|
64
|
+
return [
|
|
65
|
+
"button",
|
|
66
|
+
`button--${o.variant}`,
|
|
67
|
+
`button--${s[o.size]}`,
|
|
68
|
+
{
|
|
69
|
+
"button--disabled": o.disabled,
|
|
70
|
+
"button--loading": o.loading,
|
|
71
|
+
"button--block": o.block
|
|
72
|
+
}
|
|
73
|
+
];
|
|
74
|
+
}), g = (s) => {
|
|
75
|
+
!o.disabled && !o.loading && c("click", s);
|
|
76
|
+
};
|
|
77
|
+
return (s, e) => (d(), i("button", A({
|
|
78
|
+
class: t.value,
|
|
79
|
+
disabled: s.disabled || s.loading,
|
|
80
|
+
"aria-disabled": s.disabled || s.loading,
|
|
81
|
+
"aria-label": s.ariaLabel
|
|
82
|
+
}, s.$attrs, { onClick: g }), [
|
|
83
|
+
s.loading ? (d(), i("span", y, e[0] || (e[0] = [
|
|
84
|
+
l("svg", {
|
|
85
|
+
class: "spinner-icon",
|
|
86
|
+
viewBox: "0 0 24 24"
|
|
87
|
+
}, [
|
|
88
|
+
l("circle", {
|
|
89
|
+
class: "spinner-path",
|
|
90
|
+
cx: "12",
|
|
91
|
+
cy: "12",
|
|
92
|
+
r: "10",
|
|
93
|
+
fill: "none",
|
|
94
|
+
stroke: "currentColor",
|
|
95
|
+
"stroke-width": "2",
|
|
96
|
+
"stroke-linecap": "round",
|
|
97
|
+
"stroke-dasharray": "31.416",
|
|
98
|
+
"stroke-dashoffset": "31.416"
|
|
99
|
+
}, [
|
|
100
|
+
l("animate", {
|
|
101
|
+
attributeName: "stroke-dasharray",
|
|
102
|
+
dur: "2s",
|
|
103
|
+
values: "0 31.416;15.708 15.708;0 31.416",
|
|
104
|
+
repeatCount: "indefinite"
|
|
105
|
+
}),
|
|
106
|
+
l("animate", {
|
|
107
|
+
attributeName: "stroke-dashoffset",
|
|
108
|
+
dur: "2s",
|
|
109
|
+
values: "0;-15.708;-31.416",
|
|
110
|
+
repeatCount: "indefinite"
|
|
111
|
+
})
|
|
112
|
+
])
|
|
113
|
+
], -1)
|
|
114
|
+
]))) : I("", !0),
|
|
115
|
+
l("span", {
|
|
116
|
+
class: G(["button-content", { "button-content--hidden": s.loading }])
|
|
117
|
+
}, [
|
|
118
|
+
s.$slots.icon ? (d(), i("span", x, [
|
|
119
|
+
p(s.$slots, "icon", {}, void 0, !0)
|
|
120
|
+
])) : I("", !0),
|
|
121
|
+
l("span", P, [
|
|
122
|
+
p(s.$slots, "default", {}, void 0, !0)
|
|
123
|
+
]),
|
|
124
|
+
s.$slots.iconAfter ? (d(), i("span", L, [
|
|
125
|
+
p(s.$slots, "iconAfter", {}, void 0, !0)
|
|
126
|
+
])) : I("", !0)
|
|
127
|
+
], 2)
|
|
128
|
+
], 16, D));
|
|
129
|
+
}
|
|
130
|
+
}), U = /* @__PURE__ */ m(w, [["__scopeId", "data-v-c5f4114b"]]), R = ["aria-label", "innerHTML"], M = /* @__PURE__ */ f({
|
|
131
|
+
__name: "Icon",
|
|
132
|
+
props: {
|
|
133
|
+
name: {},
|
|
134
|
+
size: { default: "medium" },
|
|
135
|
+
color: { default: "current" },
|
|
136
|
+
alt: {},
|
|
137
|
+
class: {}
|
|
138
|
+
},
|
|
139
|
+
setup(r) {
|
|
140
|
+
const n = r, o = b(""), c = v(() => [
|
|
141
|
+
"icon",
|
|
142
|
+
`icon--${{
|
|
143
|
+
small: "sm",
|
|
144
|
+
medium: "md",
|
|
145
|
+
large: "lg"
|
|
146
|
+
}[n.size]}`,
|
|
147
|
+
`icon--${n.color}`,
|
|
148
|
+
n.class
|
|
149
|
+
].filter(Boolean)), t = v(() => ({
|
|
150
|
+
color: {
|
|
151
|
+
primary: "var(--theme-colors-brand-primary-600)",
|
|
152
|
+
secondary: "var(--theme-colors-brand-secondary-600)",
|
|
153
|
+
success: "var(--theme-colors-common-succeed-600)",
|
|
154
|
+
warning: "var(--theme-colors-common-warning-600)",
|
|
155
|
+
danger: "var(--theme-colors-common-danger-600)",
|
|
156
|
+
neutral: "var(--theme-colors-common-slate-600)",
|
|
157
|
+
current: "currentColor"
|
|
158
|
+
}[n.color]
|
|
159
|
+
})), g = async (e) => {
|
|
160
|
+
try {
|
|
161
|
+
const a = `/src/assets/icons-processed/${e}.svg`, u = await fetch(a);
|
|
162
|
+
if (!u.ok)
|
|
163
|
+
throw new Error(`Icon not found: ${e}`);
|
|
164
|
+
const _ = (await u.text()).replace(/width="[^"]*"/g, "").replace(/height="[^"]*"/g, "").replace(/<svg([^>]*)>/g, '<svg$1 width="100%" height="100%">');
|
|
165
|
+
o.value = _;
|
|
166
|
+
} catch (a) {
|
|
167
|
+
console.error(`Failed to load icon: ${e}`, a), o.value = `
|
|
168
|
+
<svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
169
|
+
<circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="2"/>
|
|
170
|
+
<path d="M12 8v4" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
171
|
+
<path d="M12 16h.01" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
172
|
+
</svg>
|
|
173
|
+
`;
|
|
174
|
+
}
|
|
175
|
+
}, s = (e) => e.includes("/") && e.split("/").pop() || e;
|
|
176
|
+
return C(() => n.name, (e) => {
|
|
177
|
+
const a = s(e);
|
|
178
|
+
g(a);
|
|
179
|
+
}, { immediate: !0 }), (e, a) => (d(), i("span", {
|
|
180
|
+
class: G(c.value),
|
|
181
|
+
style: B(t.value),
|
|
182
|
+
"aria-label": e.alt || e.name,
|
|
183
|
+
role: "img",
|
|
184
|
+
innerHTML: o.value
|
|
185
|
+
}, null, 14, R));
|
|
186
|
+
}
|
|
187
|
+
}), z = /* @__PURE__ */ m(M, [["__scopeId", "data-v-8bcf9243"]]), H = {
|
|
188
|
+
name: "club-employes-light",
|
|
189
|
+
mode: "light",
|
|
190
|
+
cssFile: "/src/tokens/generated/club-employes/light.css"
|
|
191
|
+
}, O = {
|
|
192
|
+
name: "club-employes-dark",
|
|
193
|
+
mode: "dark",
|
|
194
|
+
cssFile: "/src/tokens/generated/club-employes/dark.css"
|
|
195
|
+
}, $ = {
|
|
196
|
+
name: "gifteo-light",
|
|
197
|
+
mode: "light",
|
|
198
|
+
cssFile: "/src/tokens/generated/gifteo/light.css"
|
|
199
|
+
}, V = {
|
|
200
|
+
name: "gifteo-dark",
|
|
201
|
+
mode: "dark",
|
|
202
|
+
cssFile: "/src/tokens/generated/gifteo/dark.css"
|
|
203
|
+
}, q = "/src/assets/logos/club-employes/logo.svg", K = "/src/assets/logos/club-employes/logo-small.svg", X = "/src/assets/logos/club-employes/logo-white.svg", j = "/src/assets/logos/club-employes/logo-small-white.svg", J = "/src/assets/logos/gifteo/logo.svg", Q = "/src/assets/logos/gifteo/logo-small.svg", Y = "/src/assets/logos/gifteo/logo-white.svg", Z = "/src/assets/logos/gifteo/logo-small-white.svg", ss = "0px", es = "1px", os = "2px", cs = "4px", ns = "0px", rs = "4px", ts = "8px", as = "12px", ls = "16px", is = "24px", ds = "9999px", gs = "#020618", ps = "#0f172b", vs = "#1d293d", Is = "#314158", fs = "#45556c", ms = "#62748e", us = "#90a1b9", Cs = "#cad5e2", Gs = "#e2e8f0", _s = "#f1f5f9", hs = "#f8fafc", Ss = "#002c22", ks = "#004f3b", As = "#006045", bs = "#007a55", Bs = "#0a9c55", Fs = "#0baa60", Ts = "#00d492", Ds = "#5ee9b5", ys = "#a4f4cf", xs = "#d0fae5", Ps = "#e2fcf0", Ls = "#441306", ws = "#7e2a0c", Rs = "#9f2d00", Ms = "#ca3500", Ws = "#f54900", Ns = "#f78e1f", Es = "#ff8904", Us = "#ffcc7b", zs = "#ffd6a8", Hs = "#ffedd4", Os = "#fff5db", $s = "#460809", Vs = "#82181a", qs = "#9f0712", Ks = "#c10007", Xs = "#cf2a2a", js = "#f03d3d", Js = "#ff6467", Qs = "#ffa2a2", Ys = "#ffc9c9", Zs = "#ffe2e2", se = "#ffefe8", ee = "#f8fafc", oe = "#f1f5f9", ce = "#e2e8f0", ne = "#cad5e2", re = "#90a1b9", te = "#62748e", ae = "#45556c", le = "#314158", ie = "#1d293d", de = "#0f172b", ge = "#020618", pe = "#fafaf9", ve = "#f5f5f4", Ie = "#e7e5e4", fe = "#d6d3d1", me = "#a6a09b", ue = "#79716b", Ce = "#57534d", Ge = "#44403b", _e = "#292524", he = "#1c1917", Se = "#0c0a09", ke = "#e2fcf0", Ae = "#d0fae5", be = "#a4f4cf", Be = "#5ee9b5", Fe = "#00d492", Te = "#0baa60", De = "#0a9c55", ye = "#007a55", xe = "#006045", Pe = "#004f3b", Le = "#002c22", we = "#fff5db", Re = "#ffedd4", Me = "#ffd6a8", We = "#ffcc7b", Ne = "#ff8904", Ee = "#f78e1f", Ue = "#f54900", ze = "#ca3500", He = "#9f2d00", Oe = "#7e2a0c", $e = "#441306", Ve = "#ffefe8", qe = "#ffe2e2", Ke = "#ffc9c9", Xe = "#ffa2a2", je = "#ff6467", Je = "#f03d3d", Qe = "#cf2a2a", Ye = "#c10007", Ze = "#9f0712", so = "#82181a", eo = "#460809", oo = "#f8faff", co = "#eff6ff", no = "#dbeafe", ro = "#bfdbfe", to = "#93c5fd", ao = "#60a5fa", lo = "#3b82f6", io = "#2563eb", go = "#1d4ed8", po = "#1e40af", vo = "#1e3a8a", Io = "#172554", fo = "#ff6b35", mo = "#fff2ed", uo = "#e91e63", Co = "#fdf2f8", Go = "#3b82f6", _o = "#eff6ff", ho = "#f59e0b", So = "#fffbeb", ko = "#8b5cf6", Ao = "#f5f3ff", bo = "#06b6d4", Bo = "#f0fdff", Fo = "#7c3aed", To = "#f5f3ff", Do = "#cf2a2a", yo = "#ff03d3", xo = "#ffefe8", Po = "#0a9c56", Lo = "#0ba460", wo = "#e2fcf0", Ro = "#f9fafb", Mo = "#f3f4f6", Wo = "#e5e7eb", No = "#d1d5db", Eo = "#9ca3af", Uo = "#6b7280", zo = "#4b5563", Ho = "#374151", Oo = "#1f2937", $o = "#111827", Vo = "#ffffff", qo = "#000000", Ko = "#fafbfe", Xo = "#f6f8fe", jo = "#f2f5fe", Jo = "#e9eefe", Qo = "#c9d6fb", Yo = "#93aef8", Zo = "#275cf1", sc = "#FAFAFЕ", ec = "#f5f6f8", oc = "#f0f1f4", cc = "#e7e8ed", nc = "#c2c6d1", rc = "#858ea4", tc = "#0b1c48", ac = "#fffcfa", lc = "#fff9f6", ic = "#fff6f2", dc = "#fef0e9", gc = "#fcd8c8", pc = "#f9b191", vc = "#f36222", Ic = "/src/assets/icons-processed/11.svg", fc = "/src/assets/icons-processed/3d_box.svg", mc = "/src/assets/icons-processed/Add_round.svg", uc = "/src/assets/icons-processed/Add_round_duotone.svg", Cc = "/src/assets/icons-processed/Add_round_fill.svg", Gc = "/src/assets/icons-processed/Alarm.svg", _c = "/src/assets/icons-processed/Angry.svg", hc = "/src/assets/icons-processed/Archive_alt_big.svg", Sc = "/src/assets/icons-processed/Archive_alt_small.svg", kc = "/src/assets/icons-processed/Archive_alt_small_add.svg", Ac = "/src/assets/icons-processed/Archive_alt_small_lock.svg", bc = "/src/assets/icons-processed/Archive_alt_small_secure_light.svg", Bc = "/src/assets/icons-processed/Archive_export.svg", Fc = "/src/assets/icons-processed/Archive_import.svg", Tc = "/src/assets/icons-processed/Archive_load.svg", Dc = "/src/assets/icons-processed/Archive_plane.svg", yc = "/src/assets/icons-processed/Arhive-1.svg", xc = "/src/assets/icons-processed/Arhive.svg", Pc = "/src/assets/icons-processed/Arhive_alt_add.svg", Lc = "/src/assets/icons-processed/Arhive_alt_add_list.svg", wc = "/src/assets/icons-processed/Arhive_alt_export.svg", Rc = "/src/assets/icons-processed/Arhives_alt.svg", Mc = "/src/assets/icons-processed/Atom.svg", Wc = "/src/assets/icons-processed/Atom_alt.svg", Nc = "/src/assets/icons-processed/Back.svg", Ec = "/src/assets/icons-processed/Bag.svg", Uc = "/src/assets/icons-processed/Bag_alt.svg", zc = "/src/assets/icons-processed/Basket-1.svg", Hc = "/src/assets/icons-processed/Basket-2.svg", Oc = "/src/assets/icons-processed/Basket.svg", $c = "/src/assets/icons-processed/Basket_alt.svg", Vc = "/src/assets/icons-processed/Basket_alt_3.svg", qc = "/src/assets/icons-processed/Bed.svg", Kc = "/src/assets/icons-processed/Bell.svg", Xc = "/src/assets/icons-processed/Bell_pin.svg", jc = "/src/assets/icons-processed/Blank.svg", Jc = "/src/assets/icons-processed/Blank_alt.svg", Qc = "/src/assets/icons-processed/Blood.svg", Yc = "/src/assets/icons-processed/Blood_add.svg", Zc = "/src/assets/icons-processed/Blood_minus.svg", sn = "/src/assets/icons-processed/Book.svg", en = "/src/assets/icons-processed/Book_check.svg", on = "/src/assets/icons-processed/Book_open.svg", cn = "/src/assets/icons-processed/Book_open_alt.svg", nn = "/src/assets/icons-processed/Bookmark.svg", rn = "/src/assets/icons-processed/Box.svg", tn = "/src/assets/icons-processed/Box_alt.svg", an = "/src/assets/icons-processed/Box_open.svg", ln = "/src/assets/icons-processed/Boxes.svg", dn = "/src/assets/icons-processed/Bubble.svg", gn = "/src/assets/icons-processed/Bug.svg", pn = "/src/assets/icons-processed/CPU.svg", vn = "/src/assets/icons-processed/Cake.svg", In = "/src/assets/icons-processed/Calendar.svg", fn = "/src/assets/icons-processed/Calendar_add.svg", mn = "/src/assets/icons-processed/Calories.svg", un = "/src/assets/icons-processed/Camera.svg", Cn = "/src/assets/icons-processed/Cancel.svg", Gn = "/src/assets/icons-processed/Cancel_duotone_line.svg", _n = "/src/assets/icons-processed/Carbs.svg", hn = "/src/assets/icons-processed/Center_pick.svg", Sn = "/src/assets/icons-processed/Center_pick_alt.svg", kn = "/src/assets/icons-processed/Chart.svg", An = "/src/assets/icons-processed/Chart_alt.svg", bn = "/src/assets/icons-processed/Chart_pin.svg", Bn = "/src/assets/icons-processed/Chat.svg", Fn = "/src/assets/icons-processed/Chat_alt.svg", Tn = "/src/assets/icons-processed/Chat_alt_2.svg", Dn = "/src/assets/icons-processed/Chat_alt_3.svg", yn = "/src/assets/icons-processed/Chat_alt_add-1.svg", xn = "/src/assets/icons-processed/Chat_alt_add.svg", Pn = "/src/assets/icons-processed/Chat_plus-1.svg", Ln = "/src/assets/icons-processed/Chat_plus.svg", wn = "/src/assets/icons-processed/Chat_search.svg", Rn = "/src/assets/icons-processed/Check_ring.svg", Mn = "/src/assets/icons-processed/Checked_round.svg", Wn = "/src/assets/icons-processed/Chemistry.svg", Nn = "/src/assets/icons-processed/Chield.svg", En = "/src/assets/icons-processed/Chield_alt.svg", Un = "/src/assets/icons-processed/Chield_check.svg", zn = "/src/assets/icons-processed/Close_round.svg", Hn = "/src/assets/icons-processed/Close_round_duotone.svg", On = "/src/assets/icons-processed/Close_round_fill.svg", $n = "/src/assets/icons-processed/Cloud.svg", Vn = "/src/assets/icons-processed/Cloud_alt.svg", qn = "/src/assets/icons-processed/Collapse.svg", Kn = "/src/assets/icons-processed/Compas_mini.svg", Xn = "/src/assets/icons-processed/Compass.svg", jn = "/src/assets/icons-processed/Compass_alt.svg", Jn = "/src/assets/icons-processed/Compass_north_fill.svg", Qn = "/src/assets/icons-processed/Copy.svg", Yn = "/src/assets/icons-processed/Copy_alt.svg", Zn = "/src/assets/icons-processed/Covert.svg", sr = "/src/assets/icons-processed/Critical.svg", er = "/src/assets/icons-processed/Data_bank.svg", or = "/src/assets/icons-processed/Database.svg", cr = "/src/assets/icons-processed/Date_range.svg", nr = "/src/assets/icons-processed/Date_today.svg", rr = "/src/assets/icons-processed/Desk.svg", tr = "/src/assets/icons-processed/Desk_alt.svg", ar = "/src/assets/icons-processed/Dimond.svg", lr = "/src/assets/icons-processed/Dimond_alt.svg", ir = "/src/assets/icons-processed/Direction.svg", dr = "/src/assets/icons-processed/Direction_alt.svg", gr = "/src/assets/icons-processed/Direction_alt_2.svg", pr = "/src/assets/icons-processed/Direction_alt_3.svg", vr = "/src/assets/icons-processed/Dna.svg", Ir = "/src/assets/icons-processed/Done.svg", fr = "/src/assets/icons-processed/Done_all_alt_round.svg", mr = "/src/assets/icons-processed/Done_all_round.svg", ur = "/src/assets/icons-processed/Done_ring_round.svg", Cr = "/src/assets/icons-processed/Done_round.svg", Gr = "/src/assets/icons-processed/Dot3.svg", _r = "/src/assets/icons-processed/E-mail.svg", hr = "/src/assets/icons-processed/Expand_left.svg", Sr = "/src/assets/icons-processed/Expand_left_double.svg", kr = "/src/assets/icons-processed/Expand_left_stop.svg", Ar = "/src/assets/icons-processed/Expand_right.svg", br = "/src/assets/icons-processed/Expand_right_double.svg", Br = "/src/assets/icons-processed/Expand_right_stop.svg", Fr = "/src/assets/icons-processed/Expand_top_stop.svg", Tr = "/src/assets/icons-processed/Export.svg", Dr = "/src/assets/icons-processed/External.svg", yr = "/src/assets/icons-processed/Eye.svg", xr = "/src/assets/icons-processed/Fat.svg", Pr = "/src/assets/icons-processed/Favorite.svg", Lr = "/src/assets/icons-processed/Favorites.svg", wr = "/src/assets/icons-processed/Filter.svg", Rr = "/src/assets/icons-processed/Filter_alt-1.svg", Mr = "/src/assets/icons-processed/Filter_alt.svg", Wr = "/src/assets/icons-processed/Filter_big.svg", Nr = "/src/assets/icons-processed/Filter_big_alt.svg", Er = "/src/assets/icons-processed/Fire-1.svg", Ur = "/src/assets/icons-processed/Fire-2.svg", zr = "/src/assets/icons-processed/Fire.svg", Hr = "/src/assets/icons-processed/Flag.svg", Or = "/src/assets/icons-processed/Flag_alt.svg", $r = "/src/assets/icons-processed/Flag_finish.svg", Vr = "/src/assets/icons-processed/Flag_finish_alt.svg", qr = "/src/assets/icons-processed/Flask.svg", Kr = "/src/assets/icons-processed/Flask_alt.svg", Xr = "/src/assets/icons-processed/Folder.svg", jr = "/src/assets/icons-processed/Folder_add.svg", Jr = "/src/assets/icons-processed/Folder_alt.svg", Qr = "/src/assets/icons-processed/Folder_check.svg", Yr = "/src/assets/icons-processed/Folder_copy.svg", Zr = "/src/assets/icons-processed/Folder_del.svg", st = "/src/assets/icons-processed/Folder_dublicate.svg", et = "/src/assets/icons-processed/Folder_line.svg", ot = "/src/assets/icons-processed/Folder_open.svg", ct = "/src/assets/icons-processed/Folder_open_alt.svg", nt = "/src/assets/icons-processed/Folder_search.svg", rt = "/src/assets/icons-processed/Folder_send.svg", tt = "/src/assets/icons-processed/Folders_.svg", at = "/src/assets/icons-processed/Folders_line.svg", lt = "/src/assets/icons-processed/Form.svg", it = "/src/assets/icons-processed/Frame 11934.svg", dt = "/src/assets/icons-processed/Frame.svg", gt = "/src/assets/icons-processed/Full-1.svg", pt = "/src/assets/icons-processed/Full-2.svg", vt = "/src/assets/icons-processed/Full.svg", It = "/src/assets/icons-processed/Full_Screen_Corner.svg", ft = "/src/assets/icons-processed/Full_alt-1.svg", mt = "/src/assets/icons-processed/Full_alt.svg", ut = "/src/assets/icons-processed/GIft.svg", Ct = "/src/assets/icons-processed/Gamepad.svg", Gt = "/src/assets/icons-processed/Glass.svg", _t = "/src/assets/icons-processed/Glasses.svg", ht = "/src/assets/icons-processed/Gps_fixed.svg", St = "/src/assets/icons-processed/Headphones_fill.svg", kt = "/src/assets/icons-processed/Hhourglass_move_light.svg", At = "/src/assets/icons-processed/Home.svg", bt = "/src/assets/icons-processed/Horizontal_switch.svg", Bt = "/src/assets/icons-processed/Horizontal_top_left_main.svg", Ft = "/src/assets/icons-processed/Horizontal_top_right_main.svg", Tt = "/src/assets/icons-processed/Hourglass.svg", Dt = "/src/assets/icons-processed/ITO.svg", yt = "/src/assets/icons-processed/Img.svg", xt = "/src/assets/icons-processed/Img_alt_.svg", Pt = "/src/assets/icons-processed/Img_box.svg", Lt = "/src/assets/icons-processed/Img_load-box.svg", wt = "/src/assets/icons-processed/Img_out-box.svg", Rt = "/src/assets/icons-processed/Img_rol.svg", Mt = "/src/assets/icons-processed/Import.svg", Wt = "/src/assets/icons-processed/In.svg", Nt = "/src/assets/icons-processed/Info-1.svg", Et = "/src/assets/icons-processed/Info.svg", Ut = "/src/assets/icons-processed/Info_alt.svg", zt = "/src/assets/icons-processed/Key.svg", Ht = "/src/assets/icons-processed/Key_alt.svg", Ot = "/src/assets/icons-processed/Knife.svg", $t = "/src/assets/icons-processed/Lable.svg", Vt = "/src/assets/icons-processed/Lamp.svg", qt = "/src/assets/icons-processed/Layers.svg", Kt = "/src/assets/icons-processed/Less_Screen_Corner.svg", Xt = "/src/assets/icons-processed/Less_round_duotone.svg", jt = "/src/assets/icons-processed/Line.svg", Jt = "/src/assets/icons-processed/Line_alt.svg", Qt = "/src/assets/icons-processed/Line_in.svg", Yt = "/src/assets/icons-processed/Line_in_alt.svg", Zt = "/src/assets/icons-processed/Line_out.svg", sa = "/src/assets/icons-processed/Line_out_alt.svg", ea = "/src/assets/icons-processed/Load_circle.svg", oa = "/src/assets/icons-processed/Load_circle_fill.svg", ca = "/src/assets/icons-processed/Load_list.svg", na = "/src/assets/icons-processed/Load_list_alt.svg", ra = "/src/assets/icons-processed/Lock.svg", ta = "/src/assets/icons-processed/Lock_alt.svg", aa = "/src/assets/icons-processed/Lol.svg", la = "/src/assets/icons-processed/Mask.svg", ia = "/src/assets/icons-processed/Materials.svg", da = "/src/assets/icons-processed/Meatballs_menu.svg", ga = "/src/assets/icons-processed/Menu-1.svg", pa = "/src/assets/icons-processed/Menu.svg", va = "/src/assets/icons-processed/Message.svg", Ia = "/src/assets/icons-processed/Message_alt.svg", fa = "/src/assets/icons-processed/Message_open.svg", ma = "/src/assets/icons-processed/Mic.svg", ua = "/src/assets/icons-processed/Mic_alt.svg", Ca = "/src/assets/icons-processed/Molecule.svg", Ga = "/src/assets/icons-processed/Money.svg", _a = "/src/assets/icons-processed/Moon.svg", ha = "/src/assets/icons-processed/Moon_alt.svg", Sa = "/src/assets/icons-processed/Mortarboard.svg", ka = "/src/assets/icons-processed/Mortarboard_alt.svg", Aa = "/src/assets/icons-processed/Mortarboard_alt_2.svg", ba = "/src/assets/icons-processed/Mouse.svg", Ba = "/src/assets/icons-processed/Move.svg", Fa = "/src/assets/icons-processed/Move_alt.svg", Ta = "/src/assets/icons-processed/Move_object.svg", Da = "/src/assets/icons-processed/Music.svg", ya = "/src/assets/icons-processed/NFC.svg", xa = "/src/assets/icons-processed/Navigate.svg", Pa = "/src/assets/icons-processed/Nesting.svg", La = "/src/assets/icons-processed/News.svg", wa = "/src/assets/icons-processed/On_button.svg", Ra = "/src/assets/icons-processed/Orange.svg", Ma = "/src/assets/icons-processed/Order.svg", Wa = "/src/assets/icons-processed/Out.svg", Na = "/src/assets/icons-processed/Paper.svg", Ea = "/src/assets/icons-processed/Paper_alt.svg", Ua = "/src/assets/icons-processed/Pass.svg", za = "/src/assets/icons-processed/Password.svg", Ha = "/src/assets/icons-processed/Pin-1.svg", Oa = "/src/assets/icons-processed/Pin.svg", $a = "/src/assets/icons-processed/Pin_alt.svg", Va = "/src/assets/icons-processed/Pined.svg", qa = "/src/assets/icons-processed/Pipe.svg", Ka = "/src/assets/icons-processed/Pipette.svg", Xa = "/src/assets/icons-processed/Pizza.svg", ja = "/src/assets/icons-processed/Pointers.svg", Ja = "/src/assets/icons-processed/Pressure.svg", Qa = "/src/assets/icons-processed/Print.svg", Ya = "/src/assets/icons-processed/Progress.svg", Za = "/src/assets/icons-processed/Protein.svg", sl = "/src/assets/icons-processed/Question.svg", el = "/src/assets/icons-processed/Rain.svg", ol = "/src/assets/icons-processed/Reduce.svg", cl = "/src/assets/icons-processed/Refresh.svg", nl = "/src/assets/icons-processed/Refresh_2.svg", rl = "/src/assets/icons-processed/Refund_Forward.svg", tl = "/src/assets/icons-processed/Refund_back.svg", al = "/src/assets/icons-processed/Refund_ring_back.svg", ll = "/src/assets/icons-processed/Refund_ring_forward.svg", il = "/src/assets/icons-processed/Refund_ring_top.svg", dl = "/src/assets/icons-processed/Refund_top.svg", gl = "/src/assets/icons-processed/Remove.svg", pl = "/src/assets/icons-processed/Return.svg", vl = "/src/assets/icons-processed/Ring.svg", Il = "/src/assets/icons-processed/Ring_move.svg", fl = "/src/assets/icons-processed/Road.svg", ml = "/src/assets/icons-processed/Road_alt.svg", ul = "/src/assets/icons-processed/Road_finish.svg", Cl = "/src/assets/icons-processed/Rofl.svg", Gl = "/src/assets/icons-processed/Roll.svg", _l = "/src/assets/icons-processed/Roll_alt.svg", hl = "/src/assets/icons-processed/Root.svg", Sl = "/src/assets/icons-processed/Sad.svg", kl = "/src/assets/icons-processed/Sad_alt.svg", Al = "/src/assets/icons-processed/Sad_alt_2.svg", bl = "/src/assets/icons-processed/Save.svg", Bl = "/src/assets/icons-processed/Scan.svg", Fl = "/src/assets/icons-processed/Scan_alt.svg", Tl = "/src/assets/icons-processed/Scan_alt_2.svg", Dl = "/src/assets/icons-processed/Search.svg", yl = "/src/assets/icons-processed/Search_alt.svg", xl = "/src/assets/icons-processed/Send.svg", Pl = "/src/assets/icons-processed/Send_hor.svg", Ll = "/src/assets/icons-processed/Sertificate.svg", wl = "/src/assets/icons-processed/Server.svg", Rl = "/src/assets/icons-processed/Sign_in_circle.svg", Ml = "/src/assets/icons-processed/Sign_in_squre.svg", Wl = "/src/assets/icons-processed/Sign_out_bis.svg", Nl = "/src/assets/icons-processed/Sign_out_circle.svg", El = "/src/assets/icons-processed/Sign_out_squre.svg", Ul = "/src/assets/icons-processed/Speed.svg", zl = "/src/assets/icons-processed/Speed_alt.svg", Hl = "/src/assets/icons-processed/Square.svg", Ol = "/src/assets/icons-processed/Stackframe.svg", $l = "/src/assets/icons-processed/Stat.svg", Vl = "/src/assets/icons-processed/Status.svg", ql = "/src/assets/icons-processed/Status_list.svg", Kl = "/src/assets/icons-processed/Stop.svg", Xl = "/src/assets/icons-processed/Subttasks.svg", jl = "/src/assets/icons-processed/Subttasks_alt.svg", Jl = "/src/assets/icons-processed/Table.svg", Ql = "/src/assets/icons-processed/Tablet.svg", Yl = "/src/assets/icons-processed/Target.svg", Zl = "/src/assets/icons-processed/Temperature-1.svg", si = "/src/assets/icons-processed/Temperature.svg", ei = "/src/assets/icons-processed/Tie.svg", oi = "/src/assets/icons-processed/Tooth.svg", ci = "/src/assets/icons-processed/Transger.svg", ni = "/src/assets/icons-processed/Trash.svg", ri = "/src/assets/icons-processed/Tree.svg", ti = "/src/assets/icons-processed/Trophy.svg", ai = "/src/assets/icons-processed/Tumer.svg", li = "/src/assets/icons-processed/Turbine.svg", ii = "/src/assets/icons-processed/Unlock-1.svg", di = "/src/assets/icons-processed/Unlock.svg", gi = "/src/assets/icons-processed/Vector.svg", pi = "/src/assets/icons-processed/Vertical_switch.svg", vi = "/src/assets/icons-processed/Vertical_switch_alt.svg", Ii = "/src/assets/icons-processed/Vertical_switch_long.svg", fi = "/src/assets/icons-processed/Water.svg", mi = "/src/assets/icons-processed/Waterfall.svg", ui = "/src/assets/icons-processed/Winter.svg", Ci = "/src/assets/icons-processed/Wow.svg", Gi = "/src/assets/icons-processed/battery_full.svg", _i = "/src/assets/icons-processed/battery_low.svg", hi = "/src/assets/icons-processed/box_refresh_alt_right.svg", Si = "/src/assets/icons-processed/box_refresh_right.svg", ki = "/src/assets/icons-processed/candlestick.svg", Ai = "/src/assets/icons-processed/check_ring_round.svg", bi = "/src/assets/icons-processed/circle_left.svg", Bi = "/src/assets/icons-processed/circle_right.svg", Fi = "/src/assets/icons-processed/circle_right_alt.svg", Ti = "/src/assets/icons-processed/close_ring.svg", Di = "/src/assets/icons-processed/close_ring_duotone.svg", yi = "/src/assets/icons-processed/close_ring_fill.svg", xi = "/src/assets/icons-processed/cocktail.svg", Pi = "/src/assets/icons-processed/color_picker.svg", Li = "/src/assets/icons-processed/comment.svg", wi = "/src/assets/icons-processed/darhboard.svg", Ri = "/src/assets/icons-processed/darhboard_alt.svg", Mi = "/src/assets/icons-processed/del_alt.svg", Wi = "/src/assets/icons-processed/desktop.svg", Ni = "/src/assets/icons-processed/doughnut_chart.svg", Ei = "/src/assets/icons-processed/drink.svg", Ui = "/src/assets/icons-processed/face_id.svg", zi = "/src/assets/icons-processed/flash.svg", Hi = "/src/assets/icons-processed/gift_alt.svg", Oi = "/src/assets/icons-processed/globe.svg", $i = "/src/assets/icons-processed/happy-1.svg", Vi = "/src/assets/icons-processed/happy.svg", qi = "/src/assets/icons-processed/hide_eye.svg", Ki = "/src/assets/icons-processed/humidity.svg", Xi = "/src/assets/icons-processed/ice_cream.svg", ji = "/src/assets/icons-processed/ice_cream_1.svg", Ji = "/src/assets/icons-processed/insta.svg", Qi = "/src/assets/icons-processed/lightning.svg", Yi = "/src/assets/icons-processed/lightning_alt.svg", Zi = "/src/assets/icons-processed/lightning_ring.svg", sd = "/src/assets/icons-processed/link.svg", ed = "/src/assets/icons-processed/link_alt-1.svg", od = "/src/assets/icons-processed/link_alt.svg", cd = "/src/assets/icons-processed/md_icon.svg", nd = "/src/assets/icons-processed/mobile.svg", rd = "/src/assets/icons-processed/notebook.svg", td = "/src/assets/icons-processed/oil.svg", ad = "/src/assets/icons-processed/package.svg", ld = "/src/assets/icons-processed/package_box.svg", id = "/src/assets/icons-processed/package_box_alt.svg", dd = "/src/assets/icons-processed/package_box_close.svg", gd = "/src/assets/icons-processed/package_car.svg", pd = "/src/assets/icons-processed/package_favourite.svg", vd = "/src/assets/icons-processed/package_favourite_alt.svg", Id = "/src/assets/icons-processed/package_search.svg", fd = "/src/assets/icons-processed/paper_clip.svg", md = "/src/assets/icons-processed/phone.svg", ud = "/src/assets/icons-processed/pie_chart.svg", Cd = "/src/assets/icons-processed/pil.svg", Gd = "/src/assets/icons-processed/pils.svg", _d = "/src/assets/icons-processed/pool.svg", hd = "/src/assets/icons-processed/pyramid_chart.svg", Sd = "/src/assets/icons-processed/stethoscope.svg", kd = "/src/assets/icons-processed/suitcase.svg", Ad = "/src/assets/icons-processed/€.svg", bd = "/src/assets/icons-processed/Alarmclock.svg", Bd = "/src/assets/icons-processed/Clock.svg", Fd = "/src/assets/icons-processed/Jump_time.svg", Td = "/src/assets/icons-processed/Time.svg", Dd = "/src/assets/icons-processed/Time_atack.svg", yd = "/src/assets/icons-processed/Time_del_light.svg", xd = "/src/assets/icons-processed/Time_progress.svg", Pd = "/src/assets/icons-processed/Time_sleep.svg", Ld = "/src/assets/icons-processed/watch.svg", wd = "/src/assets/icons-processed/watch_alt.svg", Rd = "/src/assets/icons-processed/Arhives_group_docks.svg", Md = "/src/assets/icons-processed/Arrow_alt_ldown.svg", Wd = "/src/assets/icons-processed/Arrow_alt_left.svg", Nd = "/src/assets/icons-processed/Arrow_alt_lright.svg", Ed = "/src/assets/icons-processed/Arrow_alt_ltop.svg", Ud = "/src/assets/icons-processed/Arrow_down_long.svg", zd = "/src/assets/icons-processed/Arrow_left_long.svg", Hd = "/src/assets/icons-processed/Arrow_right_long.svg", Od = "/src/assets/icons-processed/Arrow_top_long.svg", $d = "/src/assets/icons-processed/Colum_up.svg", Vd = "/src/assets/icons-processed/Down.svg", qd = "/src/assets/icons-processed/Download.svg", Kd = "/src/assets/icons-processed/Download_circle.svg", Xd = "/src/assets/icons-processed/Download_circle_fill.svg", jd = "/src/assets/icons-processed/Expand_down.svg", Jd = "/src/assets/icons-processed/Expand_down_double.svg", Qd = "/src/assets/icons-processed/Expand_down_stop.svg", Yd = "/src/assets/icons-processed/Expand_up.svg", Zd = "/src/assets/icons-processed/Expand_up_double.svg", sg = "/src/assets/icons-processed/Folder_up.svg", eg = "/src/assets/icons-processed/Folders_group.svg", og = "/src/assets/icons-processed/Group.svg", cg = "/src/assets/icons-processed/Group_scan.svg", ng = "/src/assets/icons-processed/Horizontal_down_left_main.svg", rg = "/src/assets/icons-processed/Horizontal_down_right_main.svg", tg = "/src/assets/icons-processed/Line_up.svg", ag = "/src/assets/icons-processed/Refund_down.svg", lg = "/src/assets/icons-processed/Refund_ring_down.svg", ig = "/src/assets/icons-processed/Regroup.svg", dg = "/src/assets/icons-processed/Size_down.svg", gg = "/src/assets/icons-processed/Size_right_up.svg", pg = "/src/assets/icons-processed/Sort list.svg", vg = "/src/assets/icons-processed/Sort list_alt.svg", Ig = "/src/assets/icons-processed/Sort.svg", fg = "/src/assets/icons-processed/Sort_arrow.svg", mg = "/src/assets/icons-processed/Sort_down.svg", ug = "/src/assets/icons-processed/Sort_up.svg", Cg = "/src/assets/icons-processed/Sort_up_alt.svg", Gg = "/src/assets/icons-processed/Up.svg", _g = "/src/assets/icons-processed/Upload.svg", hg = "/src/assets/icons-processed/group_add.svg", Sg = "/src/assets/icons-processed/group_share.svg", kg = "/src/assets/icons-processed/thumb_down.svg", Ag = "/src/assets/icons-processed/thumb_up.svg", bg = "/src/assets/icons-processed/Broken_heart.svg", Bg = "/src/assets/icons-processed/Star.svg", Fg = "/src/assets/icons-processed/Credit card.svg", Tg = "/src/assets/icons-processed/Edit.svg", Dg = "/src/assets/icons-processed/Edit2.svg", yg = "/src/assets/icons-processed/Edit_alt.svg", xg = "/src/assets/icons-processed/Text.svg", Pg = "/src/assets/icons-processed/typo.svg", Lg = "/src/assets/icons-processed/File.svg", wg = "/src/assets/icons-processed/File_dock.svg", Rg = "/src/assets/icons-processed/File_dock_add.svg", Mg = "/src/assets/icons-processed/File_dock_search.svg", Wg = "/src/assets/icons-processed/Folder_file.svg", Ng = "/src/assets/icons-processed/Folder_file_alt.svg", Eg = "/src/assets/icons-processed/Map-1.svg", Ug = "/src/assets/icons-processed/Map.svg", zg = "/src/assets/icons-processed/world.svg", Hg = "/src/assets/icons-processed/world_2.svg", Og = "/src/assets/icons-processed/world_alt.svg", $g = "/src/assets/icons-processed/Play.svg", Vg = "/src/assets/icons-processed/Sound.svg", qg = "/src/assets/icons-processed/Stop_and_play.svg", Kg = "/src/assets/icons-processed/Video.svg", Xg = "/src/assets/icons-processed/Video_file.svg", jg = "/src/assets/icons-processed/sound_max.svg", Jg = "/src/assets/icons-processed/sound_min.svg", Qg = "/src/assets/icons-processed/sound_mute.svg", Yg = "/src/assets/icons-processed/Setting_alt_line.svg", Zg = "/src/assets/icons-processed/Setting_line.svg", sp = "/src/assets/icons-processed/Setting_vert.svg", ep = "/src/assets/icons-processed/Widget-1.svg", op = "/src/assets/icons-processed/Widget.svg", cp = "/src/assets/icons-processed/Widget_add.svg", np = "/src/assets/icons-processed/Widget_alt-1.svg", rp = "/src/assets/icons-processed/Widget_alt.svg", tp = "/src/assets/icons-processed/table_settings.svg", ap = "/src/assets/icons-processed/Shop.svg", lp = "/src/assets/icons-processed/Ticket.svg", ip = "/src/assets/icons-processed/Ticket_alt.svg", dp = "/src/assets/icons-processed/Ticket_use.svg", gp = "/src/assets/icons-processed/Wallet.svg", pp = "/src/assets/icons-processed/Wallet_alt.svg", vp = "/src/assets/icons-processed/Storm.svg", Ip = "/src/assets/icons-processed/Sun-1.svg", fp = "/src/assets/icons-processed/Sun.svg", mp = "/src/assets/icons-processed/Sunlight.svg", up = "/src/assets/icons-processed/User.svg", Cp = "/src/assets/icons-processed/User_add.svg", Gp = "/src/assets/icons-processed/User_add_alt.svg", _p = "/src/assets/icons-processed/User_alt.svg", hp = "/src/assets/icons-processed/User_box.svg", Sp = "/src/assets/icons-processed/User_cicrle.svg", kp = "/src/assets/icons-processed/User_scan.svg", Ap = "none", bp = "0 1px 2px 0 rgba(0, 0, 0, 0.05)", Bp = "0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)", Fp = "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)", Tp = "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)", Dp = "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)", yp = "0px", xp = "4px", Pp = "8px", Lp = "12px", wp = "16px", Rp = "20px", Mp = "24px", Wp = "32px", Np = "40px", Ep = "48px", Up = "64px", zp = "80px", Hp = "96px", Op = "128px", $p = "Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif", Vp = "'JetBrains Mono', 'Fira Code', Consolas, monospace", qp = "12px", Kp = "14px", Xp = "16px", jp = "18px", Jp = "20px", Qp = "24px", Yp = "30px", Zp = "36px", sv = "48px", ev = "300", ov = "400", cv = "500", nv = "600", rv = "700", tv = "1.25", av = "1.5", lv = "1.75", iv = "/src/assets/logos/club-employes/logo.svg", dv = "/src/assets/logos/club-employes/logo-small.svg", gv = "/src/assets/logos/club-employes/logo-white.svg", pv = "/src/assets/logos/club-employes/logo-small-white.svg", vv = "#fafbfe", Iv = "#f6f8fe", fv = "#f2f5fe", mv = "#e9eefe", uv = "#c9d6fb", Cv = "#93aef8", Gv = "#275cf1", _v = "#FAFAFЕ", hv = "#f5f6f8", Sv = "#f0f1f4", kv = "#e7e8ed", Av = "#c2c6d1", bv = "#858ea4", Bv = "#0b1c48", Fv = "#fffcfa", Tv = "#fff9f6", Dv = "#fff6f2", yv = "#fef0e9", xv = "#fcd8c8", Pv = "#f9b191", Lv = "#f36222", wv = "#eff6ff", Rv = "#dbeafe", Mv = "#bfdbfe", Wv = "#93c5fd", Nv = "#60a5fa", Ev = "#3b82f6", Uv = "#2563eb", zv = "#1d4ed8", Hv = "#1e40af", Ov = "#1e3a8a", $v = "#fafbfe", Vv = "#ffffff", qv = "#00000080", Kv = "#111827", Xv = "#4b5563", jv = "#9ca3af", Jv = "#ffffff", Qv = "#e5e7eb", Yv = "#f3f4f6", Zv = "#d1d5db", s0 = "#f8fafc", e0 = "#e2e8f0", o0 = "#90a1b9", c0 = "#45556c", n0 = "#1d293d", r0 = "#020618", t0 = "#e2fcf0", a0 = "#a4f4cf", l0 = "#00d492", i0 = "#0a9c55", d0 = "#006045", g0 = "#002c22", p0 = "#fff5db", v0 = "#ffd6a8", I0 = "#ff8904", f0 = "#f54900", m0 = "#9f2d00", u0 = "#441306", C0 = "#ffefe8", G0 = "#ffc9c9", _0 = "#ff6467", h0 = "#cf2a2a", S0 = "#9f0712", k0 = "#460809", A0 = "#ff6467", b0 = "#ffefe8", B0 = "#00d492", F0 = "#e2fcf0", T0 = "#ff8904", D0 = "#fff5db";
|
|
204
|
+
export {
|
|
205
|
+
q as AssetsLogosClubEmployesDefault,
|
|
206
|
+
K as AssetsLogosClubEmployesSmall,
|
|
207
|
+
j as AssetsLogosClubEmployesSmallWhite,
|
|
208
|
+
X as AssetsLogosClubEmployesWhite,
|
|
209
|
+
J as AssetsLogosGifteoDefault,
|
|
210
|
+
Q as AssetsLogosGifteoSmall,
|
|
211
|
+
Z as AssetsLogosGifteoSmallWhite,
|
|
212
|
+
Y as AssetsLogosGifteoWhite,
|
|
213
|
+
ts as BorderRadiusBase,
|
|
214
|
+
ds as BorderRadiusFull,
|
|
215
|
+
ls as BorderRadiusLg,
|
|
216
|
+
as as BorderRadiusMd,
|
|
217
|
+
ns as BorderRadiusNone,
|
|
218
|
+
rs as BorderRadiusSm,
|
|
219
|
+
is as BorderRadiusXl,
|
|
220
|
+
ss as BorderWidth0,
|
|
221
|
+
es as BorderWidth1,
|
|
222
|
+
os as BorderWidth2,
|
|
223
|
+
cs as BorderWidth4,
|
|
224
|
+
U as Button,
|
|
225
|
+
ve as ColorBackground100,
|
|
226
|
+
Ie as ColorBackground200,
|
|
227
|
+
fe as ColorBackground300,
|
|
228
|
+
me as ColorBackground400,
|
|
229
|
+
pe as ColorBackground50,
|
|
230
|
+
ue as ColorBackground500,
|
|
231
|
+
Ce as ColorBackground600,
|
|
232
|
+
Ge as ColorBackground700,
|
|
233
|
+
_e as ColorBackground800,
|
|
234
|
+
he as ColorBackground900,
|
|
235
|
+
Se as ColorBackground950,
|
|
236
|
+
no as ColorBlue100,
|
|
237
|
+
ro as ColorBlue200,
|
|
238
|
+
oo as ColorBlue25,
|
|
239
|
+
to as ColorBlue300,
|
|
240
|
+
ao as ColorBlue400,
|
|
241
|
+
co as ColorBlue50,
|
|
242
|
+
lo as ColorBlue500,
|
|
243
|
+
io as ColorBlue600,
|
|
244
|
+
go as ColorBlue700,
|
|
245
|
+
po as ColorBlue800,
|
|
246
|
+
vo as ColorBlue900,
|
|
247
|
+
Io as ColorBlue950,
|
|
248
|
+
ic as ColorBrandAccent100,
|
|
249
|
+
dc as ColorBrandAccent200,
|
|
250
|
+
ac as ColorBrandAccent25,
|
|
251
|
+
gc as ColorBrandAccent300,
|
|
252
|
+
pc as ColorBrandAccent400,
|
|
253
|
+
lc as ColorBrandAccent50,
|
|
254
|
+
vc as ColorBrandAccent500,
|
|
255
|
+
jo as ColorBrandPrimary100,
|
|
256
|
+
Jo as ColorBrandPrimary200,
|
|
257
|
+
Ko as ColorBrandPrimary25,
|
|
258
|
+
Qo as ColorBrandPrimary300,
|
|
259
|
+
Yo as ColorBrandPrimary400,
|
|
260
|
+
Xo as ColorBrandPrimary50,
|
|
261
|
+
Zo as ColorBrandPrimary500,
|
|
262
|
+
oc as ColorBrandSecondary100,
|
|
263
|
+
cc as ColorBrandSecondary200,
|
|
264
|
+
sc as ColorBrandSecondary25,
|
|
265
|
+
nc as ColorBrandSecondary300,
|
|
266
|
+
rc as ColorBrandSecondary400,
|
|
267
|
+
ec as ColorBrandSecondary50,
|
|
268
|
+
tc as ColorBrandSecondary500,
|
|
269
|
+
qe as ColorDanger100,
|
|
270
|
+
Ke as ColorDanger200,
|
|
271
|
+
Xe as ColorDanger300,
|
|
272
|
+
je as ColorDanger400,
|
|
273
|
+
Ve as ColorDanger50,
|
|
274
|
+
Je as ColorDanger500,
|
|
275
|
+
Qe as ColorDanger600,
|
|
276
|
+
Ye as ColorDanger700,
|
|
277
|
+
Ze as ColorDanger800,
|
|
278
|
+
so as ColorDanger900,
|
|
279
|
+
eo as ColorDanger950,
|
|
280
|
+
Vs as ColorDangerDark100,
|
|
281
|
+
qs as ColorDangerDark200,
|
|
282
|
+
Ks as ColorDangerDark300,
|
|
283
|
+
Xs as ColorDangerDark400,
|
|
284
|
+
$s as ColorDangerDark50,
|
|
285
|
+
js as ColorDangerDark500,
|
|
286
|
+
Js as ColorDangerDark600,
|
|
287
|
+
Qs as ColorDangerDark700,
|
|
288
|
+
Ys as ColorDangerDark800,
|
|
289
|
+
Zs as ColorDangerDark900,
|
|
290
|
+
se as ColorDangerDark950,
|
|
291
|
+
Mo as ColorNeutral100,
|
|
292
|
+
Wo as ColorNeutral200,
|
|
293
|
+
No as ColorNeutral300,
|
|
294
|
+
Eo as ColorNeutral400,
|
|
295
|
+
Ro as ColorNeutral50,
|
|
296
|
+
Uo as ColorNeutral500,
|
|
297
|
+
zo as ColorNeutral600,
|
|
298
|
+
Ho as ColorNeutral700,
|
|
299
|
+
Oo as ColorNeutral800,
|
|
300
|
+
$o as ColorNeutral900,
|
|
301
|
+
qo as ColorNeutralBlack,
|
|
302
|
+
Vo as ColorNeutralWhite,
|
|
303
|
+
To as ColorProductECheckLight,
|
|
304
|
+
Fo as ColorProductECheckPrimary,
|
|
305
|
+
So as ColorProductETicketLight,
|
|
306
|
+
ho as ColorProductETicketPrimary,
|
|
307
|
+
mo as ColorProductExclusiveSaleLight,
|
|
308
|
+
fo as ColorProductExclusiveSalePrimary,
|
|
309
|
+
Bo as ColorProductGiftCardLight,
|
|
310
|
+
bo as ColorProductGiftCardPrimary,
|
|
311
|
+
Ao as ColorProductMemberCardLight,
|
|
312
|
+
ko as ColorProductMemberCardPrimary,
|
|
313
|
+
_o as ColorProductPhysicalProductLight,
|
|
314
|
+
Go as ColorProductPhysicalProductPrimary,
|
|
315
|
+
Co as ColorProductPromoCodeLight,
|
|
316
|
+
uo as ColorProductPromoCodePrimary,
|
|
317
|
+
xo as ColorSemanticAttentionBackground,
|
|
318
|
+
Do as ColorSemanticAttentionPrimary,
|
|
319
|
+
yo as ColorSemanticAttentionSecondary,
|
|
320
|
+
wo as ColorSemanticSuccessBackground,
|
|
321
|
+
Po as ColorSemanticSuccessPrimary,
|
|
322
|
+
Lo as ColorSemanticSuccessSecondary,
|
|
323
|
+
oe as ColorSlate100,
|
|
324
|
+
ce as ColorSlate200,
|
|
325
|
+
ne as ColorSlate300,
|
|
326
|
+
re as ColorSlate400,
|
|
327
|
+
ee as ColorSlate50,
|
|
328
|
+
te as ColorSlate500,
|
|
329
|
+
ae as ColorSlate600,
|
|
330
|
+
le as ColorSlate700,
|
|
331
|
+
ie as ColorSlate800,
|
|
332
|
+
de as ColorSlate900,
|
|
333
|
+
ge as ColorSlate950,
|
|
334
|
+
ps as ColorSlateDark100,
|
|
335
|
+
vs as ColorSlateDark200,
|
|
336
|
+
Is as ColorSlateDark300,
|
|
337
|
+
fs as ColorSlateDark400,
|
|
338
|
+
gs as ColorSlateDark50,
|
|
339
|
+
ms as ColorSlateDark500,
|
|
340
|
+
us as ColorSlateDark600,
|
|
341
|
+
Cs as ColorSlateDark700,
|
|
342
|
+
Gs as ColorSlateDark800,
|
|
343
|
+
_s as ColorSlateDark900,
|
|
344
|
+
hs as ColorSlateDark950,
|
|
345
|
+
Ae as ColorSucceed100,
|
|
346
|
+
be as ColorSucceed200,
|
|
347
|
+
Be as ColorSucceed300,
|
|
348
|
+
Fe as ColorSucceed400,
|
|
349
|
+
ke as ColorSucceed50,
|
|
350
|
+
Te as ColorSucceed500,
|
|
351
|
+
De as ColorSucceed600,
|
|
352
|
+
ye as ColorSucceed700,
|
|
353
|
+
xe as ColorSucceed800,
|
|
354
|
+
Pe as ColorSucceed900,
|
|
355
|
+
Le as ColorSucceed950,
|
|
356
|
+
ks as ColorSucceedDark100,
|
|
357
|
+
As as ColorSucceedDark200,
|
|
358
|
+
bs as ColorSucceedDark300,
|
|
359
|
+
Bs as ColorSucceedDark400,
|
|
360
|
+
Ss as ColorSucceedDark50,
|
|
361
|
+
Fs as ColorSucceedDark500,
|
|
362
|
+
Ts as ColorSucceedDark600,
|
|
363
|
+
Ds as ColorSucceedDark700,
|
|
364
|
+
ys as ColorSucceedDark800,
|
|
365
|
+
xs as ColorSucceedDark900,
|
|
366
|
+
Ps as ColorSucceedDark950,
|
|
367
|
+
Re as ColorWarning100,
|
|
368
|
+
Me as ColorWarning200,
|
|
369
|
+
We as ColorWarning300,
|
|
370
|
+
Ne as ColorWarning400,
|
|
371
|
+
we as ColorWarning50,
|
|
372
|
+
Ee as ColorWarning500,
|
|
373
|
+
Ue as ColorWarning600,
|
|
374
|
+
ze as ColorWarning700,
|
|
375
|
+
He as ColorWarning800,
|
|
376
|
+
Oe as ColorWarning900,
|
|
377
|
+
$e as ColorWarning950,
|
|
378
|
+
ws as ColorWarningDark100,
|
|
379
|
+
Rs as ColorWarningDark200,
|
|
380
|
+
Ms as ColorWarningDark300,
|
|
381
|
+
Ws as ColorWarningDark400,
|
|
382
|
+
Ls as ColorWarningDark50,
|
|
383
|
+
Ns as ColorWarningDark500,
|
|
384
|
+
Es as ColorWarningDark600,
|
|
385
|
+
Us as ColorWarningDark700,
|
|
386
|
+
zs as ColorWarningDark800,
|
|
387
|
+
Hs as ColorWarningDark900,
|
|
388
|
+
Os as ColorWarningDark950,
|
|
389
|
+
Vp as FontFamilyMono,
|
|
390
|
+
$p as FontFamilySans,
|
|
391
|
+
av as FontLineHeightNormal,
|
|
392
|
+
lv as FontLineHeightRelaxed,
|
|
393
|
+
tv as FontLineHeightTight,
|
|
394
|
+
Qp as FontSize2xl,
|
|
395
|
+
Yp as FontSize3xl,
|
|
396
|
+
Zp as FontSize4xl,
|
|
397
|
+
sv as FontSize5xl,
|
|
398
|
+
Xp as FontSizeBase,
|
|
399
|
+
jp as FontSizeLg,
|
|
400
|
+
Kp as FontSizeSm,
|
|
401
|
+
Jp as FontSizeXl,
|
|
402
|
+
qp as FontSizeXs,
|
|
403
|
+
rv as FontWeightBold,
|
|
404
|
+
ev as FontWeightLight,
|
|
405
|
+
cv as FontWeightMedium,
|
|
406
|
+
ov as FontWeightNormal,
|
|
407
|
+
nv as FontWeightSemibold,
|
|
408
|
+
z as Icon,
|
|
409
|
+
ap as IconsCommerceShop,
|
|
410
|
+
lp as IconsCommerceTicket,
|
|
411
|
+
ip as IconsCommerceTicketAlt,
|
|
412
|
+
dp as IconsCommerceTicketUse,
|
|
413
|
+
gp as IconsCommerceWallet,
|
|
414
|
+
pp as IconsCommerceWalletAlt,
|
|
415
|
+
bg as IconsFeedbackBrokenHeart,
|
|
416
|
+
Bg as IconsFeedbackStar,
|
|
417
|
+
Lg as IconsFilesFile,
|
|
418
|
+
wg as IconsFilesFileDock,
|
|
419
|
+
Rg as IconsFilesFileDockAdd,
|
|
420
|
+
Mg as IconsFilesFileDockSearch,
|
|
421
|
+
Wg as IconsFilesFolderFile,
|
|
422
|
+
Ng as IconsFilesFolderFileAlt,
|
|
423
|
+
Ic as IconsGeneral11,
|
|
424
|
+
fc as IconsGeneral3dBox,
|
|
425
|
+
mc as IconsGeneralAddRound,
|
|
426
|
+
uc as IconsGeneralAddRoundDuotone,
|
|
427
|
+
Cc as IconsGeneralAddRoundFill,
|
|
428
|
+
Gc as IconsGeneralAlarm,
|
|
429
|
+
_c as IconsGeneralAngry,
|
|
430
|
+
hc as IconsGeneralArchiveAltBig,
|
|
431
|
+
Sc as IconsGeneralArchiveAltSmall,
|
|
432
|
+
kc as IconsGeneralArchiveAltSmallAdd,
|
|
433
|
+
Ac as IconsGeneralArchiveAltSmallLock,
|
|
434
|
+
bc as IconsGeneralArchiveAltSmallSecureLight,
|
|
435
|
+
Bc as IconsGeneralArchiveExport,
|
|
436
|
+
Fc as IconsGeneralArchiveImport,
|
|
437
|
+
Tc as IconsGeneralArchiveLoad,
|
|
438
|
+
Dc as IconsGeneralArchivePlane,
|
|
439
|
+
xc as IconsGeneralArhive,
|
|
440
|
+
yc as IconsGeneralArhive1,
|
|
441
|
+
Pc as IconsGeneralArhiveAltAdd,
|
|
442
|
+
Lc as IconsGeneralArhiveAltAddList,
|
|
443
|
+
wc as IconsGeneralArhiveAltExport,
|
|
444
|
+
Rc as IconsGeneralArhivesAlt,
|
|
445
|
+
Mc as IconsGeneralAtom,
|
|
446
|
+
Wc as IconsGeneralAtomAlt,
|
|
447
|
+
Nc as IconsGeneralBack,
|
|
448
|
+
Ec as IconsGeneralBag,
|
|
449
|
+
Uc as IconsGeneralBagAlt,
|
|
450
|
+
Oc as IconsGeneralBasket,
|
|
451
|
+
zc as IconsGeneralBasket1,
|
|
452
|
+
Hc as IconsGeneralBasket2,
|
|
453
|
+
$c as IconsGeneralBasketAlt,
|
|
454
|
+
Vc as IconsGeneralBasketAlt3,
|
|
455
|
+
Gi as IconsGeneralBatteryFull,
|
|
456
|
+
_i as IconsGeneralBatteryLow,
|
|
457
|
+
qc as IconsGeneralBed,
|
|
458
|
+
Kc as IconsGeneralBell,
|
|
459
|
+
Xc as IconsGeneralBellPin,
|
|
460
|
+
jc as IconsGeneralBlank,
|
|
461
|
+
Jc as IconsGeneralBlankAlt,
|
|
462
|
+
Qc as IconsGeneralBlood,
|
|
463
|
+
Yc as IconsGeneralBloodAdd,
|
|
464
|
+
Zc as IconsGeneralBloodMinus,
|
|
465
|
+
sn as IconsGeneralBook,
|
|
466
|
+
en as IconsGeneralBookCheck,
|
|
467
|
+
on as IconsGeneralBookOpen,
|
|
468
|
+
cn as IconsGeneralBookOpenAlt,
|
|
469
|
+
nn as IconsGeneralBookmark,
|
|
470
|
+
rn as IconsGeneralBox,
|
|
471
|
+
tn as IconsGeneralBoxAlt,
|
|
472
|
+
an as IconsGeneralBoxOpen,
|
|
473
|
+
hi as IconsGeneralBoxRefreshAltRight,
|
|
474
|
+
Si as IconsGeneralBoxRefreshRight,
|
|
475
|
+
ln as IconsGeneralBoxes,
|
|
476
|
+
dn as IconsGeneralBubble,
|
|
477
|
+
gn as IconsGeneralBug,
|
|
478
|
+
vn as IconsGeneralCake,
|
|
479
|
+
In as IconsGeneralCalendar,
|
|
480
|
+
fn as IconsGeneralCalendarAdd,
|
|
481
|
+
mn as IconsGeneralCalories,
|
|
482
|
+
un as IconsGeneralCamera,
|
|
483
|
+
Cn as IconsGeneralCancel,
|
|
484
|
+
Gn as IconsGeneralCancelDuotoneLine,
|
|
485
|
+
ki as IconsGeneralCandlestick,
|
|
486
|
+
_n as IconsGeneralCarbs,
|
|
487
|
+
hn as IconsGeneralCenterPick,
|
|
488
|
+
Sn as IconsGeneralCenterPickAlt,
|
|
489
|
+
kn as IconsGeneralChart,
|
|
490
|
+
An as IconsGeneralChartAlt,
|
|
491
|
+
bn as IconsGeneralChartPin,
|
|
492
|
+
Bn as IconsGeneralChat,
|
|
493
|
+
Fn as IconsGeneralChatAlt,
|
|
494
|
+
Tn as IconsGeneralChatAlt2,
|
|
495
|
+
Dn as IconsGeneralChatAlt3,
|
|
496
|
+
xn as IconsGeneralChatAltAdd,
|
|
497
|
+
yn as IconsGeneralChatAltAdd1,
|
|
498
|
+
Ln as IconsGeneralChatPlus,
|
|
499
|
+
Pn as IconsGeneralChatPlus1,
|
|
500
|
+
wn as IconsGeneralChatSearch,
|
|
501
|
+
Rn as IconsGeneralCheckRing,
|
|
502
|
+
Ai as IconsGeneralCheckRingRound,
|
|
503
|
+
Mn as IconsGeneralCheckedRound,
|
|
504
|
+
Wn as IconsGeneralChemistry,
|
|
505
|
+
Nn as IconsGeneralChield,
|
|
506
|
+
En as IconsGeneralChieldAlt,
|
|
507
|
+
Un as IconsGeneralChieldCheck,
|
|
508
|
+
bi as IconsGeneralCircleLeft,
|
|
509
|
+
Bi as IconsGeneralCircleRight,
|
|
510
|
+
Fi as IconsGeneralCircleRightAlt,
|
|
511
|
+
Ti as IconsGeneralCloseRing,
|
|
512
|
+
Di as IconsGeneralCloseRingDuotone,
|
|
513
|
+
yi as IconsGeneralCloseRingFill,
|
|
514
|
+
zn as IconsGeneralCloseRound,
|
|
515
|
+
Hn as IconsGeneralCloseRoundDuotone,
|
|
516
|
+
On as IconsGeneralCloseRoundFill,
|
|
517
|
+
$n as IconsGeneralCloud,
|
|
518
|
+
Vn as IconsGeneralCloudAlt,
|
|
519
|
+
xi as IconsGeneralCocktail,
|
|
520
|
+
qn as IconsGeneralCollapse,
|
|
521
|
+
Pi as IconsGeneralColorPicker,
|
|
522
|
+
Li as IconsGeneralComment,
|
|
523
|
+
Kn as IconsGeneralCompasMini,
|
|
524
|
+
Xn as IconsGeneralCompass,
|
|
525
|
+
jn as IconsGeneralCompassAlt,
|
|
526
|
+
Jn as IconsGeneralCompassNorthFill,
|
|
527
|
+
Qn as IconsGeneralCopy,
|
|
528
|
+
Yn as IconsGeneralCopyAlt,
|
|
529
|
+
Zn as IconsGeneralCovert,
|
|
530
|
+
pn as IconsGeneralCpu,
|
|
531
|
+
sr as IconsGeneralCritical,
|
|
532
|
+
wi as IconsGeneralDarhboard,
|
|
533
|
+
Ri as IconsGeneralDarhboardAlt,
|
|
534
|
+
er as IconsGeneralDataBank,
|
|
535
|
+
or as IconsGeneralDatabase,
|
|
536
|
+
cr as IconsGeneralDateRange,
|
|
537
|
+
nr as IconsGeneralDateToday,
|
|
538
|
+
Mi as IconsGeneralDelAlt,
|
|
539
|
+
rr as IconsGeneralDesk,
|
|
540
|
+
tr as IconsGeneralDeskAlt,
|
|
541
|
+
Wi as IconsGeneralDesktop,
|
|
542
|
+
ar as IconsGeneralDimond,
|
|
543
|
+
lr as IconsGeneralDimondAlt,
|
|
544
|
+
ir as IconsGeneralDirection,
|
|
545
|
+
dr as IconsGeneralDirectionAlt,
|
|
546
|
+
gr as IconsGeneralDirectionAlt2,
|
|
547
|
+
pr as IconsGeneralDirectionAlt3,
|
|
548
|
+
vr as IconsGeneralDna,
|
|
549
|
+
Ir as IconsGeneralDone,
|
|
550
|
+
fr as IconsGeneralDoneAllAltRound,
|
|
551
|
+
mr as IconsGeneralDoneAllRound,
|
|
552
|
+
ur as IconsGeneralDoneRingRound,
|
|
553
|
+
Cr as IconsGeneralDoneRound,
|
|
554
|
+
Gr as IconsGeneralDot3,
|
|
555
|
+
Ni as IconsGeneralDoughnutChart,
|
|
556
|
+
Ei as IconsGeneralDrink,
|
|
557
|
+
_r as IconsGeneralEMail,
|
|
558
|
+
Ad as IconsGeneralEuro,
|
|
559
|
+
hr as IconsGeneralExpandLeft,
|
|
560
|
+
Sr as IconsGeneralExpandLeftDouble,
|
|
561
|
+
kr as IconsGeneralExpandLeftStop,
|
|
562
|
+
Ar as IconsGeneralExpandRight,
|
|
563
|
+
br as IconsGeneralExpandRightDouble,
|
|
564
|
+
Br as IconsGeneralExpandRightStop,
|
|
565
|
+
Fr as IconsGeneralExpandTopStop,
|
|
566
|
+
Tr as IconsGeneralExport,
|
|
567
|
+
Dr as IconsGeneralExternal,
|
|
568
|
+
yr as IconsGeneralEye,
|
|
569
|
+
Ui as IconsGeneralFaceId,
|
|
570
|
+
xr as IconsGeneralFat,
|
|
571
|
+
Pr as IconsGeneralFavorite,
|
|
572
|
+
Lr as IconsGeneralFavorites,
|
|
573
|
+
wr as IconsGeneralFilter,
|
|
574
|
+
Mr as IconsGeneralFilterAlt,
|
|
575
|
+
Rr as IconsGeneralFilterAlt1,
|
|
576
|
+
Wr as IconsGeneralFilterBig,
|
|
577
|
+
Nr as IconsGeneralFilterBigAlt,
|
|
578
|
+
zr as IconsGeneralFire,
|
|
579
|
+
Er as IconsGeneralFire1,
|
|
580
|
+
Ur as IconsGeneralFire2,
|
|
581
|
+
Hr as IconsGeneralFlag,
|
|
582
|
+
Or as IconsGeneralFlagAlt,
|
|
583
|
+
$r as IconsGeneralFlagFinish,
|
|
584
|
+
Vr as IconsGeneralFlagFinishAlt,
|
|
585
|
+
zi as IconsGeneralFlash,
|
|
586
|
+
qr as IconsGeneralFlask,
|
|
587
|
+
Kr as IconsGeneralFlaskAlt,
|
|
588
|
+
Xr as IconsGeneralFolder,
|
|
589
|
+
jr as IconsGeneralFolderAdd,
|
|
590
|
+
Jr as IconsGeneralFolderAlt,
|
|
591
|
+
Qr as IconsGeneralFolderCheck,
|
|
592
|
+
Yr as IconsGeneralFolderCopy,
|
|
593
|
+
Zr as IconsGeneralFolderDel,
|
|
594
|
+
st as IconsGeneralFolderDublicate,
|
|
595
|
+
et as IconsGeneralFolderLine,
|
|
596
|
+
ot as IconsGeneralFolderOpen,
|
|
597
|
+
ct as IconsGeneralFolderOpenAlt,
|
|
598
|
+
nt as IconsGeneralFolderSearch,
|
|
599
|
+
rt as IconsGeneralFolderSend,
|
|
600
|
+
tt as IconsGeneralFolders,
|
|
601
|
+
at as IconsGeneralFoldersLine,
|
|
602
|
+
lt as IconsGeneralForm,
|
|
603
|
+
dt as IconsGeneralFrame,
|
|
604
|
+
it as IconsGeneralFrame11934,
|
|
605
|
+
vt as IconsGeneralFull,
|
|
606
|
+
gt as IconsGeneralFull1,
|
|
607
|
+
pt as IconsGeneralFull2,
|
|
608
|
+
mt as IconsGeneralFullAlt,
|
|
609
|
+
ft as IconsGeneralFullAlt1,
|
|
610
|
+
It as IconsGeneralFullScreenCorner,
|
|
611
|
+
Ct as IconsGeneralGamepad,
|
|
612
|
+
ut as IconsGeneralGift,
|
|
613
|
+
Hi as IconsGeneralGiftAlt,
|
|
614
|
+
Gt as IconsGeneralGlass,
|
|
615
|
+
_t as IconsGeneralGlasses,
|
|
616
|
+
Oi as IconsGeneralGlobe,
|
|
617
|
+
ht as IconsGeneralGpsFixed,
|
|
618
|
+
Vi as IconsGeneralHappy,
|
|
619
|
+
$i as IconsGeneralHappy1,
|
|
620
|
+
St as IconsGeneralHeadphonesFill,
|
|
621
|
+
kt as IconsGeneralHhourglassMoveLight,
|
|
622
|
+
qi as IconsGeneralHideEye,
|
|
623
|
+
At as IconsGeneralHome,
|
|
624
|
+
bt as IconsGeneralHorizontalSwitch,
|
|
625
|
+
Bt as IconsGeneralHorizontalTopLeftMain,
|
|
626
|
+
Ft as IconsGeneralHorizontalTopRightMain,
|
|
627
|
+
Tt as IconsGeneralHourglass,
|
|
628
|
+
Ki as IconsGeneralHumidity,
|
|
629
|
+
Xi as IconsGeneralIceCream,
|
|
630
|
+
ji as IconsGeneralIceCream1,
|
|
631
|
+
yt as IconsGeneralImg,
|
|
632
|
+
xt as IconsGeneralImgAlt,
|
|
633
|
+
Pt as IconsGeneralImgBox,
|
|
634
|
+
Lt as IconsGeneralImgLoadBox,
|
|
635
|
+
wt as IconsGeneralImgOutBox,
|
|
636
|
+
Rt as IconsGeneralImgRol,
|
|
637
|
+
Mt as IconsGeneralImport,
|
|
638
|
+
Wt as IconsGeneralIn,
|
|
639
|
+
Et as IconsGeneralInfo,
|
|
640
|
+
Nt as IconsGeneralInfo1,
|
|
641
|
+
Ut as IconsGeneralInfoAlt,
|
|
642
|
+
Ji as IconsGeneralInsta,
|
|
643
|
+
Dt as IconsGeneralIto,
|
|
644
|
+
zt as IconsGeneralKey,
|
|
645
|
+
Ht as IconsGeneralKeyAlt,
|
|
646
|
+
Ot as IconsGeneralKnife,
|
|
647
|
+
$t as IconsGeneralLable,
|
|
648
|
+
Vt as IconsGeneralLamp,
|
|
649
|
+
qt as IconsGeneralLayers,
|
|
650
|
+
Xt as IconsGeneralLessRoundDuotone,
|
|
651
|
+
Kt as IconsGeneralLessScreenCorner,
|
|
652
|
+
Qi as IconsGeneralLightning,
|
|
653
|
+
Yi as IconsGeneralLightningAlt,
|
|
654
|
+
Zi as IconsGeneralLightningRing,
|
|
655
|
+
jt as IconsGeneralLine,
|
|
656
|
+
Jt as IconsGeneralLineAlt,
|
|
657
|
+
Qt as IconsGeneralLineIn,
|
|
658
|
+
Yt as IconsGeneralLineInAlt,
|
|
659
|
+
Zt as IconsGeneralLineOut,
|
|
660
|
+
sa as IconsGeneralLineOutAlt,
|
|
661
|
+
sd as IconsGeneralLink,
|
|
662
|
+
od as IconsGeneralLinkAlt,
|
|
663
|
+
ed as IconsGeneralLinkAlt1,
|
|
664
|
+
ea as IconsGeneralLoadCircle,
|
|
665
|
+
oa as IconsGeneralLoadCircleFill,
|
|
666
|
+
ca as IconsGeneralLoadList,
|
|
667
|
+
na as IconsGeneralLoadListAlt,
|
|
668
|
+
ra as IconsGeneralLock,
|
|
669
|
+
ta as IconsGeneralLockAlt,
|
|
670
|
+
aa as IconsGeneralLol,
|
|
671
|
+
la as IconsGeneralMask,
|
|
672
|
+
ia as IconsGeneralMaterials,
|
|
673
|
+
cd as IconsGeneralMdIcon,
|
|
674
|
+
da as IconsGeneralMeatballsMenu,
|
|
675
|
+
pa as IconsGeneralMenu,
|
|
676
|
+
ga as IconsGeneralMenu1,
|
|
677
|
+
va as IconsGeneralMessage,
|
|
678
|
+
Ia as IconsGeneralMessageAlt,
|
|
679
|
+
fa as IconsGeneralMessageOpen,
|
|
680
|
+
ma as IconsGeneralMic,
|
|
681
|
+
ua as IconsGeneralMicAlt,
|
|
682
|
+
nd as IconsGeneralMobile,
|
|
683
|
+
Ca as IconsGeneralMolecule,
|
|
684
|
+
Ga as IconsGeneralMoney,
|
|
685
|
+
_a as IconsGeneralMoon,
|
|
686
|
+
ha as IconsGeneralMoonAlt,
|
|
687
|
+
Sa as IconsGeneralMortarboard,
|
|
688
|
+
ka as IconsGeneralMortarboardAlt,
|
|
689
|
+
Aa as IconsGeneralMortarboardAlt2,
|
|
690
|
+
ba as IconsGeneralMouse,
|
|
691
|
+
Ba as IconsGeneralMove,
|
|
692
|
+
Fa as IconsGeneralMoveAlt,
|
|
693
|
+
Ta as IconsGeneralMoveObject,
|
|
694
|
+
Da as IconsGeneralMusic,
|
|
695
|
+
xa as IconsGeneralNavigate,
|
|
696
|
+
Pa as IconsGeneralNesting,
|
|
697
|
+
La as IconsGeneralNews,
|
|
698
|
+
ya as IconsGeneralNfc,
|
|
699
|
+
rd as IconsGeneralNotebook,
|
|
700
|
+
td as IconsGeneralOil,
|
|
701
|
+
wa as IconsGeneralOnButton,
|
|
702
|
+
Ra as IconsGeneralOrange,
|
|
703
|
+
Ma as IconsGeneralOrder,
|
|
704
|
+
Wa as IconsGeneralOut,
|
|
705
|
+
ad as IconsGeneralPackage,
|
|
706
|
+
ld as IconsGeneralPackageBox,
|
|
707
|
+
id as IconsGeneralPackageBoxAlt,
|
|
708
|
+
dd as IconsGeneralPackageBoxClose,
|
|
709
|
+
gd as IconsGeneralPackageCar,
|
|
710
|
+
pd as IconsGeneralPackageFavourite,
|
|
711
|
+
vd as IconsGeneralPackageFavouriteAlt,
|
|
712
|
+
Id as IconsGeneralPackageSearch,
|
|
713
|
+
Na as IconsGeneralPaper,
|
|
714
|
+
Ea as IconsGeneralPaperAlt,
|
|
715
|
+
fd as IconsGeneralPaperClip,
|
|
716
|
+
Ua as IconsGeneralPass,
|
|
717
|
+
za as IconsGeneralPassword,
|
|
718
|
+
md as IconsGeneralPhone,
|
|
719
|
+
ud as IconsGeneralPieChart,
|
|
720
|
+
Cd as IconsGeneralPil,
|
|
721
|
+
Gd as IconsGeneralPils,
|
|
722
|
+
Oa as IconsGeneralPin,
|
|
723
|
+
Ha as IconsGeneralPin1,
|
|
724
|
+
$a as IconsGeneralPinAlt,
|
|
725
|
+
Va as IconsGeneralPined,
|
|
726
|
+
qa as IconsGeneralPipe,
|
|
727
|
+
Ka as IconsGeneralPipette,
|
|
728
|
+
Xa as IconsGeneralPizza,
|
|
729
|
+
ja as IconsGeneralPointers,
|
|
730
|
+
_d as IconsGeneralPool,
|
|
731
|
+
Ja as IconsGeneralPressure,
|
|
732
|
+
Qa as IconsGeneralPrint,
|
|
733
|
+
Ya as IconsGeneralProgress,
|
|
734
|
+
Za as IconsGeneralProtein,
|
|
735
|
+
hd as IconsGeneralPyramidChart,
|
|
736
|
+
sl as IconsGeneralQuestion,
|
|
737
|
+
el as IconsGeneralRain,
|
|
738
|
+
ol as IconsGeneralReduce,
|
|
739
|
+
cl as IconsGeneralRefresh,
|
|
740
|
+
nl as IconsGeneralRefresh2,
|
|
741
|
+
tl as IconsGeneralRefundBack,
|
|
742
|
+
rl as IconsGeneralRefundForward,
|
|
743
|
+
al as IconsGeneralRefundRingBack,
|
|
744
|
+
ll as IconsGeneralRefundRingForward,
|
|
745
|
+
il as IconsGeneralRefundRingTop,
|
|
746
|
+
dl as IconsGeneralRefundTop,
|
|
747
|
+
gl as IconsGeneralRemove,
|
|
748
|
+
pl as IconsGeneralReturn,
|
|
749
|
+
vl as IconsGeneralRing,
|
|
750
|
+
Il as IconsGeneralRingMove,
|
|
751
|
+
fl as IconsGeneralRoad,
|
|
752
|
+
ml as IconsGeneralRoadAlt,
|
|
753
|
+
ul as IconsGeneralRoadFinish,
|
|
754
|
+
Cl as IconsGeneralRofl,
|
|
755
|
+
Gl as IconsGeneralRoll,
|
|
756
|
+
_l as IconsGeneralRollAlt,
|
|
757
|
+
hl as IconsGeneralRoot,
|
|
758
|
+
Sl as IconsGeneralSad,
|
|
759
|
+
kl as IconsGeneralSadAlt,
|
|
760
|
+
Al as IconsGeneralSadAlt2,
|
|
761
|
+
bl as IconsGeneralSave,
|
|
762
|
+
Bl as IconsGeneralScan,
|
|
763
|
+
Fl as IconsGeneralScanAlt,
|
|
764
|
+
Tl as IconsGeneralScanAlt2,
|
|
765
|
+
Dl as IconsGeneralSearch,
|
|
766
|
+
yl as IconsGeneralSearchAlt,
|
|
767
|
+
xl as IconsGeneralSend,
|
|
768
|
+
Pl as IconsGeneralSendHor,
|
|
769
|
+
Ll as IconsGeneralSertificate,
|
|
770
|
+
wl as IconsGeneralServer,
|
|
771
|
+
Rl as IconsGeneralSignInCircle,
|
|
772
|
+
Ml as IconsGeneralSignInSqure,
|
|
773
|
+
Wl as IconsGeneralSignOutBis,
|
|
774
|
+
Nl as IconsGeneralSignOutCircle,
|
|
775
|
+
El as IconsGeneralSignOutSqure,
|
|
776
|
+
Ul as IconsGeneralSpeed,
|
|
777
|
+
zl as IconsGeneralSpeedAlt,
|
|
778
|
+
Hl as IconsGeneralSquare,
|
|
779
|
+
Ol as IconsGeneralStackframe,
|
|
780
|
+
$l as IconsGeneralStat,
|
|
781
|
+
Vl as IconsGeneralStatus,
|
|
782
|
+
ql as IconsGeneralStatusList,
|
|
783
|
+
Sd as IconsGeneralStethoscope,
|
|
784
|
+
Kl as IconsGeneralStop,
|
|
785
|
+
Xl as IconsGeneralSubttasks,
|
|
786
|
+
jl as IconsGeneralSubttasksAlt,
|
|
787
|
+
kd as IconsGeneralSuitcase,
|
|
788
|
+
Jl as IconsGeneralTable,
|
|
789
|
+
Ql as IconsGeneralTablet,
|
|
790
|
+
Yl as IconsGeneralTarget,
|
|
791
|
+
si as IconsGeneralTemperature,
|
|
792
|
+
Zl as IconsGeneralTemperature1,
|
|
793
|
+
ei as IconsGeneralTie,
|
|
794
|
+
oi as IconsGeneralTooth,
|
|
795
|
+
ci as IconsGeneralTransger,
|
|
796
|
+
ni as IconsGeneralTrash,
|
|
797
|
+
ri as IconsGeneralTree,
|
|
798
|
+
ti as IconsGeneralTrophy,
|
|
799
|
+
ai as IconsGeneralTumer,
|
|
800
|
+
li as IconsGeneralTurbine,
|
|
801
|
+
di as IconsGeneralUnlock,
|
|
802
|
+
ii as IconsGeneralUnlock1,
|
|
803
|
+
gi as IconsGeneralVector,
|
|
804
|
+
pi as IconsGeneralVerticalSwitch,
|
|
805
|
+
vi as IconsGeneralVerticalSwitchAlt,
|
|
806
|
+
Ii as IconsGeneralVerticalSwitchLong,
|
|
807
|
+
fi as IconsGeneralWater,
|
|
808
|
+
mi as IconsGeneralWaterfall,
|
|
809
|
+
ui as IconsGeneralWinter,
|
|
810
|
+
Ci as IconsGeneralWow,
|
|
811
|
+
Ug as IconsLocationMap,
|
|
812
|
+
Eg as IconsLocationMap1,
|
|
813
|
+
zg as IconsLocationWorld,
|
|
814
|
+
Hg as IconsLocationWorld2,
|
|
815
|
+
Og as IconsLocationWorldAlt,
|
|
816
|
+
$g as IconsMediaPlay,
|
|
817
|
+
Vg as IconsMediaSound,
|
|
818
|
+
jg as IconsMediaSoundMax,
|
|
819
|
+
Jg as IconsMediaSoundMin,
|
|
820
|
+
Qg as IconsMediaSoundMute,
|
|
821
|
+
qg as IconsMediaStopAndPlay,
|
|
822
|
+
Kg as IconsMediaVideo,
|
|
823
|
+
Xg as IconsMediaVideoFile,
|
|
824
|
+
Rd as IconsNavigationArhivesGroupDocks,
|
|
825
|
+
Md as IconsNavigationArrowAltLdown,
|
|
826
|
+
Wd as IconsNavigationArrowAltLeft,
|
|
827
|
+
Nd as IconsNavigationArrowAltLright,
|
|
828
|
+
Ed as IconsNavigationArrowAltLtop,
|
|
829
|
+
Ud as IconsNavigationArrowDownLong,
|
|
830
|
+
zd as IconsNavigationArrowLeftLong,
|
|
831
|
+
Hd as IconsNavigationArrowRightLong,
|
|
832
|
+
Od as IconsNavigationArrowTopLong,
|
|
833
|
+
$d as IconsNavigationColumUp,
|
|
834
|
+
Vd as IconsNavigationDown,
|
|
835
|
+
qd as IconsNavigationDownload,
|
|
836
|
+
Kd as IconsNavigationDownloadCircle,
|
|
837
|
+
Xd as IconsNavigationDownloadCircleFill,
|
|
838
|
+
jd as IconsNavigationExpandDown,
|
|
839
|
+
Jd as IconsNavigationExpandDownDouble,
|
|
840
|
+
Qd as IconsNavigationExpandDownStop,
|
|
841
|
+
Yd as IconsNavigationExpandUp,
|
|
842
|
+
Zd as IconsNavigationExpandUpDouble,
|
|
843
|
+
sg as IconsNavigationFolderUp,
|
|
844
|
+
eg as IconsNavigationFoldersGroup,
|
|
845
|
+
og as IconsNavigationGroup,
|
|
846
|
+
hg as IconsNavigationGroupAdd,
|
|
847
|
+
cg as IconsNavigationGroupScan,
|
|
848
|
+
Sg as IconsNavigationGroupShare,
|
|
849
|
+
ng as IconsNavigationHorizontalDownLeftMain,
|
|
850
|
+
rg as IconsNavigationHorizontalDownRightMain,
|
|
851
|
+
tg as IconsNavigationLineUp,
|
|
852
|
+
ag as IconsNavigationRefundDown,
|
|
853
|
+
lg as IconsNavigationRefundRingDown,
|
|
854
|
+
ig as IconsNavigationRegroup,
|
|
855
|
+
dg as IconsNavigationSizeDown,
|
|
856
|
+
gg as IconsNavigationSizeRightUp,
|
|
857
|
+
Ig as IconsNavigationSort,
|
|
858
|
+
fg as IconsNavigationSortArrow,
|
|
859
|
+
mg as IconsNavigationSortDown,
|
|
860
|
+
pg as IconsNavigationSortList,
|
|
861
|
+
vg as IconsNavigationSortListAlt,
|
|
862
|
+
ug as IconsNavigationSortUp,
|
|
863
|
+
Cg as IconsNavigationSortUpAlt,
|
|
864
|
+
kg as IconsNavigationThumbDown,
|
|
865
|
+
Ag as IconsNavigationThumbUp,
|
|
866
|
+
Gg as IconsNavigationUp,
|
|
867
|
+
_g as IconsNavigationUpload,
|
|
868
|
+
Yg as IconsSettingsSettingAltLine,
|
|
869
|
+
Zg as IconsSettingsSettingLine,
|
|
870
|
+
sp as IconsSettingsSettingVert,
|
|
871
|
+
tp as IconsSettingsTableSettings,
|
|
872
|
+
op as IconsSettingsWidget,
|
|
873
|
+
ep as IconsSettingsWidget1,
|
|
874
|
+
cp as IconsSettingsWidgetAdd,
|
|
875
|
+
rp as IconsSettingsWidgetAlt,
|
|
876
|
+
np as IconsSettingsWidgetAlt1,
|
|
877
|
+
Fg as IconsTextCreditCard,
|
|
878
|
+
Tg as IconsTextEdit,
|
|
879
|
+
Dg as IconsTextEdit2,
|
|
880
|
+
yg as IconsTextEditAlt,
|
|
881
|
+
xg as IconsTextText,
|
|
882
|
+
Pg as IconsTextTypo,
|
|
883
|
+
bd as IconsTimeAlarmclock,
|
|
884
|
+
Bd as IconsTimeClock,
|
|
885
|
+
Fd as IconsTimeJumpTime,
|
|
886
|
+
Td as IconsTimeTime,
|
|
887
|
+
Dd as IconsTimeTimeAtack,
|
|
888
|
+
yd as IconsTimeTimeDelLight,
|
|
889
|
+
xd as IconsTimeTimeProgress,
|
|
890
|
+
Pd as IconsTimeTimeSleep,
|
|
891
|
+
Ld as IconsTimeWatch,
|
|
892
|
+
wd as IconsTimeWatchAlt,
|
|
893
|
+
up as IconsUsersUser,
|
|
894
|
+
Cp as IconsUsersUserAdd,
|
|
895
|
+
Gp as IconsUsersUserAddAlt,
|
|
896
|
+
_p as IconsUsersUserAlt,
|
|
897
|
+
hp as IconsUsersUserBox,
|
|
898
|
+
Sp as IconsUsersUserCicrle,
|
|
899
|
+
kp as IconsUsersUserScan,
|
|
900
|
+
vp as IconsWeatherStorm,
|
|
901
|
+
fp as IconsWeatherSun,
|
|
902
|
+
Ip as IconsWeatherSun1,
|
|
903
|
+
mp as IconsWeatherSunlight,
|
|
904
|
+
Bp as ShadowBase,
|
|
905
|
+
Tp as ShadowLg,
|
|
906
|
+
Fp as ShadowMd,
|
|
907
|
+
Ap as ShadowNone,
|
|
908
|
+
bp as ShadowSm,
|
|
909
|
+
Dp as ShadowXl,
|
|
910
|
+
yp as Spacing0,
|
|
911
|
+
xp as Spacing1,
|
|
912
|
+
Np as Spacing10,
|
|
913
|
+
Ep as Spacing12,
|
|
914
|
+
Up as Spacing16,
|
|
915
|
+
Pp as Spacing2,
|
|
916
|
+
zp as Spacing20,
|
|
917
|
+
Hp as Spacing24,
|
|
918
|
+
Lp as Spacing3,
|
|
919
|
+
Op as Spacing32,
|
|
920
|
+
wp as Spacing4,
|
|
921
|
+
Rp as Spacing5,
|
|
922
|
+
Mp as Spacing6,
|
|
923
|
+
Wp as Spacing8,
|
|
924
|
+
iv as ThemeAssetsLogoDefault,
|
|
925
|
+
dv as ThemeAssetsLogoSmall,
|
|
926
|
+
pv as ThemeAssetsLogoSmallWhite,
|
|
927
|
+
gv as ThemeAssetsLogoWhite,
|
|
928
|
+
Qv as ThemeColorsBorderDefault,
|
|
929
|
+
Yv as ThemeColorsBorderMuted,
|
|
930
|
+
Zv as ThemeColorsBorderStrong,
|
|
931
|
+
Dv as ThemeColorsBrandAccent100,
|
|
932
|
+
yv as ThemeColorsBrandAccent200,
|
|
933
|
+
Fv as ThemeColorsBrandAccent25,
|
|
934
|
+
xv as ThemeColorsBrandAccent300,
|
|
935
|
+
Pv as ThemeColorsBrandAccent400,
|
|
936
|
+
Tv as ThemeColorsBrandAccent50,
|
|
937
|
+
Lv as ThemeColorsBrandAccent500,
|
|
938
|
+
fv as ThemeColorsBrandPrimary100,
|
|
939
|
+
mv as ThemeColorsBrandPrimary200,
|
|
940
|
+
vv as ThemeColorsBrandPrimary25,
|
|
941
|
+
uv as ThemeColorsBrandPrimary300,
|
|
942
|
+
Cv as ThemeColorsBrandPrimary400,
|
|
943
|
+
Iv as ThemeColorsBrandPrimary50,
|
|
944
|
+
Gv as ThemeColorsBrandPrimary500,
|
|
945
|
+
Sv as ThemeColorsBrandSecondary100,
|
|
946
|
+
kv as ThemeColorsBrandSecondary200,
|
|
947
|
+
_v as ThemeColorsBrandSecondary25,
|
|
948
|
+
Av as ThemeColorsBrandSecondary300,
|
|
949
|
+
bv as ThemeColorsBrandSecondary400,
|
|
950
|
+
hv as ThemeColorsBrandSecondary50,
|
|
951
|
+
Bv as ThemeColorsBrandSecondary500,
|
|
952
|
+
G0 as ThemeColorsCommonDanger200,
|
|
953
|
+
_0 as ThemeColorsCommonDanger400,
|
|
954
|
+
C0 as ThemeColorsCommonDanger50,
|
|
955
|
+
h0 as ThemeColorsCommonDanger600,
|
|
956
|
+
S0 as ThemeColorsCommonDanger800,
|
|
957
|
+
k0 as ThemeColorsCommonDanger950,
|
|
958
|
+
e0 as ThemeColorsCommonSlate200,
|
|
959
|
+
o0 as ThemeColorsCommonSlate400,
|
|
960
|
+
s0 as ThemeColorsCommonSlate50,
|
|
961
|
+
c0 as ThemeColorsCommonSlate600,
|
|
962
|
+
n0 as ThemeColorsCommonSlate800,
|
|
963
|
+
r0 as ThemeColorsCommonSlate950,
|
|
964
|
+
a0 as ThemeColorsCommonSucceed200,
|
|
965
|
+
l0 as ThemeColorsCommonSucceed400,
|
|
966
|
+
t0 as ThemeColorsCommonSucceed50,
|
|
967
|
+
i0 as ThemeColorsCommonSucceed600,
|
|
968
|
+
d0 as ThemeColorsCommonSucceed800,
|
|
969
|
+
g0 as ThemeColorsCommonSucceed950,
|
|
970
|
+
v0 as ThemeColorsCommonWarning200,
|
|
971
|
+
I0 as ThemeColorsCommonWarning400,
|
|
972
|
+
p0 as ThemeColorsCommonWarning50,
|
|
973
|
+
f0 as ThemeColorsCommonWarning600,
|
|
974
|
+
m0 as ThemeColorsCommonWarning800,
|
|
975
|
+
u0 as ThemeColorsCommonWarning950,
|
|
976
|
+
Rv as ThemeColorsPrimary100,
|
|
977
|
+
Mv as ThemeColorsPrimary200,
|
|
978
|
+
Wv as ThemeColorsPrimary300,
|
|
979
|
+
Nv as ThemeColorsPrimary400,
|
|
980
|
+
wv as ThemeColorsPrimary50,
|
|
981
|
+
Ev as ThemeColorsPrimary500,
|
|
982
|
+
Uv as ThemeColorsPrimary600,
|
|
983
|
+
zv as ThemeColorsPrimary700,
|
|
984
|
+
Hv as ThemeColorsPrimary800,
|
|
985
|
+
Ov as ThemeColorsPrimary900,
|
|
986
|
+
A0 as ThemeColorsStateError,
|
|
987
|
+
b0 as ThemeColorsStateErrorBackground,
|
|
988
|
+
B0 as ThemeColorsStateSuccess,
|
|
989
|
+
F0 as ThemeColorsStateSuccessBackground,
|
|
990
|
+
T0 as ThemeColorsStateWarning,
|
|
991
|
+
D0 as ThemeColorsStateWarningBackground,
|
|
992
|
+
$v as ThemeColorsSurfaceBackground,
|
|
993
|
+
Vv as ThemeColorsSurfaceCard,
|
|
994
|
+
qv as ThemeColorsSurfaceOverlay,
|
|
995
|
+
Jv as ThemeColorsTextInverse,
|
|
996
|
+
jv as ThemeColorsTextMuted,
|
|
997
|
+
Kv as ThemeColorsTextPrimary,
|
|
998
|
+
Xv as ThemeColorsTextSecondary,
|
|
999
|
+
E as ThemeProvider,
|
|
1000
|
+
O as clubEmployesDark,
|
|
1001
|
+
H as clubEmployesLight,
|
|
1002
|
+
V as gifteoDark,
|
|
1003
|
+
$ as gifteoLight
|
|
1004
|
+
};
|
package/dist/utopia.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.theme-provider[data-v-0be50703]{height:100%;width:100%}.button[data-v-c5f4114b]{border:none;outline:none;text-decoration:none;cursor:pointer;position:relative;display:inline-flex;align-items:center;justify-content:center;gap:var(--spacing-2);font-family:var(--font-family-sans);font-weight:var(--font-weight-medium);line-height:var(--font-line-height-normal);text-align:center;white-space:nowrap;transition:all .2s ease;-webkit-user-select:none;user-select:none;border-radius:var(--border-radius-base);border:var(--border-width-1) solid transparent}.button[data-v-c5f4114b]:focus-visible{outline:var(--border-width-2) solid var(--theme-colors-primary-500);outline-offset:var(--spacing-1)}.button--sm[data-v-c5f4114b]{padding:var(--spacing-2) var(--spacing-3);font-size:var(--font-size-sm);min-height:32px}.button--md[data-v-c5f4114b]{padding:var(--spacing-3) var(--spacing-4);font-size:var(--font-size-base);min-height:40px}.button--lg[data-v-c5f4114b]{padding:var(--spacing-4) var(--spacing-6);font-size:var(--font-size-lg);min-height:48px}.button--primary[data-v-c5f4114b]{background-color:var(--theme-colors-primary-500);color:var(--theme-colors-text-inverse);border-color:var(--theme-colors-primary-500)}.button--primary[data-v-c5f4114b]:hover:not(:disabled){background-color:var(--theme-colors-primary-600);border-color:var(--theme-colors-primary-600);transform:translateY(-1px);box-shadow:var(--shadow-md)}.button--primary[data-v-c5f4114b]:active:not(:disabled){background-color:var(--theme-colors-primary-700);border-color:var(--theme-colors-primary-700);transform:translateY(0)}.button--secondary[data-v-c5f4114b]{background-color:var(--theme-colors-surface-card);color:var(--theme-colors-text-primary);border-color:var(--theme-colors-border-default)}.button--secondary[data-v-c5f4114b]:hover:not(:disabled){background-color:var(--theme-colors-border-muted);border-color:var(--theme-colors-border-strong);transform:translateY(-1px);box-shadow:var(--shadow-sm)}.button--secondary[data-v-c5f4114b]:active:not(:disabled){background-color:var(--theme-colors-border-default)}.button--outline[data-v-c5f4114b]{background-color:transparent;color:var(--theme-colors-primary-500);border-color:var(--theme-colors-primary-500)}.button--outline[data-v-c5f4114b]:hover:not(:disabled){background-color:var(--theme-colors-primary-50);transform:translateY(-1px)}.button--outline[data-v-c5f4114b]:active:not(:disabled){background-color:var(--theme-colors-primary-100)}.button--ghost[data-v-c5f4114b]{background-color:transparent;color:var(--theme-colors-text-primary);border-color:transparent}.button--ghost[data-v-c5f4114b]:hover:not(:disabled){background-color:var(--theme-colors-border-muted)}.button--ghost[data-v-c5f4114b]:active:not(:disabled){background-color:var(--theme-colors-border-default)}.button--danger[data-v-c5f4114b]{background-color:var(--theme-colors-state-error);color:var(--theme-colors-text-inverse);border-color:var(--theme-colors-state-error)}.button--danger[data-v-c5f4114b]:hover:not(:disabled){background-color:#dc2626;filter:brightness(.9);transform:translateY(-1px);box-shadow:var(--shadow-md)}.button--danger[data-v-c5f4114b]:active:not(:disabled){filter:brightness(.8);transform:translateY(0)}.button--block[data-v-c5f4114b]{width:100%}.button--disabled[data-v-c5f4114b]{opacity:.5;cursor:not-allowed;pointer-events:none}.button--loading[data-v-c5f4114b]{cursor:not-allowed}.button-content[data-v-c5f4114b]{display:flex;align-items:center;gap:var(--spacing-2);transition:opacity .2s ease}.button-content--hidden[data-v-c5f4114b]{opacity:0}.button-text[data-v-c5f4114b]{flex:1}.button-icon[data-v-c5f4114b]{display:flex;align-items:center;justify-content:center}.button-icon--before[data-v-c5f4114b]{margin-right:calc(-1 * var(--spacing-1))}.button-icon--after[data-v-c5f4114b]{margin-left:calc(-1 * var(--spacing-1))}.button-spinner[data-v-c5f4114b]{position:absolute;display:flex;align-items:center;justify-content:center}.spinner-icon[data-v-c5f4114b]{width:16px;height:16px;color:currentColor}.button--sm .spinner-icon[data-v-c5f4114b]{width:14px;height:14px}.button--lg .spinner-icon[data-v-c5f4114b]{width:18px;height:18px}.icon[data-v-8bcf9243]{display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;transition:color .2s ease,transform .2s ease}.icon--xs[data-v-8bcf9243]{width:16px;height:16px}.icon--sm[data-v-8bcf9243]{width:20px;height:20px}.icon--md[data-v-8bcf9243]{width:24px;height:24px}.icon--lg[data-v-8bcf9243]{width:32px;height:32px}.icon--xl[data-v-8bcf9243]{width:48px;height:48px}.icon[data-v-8bcf9243]:hover{transform:scale(1.05)}.icon[data-v-8bcf9243] svg{width:100%;height:100%;display:block}.icon[data-v-8bcf9243] path,.icon[data-v-8bcf9243] circle,.icon[data-v-8bcf9243] line,.icon[data-v-8bcf9243] rect,.icon[data-v-8bcf9243] polygon{stroke:currentColor;fill:currentColor}.icon[data-v-8bcf9243] svg[fill=none] path,.icon[data-v-8bcf9243] svg[fill=none] circle,.icon[data-v-8bcf9243] svg[fill=none] line,.icon[data-v-8bcf9243] svg[fill=none] rect,.icon[data-v-8bcf9243] svg[fill=none] polygon{fill:none;stroke:currentColor}.icon[data-v-8bcf9243] [stroke-opacity]{stroke:currentColor}.icon[data-v-8bcf9243] [fill-opacity]{fill:currentColor}
|
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@club-employes/utopia",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Design system for Club Employes applications",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
},
|
|
14
|
+
"./styles": "./dist/utopia.css"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "vite",
|
|
21
|
+
"build": "npm run build:tokens && vite build",
|
|
22
|
+
"build:tokens": "node scripts/build-tokens.js",
|
|
23
|
+
"preview": "vite preview"
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"vue": "^3.5.17"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
30
|
+
"@vue/tsconfig": "^0.7.0",
|
|
31
|
+
"style-dictionary": "^5.0.1",
|
|
32
|
+
"typescript": "~5.8.3",
|
|
33
|
+
"vite": "^7.0.4",
|
|
34
|
+
"vue-tsc": "^2.2.12"
|
|
35
|
+
},
|
|
36
|
+
"keywords": [
|
|
37
|
+
"design-system",
|
|
38
|
+
"vue",
|
|
39
|
+
"components",
|
|
40
|
+
"tokens"
|
|
41
|
+
],
|
|
42
|
+
"author": "Club Employes",
|
|
43
|
+
"license": "MIT",
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "git+https://github.com/club-employes/ds.git"
|
|
47
|
+
}
|
|
48
|
+
}
|