@asd20/ui 3.2.1002 → 3.2.1003

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 CHANGED
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.1002",
8
+ "version": "3.2.1003",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -51,24 +51,44 @@
51
51
  >
52
52
  <defs>
53
53
  <!-- Mask for left building (outline color) -->
54
- <mask id="leftBuildingMask">
54
+ <mask
55
+ :id="`leftBuildingMask-${_uid}`"
56
+ maskUnits="userSpaceOnUse"
57
+ maskContentUnits="userSpaceOnUse"
58
+ x="0"
59
+ y="0"
60
+ width="32"
61
+ height="40"
62
+ mask-type="luminance"
63
+ >
64
+ <rect x="0" y="0" width="32" height="40" fill="black" />
55
65
  <!-- Building shape (opaque) -->
56
- <polygon points="7,29 7,13 17,11 17,29" fill="white"/>
66
+ <polygon points="7,29 7,13 17,11 17,29" fill="white" />
57
67
  <!-- Windows and door (transparent "holes") -->
58
- <rect x="10" y="15" width="2" height="2" rx="0.3" fill="black"/>
59
- <rect x="10" y="19" width="2" height="2" rx="0.3" fill="black"/>
60
- <rect x="14" y="15" width="2" height="2" rx="0.3" fill="black"/>
61
- <rect x="14" y="19" width="2" height="2" rx="0.3" fill="black"/>
62
- <rect x="12" y="23" width="4" height="4" rx="0.7" fill="black"/>
68
+ <rect x="10" y="15" width="2" height="2" rx="0.3" fill="black" />
69
+ <rect x="10" y="19" width="2" height="2" rx="0.3" fill="black" />
70
+ <rect x="14" y="15" width="2" height="2" rx="0.3" fill="black" />
71
+ <rect x="14" y="19" width="2" height="2" rx="0.3" fill="black" />
72
+ <rect x="12" y="23" width="4" height="4" rx="0.7" fill="black" />
63
73
  </mask>
64
74
  <!-- Mask for right building (fill color) -->
65
- <mask id="rightBuildingMask">
75
+ <mask
76
+ :id="`rightBuildingMask-${_uid}`"
77
+ maskUnits="userSpaceOnUse"
78
+ maskContentUnits="userSpaceOnUse"
79
+ x="0"
80
+ y="0"
81
+ width="32"
82
+ height="40"
83
+ mask-type="luminance"
84
+ >
85
+ <rect x="0" y="0" width="32" height="40" fill="black" />
66
86
  <!-- Building shape (opaque) -->
67
- <polygon points="17,29 17,13 25,15 25,29" fill="white"/>
87
+ <polygon points="17,29 17,13 25,15 25,29" fill="white" />
68
88
  <!-- Windows (transparent "holes") -->
69
- <rect x="21" y="17" width="3" height="1.2" rx="0.4" fill="black"/>
70
- <rect x="21" y="20" width="3" height="1.2" rx="0.4" fill="black"/>
71
- <rect x="21" y="23" width="3" height="1.2" rx="0.4" fill="black"/>
89
+ <rect x="21" y="17" width="3" height="1.2" rx="0.4" fill="black" />
90
+ <rect x="21" y="20" width="3" height="1.2" rx="0.4" fill="black" />
91
+ <rect x="21" y="23" width="3" height="1.2" rx="0.4" fill="black" />
72
92
  </mask>
73
93
  </defs>
74
94
  <!-- 3/4 Circle outline (open at bottom) -->
@@ -81,11 +101,23 @@
81
101
  stroke-linecap="round"
82
102
  />
83
103
  <!-- Left building (outline color, slanted roof left, with transparent windows/door) -->
84
- <polygon points="7,29 7,13 17,11 17,29" class="line" fill="currentColor" mask="url(#leftBuildingMask)" />
104
+ <polygon
105
+ points="7,29 7,13 17,11 17,29"
106
+ class="line"
107
+ fill="currentColor"
108
+ :mask="`url(#leftBuildingMask-${_uid})`"
109
+ />
85
110
  <!-- Right building (fill color, slanted roof right, with transparent windows) -->
86
- <polygon points="17,29 17,13 25,15 25,29" class="fill" mask="url(#rightBuildingMask)" />
111
+ <polygon
112
+ points="17,29 17,13 25,15 25,29"
113
+ class="fill"
114
+ :mask="`url(#rightBuildingMask-${_uid})`"
115
+ />
87
116
  <!-- Flag and pole (outline color) -->
88
- <polygon points="17,29 17,6 25,6 25,10 19,10 19,29" class="line" fill="currentColor" />
117
+ <polygon
118
+ points="17,29 17,6 25,6 25,10 19,10 19,29"
119
+ class="line"
120
+ fill="currentColor"
121
+ />
89
122
  </g>
90
123
  </template>
91
-
@@ -20,7 +20,8 @@
20
20
  width="128"
21
21
  height="160"
22
22
  xmlns="http://www.w3.org/2000/svg"
23
- > <defs>
23
+ >
24
+ <defs>
24
25
  <!-- Mask definition -->
25
26
  <mask id="toolbarMask">
26
27
  <!-- Fill everything in white so it shows -->
@@ -32,9 +32,9 @@ export default {
32
32
  .asd20-social-menu {
33
33
  display: flex;
34
34
  flex-wrap: nowrap;
35
- justify-content: space-around;
35
+ justify-content: flex-start;
36
36
  flex-direction: row;
37
- margin: space(1) space(0);
37
+ margin: space(1) space(0.5);
38
38
  &::v-deep .asd20-button {
39
39
  flex-direction: column;
40
40
  padding-left: 0;