@asd20/ui 3.2.1009 → 3.2.1011
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/package.json +1 -1
- package/src/components/atoms/icons/Asd20CalendarAltSvg.vue +10 -1
- package/src/components/atoms/icons/Asd20CalendarSvg.vue +1 -1
- package/src/components/atoms/icons/Asd20ContactSvg.vue +1 -1
- package/src/components/atoms/icons/Asd20DirectorySvg.vue +2 -2
- package/src/components/atoms/icons/Asd20JobsSvg.vue +2 -0
- package/src/components/atoms/icons/Asd20PersonalizeSvg.vue +45 -5
- package/src/components/atoms/icons/Asd20StaffSvg.vue +2 -2
- package/src/components/organisms/Asd20PageFooter/index.vue +3 -2
package/package.json
CHANGED
|
@@ -49,7 +49,16 @@
|
|
|
49
49
|
stroke-width="2"
|
|
50
50
|
/>
|
|
51
51
|
<!-- Calendar header bar (fill color) -->
|
|
52
|
-
<rect
|
|
52
|
+
<rect
|
|
53
|
+
x="6"
|
|
54
|
+
y="10"
|
|
55
|
+
width="20"
|
|
56
|
+
height="4"
|
|
57
|
+
rx="2"
|
|
58
|
+
class="fill"
|
|
59
|
+
stroke="currentColor"
|
|
60
|
+
stroke-width="1"
|
|
61
|
+
/>
|
|
53
62
|
<!-- Calendar "rings" (outline color) -->
|
|
54
63
|
<rect
|
|
55
64
|
x="9"
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
<!-- Calendar main body (rounded rectangle, outline only) -->
|
|
36
36
|
<rect x="7" y="10" width="18" height="15" rx="3" class="line" fill="none" stroke="currentColor" stroke-width="2"/>
|
|
37
37
|
<!-- Calendar header bar (fill color) -->
|
|
38
|
-
<rect x="6" y="10" width="20" height="4" rx="2" class="fill"/>
|
|
38
|
+
<rect x="6" y="10" width="20" height="4" rx="2" class="fill" stroke="currentColor" stroke-width="1"/>
|
|
39
39
|
<!-- Calendar "rings" (outline color) -->
|
|
40
40
|
<rect x="9" y="7" width="2.3" height="4" rx="1" class="line" fill="currentColor"/>
|
|
41
41
|
<rect x="21" y="7" width="2.3" height="4" rx="1" class="line" fill="currentColor"/>
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
<!-- Head -->
|
|
23
23
|
<circle cx="15.5" cy="18.5" r="2.3" class="fill" fill="currentColor"/>
|
|
24
24
|
<!-- Body -->
|
|
25
|
-
<rect x="
|
|
25
|
+
<rect x="11.5" y="21" width="8" height="6" rx="1.3" class="fill" fill="currentColor"/>
|
|
26
26
|
</g>
|
|
27
27
|
</template>
|
|
@@ -90,8 +90,8 @@
|
|
|
90
90
|
<rect x="11" y="19" width="7" height="0.5" rx="0.6" class="line" stroke="currentColor" stroke-width="1"/>
|
|
91
91
|
<!-- Person (body and head, clearly defined) -->
|
|
92
92
|
<!-- Head -->
|
|
93
|
-
<circle cx="23" cy="15" r="3" class="fill"/>
|
|
93
|
+
<circle cx="23" cy="15" r="3" class="fill" stroke="currentColor" stroke-width="1"/>
|
|
94
94
|
<!-- Body -->
|
|
95
|
-
<rect x="19" y="18" width="8" height="8" rx="1.3" class="fill"/>
|
|
95
|
+
<rect x="19" y="18" width="8" height="8" rx="1.3" class="fill" stroke="currentColor" stroke-width="1"/>
|
|
96
96
|
</g>
|
|
97
97
|
</template>
|
|
@@ -28,6 +28,8 @@
|
|
|
28
28
|
<!-- Briefcase body (fill color) -->
|
|
29
29
|
<path
|
|
30
30
|
class="fill"
|
|
31
|
+
stroke="currentColor"
|
|
32
|
+
stroke-width="1"
|
|
31
33
|
d="M25 16.613a20.986 20.986 0 01-8 2.003V20a1 1 0 01-2 0v-1.384c-2.74-.131-5.46-.798-8-2.003V23.5A1.5 1.5 0 008.5 25h15a1.5 1.5 0 001.5-1.5v-6.887z"
|
|
32
34
|
/>
|
|
33
35
|
<!-- Briefcase top (line color) -->
|
|
@@ -39,18 +39,58 @@
|
|
|
39
39
|
|
|
40
40
|
<!-- Person (body and head, clearly defined) -->
|
|
41
41
|
<!-- Head -->
|
|
42
|
-
<circle
|
|
42
|
+
<circle
|
|
43
|
+
cx="8"
|
|
44
|
+
cy="12"
|
|
45
|
+
r="2.3"
|
|
46
|
+
class="fill"
|
|
47
|
+
stroke="currentColor"
|
|
48
|
+
stroke-width="1"
|
|
49
|
+
/>
|
|
43
50
|
<!-- Body -->
|
|
44
|
-
<rect
|
|
51
|
+
<rect
|
|
52
|
+
x="4"
|
|
53
|
+
y="15"
|
|
54
|
+
width="8"
|
|
55
|
+
height="9"
|
|
56
|
+
rx="1.3"
|
|
57
|
+
class="fill"
|
|
58
|
+
stroke="currentColor"
|
|
59
|
+
stroke-width="1"
|
|
60
|
+
/>
|
|
45
61
|
|
|
46
62
|
<!-- Top row: dot and line -->
|
|
47
63
|
<circle cx="18" cy="11.5" r="1.5" class="line" stroke="currentColor" />
|
|
48
|
-
<rect
|
|
64
|
+
<rect
|
|
65
|
+
x="14"
|
|
66
|
+
y="11"
|
|
67
|
+
width="13"
|
|
68
|
+
height="1"
|
|
69
|
+
rx="0.5"
|
|
70
|
+
class="line"
|
|
71
|
+
stroke="currentColor"
|
|
72
|
+
/>
|
|
49
73
|
<!-- Middle row: dot and line -->
|
|
50
74
|
<circle cx="23" cy="16.5" r="1.5" class="line" stroke="currentColor" />
|
|
51
|
-
<rect
|
|
75
|
+
<rect
|
|
76
|
+
x="14"
|
|
77
|
+
y="16"
|
|
78
|
+
width="13"
|
|
79
|
+
height="1"
|
|
80
|
+
rx="0.5"
|
|
81
|
+
class="line"
|
|
82
|
+
stroke="currentColor"
|
|
83
|
+
/>
|
|
52
84
|
<!-- Bottom row: dot and line -->
|
|
53
85
|
<circle cx="18" cy="21.5" r="1.5" class="line" stroke="currentColor" />
|
|
54
|
-
<rect
|
|
86
|
+
<rect
|
|
87
|
+
x="14"
|
|
88
|
+
y="21"
|
|
89
|
+
width="13"
|
|
90
|
+
height="1"
|
|
91
|
+
rx="0.5"
|
|
92
|
+
class="line"
|
|
93
|
+
stroke="currentColor"
|
|
94
|
+
/>
|
|
55
95
|
</g>
|
|
56
96
|
</template>
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
/>
|
|
36
36
|
<!-- Person (body and head, clearly defined) -->
|
|
37
37
|
<!-- Head -->
|
|
38
|
-
<circle cx="8" cy="12" r="2.3" class="fill"/>
|
|
38
|
+
<circle cx="8" cy="12" r="2.3" class="fill" stroke="currentColor" stroke-width="1"/>
|
|
39
39
|
<!-- Body -->
|
|
40
|
-
<rect x="4" y="15" width="8" height="9" rx="1.3" class="fill"/>
|
|
40
|
+
<rect x="4" y="15" width="8" height="9" rx="1.3" class="fill" stroke="currentColor" stroke-width="1"/>
|
|
41
41
|
<!-- Staff grid/squares (line) -->
|
|
42
42
|
<rect
|
|
43
43
|
class="line"
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
organization.title !== 'Academy District 20'
|
|
63
63
|
"
|
|
64
64
|
class="principal"
|
|
65
|
-
|
|
65
|
+
link="#"
|
|
66
66
|
:label="
|
|
67
67
|
organization.title === 'School in the Woods'
|
|
68
68
|
? `Administrator: ${administrator}`
|
|
@@ -302,7 +302,8 @@ export default {
|
|
|
302
302
|
}
|
|
303
303
|
}
|
|
304
304
|
|
|
305
|
-
.hours
|
|
305
|
+
.hours,
|
|
306
|
+
.principal {
|
|
306
307
|
pointer-events: none;
|
|
307
308
|
}
|
|
308
309
|
|