ds-one 0.2.5-alpha.9 → 0.3.0-alpha.1

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.
Files changed (209) hide show
  1. package/DS1/0-face/device.ts +138 -0
  2. package/DS1/0-face/scaling.ts +152 -0
  3. package/DS1/1-root/fonts/Iosevka-Regular.woff2 +0 -0
  4. package/DS1/1-root/one.css +124 -77
  5. package/DS1/2-core/ds-banner.ts +120 -1
  6. package/DS1/2-core/ds-button.ts +16 -93
  7. package/DS1/2-core/ds-card.ts +137 -0
  8. package/DS1/2-core/ds-cycle.ts +77 -179
  9. package/DS1/2-core/ds-date.ts +3 -10
  10. package/DS1/2-core/ds-gap.ts +38 -0
  11. package/DS1/2-core/ds-icon.ts +6 -35
  12. package/DS1/2-core/ds-input.ts +306 -1
  13. package/DS1/2-core/ds-pagedots.ts +52 -0
  14. package/DS1/2-core/ds-text.ts +55 -28
  15. package/DS1/2-core/ds-tooltip.ts +12 -58
  16. package/DS1/2-core/styles/ds-banner.css +77 -0
  17. package/DS1/2-core/styles/ds-button.css +67 -0
  18. package/DS1/2-core/styles/ds-cycle.css +21 -0
  19. package/DS1/2-core/styles/ds-date.css +9 -0
  20. package/DS1/2-core/styles/ds-gap.css +93 -0
  21. package/DS1/2-core/styles/ds-icon.css +30 -0
  22. package/DS1/2-core/styles/ds-input.css +46 -0
  23. package/DS1/2-core/styles/ds-pagedots.css +31 -0
  24. package/DS1/2-core/styles/ds-text.css +29 -0
  25. package/DS1/2-core/styles/ds-tooltip.css +49 -0
  26. package/DS1/3-unit/ds-accordion.ts +95 -0
  27. package/DS1/3-unit/ds-form.ts +304 -0
  28. package/DS1/3-unit/ds-list.ts +5 -14
  29. package/DS1/3-unit/ds-row.ts +3 -19
  30. package/DS1/3-unit/ds-table.ts +3 -86
  31. package/DS1/3-unit/styles/ds-accordion.css +46 -0
  32. package/DS1/3-unit/styles/ds-list.css +9 -0
  33. package/DS1/3-unit/styles/ds-row.css +19 -0
  34. package/DS1/3-unit/styles/ds-table.css +80 -0
  35. package/DS1/4-page/ds-container.ts +28 -0
  36. package/DS1/4-page/ds-grid.ts +37 -50
  37. package/DS1/4-page/ds-layout.ts +652 -163
  38. package/DS1/4-page/styles/ds-container.css +35 -0
  39. package/DS1/4-page/styles/ds-grid.css +56 -0
  40. package/DS1/4-page/styles/ds-layout.css +246 -0
  41. package/DS1/index.ts +9 -1
  42. package/DS1/vite-env.d.ts +13 -0
  43. package/DS1/x-icon/2x.svg +4 -0
  44. package/DS1/x-icon/2xdots.svg +18 -0
  45. package/DS1/x-icon/2xgrid.svg +6 -0
  46. package/DS1/x-icon/2xlines.svg +6 -0
  47. package/DS1/x-icon/4x4.svg +18 -0
  48. package/DS1/x-icon/apple.svg +4 -0
  49. package/DS1/x-icon/avatar.svg +4 -0
  50. package/DS1/x-icon/big.svg +4 -0
  51. package/DS1/x-icon/blank.svg +3 -0
  52. package/DS1/x-icon/check.svg +3 -0
  53. package/DS1/x-icon/close.svg +3 -0
  54. package/DS1/x-icon/collapse.svg +3 -0
  55. package/DS1/x-icon/color.svg +4 -0
  56. package/DS1/x-icon/column.svg +5 -0
  57. package/DS1/x-icon/default.svg +3 -0
  58. package/DS1/x-icon/delete.svg +5 -0
  59. package/DS1/x-icon/dictate.svg +6 -0
  60. package/DS1/x-icon/do.svg +3 -0
  61. package/DS1/x-icon/down.svg +3 -0
  62. package/DS1/x-icon/duplicate.svg +4 -0
  63. package/DS1/x-icon/gallery.svg +5 -0
  64. package/DS1/x-icon/google.svg +6 -0
  65. package/DS1/x-icon/head.svg +5 -0
  66. package/DS1/x-icon/home.svg +3 -0
  67. package/DS1/x-icon/icon.svg +4 -0
  68. package/DS1/x-icon/in.svg +4 -0
  69. package/DS1/x-icon/lock.svg +5 -0
  70. package/DS1/x-icon/loop.svg +5 -0
  71. package/DS1/x-icon/mic.svg +5 -0
  72. package/DS1/x-icon/minimize.svg +3 -0
  73. package/DS1/x-icon/more.svg +5 -0
  74. package/DS1/x-icon/neutral.svg +6 -0
  75. package/DS1/x-icon/note.svg +6 -0
  76. package/DS1/x-icon/page.svg +4 -0
  77. package/DS1/x-icon/plus.svg +3 -0
  78. package/DS1/x-icon/rewind.svg +4 -0
  79. package/DS1/x-icon/row.svg +5 -0
  80. package/DS1/x-icon/sdown.svg +3 -0
  81. package/DS1/x-icon/search.svg +4 -0
  82. package/DS1/x-icon/see.svg +4 -0
  83. package/DS1/x-icon/ship.svg +5 -0
  84. package/DS1/x-icon/star.svg +3 -0
  85. package/DS1/x-icon/status.svg +4 -0
  86. package/DS1/x-icon/sup.svg +3 -0
  87. package/DS1/x-icon/title.svg +3 -0
  88. package/DS1/x-icon/undo.svg +3 -0
  89. package/DS1/x-icon/ungroup.svg +4 -0
  90. package/DS1/x-icon/unhead.svg +3 -0
  91. package/DS1/x-icon/unicon.svg +3 -0
  92. package/DS1/x-icon/unlock.svg +5 -0
  93. package/DS1/x-icon/unmic.svg +6 -0
  94. package/DS1/x-icon/unsee.svg +5 -0
  95. package/DS1/x-icon/unstar.svg +3 -0
  96. package/DS1/x-icon/untitle.svg +3 -0
  97. package/DS1/x-icon/up.svg +3 -0
  98. package/LICENSE +1 -1
  99. package/README.md +4 -4
  100. package/dist/0-face/device.d.ts +5 -0
  101. package/dist/0-face/device.d.ts.map +1 -1
  102. package/dist/0-face/device.js +111 -0
  103. package/dist/0-face/scaling.d.ts +48 -0
  104. package/dist/0-face/scaling.d.ts.map +1 -0
  105. package/dist/0-face/scaling.js +114 -0
  106. package/dist/2-core/ds-banner.d.ts +67 -0
  107. package/dist/2-core/ds-banner.d.ts.map +1 -1
  108. package/dist/2-core/ds-banner.js +97 -1
  109. package/dist/2-core/ds-button.d.ts +4 -15
  110. package/dist/2-core/ds-button.d.ts.map +1 -1
  111. package/dist/2-core/ds-button.js +14 -86
  112. package/dist/2-core/ds-card.d.ts +39 -0
  113. package/dist/2-core/ds-card.d.ts.map +1 -0
  114. package/dist/2-core/ds-card.js +119 -0
  115. package/dist/2-core/ds-cycle.d.ts +1 -5
  116. package/dist/2-core/ds-cycle.d.ts.map +1 -1
  117. package/dist/2-core/ds-cycle.js +74 -163
  118. package/dist/2-core/ds-date.d.ts.map +1 -1
  119. package/dist/2-core/ds-date.js +3 -9
  120. package/dist/2-core/ds-gap.d.ts +28 -0
  121. package/dist/2-core/ds-gap.d.ts.map +1 -0
  122. package/dist/2-core/ds-gap.js +25 -0
  123. package/dist/2-core/ds-icon.d.ts.map +1 -1
  124. package/dist/2-core/ds-icon.js +6 -35
  125. package/dist/2-core/ds-input.d.ts +127 -0
  126. package/dist/2-core/ds-input.d.ts.map +1 -1
  127. package/dist/2-core/ds-input.js +252 -1
  128. package/dist/2-core/ds-pagedots.d.ts +32 -0
  129. package/dist/2-core/ds-pagedots.d.ts.map +1 -0
  130. package/dist/2-core/ds-pagedots.js +36 -0
  131. package/dist/2-core/ds-text.d.ts +5 -3
  132. package/dist/2-core/ds-text.d.ts.map +1 -1
  133. package/dist/2-core/ds-text.js +49 -27
  134. package/dist/2-core/ds-tooltip.d.ts +2 -2
  135. package/dist/2-core/ds-tooltip.d.ts.map +1 -1
  136. package/dist/2-core/ds-tooltip.js +11 -57
  137. package/dist/2-core/styles/ds-banner.css +77 -0
  138. package/dist/2-core/styles/ds-button.css +67 -0
  139. package/dist/2-core/styles/ds-cycle.css +21 -0
  140. package/dist/2-core/styles/ds-date.css +9 -0
  141. package/dist/2-core/styles/ds-gap.css +93 -0
  142. package/dist/2-core/styles/ds-icon.css +30 -0
  143. package/dist/2-core/styles/ds-input.css +46 -0
  144. package/dist/2-core/styles/ds-pagedots.css +26 -0
  145. package/dist/2-core/styles/ds-text.css +29 -0
  146. package/dist/2-core/styles/ds-tooltip.css +49 -0
  147. package/dist/3-unit/ds-accordion.d.ts +47 -0
  148. package/dist/3-unit/ds-accordion.d.ts.map +1 -0
  149. package/dist/3-unit/ds-accordion.js +75 -0
  150. package/dist/3-unit/ds-form.d.ts +70 -0
  151. package/dist/3-unit/ds-form.d.ts.map +1 -0
  152. package/dist/3-unit/ds-form.js +232 -0
  153. package/dist/3-unit/ds-list.d.ts.map +1 -1
  154. package/dist/3-unit/ds-list.js +5 -11
  155. package/dist/3-unit/ds-row.d.ts.map +1 -1
  156. package/dist/3-unit/ds-row.js +3 -19
  157. package/dist/3-unit/ds-table.d.ts.map +1 -1
  158. package/dist/3-unit/ds-table.js +3 -86
  159. package/dist/3-unit/styles/ds-accordion.css +46 -0
  160. package/dist/3-unit/styles/ds-list.css +9 -0
  161. package/dist/3-unit/styles/ds-row.css +19 -0
  162. package/dist/3-unit/styles/ds-table.css +80 -0
  163. package/dist/{3-unit/row-v1.d.ts → 4-page/ds-container.d.ts} +3 -11
  164. package/dist/4-page/ds-container.d.ts.map +1 -0
  165. package/dist/4-page/ds-container.js +11 -0
  166. package/dist/4-page/ds-grid.d.ts +5 -0
  167. package/dist/4-page/ds-grid.d.ts.map +1 -1
  168. package/dist/4-page/ds-grid.js +38 -56
  169. package/dist/4-page/ds-layout.d.ts +3 -3
  170. package/dist/4-page/ds-layout.d.ts.map +1 -1
  171. package/dist/4-page/ds-layout.js +651 -162
  172. package/dist/4-page/styles/ds-container.css +35 -0
  173. package/dist/4-page/styles/ds-grid.css +56 -0
  174. package/dist/4-page/styles/ds-layout.css +251 -0
  175. package/dist/ds-one.bundle.css +700 -0
  176. package/dist/ds-one.bundle.css.map +7 -0
  177. package/dist/ds-one.bundle.js +2642 -1469
  178. package/dist/ds-one.bundle.js.map +1 -7
  179. package/dist/ds-one.bundle.min.css +2 -0
  180. package/dist/ds-one.bundle.min.css.map +7 -0
  181. package/dist/ds-one.bundle.min.js +3850 -550
  182. package/dist/ds-one.bundle.min.js.map +1 -7
  183. package/dist/index.d.ts +9 -1
  184. package/dist/index.d.ts.map +1 -1
  185. package/dist/index.js +9 -1
  186. package/package.json +4 -2
  187. package/dist/3-unit/doublenav-v1.d.ts +0 -51
  188. package/dist/3-unit/doublenav-v1.d.ts.map +0 -1
  189. package/dist/3-unit/doublenav-v1.js +0 -88
  190. package/dist/3-unit/ds-portfolio-doublenav.d.ts +0 -51
  191. package/dist/3-unit/ds-portfolio-doublenav.d.ts.map +0 -1
  192. package/dist/3-unit/ds-portfolio-doublenav.js +0 -88
  193. package/dist/3-unit/ds-portfolio-panel.d.ts +0 -11
  194. package/dist/3-unit/ds-portfolio-panel.d.ts.map +0 -1
  195. package/dist/3-unit/ds-portfolio-panel.js +0 -16
  196. package/dist/3-unit/ds-portfolio-singlenav.d.ts +0 -32
  197. package/dist/3-unit/ds-portfolio-singlenav.d.ts.map +0 -1
  198. package/dist/3-unit/ds-portfolio-singlenav.js +0 -62
  199. package/dist/3-unit/list-v1.d.ts +0 -11
  200. package/dist/3-unit/list-v1.d.ts.map +0 -1
  201. package/dist/3-unit/list-v1.js +0 -15
  202. package/dist/3-unit/panel-v1.d.ts +0 -11
  203. package/dist/3-unit/panel-v1.d.ts.map +0 -1
  204. package/dist/3-unit/panel-v1.js +0 -16
  205. package/dist/3-unit/row-v1.d.ts.map +0 -1
  206. package/dist/3-unit/row-v1.js +0 -32
  207. package/dist/3-unit/singlenav-v1.d.ts +0 -32
  208. package/dist/3-unit/singlenav-v1.d.ts.map +0 -1
  209. package/dist/3-unit/singlenav-v1.js +0 -62
@@ -0,0 +1,35 @@
1
+ /* ds-container.css */
2
+ /* Container component styles with responsive width constraints */
3
+
4
+ :host {
5
+ display: flex;
6
+ width: 100%;
7
+ max-width: 100%;
8
+ flex-direction: column;
9
+ background-color: var(--background-color);
10
+ box-sizing: border-box;
11
+ }
12
+
13
+ /* Ensure children don't overflow */
14
+ :host ::slotted(*) {
15
+ max-width: 100%;
16
+ box-sizing: border-box;
17
+ }
18
+
19
+ /* Mobile: 100% width */
20
+ @media (max-width: 820px) {
21
+ :host {
22
+ width: 100%;
23
+ max-width: 100%;
24
+ }
25
+ }
26
+
27
+ /* Desktop: max-width 1000px, centered */
28
+ @media (min-width: 821px) {
29
+ :host {
30
+ max-width: 1000px;
31
+ margin-left: auto;
32
+ margin-right: auto;
33
+ width: 100%;
34
+ }
35
+ }
@@ -0,0 +1,56 @@
1
+ /* ds-grid.css */
2
+ /* Grid layout component styles */
3
+
4
+ :host {
5
+ margin-top: 0.5px !important;
6
+ margin-left: 0.5px !important;
7
+ display: grid;
8
+ width: 1440px;
9
+ height: 1280px;
10
+ grid-template-columns: repeat(auto-fill, 19px);
11
+ grid-template-rows: repeat(auto-fill, 19px);
12
+ gap: 1px;
13
+ row-rule: calc(1px * var(--sf)) solid var(--grid-color);
14
+ column-rule: calc(1px * var(--sf)) solid var(--grid-color);
15
+ outline: calc(1px * var(--sf)) solid light-dark(var(--sharp-blue), var(--yellow));
16
+ position: fixed;
17
+ top: 0;
18
+ left: 50%;
19
+ transform: translateX(-50%);
20
+ pointer-events: none;
21
+ z-index: 300;
22
+ }
23
+
24
+ /* DO NOT CHANGE THIS GRID CODE FOR MOBILE. ITS PERFECT FOR MOBILE. */
25
+ :host(.mobile) {
26
+ width: calc(100% - calc(1px * var(--sf)));
27
+ max-width: 100vw;
28
+ margin-left: 0.5px !important;
29
+ margin-top: 0 !important;
30
+ box-sizing: border-box;
31
+ position: fixed;
32
+ top: calc(0.5px * var(--sf));
33
+ left: 50%;
34
+ transform: translateX(-50%);
35
+ pointer-events: none;
36
+ z-index: 300;
37
+ gap: calc(1px * var(--sf));
38
+ grid-template-columns: repeat(14, calc(19px * var(--sf)));
39
+ grid-template-rows: repeat(auto-fill, calc(19px * var(--sf)));
40
+ }
41
+
42
+ :host([align="left"]) {
43
+ left: 0;
44
+ transform: none;
45
+ }
46
+
47
+ :host([align="center"]) {
48
+ left: 50%;
49
+ transform: translateX(-50%);
50
+ }
51
+
52
+ :host([align="right"]) {
53
+ left: auto;
54
+ right: 0;
55
+ transform: none;
56
+ }
@@ -0,0 +1,246 @@
1
+ /* ds-layout.css */
2
+ /* Layout component styles with view mode */
3
+
4
+ :host {
5
+ display: grid;
6
+ position: relative;
7
+ width: 100%;
8
+ }
9
+
10
+ slot {
11
+ display: contents;
12
+ }
13
+
14
+ /* Portfolio mode */
15
+ :host([mode="portfolio"]) {
16
+ --portfolio-cols: 120px 480px 40px;
17
+ --portfolio-rows: 120px 120px 60px 180px 60px 120px 60px 20px 120px 120px;
18
+ --portfolio-areas: "square . ." ". title ." ". header ." ". projects ."
19
+ ". . ." ". bio ." ". . ." ". nav ." ". . ." ". footer ." ". . .";
20
+ --portfolio-overlay-cols: 120px 480px;
21
+ --portfolio-overlay-areas: "square ." ". title" ". header" ". projects" ". ."
22
+ ". bio" ". ." ". nav" ". ." ". footer" ". .";
23
+ grid-template-columns: var(--portfolio-cols);
24
+ grid-template-rows: var(--portfolio-rows);
25
+ grid-template-areas: var(--portfolio-areas);
26
+ min-height: 600px;
27
+ background-color: rgba(165, 165, 165, 0.03);
28
+ max-width: 640px;
29
+ margin: 0;
30
+ }
31
+
32
+ :host([mode="portfolio"]) .view-overlay {
33
+ grid-template-columns: var(--portfolio-overlay-cols);
34
+ grid-template-rows: var(--portfolio-rows);
35
+ grid-template-areas: var(--portfolio-overlay-areas);
36
+ }
37
+
38
+ /* Company mode */
39
+ :host([mode="company"]) {
40
+ --company-cols: auto 400px auto;
41
+ --company-rows: 80px 20px 20px 120px 20px 120px;
42
+ --company-areas: ". . ." ". header ." ". . ." ". content ." ". . ."
43
+ ". footer .";
44
+ grid-template-columns: var(--company-cols);
45
+ grid-template-rows: var(--company-rows);
46
+ grid-template-areas: var(--company-areas);
47
+ gap: 0;
48
+ max-width: 100%;
49
+ }
50
+
51
+ :host([mode="company"]) .view-overlay {
52
+ grid-template-columns: var(--company-cols);
53
+ grid-template-rows: var(--company-rows);
54
+ grid-template-areas: var(--company-areas);
55
+ gap: 0;
56
+ }
57
+
58
+ /* Alignment modifiers */
59
+ :host([align="left"]),
60
+ :host([mode="portfolio"][align="left"]),
61
+ :host([mode="company"][align="left"]),
62
+ :host([mode="app"][align="left"]) {
63
+ margin: 0;
64
+ justify-self: start;
65
+ }
66
+
67
+ :host([align="center"]),
68
+ :host([mode="portfolio"][align="center"]),
69
+ :host([mode="company"][align="center"]),
70
+ :host([mode="app"][align="center"]) {
71
+ margin: 0 auto;
72
+ justify-self: center;
73
+ }
74
+
75
+ :host([align="right"]),
76
+ :host([mode="portfolio"][align="right"]),
77
+ :host([mode="company"][align="right"]),
78
+ :host([mode="app"][align="right"]) {
79
+ margin: 0 0 0 auto;
80
+ justify-self: end;
81
+ }
82
+
83
+ /* App mode - Base */
84
+ :host([mode="app"]) {
85
+ --app-cols: 100%;
86
+ --app-rows: calc(var(--unit) * var(--sf)) calc(var(--unit) * var(--sf))
87
+ calc(var(--unit) * var(--sf)) calc(var(--double) * var(--sf))
88
+ calc(var(--dozen) * var(--sf)) calc(var(--unit) * var(--sf))
89
+ calc(var(--quad) * var(--sf)) calc(var(--double) * var(--sf));
90
+ --app-areas: "banner" "." "header" "." "main" "page-dots" "." "footer";
91
+ --app-overlay-cols: 100%;
92
+ --app-overlay-rows: calc(var(--unit) * var(--sf))
93
+ calc(var(--unit) * var(--sf)) calc(var(--unit) * var(--sf))
94
+ calc(var(--double) * var(--sf)) calc(var(--dozen) * var(--sf))
95
+ calc(var(--unit) * var(--sf)) calc(var(--quad) * var(--sf))
96
+ calc(var(--double) * var(--sf));
97
+ --app-overlay-areas: "banner" "." "header" "." "main" "page-dots" "." "footer";
98
+ grid-template-columns: var(--app-cols);
99
+ grid-template-rows: var(--app-rows);
100
+ grid-template-areas: var(--app-areas);
101
+ min-height: 100vh;
102
+ background-color: transparent;
103
+ width: calc(240px * var(--sf, 1));
104
+ max-width: calc(240px * var(--sf, 1));
105
+ margin: 0 auto;
106
+ }
107
+
108
+ :host([mode="app"]) .view-overlay {
109
+ grid-template-columns: var(--app-overlay-cols);
110
+ grid-template-rows: var(--app-overlay-rows);
111
+ grid-template-areas: var(--app-overlay-areas);
112
+ }
113
+
114
+ /* View overlay */
115
+ .view-overlay {
116
+ position: absolute;
117
+ margin-left: -1px;
118
+ top: 0;
119
+ left: 0;
120
+ right: 0;
121
+ bottom: 0;
122
+ pointer-events: none;
123
+ z-index: 1000;
124
+ display: grid;
125
+ }
126
+
127
+ .view-area {
128
+ display: flex;
129
+ width: calc(240px * var(--sf, 1));
130
+ height: 100%;
131
+ align-items: center;
132
+ justify-content: center;
133
+ font-family: var(--typeface-regular);
134
+ font-size: calc(var(--type-size-default) * var(--05));
135
+ color: color-mix(in srgb, var(--tuned-red) 25%, transparent);
136
+ background-color: color-mix(in srgb, var(--accent-color) 25%, transparent);
137
+ opacity: 1;
138
+ }
139
+
140
+ /* Portfolio mode view areas */
141
+ :host([mode="portfolio"]) .view-area:nth-of-type(1) {
142
+ background-color: color-mix(in srgb, var(--tuned-red) 25%, transparent);
143
+ }
144
+
145
+ :host([mode="portfolio"]) .view-area:nth-of-type(2) {
146
+ border-color: var(--sharp-blue);
147
+ }
148
+
149
+ :host([mode="portfolio"]) .view-area:nth-of-type(3) {
150
+ border-color: var(--yellow);
151
+ }
152
+
153
+ :host([mode="portfolio"]) .view-area:nth-of-type(4) {
154
+ border-color: var(--apple-green);
155
+ }
156
+
157
+ :host([mode="portfolio"]) .view-area:nth-of-type(5) {
158
+ border-color: var(--pink);
159
+ }
160
+
161
+ :host([mode="portfolio"]) .view-area:nth-of-type(6) {
162
+ border-color: var(--orange);
163
+ }
164
+
165
+ :host([mode="portfolio"]) .view-area:nth-of-type(7) {
166
+ border-color: var(--zenith-blue);
167
+ }
168
+
169
+ /* Company mode view areas */
170
+ :host([mode="company"]) .view-area:nth-of-type(1) {
171
+ border-color: var(--tuned-red);
172
+ }
173
+
174
+ :host([mode="company"]) .view-area:nth-of-type(2) {
175
+ border-color: var(--sharp-blue);
176
+ }
177
+
178
+ :host([mode="company"]) .view-area:nth-of-type(3) {
179
+ border-color: var(--yellow);
180
+ }
181
+
182
+ /* App mode view areas */
183
+ :host([mode="app"]) .view-area:nth-of-type(1) {
184
+ background-color: color-mix(in srgb, var(--tuned-red) 25%, transparent);
185
+ }
186
+
187
+ :host([mode="app"]) .view-area:nth-of-type(2) {
188
+ background-color: color-mix(in srgb, var(--sharp-blue) 25%, transparent);
189
+ }
190
+
191
+ :host([mode="app"]) .view-area:nth-of-type(3) {
192
+ background-color: color-mix(in srgb, var(--yellow) 25%, transparent);
193
+ }
194
+
195
+ :host([mode="app"]) .view-area:nth-of-type(4) {
196
+ background-color: color-mix(in srgb, var(--apple-green) 25%, transparent);
197
+ }
198
+
199
+ :host([mode="app"]) .view-area:nth-of-type(5) {
200
+ background-color: color-mix(in srgb, var(--pink) 25%, transparent);
201
+ }
202
+
203
+ /* Grid area assignments */
204
+ .view-square {
205
+ grid-area: square;
206
+ }
207
+
208
+ .view-title {
209
+ grid-area: title;
210
+ }
211
+
212
+ .view-header {
213
+ grid-area: header;
214
+ }
215
+
216
+ .view-projects {
217
+ grid-area: projects;
218
+ }
219
+
220
+ .view-bio {
221
+ grid-area: bio;
222
+ }
223
+
224
+ .view-nav {
225
+ grid-area: nav;
226
+ }
227
+
228
+ .view-footer {
229
+ grid-area: footer;
230
+ }
231
+
232
+ .view-content {
233
+ grid-area: content;
234
+ }
235
+
236
+ .view-banner {
237
+ grid-area: banner;
238
+ }
239
+
240
+ .view-main {
241
+ grid-area: main;
242
+ }
243
+
244
+ .view-page-dots {
245
+ grid-area: page-dots;
246
+ }
package/DS1/index.ts CHANGED
@@ -23,23 +23,30 @@ export * from "./0-face/device";
23
23
  export * from "./0-face/i18n";
24
24
  export * from "./0-face/preferences";
25
25
  export * from "./0-face/pricing";
26
+ export * from "./0-face/scaling";
26
27
  export * from "./0-face/theme";
27
28
 
28
29
  // ============================================================================
29
30
  // 2-core: Core Components
30
31
  // ============================================================================
31
32
 
33
+ export * from "./2-core/ds-banner";
32
34
  export * from "./2-core/ds-button";
35
+ export * from "./2-core/ds-card";
33
36
  export * from "./2-core/ds-cycle";
37
+ export * from "./2-core/ds-date";
38
+ export * from "./2-core/ds-gap";
34
39
  export * from "./2-core/ds-icon";
40
+ export * from "./2-core/ds-input";
35
41
  export * from "./2-core/ds-text";
36
42
  export * from "./2-core/ds-tooltip";
37
- export * from "./2-core/ds-date";
38
43
 
39
44
  // ============================================================================
40
45
  // 3-unit: Composite Components
41
46
  // ============================================================================
42
47
 
48
+ export * from "./3-unit/ds-accordion";
49
+ export * from "./3-unit/ds-form";
43
50
  export * from "./3-unit/ds-list";
44
51
  export * from "./3-unit/ds-row";
45
52
  export * from "./3-unit/ds-table";
@@ -48,5 +55,6 @@ export * from "./3-unit/ds-table";
48
55
  // 4-page: Layout Components
49
56
  // ============================================================================
50
57
 
58
+ export * from "./4-page/ds-container";
51
59
  export * from "./4-page/ds-grid";
52
60
  export * from "./4-page/ds-layout";
@@ -0,0 +1,13 @@
1
+ /// <reference types="vite/client" />
2
+
3
+ declare module "*.css?inline" {
4
+ const content: string;
5
+ export default content;
6
+ }
7
+
8
+
9
+
10
+
11
+
12
+
13
+
package/DS1/x-icon/2x.svg CHANGED
@@ -0,0 +1,4 @@
1
+ <svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3.2 2.12C2.96 2.38 2.48 2.5 2.1 2.5H1.85V1.4H2.01C2.68 1.4 3.21 1.05 3.42 0.31H4.4V7.69H3.2V2.12Z" fill="currentColor"/>
3
+ <path d="M5.28 7.69L6.82 4.98L5.39 2.49H6.68L7.31 3.78C7.41 3.99 7.48 4.15 7.53 4.31H7.55C7.58 4.16 7.65 3.98 7.76 3.77L8.34 2.49H9.61L8.21 5.01L9.75 7.69H8.44L7.72 6.27C7.62 6.06 7.54 5.87 7.51 5.74H7.48C7.45 5.85 7.37 6.05 7.26 6.27L6.54 7.69H5.28Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="1" cy="1" r="0.75" fill="currentColor"/>
3
+ <circle cx="4" cy="1" r="0.75" fill="currentColor"/>
4
+ <circle cx="7" cy="1" r="0.75" fill="currentColor"/>
5
+ <circle cx="10" cy="1" r="0.75" fill="currentColor"/>
6
+ <circle cx="1" cy="4" r="0.75" fill="currentColor"/>
7
+ <circle cx="4" cy="4" r="0.75" fill="currentColor"/>
8
+ <circle cx="7" cy="4" r="0.75" fill="currentColor"/>
9
+ <circle cx="10" cy="4" r="0.75" fill="currentColor"/>
10
+ <circle cx="1" cy="7" r="0.75" fill="currentColor"/>
11
+ <circle cx="4" cy="7" r="0.75" fill="currentColor"/>
12
+ <circle cx="7" cy="7" r="0.75" fill="currentColor"/>
13
+ <circle cx="10" cy="7" r="0.75" fill="currentColor"/>
14
+ <circle cx="1" cy="10" r="0.75" fill="currentColor"/>
15
+ <circle cx="4" cy="10" r="0.75" fill="currentColor"/>
16
+ <circle cx="7" cy="10" r="0.75" fill="currentColor"/>
17
+ <circle cx="10" cy="10" r="0.75" fill="currentColor"/>
18
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0" y="0" width="5.5" height="5.5" fill="currentColor"/>
3
+ <rect x="6.5" y="0" width="5.5" height="5.5" fill="currentColor"/>
4
+ <rect x="0" y="6.5" width="5.5" height="5.5" fill="currentColor"/>
5
+ <rect x="6.5" y="6.5" width="5.5" height="5.5" fill="currentColor"/>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <line x1="0" y1="1" x2="12" y2="1" stroke="currentColor" stroke-width="1"/>
3
+ <line x1="0" y1="4" x2="12" y2="4" stroke="currentColor" stroke-width="1"/>
4
+ <line x1="0" y1="7" x2="12" y2="7" stroke="currentColor" stroke-width="1"/>
5
+ <line x1="0" y1="10" x2="12" y2="10" stroke="currentColor" stroke-width="1"/>
6
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0" y="0" width="2.5" height="2.5" fill="currentColor"/>
3
+ <rect x="3.5" y="0" width="2.5" height="2.5" fill="currentColor"/>
4
+ <rect x="7" y="0" width="2.5" height="2.5" fill="currentColor"/>
5
+ <rect x="10.5" y="0" width="1.5" height="2.5" fill="currentColor"/>
6
+ <rect x="0" y="3.5" width="2.5" height="2.5" fill="currentColor"/>
7
+ <rect x="3.5" y="3.5" width="2.5" height="2.5" fill="currentColor"/>
8
+ <rect x="7" y="3.5" width="2.5" height="2.5" fill="currentColor"/>
9
+ <rect x="10.5" y="3.5" width="1.5" height="2.5" fill="currentColor"/>
10
+ <rect x="0" y="7" width="2.5" height="2.5" fill="currentColor"/>
11
+ <rect x="3.5" y="7" width="2.5" height="2.5" fill="currentColor"/>
12
+ <rect x="7" y="7" width="2.5" height="2.5" fill="currentColor"/>
13
+ <rect x="10.5" y="7" width="1.5" height="2.5" fill="currentColor"/>
14
+ <rect x="0" y="10.5" width="2.5" height="1.5" fill="currentColor"/>
15
+ <rect x="3.5" y="10.5" width="2.5" height="1.5" fill="currentColor"/>
16
+ <rect x="7" y="10.5" width="2.5" height="1.5" fill="currentColor"/>
17
+ <rect x="10.5" y="10.5" width="1.5" height="1.5" fill="currentColor"/>
18
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="12" height="14" viewBox="0 0 12 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.87 7.12C9.85 5.38 11.27 4.56 11.34 4.51C10.5 3.31 9.21 3.14 8.77 3.13C7.65 3.01 6.57 3.8 6 3.8C5.42 3.8 4.52 3.14 3.58 3.16C2.36 3.18 1.22 3.88 0.6 4.97C-0.68 7.18 0.28 10.44 1.51 12.23C2.13 13.1 2.85 14.09 3.79 14.06C4.7 14.02 5.05 13.47 6.15 13.47C7.24 13.47 7.56 14.06 8.52 14.03C9.5 14.01 10.12 13.15 10.71 12.27C11.42 11.26 11.7 10.28 11.71 10.23C11.69 10.22 9.89 9.52 9.87 7.12Z" fill="currentColor"/>
3
+ <path d="M8.15 2.06C8.65 1.45 9 0.62 8.91 0C8.18 0.03 7.29 0.49 6.77 1.08C6.31 1.61 5.88 2.47 5.99 3.08C6.79 3.14 7.63 2.66 8.15 2.06Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="6" cy="3.5" r="2.5" fill="currentColor"/>
3
+ <path d="M1 11C1 8.23858 3.23858 6 6 6C8.76142 6 11 8.23858 11 11V12H1V11Z" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="1" y="1" width="10" height="10" rx="1" stroke="currentColor" stroke-width="1.2" fill="none"/>
3
+ <path d="M4 6L6 4L8 6M6 4V8" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="1" y="0.5" width="10" height="11" rx="1" stroke="currentColor" stroke-width="1" fill="none"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="12" height="10" viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1 5L4.5 8.5L11 1.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2 2L10 10M10 2L2 10" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2 4L6 8L10 4" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="6" cy="6" r="5" stroke="currentColor" stroke-width="1.2" fill="none"/>
3
+ <circle cx="6" cy="6" r="3" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="3" height="11" stroke="currentColor" stroke-width="1" fill="none"/>
3
+ <rect x="4.5" y="0.5" width="3" height="11" stroke="currentColor" stroke-width="1" fill="none"/>
4
+ <rect x="8.5" y="0.5" width="3" height="11" stroke="currentColor" stroke-width="1" fill="none"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="1" y="1" width="10" height="10" rx="1" stroke="currentColor" stroke-width="1.2" fill="none"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="12" height="14" viewBox="0 0 12 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1 3H11M4.5 3V1.5H7.5V3M2.5 3V12.5C2.5 13.0523 2.94772 13.5 3.5 13.5H8.5C9.05228 13.5 9.5 13.0523 9.5 12.5V3" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
3
+ <line x1="4.5" y1="5.5" x2="4.5" y2="11" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
4
+ <line x1="7.5" y1="5.5" x2="7.5" y2="11" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
5
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="12" height="14" viewBox="0 0 12 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="3.5" y="0" width="5" height="8" rx="2.5" fill="currentColor"/>
3
+ <path d="M1 6C1 8.76142 3.23858 11 6 11C8.76142 11 11 8.76142 11 6" stroke="currentColor" stroke-width="1.2" fill="none"/>
4
+ <line x1="6" y1="11" x2="6" y2="14" stroke="currentColor" stroke-width="1.2"/>
5
+ <line x1="3.5" y1="14" x2="8.5" y2="14" stroke="currentColor" stroke-width="1.2"/>
6
+ </svg>
package/DS1/x-icon/do.svg CHANGED
@@ -0,0 +1,3 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10 3L4.5 9L2 6.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6 2V10M6 10L2 6M6 10L10 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="3" y="3" width="8" height="8" rx="1" stroke="currentColor" stroke-width="1.2" fill="none"/>
3
+ <path d="M9 3V2C9 1.44772 8.55228 1 8 1H2C1.44772 1 1 1.44772 1 2V8C1 8.55228 1.44772 9 2 9H3" stroke="currentColor" stroke-width="1.2" fill="none"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="12" height="10" viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="0.5" y="0.5" width="11" height="9" rx="0.5" stroke="currentColor" stroke-width="1" fill="none"/>
3
+ <circle cx="3.5" cy="3.5" r="1.5" fill="currentColor"/>
4
+ <path d="M0 8L4 5L7 7L12 3" stroke="currentColor" stroke-width="1" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.82 6.13C11.82 5.72 11.79 5.32 11.71 4.93H6.12V7.2H9.31C9.18 7.91 8.78 8.52 8.18 8.92V10.4H10.08C11.19 9.38 11.82 7.9 11.82 6.13Z" fill="currentColor"/>
3
+ <path d="M6.12 11.82C7.76 11.82 9.15 11.28 10.08 10.4L8.18 8.92C7.67 9.27 7.01 9.47 6.12 9.47C4.54 9.47 3.2 8.44 2.76 7.05H0.81V8.58C1.76 10.46 3.8 11.82 6.12 11.82Z" fill="currentColor"/>
4
+ <path d="M2.76 7.05C2.63 6.65 2.55 6.23 2.55 5.79C2.55 5.35 2.63 4.93 2.76 4.53V3H0.81C0.29 4.02 0 5.17 0 6.41C0 7.65 0.29 8.8 0.81 9.82L2.76 7.05Z" fill="currentColor"/>
5
+ <path d="M6.12 2.12C7.08 2.12 7.95 2.45 8.63 3.1L10.13 1.6C9.15 0.69 7.76 0.18 6.12 0.18C3.8 0.18 1.76 1.54 0.81 3.42L2.76 4.95C3.2 3.56 4.54 2.53 6.12 2.53V2.12Z" fill="currentColor"/>
6
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1 4H11M1 4V2C1 1.44772 1.44772 1 2 1H10C10.5523 1 11 1.44772 11 2V4M1 4V10C1 10.5523 1.44772 11 2 11H10C10.5523 11 11 10.5523 11 10V4" stroke="currentColor" stroke-width="1.2" fill="none"/>
3
+ <line x1="4" y1="6.5" x2="8" y2="6.5" stroke="currentColor" stroke-width="1" stroke-linecap="round"/>
4
+ <line x1="4" y1="8.5" x2="8" y2="8.5" stroke="currentColor" stroke-width="1" stroke-linecap="round"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1 5L6 1L11 5V11H7.5V7.5H4.5V11H1V5Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="1" y="1" width="10" height="10" rx="2" stroke="currentColor" stroke-width="1.2" fill="none"/>
3
+ <circle cx="6" cy="6" r="2.5" fill="currentColor"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6 1L6 8M6 8L3 5M6 8L9 5" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M2 10H10" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="10" height="12" viewBox="0 0 10 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="1" y="5" width="8" height="6" rx="1" stroke="currentColor" stroke-width="1.2" fill="none"/>
3
+ <path d="M3 5V3C3 1.89543 3.89543 1 5 1C6.10457 1 7 1.89543 7 3V5" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" fill="none"/>
4
+ <circle cx="5" cy="8" r="1" fill="currentColor"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10 3H2C1.44772 3 1 3.44772 1 4V8C1 8.55228 1.44772 9 2 9H10C10.5523 9 11 8.55228 11 8V4C11 3.44772 10.5523 3 10 3Z" stroke="currentColor" stroke-width="1.2" fill="none"/>
3
+ <path d="M8.5 1L10.5 3L8.5 5" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
4
+ <path d="M3.5 7L1.5 9L3.5 11" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
5
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="10" height="14" viewBox="0 0 10 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="2.5" y="1" width="5" height="7" rx="2.5" stroke="currentColor" stroke-width="1.2" fill="none"/>
3
+ <path d="M1 6C1 8.76142 2.79086 11 5 11C7.20914 11 9 8.76142 9 6" stroke="currentColor" stroke-width="1.2" fill="none"/>
4
+ <line x1="5" y1="11" x2="5" y2="13" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="12" height="2" viewBox="0 0 12 2" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <line x1="1" y1="1" x2="11" y2="1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="12" height="4" viewBox="0 0 12 4" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="2" cy="2" r="1.5" fill="currentColor"/>
3
+ <circle cx="6" cy="2" r="1.5" fill="currentColor"/>
4
+ <circle cx="10" cy="2" r="1.5" fill="currentColor"/>
5
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="6" cy="6" r="5" stroke="currentColor" stroke-width="1.2" fill="none"/>
3
+ <circle cx="4" cy="5" r="1" fill="currentColor"/>
4
+ <circle cx="8" cy="5" r="1" fill="currentColor"/>
5
+ <line x1="4" y1="8" x2="8" y2="8" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1 2C1 1.44772 1.44772 1 2 1H7L11 5V10C11 10.5523 10.5523 11 10 11H2C1.44772 11 1 10.5523 1 10V2Z" stroke="currentColor" stroke-width="1.2" fill="none"/>
3
+ <path d="M7 1V5H11" stroke="currentColor" stroke-width="1.2" fill="none"/>
4
+ <line x1="3" y1="7" x2="9" y2="7" stroke="currentColor" stroke-width="1" stroke-linecap="round"/>
5
+ <line x1="3" y1="9" x2="7" y2="9" stroke="currentColor" stroke-width="1" stroke-linecap="round"/>
6
+ </svg>