@avenirs-esr/avenirs-dsav 0.1.86 → 0.1.88
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/dist/avenirs-dsav.css +1 -1
- package/dist/components/interaction/inputs/AvInput/AvInput.stub.d.ts +33 -0
- package/dist/components/interaction/selects/AvAutocomplete/AvAutocomplete.stories.d.ts +1 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.es.js +131 -130
- package/dist/test-utils.cjs.js +11 -11
- package/dist/test-utils.es.js +45 -27
- package/dist/tests/index.d.ts +2 -1
- package/dist/tokens/icons.d.ts +2 -1
- package/package.json +1 -1
- package/src/styles/components/_icons.scss +1 -0
package/dist/test-utils.cjs.js
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<slot />
|
|
16
16
|
</button>
|
|
17
17
|
</div>
|
|
18
|
-
`,setup(n){const t=e.inject(l.registerAccordionKey);if(!t){const o=e.ref(!1);return{isActive:o,expand:()=>{o.value=!o.value}}}const{isActive:
|
|
18
|
+
`,setup(n){const t=e.inject(l.registerAccordionKey);if(!t){const o=e.ref(!1);return{isActive:o,expand:()=>{o.value=!o.value}}}const{isActive:a,expand:i}=t(e.toRef(n,"title"));return{isActive:a,expand:i}}}),m=e.defineComponent({name:"AvButton",props:["label","icon","variant","type","disabled","isLoading","small"],emits:["click"],template:`
|
|
19
19
|
<button
|
|
20
20
|
class="av-button-stub"
|
|
21
21
|
:disabled="disabled"
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
>
|
|
24
24
|
{{ label }}
|
|
25
25
|
</button>
|
|
26
|
-
`}),
|
|
26
|
+
`}),v=e.defineComponent({name:"AvCancelConfirmButtons",props:["cancelLabel","cancelIcon","confirmLabel","cancelDisabled","cancelIsLoading","confirmIcon","confirmDisabled","confirmIsLoading"],emits:["cancel","confirm"],template:`
|
|
27
27
|
<div class="av-cancel-confirmation-buttons-stub" >
|
|
28
28
|
<button
|
|
29
29
|
class="cancel"
|
|
@@ -54,16 +54,16 @@
|
|
|
54
54
|
/>
|
|
55
55
|
<label :for="id"><slot name="label">{{ label }}</slot></label>
|
|
56
56
|
</div>
|
|
57
|
-
`}),g=e.defineComponent({name:"AvList",props:["size"],template:`
|
|
57
|
+
`}),g=e.defineComponent({name:"AvInput",props:{modelValue:String,label:String,placeholder:String,isValid:Boolean,isTextarea:Boolean,labelVisible:Boolean,disabled:Boolean,required:Boolean,maxlength:Number,errorMessage:String,prefixIcon:String},emits:["update:modelValue"],template:'<input data-testid="av-input-stub" :value="modelValue" :placeholder="placeholder" :disabled="disabled" :required="required" :maxlength="maxlength" /><slot name="customCaptions" :current-value="modelValue" />'}),S=e.defineComponent({name:"AvList",props:["size"],template:`
|
|
58
58
|
<div class="av-list-stub">
|
|
59
59
|
<slot />
|
|
60
|
-
</div>`}),
|
|
60
|
+
</div>`}),A=e.defineComponent({name:"AvListItem",props:["clickable","hoverBackgroundColor","selected","icon","iconSize","iconColor","colorOnHover"],emits:["click"],template:`
|
|
61
61
|
<div
|
|
62
62
|
class="av-list-item-stub"
|
|
63
63
|
@click="$emit('click')"
|
|
64
64
|
>
|
|
65
65
|
<slot />
|
|
66
|
-
</div>`}),
|
|
66
|
+
</div>`}),f=e.defineComponent({name:"AvTagPicker",props:["label","options","selected","handleSelectChange"],template:`
|
|
67
67
|
<div class="av-tag-picker-stub">
|
|
68
68
|
<button
|
|
69
69
|
v-for="option in options"
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
{{ option.label }}
|
|
75
75
|
</button>
|
|
76
76
|
</div>
|
|
77
|
-
`}),
|
|
77
|
+
`}),h=e.defineComponent({name:"AvAutocomplete",props:["modelValue","options","loading","inputOptions","getOptionLabel","getOptionKey","multiSelect","serverSideFiltering","enableLoadMore","maxDropdownHeight"],emits:["update:modelValue","search","clear","loadMore"],template:`
|
|
78
78
|
<div class="av-autocomplete-stub">
|
|
79
79
|
<slot
|
|
80
80
|
name="item"
|
|
@@ -128,12 +128,12 @@
|
|
|
128
128
|
<span class="inactive-text">
|
|
129
129
|
{{ inactiveText }}
|
|
130
130
|
</span>
|
|
131
|
-
</div>`}),
|
|
131
|
+
</div>`}),x=e.defineComponent({name:"AvBreadcrumb",template:'<div class="av-breadcrumb-stub" />',props:["links","navigationLabel","showBreadcrumbLabel"]}),y=e.defineComponent({name:"AvSideNavigation",props:{items:Array,selectedItem:String,isSideMenuCollapsed:Boolean,collapsedWidth:String},emits:["update:selectedItem","update:isSideMenuCollapsed"],template:`
|
|
132
132
|
<div
|
|
133
133
|
class="av-side-navigation-stub"
|
|
134
134
|
@click="$emit('update:isSideMenuCollapsed', !isSideMenuCollapsed)"
|
|
135
135
|
/>
|
|
136
|
-
`}),
|
|
136
|
+
`}),B=e.defineComponent({name:"AvStepper",props:{steps:{type:Array,required:!0},currentStep:{type:Number,required:!0}},template:`
|
|
137
137
|
<div class="av-stepper-stub">
|
|
138
138
|
<div
|
|
139
139
|
v-for="(step, index) in steps"
|
|
@@ -144,12 +144,12 @@
|
|
|
144
144
|
{{ index + 1 }}. {{ step }}
|
|
145
145
|
</div>
|
|
146
146
|
</div>
|
|
147
|
-
`}),
|
|
147
|
+
`}),V=e.defineComponent({name:"AvDrawer",props:["show","position","width"],emits:["escape-pressed"],template:`
|
|
148
148
|
<div class="av-drawer-stub">
|
|
149
149
|
<slot />
|
|
150
150
|
<slot name="footer" />
|
|
151
151
|
</div>
|
|
152
|
-
`}),
|
|
152
|
+
`}),I=e.defineComponent({name:"AvDropdown",props:["items","triggerAriaLabel","triggerIcon","triggerLabel","triggerVariant","triggerSmall","padding"],emits:["itemSelected"],template:`
|
|
153
153
|
<div class="av-dropdown-stub">
|
|
154
154
|
<button
|
|
155
155
|
v-for="item in items"
|
|
@@ -160,4 +160,4 @@
|
|
|
160
160
|
{{ item.label }}
|
|
161
161
|
</button>
|
|
162
162
|
</div>
|
|
163
|
-
`});function T(){return{given(n,t){return describe(`🔵 GIVEN ${n}`,t),this},when(n,t){return describe(`🔶 WHEN ${n}`,t),this},and(n,t){return describe(`➕ AND ${n}`,t),this},then(n,t){return it(`🟩 THEN ${n}`,t),this}}}exports.AvAccordionStub=u;exports.AvAutocompleteStub=
|
|
163
|
+
`});function T(){return{given(n,t){return describe(`🔵 GIVEN ${n}`,t),this},when(n,t){return describe(`🔶 WHEN ${n}`,t),this},and(n,t){return describe(`➕ AND ${n}`,t),this},then(n,t){return it(`🟩 THEN ${n}`,t),this}}}exports.AvAccordionStub=u;exports.AvAutocompleteStub=h;exports.AvBadgeStub=s;exports.AvBreadcrumbStub=x;exports.AvButtonStub=m;exports.AvCancelConfirmButtonsStub=v;exports.AvCheckboxStub=b;exports.AvDrawerStub=V;exports.AvDropdownStub=I;exports.AvFieldsetStub=d;exports.AvIconStub=r;exports.AvIconTextStub=p;exports.AvInputStub=g;exports.AvListItemStub=A;exports.AvListStub=S;exports.AvSelectStub=C;exports.AvSideNavigationStub=y;exports.AvStepperStub=B;exports.AvTagPickerStub=f;exports.AvTagStub=c;exports.AvToggleStub=k;exports.BddTest=T;
|
package/dist/test-utils.es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { defineComponent as e, inject as
|
|
1
|
+
import { defineComponent as e, inject as n, ref as s, toRef as c } from "vue";
|
|
2
2
|
import { r } from "./injection-key.es.js";
|
|
3
3
|
import "@vue/test-utils";
|
|
4
|
-
const
|
|
4
|
+
const v = e({
|
|
5
5
|
name: "AvBadge",
|
|
6
6
|
template: `
|
|
7
7
|
<div
|
|
@@ -44,11 +44,11 @@ const m = e({
|
|
|
44
44
|
name: "AvFieldset",
|
|
45
45
|
props: ["id", "legend", "legendId", "class", "ariaLive"],
|
|
46
46
|
template: "<fieldset><slot /></fieldset>"
|
|
47
|
-
}),
|
|
47
|
+
}), S = e({
|
|
48
48
|
name: "AvIcon",
|
|
49
49
|
props: ["name", "color", "size", "title", "animation"],
|
|
50
50
|
template: '<div class="av-vicon-stub" />'
|
|
51
|
-
}),
|
|
51
|
+
}), A = e({
|
|
52
52
|
name: "AvIconText",
|
|
53
53
|
template: '<div class="av-icon-text" />',
|
|
54
54
|
props: ["icon", "text"]
|
|
@@ -68,15 +68,15 @@ const m = e({
|
|
|
68
68
|
</div>
|
|
69
69
|
`,
|
|
70
70
|
setup(a) {
|
|
71
|
-
const t =
|
|
71
|
+
const t = n(r);
|
|
72
72
|
if (!t) {
|
|
73
73
|
const i = s(!1);
|
|
74
74
|
return { isActive: i, expand: () => {
|
|
75
75
|
i.value = !i.value;
|
|
76
76
|
} };
|
|
77
77
|
}
|
|
78
|
-
const { isActive: o, expand:
|
|
79
|
-
return { isActive: o, expand:
|
|
78
|
+
const { isActive: o, expand: l } = t(c(a, "title"));
|
|
79
|
+
return { isActive: o, expand: l };
|
|
80
80
|
}
|
|
81
81
|
}), h = e({
|
|
82
82
|
name: "AvButton",
|
|
@@ -148,13 +148,30 @@ const m = e({
|
|
|
148
148
|
</div>
|
|
149
149
|
`
|
|
150
150
|
}), y = e({
|
|
151
|
+
name: "AvInput",
|
|
152
|
+
props: {
|
|
153
|
+
modelValue: String,
|
|
154
|
+
label: String,
|
|
155
|
+
placeholder: String,
|
|
156
|
+
isValid: Boolean,
|
|
157
|
+
isTextarea: Boolean,
|
|
158
|
+
labelVisible: Boolean,
|
|
159
|
+
disabled: Boolean,
|
|
160
|
+
required: Boolean,
|
|
161
|
+
maxlength: Number,
|
|
162
|
+
errorMessage: String,
|
|
163
|
+
prefixIcon: String
|
|
164
|
+
},
|
|
165
|
+
emits: ["update:modelValue"],
|
|
166
|
+
template: '<input data-testid="av-input-stub" :value="modelValue" :placeholder="placeholder" :disabled="disabled" :required="required" :maxlength="maxlength" /><slot name="customCaptions" :current-value="modelValue" />'
|
|
167
|
+
}), V = e({
|
|
151
168
|
name: "AvList",
|
|
152
169
|
props: ["size"],
|
|
153
170
|
template: `
|
|
154
171
|
<div class="av-list-stub">
|
|
155
172
|
<slot />
|
|
156
173
|
</div>`
|
|
157
|
-
}),
|
|
174
|
+
}), B = e({
|
|
158
175
|
name: "AvListItem",
|
|
159
176
|
props: ["clickable", "hoverBackgroundColor", "selected", "icon", "iconSize", "iconColor", "colorOnHover"],
|
|
160
177
|
emits: ["click"],
|
|
@@ -165,7 +182,7 @@ const m = e({
|
|
|
165
182
|
>
|
|
166
183
|
<slot />
|
|
167
184
|
</div>`
|
|
168
|
-
}),
|
|
185
|
+
}), C = e({
|
|
169
186
|
name: "AvTagPicker",
|
|
170
187
|
props: [
|
|
171
188
|
"label",
|
|
@@ -185,7 +202,7 @@ const m = e({
|
|
|
185
202
|
</button>
|
|
186
203
|
</div>
|
|
187
204
|
`
|
|
188
|
-
}),
|
|
205
|
+
}), I = e({
|
|
189
206
|
name: "AvAutocomplete",
|
|
190
207
|
props: [
|
|
191
208
|
"modelValue",
|
|
@@ -252,7 +269,7 @@ const m = e({
|
|
|
252
269
|
<span v-if="!errorMessage && successMessage">{{ successMessage }}</span>
|
|
253
270
|
</select>
|
|
254
271
|
`
|
|
255
|
-
}),
|
|
272
|
+
}), T = e({
|
|
256
273
|
name: "AvToggle",
|
|
257
274
|
props: ["id", "name", "modelValue", "description", "activeText", "inactiveText", "disabled"],
|
|
258
275
|
emits: ["update:modelValue"],
|
|
@@ -279,7 +296,7 @@ const m = e({
|
|
|
279
296
|
name: "AvBreadcrumb",
|
|
280
297
|
template: '<div class="av-breadcrumb-stub" />',
|
|
281
298
|
props: ["links", "navigationLabel", "showBreadcrumbLabel"]
|
|
282
|
-
}),
|
|
299
|
+
}), M = e({
|
|
283
300
|
name: "AvSideNavigation",
|
|
284
301
|
props: {
|
|
285
302
|
items: Array,
|
|
@@ -294,7 +311,7 @@ const m = e({
|
|
|
294
311
|
@click="$emit('update:isSideMenuCollapsed', !isSideMenuCollapsed)"
|
|
295
312
|
/>
|
|
296
313
|
`
|
|
297
|
-
}),
|
|
314
|
+
}), w = e({
|
|
298
315
|
name: "AvStepper",
|
|
299
316
|
props: {
|
|
300
317
|
steps: {
|
|
@@ -318,7 +335,7 @@ const m = e({
|
|
|
318
335
|
</div>
|
|
319
336
|
</div>
|
|
320
337
|
`
|
|
321
|
-
}),
|
|
338
|
+
}), N = e({
|
|
322
339
|
name: "AvDrawer",
|
|
323
340
|
props: ["show", "position", "width"],
|
|
324
341
|
emits: ["escape-pressed"],
|
|
@@ -328,7 +345,7 @@ const m = e({
|
|
|
328
345
|
<slot name="footer" />
|
|
329
346
|
</div>
|
|
330
347
|
`
|
|
331
|
-
}),
|
|
348
|
+
}), q = e({
|
|
332
349
|
name: "AvDropdown",
|
|
333
350
|
props: ["items", "triggerAriaLabel", "triggerIcon", "triggerLabel", "triggerVariant", "triggerSmall", "padding"],
|
|
334
351
|
emits: ["itemSelected"],
|
|
@@ -363,24 +380,25 @@ function D() {
|
|
|
363
380
|
}
|
|
364
381
|
export {
|
|
365
382
|
f as AvAccordionStub,
|
|
366
|
-
|
|
367
|
-
|
|
383
|
+
I as AvAutocompleteStub,
|
|
384
|
+
v as AvBadgeStub,
|
|
368
385
|
$ as AvBreadcrumbStub,
|
|
369
386
|
h as AvButtonStub,
|
|
370
387
|
k as AvCancelConfirmButtonsStub,
|
|
371
388
|
x as AvCheckboxStub,
|
|
372
|
-
|
|
373
|
-
|
|
389
|
+
N as AvDrawerStub,
|
|
390
|
+
q as AvDropdownStub,
|
|
374
391
|
g as AvFieldsetStub,
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
392
|
+
S as AvIconStub,
|
|
393
|
+
A as AvIconTextStub,
|
|
394
|
+
y as AvInputStub,
|
|
395
|
+
B as AvListItemStub,
|
|
396
|
+
V as AvListStub,
|
|
379
397
|
L as AvSelectStub,
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
398
|
+
M as AvSideNavigationStub,
|
|
399
|
+
w as AvStepperStub,
|
|
400
|
+
C as AvTagPickerStub,
|
|
383
401
|
b as AvTagStub,
|
|
384
|
-
|
|
402
|
+
T as AvToggleStub,
|
|
385
403
|
D as BddTest
|
|
386
404
|
};
|
package/dist/tests/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import { AvAccordionStub } from '@/components/interaction/accordions/AvAccordion
|
|
|
7
7
|
import { AvButtonStub } from '@/components/interaction/buttons/AvButton/AvButton.stub';
|
|
8
8
|
import { AvCancelConfirmButtonsStub } from '@/components/interaction/buttons/AvCancelConfirmButtons/AvCancelConfirmButtons.stub';
|
|
9
9
|
import { AvCheckboxStub } from '@/components/interaction/checkboxes/AvCheckbox/AvCheckbox.stub';
|
|
10
|
+
import { AvInputStub } from '@/components/interaction/inputs/AvInput/AvInput.stub';
|
|
10
11
|
import { AvListStub } from '@/components/interaction/lists/AvList/AvList.stub';
|
|
11
12
|
import { AvListItemStub } from '@/components/interaction/lists/AvListItem/AvListItem.stub';
|
|
12
13
|
import { AvTagPickerStub } from '@/components/interaction/pickers/AvTagPicker/AvTagPicker.stub';
|
|
@@ -19,4 +20,4 @@ import { AvStepperStub } from '@/components/navigation/AvStepper/AvStepper.stub'
|
|
|
19
20
|
import { AvDrawerStub } from '@/components/overlay/drawers/AvDrawer/AvDrawer.stub';
|
|
20
21
|
import { AvDropdownStub } from '@/components/overlay/dropdowns/AvDropdown/AvDropdown.stub';
|
|
21
22
|
import { BddTest } from '@/tests/utils';
|
|
22
|
-
export { AvAccordionStub, AvAutocompleteStub, AvBadgeStub, AvBreadcrumbStub, AvButtonStub, AvCancelConfirmButtonsStub, AvCheckboxStub, AvDrawerStub, AvDropdownStub, AvFieldsetStub, AvIconStub, AvIconTextStub, AvListItemStub, AvListStub, AvSelectStub, AvSideNavigationStub, AvStepperStub, AvTagPickerStub, AvTagStub, AvToggleStub, BddTest, };
|
|
23
|
+
export { AvAccordionStub, AvAutocompleteStub, AvBadgeStub, AvBreadcrumbStub, AvButtonStub, AvCancelConfirmButtonsStub, AvCheckboxStub, AvDrawerStub, AvDropdownStub, AvFieldsetStub, AvIconStub, AvIconTextStub, AvInputStub, AvListItemStub, AvListStub, AvSelectStub, AvSideNavigationStub, AvStepperStub, AvTagPickerStub, AvTagStub, AvToggleStub, BddTest, };
|
package/dist/tokens/icons.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* 1. Use uppercase letters with underscores for constant names.
|
|
10
10
|
* 2. Follow the naming convention of the icon libraries (e.g., 'mdi:icon-name' for MDI).
|
|
11
11
|
* 3. Keep the list organized alphabetically for better readability.
|
|
12
|
-
* 4. Execute 'npm run generate
|
|
12
|
+
* 4. Execute 'npm run icons:generate' to update the icon assets after adding new icons.
|
|
13
13
|
*/
|
|
14
14
|
export declare const MDI_ICONS: {
|
|
15
15
|
ACCOUNT_CIRCLE_OUTLINE: string;
|
|
@@ -84,6 +84,7 @@ export declare const MDI_ICONS: {
|
|
|
84
84
|
PHONE_OUTLINE: string;
|
|
85
85
|
PLUS_CIRCLE_OUTLINE: string;
|
|
86
86
|
POST_IT_NOTES_OUTLINE: string;
|
|
87
|
+
RATE_REVIEW: string;
|
|
87
88
|
RECORD_CIRCLE_OUTLINE: string;
|
|
88
89
|
SCHOOL_OUTLINE: string;
|
|
89
90
|
SHARE_VARIANT_OUTLINE: string;
|
package/package.json
CHANGED
|
@@ -76,6 +76,7 @@
|
|
|
76
76
|
--icon-mdi-phone-outline: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0yMCAxNS41Yy0xLjIgMC0yLjUtLjItMy42LS42aC0uM2MtLjMgMC0uNS4xLS43LjNsLTIuMiAyLjJjLTIuOC0xLjUtNS4yLTMuOC02LjYtNi42bDIuMi0yLjJjLjMtLjMuNC0uNy4yLTFjLS4zLTEuMS0uNS0yLjQtLjUtMy42YzAtLjUtLjUtMS0xLTFINGMtLjUgMC0xIC41LTEgMWMwIDkuNCA3LjYgMTcgMTcgMTdjLjUgMCAxLS41IDEtMXYtMy41YzAtLjUtLjUtMS0xLTFNNSA1aDEuNWMuMS45LjMgMS44LjUgMi42TDUuOCA4LjhDNS40IDcuNiA1LjEgNi4zIDUgNW0xNCAxNGMtMS4zLS4xLTIuNi0uNC0zLjgtLjhsMS4yLTEuMmMuOC4yIDEuNy40IDIuNi40eiIvPjwvc3ZnPg==");
|
|
77
77
|
--icon-mdi-plus-circle-outline: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0xMiAyMGMtNC40MSAwLTgtMy41OS04LThzMy41OS04IDgtOHM4IDMuNTkgOCA4cy0zLjU5IDgtOCA4bTAtMThBMTAgMTAgMCAwIDAgMiAxMmExMCAxMCAwIDAgMCAxMCAxMGExMCAxMCAwIDAgMCAxMC0xMEExMCAxMCAwIDAgMCAxMiAybTEgNWgtMnY0SDd2Mmg0djRoMnYtNGg0di0yaC00eiIvPjwvc3ZnPg==");
|
|
78
78
|
--icon-mdi-post-it-notes-outline: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0zIDZ2MTZoMTh2MkgzYTIgMiAwIDAgMS0yLTJWNnptMTMgM2g1LjVMMTYgMy41ek03IDJoMTBsNiA2djEwYTIgMiAwIDAgMS0yIDJIN2EyIDIgMCAwIDEtMi0yVjRhMiAyIDAgMCAxIDItMm0wIDJ2MTRoMTR2LTdoLTdWNHoiLz48L3N2Zz4=");
|
|
79
|
+
--icon-mdi-rate-review: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0xOCAxNGgtNy41bDItMkgxOE02IDE0di0yLjVsNi44OC02Ljg2Yy4xOS0uMTkuNTEtLjE5LjcxIDBsMS43NiAxLjc3Yy4yLjIuMi41MSAwIC43MUw4LjQ3IDE0TTIwIDJINGEyIDIgMCAwIDAtMiAydjE4bDQtNGgxNGEyIDIgMCAwIDAgMi0yVjRhMiAyIDAgMCAwLTItMiIvPjwvc3ZnPg==");
|
|
79
80
|
--icon-mdi-record-circle-outline: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0xMiAyQTEwIDEwIDAgMCAwIDIgMTJhMTAgMTAgMCAwIDAgMTAgMTBhMTAgMTAgMCAwIDAgMTAtMTBBMTAgMTAgMCAwIDAgMTIgMm0wIDJhOCA4IDAgMCAxIDggOGE4IDggMCAwIDEtOCA4YTggOCAwIDAgMS04LThhOCA4IDAgMCAxIDgtOG0wIDVhMyAzIDAgMCAwLTMgM2EzIDMgMCAwIDAgMyAzYTMgMyAwIDAgMCAzLTNhMyAzIDAgMCAwLTMtMyIvPjwvc3ZnPg==");
|
|
80
81
|
--icon-mdi-school-outline: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0xMiAzTDEgOWw0IDIuMTh2NkwxMiAyMWw3LTMuODJ2LTZsMi0xLjA5VjE3aDJWOXptNi44MiA2TDEyIDEyLjcyTDUuMTggOUwxMiA1LjI4ek0xNyAxNmwtNSAyLjcyTDcgMTZ2LTMuNzNMMTIgMTVsNS0yLjczeiIvPjwvc3ZnPg==");
|
|
81
82
|
--icon-mdi-share-variant-outline: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0xOCAxNi4wOGMtLjc2IDAtMS40NC4zLTEuOTYuNzdMOC45MSAxMi43Yy4wNS0uMjMuMDktLjQ2LjA5LS43cy0uMDQtLjQ3LS4wOS0uN2w3LjA1LTQuMTFjLjU0LjUgMS4yNS44MSAyLjA0LjgxYzEuNjYgMCAzLTEuMzQgMy0zcy0xLjM0LTMtMy0zcy0zIDEuMzQtMyAzYzAgLjI0LjA0LjQ3LjA5LjdMOC4wNCA5LjgxQzcuNSA5LjMxIDYuNzkgOSA2IDljLTEuNjYgMC0zIDEuMzQtMyAzczEuMzQgMyAzIDNjLjc5IDAgMS41LS4zMSAyLjA0LS44MWw3LjEyIDQuMTVjLS4wNS4yMS0uMDguNDMtLjA4LjY2YzAgMS42MSAxLjMxIDIuOTEgMi45MiAyLjkxczIuOTItMS4zIDIuOTItMi45MXMtMS4zMS0yLjkyLTIuOTItMi45Mk0xOCA0Yy41NSAwIDEgLjQ1IDEgMXMtLjQ1IDEtMSAxcy0xLS40NS0xLTFzLjQ1LTEgMS0xTTYgMTNjLS41NSAwLTEtLjQ1LTEtMXMuNDUtMSAxLTFzMSAuNDUgMSAxcy0uNDUgMS0xIDFtMTIgN2MtLjU1IDAtMS0uNDUtMS0xcy40NS0xIDEtMXMxIC40NSAxIDFzLS40NSAxLTEgMSIvPjwvc3ZnPg==");
|